app/testpmd: fix displaying Rx/Tx queues information
[dpdk.git] / app / test-pmd / config.c
1 /* SPDX-License-Identifier: BSD-3-Clause
2  * Copyright(c) 2010-2016 Intel Corporation.
3  * Copyright 2013-2014 6WIND S.A.
4  */
5
6 #include <stdarg.h>
7 #include <errno.h>
8 #include <stdio.h>
9 #include <string.h>
10 #include <stdint.h>
11 #include <inttypes.h>
12
13 #include <sys/queue.h>
14 #include <sys/types.h>
15 #include <sys/stat.h>
16 #include <fcntl.h>
17 #include <unistd.h>
18
19 #include <rte_common.h>
20 #include <rte_byteorder.h>
21 #include <rte_debug.h>
22 #include <rte_log.h>
23 #include <rte_memory.h>
24 #include <rte_memcpy.h>
25 #include <rte_memzone.h>
26 #include <rte_launch.h>
27 #include <rte_eal.h>
28 #include <rte_per_lcore.h>
29 #include <rte_lcore.h>
30 #include <rte_atomic.h>
31 #include <rte_branch_prediction.h>
32 #include <rte_mempool.h>
33 #include <rte_mbuf.h>
34 #include <rte_interrupts.h>
35 #include <rte_pci.h>
36 #include <rte_ether.h>
37 #include <rte_ethdev.h>
38 #include <rte_string_fns.h>
39 #include <rte_cycles.h>
40 #include <rte_flow.h>
41 #include <rte_errno.h>
42 #ifdef RTE_LIBRTE_IXGBE_PMD
43 #include <rte_pmd_ixgbe.h>
44 #endif
45 #ifdef RTE_LIBRTE_I40E_PMD
46 #include <rte_pmd_i40e.h>
47 #endif
48 #ifdef RTE_LIBRTE_BNXT_PMD
49 #include <rte_pmd_bnxt.h>
50 #endif
51 #include <rte_gro.h>
52 #include <rte_hexdump.h>
53
54 #include "testpmd.h"
55
56 #define ETHDEV_FWVERS_LEN 32
57
58 #ifdef CLOCK_MONOTONIC_RAW /* Defined in glibc bits/time.h */
59 #define CLOCK_TYPE_ID CLOCK_MONOTONIC_RAW
60 #else
61 #define CLOCK_TYPE_ID CLOCK_MONOTONIC
62 #endif
63
64 #define NS_PER_SEC 1E9
65
66 static char *flowtype_to_str(uint16_t flow_type);
67
68 static const struct {
69         enum tx_pkt_split split;
70         const char *name;
71 } tx_split_name[] = {
72         {
73                 .split = TX_PKT_SPLIT_OFF,
74                 .name = "off",
75         },
76         {
77                 .split = TX_PKT_SPLIT_ON,
78                 .name = "on",
79         },
80         {
81                 .split = TX_PKT_SPLIT_RND,
82                 .name = "rand",
83         },
84 };
85
86 const struct rss_type_info rss_type_table[] = {
87         { "all", ETH_RSS_ETH | ETH_RSS_VLAN | ETH_RSS_IP | ETH_RSS_TCP |
88                 ETH_RSS_UDP | ETH_RSS_SCTP | ETH_RSS_L2_PAYLOAD |
89                 ETH_RSS_L2TPV3 | ETH_RSS_ESP | ETH_RSS_AH | ETH_RSS_PFCP |
90                 ETH_RSS_GTPU},
91         { "none", 0 },
92         { "eth", ETH_RSS_ETH },
93         { "l2-src-only", ETH_RSS_L2_SRC_ONLY },
94         { "l2-dst-only", ETH_RSS_L2_DST_ONLY },
95         { "vlan", ETH_RSS_VLAN },
96         { "s-vlan", ETH_RSS_S_VLAN },
97         { "c-vlan", ETH_RSS_C_VLAN },
98         { "ipv4", ETH_RSS_IPV4 },
99         { "ipv4-frag", ETH_RSS_FRAG_IPV4 },
100         { "ipv4-tcp", ETH_RSS_NONFRAG_IPV4_TCP },
101         { "ipv4-udp", ETH_RSS_NONFRAG_IPV4_UDP },
102         { "ipv4-sctp", ETH_RSS_NONFRAG_IPV4_SCTP },
103         { "ipv4-other", ETH_RSS_NONFRAG_IPV4_OTHER },
104         { "ipv6", ETH_RSS_IPV6 },
105         { "ipv6-frag", ETH_RSS_FRAG_IPV6 },
106         { "ipv6-tcp", ETH_RSS_NONFRAG_IPV6_TCP },
107         { "ipv6-udp", ETH_RSS_NONFRAG_IPV6_UDP },
108         { "ipv6-sctp", ETH_RSS_NONFRAG_IPV6_SCTP },
109         { "ipv6-other", ETH_RSS_NONFRAG_IPV6_OTHER },
110         { "l2-payload", ETH_RSS_L2_PAYLOAD },
111         { "ipv6-ex", ETH_RSS_IPV6_EX },
112         { "ipv6-tcp-ex", ETH_RSS_IPV6_TCP_EX },
113         { "ipv6-udp-ex", ETH_RSS_IPV6_UDP_EX },
114         { "port", ETH_RSS_PORT },
115         { "vxlan", ETH_RSS_VXLAN },
116         { "geneve", ETH_RSS_GENEVE },
117         { "nvgre", ETH_RSS_NVGRE },
118         { "ip", ETH_RSS_IP },
119         { "udp", ETH_RSS_UDP },
120         { "tcp", ETH_RSS_TCP },
121         { "sctp", ETH_RSS_SCTP },
122         { "tunnel", ETH_RSS_TUNNEL },
123         { "l3-pre32", RTE_ETH_RSS_L3_PRE32 },
124         { "l3-pre40", RTE_ETH_RSS_L3_PRE40 },
125         { "l3-pre48", RTE_ETH_RSS_L3_PRE48 },
126         { "l3-pre56", RTE_ETH_RSS_L3_PRE56 },
127         { "l3-pre64", RTE_ETH_RSS_L3_PRE64 },
128         { "l3-pre96", RTE_ETH_RSS_L3_PRE96 },
129         { "l3-src-only", ETH_RSS_L3_SRC_ONLY },
130         { "l3-dst-only", ETH_RSS_L3_DST_ONLY },
131         { "l4-src-only", ETH_RSS_L4_SRC_ONLY },
132         { "l4-dst-only", ETH_RSS_L4_DST_ONLY },
133         { "esp", ETH_RSS_ESP },
134         { "ah", ETH_RSS_AH },
135         { "l2tpv3", ETH_RSS_L2TPV3 },
136         { "pfcp", ETH_RSS_PFCP },
137         { "pppoe", ETH_RSS_PPPOE },
138         { "gtpu", ETH_RSS_GTPU },
139         { NULL, 0 },
140 };
141
142 static void
143 print_ethaddr(const char *name, struct rte_ether_addr *eth_addr)
144 {
145         char buf[RTE_ETHER_ADDR_FMT_SIZE];
146         rte_ether_format_addr(buf, RTE_ETHER_ADDR_FMT_SIZE, eth_addr);
147         printf("%s%s", name, buf);
148 }
149
150 void
151 nic_stats_display(portid_t port_id)
152 {
153         static uint64_t prev_pkts_rx[RTE_MAX_ETHPORTS];
154         static uint64_t prev_pkts_tx[RTE_MAX_ETHPORTS];
155         static uint64_t prev_bytes_rx[RTE_MAX_ETHPORTS];
156         static uint64_t prev_bytes_tx[RTE_MAX_ETHPORTS];
157         static uint64_t prev_ns[RTE_MAX_ETHPORTS];
158         struct timespec cur_time;
159         uint64_t diff_pkts_rx, diff_pkts_tx, diff_bytes_rx, diff_bytes_tx,
160                                                                 diff_ns;
161         uint64_t mpps_rx, mpps_tx, mbps_rx, mbps_tx;
162         struct rte_eth_stats stats;
163         struct rte_port *port = &ports[port_id];
164         uint8_t i;
165
166         static const char *nic_stats_border = "########################";
167
168         if (port_id_is_invalid(port_id, ENABLED_WARN)) {
169                 print_valid_ports();
170                 return;
171         }
172         rte_eth_stats_get(port_id, &stats);
173         printf("\n  %s NIC statistics for port %-2d %s\n",
174                nic_stats_border, port_id, nic_stats_border);
175
176         if ((!port->rx_queue_stats_mapping_enabled) && (!port->tx_queue_stats_mapping_enabled)) {
177                 printf("  RX-packets: %-10"PRIu64" RX-missed: %-10"PRIu64" RX-bytes:  "
178                        "%-"PRIu64"\n",
179                        stats.ipackets, stats.imissed, stats.ibytes);
180                 printf("  RX-errors: %-"PRIu64"\n", stats.ierrors);
181                 printf("  RX-nombuf:  %-10"PRIu64"\n",
182                        stats.rx_nombuf);
183                 printf("  TX-packets: %-10"PRIu64" TX-errors: %-10"PRIu64" TX-bytes:  "
184                        "%-"PRIu64"\n",
185                        stats.opackets, stats.oerrors, stats.obytes);
186         }
187         else {
188                 printf("  RX-packets:              %10"PRIu64"    RX-errors: %10"PRIu64
189                        "    RX-bytes: %10"PRIu64"\n",
190                        stats.ipackets, stats.ierrors, stats.ibytes);
191                 printf("  RX-errors:  %10"PRIu64"\n", stats.ierrors);
192                 printf("  RX-nombuf:               %10"PRIu64"\n",
193                        stats.rx_nombuf);
194                 printf("  TX-packets:              %10"PRIu64"    TX-errors: %10"PRIu64
195                        "    TX-bytes: %10"PRIu64"\n",
196                        stats.opackets, stats.oerrors, stats.obytes);
197         }
198
199         if (port->rx_queue_stats_mapping_enabled) {
200                 printf("\n");
201                 for (i = 0; i < RTE_ETHDEV_QUEUE_STAT_CNTRS; i++) {
202                         printf("  Stats reg %2d RX-packets: %10"PRIu64
203                                "    RX-errors: %10"PRIu64
204                                "    RX-bytes: %10"PRIu64"\n",
205                                i, stats.q_ipackets[i], stats.q_errors[i], stats.q_ibytes[i]);
206                 }
207         }
208         if (port->tx_queue_stats_mapping_enabled) {
209                 printf("\n");
210                 for (i = 0; i < RTE_ETHDEV_QUEUE_STAT_CNTRS; i++) {
211                         printf("  Stats reg %2d TX-packets: %10"PRIu64
212                                "                             TX-bytes: %10"PRIu64"\n",
213                                i, stats.q_opackets[i], stats.q_obytes[i]);
214                 }
215         }
216
217         diff_ns = 0;
218         if (clock_gettime(CLOCK_TYPE_ID, &cur_time) == 0) {
219                 uint64_t ns;
220
221                 ns = cur_time.tv_sec * NS_PER_SEC;
222                 ns += cur_time.tv_nsec;
223
224                 if (prev_ns[port_id] != 0)
225                         diff_ns = ns - prev_ns[port_id];
226                 prev_ns[port_id] = ns;
227         }
228
229         diff_pkts_rx = (stats.ipackets > prev_pkts_rx[port_id]) ?
230                 (stats.ipackets - prev_pkts_rx[port_id]) : 0;
231         diff_pkts_tx = (stats.opackets > prev_pkts_tx[port_id]) ?
232                 (stats.opackets - prev_pkts_tx[port_id]) : 0;
233         prev_pkts_rx[port_id] = stats.ipackets;
234         prev_pkts_tx[port_id] = stats.opackets;
235         mpps_rx = diff_ns > 0 ?
236                 (double)diff_pkts_rx / diff_ns * NS_PER_SEC : 0;
237         mpps_tx = diff_ns > 0 ?
238                 (double)diff_pkts_tx / diff_ns * NS_PER_SEC : 0;
239
240         diff_bytes_rx = (stats.ibytes > prev_bytes_rx[port_id]) ?
241                 (stats.ibytes - prev_bytes_rx[port_id]) : 0;
242         diff_bytes_tx = (stats.obytes > prev_bytes_tx[port_id]) ?
243                 (stats.obytes - prev_bytes_tx[port_id]) : 0;
244         prev_bytes_rx[port_id] = stats.ibytes;
245         prev_bytes_tx[port_id] = stats.obytes;
246         mbps_rx = diff_ns > 0 ?
247                 (double)diff_bytes_rx / diff_ns * NS_PER_SEC : 0;
248         mbps_tx = diff_ns > 0 ?
249                 (double)diff_bytes_tx / diff_ns * NS_PER_SEC : 0;
250
251         printf("\n  Throughput (since last show)\n");
252         printf("  Rx-pps: %12"PRIu64"          Rx-bps: %12"PRIu64"\n  Tx-pps: %12"
253                PRIu64"          Tx-bps: %12"PRIu64"\n", mpps_rx, mbps_rx * 8,
254                mpps_tx, mbps_tx * 8);
255
256         printf("  %s############################%s\n",
257                nic_stats_border, nic_stats_border);
258 }
259
260 void
261 nic_stats_clear(portid_t port_id)
262 {
263         int ret;
264
265         if (port_id_is_invalid(port_id, ENABLED_WARN)) {
266                 print_valid_ports();
267                 return;
268         }
269
270         ret = rte_eth_stats_reset(port_id);
271         if (ret != 0) {
272                 printf("%s: Error: failed to reset stats (port %u): %s",
273                        __func__, port_id, strerror(-ret));
274                 return;
275         }
276
277         ret = rte_eth_stats_get(port_id, &ports[port_id].stats);
278         if (ret != 0) {
279                 if (ret < 0)
280                         ret = -ret;
281                 printf("%s: Error: failed to get stats (port %u): %s",
282                        __func__, port_id, strerror(ret));
283                 return;
284         }
285         printf("\n  NIC statistics for port %d cleared\n", port_id);
286 }
287
288 void
289 nic_xstats_display(portid_t port_id)
290 {
291         struct rte_eth_xstat *xstats;
292         int cnt_xstats, idx_xstat;
293         struct rte_eth_xstat_name *xstats_names;
294
295         if (port_id_is_invalid(port_id, ENABLED_WARN)) {
296                 print_valid_ports();
297                 return;
298         }
299         printf("###### NIC extended statistics for port %-2d\n", port_id);
300         if (!rte_eth_dev_is_valid_port(port_id)) {
301                 printf("Error: Invalid port number %i\n", port_id);
302                 return;
303         }
304
305         /* Get count */
306         cnt_xstats = rte_eth_xstats_get_names(port_id, NULL, 0);
307         if (cnt_xstats  < 0) {
308                 printf("Error: Cannot get count of xstats\n");
309                 return;
310         }
311
312         /* Get id-name lookup table */
313         xstats_names = malloc(sizeof(struct rte_eth_xstat_name) * cnt_xstats);
314         if (xstats_names == NULL) {
315                 printf("Cannot allocate memory for xstats lookup\n");
316                 return;
317         }
318         if (cnt_xstats != rte_eth_xstats_get_names(
319                         port_id, xstats_names, cnt_xstats)) {
320                 printf("Error: Cannot get xstats lookup\n");
321                 free(xstats_names);
322                 return;
323         }
324
325         /* Get stats themselves */
326         xstats = malloc(sizeof(struct rte_eth_xstat) * cnt_xstats);
327         if (xstats == NULL) {
328                 printf("Cannot allocate memory for xstats\n");
329                 free(xstats_names);
330                 return;
331         }
332         if (cnt_xstats != rte_eth_xstats_get(port_id, xstats, cnt_xstats)) {
333                 printf("Error: Unable to get xstats\n");
334                 free(xstats_names);
335                 free(xstats);
336                 return;
337         }
338
339         /* Display xstats */
340         for (idx_xstat = 0; idx_xstat < cnt_xstats; idx_xstat++) {
341                 if (xstats_hide_zero && !xstats[idx_xstat].value)
342                         continue;
343                 printf("%s: %"PRIu64"\n",
344                         xstats_names[idx_xstat].name,
345                         xstats[idx_xstat].value);
346         }
347         free(xstats_names);
348         free(xstats);
349 }
350
351 void
352 nic_xstats_clear(portid_t port_id)
353 {
354         int ret;
355
356         if (port_id_is_invalid(port_id, ENABLED_WARN)) {
357                 print_valid_ports();
358                 return;
359         }
360
361         ret = rte_eth_xstats_reset(port_id);
362         if (ret != 0) {
363                 printf("%s: Error: failed to reset xstats (port %u): %s",
364                        __func__, port_id, strerror(-ret));
365                 return;
366         }
367
368         ret = rte_eth_stats_get(port_id, &ports[port_id].stats);
369         if (ret != 0) {
370                 if (ret < 0)
371                         ret = -ret;
372                 printf("%s: Error: failed to get stats (port %u): %s",
373                        __func__, port_id, strerror(ret));
374                 return;
375         }
376 }
377
378 void
379 nic_stats_mapping_display(portid_t port_id)
380 {
381         struct rte_port *port = &ports[port_id];
382         uint16_t i;
383
384         static const char *nic_stats_mapping_border = "########################";
385
386         if (port_id_is_invalid(port_id, ENABLED_WARN)) {
387                 print_valid_ports();
388                 return;
389         }
390
391         if ((!port->rx_queue_stats_mapping_enabled) && (!port->tx_queue_stats_mapping_enabled)) {
392                 printf("Port id %d - either does not support queue statistic mapping or"
393                        " no queue statistic mapping set\n", port_id);
394                 return;
395         }
396
397         printf("\n  %s NIC statistics mapping for port %-2d %s\n",
398                nic_stats_mapping_border, port_id, nic_stats_mapping_border);
399
400         if (port->rx_queue_stats_mapping_enabled) {
401                 for (i = 0; i < nb_rx_queue_stats_mappings; i++) {
402                         if (rx_queue_stats_mappings[i].port_id == port_id) {
403                                 printf("  RX-queue %2d mapped to Stats Reg %2d\n",
404                                        rx_queue_stats_mappings[i].queue_id,
405                                        rx_queue_stats_mappings[i].stats_counter_id);
406                         }
407                 }
408                 printf("\n");
409         }
410
411
412         if (port->tx_queue_stats_mapping_enabled) {
413                 for (i = 0; i < nb_tx_queue_stats_mappings; i++) {
414                         if (tx_queue_stats_mappings[i].port_id == port_id) {
415                                 printf("  TX-queue %2d mapped to Stats Reg %2d\n",
416                                        tx_queue_stats_mappings[i].queue_id,
417                                        tx_queue_stats_mappings[i].stats_counter_id);
418                         }
419                 }
420         }
421
422         printf("  %s####################################%s\n",
423                nic_stats_mapping_border, nic_stats_mapping_border);
424 }
425
426 void
427 rx_queue_infos_display(portid_t port_id, uint16_t queue_id)
428 {
429         struct rte_eth_burst_mode mode;
430         struct rte_eth_rxq_info qinfo;
431         int32_t rc;
432         static const char *info_border = "*********************";
433
434         rc = rte_eth_rx_queue_info_get(port_id, queue_id, &qinfo);
435         if (rc != 0) {
436                 printf("Failed to retrieve information for port: %u, "
437                         "RX queue: %hu\nerror desc: %s(%d)\n",
438                         port_id, queue_id, strerror(-rc), rc);
439                 return;
440         }
441
442         printf("\n%s Infos for port %-2u, RX queue %-2u %s",
443                info_border, port_id, queue_id, info_border);
444
445         printf("\nMempool: %s", (qinfo.mp == NULL) ? "NULL" : qinfo.mp->name);
446         printf("\nRX prefetch threshold: %hhu", qinfo.conf.rx_thresh.pthresh);
447         printf("\nRX host threshold: %hhu", qinfo.conf.rx_thresh.hthresh);
448         printf("\nRX writeback threshold: %hhu", qinfo.conf.rx_thresh.wthresh);
449         printf("\nRX free threshold: %hu", qinfo.conf.rx_free_thresh);
450         printf("\nRX drop packets: %s",
451                 (qinfo.conf.rx_drop_en != 0) ? "on" : "off");
452         printf("\nRX deferred start: %s",
453                 (qinfo.conf.rx_deferred_start != 0) ? "on" : "off");
454         printf("\nRX scattered packets: %s",
455                 (qinfo.scattered_rx != 0) ? "on" : "off");
456         if (qinfo.rx_buf_size != 0)
457                 printf("\nRX buffer size: %hu", qinfo.rx_buf_size);
458         printf("\nNumber of RXDs: %hu", qinfo.nb_desc);
459
460         if (rte_eth_rx_burst_mode_get(port_id, queue_id, &mode) == 0)
461                 printf("\nBurst mode: %s%s",
462                        mode.info,
463                        mode.flags & RTE_ETH_BURST_FLAG_PER_QUEUE ?
464                                 " (per queue)" : "");
465
466         printf("\n");
467 }
468
469 void
470 tx_queue_infos_display(portid_t port_id, uint16_t queue_id)
471 {
472         struct rte_eth_burst_mode mode;
473         struct rte_eth_txq_info qinfo;
474         int32_t rc;
475         static const char *info_border = "*********************";
476
477         rc = rte_eth_tx_queue_info_get(port_id, queue_id, &qinfo);
478         if (rc != 0) {
479                 printf("Failed to retrieve information for port: %u, "
480                         "TX queue: %hu\nerror desc: %s(%d)\n",
481                         port_id, queue_id, strerror(-rc), rc);
482                 return;
483         }
484
485         printf("\n%s Infos for port %-2u, TX queue %-2u %s",
486                info_border, port_id, queue_id, info_border);
487
488         printf("\nTX prefetch threshold: %hhu", qinfo.conf.tx_thresh.pthresh);
489         printf("\nTX host threshold: %hhu", qinfo.conf.tx_thresh.hthresh);
490         printf("\nTX writeback threshold: %hhu", qinfo.conf.tx_thresh.wthresh);
491         printf("\nTX RS threshold: %hu", qinfo.conf.tx_rs_thresh);
492         printf("\nTX free threshold: %hu", qinfo.conf.tx_free_thresh);
493         printf("\nTX deferred start: %s",
494                 (qinfo.conf.tx_deferred_start != 0) ? "on" : "off");
495         printf("\nNumber of TXDs: %hu", qinfo.nb_desc);
496
497         if (rte_eth_tx_burst_mode_get(port_id, queue_id, &mode) == 0)
498                 printf("\nBurst mode: %s%s",
499                        mode.info,
500                        mode.flags & RTE_ETH_BURST_FLAG_PER_QUEUE ?
501                                 " (per queue)" : "");
502
503         printf("\n");
504 }
505
506 static int bus_match_all(const struct rte_bus *bus, const void *data)
507 {
508         RTE_SET_USED(bus);
509         RTE_SET_USED(data);
510         return 0;
511 }
512
513 void
514 device_infos_display(const char *identifier)
515 {
516         static const char *info_border = "*********************";
517         struct rte_bus *start = NULL, *next;
518         struct rte_dev_iterator dev_iter;
519         char name[RTE_ETH_NAME_MAX_LEN];
520         struct rte_ether_addr mac_addr;
521         struct rte_device *dev;
522         struct rte_devargs da;
523         portid_t port_id;
524         char devstr[128];
525
526         memset(&da, 0, sizeof(da));
527         if (!identifier)
528                 goto skip_parse;
529
530         if (rte_devargs_parsef(&da, "%s", identifier)) {
531                 printf("cannot parse identifier\n");
532                 if (da.args)
533                         free(da.args);
534                 return;
535         }
536
537 skip_parse:
538         while ((next = rte_bus_find(start, bus_match_all, NULL)) != NULL) {
539
540                 start = next;
541                 if (identifier && da.bus != next)
542                         continue;
543
544                 /* Skip buses that don't have iterate method */
545                 if (!next->dev_iterate)
546                         continue;
547
548                 snprintf(devstr, sizeof(devstr), "bus=%s", next->name);
549                 RTE_DEV_FOREACH(dev, devstr, &dev_iter) {
550
551                         if (!dev->driver)
552                                 continue;
553                         /* Check for matching device if identifier is present */
554                         if (identifier &&
555                             strncmp(da.name, dev->name, strlen(dev->name)))
556                                 continue;
557                         printf("\n%s Infos for device %s %s\n",
558                                info_border, dev->name, info_border);
559                         printf("Bus name: %s", dev->bus->name);
560                         printf("\nDriver name: %s", dev->driver->name);
561                         printf("\nDevargs: %s",
562                                dev->devargs ? dev->devargs->args : "");
563                         printf("\nConnect to socket: %d", dev->numa_node);
564                         printf("\n");
565
566                         /* List ports with matching device name */
567                         RTE_ETH_FOREACH_DEV_OF(port_id, dev) {
568                                 printf("\n\tPort id: %-2d", port_id);
569                                 if (eth_macaddr_get_print_err(port_id,
570                                                               &mac_addr) == 0)
571                                         print_ethaddr("\n\tMAC address: ",
572                                                       &mac_addr);
573                                 rte_eth_dev_get_name_by_port(port_id, name);
574                                 printf("\n\tDevice name: %s", name);
575                                 printf("\n");
576                         }
577                 }
578         };
579 }
580
581 void
582 port_infos_display(portid_t port_id)
583 {
584         struct rte_port *port;
585         struct rte_ether_addr mac_addr;
586         struct rte_eth_link link;
587         struct rte_eth_dev_info dev_info;
588         int vlan_offload;
589         struct rte_mempool * mp;
590         static const char *info_border = "*********************";
591         uint16_t mtu;
592         char name[RTE_ETH_NAME_MAX_LEN];
593         int ret;
594         char fw_version[ETHDEV_FWVERS_LEN];
595
596         if (port_id_is_invalid(port_id, ENABLED_WARN)) {
597                 print_valid_ports();
598                 return;
599         }
600         port = &ports[port_id];
601         ret = eth_link_get_nowait_print_err(port_id, &link);
602         if (ret < 0)
603                 return;
604
605         ret = eth_dev_info_get_print_err(port_id, &dev_info);
606         if (ret != 0)
607                 return;
608
609         printf("\n%s Infos for port %-2d %s\n",
610                info_border, port_id, info_border);
611         if (eth_macaddr_get_print_err(port_id, &mac_addr) == 0)
612                 print_ethaddr("MAC address: ", &mac_addr);
613         rte_eth_dev_get_name_by_port(port_id, name);
614         printf("\nDevice name: %s", name);
615         printf("\nDriver name: %s", dev_info.driver_name);
616
617         if (rte_eth_dev_fw_version_get(port_id, fw_version,
618                                                 ETHDEV_FWVERS_LEN) == 0)
619                 printf("\nFirmware-version: %s", fw_version);
620         else
621                 printf("\nFirmware-version: %s", "not available");
622
623         if (dev_info.device->devargs && dev_info.device->devargs->args)
624                 printf("\nDevargs: %s", dev_info.device->devargs->args);
625         printf("\nConnect to socket: %u", port->socket_id);
626
627         if (port_numa[port_id] != NUMA_NO_CONFIG) {
628                 mp = mbuf_pool_find(port_numa[port_id]);
629                 if (mp)
630                         printf("\nmemory allocation on the socket: %d",
631                                                         port_numa[port_id]);
632         } else
633                 printf("\nmemory allocation on the socket: %u",port->socket_id);
634
635         printf("\nLink status: %s\n", (link.link_status) ? ("up") : ("down"));
636         printf("Link speed: %s\n", rte_eth_link_speed_to_str(link.link_speed));
637         printf("Link duplex: %s\n", (link.link_duplex == ETH_LINK_FULL_DUPLEX) ?
638                ("full-duplex") : ("half-duplex"));
639
640         if (!rte_eth_dev_get_mtu(port_id, &mtu))
641                 printf("MTU: %u\n", mtu);
642
643         printf("Promiscuous mode: %s\n",
644                rte_eth_promiscuous_get(port_id) ? "enabled" : "disabled");
645         printf("Allmulticast mode: %s\n",
646                rte_eth_allmulticast_get(port_id) ? "enabled" : "disabled");
647         printf("Maximum number of MAC addresses: %u\n",
648                (unsigned int)(port->dev_info.max_mac_addrs));
649         printf("Maximum number of MAC addresses of hash filtering: %u\n",
650                (unsigned int)(port->dev_info.max_hash_mac_addrs));
651
652         vlan_offload = rte_eth_dev_get_vlan_offload(port_id);
653         if (vlan_offload >= 0){
654                 printf("VLAN offload: \n");
655                 if (vlan_offload & ETH_VLAN_STRIP_OFFLOAD)
656                         printf("  strip on, ");
657                 else
658                         printf("  strip off, ");
659
660                 if (vlan_offload & ETH_VLAN_FILTER_OFFLOAD)
661                         printf("filter on, ");
662                 else
663                         printf("filter off, ");
664
665                 if (vlan_offload & ETH_VLAN_EXTEND_OFFLOAD)
666                         printf("extend on, ");
667                 else
668                         printf("extend off, ");
669
670                 if (vlan_offload & ETH_QINQ_STRIP_OFFLOAD)
671                         printf("qinq strip on\n");
672                 else
673                         printf("qinq strip off\n");
674         }
675
676         if (dev_info.hash_key_size > 0)
677                 printf("Hash key size in bytes: %u\n", dev_info.hash_key_size);
678         if (dev_info.reta_size > 0)
679                 printf("Redirection table size: %u\n", dev_info.reta_size);
680         if (!dev_info.flow_type_rss_offloads)
681                 printf("No RSS offload flow type is supported.\n");
682         else {
683                 uint16_t i;
684                 char *p;
685
686                 printf("Supported RSS offload flow types:\n");
687                 for (i = RTE_ETH_FLOW_UNKNOWN + 1;
688                      i < sizeof(dev_info.flow_type_rss_offloads) * CHAR_BIT; i++) {
689                         if (!(dev_info.flow_type_rss_offloads & (1ULL << i)))
690                                 continue;
691                         p = flowtype_to_str(i);
692                         if (p)
693                                 printf("  %s\n", p);
694                         else
695                                 printf("  user defined %d\n", i);
696                 }
697         }
698
699         printf("Minimum size of RX buffer: %u\n", dev_info.min_rx_bufsize);
700         printf("Maximum configurable length of RX packet: %u\n",
701                 dev_info.max_rx_pktlen);
702         printf("Maximum configurable size of LRO aggregated packet: %u\n",
703                 dev_info.max_lro_pkt_size);
704         if (dev_info.max_vfs)
705                 printf("Maximum number of VFs: %u\n", dev_info.max_vfs);
706         if (dev_info.max_vmdq_pools)
707                 printf("Maximum number of VMDq pools: %u\n",
708                         dev_info.max_vmdq_pools);
709
710         printf("Current number of RX queues: %u\n", dev_info.nb_rx_queues);
711         printf("Max possible RX queues: %u\n", dev_info.max_rx_queues);
712         printf("Max possible number of RXDs per queue: %hu\n",
713                 dev_info.rx_desc_lim.nb_max);
714         printf("Min possible number of RXDs per queue: %hu\n",
715                 dev_info.rx_desc_lim.nb_min);
716         printf("RXDs number alignment: %hu\n", dev_info.rx_desc_lim.nb_align);
717
718         printf("Current number of TX queues: %u\n", dev_info.nb_tx_queues);
719         printf("Max possible TX queues: %u\n", dev_info.max_tx_queues);
720         printf("Max possible number of TXDs per queue: %hu\n",
721                 dev_info.tx_desc_lim.nb_max);
722         printf("Min possible number of TXDs per queue: %hu\n",
723                 dev_info.tx_desc_lim.nb_min);
724         printf("TXDs number alignment: %hu\n", dev_info.tx_desc_lim.nb_align);
725         printf("Max segment number per packet: %hu\n",
726                 dev_info.tx_desc_lim.nb_seg_max);
727         printf("Max segment number per MTU/TSO: %hu\n",
728                 dev_info.tx_desc_lim.nb_mtu_seg_max);
729
730         /* Show switch info only if valid switch domain and port id is set */
731         if (dev_info.switch_info.domain_id !=
732                 RTE_ETH_DEV_SWITCH_DOMAIN_ID_INVALID) {
733                 if (dev_info.switch_info.name)
734                         printf("Switch name: %s\n", dev_info.switch_info.name);
735
736                 printf("Switch domain Id: %u\n",
737                         dev_info.switch_info.domain_id);
738                 printf("Switch Port Id: %u\n",
739                         dev_info.switch_info.port_id);
740         }
741 }
742
743 void
744 port_summary_header_display(void)
745 {
746         uint16_t port_number;
747
748         port_number = rte_eth_dev_count_avail();
749         printf("Number of available ports: %i\n", port_number);
750         printf("%-4s %-17s %-12s %-14s %-8s %s\n", "Port", "MAC Address", "Name",
751                         "Driver", "Status", "Link");
752 }
753
754 void
755 port_summary_display(portid_t port_id)
756 {
757         struct rte_ether_addr mac_addr;
758         struct rte_eth_link link;
759         struct rte_eth_dev_info dev_info;
760         char name[RTE_ETH_NAME_MAX_LEN];
761         int ret;
762
763         if (port_id_is_invalid(port_id, ENABLED_WARN)) {
764                 print_valid_ports();
765                 return;
766         }
767
768         ret = eth_link_get_nowait_print_err(port_id, &link);
769         if (ret < 0)
770                 return;
771
772         ret = eth_dev_info_get_print_err(port_id, &dev_info);
773         if (ret != 0)
774                 return;
775
776         rte_eth_dev_get_name_by_port(port_id, name);
777         ret = eth_macaddr_get_print_err(port_id, &mac_addr);
778         if (ret != 0)
779                 return;
780
781         printf("%-4d %02X:%02X:%02X:%02X:%02X:%02X %-12s %-14s %-8s %s\n",
782                 port_id, mac_addr.addr_bytes[0], mac_addr.addr_bytes[1],
783                 mac_addr.addr_bytes[2], mac_addr.addr_bytes[3],
784                 mac_addr.addr_bytes[4], mac_addr.addr_bytes[5], name,
785                 dev_info.driver_name, (link.link_status) ? ("up") : ("down"),
786                 rte_eth_link_speed_to_str(link.link_speed));
787 }
788
789 void
790 port_eeprom_display(portid_t port_id)
791 {
792         struct rte_dev_eeprom_info einfo;
793         int ret;
794         if (port_id_is_invalid(port_id, ENABLED_WARN)) {
795                 print_valid_ports();
796                 return;
797         }
798
799         int len_eeprom = rte_eth_dev_get_eeprom_length(port_id);
800         if (len_eeprom < 0) {
801                 switch (len_eeprom) {
802                 case -ENODEV:
803                         printf("port index %d invalid\n", port_id);
804                         break;
805                 case -ENOTSUP:
806                         printf("operation not supported by device\n");
807                         break;
808                 case -EIO:
809                         printf("device is removed\n");
810                         break;
811                 default:
812                         printf("Unable to get EEPROM: %d\n", len_eeprom);
813                         break;
814                 }
815                 return;
816         }
817
818         char buf[len_eeprom];
819         einfo.offset = 0;
820         einfo.length = len_eeprom;
821         einfo.data = buf;
822
823         ret = rte_eth_dev_get_eeprom(port_id, &einfo);
824         if (ret != 0) {
825                 switch (ret) {
826                 case -ENODEV:
827                         printf("port index %d invalid\n", port_id);
828                         break;
829                 case -ENOTSUP:
830                         printf("operation not supported by device\n");
831                         break;
832                 case -EIO:
833                         printf("device is removed\n");
834                         break;
835                 default:
836                         printf("Unable to get EEPROM: %d\n", ret);
837                         break;
838                 }
839                 return;
840         }
841         rte_hexdump(stdout, "hexdump", einfo.data, einfo.length);
842         printf("Finish -- Port: %d EEPROM length: %d bytes\n", port_id, len_eeprom);
843 }
844
845 void
846 port_module_eeprom_display(portid_t port_id)
847 {
848         struct rte_eth_dev_module_info minfo;
849         struct rte_dev_eeprom_info einfo;
850         int ret;
851
852         if (port_id_is_invalid(port_id, ENABLED_WARN)) {
853                 print_valid_ports();
854                 return;
855         }
856
857
858         ret = rte_eth_dev_get_module_info(port_id, &minfo);
859         if (ret != 0) {
860                 switch (ret) {
861                 case -ENODEV:
862                         printf("port index %d invalid\n", port_id);
863                         break;
864                 case -ENOTSUP:
865                         printf("operation not supported by device\n");
866                         break;
867                 case -EIO:
868                         printf("device is removed\n");
869                         break;
870                 default:
871                         printf("Unable to get module EEPROM: %d\n", ret);
872                         break;
873                 }
874                 return;
875         }
876
877         char buf[minfo.eeprom_len];
878         einfo.offset = 0;
879         einfo.length = minfo.eeprom_len;
880         einfo.data = buf;
881
882         ret = rte_eth_dev_get_module_eeprom(port_id, &einfo);
883         if (ret != 0) {
884                 switch (ret) {
885                 case -ENODEV:
886                         printf("port index %d invalid\n", port_id);
887                         break;
888                 case -ENOTSUP:
889                         printf("operation not supported by device\n");
890                         break;
891                 case -EIO:
892                         printf("device is removed\n");
893                         break;
894                 default:
895                         printf("Unable to get module EEPROM: %d\n", ret);
896                         break;
897                 }
898                 return;
899         }
900
901         rte_hexdump(stdout, "hexdump", einfo.data, einfo.length);
902         printf("Finish -- Port: %d MODULE EEPROM length: %d bytes\n", port_id, einfo.length);
903 }
904
905 void
906 port_offload_cap_display(portid_t port_id)
907 {
908         struct rte_eth_dev_info dev_info;
909         static const char *info_border = "************";
910         int ret;
911
912         if (port_id_is_invalid(port_id, ENABLED_WARN))
913                 return;
914
915         ret = eth_dev_info_get_print_err(port_id, &dev_info);
916         if (ret != 0)
917                 return;
918
919         printf("\n%s Port %d supported offload features: %s\n",
920                 info_border, port_id, info_border);
921
922         if (dev_info.rx_offload_capa & DEV_RX_OFFLOAD_VLAN_STRIP) {
923                 printf("VLAN stripped:                 ");
924                 if (ports[port_id].dev_conf.rxmode.offloads &
925                     DEV_RX_OFFLOAD_VLAN_STRIP)
926                         printf("on\n");
927                 else
928                         printf("off\n");
929         }
930
931         if (dev_info.rx_offload_capa & DEV_RX_OFFLOAD_QINQ_STRIP) {
932                 printf("Double VLANs stripped:         ");
933                 if (ports[port_id].dev_conf.rxmode.offloads &
934                     DEV_RX_OFFLOAD_QINQ_STRIP)
935                         printf("on\n");
936                 else
937                         printf("off\n");
938         }
939
940         if (dev_info.rx_offload_capa & DEV_RX_OFFLOAD_IPV4_CKSUM) {
941                 printf("RX IPv4 checksum:              ");
942                 if (ports[port_id].dev_conf.rxmode.offloads &
943                     DEV_RX_OFFLOAD_IPV4_CKSUM)
944                         printf("on\n");
945                 else
946                         printf("off\n");
947         }
948
949         if (dev_info.rx_offload_capa & DEV_RX_OFFLOAD_UDP_CKSUM) {
950                 printf("RX UDP checksum:               ");
951                 if (ports[port_id].dev_conf.rxmode.offloads &
952                     DEV_RX_OFFLOAD_UDP_CKSUM)
953                         printf("on\n");
954                 else
955                         printf("off\n");
956         }
957
958         if (dev_info.rx_offload_capa & DEV_RX_OFFLOAD_TCP_CKSUM) {
959                 printf("RX TCP checksum:               ");
960                 if (ports[port_id].dev_conf.rxmode.offloads &
961                     DEV_RX_OFFLOAD_TCP_CKSUM)
962                         printf("on\n");
963                 else
964                         printf("off\n");
965         }
966
967         if (dev_info.rx_offload_capa & DEV_RX_OFFLOAD_SCTP_CKSUM) {
968                 printf("RX SCTP checksum:              ");
969                 if (ports[port_id].dev_conf.rxmode.offloads &
970                     DEV_RX_OFFLOAD_SCTP_CKSUM)
971                         printf("on\n");
972                 else
973                         printf("off\n");
974         }
975
976         if (dev_info.rx_offload_capa & DEV_RX_OFFLOAD_OUTER_IPV4_CKSUM) {
977                 printf("RX Outer IPv4 checksum:        ");
978                 if (ports[port_id].dev_conf.rxmode.offloads &
979                     DEV_RX_OFFLOAD_OUTER_IPV4_CKSUM)
980                         printf("on\n");
981                 else
982                         printf("off\n");
983         }
984
985         if (dev_info.rx_offload_capa & DEV_RX_OFFLOAD_OUTER_UDP_CKSUM) {
986                 printf("RX Outer UDP checksum:         ");
987                 if (ports[port_id].dev_conf.rxmode.offloads &
988                     DEV_RX_OFFLOAD_OUTER_UDP_CKSUM)
989                         printf("on\n");
990                 else
991                         printf("off\n");
992         }
993
994         if (dev_info.rx_offload_capa & DEV_RX_OFFLOAD_TCP_LRO) {
995                 printf("Large receive offload:         ");
996                 if (ports[port_id].dev_conf.rxmode.offloads &
997                     DEV_RX_OFFLOAD_TCP_LRO)
998                         printf("on\n");
999                 else
1000                         printf("off\n");
1001         }
1002
1003         if (dev_info.rx_offload_capa & DEV_RX_OFFLOAD_TIMESTAMP) {
1004                 printf("HW timestamp:                  ");
1005                 if (ports[port_id].dev_conf.rxmode.offloads &
1006                     DEV_RX_OFFLOAD_TIMESTAMP)
1007                         printf("on\n");
1008                 else
1009                         printf("off\n");
1010         }
1011
1012         if (dev_info.rx_offload_capa & DEV_RX_OFFLOAD_KEEP_CRC) {
1013                 printf("Rx Keep CRC:                   ");
1014                 if (ports[port_id].dev_conf.rxmode.offloads &
1015                     DEV_RX_OFFLOAD_KEEP_CRC)
1016                         printf("on\n");
1017                 else
1018                         printf("off\n");
1019         }
1020
1021         if (dev_info.rx_offload_capa & DEV_RX_OFFLOAD_SECURITY) {
1022                 printf("RX offload security:           ");
1023                 if (ports[port_id].dev_conf.rxmode.offloads &
1024                     DEV_RX_OFFLOAD_SECURITY)
1025                         printf("on\n");
1026                 else
1027                         printf("off\n");
1028         }
1029
1030         if (dev_info.tx_offload_capa & DEV_TX_OFFLOAD_VLAN_INSERT) {
1031                 printf("VLAN insert:                   ");
1032                 if (ports[port_id].dev_conf.txmode.offloads &
1033                     DEV_TX_OFFLOAD_VLAN_INSERT)
1034                         printf("on\n");
1035                 else
1036                         printf("off\n");
1037         }
1038
1039         if (dev_info.tx_offload_capa & DEV_TX_OFFLOAD_QINQ_INSERT) {
1040                 printf("Double VLANs insert:           ");
1041                 if (ports[port_id].dev_conf.txmode.offloads &
1042                     DEV_TX_OFFLOAD_QINQ_INSERT)
1043                         printf("on\n");
1044                 else
1045                         printf("off\n");
1046         }
1047
1048         if (dev_info.tx_offload_capa & DEV_TX_OFFLOAD_IPV4_CKSUM) {
1049                 printf("TX IPv4 checksum:              ");
1050                 if (ports[port_id].dev_conf.txmode.offloads &
1051                     DEV_TX_OFFLOAD_IPV4_CKSUM)
1052                         printf("on\n");
1053                 else
1054                         printf("off\n");
1055         }
1056
1057         if (dev_info.tx_offload_capa & DEV_TX_OFFLOAD_UDP_CKSUM) {
1058                 printf("TX UDP checksum:               ");
1059                 if (ports[port_id].dev_conf.txmode.offloads &
1060                     DEV_TX_OFFLOAD_UDP_CKSUM)
1061                         printf("on\n");
1062                 else
1063                         printf("off\n");
1064         }
1065
1066         if (dev_info.tx_offload_capa & DEV_TX_OFFLOAD_TCP_CKSUM) {
1067                 printf("TX TCP checksum:               ");
1068                 if (ports[port_id].dev_conf.txmode.offloads &
1069                     DEV_TX_OFFLOAD_TCP_CKSUM)
1070                         printf("on\n");
1071                 else
1072                         printf("off\n");
1073         }
1074
1075         if (dev_info.tx_offload_capa & DEV_TX_OFFLOAD_SCTP_CKSUM) {
1076                 printf("TX SCTP checksum:              ");
1077                 if (ports[port_id].dev_conf.txmode.offloads &
1078                     DEV_TX_OFFLOAD_SCTP_CKSUM)
1079                         printf("on\n");
1080                 else
1081                         printf("off\n");
1082         }
1083
1084         if (dev_info.tx_offload_capa & DEV_TX_OFFLOAD_OUTER_IPV4_CKSUM) {
1085                 printf("TX Outer IPv4 checksum:        ");
1086                 if (ports[port_id].dev_conf.txmode.offloads &
1087                     DEV_TX_OFFLOAD_OUTER_IPV4_CKSUM)
1088                         printf("on\n");
1089                 else
1090                         printf("off\n");
1091         }
1092
1093         if (dev_info.tx_offload_capa & DEV_TX_OFFLOAD_TCP_TSO) {
1094                 printf("TX TCP segmentation:           ");
1095                 if (ports[port_id].dev_conf.txmode.offloads &
1096                     DEV_TX_OFFLOAD_TCP_TSO)
1097                         printf("on\n");
1098                 else
1099                         printf("off\n");
1100         }
1101
1102         if (dev_info.tx_offload_capa & DEV_TX_OFFLOAD_UDP_TSO) {
1103                 printf("TX UDP segmentation:           ");
1104                 if (ports[port_id].dev_conf.txmode.offloads &
1105                     DEV_TX_OFFLOAD_UDP_TSO)
1106                         printf("on\n");
1107                 else
1108                         printf("off\n");
1109         }
1110
1111         if (dev_info.tx_offload_capa & DEV_TX_OFFLOAD_VXLAN_TNL_TSO) {
1112                 printf("TSO for VXLAN tunnel packet:   ");
1113                 if (ports[port_id].dev_conf.txmode.offloads &
1114                     DEV_TX_OFFLOAD_VXLAN_TNL_TSO)
1115                         printf("on\n");
1116                 else
1117                         printf("off\n");
1118         }
1119
1120         if (dev_info.tx_offload_capa & DEV_TX_OFFLOAD_GRE_TNL_TSO) {
1121                 printf("TSO for GRE tunnel packet:     ");
1122                 if (ports[port_id].dev_conf.txmode.offloads &
1123                     DEV_TX_OFFLOAD_GRE_TNL_TSO)
1124                         printf("on\n");
1125                 else
1126                         printf("off\n");
1127         }
1128
1129         if (dev_info.tx_offload_capa & DEV_TX_OFFLOAD_IPIP_TNL_TSO) {
1130                 printf("TSO for IPIP tunnel packet:    ");
1131                 if (ports[port_id].dev_conf.txmode.offloads &
1132                     DEV_TX_OFFLOAD_IPIP_TNL_TSO)
1133                         printf("on\n");
1134                 else
1135                         printf("off\n");
1136         }
1137
1138         if (dev_info.tx_offload_capa & DEV_TX_OFFLOAD_GENEVE_TNL_TSO) {
1139                 printf("TSO for GENEVE tunnel packet:  ");
1140                 if (ports[port_id].dev_conf.txmode.offloads &
1141                     DEV_TX_OFFLOAD_GENEVE_TNL_TSO)
1142                         printf("on\n");
1143                 else
1144                         printf("off\n");
1145         }
1146
1147         if (dev_info.tx_offload_capa & DEV_TX_OFFLOAD_IP_TNL_TSO) {
1148                 printf("IP tunnel TSO:  ");
1149                 if (ports[port_id].dev_conf.txmode.offloads &
1150                     DEV_TX_OFFLOAD_IP_TNL_TSO)
1151                         printf("on\n");
1152                 else
1153                         printf("off\n");
1154         }
1155
1156         if (dev_info.tx_offload_capa & DEV_TX_OFFLOAD_UDP_TNL_TSO) {
1157                 printf("UDP tunnel TSO:  ");
1158                 if (ports[port_id].dev_conf.txmode.offloads &
1159                     DEV_TX_OFFLOAD_UDP_TNL_TSO)
1160                         printf("on\n");
1161                 else
1162                         printf("off\n");
1163         }
1164
1165         if (dev_info.tx_offload_capa & DEV_TX_OFFLOAD_OUTER_UDP_CKSUM) {
1166                 printf("TX Outer UDP checksum:         ");
1167                 if (ports[port_id].dev_conf.txmode.offloads &
1168                     DEV_TX_OFFLOAD_OUTER_UDP_CKSUM)
1169                         printf("on\n");
1170                 else
1171                         printf("off\n");
1172         }
1173
1174         if (dev_info.tx_offload_capa & DEV_TX_OFFLOAD_SEND_ON_TIMESTAMP) {
1175                 printf("Tx scheduling on timestamp:    ");
1176                 if (ports[port_id].dev_conf.txmode.offloads &
1177                     DEV_TX_OFFLOAD_SEND_ON_TIMESTAMP)
1178                         printf("on\n");
1179                 else
1180                         printf("off\n");
1181         }
1182
1183 }
1184
1185 int
1186 port_id_is_invalid(portid_t port_id, enum print_warning warning)
1187 {
1188         uint16_t pid;
1189
1190         if (port_id == (portid_t)RTE_PORT_ALL)
1191                 return 0;
1192
1193         RTE_ETH_FOREACH_DEV(pid)
1194                 if (port_id == pid)
1195                         return 0;
1196
1197         if (warning == ENABLED_WARN)
1198                 printf("Invalid port %d\n", port_id);
1199
1200         return 1;
1201 }
1202
1203 void print_valid_ports(void)
1204 {
1205         portid_t pid;
1206
1207         printf("The valid ports array is [");
1208         RTE_ETH_FOREACH_DEV(pid) {
1209                 printf(" %d", pid);
1210         }
1211         printf(" ]\n");
1212 }
1213
1214 static int
1215 vlan_id_is_invalid(uint16_t vlan_id)
1216 {
1217         if (vlan_id < 4096)
1218                 return 0;
1219         printf("Invalid vlan_id %d (must be < 4096)\n", vlan_id);
1220         return 1;
1221 }
1222
1223 static int
1224 port_reg_off_is_invalid(portid_t port_id, uint32_t reg_off)
1225 {
1226         const struct rte_pci_device *pci_dev;
1227         const struct rte_bus *bus;
1228         uint64_t pci_len;
1229
1230         if (reg_off & 0x3) {
1231                 printf("Port register offset 0x%X not aligned on a 4-byte "
1232                        "boundary\n",
1233                        (unsigned)reg_off);
1234                 return 1;
1235         }
1236
1237         if (!ports[port_id].dev_info.device) {
1238                 printf("Invalid device\n");
1239                 return 0;
1240         }
1241
1242         bus = rte_bus_find_by_device(ports[port_id].dev_info.device);
1243         if (bus && !strcmp(bus->name, "pci")) {
1244                 pci_dev = RTE_DEV_TO_PCI(ports[port_id].dev_info.device);
1245         } else {
1246                 printf("Not a PCI device\n");
1247                 return 1;
1248         }
1249
1250         pci_len = pci_dev->mem_resource[0].len;
1251         if (reg_off >= pci_len) {
1252                 printf("Port %d: register offset %u (0x%X) out of port PCI "
1253                        "resource (length=%"PRIu64")\n",
1254                        port_id, (unsigned)reg_off, (unsigned)reg_off,  pci_len);
1255                 return 1;
1256         }
1257         return 0;
1258 }
1259
1260 static int
1261 reg_bit_pos_is_invalid(uint8_t bit_pos)
1262 {
1263         if (bit_pos <= 31)
1264                 return 0;
1265         printf("Invalid bit position %d (must be <= 31)\n", bit_pos);
1266         return 1;
1267 }
1268
1269 #define display_port_and_reg_off(port_id, reg_off) \
1270         printf("port %d PCI register at offset 0x%X: ", (port_id), (reg_off))
1271
1272 static inline void
1273 display_port_reg_value(portid_t port_id, uint32_t reg_off, uint32_t reg_v)
1274 {
1275         display_port_and_reg_off(port_id, (unsigned)reg_off);
1276         printf("0x%08X (%u)\n", (unsigned)reg_v, (unsigned)reg_v);
1277 }
1278
1279 void
1280 port_reg_bit_display(portid_t port_id, uint32_t reg_off, uint8_t bit_x)
1281 {
1282         uint32_t reg_v;
1283
1284
1285         if (port_id_is_invalid(port_id, ENABLED_WARN))
1286                 return;
1287         if (port_reg_off_is_invalid(port_id, reg_off))
1288                 return;
1289         if (reg_bit_pos_is_invalid(bit_x))
1290                 return;
1291         reg_v = port_id_pci_reg_read(port_id, reg_off);
1292         display_port_and_reg_off(port_id, (unsigned)reg_off);
1293         printf("bit %d=%d\n", bit_x, (int) ((reg_v & (1 << bit_x)) >> bit_x));
1294 }
1295
1296 void
1297 port_reg_bit_field_display(portid_t port_id, uint32_t reg_off,
1298                            uint8_t bit1_pos, uint8_t bit2_pos)
1299 {
1300         uint32_t reg_v;
1301         uint8_t  l_bit;
1302         uint8_t  h_bit;
1303
1304         if (port_id_is_invalid(port_id, ENABLED_WARN))
1305                 return;
1306         if (port_reg_off_is_invalid(port_id, reg_off))
1307                 return;
1308         if (reg_bit_pos_is_invalid(bit1_pos))
1309                 return;
1310         if (reg_bit_pos_is_invalid(bit2_pos))
1311                 return;
1312         if (bit1_pos > bit2_pos)
1313                 l_bit = bit2_pos, h_bit = bit1_pos;
1314         else
1315                 l_bit = bit1_pos, h_bit = bit2_pos;
1316
1317         reg_v = port_id_pci_reg_read(port_id, reg_off);
1318         reg_v >>= l_bit;
1319         if (h_bit < 31)
1320                 reg_v &= ((1 << (h_bit - l_bit + 1)) - 1);
1321         display_port_and_reg_off(port_id, (unsigned)reg_off);
1322         printf("bits[%d, %d]=0x%0*X (%u)\n", l_bit, h_bit,
1323                ((h_bit - l_bit) / 4) + 1, (unsigned)reg_v, (unsigned)reg_v);
1324 }
1325
1326 void
1327 port_reg_display(portid_t port_id, uint32_t reg_off)
1328 {
1329         uint32_t reg_v;
1330
1331         if (port_id_is_invalid(port_id, ENABLED_WARN))
1332                 return;
1333         if (port_reg_off_is_invalid(port_id, reg_off))
1334                 return;
1335         reg_v = port_id_pci_reg_read(port_id, reg_off);
1336         display_port_reg_value(port_id, reg_off, reg_v);
1337 }
1338
1339 void
1340 port_reg_bit_set(portid_t port_id, uint32_t reg_off, uint8_t bit_pos,
1341                  uint8_t bit_v)
1342 {
1343         uint32_t reg_v;
1344
1345         if (port_id_is_invalid(port_id, ENABLED_WARN))
1346                 return;
1347         if (port_reg_off_is_invalid(port_id, reg_off))
1348                 return;
1349         if (reg_bit_pos_is_invalid(bit_pos))
1350                 return;
1351         if (bit_v > 1) {
1352                 printf("Invalid bit value %d (must be 0 or 1)\n", (int) bit_v);
1353                 return;
1354         }
1355         reg_v = port_id_pci_reg_read(port_id, reg_off);
1356         if (bit_v == 0)
1357                 reg_v &= ~(1 << bit_pos);
1358         else
1359                 reg_v |= (1 << bit_pos);
1360         port_id_pci_reg_write(port_id, reg_off, reg_v);
1361         display_port_reg_value(port_id, reg_off, reg_v);
1362 }
1363
1364 void
1365 port_reg_bit_field_set(portid_t port_id, uint32_t reg_off,
1366                        uint8_t bit1_pos, uint8_t bit2_pos, uint32_t value)
1367 {
1368         uint32_t max_v;
1369         uint32_t reg_v;
1370         uint8_t  l_bit;
1371         uint8_t  h_bit;
1372
1373         if (port_id_is_invalid(port_id, ENABLED_WARN))
1374                 return;
1375         if (port_reg_off_is_invalid(port_id, reg_off))
1376                 return;
1377         if (reg_bit_pos_is_invalid(bit1_pos))
1378                 return;
1379         if (reg_bit_pos_is_invalid(bit2_pos))
1380                 return;
1381         if (bit1_pos > bit2_pos)
1382                 l_bit = bit2_pos, h_bit = bit1_pos;
1383         else
1384                 l_bit = bit1_pos, h_bit = bit2_pos;
1385
1386         if ((h_bit - l_bit) < 31)
1387                 max_v = (1 << (h_bit - l_bit + 1)) - 1;
1388         else
1389                 max_v = 0xFFFFFFFF;
1390
1391         if (value > max_v) {
1392                 printf("Invalid value %u (0x%x) must be < %u (0x%x)\n",
1393                                 (unsigned)value, (unsigned)value,
1394                                 (unsigned)max_v, (unsigned)max_v);
1395                 return;
1396         }
1397         reg_v = port_id_pci_reg_read(port_id, reg_off);
1398         reg_v &= ~(max_v << l_bit); /* Keep unchanged bits */
1399         reg_v |= (value << l_bit); /* Set changed bits */
1400         port_id_pci_reg_write(port_id, reg_off, reg_v);
1401         display_port_reg_value(port_id, reg_off, reg_v);
1402 }
1403
1404 void
1405 port_reg_set(portid_t port_id, uint32_t reg_off, uint32_t reg_v)
1406 {
1407         if (port_id_is_invalid(port_id, ENABLED_WARN))
1408                 return;
1409         if (port_reg_off_is_invalid(port_id, reg_off))
1410                 return;
1411         port_id_pci_reg_write(port_id, reg_off, reg_v);
1412         display_port_reg_value(port_id, reg_off, reg_v);
1413 }
1414
1415 void
1416 port_mtu_set(portid_t port_id, uint16_t mtu)
1417 {
1418         int diag;
1419         struct rte_port *rte_port = &ports[port_id];
1420         struct rte_eth_dev_info dev_info;
1421         uint16_t eth_overhead;
1422         int ret;
1423
1424         if (port_id_is_invalid(port_id, ENABLED_WARN))
1425                 return;
1426
1427         ret = eth_dev_info_get_print_err(port_id, &dev_info);
1428         if (ret != 0)
1429                 return;
1430
1431         if (mtu > dev_info.max_mtu || mtu < dev_info.min_mtu) {
1432                 printf("Set MTU failed. MTU:%u is not in valid range, min:%u - max:%u\n",
1433                         mtu, dev_info.min_mtu, dev_info.max_mtu);
1434                 return;
1435         }
1436         diag = rte_eth_dev_set_mtu(port_id, mtu);
1437         if (diag)
1438                 printf("Set MTU failed. diag=%d\n", diag);
1439         else if (dev_info.rx_offload_capa & DEV_RX_OFFLOAD_JUMBO_FRAME) {
1440                 /*
1441                  * Ether overhead in driver is equal to the difference of
1442                  * max_rx_pktlen and max_mtu in rte_eth_dev_info when the
1443                  * device supports jumbo frame.
1444                  */
1445                 eth_overhead = dev_info.max_rx_pktlen - dev_info.max_mtu;
1446                 if (mtu > RTE_ETHER_MAX_LEN - eth_overhead) {
1447                         rte_port->dev_conf.rxmode.offloads |=
1448                                                 DEV_RX_OFFLOAD_JUMBO_FRAME;
1449                         rte_port->dev_conf.rxmode.max_rx_pkt_len =
1450                                                 mtu + eth_overhead;
1451                 } else
1452                         rte_port->dev_conf.rxmode.offloads &=
1453                                                 ~DEV_RX_OFFLOAD_JUMBO_FRAME;
1454         }
1455 }
1456
1457 /* Generic flow management functions. */
1458
1459 /** Generate a port_flow entry from attributes/pattern/actions. */
1460 static struct port_flow *
1461 port_flow_new(const struct rte_flow_attr *attr,
1462               const struct rte_flow_item *pattern,
1463               const struct rte_flow_action *actions,
1464               struct rte_flow_error *error)
1465 {
1466         const struct rte_flow_conv_rule rule = {
1467                 .attr_ro = attr,
1468                 .pattern_ro = pattern,
1469                 .actions_ro = actions,
1470         };
1471         struct port_flow *pf;
1472         int ret;
1473
1474         ret = rte_flow_conv(RTE_FLOW_CONV_OP_RULE, NULL, 0, &rule, error);
1475         if (ret < 0)
1476                 return NULL;
1477         pf = calloc(1, offsetof(struct port_flow, rule) + ret);
1478         if (!pf) {
1479                 rte_flow_error_set
1480                         (error, errno, RTE_FLOW_ERROR_TYPE_UNSPECIFIED, NULL,
1481                          "calloc() failed");
1482                 return NULL;
1483         }
1484         if (rte_flow_conv(RTE_FLOW_CONV_OP_RULE, &pf->rule, ret, &rule,
1485                           error) >= 0)
1486                 return pf;
1487         free(pf);
1488         return NULL;
1489 }
1490
1491 /** Print a message out of a flow error. */
1492 static int
1493 port_flow_complain(struct rte_flow_error *error)
1494 {
1495         static const char *const errstrlist[] = {
1496                 [RTE_FLOW_ERROR_TYPE_NONE] = "no error",
1497                 [RTE_FLOW_ERROR_TYPE_UNSPECIFIED] = "cause unspecified",
1498                 [RTE_FLOW_ERROR_TYPE_HANDLE] = "flow rule (handle)",
1499                 [RTE_FLOW_ERROR_TYPE_ATTR_GROUP] = "group field",
1500                 [RTE_FLOW_ERROR_TYPE_ATTR_PRIORITY] = "priority field",
1501                 [RTE_FLOW_ERROR_TYPE_ATTR_INGRESS] = "ingress field",
1502                 [RTE_FLOW_ERROR_TYPE_ATTR_EGRESS] = "egress field",
1503                 [RTE_FLOW_ERROR_TYPE_ATTR_TRANSFER] = "transfer field",
1504                 [RTE_FLOW_ERROR_TYPE_ATTR] = "attributes structure",
1505                 [RTE_FLOW_ERROR_TYPE_ITEM_NUM] = "pattern length",
1506                 [RTE_FLOW_ERROR_TYPE_ITEM_SPEC] = "item specification",
1507                 [RTE_FLOW_ERROR_TYPE_ITEM_LAST] = "item specification range",
1508                 [RTE_FLOW_ERROR_TYPE_ITEM_MASK] = "item specification mask",
1509                 [RTE_FLOW_ERROR_TYPE_ITEM] = "specific pattern item",
1510                 [RTE_FLOW_ERROR_TYPE_ACTION_NUM] = "number of actions",
1511                 [RTE_FLOW_ERROR_TYPE_ACTION_CONF] = "action configuration",
1512                 [RTE_FLOW_ERROR_TYPE_ACTION] = "specific action",
1513         };
1514         const char *errstr;
1515         char buf[32];
1516         int err = rte_errno;
1517
1518         if ((unsigned int)error->type >= RTE_DIM(errstrlist) ||
1519             !errstrlist[error->type])
1520                 errstr = "unknown type";
1521         else
1522                 errstr = errstrlist[error->type];
1523         printf("%s(): Caught PMD error type %d (%s): %s%s: %s\n", __func__,
1524                error->type, errstr,
1525                error->cause ? (snprintf(buf, sizeof(buf), "cause: %p, ",
1526                                         error->cause), buf) : "",
1527                error->message ? error->message : "(no stated reason)",
1528                rte_strerror(err));
1529         return -err;
1530 }
1531
1532 static void
1533 rss_config_display(struct rte_flow_action_rss *rss_conf)
1534 {
1535         uint8_t i;
1536
1537         if (rss_conf == NULL) {
1538                 printf("Invalid rule\n");
1539                 return;
1540         }
1541
1542         printf("RSS:\n"
1543                " queues:");
1544         if (rss_conf->queue_num == 0)
1545                 printf(" none");
1546         for (i = 0; i < rss_conf->queue_num; i++)
1547                 printf(" %d", rss_conf->queue[i]);
1548         printf("\n");
1549
1550         printf(" function: ");
1551         switch (rss_conf->func) {
1552         case RTE_ETH_HASH_FUNCTION_DEFAULT:
1553                 printf("default\n");
1554                 break;
1555         case RTE_ETH_HASH_FUNCTION_TOEPLITZ:
1556                 printf("toeplitz\n");
1557                 break;
1558         case RTE_ETH_HASH_FUNCTION_SIMPLE_XOR:
1559                 printf("simple_xor\n");
1560                 break;
1561         case RTE_ETH_HASH_FUNCTION_SYMMETRIC_TOEPLITZ:
1562                 printf("symmetric_toeplitz\n");
1563                 break;
1564         default:
1565                 printf("Unknown function\n");
1566                 return;
1567         }
1568
1569         printf(" types:\n");
1570         if (rss_conf->types == 0) {
1571                 printf("  none\n");
1572                 return;
1573         }
1574         for (i = 0; rss_type_table[i].str; i++) {
1575                 if ((rss_conf->types &
1576                     rss_type_table[i].rss_type) ==
1577                     rss_type_table[i].rss_type &&
1578                     rss_type_table[i].rss_type != 0)
1579                         printf("  %s\n", rss_type_table[i].str);
1580         }
1581 }
1582
1583 /** Validate flow rule. */
1584 int
1585 port_flow_validate(portid_t port_id,
1586                    const struct rte_flow_attr *attr,
1587                    const struct rte_flow_item *pattern,
1588                    const struct rte_flow_action *actions)
1589 {
1590         struct rte_flow_error error;
1591
1592         /* Poisoning to make sure PMDs update it in case of error. */
1593         memset(&error, 0x11, sizeof(error));
1594         if (rte_flow_validate(port_id, attr, pattern, actions, &error))
1595                 return port_flow_complain(&error);
1596         printf("Flow rule validated\n");
1597         return 0;
1598 }
1599
1600 /** Update age action context by port_flow pointer. */
1601 void
1602 update_age_action_context(const struct rte_flow_action *actions,
1603                         struct port_flow *pf)
1604 {
1605         struct rte_flow_action_age *age = NULL;
1606
1607         for (; actions->type != RTE_FLOW_ACTION_TYPE_END; actions++) {
1608                 switch (actions->type) {
1609                 case RTE_FLOW_ACTION_TYPE_AGE:
1610                         age = (struct rte_flow_action_age *)
1611                                 (uintptr_t)actions->conf;
1612                         age->context = pf;
1613                         return;
1614                 default:
1615                         break;
1616                 }
1617         }
1618 }
1619
1620 /** Create flow rule. */
1621 int
1622 port_flow_create(portid_t port_id,
1623                  const struct rte_flow_attr *attr,
1624                  const struct rte_flow_item *pattern,
1625                  const struct rte_flow_action *actions)
1626 {
1627         struct rte_flow *flow;
1628         struct rte_port *port;
1629         struct port_flow *pf;
1630         uint32_t id = 0;
1631         struct rte_flow_error error;
1632
1633         port = &ports[port_id];
1634         if (port->flow_list) {
1635                 if (port->flow_list->id == UINT32_MAX) {
1636                         printf("Highest rule ID is already assigned, delete"
1637                                " it first");
1638                         return -ENOMEM;
1639                 }
1640                 id = port->flow_list->id + 1;
1641         }
1642         pf = port_flow_new(attr, pattern, actions, &error);
1643         if (!pf)
1644                 return port_flow_complain(&error);
1645         update_age_action_context(actions, pf);
1646         /* Poisoning to make sure PMDs update it in case of error. */
1647         memset(&error, 0x22, sizeof(error));
1648         flow = rte_flow_create(port_id, attr, pattern, actions, &error);
1649         if (!flow) {
1650                 free(pf);
1651                 return port_flow_complain(&error);
1652         }
1653         pf->next = port->flow_list;
1654         pf->id = id;
1655         pf->flow = flow;
1656         port->flow_list = pf;
1657         printf("Flow rule #%u created\n", pf->id);
1658         return 0;
1659 }
1660
1661 /** Destroy a number of flow rules. */
1662 int
1663 port_flow_destroy(portid_t port_id, uint32_t n, const uint32_t *rule)
1664 {
1665         struct rte_port *port;
1666         struct port_flow **tmp;
1667         uint32_t c = 0;
1668         int ret = 0;
1669
1670         if (port_id_is_invalid(port_id, ENABLED_WARN) ||
1671             port_id == (portid_t)RTE_PORT_ALL)
1672                 return -EINVAL;
1673         port = &ports[port_id];
1674         tmp = &port->flow_list;
1675         while (*tmp) {
1676                 uint32_t i;
1677
1678                 for (i = 0; i != n; ++i) {
1679                         struct rte_flow_error error;
1680                         struct port_flow *pf = *tmp;
1681
1682                         if (rule[i] != pf->id)
1683                                 continue;
1684                         /*
1685                          * Poisoning to make sure PMDs update it in case
1686                          * of error.
1687                          */
1688                         memset(&error, 0x33, sizeof(error));
1689                         if (rte_flow_destroy(port_id, pf->flow, &error)) {
1690                                 ret = port_flow_complain(&error);
1691                                 continue;
1692                         }
1693                         printf("Flow rule #%u destroyed\n", pf->id);
1694                         *tmp = pf->next;
1695                         free(pf);
1696                         break;
1697                 }
1698                 if (i == n)
1699                         tmp = &(*tmp)->next;
1700                 ++c;
1701         }
1702         return ret;
1703 }
1704
1705 /** Remove all flow rules. */
1706 int
1707 port_flow_flush(portid_t port_id)
1708 {
1709         struct rte_flow_error error;
1710         struct rte_port *port;
1711         int ret = 0;
1712
1713         /* Poisoning to make sure PMDs update it in case of error. */
1714         memset(&error, 0x44, sizeof(error));
1715         if (rte_flow_flush(port_id, &error)) {
1716                 ret = port_flow_complain(&error);
1717                 if (port_id_is_invalid(port_id, DISABLED_WARN) ||
1718                     port_id == (portid_t)RTE_PORT_ALL)
1719                         return ret;
1720         }
1721         port = &ports[port_id];
1722         while (port->flow_list) {
1723                 struct port_flow *pf = port->flow_list->next;
1724
1725                 free(port->flow_list);
1726                 port->flow_list = pf;
1727         }
1728         return ret;
1729 }
1730
1731 /** Dump all flow rules. */
1732 int
1733 port_flow_dump(portid_t port_id, const char *file_name)
1734 {
1735         int ret = 0;
1736         FILE *file = stdout;
1737         struct rte_flow_error error;
1738
1739         if (file_name && strlen(file_name)) {
1740                 file = fopen(file_name, "w");
1741                 if (!file) {
1742                         printf("Failed to create file %s: %s\n", file_name,
1743                                strerror(errno));
1744                         return -errno;
1745                 }
1746         }
1747         ret = rte_flow_dev_dump(port_id, file, &error);
1748         if (ret) {
1749                 port_flow_complain(&error);
1750                 printf("Failed to dump flow: %s\n", strerror(-ret));
1751         } else
1752                 printf("Flow dump finished\n");
1753         if (file_name && strlen(file_name))
1754                 fclose(file);
1755         return ret;
1756 }
1757
1758 /** Query a flow rule. */
1759 int
1760 port_flow_query(portid_t port_id, uint32_t rule,
1761                 const struct rte_flow_action *action)
1762 {
1763         struct rte_flow_error error;
1764         struct rte_port *port;
1765         struct port_flow *pf;
1766         const char *name;
1767         union {
1768                 struct rte_flow_query_count count;
1769                 struct rte_flow_action_rss rss_conf;
1770         } query;
1771         int ret;
1772
1773         if (port_id_is_invalid(port_id, ENABLED_WARN) ||
1774             port_id == (portid_t)RTE_PORT_ALL)
1775                 return -EINVAL;
1776         port = &ports[port_id];
1777         for (pf = port->flow_list; pf; pf = pf->next)
1778                 if (pf->id == rule)
1779                         break;
1780         if (!pf) {
1781                 printf("Flow rule #%u not found\n", rule);
1782                 return -ENOENT;
1783         }
1784         ret = rte_flow_conv(RTE_FLOW_CONV_OP_ACTION_NAME_PTR,
1785                             &name, sizeof(name),
1786                             (void *)(uintptr_t)action->type, &error);
1787         if (ret < 0)
1788                 return port_flow_complain(&error);
1789         switch (action->type) {
1790         case RTE_FLOW_ACTION_TYPE_COUNT:
1791         case RTE_FLOW_ACTION_TYPE_RSS:
1792                 break;
1793         default:
1794                 printf("Cannot query action type %d (%s)\n",
1795                         action->type, name);
1796                 return -ENOTSUP;
1797         }
1798         /* Poisoning to make sure PMDs update it in case of error. */
1799         memset(&error, 0x55, sizeof(error));
1800         memset(&query, 0, sizeof(query));
1801         if (rte_flow_query(port_id, pf->flow, action, &query, &error))
1802                 return port_flow_complain(&error);
1803         switch (action->type) {
1804         case RTE_FLOW_ACTION_TYPE_COUNT:
1805                 printf("%s:\n"
1806                        " hits_set: %u\n"
1807                        " bytes_set: %u\n"
1808                        " hits: %" PRIu64 "\n"
1809                        " bytes: %" PRIu64 "\n",
1810                        name,
1811                        query.count.hits_set,
1812                        query.count.bytes_set,
1813                        query.count.hits,
1814                        query.count.bytes);
1815                 break;
1816         case RTE_FLOW_ACTION_TYPE_RSS:
1817                 rss_config_display(&query.rss_conf);
1818                 break;
1819         default:
1820                 printf("Cannot display result for action type %d (%s)\n",
1821                        action->type, name);
1822                 break;
1823         }
1824         return 0;
1825 }
1826
1827 /** List simply and destroy all aged flows. */
1828 void
1829 port_flow_aged(portid_t port_id, uint8_t destroy)
1830 {
1831         void **contexts;
1832         int nb_context, total = 0, idx;
1833         struct rte_flow_error error;
1834         struct port_flow *pf;
1835
1836         if (port_id_is_invalid(port_id, ENABLED_WARN) ||
1837             port_id == (portid_t)RTE_PORT_ALL)
1838                 return;
1839         total = rte_flow_get_aged_flows(port_id, NULL, 0, &error);
1840         printf("Port %u total aged flows: %d\n", port_id, total);
1841         if (total < 0) {
1842                 port_flow_complain(&error);
1843                 return;
1844         }
1845         if (total == 0)
1846                 return;
1847         contexts = malloc(sizeof(void *) * total);
1848         if (contexts == NULL) {
1849                 printf("Cannot allocate contexts for aged flow\n");
1850                 return;
1851         }
1852         printf("ID\tGroup\tPrio\tAttr\n");
1853         nb_context = rte_flow_get_aged_flows(port_id, contexts, total, &error);
1854         if (nb_context != total) {
1855                 printf("Port:%d get aged flows count(%d) != total(%d)\n",
1856                         port_id, nb_context, total);
1857                 free(contexts);
1858                 return;
1859         }
1860         for (idx = 0; idx < nb_context; idx++) {
1861                 pf = (struct port_flow *)contexts[idx];
1862                 if (!pf) {
1863                         printf("Error: get Null context in port %u\n", port_id);
1864                         continue;
1865                 }
1866                 printf("%" PRIu32 "\t%" PRIu32 "\t%" PRIu32 "\t%c%c%c\t\n",
1867                        pf->id,
1868                        pf->rule.attr->group,
1869                        pf->rule.attr->priority,
1870                        pf->rule.attr->ingress ? 'i' : '-',
1871                        pf->rule.attr->egress ? 'e' : '-',
1872                        pf->rule.attr->transfer ? 't' : '-');
1873         }
1874         if (destroy) {
1875                 int ret;
1876                 uint32_t flow_id;
1877
1878                 total = 0;
1879                 printf("\n");
1880                 for (idx = 0; idx < nb_context; idx++) {
1881                         pf = (struct port_flow *)contexts[idx];
1882                         if (!pf)
1883                                 continue;
1884                         flow_id = pf->id;
1885                         ret = port_flow_destroy(port_id, 1, &flow_id);
1886                         if (!ret)
1887                                 total++;
1888                 }
1889                 printf("%d flows be destroyed\n", total);
1890         }
1891         free(contexts);
1892 }
1893
1894 /** List flow rules. */
1895 void
1896 port_flow_list(portid_t port_id, uint32_t n, const uint32_t group[n])
1897 {
1898         struct rte_port *port;
1899         struct port_flow *pf;
1900         struct port_flow *list = NULL;
1901         uint32_t i;
1902
1903         if (port_id_is_invalid(port_id, ENABLED_WARN) ||
1904             port_id == (portid_t)RTE_PORT_ALL)
1905                 return;
1906         port = &ports[port_id];
1907         if (!port->flow_list)
1908                 return;
1909         /* Sort flows by group, priority and ID. */
1910         for (pf = port->flow_list; pf != NULL; pf = pf->next) {
1911                 struct port_flow **tmp;
1912                 const struct rte_flow_attr *curr = pf->rule.attr;
1913
1914                 if (n) {
1915                         /* Filter out unwanted groups. */
1916                         for (i = 0; i != n; ++i)
1917                                 if (curr->group == group[i])
1918                                         break;
1919                         if (i == n)
1920                                 continue;
1921                 }
1922                 for (tmp = &list; *tmp; tmp = &(*tmp)->tmp) {
1923                         const struct rte_flow_attr *comp = (*tmp)->rule.attr;
1924
1925                         if (curr->group > comp->group ||
1926                             (curr->group == comp->group &&
1927                              curr->priority > comp->priority) ||
1928                             (curr->group == comp->group &&
1929                              curr->priority == comp->priority &&
1930                              pf->id > (*tmp)->id))
1931                                 continue;
1932                         break;
1933                 }
1934                 pf->tmp = *tmp;
1935                 *tmp = pf;
1936         }
1937         printf("ID\tGroup\tPrio\tAttr\tRule\n");
1938         for (pf = list; pf != NULL; pf = pf->tmp) {
1939                 const struct rte_flow_item *item = pf->rule.pattern;
1940                 const struct rte_flow_action *action = pf->rule.actions;
1941                 const char *name;
1942
1943                 printf("%" PRIu32 "\t%" PRIu32 "\t%" PRIu32 "\t%c%c%c\t",
1944                        pf->id,
1945                        pf->rule.attr->group,
1946                        pf->rule.attr->priority,
1947                        pf->rule.attr->ingress ? 'i' : '-',
1948                        pf->rule.attr->egress ? 'e' : '-',
1949                        pf->rule.attr->transfer ? 't' : '-');
1950                 while (item->type != RTE_FLOW_ITEM_TYPE_END) {
1951                         if (rte_flow_conv(RTE_FLOW_CONV_OP_ITEM_NAME_PTR,
1952                                           &name, sizeof(name),
1953                                           (void *)(uintptr_t)item->type,
1954                                           NULL) <= 0)
1955                                 name = "[UNKNOWN]";
1956                         if (item->type != RTE_FLOW_ITEM_TYPE_VOID)
1957                                 printf("%s ", name);
1958                         ++item;
1959                 }
1960                 printf("=>");
1961                 while (action->type != RTE_FLOW_ACTION_TYPE_END) {
1962                         if (rte_flow_conv(RTE_FLOW_CONV_OP_ACTION_NAME_PTR,
1963                                           &name, sizeof(name),
1964                                           (void *)(uintptr_t)action->type,
1965                                           NULL) <= 0)
1966                                 name = "[UNKNOWN]";
1967                         if (action->type != RTE_FLOW_ACTION_TYPE_VOID)
1968                                 printf(" %s", name);
1969                         ++action;
1970                 }
1971                 printf("\n");
1972         }
1973 }
1974
1975 /** Restrict ingress traffic to the defined flow rules. */
1976 int
1977 port_flow_isolate(portid_t port_id, int set)
1978 {
1979         struct rte_flow_error error;
1980
1981         /* Poisoning to make sure PMDs update it in case of error. */
1982         memset(&error, 0x66, sizeof(error));
1983         if (rte_flow_isolate(port_id, set, &error))
1984                 return port_flow_complain(&error);
1985         printf("Ingress traffic on port %u is %s to the defined flow rules\n",
1986                port_id,
1987                set ? "now restricted" : "not restricted anymore");
1988         return 0;
1989 }
1990
1991 /*
1992  * RX/TX ring descriptors display functions.
1993  */
1994 int
1995 rx_queue_id_is_invalid(queueid_t rxq_id)
1996 {
1997         if (rxq_id < nb_rxq)
1998                 return 0;
1999         printf("Invalid RX queue %d (must be < nb_rxq=%d)\n", rxq_id, nb_rxq);
2000         return 1;
2001 }
2002
2003 int
2004 tx_queue_id_is_invalid(queueid_t txq_id)
2005 {
2006         if (txq_id < nb_txq)
2007                 return 0;
2008         printf("Invalid TX queue %d (must be < nb_rxq=%d)\n", txq_id, nb_txq);
2009         return 1;
2010 }
2011
2012 static int
2013 get_rx_ring_size(portid_t port_id, queueid_t rxq_id, uint16_t *ring_size)
2014 {
2015         struct rte_port *port = &ports[port_id];
2016         struct rte_eth_rxq_info rx_qinfo;
2017         int ret;
2018
2019         ret = rte_eth_rx_queue_info_get(port_id, rxq_id, &rx_qinfo);
2020         if (ret == 0) {
2021                 *ring_size = rx_qinfo.nb_desc;
2022                 return ret;
2023         }
2024
2025         if (ret != -ENOTSUP)
2026                 return ret;
2027         /*
2028          * If the rte_eth_rx_queue_info_get is not support for this PMD,
2029          * ring_size stored in testpmd will be used for validity verification.
2030          * When configure the rxq by rte_eth_rx_queue_setup with nb_rx_desc
2031          * being 0, it will use a default value provided by PMDs to setup this
2032          * rxq. If the default value is 0, it will use the
2033          * RTE_ETH_DEV_FALLBACK_RX_RINGSIZE to setup this rxq.
2034          */
2035         if (port->nb_rx_desc[rxq_id])
2036                 *ring_size = port->nb_rx_desc[rxq_id];
2037         else if (port->dev_info.default_rxportconf.ring_size)
2038                 *ring_size = port->dev_info.default_rxportconf.ring_size;
2039         else
2040                 *ring_size = RTE_ETH_DEV_FALLBACK_RX_RINGSIZE;
2041         return 0;
2042 }
2043
2044 static int
2045 get_tx_ring_size(portid_t port_id, queueid_t txq_id, uint16_t *ring_size)
2046 {
2047         struct rte_port *port = &ports[port_id];
2048         struct rte_eth_txq_info tx_qinfo;
2049         int ret;
2050
2051         ret = rte_eth_tx_queue_info_get(port_id, txq_id, &tx_qinfo);
2052         if (ret == 0) {
2053                 *ring_size = tx_qinfo.nb_desc;
2054                 return ret;
2055         }
2056
2057         if (ret != -ENOTSUP)
2058                 return ret;
2059         /*
2060          * If the rte_eth_tx_queue_info_get is not support for this PMD,
2061          * ring_size stored in testpmd will be used for validity verification.
2062          * When configure the txq by rte_eth_tx_queue_setup with nb_tx_desc
2063          * being 0, it will use a default value provided by PMDs to setup this
2064          * txq. If the default value is 0, it will use the
2065          * RTE_ETH_DEV_FALLBACK_TX_RINGSIZE to setup this txq.
2066          */
2067         if (port->nb_tx_desc[txq_id])
2068                 *ring_size = port->nb_tx_desc[txq_id];
2069         else if (port->dev_info.default_txportconf.ring_size)
2070                 *ring_size = port->dev_info.default_txportconf.ring_size;
2071         else
2072                 *ring_size = RTE_ETH_DEV_FALLBACK_TX_RINGSIZE;
2073         return 0;
2074 }
2075
2076 static int
2077 rx_desc_id_is_invalid(portid_t port_id, queueid_t rxq_id, uint16_t rxdesc_id)
2078 {
2079         uint16_t ring_size;
2080         int ret;
2081
2082         ret = get_rx_ring_size(port_id, rxq_id, &ring_size);
2083         if (ret)
2084                 return 1;
2085
2086         if (rxdesc_id < ring_size)
2087                 return 0;
2088
2089         printf("Invalid RX descriptor %u (must be < ring_size=%u)\n",
2090                rxdesc_id, ring_size);
2091         return 1;
2092 }
2093
2094 static int
2095 tx_desc_id_is_invalid(portid_t port_id, queueid_t txq_id, uint16_t txdesc_id)
2096 {
2097         uint16_t ring_size;
2098         int ret;
2099
2100         ret = get_tx_ring_size(port_id, txq_id, &ring_size);
2101         if (ret)
2102                 return 1;
2103
2104         if (txdesc_id < ring_size)
2105                 return 0;
2106
2107         printf("Invalid TX descriptor %u (must be < ring_size=%u)\n",
2108                txdesc_id, ring_size);
2109         return 1;
2110 }
2111
2112 static const struct rte_memzone *
2113 ring_dma_zone_lookup(const char *ring_name, portid_t port_id, uint16_t q_id)
2114 {
2115         char mz_name[RTE_MEMZONE_NAMESIZE];
2116         const struct rte_memzone *mz;
2117
2118         snprintf(mz_name, sizeof(mz_name), "eth_p%d_q%d_%s",
2119                         port_id, q_id, ring_name);
2120         mz = rte_memzone_lookup(mz_name);
2121         if (mz == NULL)
2122                 printf("%s ring memory zoneof (port %d, queue %d) not"
2123                        "found (zone name = %s\n",
2124                        ring_name, port_id, q_id, mz_name);
2125         return mz;
2126 }
2127
2128 union igb_ring_dword {
2129         uint64_t dword;
2130         struct {
2131 #if RTE_BYTE_ORDER == RTE_BIG_ENDIAN
2132                 uint32_t lo;
2133                 uint32_t hi;
2134 #else
2135                 uint32_t hi;
2136                 uint32_t lo;
2137 #endif
2138         } words;
2139 };
2140
2141 struct igb_ring_desc_32_bytes {
2142         union igb_ring_dword lo_dword;
2143         union igb_ring_dword hi_dword;
2144         union igb_ring_dword resv1;
2145         union igb_ring_dword resv2;
2146 };
2147
2148 struct igb_ring_desc_16_bytes {
2149         union igb_ring_dword lo_dword;
2150         union igb_ring_dword hi_dword;
2151 };
2152
2153 static void
2154 ring_rxd_display_dword(union igb_ring_dword dword)
2155 {
2156         printf("    0x%08X - 0x%08X\n", (unsigned)dword.words.lo,
2157                                         (unsigned)dword.words.hi);
2158 }
2159
2160 static void
2161 ring_rx_descriptor_display(const struct rte_memzone *ring_mz,
2162 #ifndef RTE_LIBRTE_I40E_16BYTE_RX_DESC
2163                            portid_t port_id,
2164 #else
2165                            __rte_unused portid_t port_id,
2166 #endif
2167                            uint16_t desc_id)
2168 {
2169         struct igb_ring_desc_16_bytes *ring =
2170                 (struct igb_ring_desc_16_bytes *)ring_mz->addr;
2171 #ifndef RTE_LIBRTE_I40E_16BYTE_RX_DESC
2172         int ret;
2173         struct rte_eth_dev_info dev_info;
2174
2175         ret = eth_dev_info_get_print_err(port_id, &dev_info);
2176         if (ret != 0)
2177                 return;
2178
2179         if (strstr(dev_info.driver_name, "i40e") != NULL) {
2180                 /* 32 bytes RX descriptor, i40e only */
2181                 struct igb_ring_desc_32_bytes *ring =
2182                         (struct igb_ring_desc_32_bytes *)ring_mz->addr;
2183                 ring[desc_id].lo_dword.dword =
2184                         rte_le_to_cpu_64(ring[desc_id].lo_dword.dword);
2185                 ring_rxd_display_dword(ring[desc_id].lo_dword);
2186                 ring[desc_id].hi_dword.dword =
2187                         rte_le_to_cpu_64(ring[desc_id].hi_dword.dword);
2188                 ring_rxd_display_dword(ring[desc_id].hi_dword);
2189                 ring[desc_id].resv1.dword =
2190                         rte_le_to_cpu_64(ring[desc_id].resv1.dword);
2191                 ring_rxd_display_dword(ring[desc_id].resv1);
2192                 ring[desc_id].resv2.dword =
2193                         rte_le_to_cpu_64(ring[desc_id].resv2.dword);
2194                 ring_rxd_display_dword(ring[desc_id].resv2);
2195
2196                 return;
2197         }
2198 #endif
2199         /* 16 bytes RX descriptor */
2200         ring[desc_id].lo_dword.dword =
2201                 rte_le_to_cpu_64(ring[desc_id].lo_dword.dword);
2202         ring_rxd_display_dword(ring[desc_id].lo_dword);
2203         ring[desc_id].hi_dword.dword =
2204                 rte_le_to_cpu_64(ring[desc_id].hi_dword.dword);
2205         ring_rxd_display_dword(ring[desc_id].hi_dword);
2206 }
2207
2208 static void
2209 ring_tx_descriptor_display(const struct rte_memzone *ring_mz, uint16_t desc_id)
2210 {
2211         struct igb_ring_desc_16_bytes *ring;
2212         struct igb_ring_desc_16_bytes txd;
2213
2214         ring = (struct igb_ring_desc_16_bytes *)ring_mz->addr;
2215         txd.lo_dword.dword = rte_le_to_cpu_64(ring[desc_id].lo_dword.dword);
2216         txd.hi_dword.dword = rte_le_to_cpu_64(ring[desc_id].hi_dword.dword);
2217         printf("    0x%08X - 0x%08X / 0x%08X - 0x%08X\n",
2218                         (unsigned)txd.lo_dword.words.lo,
2219                         (unsigned)txd.lo_dword.words.hi,
2220                         (unsigned)txd.hi_dword.words.lo,
2221                         (unsigned)txd.hi_dword.words.hi);
2222 }
2223
2224 void
2225 rx_ring_desc_display(portid_t port_id, queueid_t rxq_id, uint16_t rxd_id)
2226 {
2227         const struct rte_memzone *rx_mz;
2228
2229         if (rx_desc_id_is_invalid(port_id, rxq_id, rxd_id))
2230                 return;
2231         rx_mz = ring_dma_zone_lookup("rx_ring", port_id, rxq_id);
2232         if (rx_mz == NULL)
2233                 return;
2234         ring_rx_descriptor_display(rx_mz, port_id, rxd_id);
2235 }
2236
2237 void
2238 tx_ring_desc_display(portid_t port_id, queueid_t txq_id, uint16_t txd_id)
2239 {
2240         const struct rte_memzone *tx_mz;
2241
2242         if (tx_desc_id_is_invalid(port_id, txq_id, txd_id))
2243                 return;
2244         tx_mz = ring_dma_zone_lookup("tx_ring", port_id, txq_id);
2245         if (tx_mz == NULL)
2246                 return;
2247         ring_tx_descriptor_display(tx_mz, txd_id);
2248 }
2249
2250 void
2251 fwd_lcores_config_display(void)
2252 {
2253         lcoreid_t lc_id;
2254
2255         printf("List of forwarding lcores:");
2256         for (lc_id = 0; lc_id < nb_cfg_lcores; lc_id++)
2257                 printf(" %2u", fwd_lcores_cpuids[lc_id]);
2258         printf("\n");
2259 }
2260 void
2261 rxtx_config_display(void)
2262 {
2263         portid_t pid;
2264         queueid_t qid;
2265
2266         printf("  %s packet forwarding%s packets/burst=%d\n",
2267                cur_fwd_eng->fwd_mode_name,
2268                retry_enabled == 0 ? "" : " with retry",
2269                nb_pkt_per_burst);
2270
2271         if (cur_fwd_eng == &tx_only_engine || cur_fwd_eng == &flow_gen_engine)
2272                 printf("  packet len=%u - nb packet segments=%d\n",
2273                                 (unsigned)tx_pkt_length, (int) tx_pkt_nb_segs);
2274
2275         printf("  nb forwarding cores=%d - nb forwarding ports=%d\n",
2276                nb_fwd_lcores, nb_fwd_ports);
2277
2278         RTE_ETH_FOREACH_DEV(pid) {
2279                 struct rte_eth_rxconf *rx_conf = &ports[pid].rx_conf[0];
2280                 struct rte_eth_txconf *tx_conf = &ports[pid].tx_conf[0];
2281                 uint16_t *nb_rx_desc = &ports[pid].nb_rx_desc[0];
2282                 uint16_t *nb_tx_desc = &ports[pid].nb_tx_desc[0];
2283                 struct rte_eth_rxq_info rx_qinfo;
2284                 struct rte_eth_txq_info tx_qinfo;
2285                 uint16_t rx_free_thresh_tmp;
2286                 uint16_t tx_free_thresh_tmp;
2287                 uint16_t tx_rs_thresh_tmp;
2288                 uint16_t nb_rx_desc_tmp;
2289                 uint16_t nb_tx_desc_tmp;
2290                 uint64_t offloads_tmp;
2291                 uint8_t pthresh_tmp;
2292                 uint8_t hthresh_tmp;
2293                 uint8_t wthresh_tmp;
2294                 int32_t rc;
2295
2296                 /* per port config */
2297                 printf("  port %d: RX queue number: %d Tx queue number: %d\n",
2298                                 (unsigned int)pid, nb_rxq, nb_txq);
2299
2300                 printf("    Rx offloads=0x%"PRIx64" Tx offloads=0x%"PRIx64"\n",
2301                                 ports[pid].dev_conf.rxmode.offloads,
2302                                 ports[pid].dev_conf.txmode.offloads);
2303
2304                 /* per rx queue config only for first queue to be less verbose */
2305                 for (qid = 0; qid < 1; qid++) {
2306                         rc = rte_eth_rx_queue_info_get(pid, qid, &rx_qinfo);
2307                         if (rc) {
2308                                 nb_rx_desc_tmp = nb_rx_desc[qid];
2309                                 rx_free_thresh_tmp =
2310                                         rx_conf[qid].rx_free_thresh;
2311                                 pthresh_tmp = rx_conf[qid].rx_thresh.pthresh;
2312                                 hthresh_tmp = rx_conf[qid].rx_thresh.hthresh;
2313                                 wthresh_tmp = rx_conf[qid].rx_thresh.wthresh;
2314                                 offloads_tmp = rx_conf[qid].offloads;
2315                         } else {
2316                                 nb_rx_desc_tmp = rx_qinfo.nb_desc;
2317                                 rx_free_thresh_tmp =
2318                                                 rx_qinfo.conf.rx_free_thresh;
2319                                 pthresh_tmp = rx_qinfo.conf.rx_thresh.pthresh;
2320                                 hthresh_tmp = rx_qinfo.conf.rx_thresh.hthresh;
2321                                 wthresh_tmp = rx_qinfo.conf.rx_thresh.wthresh;
2322                                 offloads_tmp = rx_qinfo.conf.offloads;
2323                         }
2324
2325                         printf("    RX queue: %d\n", qid);
2326                         printf("      RX desc=%d - RX free threshold=%d\n",
2327                                 nb_rx_desc_tmp, rx_free_thresh_tmp);
2328                         printf("      RX threshold registers: pthresh=%d hthresh=%d "
2329                                 " wthresh=%d\n",
2330                                 pthresh_tmp, hthresh_tmp, wthresh_tmp);
2331                         printf("      RX Offloads=0x%"PRIx64"\n", offloads_tmp);
2332                 }
2333
2334                 /* per tx queue config only for first queue to be less verbose */
2335                 for (qid = 0; qid < 1; qid++) {
2336                         rc = rte_eth_tx_queue_info_get(pid, qid, &tx_qinfo);
2337                         if (rc) {
2338                                 nb_tx_desc_tmp = nb_tx_desc[qid];
2339                                 tx_free_thresh_tmp =
2340                                         tx_conf[qid].tx_free_thresh;
2341                                 pthresh_tmp = tx_conf[qid].tx_thresh.pthresh;
2342                                 hthresh_tmp = tx_conf[qid].tx_thresh.hthresh;
2343                                 wthresh_tmp = tx_conf[qid].tx_thresh.wthresh;
2344                                 offloads_tmp = tx_conf[qid].offloads;
2345                                 tx_rs_thresh_tmp = tx_conf[qid].tx_rs_thresh;
2346                         } else {
2347                                 nb_tx_desc_tmp = tx_qinfo.nb_desc;
2348                                 tx_free_thresh_tmp =
2349                                                 tx_qinfo.conf.tx_free_thresh;
2350                                 pthresh_tmp = tx_qinfo.conf.tx_thresh.pthresh;
2351                                 hthresh_tmp = tx_qinfo.conf.tx_thresh.hthresh;
2352                                 wthresh_tmp = tx_qinfo.conf.tx_thresh.wthresh;
2353                                 offloads_tmp = tx_qinfo.conf.offloads;
2354                                 tx_rs_thresh_tmp = tx_qinfo.conf.tx_rs_thresh;
2355                         }
2356
2357                         printf("    TX queue: %d\n", qid);
2358                         printf("      TX desc=%d - TX free threshold=%d\n",
2359                                 nb_tx_desc_tmp, tx_free_thresh_tmp);
2360                         printf("      TX threshold registers: pthresh=%d hthresh=%d "
2361                                 " wthresh=%d\n",
2362                                 pthresh_tmp, hthresh_tmp, wthresh_tmp);
2363                         printf("      TX offloads=0x%"PRIx64" - TX RS bit threshold=%d\n",
2364                                 offloads_tmp, tx_rs_thresh_tmp);
2365                 }
2366         }
2367 }
2368
2369 void
2370 port_rss_reta_info(portid_t port_id,
2371                    struct rte_eth_rss_reta_entry64 *reta_conf,
2372                    uint16_t nb_entries)
2373 {
2374         uint16_t i, idx, shift;
2375         int ret;
2376
2377         if (port_id_is_invalid(port_id, ENABLED_WARN))
2378                 return;
2379
2380         ret = rte_eth_dev_rss_reta_query(port_id, reta_conf, nb_entries);
2381         if (ret != 0) {
2382                 printf("Failed to get RSS RETA info, return code = %d\n", ret);
2383                 return;
2384         }
2385
2386         for (i = 0; i < nb_entries; i++) {
2387                 idx = i / RTE_RETA_GROUP_SIZE;
2388                 shift = i % RTE_RETA_GROUP_SIZE;
2389                 if (!(reta_conf[idx].mask & (1ULL << shift)))
2390                         continue;
2391                 printf("RSS RETA configuration: hash index=%u, queue=%u\n",
2392                                         i, reta_conf[idx].reta[shift]);
2393         }
2394 }
2395
2396 /*
2397  * Displays the RSS hash functions of a port, and, optionaly, the RSS hash
2398  * key of the port.
2399  */
2400 void
2401 port_rss_hash_conf_show(portid_t port_id, int show_rss_key)
2402 {
2403         struct rte_eth_rss_conf rss_conf = {0};
2404         uint8_t rss_key[RSS_HASH_KEY_LENGTH];
2405         uint64_t rss_hf;
2406         uint8_t i;
2407         int diag;
2408         struct rte_eth_dev_info dev_info;
2409         uint8_t hash_key_size;
2410         int ret;
2411
2412         if (port_id_is_invalid(port_id, ENABLED_WARN))
2413                 return;
2414
2415         ret = eth_dev_info_get_print_err(port_id, &dev_info);
2416         if (ret != 0)
2417                 return;
2418
2419         if (dev_info.hash_key_size > 0 &&
2420                         dev_info.hash_key_size <= sizeof(rss_key))
2421                 hash_key_size = dev_info.hash_key_size;
2422         else {
2423                 printf("dev_info did not provide a valid hash key size\n");
2424                 return;
2425         }
2426
2427         /* Get RSS hash key if asked to display it */
2428         rss_conf.rss_key = (show_rss_key) ? rss_key : NULL;
2429         rss_conf.rss_key_len = hash_key_size;
2430         diag = rte_eth_dev_rss_hash_conf_get(port_id, &rss_conf);
2431         if (diag != 0) {
2432                 switch (diag) {
2433                 case -ENODEV:
2434                         printf("port index %d invalid\n", port_id);
2435                         break;
2436                 case -ENOTSUP:
2437                         printf("operation not supported by device\n");
2438                         break;
2439                 default:
2440                         printf("operation failed - diag=%d\n", diag);
2441                         break;
2442                 }
2443                 return;
2444         }
2445         rss_hf = rss_conf.rss_hf;
2446         if (rss_hf == 0) {
2447                 printf("RSS disabled\n");
2448                 return;
2449         }
2450         printf("RSS functions:\n ");
2451         for (i = 0; rss_type_table[i].str; i++) {
2452                 if (rss_hf & rss_type_table[i].rss_type)
2453                         printf("%s ", rss_type_table[i].str);
2454         }
2455         printf("\n");
2456         if (!show_rss_key)
2457                 return;
2458         printf("RSS key:\n");
2459         for (i = 0; i < hash_key_size; i++)
2460                 printf("%02X", rss_key[i]);
2461         printf("\n");
2462 }
2463
2464 void
2465 port_rss_hash_key_update(portid_t port_id, char rss_type[], uint8_t *hash_key,
2466                          uint hash_key_len)
2467 {
2468         struct rte_eth_rss_conf rss_conf;
2469         int diag;
2470         unsigned int i;
2471
2472         rss_conf.rss_key = NULL;
2473         rss_conf.rss_key_len = hash_key_len;
2474         rss_conf.rss_hf = 0;
2475         for (i = 0; rss_type_table[i].str; i++) {
2476                 if (!strcmp(rss_type_table[i].str, rss_type))
2477                         rss_conf.rss_hf = rss_type_table[i].rss_type;
2478         }
2479         diag = rte_eth_dev_rss_hash_conf_get(port_id, &rss_conf);
2480         if (diag == 0) {
2481                 rss_conf.rss_key = hash_key;
2482                 diag = rte_eth_dev_rss_hash_update(port_id, &rss_conf);
2483         }
2484         if (diag == 0)
2485                 return;
2486
2487         switch (diag) {
2488         case -ENODEV:
2489                 printf("port index %d invalid\n", port_id);
2490                 break;
2491         case -ENOTSUP:
2492                 printf("operation not supported by device\n");
2493                 break;
2494         default:
2495                 printf("operation failed - diag=%d\n", diag);
2496                 break;
2497         }
2498 }
2499
2500 /*
2501  * Setup forwarding configuration for each logical core.
2502  */
2503 static void
2504 setup_fwd_config_of_each_lcore(struct fwd_config *cfg)
2505 {
2506         streamid_t nb_fs_per_lcore;
2507         streamid_t nb_fs;
2508         streamid_t sm_id;
2509         lcoreid_t  nb_extra;
2510         lcoreid_t  nb_fc;
2511         lcoreid_t  nb_lc;
2512         lcoreid_t  lc_id;
2513
2514         nb_fs = cfg->nb_fwd_streams;
2515         nb_fc = cfg->nb_fwd_lcores;
2516         if (nb_fs <= nb_fc) {
2517                 nb_fs_per_lcore = 1;
2518                 nb_extra = 0;
2519         } else {
2520                 nb_fs_per_lcore = (streamid_t) (nb_fs / nb_fc);
2521                 nb_extra = (lcoreid_t) (nb_fs % nb_fc);
2522         }
2523
2524         nb_lc = (lcoreid_t) (nb_fc - nb_extra);
2525         sm_id = 0;
2526         for (lc_id = 0; lc_id < nb_lc; lc_id++) {
2527                 fwd_lcores[lc_id]->stream_idx = sm_id;
2528                 fwd_lcores[lc_id]->stream_nb = nb_fs_per_lcore;
2529                 sm_id = (streamid_t) (sm_id + nb_fs_per_lcore);
2530         }
2531
2532         /*
2533          * Assign extra remaining streams, if any.
2534          */
2535         nb_fs_per_lcore = (streamid_t) (nb_fs_per_lcore + 1);
2536         for (lc_id = 0; lc_id < nb_extra; lc_id++) {
2537                 fwd_lcores[nb_lc + lc_id]->stream_idx = sm_id;
2538                 fwd_lcores[nb_lc + lc_id]->stream_nb = nb_fs_per_lcore;
2539                 sm_id = (streamid_t) (sm_id + nb_fs_per_lcore);
2540         }
2541 }
2542
2543 static portid_t
2544 fwd_topology_tx_port_get(portid_t rxp)
2545 {
2546         static int warning_once = 1;
2547
2548         RTE_ASSERT(rxp < cur_fwd_config.nb_fwd_ports);
2549
2550         switch (port_topology) {
2551         default:
2552         case PORT_TOPOLOGY_PAIRED:
2553                 if ((rxp & 0x1) == 0) {
2554                         if (rxp + 1 < cur_fwd_config.nb_fwd_ports)
2555                                 return rxp + 1;
2556                         if (warning_once) {
2557                                 printf("\nWarning! port-topology=paired"
2558                                        " and odd forward ports number,"
2559                                        " the last port will pair with"
2560                                        " itself.\n\n");
2561                                 warning_once = 0;
2562                         }
2563                         return rxp;
2564                 }
2565                 return rxp - 1;
2566         case PORT_TOPOLOGY_CHAINED:
2567                 return (rxp + 1) % cur_fwd_config.nb_fwd_ports;
2568         case PORT_TOPOLOGY_LOOP:
2569                 return rxp;
2570         }
2571 }
2572
2573 static void
2574 simple_fwd_config_setup(void)
2575 {
2576         portid_t i;
2577
2578         cur_fwd_config.nb_fwd_ports = (portid_t) nb_fwd_ports;
2579         cur_fwd_config.nb_fwd_streams =
2580                 (streamid_t) cur_fwd_config.nb_fwd_ports;
2581
2582         /* reinitialize forwarding streams */
2583         init_fwd_streams();
2584
2585         /*
2586          * In the simple forwarding test, the number of forwarding cores
2587          * must be lower or equal to the number of forwarding ports.
2588          */
2589         cur_fwd_config.nb_fwd_lcores = (lcoreid_t) nb_fwd_lcores;
2590         if (cur_fwd_config.nb_fwd_lcores > cur_fwd_config.nb_fwd_ports)
2591                 cur_fwd_config.nb_fwd_lcores =
2592                         (lcoreid_t) cur_fwd_config.nb_fwd_ports;
2593         setup_fwd_config_of_each_lcore(&cur_fwd_config);
2594
2595         for (i = 0; i < cur_fwd_config.nb_fwd_ports; i++) {
2596                 fwd_streams[i]->rx_port   = fwd_ports_ids[i];
2597                 fwd_streams[i]->rx_queue  = 0;
2598                 fwd_streams[i]->tx_port   =
2599                                 fwd_ports_ids[fwd_topology_tx_port_get(i)];
2600                 fwd_streams[i]->tx_queue  = 0;
2601                 fwd_streams[i]->peer_addr = fwd_streams[i]->tx_port;
2602                 fwd_streams[i]->retry_enabled = retry_enabled;
2603         }
2604 }
2605
2606 /**
2607  * For the RSS forwarding test all streams distributed over lcores. Each stream
2608  * being composed of a RX queue to poll on a RX port for input messages,
2609  * associated with a TX queue of a TX port where to send forwarded packets.
2610  */
2611 static void
2612 rss_fwd_config_setup(void)
2613 {
2614         portid_t   rxp;
2615         portid_t   txp;
2616         queueid_t  rxq;
2617         queueid_t  nb_q;
2618         streamid_t  sm_id;
2619
2620         nb_q = nb_rxq;
2621         if (nb_q > nb_txq)
2622                 nb_q = nb_txq;
2623         cur_fwd_config.nb_fwd_lcores = (lcoreid_t) nb_fwd_lcores;
2624         cur_fwd_config.nb_fwd_ports = nb_fwd_ports;
2625         cur_fwd_config.nb_fwd_streams =
2626                 (streamid_t) (nb_q * cur_fwd_config.nb_fwd_ports);
2627
2628         if (cur_fwd_config.nb_fwd_streams < cur_fwd_config.nb_fwd_lcores)
2629                 cur_fwd_config.nb_fwd_lcores =
2630                         (lcoreid_t)cur_fwd_config.nb_fwd_streams;
2631
2632         /* reinitialize forwarding streams */
2633         init_fwd_streams();
2634
2635         setup_fwd_config_of_each_lcore(&cur_fwd_config);
2636         rxp = 0; rxq = 0;
2637         for (sm_id = 0; sm_id < cur_fwd_config.nb_fwd_streams; sm_id++) {
2638                 struct fwd_stream *fs;
2639
2640                 fs = fwd_streams[sm_id];
2641                 txp = fwd_topology_tx_port_get(rxp);
2642                 fs->rx_port = fwd_ports_ids[rxp];
2643                 fs->rx_queue = rxq;
2644                 fs->tx_port = fwd_ports_ids[txp];
2645                 fs->tx_queue = rxq;
2646                 fs->peer_addr = fs->tx_port;
2647                 fs->retry_enabled = retry_enabled;
2648                 rxp++;
2649                 if (rxp < nb_fwd_ports)
2650                         continue;
2651                 rxp = 0;
2652                 rxq++;
2653         }
2654 }
2655
2656 /**
2657  * For the DCB forwarding test, each core is assigned on each traffic class.
2658  *
2659  * Each core is assigned a multi-stream, each stream being composed of
2660  * a RX queue to poll on a RX port for input messages, associated with
2661  * a TX queue of a TX port where to send forwarded packets. All RX and
2662  * TX queues are mapping to the same traffic class.
2663  * If VMDQ and DCB co-exist, each traffic class on different POOLs share
2664  * the same core
2665  */
2666 static void
2667 dcb_fwd_config_setup(void)
2668 {
2669         struct rte_eth_dcb_info rxp_dcb_info, txp_dcb_info;
2670         portid_t txp, rxp = 0;
2671         queueid_t txq, rxq = 0;
2672         lcoreid_t  lc_id;
2673         uint16_t nb_rx_queue, nb_tx_queue;
2674         uint16_t i, j, k, sm_id = 0;
2675         uint8_t tc = 0;
2676
2677         cur_fwd_config.nb_fwd_lcores = (lcoreid_t) nb_fwd_lcores;
2678         cur_fwd_config.nb_fwd_ports = nb_fwd_ports;
2679         cur_fwd_config.nb_fwd_streams =
2680                 (streamid_t) (nb_rxq * cur_fwd_config.nb_fwd_ports);
2681
2682         /* reinitialize forwarding streams */
2683         init_fwd_streams();
2684         sm_id = 0;
2685         txp = 1;
2686         /* get the dcb info on the first RX and TX ports */
2687         (void)rte_eth_dev_get_dcb_info(fwd_ports_ids[rxp], &rxp_dcb_info);
2688         (void)rte_eth_dev_get_dcb_info(fwd_ports_ids[txp], &txp_dcb_info);
2689
2690         for (lc_id = 0; lc_id < cur_fwd_config.nb_fwd_lcores; lc_id++) {
2691                 fwd_lcores[lc_id]->stream_nb = 0;
2692                 fwd_lcores[lc_id]->stream_idx = sm_id;
2693                 for (i = 0; i < ETH_MAX_VMDQ_POOL; i++) {
2694                         /* if the nb_queue is zero, means this tc is
2695                          * not enabled on the POOL
2696                          */
2697                         if (rxp_dcb_info.tc_queue.tc_rxq[i][tc].nb_queue == 0)
2698                                 break;
2699                         k = fwd_lcores[lc_id]->stream_nb +
2700                                 fwd_lcores[lc_id]->stream_idx;
2701                         rxq = rxp_dcb_info.tc_queue.tc_rxq[i][tc].base;
2702                         txq = txp_dcb_info.tc_queue.tc_txq[i][tc].base;
2703                         nb_rx_queue = txp_dcb_info.tc_queue.tc_rxq[i][tc].nb_queue;
2704                         nb_tx_queue = txp_dcb_info.tc_queue.tc_txq[i][tc].nb_queue;
2705                         for (j = 0; j < nb_rx_queue; j++) {
2706                                 struct fwd_stream *fs;
2707
2708                                 fs = fwd_streams[k + j];
2709                                 fs->rx_port = fwd_ports_ids[rxp];
2710                                 fs->rx_queue = rxq + j;
2711                                 fs->tx_port = fwd_ports_ids[txp];
2712                                 fs->tx_queue = txq + j % nb_tx_queue;
2713                                 fs->peer_addr = fs->tx_port;
2714                                 fs->retry_enabled = retry_enabled;
2715                         }
2716                         fwd_lcores[lc_id]->stream_nb +=
2717                                 rxp_dcb_info.tc_queue.tc_rxq[i][tc].nb_queue;
2718                 }
2719                 sm_id = (streamid_t) (sm_id + fwd_lcores[lc_id]->stream_nb);
2720
2721                 tc++;
2722                 if (tc < rxp_dcb_info.nb_tcs)
2723                         continue;
2724                 /* Restart from TC 0 on next RX port */
2725                 tc = 0;
2726                 if (numa_support && (nb_fwd_ports <= (nb_ports >> 1)))
2727                         rxp = (portid_t)
2728                                 (rxp + ((nb_ports >> 1) / nb_fwd_ports));
2729                 else
2730                         rxp++;
2731                 if (rxp >= nb_fwd_ports)
2732                         return;
2733                 /* get the dcb information on next RX and TX ports */
2734                 if ((rxp & 0x1) == 0)
2735                         txp = (portid_t) (rxp + 1);
2736                 else
2737                         txp = (portid_t) (rxp - 1);
2738                 rte_eth_dev_get_dcb_info(fwd_ports_ids[rxp], &rxp_dcb_info);
2739                 rte_eth_dev_get_dcb_info(fwd_ports_ids[txp], &txp_dcb_info);
2740         }
2741 }
2742
2743 static void
2744 icmp_echo_config_setup(void)
2745 {
2746         portid_t  rxp;
2747         queueid_t rxq;
2748         lcoreid_t lc_id;
2749         uint16_t  sm_id;
2750
2751         if ((nb_txq * nb_fwd_ports) < nb_fwd_lcores)
2752                 cur_fwd_config.nb_fwd_lcores = (lcoreid_t)
2753                         (nb_txq * nb_fwd_ports);
2754         else
2755                 cur_fwd_config.nb_fwd_lcores = (lcoreid_t) nb_fwd_lcores;
2756         cur_fwd_config.nb_fwd_ports = nb_fwd_ports;
2757         cur_fwd_config.nb_fwd_streams =
2758                 (streamid_t) (nb_rxq * cur_fwd_config.nb_fwd_ports);
2759         if (cur_fwd_config.nb_fwd_streams < cur_fwd_config.nb_fwd_lcores)
2760                 cur_fwd_config.nb_fwd_lcores =
2761                         (lcoreid_t)cur_fwd_config.nb_fwd_streams;
2762         if (verbose_level > 0) {
2763                 printf("%s fwd_cores=%d fwd_ports=%d fwd_streams=%d\n",
2764                        __FUNCTION__,
2765                        cur_fwd_config.nb_fwd_lcores,
2766                        cur_fwd_config.nb_fwd_ports,
2767                        cur_fwd_config.nb_fwd_streams);
2768         }
2769
2770         /* reinitialize forwarding streams */
2771         init_fwd_streams();
2772         setup_fwd_config_of_each_lcore(&cur_fwd_config);
2773         rxp = 0; rxq = 0;
2774         for (lc_id = 0; lc_id < cur_fwd_config.nb_fwd_lcores; lc_id++) {
2775                 if (verbose_level > 0)
2776                         printf("  core=%d: \n", lc_id);
2777                 for (sm_id = 0; sm_id < fwd_lcores[lc_id]->stream_nb; sm_id++) {
2778                         struct fwd_stream *fs;
2779                         fs = fwd_streams[fwd_lcores[lc_id]->stream_idx + sm_id];
2780                         fs->rx_port = fwd_ports_ids[rxp];
2781                         fs->rx_queue = rxq;
2782                         fs->tx_port = fs->rx_port;
2783                         fs->tx_queue = rxq;
2784                         fs->peer_addr = fs->tx_port;
2785                         fs->retry_enabled = retry_enabled;
2786                         if (verbose_level > 0)
2787                                 printf("  stream=%d port=%d rxq=%d txq=%d\n",
2788                                        sm_id, fs->rx_port, fs->rx_queue,
2789                                        fs->tx_queue);
2790                         rxq = (queueid_t) (rxq + 1);
2791                         if (rxq == nb_rxq) {
2792                                 rxq = 0;
2793                                 rxp = (portid_t) (rxp + 1);
2794                         }
2795                 }
2796         }
2797 }
2798
2799 void
2800 fwd_config_setup(void)
2801 {
2802         cur_fwd_config.fwd_eng = cur_fwd_eng;
2803         if (strcmp(cur_fwd_eng->fwd_mode_name, "icmpecho") == 0) {
2804                 icmp_echo_config_setup();
2805                 return;
2806         }
2807
2808         if ((nb_rxq > 1) && (nb_txq > 1)){
2809                 if (dcb_config)
2810                         dcb_fwd_config_setup();
2811                 else
2812                         rss_fwd_config_setup();
2813         }
2814         else
2815                 simple_fwd_config_setup();
2816 }
2817
2818 static const char *
2819 mp_alloc_to_str(uint8_t mode)
2820 {
2821         switch (mode) {
2822         case MP_ALLOC_NATIVE:
2823                 return "native";
2824         case MP_ALLOC_ANON:
2825                 return "anon";
2826         case MP_ALLOC_XMEM:
2827                 return "xmem";
2828         case MP_ALLOC_XMEM_HUGE:
2829                 return "xmemhuge";
2830         case MP_ALLOC_XBUF:
2831                 return "xbuf";
2832         default:
2833                 return "invalid";
2834         }
2835 }
2836
2837 void
2838 pkt_fwd_config_display(struct fwd_config *cfg)
2839 {
2840         struct fwd_stream *fs;
2841         lcoreid_t  lc_id;
2842         streamid_t sm_id;
2843
2844         printf("%s packet forwarding%s - ports=%d - cores=%d - streams=%d - "
2845                 "NUMA support %s, MP allocation mode: %s\n",
2846                 cfg->fwd_eng->fwd_mode_name,
2847                 retry_enabled == 0 ? "" : " with retry",
2848                 cfg->nb_fwd_ports, cfg->nb_fwd_lcores, cfg->nb_fwd_streams,
2849                 numa_support == 1 ? "enabled" : "disabled",
2850                 mp_alloc_to_str(mp_alloc_type));
2851
2852         if (retry_enabled)
2853                 printf("TX retry num: %u, delay between TX retries: %uus\n",
2854                         burst_tx_retry_num, burst_tx_delay_time);
2855         for (lc_id = 0; lc_id < cfg->nb_fwd_lcores; lc_id++) {
2856                 printf("Logical Core %u (socket %u) forwards packets on "
2857                        "%d streams:",
2858                        fwd_lcores_cpuids[lc_id],
2859                        rte_lcore_to_socket_id(fwd_lcores_cpuids[lc_id]),
2860                        fwd_lcores[lc_id]->stream_nb);
2861                 for (sm_id = 0; sm_id < fwd_lcores[lc_id]->stream_nb; sm_id++) {
2862                         fs = fwd_streams[fwd_lcores[lc_id]->stream_idx + sm_id];
2863                         printf("\n  RX P=%d/Q=%d (socket %u) -> TX "
2864                                "P=%d/Q=%d (socket %u) ",
2865                                fs->rx_port, fs->rx_queue,
2866                                ports[fs->rx_port].socket_id,
2867                                fs->tx_port, fs->tx_queue,
2868                                ports[fs->tx_port].socket_id);
2869                         print_ethaddr("peer=",
2870                                       &peer_eth_addrs[fs->peer_addr]);
2871                 }
2872                 printf("\n");
2873         }
2874         printf("\n");
2875 }
2876
2877 void
2878 set_fwd_eth_peer(portid_t port_id, char *peer_addr)
2879 {
2880         struct rte_ether_addr new_peer_addr;
2881         if (!rte_eth_dev_is_valid_port(port_id)) {
2882                 printf("Error: Invalid port number %i\n", port_id);
2883                 return;
2884         }
2885         if (rte_ether_unformat_addr(peer_addr, &new_peer_addr) < 0) {
2886                 printf("Error: Invalid ethernet address: %s\n", peer_addr);
2887                 return;
2888         }
2889         peer_eth_addrs[port_id] = new_peer_addr;
2890 }
2891
2892 int
2893 set_fwd_lcores_list(unsigned int *lcorelist, unsigned int nb_lc)
2894 {
2895         unsigned int i;
2896         unsigned int lcore_cpuid;
2897         int record_now;
2898
2899         record_now = 0;
2900  again:
2901         for (i = 0; i < nb_lc; i++) {
2902                 lcore_cpuid = lcorelist[i];
2903                 if (! rte_lcore_is_enabled(lcore_cpuid)) {
2904                         printf("lcore %u not enabled\n", lcore_cpuid);
2905                         return -1;
2906                 }
2907                 if (lcore_cpuid == rte_get_master_lcore()) {
2908                         printf("lcore %u cannot be masked on for running "
2909                                "packet forwarding, which is the master lcore "
2910                                "and reserved for command line parsing only\n",
2911                                lcore_cpuid);
2912                         return -1;
2913                 }
2914                 if (record_now)
2915                         fwd_lcores_cpuids[i] = lcore_cpuid;
2916         }
2917         if (record_now == 0) {
2918                 record_now = 1;
2919                 goto again;
2920         }
2921         nb_cfg_lcores = (lcoreid_t) nb_lc;
2922         if (nb_fwd_lcores != (lcoreid_t) nb_lc) {
2923                 printf("previous number of forwarding cores %u - changed to "
2924                        "number of configured cores %u\n",
2925                        (unsigned int) nb_fwd_lcores, nb_lc);
2926                 nb_fwd_lcores = (lcoreid_t) nb_lc;
2927         }
2928
2929         return 0;
2930 }
2931
2932 int
2933 set_fwd_lcores_mask(uint64_t lcoremask)
2934 {
2935         unsigned int lcorelist[64];
2936         unsigned int nb_lc;
2937         unsigned int i;
2938
2939         if (lcoremask == 0) {
2940                 printf("Invalid NULL mask of cores\n");
2941                 return -1;
2942         }
2943         nb_lc = 0;
2944         for (i = 0; i < 64; i++) {
2945                 if (! ((uint64_t)(1ULL << i) & lcoremask))
2946                         continue;
2947                 lcorelist[nb_lc++] = i;
2948         }
2949         return set_fwd_lcores_list(lcorelist, nb_lc);
2950 }
2951
2952 void
2953 set_fwd_lcores_number(uint16_t nb_lc)
2954 {
2955         if (nb_lc > nb_cfg_lcores) {
2956                 printf("nb fwd cores %u > %u (max. number of configured "
2957                        "lcores) - ignored\n",
2958                        (unsigned int) nb_lc, (unsigned int) nb_cfg_lcores);
2959                 return;
2960         }
2961         nb_fwd_lcores = (lcoreid_t) nb_lc;
2962         printf("Number of forwarding cores set to %u\n",
2963                (unsigned int) nb_fwd_lcores);
2964 }
2965
2966 void
2967 set_fwd_ports_list(unsigned int *portlist, unsigned int nb_pt)
2968 {
2969         unsigned int i;
2970         portid_t port_id;
2971         int record_now;
2972
2973         record_now = 0;
2974  again:
2975         for (i = 0; i < nb_pt; i++) {
2976                 port_id = (portid_t) portlist[i];
2977                 if (port_id_is_invalid(port_id, ENABLED_WARN))
2978                         return;
2979                 if (record_now)
2980                         fwd_ports_ids[i] = port_id;
2981         }
2982         if (record_now == 0) {
2983                 record_now = 1;
2984                 goto again;
2985         }
2986         nb_cfg_ports = (portid_t) nb_pt;
2987         if (nb_fwd_ports != (portid_t) nb_pt) {
2988                 printf("previous number of forwarding ports %u - changed to "
2989                        "number of configured ports %u\n",
2990                        (unsigned int) nb_fwd_ports, nb_pt);
2991                 nb_fwd_ports = (portid_t) nb_pt;
2992         }
2993 }
2994
2995 /**
2996  * Parse the user input and obtain the list of forwarding ports
2997  *
2998  * @param[in] list
2999  *   String containing the user input. User can specify
3000  *   in these formats 1,3,5 or 1-3 or 1-2,5 or 3,5-6.
3001  *   For example, if the user wants to use all the available
3002  *   4 ports in his system, then the input can be 0-3 or 0,1,2,3.
3003  *   If the user wants to use only the ports 1,2 then the input
3004  *   is 1,2.
3005  *   valid characters are '-' and ','
3006  * @param[out] values
3007  *   This array will be filled with a list of port IDs
3008  *   based on the user input
3009  *   Note that duplicate entries are discarded and only the first
3010  *   count entries in this array are port IDs and all the rest
3011  *   will contain default values
3012  * @param[in] maxsize
3013  *   This parameter denotes 2 things
3014  *   1) Number of elements in the values array
3015  *   2) Maximum value of each element in the values array
3016  * @return
3017  *   On success, returns total count of parsed port IDs
3018  *   On failure, returns 0
3019  */
3020 static unsigned int
3021 parse_port_list(const char *list, unsigned int *values, unsigned int maxsize)
3022 {
3023         unsigned int count = 0;
3024         char *end = NULL;
3025         int min, max;
3026         int value, i;
3027         unsigned int marked[maxsize];
3028
3029         if (list == NULL || values == NULL)
3030                 return 0;
3031
3032         for (i = 0; i < (int)maxsize; i++)
3033                 marked[i] = 0;
3034
3035         min = INT_MAX;
3036
3037         do {
3038                 /*Remove the blank spaces if any*/
3039                 while (isblank(*list))
3040                         list++;
3041                 if (*list == '\0')
3042                         break;
3043                 errno = 0;
3044                 value = strtol(list, &end, 10);
3045                 if (errno || end == NULL)
3046                         return 0;
3047                 if (value < 0 || value >= (int)maxsize)
3048                         return 0;
3049                 while (isblank(*end))
3050                         end++;
3051                 if (*end == '-' && min == INT_MAX) {
3052                         min = value;
3053                 } else if ((*end == ',') || (*end == '\0')) {
3054                         max = value;
3055                         if (min == INT_MAX)
3056                                 min = value;
3057                         for (i = min; i <= max; i++) {
3058                                 if (count < maxsize) {
3059                                         if (marked[i])
3060                                                 continue;
3061                                         values[count] = i;
3062                                         marked[i] = 1;
3063                                         count++;
3064                                 }
3065                         }
3066                         min = INT_MAX;
3067                 } else
3068                         return 0;
3069                 list = end + 1;
3070         } while (*end != '\0');
3071
3072         return count;
3073 }
3074
3075 void
3076 parse_fwd_portlist(const char *portlist)
3077 {
3078         unsigned int portcount;
3079         unsigned int portindex[RTE_MAX_ETHPORTS];
3080         unsigned int i, valid_port_count = 0;
3081
3082         portcount = parse_port_list(portlist, portindex, RTE_MAX_ETHPORTS);
3083         if (!portcount)
3084                 rte_exit(EXIT_FAILURE, "Invalid fwd port list\n");
3085
3086         /*
3087          * Here we verify the validity of the ports
3088          * and thereby calculate the total number of
3089          * valid ports
3090          */
3091         for (i = 0; i < portcount && i < RTE_DIM(portindex); i++) {
3092                 if (rte_eth_dev_is_valid_port(portindex[i])) {
3093                         portindex[valid_port_count] = portindex[i];
3094                         valid_port_count++;
3095                 }
3096         }
3097
3098         set_fwd_ports_list(portindex, valid_port_count);
3099 }
3100
3101 void
3102 set_fwd_ports_mask(uint64_t portmask)
3103 {
3104         unsigned int portlist[64];
3105         unsigned int nb_pt;
3106         unsigned int i;
3107
3108         if (portmask == 0) {
3109                 printf("Invalid NULL mask of ports\n");
3110                 return;
3111         }
3112         nb_pt = 0;
3113         RTE_ETH_FOREACH_DEV(i) {
3114                 if (! ((uint64_t)(1ULL << i) & portmask))
3115                         continue;
3116                 portlist[nb_pt++] = i;
3117         }
3118         set_fwd_ports_list(portlist, nb_pt);
3119 }
3120
3121 void
3122 set_fwd_ports_number(uint16_t nb_pt)
3123 {
3124         if (nb_pt > nb_cfg_ports) {
3125                 printf("nb fwd ports %u > %u (number of configured "
3126                        "ports) - ignored\n",
3127                        (unsigned int) nb_pt, (unsigned int) nb_cfg_ports);
3128                 return;
3129         }
3130         nb_fwd_ports = (portid_t) nb_pt;
3131         printf("Number of forwarding ports set to %u\n",
3132                (unsigned int) nb_fwd_ports);
3133 }
3134
3135 int
3136 port_is_forwarding(portid_t port_id)
3137 {
3138         unsigned int i;
3139
3140         if (port_id_is_invalid(port_id, ENABLED_WARN))
3141                 return -1;
3142
3143         for (i = 0; i < nb_fwd_ports; i++) {
3144                 if (fwd_ports_ids[i] == port_id)
3145                         return 1;
3146         }
3147
3148         return 0;
3149 }
3150
3151 void
3152 set_nb_pkt_per_burst(uint16_t nb)
3153 {
3154         if (nb > MAX_PKT_BURST) {
3155                 printf("nb pkt per burst: %u > %u (maximum packet per burst) "
3156                        " ignored\n",
3157                        (unsigned int) nb, (unsigned int) MAX_PKT_BURST);
3158                 return;
3159         }
3160         nb_pkt_per_burst = nb;
3161         printf("Number of packets per burst set to %u\n",
3162                (unsigned int) nb_pkt_per_burst);
3163 }
3164
3165 static const char *
3166 tx_split_get_name(enum tx_pkt_split split)
3167 {
3168         uint32_t i;
3169
3170         for (i = 0; i != RTE_DIM(tx_split_name); i++) {
3171                 if (tx_split_name[i].split == split)
3172                         return tx_split_name[i].name;
3173         }
3174         return NULL;
3175 }
3176
3177 void
3178 set_tx_pkt_split(const char *name)
3179 {
3180         uint32_t i;
3181
3182         for (i = 0; i != RTE_DIM(tx_split_name); i++) {
3183                 if (strcmp(tx_split_name[i].name, name) == 0) {
3184                         tx_pkt_split = tx_split_name[i].split;
3185                         return;
3186                 }
3187         }
3188         printf("unknown value: \"%s\"\n", name);
3189 }
3190
3191 void
3192 show_tx_pkt_segments(void)
3193 {
3194         uint32_t i, n;
3195         const char *split;
3196
3197         n = tx_pkt_nb_segs;
3198         split = tx_split_get_name(tx_pkt_split);
3199
3200         printf("Number of segments: %u\n", n);
3201         printf("Segment sizes: ");
3202         for (i = 0; i != n - 1; i++)
3203                 printf("%hu,", tx_pkt_seg_lengths[i]);
3204         printf("%hu\n", tx_pkt_seg_lengths[i]);
3205         printf("Split packet: %s\n", split);
3206 }
3207
3208 static bool
3209 nb_segs_is_invalid(unsigned int nb_segs)
3210 {
3211         uint16_t ring_size;
3212         uint16_t queue_id;
3213         uint16_t port_id;
3214         int ret;
3215
3216         RTE_ETH_FOREACH_DEV(port_id) {
3217                 for (queue_id = 0; queue_id < nb_txq; queue_id++) {
3218                         ret = get_tx_ring_size(port_id, queue_id, &ring_size);
3219
3220                         if (ret)
3221                                 return true;
3222
3223                         if (ring_size < nb_segs) {
3224                                 printf("nb segments per TX packets=%u >= "
3225                                        "TX queue(%u) ring_size=%u - ignored\n",
3226                                        nb_segs, queue_id, ring_size);
3227                                 return true;
3228                         }
3229                 }
3230         }
3231
3232         return false;
3233 }
3234
3235 void
3236 set_tx_pkt_segments(unsigned *seg_lengths, unsigned nb_segs)
3237 {
3238         uint16_t tx_pkt_len;
3239         unsigned i;
3240
3241         if (nb_segs_is_invalid(nb_segs))
3242                 return;
3243
3244         /*
3245          * Check that each segment length is greater or equal than
3246          * the mbuf data sise.
3247          * Check also that the total packet length is greater or equal than the
3248          * size of an empty UDP/IP packet (sizeof(struct rte_ether_hdr) +
3249          * 20 + 8).
3250          */
3251         tx_pkt_len = 0;
3252         for (i = 0; i < nb_segs; i++) {
3253                 if (seg_lengths[i] > (unsigned) mbuf_data_size) {
3254                         printf("length[%u]=%u > mbuf_data_size=%u - give up\n",
3255                                i, seg_lengths[i], (unsigned) mbuf_data_size);
3256                         return;
3257                 }
3258                 tx_pkt_len = (uint16_t)(tx_pkt_len + seg_lengths[i]);
3259         }
3260         if (tx_pkt_len < (sizeof(struct rte_ether_hdr) + 20 + 8)) {
3261                 printf("total packet length=%u < %d - give up\n",
3262                                 (unsigned) tx_pkt_len,
3263                                 (int)(sizeof(struct rte_ether_hdr) + 20 + 8));
3264                 return;
3265         }
3266
3267         for (i = 0; i < nb_segs; i++)
3268                 tx_pkt_seg_lengths[i] = (uint16_t) seg_lengths[i];
3269
3270         tx_pkt_length  = tx_pkt_len;
3271         tx_pkt_nb_segs = (uint8_t) nb_segs;
3272 }
3273
3274 void
3275 show_tx_pkt_times(void)
3276 {
3277         printf("Interburst gap: %u\n", tx_pkt_times_inter);
3278         printf("Intraburst gap: %u\n", tx_pkt_times_intra);
3279 }
3280
3281 void
3282 set_tx_pkt_times(unsigned int *tx_times)
3283 {
3284         uint16_t port_id;
3285         int offload_found = 0;
3286         int offset;
3287         int flag;
3288
3289         static const struct rte_mbuf_dynfield desc_offs = {
3290                 .name = RTE_MBUF_DYNFIELD_TIMESTAMP_NAME,
3291                 .size = sizeof(uint64_t),
3292                 .align = __alignof__(uint64_t),
3293         };
3294         static const struct rte_mbuf_dynflag desc_flag = {
3295                 .name = RTE_MBUF_DYNFLAG_TX_TIMESTAMP_NAME,
3296         };
3297
3298         RTE_ETH_FOREACH_DEV(port_id) {
3299                 struct rte_eth_dev_info dev_info = { 0 };
3300                 int ret;
3301
3302                 ret = rte_eth_dev_info_get(port_id, &dev_info);
3303                 if (ret == 0 && dev_info.tx_offload_capa &
3304                                 DEV_TX_OFFLOAD_SEND_ON_TIMESTAMP) {
3305                         offload_found = 1;
3306                         break;
3307                 }
3308         }
3309         if (!offload_found) {
3310                 printf("No device supporting Tx timestamp scheduling found, "
3311                        "dynamic flag and field not registered\n");
3312                 return;
3313         }
3314         offset = rte_mbuf_dynfield_register(&desc_offs);
3315         if (offset < 0 && rte_errno != EEXIST)
3316                 printf("Dynamic timestamp field registration error: %d",
3317                        rte_errno);
3318         flag = rte_mbuf_dynflag_register(&desc_flag);
3319         if (flag < 0 && rte_errno != EEXIST)
3320                 printf("Dynamic timestamp flag registration error: %d",
3321                        rte_errno);
3322         tx_pkt_times_inter = tx_times[0];
3323         tx_pkt_times_intra = tx_times[1];
3324 }
3325
3326 void
3327 setup_gro(const char *onoff, portid_t port_id)
3328 {
3329         if (!rte_eth_dev_is_valid_port(port_id)) {
3330                 printf("invalid port id %u\n", port_id);
3331                 return;
3332         }
3333         if (test_done == 0) {
3334                 printf("Before enable/disable GRO,"
3335                                 " please stop forwarding first\n");
3336                 return;
3337         }
3338         if (strcmp(onoff, "on") == 0) {
3339                 if (gro_ports[port_id].enable != 0) {
3340                         printf("Port %u has enabled GRO. Please"
3341                                         " disable GRO first\n", port_id);
3342                         return;
3343                 }
3344                 if (gro_flush_cycles == GRO_DEFAULT_FLUSH_CYCLES) {
3345                         gro_ports[port_id].param.gro_types = RTE_GRO_TCP_IPV4;
3346                         gro_ports[port_id].param.max_flow_num =
3347                                 GRO_DEFAULT_FLOW_NUM;
3348                         gro_ports[port_id].param.max_item_per_flow =
3349                                 GRO_DEFAULT_ITEM_NUM_PER_FLOW;
3350                 }
3351                 gro_ports[port_id].enable = 1;
3352         } else {
3353                 if (gro_ports[port_id].enable == 0) {
3354                         printf("Port %u has disabled GRO\n", port_id);
3355                         return;
3356                 }
3357                 gro_ports[port_id].enable = 0;
3358         }
3359 }
3360
3361 void
3362 setup_gro_flush_cycles(uint8_t cycles)
3363 {
3364         if (test_done == 0) {
3365                 printf("Before change flush interval for GRO,"
3366                                 " please stop forwarding first.\n");
3367                 return;
3368         }
3369
3370         if (cycles > GRO_MAX_FLUSH_CYCLES || cycles <
3371                         GRO_DEFAULT_FLUSH_CYCLES) {
3372                 printf("The flushing cycle be in the range"
3373                                 " of 1 to %u. Revert to the default"
3374                                 " value %u.\n",
3375                                 GRO_MAX_FLUSH_CYCLES,
3376                                 GRO_DEFAULT_FLUSH_CYCLES);
3377                 cycles = GRO_DEFAULT_FLUSH_CYCLES;
3378         }
3379
3380         gro_flush_cycles = cycles;
3381 }
3382
3383 void
3384 show_gro(portid_t port_id)
3385 {
3386         struct rte_gro_param *param;
3387         uint32_t max_pkts_num;
3388
3389         param = &gro_ports[port_id].param;
3390
3391         if (!rte_eth_dev_is_valid_port(port_id)) {
3392                 printf("Invalid port id %u.\n", port_id);
3393                 return;
3394         }
3395         if (gro_ports[port_id].enable) {
3396                 printf("GRO type: TCP/IPv4\n");
3397                 if (gro_flush_cycles == GRO_DEFAULT_FLUSH_CYCLES) {
3398                         max_pkts_num = param->max_flow_num *
3399                                 param->max_item_per_flow;
3400                 } else
3401                         max_pkts_num = MAX_PKT_BURST * GRO_MAX_FLUSH_CYCLES;
3402                 printf("Max number of packets to perform GRO: %u\n",
3403                                 max_pkts_num);
3404                 printf("Flushing cycles: %u\n", gro_flush_cycles);
3405         } else
3406                 printf("Port %u doesn't enable GRO.\n", port_id);
3407 }
3408
3409 void
3410 setup_gso(const char *mode, portid_t port_id)
3411 {
3412         if (!rte_eth_dev_is_valid_port(port_id)) {
3413                 printf("invalid port id %u\n", port_id);
3414                 return;
3415         }
3416         if (strcmp(mode, "on") == 0) {
3417                 if (test_done == 0) {
3418                         printf("before enabling GSO,"
3419                                         " please stop forwarding first\n");
3420                         return;
3421                 }
3422                 gso_ports[port_id].enable = 1;
3423         } else if (strcmp(mode, "off") == 0) {
3424                 if (test_done == 0) {
3425                         printf("before disabling GSO,"
3426                                         " please stop forwarding first\n");
3427                         return;
3428                 }
3429                 gso_ports[port_id].enable = 0;
3430         }
3431 }
3432
3433 char*
3434 list_pkt_forwarding_modes(void)
3435 {
3436         static char fwd_modes[128] = "";
3437         const char *separator = "|";
3438         struct fwd_engine *fwd_eng;
3439         unsigned i = 0;
3440
3441         if (strlen (fwd_modes) == 0) {
3442                 while ((fwd_eng = fwd_engines[i++]) != NULL) {
3443                         strncat(fwd_modes, fwd_eng->fwd_mode_name,
3444                                         sizeof(fwd_modes) - strlen(fwd_modes) - 1);
3445                         strncat(fwd_modes, separator,
3446                                         sizeof(fwd_modes) - strlen(fwd_modes) - 1);
3447                 }
3448                 fwd_modes[strlen(fwd_modes) - strlen(separator)] = '\0';
3449         }
3450
3451         return fwd_modes;
3452 }
3453
3454 char*
3455 list_pkt_forwarding_retry_modes(void)
3456 {
3457         static char fwd_modes[128] = "";
3458         const char *separator = "|";
3459         struct fwd_engine *fwd_eng;
3460         unsigned i = 0;
3461
3462         if (strlen(fwd_modes) == 0) {
3463                 while ((fwd_eng = fwd_engines[i++]) != NULL) {
3464                         if (fwd_eng == &rx_only_engine)
3465                                 continue;
3466                         strncat(fwd_modes, fwd_eng->fwd_mode_name,
3467                                         sizeof(fwd_modes) -
3468                                         strlen(fwd_modes) - 1);
3469                         strncat(fwd_modes, separator,
3470                                         sizeof(fwd_modes) -
3471                                         strlen(fwd_modes) - 1);
3472                 }
3473                 fwd_modes[strlen(fwd_modes) - strlen(separator)] = '\0';
3474         }
3475
3476         return fwd_modes;
3477 }
3478
3479 void
3480 set_pkt_forwarding_mode(const char *fwd_mode_name)
3481 {
3482         struct fwd_engine *fwd_eng;
3483         unsigned i;
3484
3485         i = 0;
3486         while ((fwd_eng = fwd_engines[i]) != NULL) {
3487                 if (! strcmp(fwd_eng->fwd_mode_name, fwd_mode_name)) {
3488                         printf("Set %s packet forwarding mode%s\n",
3489                                fwd_mode_name,
3490                                retry_enabled == 0 ? "" : " with retry");
3491                         cur_fwd_eng = fwd_eng;
3492                         return;
3493                 }
3494                 i++;
3495         }
3496         printf("Invalid %s packet forwarding mode\n", fwd_mode_name);
3497 }
3498
3499 void
3500 add_rx_dump_callbacks(portid_t portid)
3501 {
3502         struct rte_eth_dev_info dev_info;
3503         uint16_t queue;
3504         int ret;
3505
3506         if (port_id_is_invalid(portid, ENABLED_WARN))
3507                 return;
3508
3509         ret = eth_dev_info_get_print_err(portid, &dev_info);
3510         if (ret != 0)
3511                 return;
3512
3513         for (queue = 0; queue < dev_info.nb_rx_queues; queue++)
3514                 if (!ports[portid].rx_dump_cb[queue])
3515                         ports[portid].rx_dump_cb[queue] =
3516                                 rte_eth_add_rx_callback(portid, queue,
3517                                         dump_rx_pkts, NULL);
3518 }
3519
3520 void
3521 add_tx_dump_callbacks(portid_t portid)
3522 {
3523         struct rte_eth_dev_info dev_info;
3524         uint16_t queue;
3525         int ret;
3526
3527         if (port_id_is_invalid(portid, ENABLED_WARN))
3528                 return;
3529
3530         ret = eth_dev_info_get_print_err(portid, &dev_info);
3531         if (ret != 0)
3532                 return;
3533
3534         for (queue = 0; queue < dev_info.nb_tx_queues; queue++)
3535                 if (!ports[portid].tx_dump_cb[queue])
3536                         ports[portid].tx_dump_cb[queue] =
3537                                 rte_eth_add_tx_callback(portid, queue,
3538                                                         dump_tx_pkts, NULL);
3539 }
3540
3541 void
3542 remove_rx_dump_callbacks(portid_t portid)
3543 {
3544         struct rte_eth_dev_info dev_info;
3545         uint16_t queue;
3546         int ret;
3547
3548         if (port_id_is_invalid(portid, ENABLED_WARN))
3549                 return;
3550
3551         ret = eth_dev_info_get_print_err(portid, &dev_info);
3552         if (ret != 0)
3553                 return;
3554
3555         for (queue = 0; queue < dev_info.nb_rx_queues; queue++)
3556                 if (ports[portid].rx_dump_cb[queue]) {
3557                         rte_eth_remove_rx_callback(portid, queue,
3558                                 ports[portid].rx_dump_cb[queue]);
3559                         ports[portid].rx_dump_cb[queue] = NULL;
3560                 }
3561 }
3562
3563 void
3564 remove_tx_dump_callbacks(portid_t portid)
3565 {
3566         struct rte_eth_dev_info dev_info;
3567         uint16_t queue;
3568         int ret;
3569
3570         if (port_id_is_invalid(portid, ENABLED_WARN))
3571                 return;
3572
3573         ret = eth_dev_info_get_print_err(portid, &dev_info);
3574         if (ret != 0)
3575                 return;
3576
3577         for (queue = 0; queue < dev_info.nb_tx_queues; queue++)
3578                 if (ports[portid].tx_dump_cb[queue]) {
3579                         rte_eth_remove_tx_callback(portid, queue,
3580                                 ports[portid].tx_dump_cb[queue]);
3581                         ports[portid].tx_dump_cb[queue] = NULL;
3582                 }
3583 }
3584
3585 void
3586 configure_rxtx_dump_callbacks(uint16_t verbose)
3587 {
3588         portid_t portid;
3589
3590 #ifndef RTE_ETHDEV_RXTX_CALLBACKS
3591                 TESTPMD_LOG(ERR, "setting rxtx callbacks is not enabled\n");
3592                 return;
3593 #endif
3594
3595         RTE_ETH_FOREACH_DEV(portid)
3596         {
3597                 if (verbose == 1 || verbose > 2)
3598                         add_rx_dump_callbacks(portid);
3599                 else
3600                         remove_rx_dump_callbacks(portid);
3601                 if (verbose >= 2)
3602                         add_tx_dump_callbacks(portid);
3603                 else
3604                         remove_tx_dump_callbacks(portid);
3605         }
3606 }
3607
3608 void
3609 set_verbose_level(uint16_t vb_level)
3610 {
3611         printf("Change verbose level from %u to %u\n",
3612                (unsigned int) verbose_level, (unsigned int) vb_level);
3613         verbose_level = vb_level;
3614         configure_rxtx_dump_callbacks(verbose_level);
3615 }
3616
3617 void
3618 vlan_extend_set(portid_t port_id, int on)
3619 {
3620         int diag;
3621         int vlan_offload;
3622         uint64_t port_rx_offloads = ports[port_id].dev_conf.rxmode.offloads;
3623
3624         if (port_id_is_invalid(port_id, ENABLED_WARN))
3625                 return;
3626
3627         vlan_offload = rte_eth_dev_get_vlan_offload(port_id);
3628
3629         if (on) {
3630                 vlan_offload |= ETH_VLAN_EXTEND_OFFLOAD;
3631                 port_rx_offloads |= DEV_RX_OFFLOAD_VLAN_EXTEND;
3632         } else {
3633                 vlan_offload &= ~ETH_VLAN_EXTEND_OFFLOAD;
3634                 port_rx_offloads &= ~DEV_RX_OFFLOAD_VLAN_EXTEND;
3635         }
3636
3637         diag = rte_eth_dev_set_vlan_offload(port_id, vlan_offload);
3638         if (diag < 0) {
3639                 printf("rx_vlan_extend_set(port_pi=%d, on=%d) failed "
3640                "diag=%d\n", port_id, on, diag);
3641                 return;
3642         }
3643         ports[port_id].dev_conf.rxmode.offloads = port_rx_offloads;
3644 }
3645
3646 void
3647 rx_vlan_strip_set(portid_t port_id, int on)
3648 {
3649         int diag;
3650         int vlan_offload;
3651         uint64_t port_rx_offloads = ports[port_id].dev_conf.rxmode.offloads;
3652
3653         if (port_id_is_invalid(port_id, ENABLED_WARN))
3654                 return;
3655
3656         vlan_offload = rte_eth_dev_get_vlan_offload(port_id);
3657
3658         if (on) {
3659                 vlan_offload |= ETH_VLAN_STRIP_OFFLOAD;
3660                 port_rx_offloads |= DEV_RX_OFFLOAD_VLAN_STRIP;
3661         } else {
3662                 vlan_offload &= ~ETH_VLAN_STRIP_OFFLOAD;
3663                 port_rx_offloads &= ~DEV_RX_OFFLOAD_VLAN_STRIP;
3664         }
3665
3666         diag = rte_eth_dev_set_vlan_offload(port_id, vlan_offload);
3667         if (diag < 0) {
3668                 printf("rx_vlan_strip_set(port_pi=%d, on=%d) failed "
3669                "diag=%d\n", port_id, on, diag);
3670                 return;
3671         }
3672         ports[port_id].dev_conf.rxmode.offloads = port_rx_offloads;
3673 }
3674
3675 void
3676 rx_vlan_strip_set_on_queue(portid_t port_id, uint16_t queue_id, int on)
3677 {
3678         int diag;
3679
3680         if (port_id_is_invalid(port_id, ENABLED_WARN))
3681                 return;
3682
3683         diag = rte_eth_dev_set_vlan_strip_on_queue(port_id, queue_id, on);
3684         if (diag < 0)
3685                 printf("rx_vlan_strip_set_on_queue(port_pi=%d, queue_id=%d, on=%d) failed "
3686                "diag=%d\n", port_id, queue_id, on, diag);
3687 }
3688
3689 void
3690 rx_vlan_filter_set(portid_t port_id, int on)
3691 {
3692         int diag;
3693         int vlan_offload;
3694         uint64_t port_rx_offloads = ports[port_id].dev_conf.rxmode.offloads;
3695
3696         if (port_id_is_invalid(port_id, ENABLED_WARN))
3697                 return;
3698
3699         vlan_offload = rte_eth_dev_get_vlan_offload(port_id);
3700
3701         if (on) {
3702                 vlan_offload |= ETH_VLAN_FILTER_OFFLOAD;
3703                 port_rx_offloads |= DEV_RX_OFFLOAD_VLAN_FILTER;
3704         } else {
3705                 vlan_offload &= ~ETH_VLAN_FILTER_OFFLOAD;
3706                 port_rx_offloads &= ~DEV_RX_OFFLOAD_VLAN_FILTER;
3707         }
3708
3709         diag = rte_eth_dev_set_vlan_offload(port_id, vlan_offload);
3710         if (diag < 0) {
3711                 printf("rx_vlan_filter_set(port_pi=%d, on=%d) failed "
3712                "diag=%d\n", port_id, on, diag);
3713                 return;
3714         }
3715         ports[port_id].dev_conf.rxmode.offloads = port_rx_offloads;
3716 }
3717
3718 void
3719 rx_vlan_qinq_strip_set(portid_t port_id, int on)
3720 {
3721         int diag;
3722         int vlan_offload;
3723         uint64_t port_rx_offloads = ports[port_id].dev_conf.rxmode.offloads;
3724
3725         if (port_id_is_invalid(port_id, ENABLED_WARN))
3726                 return;
3727
3728         vlan_offload = rte_eth_dev_get_vlan_offload(port_id);
3729
3730         if (on) {
3731                 vlan_offload |= ETH_QINQ_STRIP_OFFLOAD;
3732                 port_rx_offloads |= DEV_RX_OFFLOAD_QINQ_STRIP;
3733         } else {
3734                 vlan_offload &= ~ETH_QINQ_STRIP_OFFLOAD;
3735                 port_rx_offloads &= ~DEV_RX_OFFLOAD_QINQ_STRIP;
3736         }
3737
3738         diag = rte_eth_dev_set_vlan_offload(port_id, vlan_offload);
3739         if (diag < 0) {
3740                 printf("%s(port_pi=%d, on=%d) failed "
3741                "diag=%d\n", __func__, port_id, on, diag);
3742                 return;
3743         }
3744         ports[port_id].dev_conf.rxmode.offloads = port_rx_offloads;
3745 }
3746
3747 int
3748 rx_vft_set(portid_t port_id, uint16_t vlan_id, int on)
3749 {
3750         int diag;
3751
3752         if (port_id_is_invalid(port_id, ENABLED_WARN))
3753                 return 1;
3754         if (vlan_id_is_invalid(vlan_id))
3755                 return 1;
3756         diag = rte_eth_dev_vlan_filter(port_id, vlan_id, on);
3757         if (diag == 0)
3758                 return 0;
3759         printf("rte_eth_dev_vlan_filter(port_pi=%d, vlan_id=%d, on=%d) failed "
3760                "diag=%d\n",
3761                port_id, vlan_id, on, diag);
3762         return -1;
3763 }
3764
3765 void
3766 rx_vlan_all_filter_set(portid_t port_id, int on)
3767 {
3768         uint16_t vlan_id;
3769
3770         if (port_id_is_invalid(port_id, ENABLED_WARN))
3771                 return;
3772         for (vlan_id = 0; vlan_id < 4096; vlan_id++) {
3773                 if (rx_vft_set(port_id, vlan_id, on))
3774                         break;
3775         }
3776 }
3777
3778 void
3779 vlan_tpid_set(portid_t port_id, enum rte_vlan_type vlan_type, uint16_t tp_id)
3780 {
3781         int diag;
3782
3783         if (port_id_is_invalid(port_id, ENABLED_WARN))
3784                 return;
3785
3786         diag = rte_eth_dev_set_vlan_ether_type(port_id, vlan_type, tp_id);
3787         if (diag == 0)
3788                 return;
3789
3790         printf("tx_vlan_tpid_set(port_pi=%d, vlan_type=%d, tpid=%d) failed "
3791                "diag=%d\n",
3792                port_id, vlan_type, tp_id, diag);
3793 }
3794
3795 void
3796 tx_vlan_set(portid_t port_id, uint16_t vlan_id)
3797 {
3798         struct rte_eth_dev_info dev_info;
3799         int ret;
3800
3801         if (vlan_id_is_invalid(vlan_id))
3802                 return;
3803
3804         if (ports[port_id].dev_conf.txmode.offloads &
3805             DEV_TX_OFFLOAD_QINQ_INSERT) {
3806                 printf("Error, as QinQ has been enabled.\n");
3807                 return;
3808         }
3809
3810         ret = eth_dev_info_get_print_err(port_id, &dev_info);
3811         if (ret != 0)
3812                 return;
3813
3814         if ((dev_info.tx_offload_capa & DEV_TX_OFFLOAD_VLAN_INSERT) == 0) {
3815                 printf("Error: vlan insert is not supported by port %d\n",
3816                         port_id);
3817                 return;
3818         }
3819
3820         tx_vlan_reset(port_id);
3821         ports[port_id].dev_conf.txmode.offloads |= DEV_TX_OFFLOAD_VLAN_INSERT;
3822         ports[port_id].tx_vlan_id = vlan_id;
3823 }
3824
3825 void
3826 tx_qinq_set(portid_t port_id, uint16_t vlan_id, uint16_t vlan_id_outer)
3827 {
3828         struct rte_eth_dev_info dev_info;
3829         int ret;
3830
3831         if (vlan_id_is_invalid(vlan_id))
3832                 return;
3833         if (vlan_id_is_invalid(vlan_id_outer))
3834                 return;
3835
3836         ret = eth_dev_info_get_print_err(port_id, &dev_info);
3837         if (ret != 0)
3838                 return;
3839
3840         if ((dev_info.tx_offload_capa & DEV_TX_OFFLOAD_QINQ_INSERT) == 0) {
3841                 printf("Error: qinq insert not supported by port %d\n",
3842                         port_id);
3843                 return;
3844         }
3845
3846         tx_vlan_reset(port_id);
3847         ports[port_id].dev_conf.txmode.offloads |= (DEV_TX_OFFLOAD_VLAN_INSERT |
3848                                                     DEV_TX_OFFLOAD_QINQ_INSERT);
3849         ports[port_id].tx_vlan_id = vlan_id;
3850         ports[port_id].tx_vlan_id_outer = vlan_id_outer;
3851 }
3852
3853 void
3854 tx_vlan_reset(portid_t port_id)
3855 {
3856         ports[port_id].dev_conf.txmode.offloads &=
3857                                 ~(DEV_TX_OFFLOAD_VLAN_INSERT |
3858                                   DEV_TX_OFFLOAD_QINQ_INSERT);
3859         ports[port_id].tx_vlan_id = 0;
3860         ports[port_id].tx_vlan_id_outer = 0;
3861 }
3862
3863 void
3864 tx_vlan_pvid_set(portid_t port_id, uint16_t vlan_id, int on)
3865 {
3866         if (port_id_is_invalid(port_id, ENABLED_WARN))
3867                 return;
3868
3869         rte_eth_dev_set_vlan_pvid(port_id, vlan_id, on);
3870 }
3871
3872 void
3873 set_qmap(portid_t port_id, uint8_t is_rx, uint16_t queue_id, uint8_t map_value)
3874 {
3875         uint16_t i;
3876         uint8_t existing_mapping_found = 0;
3877
3878         if (port_id_is_invalid(port_id, ENABLED_WARN))
3879                 return;
3880
3881         if (is_rx ? (rx_queue_id_is_invalid(queue_id)) : (tx_queue_id_is_invalid(queue_id)))
3882                 return;
3883
3884         if (map_value >= RTE_ETHDEV_QUEUE_STAT_CNTRS) {
3885                 printf("map_value not in required range 0..%d\n",
3886                                 RTE_ETHDEV_QUEUE_STAT_CNTRS - 1);
3887                 return;
3888         }
3889
3890         if (!is_rx) { /*then tx*/
3891                 for (i = 0; i < nb_tx_queue_stats_mappings; i++) {
3892                         if ((tx_queue_stats_mappings[i].port_id == port_id) &&
3893                             (tx_queue_stats_mappings[i].queue_id == queue_id)) {
3894                                 tx_queue_stats_mappings[i].stats_counter_id = map_value;
3895                                 existing_mapping_found = 1;
3896                                 break;
3897                         }
3898                 }
3899                 if (!existing_mapping_found) { /* A new additional mapping... */
3900                         tx_queue_stats_mappings[nb_tx_queue_stats_mappings].port_id = port_id;
3901                         tx_queue_stats_mappings[nb_tx_queue_stats_mappings].queue_id = queue_id;
3902                         tx_queue_stats_mappings[nb_tx_queue_stats_mappings].stats_counter_id = map_value;
3903                         nb_tx_queue_stats_mappings++;
3904                 }
3905         }
3906         else { /*rx*/
3907                 for (i = 0; i < nb_rx_queue_stats_mappings; i++) {
3908                         if ((rx_queue_stats_mappings[i].port_id == port_id) &&
3909                             (rx_queue_stats_mappings[i].queue_id == queue_id)) {
3910                                 rx_queue_stats_mappings[i].stats_counter_id = map_value;
3911                                 existing_mapping_found = 1;
3912                                 break;
3913                         }
3914                 }
3915                 if (!existing_mapping_found) { /* A new additional mapping... */
3916                         rx_queue_stats_mappings[nb_rx_queue_stats_mappings].port_id = port_id;
3917                         rx_queue_stats_mappings[nb_rx_queue_stats_mappings].queue_id = queue_id;
3918                         rx_queue_stats_mappings[nb_rx_queue_stats_mappings].stats_counter_id = map_value;
3919                         nb_rx_queue_stats_mappings++;
3920                 }
3921         }
3922 }
3923
3924 void
3925 set_xstats_hide_zero(uint8_t on_off)
3926 {
3927         xstats_hide_zero = on_off;
3928 }
3929
3930 void
3931 set_record_core_cycles(uint8_t on_off)
3932 {
3933         record_core_cycles = on_off;
3934 }
3935
3936 void
3937 set_record_burst_stats(uint8_t on_off)
3938 {
3939         record_burst_stats = on_off;
3940 }
3941
3942 static inline void
3943 print_fdir_mask(struct rte_eth_fdir_masks *mask)
3944 {
3945         printf("\n    vlan_tci: 0x%04x", rte_be_to_cpu_16(mask->vlan_tci_mask));
3946
3947         if (fdir_conf.mode == RTE_FDIR_MODE_PERFECT_TUNNEL)
3948                 printf(", mac_addr: 0x%02x, tunnel_type: 0x%01x,"
3949                         " tunnel_id: 0x%08x",
3950                         mask->mac_addr_byte_mask, mask->tunnel_type_mask,
3951                         rte_be_to_cpu_32(mask->tunnel_id_mask));
3952         else if (fdir_conf.mode != RTE_FDIR_MODE_PERFECT_MAC_VLAN) {
3953                 printf(", src_ipv4: 0x%08x, dst_ipv4: 0x%08x",
3954                         rte_be_to_cpu_32(mask->ipv4_mask.src_ip),
3955                         rte_be_to_cpu_32(mask->ipv4_mask.dst_ip));
3956
3957                 printf("\n    src_port: 0x%04x, dst_port: 0x%04x",
3958                         rte_be_to_cpu_16(mask->src_port_mask),
3959                         rte_be_to_cpu_16(mask->dst_port_mask));
3960
3961                 printf("\n    src_ipv6: 0x%08x,0x%08x,0x%08x,0x%08x",
3962                         rte_be_to_cpu_32(mask->ipv6_mask.src_ip[0]),
3963                         rte_be_to_cpu_32(mask->ipv6_mask.src_ip[1]),
3964                         rte_be_to_cpu_32(mask->ipv6_mask.src_ip[2]),
3965                         rte_be_to_cpu_32(mask->ipv6_mask.src_ip[3]));
3966
3967                 printf("\n    dst_ipv6: 0x%08x,0x%08x,0x%08x,0x%08x",
3968                         rte_be_to_cpu_32(mask->ipv6_mask.dst_ip[0]),
3969                         rte_be_to_cpu_32(mask->ipv6_mask.dst_ip[1]),
3970                         rte_be_to_cpu_32(mask->ipv6_mask.dst_ip[2]),
3971                         rte_be_to_cpu_32(mask->ipv6_mask.dst_ip[3]));
3972         }
3973
3974         printf("\n");
3975 }
3976
3977 static inline void
3978 print_fdir_flex_payload(struct rte_eth_fdir_flex_conf *flex_conf, uint32_t num)
3979 {
3980         struct rte_eth_flex_payload_cfg *cfg;
3981         uint32_t i, j;
3982
3983         for (i = 0; i < flex_conf->nb_payloads; i++) {
3984                 cfg = &flex_conf->flex_set[i];
3985                 if (cfg->type == RTE_ETH_RAW_PAYLOAD)
3986                         printf("\n    RAW:  ");
3987                 else if (cfg->type == RTE_ETH_L2_PAYLOAD)
3988                         printf("\n    L2_PAYLOAD:  ");
3989                 else if (cfg->type == RTE_ETH_L3_PAYLOAD)
3990                         printf("\n    L3_PAYLOAD:  ");
3991                 else if (cfg->type == RTE_ETH_L4_PAYLOAD)
3992                         printf("\n    L4_PAYLOAD:  ");
3993                 else
3994                         printf("\n    UNKNOWN PAYLOAD(%u):  ", cfg->type);
3995                 for (j = 0; j < num; j++)
3996                         printf("  %-5u", cfg->src_offset[j]);
3997         }
3998         printf("\n");
3999 }
4000
4001 static char *
4002 flowtype_to_str(uint16_t flow_type)
4003 {
4004         struct flow_type_info {
4005                 char str[32];
4006                 uint16_t ftype;
4007         };
4008
4009         uint8_t i;
4010         static struct flow_type_info flowtype_str_table[] = {
4011                 {"raw", RTE_ETH_FLOW_RAW},
4012                 {"ipv4", RTE_ETH_FLOW_IPV4},
4013                 {"ipv4-frag", RTE_ETH_FLOW_FRAG_IPV4},
4014                 {"ipv4-tcp", RTE_ETH_FLOW_NONFRAG_IPV4_TCP},
4015                 {"ipv4-udp", RTE_ETH_FLOW_NONFRAG_IPV4_UDP},
4016                 {"ipv4-sctp", RTE_ETH_FLOW_NONFRAG_IPV4_SCTP},
4017                 {"ipv4-other", RTE_ETH_FLOW_NONFRAG_IPV4_OTHER},
4018                 {"ipv6", RTE_ETH_FLOW_IPV6},
4019                 {"ipv6-frag", RTE_ETH_FLOW_FRAG_IPV6},
4020                 {"ipv6-tcp", RTE_ETH_FLOW_NONFRAG_IPV6_TCP},
4021                 {"ipv6-udp", RTE_ETH_FLOW_NONFRAG_IPV6_UDP},
4022                 {"ipv6-sctp", RTE_ETH_FLOW_NONFRAG_IPV6_SCTP},
4023                 {"ipv6-other", RTE_ETH_FLOW_NONFRAG_IPV6_OTHER},
4024                 {"l2_payload", RTE_ETH_FLOW_L2_PAYLOAD},
4025                 {"port", RTE_ETH_FLOW_PORT},
4026                 {"vxlan", RTE_ETH_FLOW_VXLAN},
4027                 {"geneve", RTE_ETH_FLOW_GENEVE},
4028                 {"nvgre", RTE_ETH_FLOW_NVGRE},
4029                 {"vxlan-gpe", RTE_ETH_FLOW_VXLAN_GPE},
4030         };
4031
4032         for (i = 0; i < RTE_DIM(flowtype_str_table); i++) {
4033                 if (flowtype_str_table[i].ftype == flow_type)
4034                         return flowtype_str_table[i].str;
4035         }
4036
4037         return NULL;
4038 }
4039
4040 static inline void
4041 print_fdir_flex_mask(struct rte_eth_fdir_flex_conf *flex_conf, uint32_t num)
4042 {
4043         struct rte_eth_fdir_flex_mask *mask;
4044         uint32_t i, j;
4045         char *p;
4046
4047         for (i = 0; i < flex_conf->nb_flexmasks; i++) {
4048                 mask = &flex_conf->flex_mask[i];
4049                 p = flowtype_to_str(mask->flow_type);
4050                 printf("\n    %s:\t", p ? p : "unknown");
4051                 for (j = 0; j < num; j++)
4052                         printf(" %02x", mask->mask[j]);
4053         }
4054         printf("\n");
4055 }
4056
4057 static inline void
4058 print_fdir_flow_type(uint32_t flow_types_mask)
4059 {
4060         int i;
4061         char *p;
4062
4063         for (i = RTE_ETH_FLOW_UNKNOWN; i < RTE_ETH_FLOW_MAX; i++) {
4064                 if (!(flow_types_mask & (1 << i)))
4065                         continue;
4066                 p = flowtype_to_str(i);
4067                 if (p)
4068                         printf(" %s", p);
4069                 else
4070                         printf(" unknown");
4071         }
4072         printf("\n");
4073 }
4074
4075 static int
4076 get_fdir_info(portid_t port_id, struct rte_eth_fdir_info *fdir_info,
4077                     struct rte_eth_fdir_stats *fdir_stat)
4078 {
4079         int ret;
4080
4081         ret = rte_eth_dev_filter_supported(port_id, RTE_ETH_FILTER_FDIR);
4082         if (!ret) {
4083                 rte_eth_dev_filter_ctrl(port_id, RTE_ETH_FILTER_FDIR,
4084                                RTE_ETH_FILTER_INFO, fdir_info);
4085                 rte_eth_dev_filter_ctrl(port_id, RTE_ETH_FILTER_FDIR,
4086                                RTE_ETH_FILTER_STATS, fdir_stat);
4087                 return 0;
4088         }
4089
4090 #ifdef RTE_LIBRTE_I40E_PMD
4091         if (ret == -ENOTSUP) {
4092                 ret = rte_pmd_i40e_get_fdir_info(port_id, fdir_info);
4093                 if (!ret)
4094                         ret = rte_pmd_i40e_get_fdir_stats(port_id, fdir_stat);
4095         }
4096 #endif
4097 #ifdef RTE_LIBRTE_IXGBE_PMD
4098         if (ret == -ENOTSUP) {
4099                 ret = rte_pmd_ixgbe_get_fdir_info(port_id, fdir_info);
4100                 if (!ret)
4101                         ret = rte_pmd_ixgbe_get_fdir_stats(port_id, fdir_stat);
4102         }
4103 #endif
4104         switch (ret) {
4105         case 0:
4106                 break;
4107         case -ENOTSUP:
4108                 printf("\n FDIR is not supported on port %-2d\n",
4109                         port_id);
4110                 break;
4111         default:
4112                 printf("programming error: (%s)\n", strerror(-ret));
4113                 break;
4114         }
4115         return ret;
4116 }
4117
4118 void
4119 fdir_get_infos(portid_t port_id)
4120 {
4121         struct rte_eth_fdir_stats fdir_stat;
4122         struct rte_eth_fdir_info fdir_info;
4123
4124         static const char *fdir_stats_border = "########################";
4125
4126         if (port_id_is_invalid(port_id, ENABLED_WARN))
4127                 return;
4128
4129         memset(&fdir_info, 0, sizeof(fdir_info));
4130         memset(&fdir_stat, 0, sizeof(fdir_stat));
4131         if (get_fdir_info(port_id, &fdir_info, &fdir_stat))
4132                 return;
4133
4134         printf("\n  %s FDIR infos for port %-2d     %s\n",
4135                fdir_stats_border, port_id, fdir_stats_border);
4136         printf("  MODE: ");
4137         if (fdir_info.mode == RTE_FDIR_MODE_PERFECT)
4138                 printf("  PERFECT\n");
4139         else if (fdir_info.mode == RTE_FDIR_MODE_PERFECT_MAC_VLAN)
4140                 printf("  PERFECT-MAC-VLAN\n");
4141         else if (fdir_info.mode == RTE_FDIR_MODE_PERFECT_TUNNEL)
4142                 printf("  PERFECT-TUNNEL\n");
4143         else if (fdir_info.mode == RTE_FDIR_MODE_SIGNATURE)
4144                 printf("  SIGNATURE\n");
4145         else
4146                 printf("  DISABLE\n");
4147         if (fdir_info.mode != RTE_FDIR_MODE_PERFECT_MAC_VLAN
4148                 && fdir_info.mode != RTE_FDIR_MODE_PERFECT_TUNNEL) {
4149                 printf("  SUPPORTED FLOW TYPE: ");
4150                 print_fdir_flow_type(fdir_info.flow_types_mask[0]);
4151         }
4152         printf("  FLEX PAYLOAD INFO:\n");
4153         printf("  max_len:       %-10"PRIu32"  payload_limit: %-10"PRIu32"\n"
4154                "  payload_unit:  %-10"PRIu32"  payload_seg:   %-10"PRIu32"\n"
4155                "  bitmask_unit:  %-10"PRIu32"  bitmask_num:   %-10"PRIu32"\n",
4156                 fdir_info.max_flexpayload, fdir_info.flex_payload_limit,
4157                 fdir_info.flex_payload_unit,
4158                 fdir_info.max_flex_payload_segment_num,
4159                 fdir_info.flex_bitmask_unit, fdir_info.max_flex_bitmask_num);
4160         printf("  MASK: ");
4161         print_fdir_mask(&fdir_info.mask);
4162         if (fdir_info.flex_conf.nb_payloads > 0) {
4163                 printf("  FLEX PAYLOAD SRC OFFSET:");
4164                 print_fdir_flex_payload(&fdir_info.flex_conf, fdir_info.max_flexpayload);
4165         }
4166         if (fdir_info.flex_conf.nb_flexmasks > 0) {
4167                 printf("  FLEX MASK CFG:");
4168                 print_fdir_flex_mask(&fdir_info.flex_conf, fdir_info.max_flexpayload);
4169         }
4170         printf("  guarant_count: %-10"PRIu32"  best_count:    %"PRIu32"\n",
4171                fdir_stat.guarant_cnt, fdir_stat.best_cnt);
4172         printf("  guarant_space: %-10"PRIu32"  best_space:    %"PRIu32"\n",
4173                fdir_info.guarant_spc, fdir_info.best_spc);
4174         printf("  collision:     %-10"PRIu32"  free:          %"PRIu32"\n"
4175                "  maxhash:       %-10"PRIu32"  maxlen:        %"PRIu32"\n"
4176                "  add:           %-10"PRIu64"  remove:        %"PRIu64"\n"
4177                "  f_add:         %-10"PRIu64"  f_remove:      %"PRIu64"\n",
4178                fdir_stat.collision, fdir_stat.free,
4179                fdir_stat.maxhash, fdir_stat.maxlen,
4180                fdir_stat.add, fdir_stat.remove,
4181                fdir_stat.f_add, fdir_stat.f_remove);
4182         printf("  %s############################%s\n",
4183                fdir_stats_border, fdir_stats_border);
4184 }
4185
4186 void
4187 fdir_set_flex_mask(portid_t port_id, struct rte_eth_fdir_flex_mask *cfg)
4188 {
4189         struct rte_port *port;
4190         struct rte_eth_fdir_flex_conf *flex_conf;
4191         int i, idx = 0;
4192
4193         port = &ports[port_id];
4194         flex_conf = &port->dev_conf.fdir_conf.flex_conf;
4195         for (i = 0; i < RTE_ETH_FLOW_MAX; i++) {
4196                 if (cfg->flow_type == flex_conf->flex_mask[i].flow_type) {
4197                         idx = i;
4198                         break;
4199                 }
4200         }
4201         if (i >= RTE_ETH_FLOW_MAX) {
4202                 if (flex_conf->nb_flexmasks < RTE_DIM(flex_conf->flex_mask)) {
4203                         idx = flex_conf->nb_flexmasks;
4204                         flex_conf->nb_flexmasks++;
4205                 } else {
4206                         printf("The flex mask table is full. Can not set flex"
4207                                 " mask for flow_type(%u).", cfg->flow_type);
4208                         return;
4209                 }
4210         }
4211         rte_memcpy(&flex_conf->flex_mask[idx],
4212                          cfg,
4213                          sizeof(struct rte_eth_fdir_flex_mask));
4214 }
4215
4216 void
4217 fdir_set_flex_payload(portid_t port_id, struct rte_eth_flex_payload_cfg *cfg)
4218 {
4219         struct rte_port *port;
4220         struct rte_eth_fdir_flex_conf *flex_conf;
4221         int i, idx = 0;
4222
4223         port = &ports[port_id];
4224         flex_conf = &port->dev_conf.fdir_conf.flex_conf;
4225         for (i = 0; i < RTE_ETH_PAYLOAD_MAX; i++) {
4226                 if (cfg->type == flex_conf->flex_set[i].type) {
4227                         idx = i;
4228                         break;
4229                 }
4230         }
4231         if (i >= RTE_ETH_PAYLOAD_MAX) {
4232                 if (flex_conf->nb_payloads < RTE_DIM(flex_conf->flex_set)) {
4233                         idx = flex_conf->nb_payloads;
4234                         flex_conf->nb_payloads++;
4235                 } else {
4236                         printf("The flex payload table is full. Can not set"
4237                                 " flex payload for type(%u).", cfg->type);
4238                         return;
4239                 }
4240         }
4241         rte_memcpy(&flex_conf->flex_set[idx],
4242                          cfg,
4243                          sizeof(struct rte_eth_flex_payload_cfg));
4244
4245 }
4246
4247 void
4248 set_vf_traffic(portid_t port_id, uint8_t is_rx, uint16_t vf, uint8_t on)
4249 {
4250 #ifdef RTE_LIBRTE_IXGBE_PMD
4251         int diag;
4252
4253         if (is_rx)
4254                 diag = rte_pmd_ixgbe_set_vf_rx(port_id, vf, on);
4255         else
4256                 diag = rte_pmd_ixgbe_set_vf_tx(port_id, vf, on);
4257
4258         if (diag == 0)
4259                 return;
4260         printf("rte_pmd_ixgbe_set_vf_%s for port_id=%d failed diag=%d\n",
4261                         is_rx ? "rx" : "tx", port_id, diag);
4262         return;
4263 #endif
4264         printf("VF %s setting not supported for port %d\n",
4265                         is_rx ? "Rx" : "Tx", port_id);
4266         RTE_SET_USED(vf);
4267         RTE_SET_USED(on);
4268 }
4269
4270 int
4271 set_queue_rate_limit(portid_t port_id, uint16_t queue_idx, uint16_t rate)
4272 {
4273         int diag;
4274         struct rte_eth_link link;
4275         int ret;
4276
4277         if (port_id_is_invalid(port_id, ENABLED_WARN))
4278                 return 1;
4279         ret = eth_link_get_nowait_print_err(port_id, &link);
4280         if (ret < 0)
4281                 return 1;
4282         if (link.link_speed != ETH_SPEED_NUM_UNKNOWN &&
4283             rate > link.link_speed) {
4284                 printf("Invalid rate value:%u bigger than link speed: %u\n",
4285                         rate, link.link_speed);
4286                 return 1;
4287         }
4288         diag = rte_eth_set_queue_rate_limit(port_id, queue_idx, rate);
4289         if (diag == 0)
4290                 return diag;
4291         printf("rte_eth_set_queue_rate_limit for port_id=%d failed diag=%d\n",
4292                 port_id, diag);
4293         return diag;
4294 }
4295
4296 int
4297 set_vf_rate_limit(portid_t port_id, uint16_t vf, uint16_t rate, uint64_t q_msk)
4298 {
4299         int diag = -ENOTSUP;
4300
4301         RTE_SET_USED(vf);
4302         RTE_SET_USED(rate);
4303         RTE_SET_USED(q_msk);
4304
4305 #ifdef RTE_LIBRTE_IXGBE_PMD
4306         if (diag == -ENOTSUP)
4307                 diag = rte_pmd_ixgbe_set_vf_rate_limit(port_id, vf, rate,
4308                                                        q_msk);
4309 #endif
4310 #ifdef RTE_LIBRTE_BNXT_PMD
4311         if (diag == -ENOTSUP)
4312                 diag = rte_pmd_bnxt_set_vf_rate_limit(port_id, vf, rate, q_msk);
4313 #endif
4314         if (diag == 0)
4315                 return diag;
4316
4317         printf("set_vf_rate_limit for port_id=%d failed diag=%d\n",
4318                 port_id, diag);
4319         return diag;
4320 }
4321
4322 /*
4323  * Functions to manage the set of filtered Multicast MAC addresses.
4324  *
4325  * A pool of filtered multicast MAC addresses is associated with each port.
4326  * The pool is allocated in chunks of MCAST_POOL_INC multicast addresses.
4327  * The address of the pool and the number of valid multicast MAC addresses
4328  * recorded in the pool are stored in the fields "mc_addr_pool" and
4329  * "mc_addr_nb" of the "rte_port" data structure.
4330  *
4331  * The function "rte_eth_dev_set_mc_addr_list" of the PMDs API imposes
4332  * to be supplied a contiguous array of multicast MAC addresses.
4333  * To comply with this constraint, the set of multicast addresses recorded
4334  * into the pool are systematically compacted at the beginning of the pool.
4335  * Hence, when a multicast address is removed from the pool, all following
4336  * addresses, if any, are copied back to keep the set contiguous.
4337  */
4338 #define MCAST_POOL_INC 32
4339
4340 static int
4341 mcast_addr_pool_extend(struct rte_port *port)
4342 {
4343         struct rte_ether_addr *mc_pool;
4344         size_t mc_pool_size;
4345
4346         /*
4347          * If a free entry is available at the end of the pool, just
4348          * increment the number of recorded multicast addresses.
4349          */
4350         if ((port->mc_addr_nb % MCAST_POOL_INC) != 0) {
4351                 port->mc_addr_nb++;
4352                 return 0;
4353         }
4354
4355         /*
4356          * [re]allocate a pool with MCAST_POOL_INC more entries.
4357          * The previous test guarantees that port->mc_addr_nb is a multiple
4358          * of MCAST_POOL_INC.
4359          */
4360         mc_pool_size = sizeof(struct rte_ether_addr) * (port->mc_addr_nb +
4361                                                     MCAST_POOL_INC);
4362         mc_pool = (struct rte_ether_addr *) realloc(port->mc_addr_pool,
4363                                                 mc_pool_size);
4364         if (mc_pool == NULL) {
4365                 printf("allocation of pool of %u multicast addresses failed\n",
4366                        port->mc_addr_nb + MCAST_POOL_INC);
4367                 return -ENOMEM;
4368         }
4369
4370         port->mc_addr_pool = mc_pool;
4371         port->mc_addr_nb++;
4372         return 0;
4373
4374 }
4375
4376 static void
4377 mcast_addr_pool_append(struct rte_port *port, struct rte_ether_addr *mc_addr)
4378 {
4379         if (mcast_addr_pool_extend(port) != 0)
4380                 return;
4381         rte_ether_addr_copy(mc_addr, &port->mc_addr_pool[port->mc_addr_nb - 1]);
4382 }
4383
4384 static void
4385 mcast_addr_pool_remove(struct rte_port *port, uint32_t addr_idx)
4386 {
4387         port->mc_addr_nb--;
4388         if (addr_idx == port->mc_addr_nb) {
4389                 /* No need to recompact the set of multicast addressses. */
4390                 if (port->mc_addr_nb == 0) {
4391                         /* free the pool of multicast addresses. */
4392                         free(port->mc_addr_pool);
4393                         port->mc_addr_pool = NULL;
4394                 }
4395                 return;
4396         }
4397         memmove(&port->mc_addr_pool[addr_idx],
4398                 &port->mc_addr_pool[addr_idx + 1],
4399                 sizeof(struct rte_ether_addr) * (port->mc_addr_nb - addr_idx));
4400 }
4401
4402 static int
4403 eth_port_multicast_addr_list_set(portid_t port_id)
4404 {
4405         struct rte_port *port;
4406         int diag;
4407
4408         port = &ports[port_id];
4409         diag = rte_eth_dev_set_mc_addr_list(port_id, port->mc_addr_pool,
4410                                             port->mc_addr_nb);
4411         if (diag < 0)
4412                 printf("rte_eth_dev_set_mc_addr_list(port=%d, nb=%u) failed. diag=%d\n",
4413                         port_id, port->mc_addr_nb, diag);
4414
4415         return diag;
4416 }
4417
4418 void
4419 mcast_addr_add(portid_t port_id, struct rte_ether_addr *mc_addr)
4420 {
4421         struct rte_port *port;
4422         uint32_t i;
4423
4424         if (port_id_is_invalid(port_id, ENABLED_WARN))
4425                 return;
4426
4427         port = &ports[port_id];
4428
4429         /*
4430          * Check that the added multicast MAC address is not already recorded
4431          * in the pool of multicast addresses.
4432          */
4433         for (i = 0; i < port->mc_addr_nb; i++) {
4434                 if (rte_is_same_ether_addr(mc_addr, &port->mc_addr_pool[i])) {
4435                         printf("multicast address already filtered by port\n");
4436                         return;
4437                 }
4438         }
4439
4440         mcast_addr_pool_append(port, mc_addr);
4441         if (eth_port_multicast_addr_list_set(port_id) < 0)
4442                 /* Rollback on failure, remove the address from the pool */
4443                 mcast_addr_pool_remove(port, i);
4444 }
4445
4446 void
4447 mcast_addr_remove(portid_t port_id, struct rte_ether_addr *mc_addr)
4448 {
4449         struct rte_port *port;
4450         uint32_t i;
4451
4452         if (port_id_is_invalid(port_id, ENABLED_WARN))
4453                 return;
4454
4455         port = &ports[port_id];
4456
4457         /*
4458          * Search the pool of multicast MAC addresses for the removed address.
4459          */
4460         for (i = 0; i < port->mc_addr_nb; i++) {
4461                 if (rte_is_same_ether_addr(mc_addr, &port->mc_addr_pool[i]))
4462                         break;
4463         }
4464         if (i == port->mc_addr_nb) {
4465                 printf("multicast address not filtered by port %d\n", port_id);
4466                 return;
4467         }
4468
4469         mcast_addr_pool_remove(port, i);
4470         if (eth_port_multicast_addr_list_set(port_id) < 0)
4471                 /* Rollback on failure, add the address back into the pool */
4472                 mcast_addr_pool_append(port, mc_addr);
4473 }
4474
4475 void
4476 port_dcb_info_display(portid_t port_id)
4477 {
4478         struct rte_eth_dcb_info dcb_info;
4479         uint16_t i;
4480         int ret;
4481         static const char *border = "================";
4482
4483         if (port_id_is_invalid(port_id, ENABLED_WARN))
4484                 return;
4485
4486         ret = rte_eth_dev_get_dcb_info(port_id, &dcb_info);
4487         if (ret) {
4488                 printf("\n Failed to get dcb infos on port %-2d\n",
4489                         port_id);
4490                 return;
4491         }
4492         printf("\n  %s DCB infos for port %-2d  %s\n", border, port_id, border);
4493         printf("  TC NUMBER: %d\n", dcb_info.nb_tcs);
4494         printf("\n  TC :        ");
4495         for (i = 0; i < dcb_info.nb_tcs; i++)
4496                 printf("\t%4d", i);
4497         printf("\n  Priority :  ");
4498         for (i = 0; i < dcb_info.nb_tcs; i++)
4499                 printf("\t%4d", dcb_info.prio_tc[i]);
4500         printf("\n  BW percent :");
4501         for (i = 0; i < dcb_info.nb_tcs; i++)
4502                 printf("\t%4d%%", dcb_info.tc_bws[i]);
4503         printf("\n  RXQ base :  ");
4504         for (i = 0; i < dcb_info.nb_tcs; i++)
4505                 printf("\t%4d", dcb_info.tc_queue.tc_rxq[0][i].base);
4506         printf("\n  RXQ number :");
4507         for (i = 0; i < dcb_info.nb_tcs; i++)
4508                 printf("\t%4d", dcb_info.tc_queue.tc_rxq[0][i].nb_queue);
4509         printf("\n  TXQ base :  ");
4510         for (i = 0; i < dcb_info.nb_tcs; i++)
4511                 printf("\t%4d", dcb_info.tc_queue.tc_txq[0][i].base);
4512         printf("\n  TXQ number :");
4513         for (i = 0; i < dcb_info.nb_tcs; i++)
4514                 printf("\t%4d", dcb_info.tc_queue.tc_txq[0][i].nb_queue);
4515         printf("\n");
4516 }
4517
4518 uint8_t *
4519 open_file(const char *file_path, uint32_t *size)
4520 {
4521         int fd = open(file_path, O_RDONLY);
4522         off_t pkg_size;
4523         uint8_t *buf = NULL;
4524         int ret = 0;
4525         struct stat st_buf;
4526
4527         if (size)
4528                 *size = 0;
4529
4530         if (fd == -1) {
4531                 printf("%s: Failed to open %s\n", __func__, file_path);
4532                 return buf;
4533         }
4534
4535         if ((fstat(fd, &st_buf) != 0) || (!S_ISREG(st_buf.st_mode))) {
4536                 close(fd);
4537                 printf("%s: File operations failed\n", __func__);
4538                 return buf;
4539         }
4540
4541         pkg_size = st_buf.st_size;
4542         if (pkg_size < 0) {
4543                 close(fd);
4544                 printf("%s: File operations failed\n", __func__);
4545                 return buf;
4546         }
4547
4548         buf = (uint8_t *)malloc(pkg_size);
4549         if (!buf) {
4550                 close(fd);
4551                 printf("%s: Failed to malloc memory\n", __func__);
4552                 return buf;
4553         }
4554
4555         ret = read(fd, buf, pkg_size);
4556         if (ret < 0) {
4557                 close(fd);
4558                 printf("%s: File read operation failed\n", __func__);
4559                 close_file(buf);
4560                 return NULL;
4561         }
4562
4563         if (size)
4564                 *size = pkg_size;
4565
4566         close(fd);
4567
4568         return buf;
4569 }
4570
4571 int
4572 save_file(const char *file_path, uint8_t *buf, uint32_t size)
4573 {
4574         FILE *fh = fopen(file_path, "wb");
4575
4576         if (fh == NULL) {
4577                 printf("%s: Failed to open %s\n", __func__, file_path);
4578                 return -1;
4579         }
4580
4581         if (fwrite(buf, 1, size, fh) != size) {
4582                 fclose(fh);
4583                 printf("%s: File write operation failed\n", __func__);
4584                 return -1;
4585         }
4586
4587         fclose(fh);
4588
4589         return 0;
4590 }
4591
4592 int
4593 close_file(uint8_t *buf)
4594 {
4595         if (buf) {
4596                 free((void *)buf);
4597                 return 0;
4598         }
4599
4600         return -1;
4601 }
4602
4603 void
4604 port_queue_region_info_display(portid_t port_id, void *buf)
4605 {
4606 #ifdef RTE_LIBRTE_I40E_PMD
4607         uint16_t i, j;
4608         struct rte_pmd_i40e_queue_regions *info =
4609                 (struct rte_pmd_i40e_queue_regions *)buf;
4610         static const char *queue_region_info_stats_border = "-------";
4611
4612         if (!info->queue_region_number)
4613                 printf("there is no region has been set before");
4614
4615         printf("\n      %s All queue region info for port=%2d %s",
4616                         queue_region_info_stats_border, port_id,
4617                         queue_region_info_stats_border);
4618         printf("\n      queue_region_number: %-14u \n",
4619                         info->queue_region_number);
4620
4621         for (i = 0; i < info->queue_region_number; i++) {
4622                 printf("\n      region_id: %-14u queue_number: %-14u "
4623                         "queue_start_index: %-14u \n",
4624                         info->region[i].region_id,
4625                         info->region[i].queue_num,
4626                         info->region[i].queue_start_index);
4627
4628                 printf("  user_priority_num is  %-14u :",
4629                                         info->region[i].user_priority_num);
4630                 for (j = 0; j < info->region[i].user_priority_num; j++)
4631                         printf(" %-14u ", info->region[i].user_priority[j]);
4632
4633                 printf("\n      flowtype_num is  %-14u :",
4634                                 info->region[i].flowtype_num);
4635                 for (j = 0; j < info->region[i].flowtype_num; j++)
4636                         printf(" %-14u ", info->region[i].hw_flowtype[j]);
4637         }
4638 #else
4639         RTE_SET_USED(port_id);
4640         RTE_SET_USED(buf);
4641 #endif
4642
4643         printf("\n\n");
4644 }
4645
4646 void
4647 show_macs(portid_t port_id)
4648 {
4649         char buf[RTE_ETHER_ADDR_FMT_SIZE];
4650         struct rte_eth_dev_info dev_info;
4651         struct rte_ether_addr *addr;
4652         uint32_t i, num_macs = 0;
4653         struct rte_eth_dev *dev;
4654
4655         dev = &rte_eth_devices[port_id];
4656
4657         rte_eth_dev_info_get(port_id, &dev_info);
4658
4659         for (i = 0; i < dev_info.max_mac_addrs; i++) {
4660                 addr = &dev->data->mac_addrs[i];
4661
4662                 /* skip zero address */
4663                 if (rte_is_zero_ether_addr(addr))
4664                         continue;
4665
4666                 num_macs++;
4667         }
4668
4669         printf("Number of MAC address added: %d\n", num_macs);
4670
4671         for (i = 0; i < dev_info.max_mac_addrs; i++) {
4672                 addr = &dev->data->mac_addrs[i];
4673
4674                 /* skip zero address */
4675                 if (rte_is_zero_ether_addr(addr))
4676                         continue;
4677
4678                 rte_ether_format_addr(buf, RTE_ETHER_ADDR_FMT_SIZE, addr);
4679                 printf("  %s\n", buf);
4680         }
4681 }
4682
4683 void
4684 show_mcast_macs(portid_t port_id)
4685 {
4686         char buf[RTE_ETHER_ADDR_FMT_SIZE];
4687         struct rte_ether_addr *addr;
4688         struct rte_port *port;
4689         uint32_t i;
4690
4691         port = &ports[port_id];
4692
4693         printf("Number of Multicast MAC address added: %d\n", port->mc_addr_nb);
4694
4695         for (i = 0; i < port->mc_addr_nb; i++) {
4696                 addr = &port->mc_addr_pool[i];
4697
4698                 rte_ether_format_addr(buf, RTE_ETHER_ADDR_FMT_SIZE, addr);
4699                 printf("  %s\n", buf);
4700         }
4701 }