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