app/testpmd: fix descriptor id check
[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                 uint16_t nb_rx_desc_tmp;
2284                 uint16_t nb_tx_desc_tmp;
2285                 struct rte_eth_rxq_info rx_qinfo;
2286                 struct rte_eth_txq_info tx_qinfo;
2287                 int32_t rc;
2288
2289                 /* per port config */
2290                 printf("  port %d: RX queue number: %d Tx queue number: %d\n",
2291                                 (unsigned int)pid, nb_rxq, nb_txq);
2292
2293                 printf("    Rx offloads=0x%"PRIx64" Tx offloads=0x%"PRIx64"\n",
2294                                 ports[pid].dev_conf.rxmode.offloads,
2295                                 ports[pid].dev_conf.txmode.offloads);
2296
2297                 /* per rx queue config only for first queue to be less verbose */
2298                 for (qid = 0; qid < 1; qid++) {
2299                         rc = rte_eth_rx_queue_info_get(pid, qid, &rx_qinfo);
2300                         if (rc)
2301                                 nb_rx_desc_tmp = nb_rx_desc[qid];
2302                         else
2303                                 nb_rx_desc_tmp = rx_qinfo.nb_desc;
2304
2305                         printf("    RX queue: %d\n", qid);
2306                         printf("      RX desc=%d - RX free threshold=%d\n",
2307                                 nb_rx_desc_tmp, rx_conf[qid].rx_free_thresh);
2308                         printf("      RX threshold registers: pthresh=%d hthresh=%d "
2309                                 " wthresh=%d\n",
2310                                 rx_conf[qid].rx_thresh.pthresh,
2311                                 rx_conf[qid].rx_thresh.hthresh,
2312                                 rx_conf[qid].rx_thresh.wthresh);
2313                         printf("      RX Offloads=0x%"PRIx64"\n",
2314                                 rx_conf[qid].offloads);
2315                 }
2316
2317                 /* per tx queue config only for first queue to be less verbose */
2318                 for (qid = 0; qid < 1; qid++) {
2319                         rc = rte_eth_tx_queue_info_get(pid, qid, &tx_qinfo);
2320                         if (rc)
2321                                 nb_tx_desc_tmp = nb_tx_desc[qid];
2322                         else
2323                                 nb_tx_desc_tmp = tx_qinfo.nb_desc;
2324
2325                         printf("    TX queue: %d\n", qid);
2326                         printf("      TX desc=%d - TX free threshold=%d\n",
2327                                 nb_tx_desc_tmp, tx_conf[qid].tx_free_thresh);
2328                         printf("      TX threshold registers: pthresh=%d hthresh=%d "
2329                                 " wthresh=%d\n",
2330                                 tx_conf[qid].tx_thresh.pthresh,
2331                                 tx_conf[qid].tx_thresh.hthresh,
2332                                 tx_conf[qid].tx_thresh.wthresh);
2333                         printf("      TX offloads=0x%"PRIx64" - TX RS bit threshold=%d\n",
2334                                 tx_conf[qid].offloads, tx_conf->tx_rs_thresh);
2335                 }
2336         }
2337 }
2338
2339 void
2340 port_rss_reta_info(portid_t port_id,
2341                    struct rte_eth_rss_reta_entry64 *reta_conf,
2342                    uint16_t nb_entries)
2343 {
2344         uint16_t i, idx, shift;
2345         int ret;
2346
2347         if (port_id_is_invalid(port_id, ENABLED_WARN))
2348                 return;
2349
2350         ret = rte_eth_dev_rss_reta_query(port_id, reta_conf, nb_entries);
2351         if (ret != 0) {
2352                 printf("Failed to get RSS RETA info, return code = %d\n", ret);
2353                 return;
2354         }
2355
2356         for (i = 0; i < nb_entries; i++) {
2357                 idx = i / RTE_RETA_GROUP_SIZE;
2358                 shift = i % RTE_RETA_GROUP_SIZE;
2359                 if (!(reta_conf[idx].mask & (1ULL << shift)))
2360                         continue;
2361                 printf("RSS RETA configuration: hash index=%u, queue=%u\n",
2362                                         i, reta_conf[idx].reta[shift]);
2363         }
2364 }
2365
2366 /*
2367  * Displays the RSS hash functions of a port, and, optionaly, the RSS hash
2368  * key of the port.
2369  */
2370 void
2371 port_rss_hash_conf_show(portid_t port_id, int show_rss_key)
2372 {
2373         struct rte_eth_rss_conf rss_conf = {0};
2374         uint8_t rss_key[RSS_HASH_KEY_LENGTH];
2375         uint64_t rss_hf;
2376         uint8_t i;
2377         int diag;
2378         struct rte_eth_dev_info dev_info;
2379         uint8_t hash_key_size;
2380         int ret;
2381
2382         if (port_id_is_invalid(port_id, ENABLED_WARN))
2383                 return;
2384
2385         ret = eth_dev_info_get_print_err(port_id, &dev_info);
2386         if (ret != 0)
2387                 return;
2388
2389         if (dev_info.hash_key_size > 0 &&
2390                         dev_info.hash_key_size <= sizeof(rss_key))
2391                 hash_key_size = dev_info.hash_key_size;
2392         else {
2393                 printf("dev_info did not provide a valid hash key size\n");
2394                 return;
2395         }
2396
2397         /* Get RSS hash key if asked to display it */
2398         rss_conf.rss_key = (show_rss_key) ? rss_key : NULL;
2399         rss_conf.rss_key_len = hash_key_size;
2400         diag = rte_eth_dev_rss_hash_conf_get(port_id, &rss_conf);
2401         if (diag != 0) {
2402                 switch (diag) {
2403                 case -ENODEV:
2404                         printf("port index %d invalid\n", port_id);
2405                         break;
2406                 case -ENOTSUP:
2407                         printf("operation not supported by device\n");
2408                         break;
2409                 default:
2410                         printf("operation failed - diag=%d\n", diag);
2411                         break;
2412                 }
2413                 return;
2414         }
2415         rss_hf = rss_conf.rss_hf;
2416         if (rss_hf == 0) {
2417                 printf("RSS disabled\n");
2418                 return;
2419         }
2420         printf("RSS functions:\n ");
2421         for (i = 0; rss_type_table[i].str; i++) {
2422                 if (rss_hf & rss_type_table[i].rss_type)
2423                         printf("%s ", rss_type_table[i].str);
2424         }
2425         printf("\n");
2426         if (!show_rss_key)
2427                 return;
2428         printf("RSS key:\n");
2429         for (i = 0; i < hash_key_size; i++)
2430                 printf("%02X", rss_key[i]);
2431         printf("\n");
2432 }
2433
2434 void
2435 port_rss_hash_key_update(portid_t port_id, char rss_type[], uint8_t *hash_key,
2436                          uint hash_key_len)
2437 {
2438         struct rte_eth_rss_conf rss_conf;
2439         int diag;
2440         unsigned int i;
2441
2442         rss_conf.rss_key = NULL;
2443         rss_conf.rss_key_len = hash_key_len;
2444         rss_conf.rss_hf = 0;
2445         for (i = 0; rss_type_table[i].str; i++) {
2446                 if (!strcmp(rss_type_table[i].str, rss_type))
2447                         rss_conf.rss_hf = rss_type_table[i].rss_type;
2448         }
2449         diag = rte_eth_dev_rss_hash_conf_get(port_id, &rss_conf);
2450         if (diag == 0) {
2451                 rss_conf.rss_key = hash_key;
2452                 diag = rte_eth_dev_rss_hash_update(port_id, &rss_conf);
2453         }
2454         if (diag == 0)
2455                 return;
2456
2457         switch (diag) {
2458         case -ENODEV:
2459                 printf("port index %d invalid\n", port_id);
2460                 break;
2461         case -ENOTSUP:
2462                 printf("operation not supported by device\n");
2463                 break;
2464         default:
2465                 printf("operation failed - diag=%d\n", diag);
2466                 break;
2467         }
2468 }
2469
2470 /*
2471  * Setup forwarding configuration for each logical core.
2472  */
2473 static void
2474 setup_fwd_config_of_each_lcore(struct fwd_config *cfg)
2475 {
2476         streamid_t nb_fs_per_lcore;
2477         streamid_t nb_fs;
2478         streamid_t sm_id;
2479         lcoreid_t  nb_extra;
2480         lcoreid_t  nb_fc;
2481         lcoreid_t  nb_lc;
2482         lcoreid_t  lc_id;
2483
2484         nb_fs = cfg->nb_fwd_streams;
2485         nb_fc = cfg->nb_fwd_lcores;
2486         if (nb_fs <= nb_fc) {
2487                 nb_fs_per_lcore = 1;
2488                 nb_extra = 0;
2489         } else {
2490                 nb_fs_per_lcore = (streamid_t) (nb_fs / nb_fc);
2491                 nb_extra = (lcoreid_t) (nb_fs % nb_fc);
2492         }
2493
2494         nb_lc = (lcoreid_t) (nb_fc - nb_extra);
2495         sm_id = 0;
2496         for (lc_id = 0; lc_id < nb_lc; lc_id++) {
2497                 fwd_lcores[lc_id]->stream_idx = sm_id;
2498                 fwd_lcores[lc_id]->stream_nb = nb_fs_per_lcore;
2499                 sm_id = (streamid_t) (sm_id + nb_fs_per_lcore);
2500         }
2501
2502         /*
2503          * Assign extra remaining streams, if any.
2504          */
2505         nb_fs_per_lcore = (streamid_t) (nb_fs_per_lcore + 1);
2506         for (lc_id = 0; lc_id < nb_extra; lc_id++) {
2507                 fwd_lcores[nb_lc + lc_id]->stream_idx = sm_id;
2508                 fwd_lcores[nb_lc + lc_id]->stream_nb = nb_fs_per_lcore;
2509                 sm_id = (streamid_t) (sm_id + nb_fs_per_lcore);
2510         }
2511 }
2512
2513 static portid_t
2514 fwd_topology_tx_port_get(portid_t rxp)
2515 {
2516         static int warning_once = 1;
2517
2518         RTE_ASSERT(rxp < cur_fwd_config.nb_fwd_ports);
2519
2520         switch (port_topology) {
2521         default:
2522         case PORT_TOPOLOGY_PAIRED:
2523                 if ((rxp & 0x1) == 0) {
2524                         if (rxp + 1 < cur_fwd_config.nb_fwd_ports)
2525                                 return rxp + 1;
2526                         if (warning_once) {
2527                                 printf("\nWarning! port-topology=paired"
2528                                        " and odd forward ports number,"
2529                                        " the last port will pair with"
2530                                        " itself.\n\n");
2531                                 warning_once = 0;
2532                         }
2533                         return rxp;
2534                 }
2535                 return rxp - 1;
2536         case PORT_TOPOLOGY_CHAINED:
2537                 return (rxp + 1) % cur_fwd_config.nb_fwd_ports;
2538         case PORT_TOPOLOGY_LOOP:
2539                 return rxp;
2540         }
2541 }
2542
2543 static void
2544 simple_fwd_config_setup(void)
2545 {
2546         portid_t i;
2547
2548         cur_fwd_config.nb_fwd_ports = (portid_t) nb_fwd_ports;
2549         cur_fwd_config.nb_fwd_streams =
2550                 (streamid_t) cur_fwd_config.nb_fwd_ports;
2551
2552         /* reinitialize forwarding streams */
2553         init_fwd_streams();
2554
2555         /*
2556          * In the simple forwarding test, the number of forwarding cores
2557          * must be lower or equal to the number of forwarding ports.
2558          */
2559         cur_fwd_config.nb_fwd_lcores = (lcoreid_t) nb_fwd_lcores;
2560         if (cur_fwd_config.nb_fwd_lcores > cur_fwd_config.nb_fwd_ports)
2561                 cur_fwd_config.nb_fwd_lcores =
2562                         (lcoreid_t) cur_fwd_config.nb_fwd_ports;
2563         setup_fwd_config_of_each_lcore(&cur_fwd_config);
2564
2565         for (i = 0; i < cur_fwd_config.nb_fwd_ports; i++) {
2566                 fwd_streams[i]->rx_port   = fwd_ports_ids[i];
2567                 fwd_streams[i]->rx_queue  = 0;
2568                 fwd_streams[i]->tx_port   =
2569                                 fwd_ports_ids[fwd_topology_tx_port_get(i)];
2570                 fwd_streams[i]->tx_queue  = 0;
2571                 fwd_streams[i]->peer_addr = fwd_streams[i]->tx_port;
2572                 fwd_streams[i]->retry_enabled = retry_enabled;
2573         }
2574 }
2575
2576 /**
2577  * For the RSS forwarding test all streams distributed over lcores. Each stream
2578  * being composed of a RX queue to poll on a RX port for input messages,
2579  * associated with a TX queue of a TX port where to send forwarded packets.
2580  */
2581 static void
2582 rss_fwd_config_setup(void)
2583 {
2584         portid_t   rxp;
2585         portid_t   txp;
2586         queueid_t  rxq;
2587         queueid_t  nb_q;
2588         streamid_t  sm_id;
2589
2590         nb_q = nb_rxq;
2591         if (nb_q > nb_txq)
2592                 nb_q = nb_txq;
2593         cur_fwd_config.nb_fwd_lcores = (lcoreid_t) nb_fwd_lcores;
2594         cur_fwd_config.nb_fwd_ports = nb_fwd_ports;
2595         cur_fwd_config.nb_fwd_streams =
2596                 (streamid_t) (nb_q * cur_fwd_config.nb_fwd_ports);
2597
2598         if (cur_fwd_config.nb_fwd_streams < cur_fwd_config.nb_fwd_lcores)
2599                 cur_fwd_config.nb_fwd_lcores =
2600                         (lcoreid_t)cur_fwd_config.nb_fwd_streams;
2601
2602         /* reinitialize forwarding streams */
2603         init_fwd_streams();
2604
2605         setup_fwd_config_of_each_lcore(&cur_fwd_config);
2606         rxp = 0; rxq = 0;
2607         for (sm_id = 0; sm_id < cur_fwd_config.nb_fwd_streams; sm_id++) {
2608                 struct fwd_stream *fs;
2609
2610                 fs = fwd_streams[sm_id];
2611                 txp = fwd_topology_tx_port_get(rxp);
2612                 fs->rx_port = fwd_ports_ids[rxp];
2613                 fs->rx_queue = rxq;
2614                 fs->tx_port = fwd_ports_ids[txp];
2615                 fs->tx_queue = rxq;
2616                 fs->peer_addr = fs->tx_port;
2617                 fs->retry_enabled = retry_enabled;
2618                 rxp++;
2619                 if (rxp < nb_fwd_ports)
2620                         continue;
2621                 rxp = 0;
2622                 rxq++;
2623         }
2624 }
2625
2626 /**
2627  * For the DCB forwarding test, each core is assigned on each traffic class.
2628  *
2629  * Each core is assigned a multi-stream, each stream being composed of
2630  * a RX queue to poll on a RX port for input messages, associated with
2631  * a TX queue of a TX port where to send forwarded packets. All RX and
2632  * TX queues are mapping to the same traffic class.
2633  * If VMDQ and DCB co-exist, each traffic class on different POOLs share
2634  * the same core
2635  */
2636 static void
2637 dcb_fwd_config_setup(void)
2638 {
2639         struct rte_eth_dcb_info rxp_dcb_info, txp_dcb_info;
2640         portid_t txp, rxp = 0;
2641         queueid_t txq, rxq = 0;
2642         lcoreid_t  lc_id;
2643         uint16_t nb_rx_queue, nb_tx_queue;
2644         uint16_t i, j, k, sm_id = 0;
2645         uint8_t tc = 0;
2646
2647         cur_fwd_config.nb_fwd_lcores = (lcoreid_t) nb_fwd_lcores;
2648         cur_fwd_config.nb_fwd_ports = nb_fwd_ports;
2649         cur_fwd_config.nb_fwd_streams =
2650                 (streamid_t) (nb_rxq * cur_fwd_config.nb_fwd_ports);
2651
2652         /* reinitialize forwarding streams */
2653         init_fwd_streams();
2654         sm_id = 0;
2655         txp = 1;
2656         /* get the dcb info on the first RX and TX ports */
2657         (void)rte_eth_dev_get_dcb_info(fwd_ports_ids[rxp], &rxp_dcb_info);
2658         (void)rte_eth_dev_get_dcb_info(fwd_ports_ids[txp], &txp_dcb_info);
2659
2660         for (lc_id = 0; lc_id < cur_fwd_config.nb_fwd_lcores; lc_id++) {
2661                 fwd_lcores[lc_id]->stream_nb = 0;
2662                 fwd_lcores[lc_id]->stream_idx = sm_id;
2663                 for (i = 0; i < ETH_MAX_VMDQ_POOL; i++) {
2664                         /* if the nb_queue is zero, means this tc is
2665                          * not enabled on the POOL
2666                          */
2667                         if (rxp_dcb_info.tc_queue.tc_rxq[i][tc].nb_queue == 0)
2668                                 break;
2669                         k = fwd_lcores[lc_id]->stream_nb +
2670                                 fwd_lcores[lc_id]->stream_idx;
2671                         rxq = rxp_dcb_info.tc_queue.tc_rxq[i][tc].base;
2672                         txq = txp_dcb_info.tc_queue.tc_txq[i][tc].base;
2673                         nb_rx_queue = txp_dcb_info.tc_queue.tc_rxq[i][tc].nb_queue;
2674                         nb_tx_queue = txp_dcb_info.tc_queue.tc_txq[i][tc].nb_queue;
2675                         for (j = 0; j < nb_rx_queue; j++) {
2676                                 struct fwd_stream *fs;
2677
2678                                 fs = fwd_streams[k + j];
2679                                 fs->rx_port = fwd_ports_ids[rxp];
2680                                 fs->rx_queue = rxq + j;
2681                                 fs->tx_port = fwd_ports_ids[txp];
2682                                 fs->tx_queue = txq + j % nb_tx_queue;
2683                                 fs->peer_addr = fs->tx_port;
2684                                 fs->retry_enabled = retry_enabled;
2685                         }
2686                         fwd_lcores[lc_id]->stream_nb +=
2687                                 rxp_dcb_info.tc_queue.tc_rxq[i][tc].nb_queue;
2688                 }
2689                 sm_id = (streamid_t) (sm_id + fwd_lcores[lc_id]->stream_nb);
2690
2691                 tc++;
2692                 if (tc < rxp_dcb_info.nb_tcs)
2693                         continue;
2694                 /* Restart from TC 0 on next RX port */
2695                 tc = 0;
2696                 if (numa_support && (nb_fwd_ports <= (nb_ports >> 1)))
2697                         rxp = (portid_t)
2698                                 (rxp + ((nb_ports >> 1) / nb_fwd_ports));
2699                 else
2700                         rxp++;
2701                 if (rxp >= nb_fwd_ports)
2702                         return;
2703                 /* get the dcb information on next RX and TX ports */
2704                 if ((rxp & 0x1) == 0)
2705                         txp = (portid_t) (rxp + 1);
2706                 else
2707                         txp = (portid_t) (rxp - 1);
2708                 rte_eth_dev_get_dcb_info(fwd_ports_ids[rxp], &rxp_dcb_info);
2709                 rte_eth_dev_get_dcb_info(fwd_ports_ids[txp], &txp_dcb_info);
2710         }
2711 }
2712
2713 static void
2714 icmp_echo_config_setup(void)
2715 {
2716         portid_t  rxp;
2717         queueid_t rxq;
2718         lcoreid_t lc_id;
2719         uint16_t  sm_id;
2720
2721         if ((nb_txq * nb_fwd_ports) < nb_fwd_lcores)
2722                 cur_fwd_config.nb_fwd_lcores = (lcoreid_t)
2723                         (nb_txq * nb_fwd_ports);
2724         else
2725                 cur_fwd_config.nb_fwd_lcores = (lcoreid_t) nb_fwd_lcores;
2726         cur_fwd_config.nb_fwd_ports = nb_fwd_ports;
2727         cur_fwd_config.nb_fwd_streams =
2728                 (streamid_t) (nb_rxq * cur_fwd_config.nb_fwd_ports);
2729         if (cur_fwd_config.nb_fwd_streams < cur_fwd_config.nb_fwd_lcores)
2730                 cur_fwd_config.nb_fwd_lcores =
2731                         (lcoreid_t)cur_fwd_config.nb_fwd_streams;
2732         if (verbose_level > 0) {
2733                 printf("%s fwd_cores=%d fwd_ports=%d fwd_streams=%d\n",
2734                        __FUNCTION__,
2735                        cur_fwd_config.nb_fwd_lcores,
2736                        cur_fwd_config.nb_fwd_ports,
2737                        cur_fwd_config.nb_fwd_streams);
2738         }
2739
2740         /* reinitialize forwarding streams */
2741         init_fwd_streams();
2742         setup_fwd_config_of_each_lcore(&cur_fwd_config);
2743         rxp = 0; rxq = 0;
2744         for (lc_id = 0; lc_id < cur_fwd_config.nb_fwd_lcores; lc_id++) {
2745                 if (verbose_level > 0)
2746                         printf("  core=%d: \n", lc_id);
2747                 for (sm_id = 0; sm_id < fwd_lcores[lc_id]->stream_nb; sm_id++) {
2748                         struct fwd_stream *fs;
2749                         fs = fwd_streams[fwd_lcores[lc_id]->stream_idx + sm_id];
2750                         fs->rx_port = fwd_ports_ids[rxp];
2751                         fs->rx_queue = rxq;
2752                         fs->tx_port = fs->rx_port;
2753                         fs->tx_queue = rxq;
2754                         fs->peer_addr = fs->tx_port;
2755                         fs->retry_enabled = retry_enabled;
2756                         if (verbose_level > 0)
2757                                 printf("  stream=%d port=%d rxq=%d txq=%d\n",
2758                                        sm_id, fs->rx_port, fs->rx_queue,
2759                                        fs->tx_queue);
2760                         rxq = (queueid_t) (rxq + 1);
2761                         if (rxq == nb_rxq) {
2762                                 rxq = 0;
2763                                 rxp = (portid_t) (rxp + 1);
2764                         }
2765                 }
2766         }
2767 }
2768
2769 void
2770 fwd_config_setup(void)
2771 {
2772         cur_fwd_config.fwd_eng = cur_fwd_eng;
2773         if (strcmp(cur_fwd_eng->fwd_mode_name, "icmpecho") == 0) {
2774                 icmp_echo_config_setup();
2775                 return;
2776         }
2777
2778         if ((nb_rxq > 1) && (nb_txq > 1)){
2779                 if (dcb_config)
2780                         dcb_fwd_config_setup();
2781                 else
2782                         rss_fwd_config_setup();
2783         }
2784         else
2785                 simple_fwd_config_setup();
2786 }
2787
2788 static const char *
2789 mp_alloc_to_str(uint8_t mode)
2790 {
2791         switch (mode) {
2792         case MP_ALLOC_NATIVE:
2793                 return "native";
2794         case MP_ALLOC_ANON:
2795                 return "anon";
2796         case MP_ALLOC_XMEM:
2797                 return "xmem";
2798         case MP_ALLOC_XMEM_HUGE:
2799                 return "xmemhuge";
2800         case MP_ALLOC_XBUF:
2801                 return "xbuf";
2802         default:
2803                 return "invalid";
2804         }
2805 }
2806
2807 void
2808 pkt_fwd_config_display(struct fwd_config *cfg)
2809 {
2810         struct fwd_stream *fs;
2811         lcoreid_t  lc_id;
2812         streamid_t sm_id;
2813
2814         printf("%s packet forwarding%s - ports=%d - cores=%d - streams=%d - "
2815                 "NUMA support %s, MP allocation mode: %s\n",
2816                 cfg->fwd_eng->fwd_mode_name,
2817                 retry_enabled == 0 ? "" : " with retry",
2818                 cfg->nb_fwd_ports, cfg->nb_fwd_lcores, cfg->nb_fwd_streams,
2819                 numa_support == 1 ? "enabled" : "disabled",
2820                 mp_alloc_to_str(mp_alloc_type));
2821
2822         if (retry_enabled)
2823                 printf("TX retry num: %u, delay between TX retries: %uus\n",
2824                         burst_tx_retry_num, burst_tx_delay_time);
2825         for (lc_id = 0; lc_id < cfg->nb_fwd_lcores; lc_id++) {
2826                 printf("Logical Core %u (socket %u) forwards packets on "
2827                        "%d streams:",
2828                        fwd_lcores_cpuids[lc_id],
2829                        rte_lcore_to_socket_id(fwd_lcores_cpuids[lc_id]),
2830                        fwd_lcores[lc_id]->stream_nb);
2831                 for (sm_id = 0; sm_id < fwd_lcores[lc_id]->stream_nb; sm_id++) {
2832                         fs = fwd_streams[fwd_lcores[lc_id]->stream_idx + sm_id];
2833                         printf("\n  RX P=%d/Q=%d (socket %u) -> TX "
2834                                "P=%d/Q=%d (socket %u) ",
2835                                fs->rx_port, fs->rx_queue,
2836                                ports[fs->rx_port].socket_id,
2837                                fs->tx_port, fs->tx_queue,
2838                                ports[fs->tx_port].socket_id);
2839                         print_ethaddr("peer=",
2840                                       &peer_eth_addrs[fs->peer_addr]);
2841                 }
2842                 printf("\n");
2843         }
2844         printf("\n");
2845 }
2846
2847 void
2848 set_fwd_eth_peer(portid_t port_id, char *peer_addr)
2849 {
2850         struct rte_ether_addr new_peer_addr;
2851         if (!rte_eth_dev_is_valid_port(port_id)) {
2852                 printf("Error: Invalid port number %i\n", port_id);
2853                 return;
2854         }
2855         if (rte_ether_unformat_addr(peer_addr, &new_peer_addr) < 0) {
2856                 printf("Error: Invalid ethernet address: %s\n", peer_addr);
2857                 return;
2858         }
2859         peer_eth_addrs[port_id] = new_peer_addr;
2860 }
2861
2862 int
2863 set_fwd_lcores_list(unsigned int *lcorelist, unsigned int nb_lc)
2864 {
2865         unsigned int i;
2866         unsigned int lcore_cpuid;
2867         int record_now;
2868
2869         record_now = 0;
2870  again:
2871         for (i = 0; i < nb_lc; i++) {
2872                 lcore_cpuid = lcorelist[i];
2873                 if (! rte_lcore_is_enabled(lcore_cpuid)) {
2874                         printf("lcore %u not enabled\n", lcore_cpuid);
2875                         return -1;
2876                 }
2877                 if (lcore_cpuid == rte_get_master_lcore()) {
2878                         printf("lcore %u cannot be masked on for running "
2879                                "packet forwarding, which is the master lcore "
2880                                "and reserved for command line parsing only\n",
2881                                lcore_cpuid);
2882                         return -1;
2883                 }
2884                 if (record_now)
2885                         fwd_lcores_cpuids[i] = lcore_cpuid;
2886         }
2887         if (record_now == 0) {
2888                 record_now = 1;
2889                 goto again;
2890         }
2891         nb_cfg_lcores = (lcoreid_t) nb_lc;
2892         if (nb_fwd_lcores != (lcoreid_t) nb_lc) {
2893                 printf("previous number of forwarding cores %u - changed to "
2894                        "number of configured cores %u\n",
2895                        (unsigned int) nb_fwd_lcores, nb_lc);
2896                 nb_fwd_lcores = (lcoreid_t) nb_lc;
2897         }
2898
2899         return 0;
2900 }
2901
2902 int
2903 set_fwd_lcores_mask(uint64_t lcoremask)
2904 {
2905         unsigned int lcorelist[64];
2906         unsigned int nb_lc;
2907         unsigned int i;
2908
2909         if (lcoremask == 0) {
2910                 printf("Invalid NULL mask of cores\n");
2911                 return -1;
2912         }
2913         nb_lc = 0;
2914         for (i = 0; i < 64; i++) {
2915                 if (! ((uint64_t)(1ULL << i) & lcoremask))
2916                         continue;
2917                 lcorelist[nb_lc++] = i;
2918         }
2919         return set_fwd_lcores_list(lcorelist, nb_lc);
2920 }
2921
2922 void
2923 set_fwd_lcores_number(uint16_t nb_lc)
2924 {
2925         if (nb_lc > nb_cfg_lcores) {
2926                 printf("nb fwd cores %u > %u (max. number of configured "
2927                        "lcores) - ignored\n",
2928                        (unsigned int) nb_lc, (unsigned int) nb_cfg_lcores);
2929                 return;
2930         }
2931         nb_fwd_lcores = (lcoreid_t) nb_lc;
2932         printf("Number of forwarding cores set to %u\n",
2933                (unsigned int) nb_fwd_lcores);
2934 }
2935
2936 void
2937 set_fwd_ports_list(unsigned int *portlist, unsigned int nb_pt)
2938 {
2939         unsigned int i;
2940         portid_t port_id;
2941         int record_now;
2942
2943         record_now = 0;
2944  again:
2945         for (i = 0; i < nb_pt; i++) {
2946                 port_id = (portid_t) portlist[i];
2947                 if (port_id_is_invalid(port_id, ENABLED_WARN))
2948                         return;
2949                 if (record_now)
2950                         fwd_ports_ids[i] = port_id;
2951         }
2952         if (record_now == 0) {
2953                 record_now = 1;
2954                 goto again;
2955         }
2956         nb_cfg_ports = (portid_t) nb_pt;
2957         if (nb_fwd_ports != (portid_t) nb_pt) {
2958                 printf("previous number of forwarding ports %u - changed to "
2959                        "number of configured ports %u\n",
2960                        (unsigned int) nb_fwd_ports, nb_pt);
2961                 nb_fwd_ports = (portid_t) nb_pt;
2962         }
2963 }
2964
2965 /**
2966  * Parse the user input and obtain the list of forwarding ports
2967  *
2968  * @param[in] list
2969  *   String containing the user input. User can specify
2970  *   in these formats 1,3,5 or 1-3 or 1-2,5 or 3,5-6.
2971  *   For example, if the user wants to use all the available
2972  *   4 ports in his system, then the input can be 0-3 or 0,1,2,3.
2973  *   If the user wants to use only the ports 1,2 then the input
2974  *   is 1,2.
2975  *   valid characters are '-' and ','
2976  * @param[out] values
2977  *   This array will be filled with a list of port IDs
2978  *   based on the user input
2979  *   Note that duplicate entries are discarded and only the first
2980  *   count entries in this array are port IDs and all the rest
2981  *   will contain default values
2982  * @param[in] maxsize
2983  *   This parameter denotes 2 things
2984  *   1) Number of elements in the values array
2985  *   2) Maximum value of each element in the values array
2986  * @return
2987  *   On success, returns total count of parsed port IDs
2988  *   On failure, returns 0
2989  */
2990 static unsigned int
2991 parse_port_list(const char *list, unsigned int *values, unsigned int maxsize)
2992 {
2993         unsigned int count = 0;
2994         char *end = NULL;
2995         int min, max;
2996         int value, i;
2997         unsigned int marked[maxsize];
2998
2999         if (list == NULL || values == NULL)
3000                 return 0;
3001
3002         for (i = 0; i < (int)maxsize; i++)
3003                 marked[i] = 0;
3004
3005         min = INT_MAX;
3006
3007         do {
3008                 /*Remove the blank spaces if any*/
3009                 while (isblank(*list))
3010                         list++;
3011                 if (*list == '\0')
3012                         break;
3013                 errno = 0;
3014                 value = strtol(list, &end, 10);
3015                 if (errno || end == NULL)
3016                         return 0;
3017                 if (value < 0 || value >= (int)maxsize)
3018                         return 0;
3019                 while (isblank(*end))
3020                         end++;
3021                 if (*end == '-' && min == INT_MAX) {
3022                         min = value;
3023                 } else if ((*end == ',') || (*end == '\0')) {
3024                         max = value;
3025                         if (min == INT_MAX)
3026                                 min = value;
3027                         for (i = min; i <= max; i++) {
3028                                 if (count < maxsize) {
3029                                         if (marked[i])
3030                                                 continue;
3031                                         values[count] = i;
3032                                         marked[i] = 1;
3033                                         count++;
3034                                 }
3035                         }
3036                         min = INT_MAX;
3037                 } else
3038                         return 0;
3039                 list = end + 1;
3040         } while (*end != '\0');
3041
3042         return count;
3043 }
3044
3045 void
3046 parse_fwd_portlist(const char *portlist)
3047 {
3048         unsigned int portcount;
3049         unsigned int portindex[RTE_MAX_ETHPORTS];
3050         unsigned int i, valid_port_count = 0;
3051
3052         portcount = parse_port_list(portlist, portindex, RTE_MAX_ETHPORTS);
3053         if (!portcount)
3054                 rte_exit(EXIT_FAILURE, "Invalid fwd port list\n");
3055
3056         /*
3057          * Here we verify the validity of the ports
3058          * and thereby calculate the total number of
3059          * valid ports
3060          */
3061         for (i = 0; i < portcount && i < RTE_DIM(portindex); i++) {
3062                 if (rte_eth_dev_is_valid_port(portindex[i])) {
3063                         portindex[valid_port_count] = portindex[i];
3064                         valid_port_count++;
3065                 }
3066         }
3067
3068         set_fwd_ports_list(portindex, valid_port_count);
3069 }
3070
3071 void
3072 set_fwd_ports_mask(uint64_t portmask)
3073 {
3074         unsigned int portlist[64];
3075         unsigned int nb_pt;
3076         unsigned int i;
3077
3078         if (portmask == 0) {
3079                 printf("Invalid NULL mask of ports\n");
3080                 return;
3081         }
3082         nb_pt = 0;
3083         RTE_ETH_FOREACH_DEV(i) {
3084                 if (! ((uint64_t)(1ULL << i) & portmask))
3085                         continue;
3086                 portlist[nb_pt++] = i;
3087         }
3088         set_fwd_ports_list(portlist, nb_pt);
3089 }
3090
3091 void
3092 set_fwd_ports_number(uint16_t nb_pt)
3093 {
3094         if (nb_pt > nb_cfg_ports) {
3095                 printf("nb fwd ports %u > %u (number of configured "
3096                        "ports) - ignored\n",
3097                        (unsigned int) nb_pt, (unsigned int) nb_cfg_ports);
3098                 return;
3099         }
3100         nb_fwd_ports = (portid_t) nb_pt;
3101         printf("Number of forwarding ports set to %u\n",
3102                (unsigned int) nb_fwd_ports);
3103 }
3104
3105 int
3106 port_is_forwarding(portid_t port_id)
3107 {
3108         unsigned int i;
3109
3110         if (port_id_is_invalid(port_id, ENABLED_WARN))
3111                 return -1;
3112
3113         for (i = 0; i < nb_fwd_ports; i++) {
3114                 if (fwd_ports_ids[i] == port_id)
3115                         return 1;
3116         }
3117
3118         return 0;
3119 }
3120
3121 void
3122 set_nb_pkt_per_burst(uint16_t nb)
3123 {
3124         if (nb > MAX_PKT_BURST) {
3125                 printf("nb pkt per burst: %u > %u (maximum packet per burst) "
3126                        " ignored\n",
3127                        (unsigned int) nb, (unsigned int) MAX_PKT_BURST);
3128                 return;
3129         }
3130         nb_pkt_per_burst = nb;
3131         printf("Number of packets per burst set to %u\n",
3132                (unsigned int) nb_pkt_per_burst);
3133 }
3134
3135 static const char *
3136 tx_split_get_name(enum tx_pkt_split split)
3137 {
3138         uint32_t i;
3139
3140         for (i = 0; i != RTE_DIM(tx_split_name); i++) {
3141                 if (tx_split_name[i].split == split)
3142                         return tx_split_name[i].name;
3143         }
3144         return NULL;
3145 }
3146
3147 void
3148 set_tx_pkt_split(const char *name)
3149 {
3150         uint32_t i;
3151
3152         for (i = 0; i != RTE_DIM(tx_split_name); i++) {
3153                 if (strcmp(tx_split_name[i].name, name) == 0) {
3154                         tx_pkt_split = tx_split_name[i].split;
3155                         return;
3156                 }
3157         }
3158         printf("unknown value: \"%s\"\n", name);
3159 }
3160
3161 void
3162 show_tx_pkt_segments(void)
3163 {
3164         uint32_t i, n;
3165         const char *split;
3166
3167         n = tx_pkt_nb_segs;
3168         split = tx_split_get_name(tx_pkt_split);
3169
3170         printf("Number of segments: %u\n", n);
3171         printf("Segment sizes: ");
3172         for (i = 0; i != n - 1; i++)
3173                 printf("%hu,", tx_pkt_seg_lengths[i]);
3174         printf("%hu\n", tx_pkt_seg_lengths[i]);
3175         printf("Split packet: %s\n", split);
3176 }
3177
3178 static bool
3179 nb_segs_is_invalid(unsigned int nb_segs)
3180 {
3181         uint16_t ring_size;
3182         uint16_t queue_id;
3183         uint16_t port_id;
3184         int ret;
3185
3186         RTE_ETH_FOREACH_DEV(port_id) {
3187                 for (queue_id = 0; queue_id < nb_txq; queue_id++) {
3188                         ret = get_tx_ring_size(port_id, queue_id, &ring_size);
3189
3190                         if (ret)
3191                                 return true;
3192
3193                         if (ring_size < nb_segs) {
3194                                 printf("nb segments per TX packets=%u >= "
3195                                        "TX queue(%u) ring_size=%u - ignored\n",
3196                                        nb_segs, queue_id, ring_size);
3197                                 return true;
3198                         }
3199                 }
3200         }
3201
3202         return false;
3203 }
3204
3205 void
3206 set_tx_pkt_segments(unsigned *seg_lengths, unsigned nb_segs)
3207 {
3208         uint16_t tx_pkt_len;
3209         unsigned i;
3210
3211         if (nb_segs_is_invalid(nb_segs))
3212                 return;
3213
3214         /*
3215          * Check that each segment length is greater or equal than
3216          * the mbuf data sise.
3217          * Check also that the total packet length is greater or equal than the
3218          * size of an empty UDP/IP packet (sizeof(struct rte_ether_hdr) +
3219          * 20 + 8).
3220          */
3221         tx_pkt_len = 0;
3222         for (i = 0; i < nb_segs; i++) {
3223                 if (seg_lengths[i] > (unsigned) mbuf_data_size) {
3224                         printf("length[%u]=%u > mbuf_data_size=%u - give up\n",
3225                                i, seg_lengths[i], (unsigned) mbuf_data_size);
3226                         return;
3227                 }
3228                 tx_pkt_len = (uint16_t)(tx_pkt_len + seg_lengths[i]);
3229         }
3230         if (tx_pkt_len < (sizeof(struct rte_ether_hdr) + 20 + 8)) {
3231                 printf("total packet length=%u < %d - give up\n",
3232                                 (unsigned) tx_pkt_len,
3233                                 (int)(sizeof(struct rte_ether_hdr) + 20 + 8));
3234                 return;
3235         }
3236
3237         for (i = 0; i < nb_segs; i++)
3238                 tx_pkt_seg_lengths[i] = (uint16_t) seg_lengths[i];
3239
3240         tx_pkt_length  = tx_pkt_len;
3241         tx_pkt_nb_segs = (uint8_t) nb_segs;
3242 }
3243
3244 void
3245 show_tx_pkt_times(void)
3246 {
3247         printf("Interburst gap: %u\n", tx_pkt_times_inter);
3248         printf("Intraburst gap: %u\n", tx_pkt_times_intra);
3249 }
3250
3251 void
3252 set_tx_pkt_times(unsigned int *tx_times)
3253 {
3254         uint16_t port_id;
3255         int offload_found = 0;
3256         int offset;
3257         int flag;
3258
3259         static const struct rte_mbuf_dynfield desc_offs = {
3260                 .name = RTE_MBUF_DYNFIELD_TIMESTAMP_NAME,
3261                 .size = sizeof(uint64_t),
3262                 .align = __alignof__(uint64_t),
3263         };
3264         static const struct rte_mbuf_dynflag desc_flag = {
3265                 .name = RTE_MBUF_DYNFLAG_TX_TIMESTAMP_NAME,
3266         };
3267
3268         RTE_ETH_FOREACH_DEV(port_id) {
3269                 struct rte_eth_dev_info dev_info = { 0 };
3270                 int ret;
3271
3272                 ret = rte_eth_dev_info_get(port_id, &dev_info);
3273                 if (ret == 0 && dev_info.tx_offload_capa &
3274                                 DEV_TX_OFFLOAD_SEND_ON_TIMESTAMP) {
3275                         offload_found = 1;
3276                         break;
3277                 }
3278         }
3279         if (!offload_found) {
3280                 printf("No device supporting Tx timestamp scheduling found, "
3281                        "dynamic flag and field not registered\n");
3282                 return;
3283         }
3284         offset = rte_mbuf_dynfield_register(&desc_offs);
3285         if (offset < 0 && rte_errno != EEXIST)
3286                 printf("Dynamic timestamp field registration error: %d",
3287                        rte_errno);
3288         flag = rte_mbuf_dynflag_register(&desc_flag);
3289         if (flag < 0 && rte_errno != EEXIST)
3290                 printf("Dynamic timestamp flag registration error: %d",
3291                        rte_errno);
3292         tx_pkt_times_inter = tx_times[0];
3293         tx_pkt_times_intra = tx_times[1];
3294 }
3295
3296 void
3297 setup_gro(const char *onoff, portid_t port_id)
3298 {
3299         if (!rte_eth_dev_is_valid_port(port_id)) {
3300                 printf("invalid port id %u\n", port_id);
3301                 return;
3302         }
3303         if (test_done == 0) {
3304                 printf("Before enable/disable GRO,"
3305                                 " please stop forwarding first\n");
3306                 return;
3307         }
3308         if (strcmp(onoff, "on") == 0) {
3309                 if (gro_ports[port_id].enable != 0) {
3310                         printf("Port %u has enabled GRO. Please"
3311                                         " disable GRO first\n", port_id);
3312                         return;
3313                 }
3314                 if (gro_flush_cycles == GRO_DEFAULT_FLUSH_CYCLES) {
3315                         gro_ports[port_id].param.gro_types = RTE_GRO_TCP_IPV4;
3316                         gro_ports[port_id].param.max_flow_num =
3317                                 GRO_DEFAULT_FLOW_NUM;
3318                         gro_ports[port_id].param.max_item_per_flow =
3319                                 GRO_DEFAULT_ITEM_NUM_PER_FLOW;
3320                 }
3321                 gro_ports[port_id].enable = 1;
3322         } else {
3323                 if (gro_ports[port_id].enable == 0) {
3324                         printf("Port %u has disabled GRO\n", port_id);
3325                         return;
3326                 }
3327                 gro_ports[port_id].enable = 0;
3328         }
3329 }
3330
3331 void
3332 setup_gro_flush_cycles(uint8_t cycles)
3333 {
3334         if (test_done == 0) {
3335                 printf("Before change flush interval for GRO,"
3336                                 " please stop forwarding first.\n");
3337                 return;
3338         }
3339
3340         if (cycles > GRO_MAX_FLUSH_CYCLES || cycles <
3341                         GRO_DEFAULT_FLUSH_CYCLES) {
3342                 printf("The flushing cycle be in the range"
3343                                 " of 1 to %u. Revert to the default"
3344                                 " value %u.\n",
3345                                 GRO_MAX_FLUSH_CYCLES,
3346                                 GRO_DEFAULT_FLUSH_CYCLES);
3347                 cycles = GRO_DEFAULT_FLUSH_CYCLES;
3348         }
3349
3350         gro_flush_cycles = cycles;
3351 }
3352
3353 void
3354 show_gro(portid_t port_id)
3355 {
3356         struct rte_gro_param *param;
3357         uint32_t max_pkts_num;
3358
3359         param = &gro_ports[port_id].param;
3360
3361         if (!rte_eth_dev_is_valid_port(port_id)) {
3362                 printf("Invalid port id %u.\n", port_id);
3363                 return;
3364         }
3365         if (gro_ports[port_id].enable) {
3366                 printf("GRO type: TCP/IPv4\n");
3367                 if (gro_flush_cycles == GRO_DEFAULT_FLUSH_CYCLES) {
3368                         max_pkts_num = param->max_flow_num *
3369                                 param->max_item_per_flow;
3370                 } else
3371                         max_pkts_num = MAX_PKT_BURST * GRO_MAX_FLUSH_CYCLES;
3372                 printf("Max number of packets to perform GRO: %u\n",
3373                                 max_pkts_num);
3374                 printf("Flushing cycles: %u\n", gro_flush_cycles);
3375         } else
3376                 printf("Port %u doesn't enable GRO.\n", port_id);
3377 }
3378
3379 void
3380 setup_gso(const char *mode, portid_t port_id)
3381 {
3382         if (!rte_eth_dev_is_valid_port(port_id)) {
3383                 printf("invalid port id %u\n", port_id);
3384                 return;
3385         }
3386         if (strcmp(mode, "on") == 0) {
3387                 if (test_done == 0) {
3388                         printf("before enabling GSO,"
3389                                         " please stop forwarding first\n");
3390                         return;
3391                 }
3392                 gso_ports[port_id].enable = 1;
3393         } else if (strcmp(mode, "off") == 0) {
3394                 if (test_done == 0) {
3395                         printf("before disabling GSO,"
3396                                         " please stop forwarding first\n");
3397                         return;
3398                 }
3399                 gso_ports[port_id].enable = 0;
3400         }
3401 }
3402
3403 char*
3404 list_pkt_forwarding_modes(void)
3405 {
3406         static char fwd_modes[128] = "";
3407         const char *separator = "|";
3408         struct fwd_engine *fwd_eng;
3409         unsigned i = 0;
3410
3411         if (strlen (fwd_modes) == 0) {
3412                 while ((fwd_eng = fwd_engines[i++]) != NULL) {
3413                         strncat(fwd_modes, fwd_eng->fwd_mode_name,
3414                                         sizeof(fwd_modes) - strlen(fwd_modes) - 1);
3415                         strncat(fwd_modes, separator,
3416                                         sizeof(fwd_modes) - strlen(fwd_modes) - 1);
3417                 }
3418                 fwd_modes[strlen(fwd_modes) - strlen(separator)] = '\0';
3419         }
3420
3421         return fwd_modes;
3422 }
3423
3424 char*
3425 list_pkt_forwarding_retry_modes(void)
3426 {
3427         static char fwd_modes[128] = "";
3428         const char *separator = "|";
3429         struct fwd_engine *fwd_eng;
3430         unsigned i = 0;
3431
3432         if (strlen(fwd_modes) == 0) {
3433                 while ((fwd_eng = fwd_engines[i++]) != NULL) {
3434                         if (fwd_eng == &rx_only_engine)
3435                                 continue;
3436                         strncat(fwd_modes, fwd_eng->fwd_mode_name,
3437                                         sizeof(fwd_modes) -
3438                                         strlen(fwd_modes) - 1);
3439                         strncat(fwd_modes, separator,
3440                                         sizeof(fwd_modes) -
3441                                         strlen(fwd_modes) - 1);
3442                 }
3443                 fwd_modes[strlen(fwd_modes) - strlen(separator)] = '\0';
3444         }
3445
3446         return fwd_modes;
3447 }
3448
3449 void
3450 set_pkt_forwarding_mode(const char *fwd_mode_name)
3451 {
3452         struct fwd_engine *fwd_eng;
3453         unsigned i;
3454
3455         i = 0;
3456         while ((fwd_eng = fwd_engines[i]) != NULL) {
3457                 if (! strcmp(fwd_eng->fwd_mode_name, fwd_mode_name)) {
3458                         printf("Set %s packet forwarding mode%s\n",
3459                                fwd_mode_name,
3460                                retry_enabled == 0 ? "" : " with retry");
3461                         cur_fwd_eng = fwd_eng;
3462                         return;
3463                 }
3464                 i++;
3465         }
3466         printf("Invalid %s packet forwarding mode\n", fwd_mode_name);
3467 }
3468
3469 void
3470 add_rx_dump_callbacks(portid_t portid)
3471 {
3472         struct rte_eth_dev_info dev_info;
3473         uint16_t queue;
3474         int ret;
3475
3476         if (port_id_is_invalid(portid, ENABLED_WARN))
3477                 return;
3478
3479         ret = eth_dev_info_get_print_err(portid, &dev_info);
3480         if (ret != 0)
3481                 return;
3482
3483         for (queue = 0; queue < dev_info.nb_rx_queues; queue++)
3484                 if (!ports[portid].rx_dump_cb[queue])
3485                         ports[portid].rx_dump_cb[queue] =
3486                                 rte_eth_add_rx_callback(portid, queue,
3487                                         dump_rx_pkts, NULL);
3488 }
3489
3490 void
3491 add_tx_dump_callbacks(portid_t portid)
3492 {
3493         struct rte_eth_dev_info dev_info;
3494         uint16_t queue;
3495         int ret;
3496
3497         if (port_id_is_invalid(portid, ENABLED_WARN))
3498                 return;
3499
3500         ret = eth_dev_info_get_print_err(portid, &dev_info);
3501         if (ret != 0)
3502                 return;
3503
3504         for (queue = 0; queue < dev_info.nb_tx_queues; queue++)
3505                 if (!ports[portid].tx_dump_cb[queue])
3506                         ports[portid].tx_dump_cb[queue] =
3507                                 rte_eth_add_tx_callback(portid, queue,
3508                                                         dump_tx_pkts, NULL);
3509 }
3510
3511 void
3512 remove_rx_dump_callbacks(portid_t portid)
3513 {
3514         struct rte_eth_dev_info dev_info;
3515         uint16_t queue;
3516         int ret;
3517
3518         if (port_id_is_invalid(portid, ENABLED_WARN))
3519                 return;
3520
3521         ret = eth_dev_info_get_print_err(portid, &dev_info);
3522         if (ret != 0)
3523                 return;
3524
3525         for (queue = 0; queue < dev_info.nb_rx_queues; queue++)
3526                 if (ports[portid].rx_dump_cb[queue]) {
3527                         rte_eth_remove_rx_callback(portid, queue,
3528                                 ports[portid].rx_dump_cb[queue]);
3529                         ports[portid].rx_dump_cb[queue] = NULL;
3530                 }
3531 }
3532
3533 void
3534 remove_tx_dump_callbacks(portid_t portid)
3535 {
3536         struct rte_eth_dev_info dev_info;
3537         uint16_t queue;
3538         int ret;
3539
3540         if (port_id_is_invalid(portid, ENABLED_WARN))
3541                 return;
3542
3543         ret = eth_dev_info_get_print_err(portid, &dev_info);
3544         if (ret != 0)
3545                 return;
3546
3547         for (queue = 0; queue < dev_info.nb_tx_queues; queue++)
3548                 if (ports[portid].tx_dump_cb[queue]) {
3549                         rte_eth_remove_tx_callback(portid, queue,
3550                                 ports[portid].tx_dump_cb[queue]);
3551                         ports[portid].tx_dump_cb[queue] = NULL;
3552                 }
3553 }
3554
3555 void
3556 configure_rxtx_dump_callbacks(uint16_t verbose)
3557 {
3558         portid_t portid;
3559
3560 #ifndef RTE_ETHDEV_RXTX_CALLBACKS
3561                 TESTPMD_LOG(ERR, "setting rxtx callbacks is not enabled\n");
3562                 return;
3563 #endif
3564
3565         RTE_ETH_FOREACH_DEV(portid)
3566         {
3567                 if (verbose == 1 || verbose > 2)
3568                         add_rx_dump_callbacks(portid);
3569                 else
3570                         remove_rx_dump_callbacks(portid);
3571                 if (verbose >= 2)
3572                         add_tx_dump_callbacks(portid);
3573                 else
3574                         remove_tx_dump_callbacks(portid);
3575         }
3576 }
3577
3578 void
3579 set_verbose_level(uint16_t vb_level)
3580 {
3581         printf("Change verbose level from %u to %u\n",
3582                (unsigned int) verbose_level, (unsigned int) vb_level);
3583         verbose_level = vb_level;
3584         configure_rxtx_dump_callbacks(verbose_level);
3585 }
3586
3587 void
3588 vlan_extend_set(portid_t port_id, int on)
3589 {
3590         int diag;
3591         int vlan_offload;
3592         uint64_t port_rx_offloads = ports[port_id].dev_conf.rxmode.offloads;
3593
3594         if (port_id_is_invalid(port_id, ENABLED_WARN))
3595                 return;
3596
3597         vlan_offload = rte_eth_dev_get_vlan_offload(port_id);
3598
3599         if (on) {
3600                 vlan_offload |= ETH_VLAN_EXTEND_OFFLOAD;
3601                 port_rx_offloads |= DEV_RX_OFFLOAD_VLAN_EXTEND;
3602         } else {
3603                 vlan_offload &= ~ETH_VLAN_EXTEND_OFFLOAD;
3604                 port_rx_offloads &= ~DEV_RX_OFFLOAD_VLAN_EXTEND;
3605         }
3606
3607         diag = rte_eth_dev_set_vlan_offload(port_id, vlan_offload);
3608         if (diag < 0) {
3609                 printf("rx_vlan_extend_set(port_pi=%d, on=%d) failed "
3610                "diag=%d\n", port_id, on, diag);
3611                 return;
3612         }
3613         ports[port_id].dev_conf.rxmode.offloads = port_rx_offloads;
3614 }
3615
3616 void
3617 rx_vlan_strip_set(portid_t port_id, int on)
3618 {
3619         int diag;
3620         int vlan_offload;
3621         uint64_t port_rx_offloads = ports[port_id].dev_conf.rxmode.offloads;
3622
3623         if (port_id_is_invalid(port_id, ENABLED_WARN))
3624                 return;
3625
3626         vlan_offload = rte_eth_dev_get_vlan_offload(port_id);
3627
3628         if (on) {
3629                 vlan_offload |= ETH_VLAN_STRIP_OFFLOAD;
3630                 port_rx_offloads |= DEV_RX_OFFLOAD_VLAN_STRIP;
3631         } else {
3632                 vlan_offload &= ~ETH_VLAN_STRIP_OFFLOAD;
3633                 port_rx_offloads &= ~DEV_RX_OFFLOAD_VLAN_STRIP;
3634         }
3635
3636         diag = rte_eth_dev_set_vlan_offload(port_id, vlan_offload);
3637         if (diag < 0) {
3638                 printf("rx_vlan_strip_set(port_pi=%d, on=%d) failed "
3639                "diag=%d\n", port_id, on, diag);
3640                 return;
3641         }
3642         ports[port_id].dev_conf.rxmode.offloads = port_rx_offloads;
3643 }
3644
3645 void
3646 rx_vlan_strip_set_on_queue(portid_t port_id, uint16_t queue_id, int on)
3647 {
3648         int diag;
3649
3650         if (port_id_is_invalid(port_id, ENABLED_WARN))
3651                 return;
3652
3653         diag = rte_eth_dev_set_vlan_strip_on_queue(port_id, queue_id, on);
3654         if (diag < 0)
3655                 printf("rx_vlan_strip_set_on_queue(port_pi=%d, queue_id=%d, on=%d) failed "
3656                "diag=%d\n", port_id, queue_id, on, diag);
3657 }
3658
3659 void
3660 rx_vlan_filter_set(portid_t port_id, int on)
3661 {
3662         int diag;
3663         int vlan_offload;
3664         uint64_t port_rx_offloads = ports[port_id].dev_conf.rxmode.offloads;
3665
3666         if (port_id_is_invalid(port_id, ENABLED_WARN))
3667                 return;
3668
3669         vlan_offload = rte_eth_dev_get_vlan_offload(port_id);
3670
3671         if (on) {
3672                 vlan_offload |= ETH_VLAN_FILTER_OFFLOAD;
3673                 port_rx_offloads |= DEV_RX_OFFLOAD_VLAN_FILTER;
3674         } else {
3675                 vlan_offload &= ~ETH_VLAN_FILTER_OFFLOAD;
3676                 port_rx_offloads &= ~DEV_RX_OFFLOAD_VLAN_FILTER;
3677         }
3678
3679         diag = rte_eth_dev_set_vlan_offload(port_id, vlan_offload);
3680         if (diag < 0) {
3681                 printf("rx_vlan_filter_set(port_pi=%d, on=%d) failed "
3682                "diag=%d\n", port_id, on, diag);
3683                 return;
3684         }
3685         ports[port_id].dev_conf.rxmode.offloads = port_rx_offloads;
3686 }
3687
3688 void
3689 rx_vlan_qinq_strip_set(portid_t port_id, int on)
3690 {
3691         int diag;
3692         int vlan_offload;
3693         uint64_t port_rx_offloads = ports[port_id].dev_conf.rxmode.offloads;
3694
3695         if (port_id_is_invalid(port_id, ENABLED_WARN))
3696                 return;
3697
3698         vlan_offload = rte_eth_dev_get_vlan_offload(port_id);
3699
3700         if (on) {
3701                 vlan_offload |= ETH_QINQ_STRIP_OFFLOAD;
3702                 port_rx_offloads |= DEV_RX_OFFLOAD_QINQ_STRIP;
3703         } else {
3704                 vlan_offload &= ~ETH_QINQ_STRIP_OFFLOAD;
3705                 port_rx_offloads &= ~DEV_RX_OFFLOAD_QINQ_STRIP;
3706         }
3707
3708         diag = rte_eth_dev_set_vlan_offload(port_id, vlan_offload);
3709         if (diag < 0) {
3710                 printf("%s(port_pi=%d, on=%d) failed "
3711                "diag=%d\n", __func__, port_id, on, diag);
3712                 return;
3713         }
3714         ports[port_id].dev_conf.rxmode.offloads = port_rx_offloads;
3715 }
3716
3717 int
3718 rx_vft_set(portid_t port_id, uint16_t vlan_id, int on)
3719 {
3720         int diag;
3721
3722         if (port_id_is_invalid(port_id, ENABLED_WARN))
3723                 return 1;
3724         if (vlan_id_is_invalid(vlan_id))
3725                 return 1;
3726         diag = rte_eth_dev_vlan_filter(port_id, vlan_id, on);
3727         if (diag == 0)
3728                 return 0;
3729         printf("rte_eth_dev_vlan_filter(port_pi=%d, vlan_id=%d, on=%d) failed "
3730                "diag=%d\n",
3731                port_id, vlan_id, on, diag);
3732         return -1;
3733 }
3734
3735 void
3736 rx_vlan_all_filter_set(portid_t port_id, int on)
3737 {
3738         uint16_t vlan_id;
3739
3740         if (port_id_is_invalid(port_id, ENABLED_WARN))
3741                 return;
3742         for (vlan_id = 0; vlan_id < 4096; vlan_id++) {
3743                 if (rx_vft_set(port_id, vlan_id, on))
3744                         break;
3745         }
3746 }
3747
3748 void
3749 vlan_tpid_set(portid_t port_id, enum rte_vlan_type vlan_type, uint16_t tp_id)
3750 {
3751         int diag;
3752
3753         if (port_id_is_invalid(port_id, ENABLED_WARN))
3754                 return;
3755
3756         diag = rte_eth_dev_set_vlan_ether_type(port_id, vlan_type, tp_id);
3757         if (diag == 0)
3758                 return;
3759
3760         printf("tx_vlan_tpid_set(port_pi=%d, vlan_type=%d, tpid=%d) failed "
3761                "diag=%d\n",
3762                port_id, vlan_type, tp_id, diag);
3763 }
3764
3765 void
3766 tx_vlan_set(portid_t port_id, uint16_t vlan_id)
3767 {
3768         struct rte_eth_dev_info dev_info;
3769         int ret;
3770
3771         if (vlan_id_is_invalid(vlan_id))
3772                 return;
3773
3774         if (ports[port_id].dev_conf.txmode.offloads &
3775             DEV_TX_OFFLOAD_QINQ_INSERT) {
3776                 printf("Error, as QinQ has been enabled.\n");
3777                 return;
3778         }
3779
3780         ret = eth_dev_info_get_print_err(port_id, &dev_info);
3781         if (ret != 0)
3782                 return;
3783
3784         if ((dev_info.tx_offload_capa & DEV_TX_OFFLOAD_VLAN_INSERT) == 0) {
3785                 printf("Error: vlan insert is not supported by port %d\n",
3786                         port_id);
3787                 return;
3788         }
3789
3790         tx_vlan_reset(port_id);
3791         ports[port_id].dev_conf.txmode.offloads |= DEV_TX_OFFLOAD_VLAN_INSERT;
3792         ports[port_id].tx_vlan_id = vlan_id;
3793 }
3794
3795 void
3796 tx_qinq_set(portid_t port_id, uint16_t vlan_id, uint16_t vlan_id_outer)
3797 {
3798         struct rte_eth_dev_info dev_info;
3799         int ret;
3800
3801         if (vlan_id_is_invalid(vlan_id))
3802                 return;
3803         if (vlan_id_is_invalid(vlan_id_outer))
3804                 return;
3805
3806         ret = eth_dev_info_get_print_err(port_id, &dev_info);
3807         if (ret != 0)
3808                 return;
3809
3810         if ((dev_info.tx_offload_capa & DEV_TX_OFFLOAD_QINQ_INSERT) == 0) {
3811                 printf("Error: qinq insert not supported by port %d\n",
3812                         port_id);
3813                 return;
3814         }
3815
3816         tx_vlan_reset(port_id);
3817         ports[port_id].dev_conf.txmode.offloads |= (DEV_TX_OFFLOAD_VLAN_INSERT |
3818                                                     DEV_TX_OFFLOAD_QINQ_INSERT);
3819         ports[port_id].tx_vlan_id = vlan_id;
3820         ports[port_id].tx_vlan_id_outer = vlan_id_outer;
3821 }
3822
3823 void
3824 tx_vlan_reset(portid_t port_id)
3825 {
3826         ports[port_id].dev_conf.txmode.offloads &=
3827                                 ~(DEV_TX_OFFLOAD_VLAN_INSERT |
3828                                   DEV_TX_OFFLOAD_QINQ_INSERT);
3829         ports[port_id].tx_vlan_id = 0;
3830         ports[port_id].tx_vlan_id_outer = 0;
3831 }
3832
3833 void
3834 tx_vlan_pvid_set(portid_t port_id, uint16_t vlan_id, int on)
3835 {
3836         if (port_id_is_invalid(port_id, ENABLED_WARN))
3837                 return;
3838
3839         rte_eth_dev_set_vlan_pvid(port_id, vlan_id, on);
3840 }
3841
3842 void
3843 set_qmap(portid_t port_id, uint8_t is_rx, uint16_t queue_id, uint8_t map_value)
3844 {
3845         uint16_t i;
3846         uint8_t existing_mapping_found = 0;
3847
3848         if (port_id_is_invalid(port_id, ENABLED_WARN))
3849                 return;
3850
3851         if (is_rx ? (rx_queue_id_is_invalid(queue_id)) : (tx_queue_id_is_invalid(queue_id)))
3852                 return;
3853
3854         if (map_value >= RTE_ETHDEV_QUEUE_STAT_CNTRS) {
3855                 printf("map_value not in required range 0..%d\n",
3856                                 RTE_ETHDEV_QUEUE_STAT_CNTRS - 1);
3857                 return;
3858         }
3859
3860         if (!is_rx) { /*then tx*/
3861                 for (i = 0; i < nb_tx_queue_stats_mappings; i++) {
3862                         if ((tx_queue_stats_mappings[i].port_id == port_id) &&
3863                             (tx_queue_stats_mappings[i].queue_id == queue_id)) {
3864                                 tx_queue_stats_mappings[i].stats_counter_id = map_value;
3865                                 existing_mapping_found = 1;
3866                                 break;
3867                         }
3868                 }
3869                 if (!existing_mapping_found) { /* A new additional mapping... */
3870                         tx_queue_stats_mappings[nb_tx_queue_stats_mappings].port_id = port_id;
3871                         tx_queue_stats_mappings[nb_tx_queue_stats_mappings].queue_id = queue_id;
3872                         tx_queue_stats_mappings[nb_tx_queue_stats_mappings].stats_counter_id = map_value;
3873                         nb_tx_queue_stats_mappings++;
3874                 }
3875         }
3876         else { /*rx*/
3877                 for (i = 0; i < nb_rx_queue_stats_mappings; i++) {
3878                         if ((rx_queue_stats_mappings[i].port_id == port_id) &&
3879                             (rx_queue_stats_mappings[i].queue_id == queue_id)) {
3880                                 rx_queue_stats_mappings[i].stats_counter_id = map_value;
3881                                 existing_mapping_found = 1;
3882                                 break;
3883                         }
3884                 }
3885                 if (!existing_mapping_found) { /* A new additional mapping... */
3886                         rx_queue_stats_mappings[nb_rx_queue_stats_mappings].port_id = port_id;
3887                         rx_queue_stats_mappings[nb_rx_queue_stats_mappings].queue_id = queue_id;
3888                         rx_queue_stats_mappings[nb_rx_queue_stats_mappings].stats_counter_id = map_value;
3889                         nb_rx_queue_stats_mappings++;
3890                 }
3891         }
3892 }
3893
3894 void
3895 set_xstats_hide_zero(uint8_t on_off)
3896 {
3897         xstats_hide_zero = on_off;
3898 }
3899
3900 void
3901 set_record_core_cycles(uint8_t on_off)
3902 {
3903         record_core_cycles = on_off;
3904 }
3905
3906 void
3907 set_record_burst_stats(uint8_t on_off)
3908 {
3909         record_burst_stats = on_off;
3910 }
3911
3912 static inline void
3913 print_fdir_mask(struct rte_eth_fdir_masks *mask)
3914 {
3915         printf("\n    vlan_tci: 0x%04x", rte_be_to_cpu_16(mask->vlan_tci_mask));
3916
3917         if (fdir_conf.mode == RTE_FDIR_MODE_PERFECT_TUNNEL)
3918                 printf(", mac_addr: 0x%02x, tunnel_type: 0x%01x,"
3919                         " tunnel_id: 0x%08x",
3920                         mask->mac_addr_byte_mask, mask->tunnel_type_mask,
3921                         rte_be_to_cpu_32(mask->tunnel_id_mask));
3922         else if (fdir_conf.mode != RTE_FDIR_MODE_PERFECT_MAC_VLAN) {
3923                 printf(", src_ipv4: 0x%08x, dst_ipv4: 0x%08x",
3924                         rte_be_to_cpu_32(mask->ipv4_mask.src_ip),
3925                         rte_be_to_cpu_32(mask->ipv4_mask.dst_ip));
3926
3927                 printf("\n    src_port: 0x%04x, dst_port: 0x%04x",
3928                         rte_be_to_cpu_16(mask->src_port_mask),
3929                         rte_be_to_cpu_16(mask->dst_port_mask));
3930
3931                 printf("\n    src_ipv6: 0x%08x,0x%08x,0x%08x,0x%08x",
3932                         rte_be_to_cpu_32(mask->ipv6_mask.src_ip[0]),
3933                         rte_be_to_cpu_32(mask->ipv6_mask.src_ip[1]),
3934                         rte_be_to_cpu_32(mask->ipv6_mask.src_ip[2]),
3935                         rte_be_to_cpu_32(mask->ipv6_mask.src_ip[3]));
3936
3937                 printf("\n    dst_ipv6: 0x%08x,0x%08x,0x%08x,0x%08x",
3938                         rte_be_to_cpu_32(mask->ipv6_mask.dst_ip[0]),
3939                         rte_be_to_cpu_32(mask->ipv6_mask.dst_ip[1]),
3940                         rte_be_to_cpu_32(mask->ipv6_mask.dst_ip[2]),
3941                         rte_be_to_cpu_32(mask->ipv6_mask.dst_ip[3]));
3942         }
3943
3944         printf("\n");
3945 }
3946
3947 static inline void
3948 print_fdir_flex_payload(struct rte_eth_fdir_flex_conf *flex_conf, uint32_t num)
3949 {
3950         struct rte_eth_flex_payload_cfg *cfg;
3951         uint32_t i, j;
3952
3953         for (i = 0; i < flex_conf->nb_payloads; i++) {
3954                 cfg = &flex_conf->flex_set[i];
3955                 if (cfg->type == RTE_ETH_RAW_PAYLOAD)
3956                         printf("\n    RAW:  ");
3957                 else if (cfg->type == RTE_ETH_L2_PAYLOAD)
3958                         printf("\n    L2_PAYLOAD:  ");
3959                 else if (cfg->type == RTE_ETH_L3_PAYLOAD)
3960                         printf("\n    L3_PAYLOAD:  ");
3961                 else if (cfg->type == RTE_ETH_L4_PAYLOAD)
3962                         printf("\n    L4_PAYLOAD:  ");
3963                 else
3964                         printf("\n    UNKNOWN PAYLOAD(%u):  ", cfg->type);
3965                 for (j = 0; j < num; j++)
3966                         printf("  %-5u", cfg->src_offset[j]);
3967         }
3968         printf("\n");
3969 }
3970
3971 static char *
3972 flowtype_to_str(uint16_t flow_type)
3973 {
3974         struct flow_type_info {
3975                 char str[32];
3976                 uint16_t ftype;
3977         };
3978
3979         uint8_t i;
3980         static struct flow_type_info flowtype_str_table[] = {
3981                 {"raw", RTE_ETH_FLOW_RAW},
3982                 {"ipv4", RTE_ETH_FLOW_IPV4},
3983                 {"ipv4-frag", RTE_ETH_FLOW_FRAG_IPV4},
3984                 {"ipv4-tcp", RTE_ETH_FLOW_NONFRAG_IPV4_TCP},
3985                 {"ipv4-udp", RTE_ETH_FLOW_NONFRAG_IPV4_UDP},
3986                 {"ipv4-sctp", RTE_ETH_FLOW_NONFRAG_IPV4_SCTP},
3987                 {"ipv4-other", RTE_ETH_FLOW_NONFRAG_IPV4_OTHER},
3988                 {"ipv6", RTE_ETH_FLOW_IPV6},
3989                 {"ipv6-frag", RTE_ETH_FLOW_FRAG_IPV6},
3990                 {"ipv6-tcp", RTE_ETH_FLOW_NONFRAG_IPV6_TCP},
3991                 {"ipv6-udp", RTE_ETH_FLOW_NONFRAG_IPV6_UDP},
3992                 {"ipv6-sctp", RTE_ETH_FLOW_NONFRAG_IPV6_SCTP},
3993                 {"ipv6-other", RTE_ETH_FLOW_NONFRAG_IPV6_OTHER},
3994                 {"l2_payload", RTE_ETH_FLOW_L2_PAYLOAD},
3995                 {"port", RTE_ETH_FLOW_PORT},
3996                 {"vxlan", RTE_ETH_FLOW_VXLAN},
3997                 {"geneve", RTE_ETH_FLOW_GENEVE},
3998                 {"nvgre", RTE_ETH_FLOW_NVGRE},
3999                 {"vxlan-gpe", RTE_ETH_FLOW_VXLAN_GPE},
4000         };
4001
4002         for (i = 0; i < RTE_DIM(flowtype_str_table); i++) {
4003                 if (flowtype_str_table[i].ftype == flow_type)
4004                         return flowtype_str_table[i].str;
4005         }
4006
4007         return NULL;
4008 }
4009
4010 static inline void
4011 print_fdir_flex_mask(struct rte_eth_fdir_flex_conf *flex_conf, uint32_t num)
4012 {
4013         struct rte_eth_fdir_flex_mask *mask;
4014         uint32_t i, j;
4015         char *p;
4016
4017         for (i = 0; i < flex_conf->nb_flexmasks; i++) {
4018                 mask = &flex_conf->flex_mask[i];
4019                 p = flowtype_to_str(mask->flow_type);
4020                 printf("\n    %s:\t", p ? p : "unknown");
4021                 for (j = 0; j < num; j++)
4022                         printf(" %02x", mask->mask[j]);
4023         }
4024         printf("\n");
4025 }
4026
4027 static inline void
4028 print_fdir_flow_type(uint32_t flow_types_mask)
4029 {
4030         int i;
4031         char *p;
4032
4033         for (i = RTE_ETH_FLOW_UNKNOWN; i < RTE_ETH_FLOW_MAX; i++) {
4034                 if (!(flow_types_mask & (1 << i)))
4035                         continue;
4036                 p = flowtype_to_str(i);
4037                 if (p)
4038                         printf(" %s", p);
4039                 else
4040                         printf(" unknown");
4041         }
4042         printf("\n");
4043 }
4044
4045 static int
4046 get_fdir_info(portid_t port_id, struct rte_eth_fdir_info *fdir_info,
4047                     struct rte_eth_fdir_stats *fdir_stat)
4048 {
4049         int ret;
4050
4051         ret = rte_eth_dev_filter_supported(port_id, RTE_ETH_FILTER_FDIR);
4052         if (!ret) {
4053                 rte_eth_dev_filter_ctrl(port_id, RTE_ETH_FILTER_FDIR,
4054                                RTE_ETH_FILTER_INFO, fdir_info);
4055                 rte_eth_dev_filter_ctrl(port_id, RTE_ETH_FILTER_FDIR,
4056                                RTE_ETH_FILTER_STATS, fdir_stat);
4057                 return 0;
4058         }
4059
4060 #ifdef RTE_LIBRTE_I40E_PMD
4061         if (ret == -ENOTSUP) {
4062                 ret = rte_pmd_i40e_get_fdir_info(port_id, fdir_info);
4063                 if (!ret)
4064                         ret = rte_pmd_i40e_get_fdir_stats(port_id, fdir_stat);
4065         }
4066 #endif
4067 #ifdef RTE_LIBRTE_IXGBE_PMD
4068         if (ret == -ENOTSUP) {
4069                 ret = rte_pmd_ixgbe_get_fdir_info(port_id, fdir_info);
4070                 if (!ret)
4071                         ret = rte_pmd_ixgbe_get_fdir_stats(port_id, fdir_stat);
4072         }
4073 #endif
4074         switch (ret) {
4075         case 0:
4076                 break;
4077         case -ENOTSUP:
4078                 printf("\n FDIR is not supported on port %-2d\n",
4079                         port_id);
4080                 break;
4081         default:
4082                 printf("programming error: (%s)\n", strerror(-ret));
4083                 break;
4084         }
4085         return ret;
4086 }
4087
4088 void
4089 fdir_get_infos(portid_t port_id)
4090 {
4091         struct rte_eth_fdir_stats fdir_stat;
4092         struct rte_eth_fdir_info fdir_info;
4093
4094         static const char *fdir_stats_border = "########################";
4095
4096         if (port_id_is_invalid(port_id, ENABLED_WARN))
4097                 return;
4098
4099         memset(&fdir_info, 0, sizeof(fdir_info));
4100         memset(&fdir_stat, 0, sizeof(fdir_stat));
4101         if (get_fdir_info(port_id, &fdir_info, &fdir_stat))
4102                 return;
4103
4104         printf("\n  %s FDIR infos for port %-2d     %s\n",
4105                fdir_stats_border, port_id, fdir_stats_border);
4106         printf("  MODE: ");
4107         if (fdir_info.mode == RTE_FDIR_MODE_PERFECT)
4108                 printf("  PERFECT\n");
4109         else if (fdir_info.mode == RTE_FDIR_MODE_PERFECT_MAC_VLAN)
4110                 printf("  PERFECT-MAC-VLAN\n");
4111         else if (fdir_info.mode == RTE_FDIR_MODE_PERFECT_TUNNEL)
4112                 printf("  PERFECT-TUNNEL\n");
4113         else if (fdir_info.mode == RTE_FDIR_MODE_SIGNATURE)
4114                 printf("  SIGNATURE\n");
4115         else
4116                 printf("  DISABLE\n");
4117         if (fdir_info.mode != RTE_FDIR_MODE_PERFECT_MAC_VLAN
4118                 && fdir_info.mode != RTE_FDIR_MODE_PERFECT_TUNNEL) {
4119                 printf("  SUPPORTED FLOW TYPE: ");
4120                 print_fdir_flow_type(fdir_info.flow_types_mask[0]);
4121         }
4122         printf("  FLEX PAYLOAD INFO:\n");
4123         printf("  max_len:       %-10"PRIu32"  payload_limit: %-10"PRIu32"\n"
4124                "  payload_unit:  %-10"PRIu32"  payload_seg:   %-10"PRIu32"\n"
4125                "  bitmask_unit:  %-10"PRIu32"  bitmask_num:   %-10"PRIu32"\n",
4126                 fdir_info.max_flexpayload, fdir_info.flex_payload_limit,
4127                 fdir_info.flex_payload_unit,
4128                 fdir_info.max_flex_payload_segment_num,
4129                 fdir_info.flex_bitmask_unit, fdir_info.max_flex_bitmask_num);
4130         printf("  MASK: ");
4131         print_fdir_mask(&fdir_info.mask);
4132         if (fdir_info.flex_conf.nb_payloads > 0) {
4133                 printf("  FLEX PAYLOAD SRC OFFSET:");
4134                 print_fdir_flex_payload(&fdir_info.flex_conf, fdir_info.max_flexpayload);
4135         }
4136         if (fdir_info.flex_conf.nb_flexmasks > 0) {
4137                 printf("  FLEX MASK CFG:");
4138                 print_fdir_flex_mask(&fdir_info.flex_conf, fdir_info.max_flexpayload);
4139         }
4140         printf("  guarant_count: %-10"PRIu32"  best_count:    %"PRIu32"\n",
4141                fdir_stat.guarant_cnt, fdir_stat.best_cnt);
4142         printf("  guarant_space: %-10"PRIu32"  best_space:    %"PRIu32"\n",
4143                fdir_info.guarant_spc, fdir_info.best_spc);
4144         printf("  collision:     %-10"PRIu32"  free:          %"PRIu32"\n"
4145                "  maxhash:       %-10"PRIu32"  maxlen:        %"PRIu32"\n"
4146                "  add:           %-10"PRIu64"  remove:        %"PRIu64"\n"
4147                "  f_add:         %-10"PRIu64"  f_remove:      %"PRIu64"\n",
4148                fdir_stat.collision, fdir_stat.free,
4149                fdir_stat.maxhash, fdir_stat.maxlen,
4150                fdir_stat.add, fdir_stat.remove,
4151                fdir_stat.f_add, fdir_stat.f_remove);
4152         printf("  %s############################%s\n",
4153                fdir_stats_border, fdir_stats_border);
4154 }
4155
4156 void
4157 fdir_set_flex_mask(portid_t port_id, struct rte_eth_fdir_flex_mask *cfg)
4158 {
4159         struct rte_port *port;
4160         struct rte_eth_fdir_flex_conf *flex_conf;
4161         int i, idx = 0;
4162
4163         port = &ports[port_id];
4164         flex_conf = &port->dev_conf.fdir_conf.flex_conf;
4165         for (i = 0; i < RTE_ETH_FLOW_MAX; i++) {
4166                 if (cfg->flow_type == flex_conf->flex_mask[i].flow_type) {
4167                         idx = i;
4168                         break;
4169                 }
4170         }
4171         if (i >= RTE_ETH_FLOW_MAX) {
4172                 if (flex_conf->nb_flexmasks < RTE_DIM(flex_conf->flex_mask)) {
4173                         idx = flex_conf->nb_flexmasks;
4174                         flex_conf->nb_flexmasks++;
4175                 } else {
4176                         printf("The flex mask table is full. Can not set flex"
4177                                 " mask for flow_type(%u).", cfg->flow_type);
4178                         return;
4179                 }
4180         }
4181         rte_memcpy(&flex_conf->flex_mask[idx],
4182                          cfg,
4183                          sizeof(struct rte_eth_fdir_flex_mask));
4184 }
4185
4186 void
4187 fdir_set_flex_payload(portid_t port_id, struct rte_eth_flex_payload_cfg *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_PAYLOAD_MAX; i++) {
4196                 if (cfg->type == flex_conf->flex_set[i].type) {
4197                         idx = i;
4198                         break;
4199                 }
4200         }
4201         if (i >= RTE_ETH_PAYLOAD_MAX) {
4202                 if (flex_conf->nb_payloads < RTE_DIM(flex_conf->flex_set)) {
4203                         idx = flex_conf->nb_payloads;
4204                         flex_conf->nb_payloads++;
4205                 } else {
4206                         printf("The flex payload table is full. Can not set"
4207                                 " flex payload for type(%u).", cfg->type);
4208                         return;
4209                 }
4210         }
4211         rte_memcpy(&flex_conf->flex_set[idx],
4212                          cfg,
4213                          sizeof(struct rte_eth_flex_payload_cfg));
4214
4215 }
4216
4217 void
4218 set_vf_traffic(portid_t port_id, uint8_t is_rx, uint16_t vf, uint8_t on)
4219 {
4220 #ifdef RTE_LIBRTE_IXGBE_PMD
4221         int diag;
4222
4223         if (is_rx)
4224                 diag = rte_pmd_ixgbe_set_vf_rx(port_id, vf, on);
4225         else
4226                 diag = rte_pmd_ixgbe_set_vf_tx(port_id, vf, on);
4227
4228         if (diag == 0)
4229                 return;
4230         printf("rte_pmd_ixgbe_set_vf_%s for port_id=%d failed diag=%d\n",
4231                         is_rx ? "rx" : "tx", port_id, diag);
4232         return;
4233 #endif
4234         printf("VF %s setting not supported for port %d\n",
4235                         is_rx ? "Rx" : "Tx", port_id);
4236         RTE_SET_USED(vf);
4237         RTE_SET_USED(on);
4238 }
4239
4240 int
4241 set_queue_rate_limit(portid_t port_id, uint16_t queue_idx, uint16_t rate)
4242 {
4243         int diag;
4244         struct rte_eth_link link;
4245         int ret;
4246
4247         if (port_id_is_invalid(port_id, ENABLED_WARN))
4248                 return 1;
4249         ret = eth_link_get_nowait_print_err(port_id, &link);
4250         if (ret < 0)
4251                 return 1;
4252         if (link.link_speed != ETH_SPEED_NUM_UNKNOWN &&
4253             rate > link.link_speed) {
4254                 printf("Invalid rate value:%u bigger than link speed: %u\n",
4255                         rate, link.link_speed);
4256                 return 1;
4257         }
4258         diag = rte_eth_set_queue_rate_limit(port_id, queue_idx, rate);
4259         if (diag == 0)
4260                 return diag;
4261         printf("rte_eth_set_queue_rate_limit for port_id=%d failed diag=%d\n",
4262                 port_id, diag);
4263         return diag;
4264 }
4265
4266 int
4267 set_vf_rate_limit(portid_t port_id, uint16_t vf, uint16_t rate, uint64_t q_msk)
4268 {
4269         int diag = -ENOTSUP;
4270
4271         RTE_SET_USED(vf);
4272         RTE_SET_USED(rate);
4273         RTE_SET_USED(q_msk);
4274
4275 #ifdef RTE_LIBRTE_IXGBE_PMD
4276         if (diag == -ENOTSUP)
4277                 diag = rte_pmd_ixgbe_set_vf_rate_limit(port_id, vf, rate,
4278                                                        q_msk);
4279 #endif
4280 #ifdef RTE_LIBRTE_BNXT_PMD
4281         if (diag == -ENOTSUP)
4282                 diag = rte_pmd_bnxt_set_vf_rate_limit(port_id, vf, rate, q_msk);
4283 #endif
4284         if (diag == 0)
4285                 return diag;
4286
4287         printf("set_vf_rate_limit for port_id=%d failed diag=%d\n",
4288                 port_id, diag);
4289         return diag;
4290 }
4291
4292 /*
4293  * Functions to manage the set of filtered Multicast MAC addresses.
4294  *
4295  * A pool of filtered multicast MAC addresses is associated with each port.
4296  * The pool is allocated in chunks of MCAST_POOL_INC multicast addresses.
4297  * The address of the pool and the number of valid multicast MAC addresses
4298  * recorded in the pool are stored in the fields "mc_addr_pool" and
4299  * "mc_addr_nb" of the "rte_port" data structure.
4300  *
4301  * The function "rte_eth_dev_set_mc_addr_list" of the PMDs API imposes
4302  * to be supplied a contiguous array of multicast MAC addresses.
4303  * To comply with this constraint, the set of multicast addresses recorded
4304  * into the pool are systematically compacted at the beginning of the pool.
4305  * Hence, when a multicast address is removed from the pool, all following
4306  * addresses, if any, are copied back to keep the set contiguous.
4307  */
4308 #define MCAST_POOL_INC 32
4309
4310 static int
4311 mcast_addr_pool_extend(struct rte_port *port)
4312 {
4313         struct rte_ether_addr *mc_pool;
4314         size_t mc_pool_size;
4315
4316         /*
4317          * If a free entry is available at the end of the pool, just
4318          * increment the number of recorded multicast addresses.
4319          */
4320         if ((port->mc_addr_nb % MCAST_POOL_INC) != 0) {
4321                 port->mc_addr_nb++;
4322                 return 0;
4323         }
4324
4325         /*
4326          * [re]allocate a pool with MCAST_POOL_INC more entries.
4327          * The previous test guarantees that port->mc_addr_nb is a multiple
4328          * of MCAST_POOL_INC.
4329          */
4330         mc_pool_size = sizeof(struct rte_ether_addr) * (port->mc_addr_nb +
4331                                                     MCAST_POOL_INC);
4332         mc_pool = (struct rte_ether_addr *) realloc(port->mc_addr_pool,
4333                                                 mc_pool_size);
4334         if (mc_pool == NULL) {
4335                 printf("allocation of pool of %u multicast addresses failed\n",
4336                        port->mc_addr_nb + MCAST_POOL_INC);
4337                 return -ENOMEM;
4338         }
4339
4340         port->mc_addr_pool = mc_pool;
4341         port->mc_addr_nb++;
4342         return 0;
4343
4344 }
4345
4346 static void
4347 mcast_addr_pool_append(struct rte_port *port, struct rte_ether_addr *mc_addr)
4348 {
4349         if (mcast_addr_pool_extend(port) != 0)
4350                 return;
4351         rte_ether_addr_copy(mc_addr, &port->mc_addr_pool[port->mc_addr_nb - 1]);
4352 }
4353
4354 static void
4355 mcast_addr_pool_remove(struct rte_port *port, uint32_t addr_idx)
4356 {
4357         port->mc_addr_nb--;
4358         if (addr_idx == port->mc_addr_nb) {
4359                 /* No need to recompact the set of multicast addressses. */
4360                 if (port->mc_addr_nb == 0) {
4361                         /* free the pool of multicast addresses. */
4362                         free(port->mc_addr_pool);
4363                         port->mc_addr_pool = NULL;
4364                 }
4365                 return;
4366         }
4367         memmove(&port->mc_addr_pool[addr_idx],
4368                 &port->mc_addr_pool[addr_idx + 1],
4369                 sizeof(struct rte_ether_addr) * (port->mc_addr_nb - addr_idx));
4370 }
4371
4372 static int
4373 eth_port_multicast_addr_list_set(portid_t port_id)
4374 {
4375         struct rte_port *port;
4376         int diag;
4377
4378         port = &ports[port_id];
4379         diag = rte_eth_dev_set_mc_addr_list(port_id, port->mc_addr_pool,
4380                                             port->mc_addr_nb);
4381         if (diag < 0)
4382                 printf("rte_eth_dev_set_mc_addr_list(port=%d, nb=%u) failed. diag=%d\n",
4383                         port_id, port->mc_addr_nb, diag);
4384
4385         return diag;
4386 }
4387
4388 void
4389 mcast_addr_add(portid_t port_id, struct rte_ether_addr *mc_addr)
4390 {
4391         struct rte_port *port;
4392         uint32_t i;
4393
4394         if (port_id_is_invalid(port_id, ENABLED_WARN))
4395                 return;
4396
4397         port = &ports[port_id];
4398
4399         /*
4400          * Check that the added multicast MAC address is not already recorded
4401          * in the pool of multicast addresses.
4402          */
4403         for (i = 0; i < port->mc_addr_nb; i++) {
4404                 if (rte_is_same_ether_addr(mc_addr, &port->mc_addr_pool[i])) {
4405                         printf("multicast address already filtered by port\n");
4406                         return;
4407                 }
4408         }
4409
4410         mcast_addr_pool_append(port, mc_addr);
4411         if (eth_port_multicast_addr_list_set(port_id) < 0)
4412                 /* Rollback on failure, remove the address from the pool */
4413                 mcast_addr_pool_remove(port, i);
4414 }
4415
4416 void
4417 mcast_addr_remove(portid_t port_id, struct rte_ether_addr *mc_addr)
4418 {
4419         struct rte_port *port;
4420         uint32_t i;
4421
4422         if (port_id_is_invalid(port_id, ENABLED_WARN))
4423                 return;
4424
4425         port = &ports[port_id];
4426
4427         /*
4428          * Search the pool of multicast MAC addresses for the removed address.
4429          */
4430         for (i = 0; i < port->mc_addr_nb; i++) {
4431                 if (rte_is_same_ether_addr(mc_addr, &port->mc_addr_pool[i]))
4432                         break;
4433         }
4434         if (i == port->mc_addr_nb) {
4435                 printf("multicast address not filtered by port %d\n", port_id);
4436                 return;
4437         }
4438
4439         mcast_addr_pool_remove(port, i);
4440         if (eth_port_multicast_addr_list_set(port_id) < 0)
4441                 /* Rollback on failure, add the address back into the pool */
4442                 mcast_addr_pool_append(port, mc_addr);
4443 }
4444
4445 void
4446 port_dcb_info_display(portid_t port_id)
4447 {
4448         struct rte_eth_dcb_info dcb_info;
4449         uint16_t i;
4450         int ret;
4451         static const char *border = "================";
4452
4453         if (port_id_is_invalid(port_id, ENABLED_WARN))
4454                 return;
4455
4456         ret = rte_eth_dev_get_dcb_info(port_id, &dcb_info);
4457         if (ret) {
4458                 printf("\n Failed to get dcb infos on port %-2d\n",
4459                         port_id);
4460                 return;
4461         }
4462         printf("\n  %s DCB infos for port %-2d  %s\n", border, port_id, border);
4463         printf("  TC NUMBER: %d\n", dcb_info.nb_tcs);
4464         printf("\n  TC :        ");
4465         for (i = 0; i < dcb_info.nb_tcs; i++)
4466                 printf("\t%4d", i);
4467         printf("\n  Priority :  ");
4468         for (i = 0; i < dcb_info.nb_tcs; i++)
4469                 printf("\t%4d", dcb_info.prio_tc[i]);
4470         printf("\n  BW percent :");
4471         for (i = 0; i < dcb_info.nb_tcs; i++)
4472                 printf("\t%4d%%", dcb_info.tc_bws[i]);
4473         printf("\n  RXQ base :  ");
4474         for (i = 0; i < dcb_info.nb_tcs; i++)
4475                 printf("\t%4d", dcb_info.tc_queue.tc_rxq[0][i].base);
4476         printf("\n  RXQ number :");
4477         for (i = 0; i < dcb_info.nb_tcs; i++)
4478                 printf("\t%4d", dcb_info.tc_queue.tc_rxq[0][i].nb_queue);
4479         printf("\n  TXQ base :  ");
4480         for (i = 0; i < dcb_info.nb_tcs; i++)
4481                 printf("\t%4d", dcb_info.tc_queue.tc_txq[0][i].base);
4482         printf("\n  TXQ number :");
4483         for (i = 0; i < dcb_info.nb_tcs; i++)
4484                 printf("\t%4d", dcb_info.tc_queue.tc_txq[0][i].nb_queue);
4485         printf("\n");
4486 }
4487
4488 uint8_t *
4489 open_file(const char *file_path, uint32_t *size)
4490 {
4491         int fd = open(file_path, O_RDONLY);
4492         off_t pkg_size;
4493         uint8_t *buf = NULL;
4494         int ret = 0;
4495         struct stat st_buf;
4496
4497         if (size)
4498                 *size = 0;
4499
4500         if (fd == -1) {
4501                 printf("%s: Failed to open %s\n", __func__, file_path);
4502                 return buf;
4503         }
4504
4505         if ((fstat(fd, &st_buf) != 0) || (!S_ISREG(st_buf.st_mode))) {
4506                 close(fd);
4507                 printf("%s: File operations failed\n", __func__);
4508                 return buf;
4509         }
4510
4511         pkg_size = st_buf.st_size;
4512         if (pkg_size < 0) {
4513                 close(fd);
4514                 printf("%s: File operations failed\n", __func__);
4515                 return buf;
4516         }
4517
4518         buf = (uint8_t *)malloc(pkg_size);
4519         if (!buf) {
4520                 close(fd);
4521                 printf("%s: Failed to malloc memory\n", __func__);
4522                 return buf;
4523         }
4524
4525         ret = read(fd, buf, pkg_size);
4526         if (ret < 0) {
4527                 close(fd);
4528                 printf("%s: File read operation failed\n", __func__);
4529                 close_file(buf);
4530                 return NULL;
4531         }
4532
4533         if (size)
4534                 *size = pkg_size;
4535
4536         close(fd);
4537
4538         return buf;
4539 }
4540
4541 int
4542 save_file(const char *file_path, uint8_t *buf, uint32_t size)
4543 {
4544         FILE *fh = fopen(file_path, "wb");
4545
4546         if (fh == NULL) {
4547                 printf("%s: Failed to open %s\n", __func__, file_path);
4548                 return -1;
4549         }
4550
4551         if (fwrite(buf, 1, size, fh) != size) {
4552                 fclose(fh);
4553                 printf("%s: File write operation failed\n", __func__);
4554                 return -1;
4555         }
4556
4557         fclose(fh);
4558
4559         return 0;
4560 }
4561
4562 int
4563 close_file(uint8_t *buf)
4564 {
4565         if (buf) {
4566                 free((void *)buf);
4567                 return 0;
4568         }
4569
4570         return -1;
4571 }
4572
4573 void
4574 port_queue_region_info_display(portid_t port_id, void *buf)
4575 {
4576 #ifdef RTE_LIBRTE_I40E_PMD
4577         uint16_t i, j;
4578         struct rte_pmd_i40e_queue_regions *info =
4579                 (struct rte_pmd_i40e_queue_regions *)buf;
4580         static const char *queue_region_info_stats_border = "-------";
4581
4582         if (!info->queue_region_number)
4583                 printf("there is no region has been set before");
4584
4585         printf("\n      %s All queue region info for port=%2d %s",
4586                         queue_region_info_stats_border, port_id,
4587                         queue_region_info_stats_border);
4588         printf("\n      queue_region_number: %-14u \n",
4589                         info->queue_region_number);
4590
4591         for (i = 0; i < info->queue_region_number; i++) {
4592                 printf("\n      region_id: %-14u queue_number: %-14u "
4593                         "queue_start_index: %-14u \n",
4594                         info->region[i].region_id,
4595                         info->region[i].queue_num,
4596                         info->region[i].queue_start_index);
4597
4598                 printf("  user_priority_num is  %-14u :",
4599                                         info->region[i].user_priority_num);
4600                 for (j = 0; j < info->region[i].user_priority_num; j++)
4601                         printf(" %-14u ", info->region[i].user_priority[j]);
4602
4603                 printf("\n      flowtype_num is  %-14u :",
4604                                 info->region[i].flowtype_num);
4605                 for (j = 0; j < info->region[i].flowtype_num; j++)
4606                         printf(" %-14u ", info->region[i].hw_flowtype[j]);
4607         }
4608 #else
4609         RTE_SET_USED(port_id);
4610         RTE_SET_USED(buf);
4611 #endif
4612
4613         printf("\n\n");
4614 }
4615
4616 void
4617 show_macs(portid_t port_id)
4618 {
4619         char buf[RTE_ETHER_ADDR_FMT_SIZE];
4620         struct rte_eth_dev_info dev_info;
4621         struct rte_ether_addr *addr;
4622         uint32_t i, num_macs = 0;
4623         struct rte_eth_dev *dev;
4624
4625         dev = &rte_eth_devices[port_id];
4626
4627         rte_eth_dev_info_get(port_id, &dev_info);
4628
4629         for (i = 0; i < dev_info.max_mac_addrs; i++) {
4630                 addr = &dev->data->mac_addrs[i];
4631
4632                 /* skip zero address */
4633                 if (rte_is_zero_ether_addr(addr))
4634                         continue;
4635
4636                 num_macs++;
4637         }
4638
4639         printf("Number of MAC address added: %d\n", num_macs);
4640
4641         for (i = 0; i < dev_info.max_mac_addrs; i++) {
4642                 addr = &dev->data->mac_addrs[i];
4643
4644                 /* skip zero address */
4645                 if (rte_is_zero_ether_addr(addr))
4646                         continue;
4647
4648                 rte_ether_format_addr(buf, RTE_ETHER_ADDR_FMT_SIZE, addr);
4649                 printf("  %s\n", buf);
4650         }
4651 }
4652
4653 void
4654 show_mcast_macs(portid_t port_id)
4655 {
4656         char buf[RTE_ETHER_ADDR_FMT_SIZE];
4657         struct rte_ether_addr *addr;
4658         struct rte_port *port;
4659         uint32_t i;
4660
4661         port = &ports[port_id];
4662
4663         printf("Number of Multicast MAC address added: %d\n", port->mc_addr_nb);
4664
4665         for (i = 0; i < port->mc_addr_nb; i++) {
4666                 addr = &port->mc_addr_pool[i];
4667
4668                 rte_ether_format_addr(buf, RTE_ETHER_ADDR_FMT_SIZE, addr);
4669                 printf("  %s\n", buf);
4670         }
4671 }