xref: /dpdk/app/test-pmd/cmdline.c (revision 36735a932ca7eed41f86393f80cc8379fc74b6f5)
1 /*-
2  *   BSD LICENSE
3  *
4  *   Copyright(c) 2010-2016 Intel Corporation. All rights reserved.
5  *   Copyright(c) 2014 6WIND S.A.
6  *   All rights reserved.
7  *
8  *   Redistribution and use in source and binary forms, with or without
9  *   modification, are permitted provided that the following conditions
10  *   are met:
11  *
12  *     * Redistributions of source code must retain the above copyright
13  *       notice, this list of conditions and the following disclaimer.
14  *     * Redistributions in binary form must reproduce the above copyright
15  *       notice, this list of conditions and the following disclaimer in
16  *       the documentation and/or other materials provided with the
17  *       distribution.
18  *     * Neither the name of Intel Corporation nor the names of its
19  *       contributors may be used to endorse or promote products derived
20  *       from this software without specific prior written permission.
21  *
22  *   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
23  *   "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
24  *   LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
25  *   A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
26  *   OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
27  *   SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
28  *   LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
29  *   DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
30  *   THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
31  *   (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
32  *   OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
33  */
34 
35 #include <stdarg.h>
36 #include <errno.h>
37 #include <stdio.h>
38 #include <stdint.h>
39 #include <stdarg.h>
40 #include <string.h>
41 #include <termios.h>
42 #include <unistd.h>
43 #include <inttypes.h>
44 #ifndef __linux__
45 #ifndef __FreeBSD__
46 #include <net/socket.h>
47 #else
48 #include <sys/socket.h>
49 #endif
50 #endif
51 #include <netinet/in.h>
52 
53 #include <sys/queue.h>
54 
55 #include <rte_common.h>
56 #include <rte_byteorder.h>
57 #include <rte_log.h>
58 #include <rte_debug.h>
59 #include <rte_cycles.h>
60 #include <rte_memory.h>
61 #include <rte_memzone.h>
62 #include <rte_malloc.h>
63 #include <rte_launch.h>
64 #include <rte_eal.h>
65 #include <rte_per_lcore.h>
66 #include <rte_lcore.h>
67 #include <rte_atomic.h>
68 #include <rte_branch_prediction.h>
69 #include <rte_ring.h>
70 #include <rte_mempool.h>
71 #include <rte_interrupts.h>
72 #include <rte_pci.h>
73 #include <rte_ether.h>
74 #include <rte_ethdev.h>
75 #include <rte_string_fns.h>
76 #include <rte_devargs.h>
77 #include <rte_eth_ctrl.h>
78 #include <rte_flow.h>
79 
80 #include <cmdline_rdline.h>
81 #include <cmdline_parse.h>
82 #include <cmdline_parse_num.h>
83 #include <cmdline_parse_string.h>
84 #include <cmdline_parse_ipaddr.h>
85 #include <cmdline_parse_etheraddr.h>
86 #include <cmdline_socket.h>
87 #include <cmdline.h>
88 #ifdef RTE_LIBRTE_PMD_BOND
89 #include <rte_eth_bond.h>
90 #endif
91 #ifdef RTE_LIBRTE_IXGBE_PMD
92 #include <rte_pmd_ixgbe.h>
93 #endif
94 #ifdef RTE_LIBRTE_I40E_PMD
95 #include <rte_pmd_i40e.h>
96 #endif
97 #ifdef RTE_LIBRTE_BNXT_PMD
98 #include <rte_pmd_bnxt.h>
99 #endif
100 #include "testpmd.h"
101 
102 static struct cmdline *testpmd_cl;
103 
104 static void cmd_reconfig_device_queue(portid_t id, uint8_t dev, uint8_t queue);
105 
106 /* *** Help command with introduction. *** */
107 struct cmd_help_brief_result {
108 	cmdline_fixed_string_t help;
109 };
110 
111 static void cmd_help_brief_parsed(__attribute__((unused)) void *parsed_result,
112                                   struct cmdline *cl,
113                                   __attribute__((unused)) void *data)
114 {
115 	cmdline_printf(
116 		cl,
117 		"\n"
118 		"Help is available for the following sections:\n\n"
119 		"    help control    : Start and stop forwarding.\n"
120 		"    help display    : Displaying port, stats and config "
121 		"information.\n"
122 		"    help config     : Configuration information.\n"
123 		"    help ports      : Configuring ports.\n"
124 		"    help registers  : Reading and setting port registers.\n"
125 		"    help filters    : Filters configuration help.\n"
126 		"    help all        : All of the above sections.\n\n"
127 	);
128 
129 }
130 
131 cmdline_parse_token_string_t cmd_help_brief_help =
132 	TOKEN_STRING_INITIALIZER(struct cmd_help_brief_result, help, "help");
133 
134 cmdline_parse_inst_t cmd_help_brief = {
135 	.f = cmd_help_brief_parsed,
136 	.data = NULL,
137 	.help_str = "help: Show help",
138 	.tokens = {
139 		(void *)&cmd_help_brief_help,
140 		NULL,
141 	},
142 };
143 
144 /* *** Help command with help sections. *** */
145 struct cmd_help_long_result {
146 	cmdline_fixed_string_t help;
147 	cmdline_fixed_string_t section;
148 };
149 
150 static void cmd_help_long_parsed(void *parsed_result,
151                                  struct cmdline *cl,
152                                  __attribute__((unused)) void *data)
153 {
154 	int show_all = 0;
155 	struct cmd_help_long_result *res = parsed_result;
156 
157 	if (!strcmp(res->section, "all"))
158 		show_all = 1;
159 
160 	if (show_all || !strcmp(res->section, "control")) {
161 
162 		cmdline_printf(
163 			cl,
164 			"\n"
165 			"Control forwarding:\n"
166 			"-------------------\n\n"
167 
168 			"start\n"
169 			"    Start packet forwarding with current configuration.\n\n"
170 
171 			"start tx_first\n"
172 			"    Start packet forwarding with current config"
173 			" after sending one burst of packets.\n\n"
174 
175 			"stop\n"
176 			"    Stop packet forwarding, and display accumulated"
177 			" statistics.\n\n"
178 
179 			"quit\n"
180 			"    Quit to prompt.\n\n"
181 		);
182 	}
183 
184 	if (show_all || !strcmp(res->section, "display")) {
185 
186 		cmdline_printf(
187 			cl,
188 			"\n"
189 			"Display:\n"
190 			"--------\n\n"
191 
192 			"show port (info|stats|xstats|fdir|stat_qmap|dcb_tc|cap) (port_id|all)\n"
193 			"    Display information for port_id, or all.\n\n"
194 
195 			"show port X rss reta (size) (mask0,mask1,...)\n"
196 			"    Display the rss redirection table entry indicated"
197 			" by masks on port X. size is used to indicate the"
198 			" hardware supported reta size\n\n"
199 
200 			"show port rss-hash ipv4|ipv4-frag|ipv4-tcp|ipv4-udp|"
201 			"ipv4-sctp|ipv4-other|ipv6|ipv6-frag|ipv6-tcp|ipv6-udp|ipv6-sctp|"
202 			"ipv6-other|l2-payload|ipv6-ex|ipv6-tcp-ex|ipv6-udp-ex [key]\n"
203 			"    Display the RSS hash functions and RSS hash key"
204 			" of port X\n\n"
205 
206 			"clear port (info|stats|xstats|fdir|stat_qmap) (port_id|all)\n"
207 			"    Clear information for port_id, or all.\n\n"
208 
209 			"show (rxq|txq) info (port_id) (queue_id)\n"
210 			"    Display information for configured RX/TX queue.\n\n"
211 
212 			"show config (rxtx|cores|fwd|txpkts)\n"
213 			"    Display the given configuration.\n\n"
214 
215 			"read rxd (port_id) (queue_id) (rxd_id)\n"
216 			"    Display an RX descriptor of a port RX queue.\n\n"
217 
218 			"read txd (port_id) (queue_id) (txd_id)\n"
219 			"    Display a TX descriptor of a port TX queue.\n\n"
220 
221 			"ddp get list (port_id)\n"
222 			"    Get ddp profile info list\n\n"
223 
224 			"show vf stats (port_id) (vf_id)\n"
225 			"    Display a VF's statistics.\n\n"
226 
227 			"clear vf stats (port_id) (vf_id)\n"
228 			"    Reset a VF's statistics.\n\n"
229 		);
230 	}
231 
232 	if (show_all || !strcmp(res->section, "config")) {
233 		cmdline_printf(
234 			cl,
235 			"\n"
236 			"Configuration:\n"
237 			"--------------\n"
238 			"Configuration changes only become active when"
239 			" forwarding is started/restarted.\n\n"
240 
241 			"set default\n"
242 			"    Reset forwarding to the default configuration.\n\n"
243 
244 			"set verbose (level)\n"
245 			"    Set the debug verbosity level X.\n\n"
246 
247 			"set nbport (num)\n"
248 			"    Set number of ports.\n\n"
249 
250 			"set nbcore (num)\n"
251 			"    Set number of cores.\n\n"
252 
253 			"set coremask (mask)\n"
254 			"    Set the forwarding cores hexadecimal mask.\n\n"
255 
256 			"set portmask (mask)\n"
257 			"    Set the forwarding ports hexadecimal mask.\n\n"
258 
259 			"set burst (num)\n"
260 			"    Set number of packets per burst.\n\n"
261 
262 			"set burst tx delay (microseconds) retry (num)\n"
263 			"    Set the transmit delay time and number of retries,"
264 			" effective when retry is enabled.\n\n"
265 
266 			"set txpkts (x[,y]*)\n"
267 			"    Set the length of each segment of TXONLY"
268 			" and optionally CSUM packets.\n\n"
269 
270 			"set txsplit (off|on|rand)\n"
271 			"    Set the split policy for the TX packets."
272 			" Right now only applicable for CSUM and TXONLY"
273 			" modes\n\n"
274 
275 			"set corelist (x[,y]*)\n"
276 			"    Set the list of forwarding cores.\n\n"
277 
278 			"set portlist (x[,y]*)\n"
279 			"    Set the list of forwarding ports.\n\n"
280 
281 			"set tx loopback (port_id) (on|off)\n"
282 			"    Enable or disable tx loopback.\n\n"
283 
284 #ifdef RTE_LIBRTE_IXGBE_PMD
285 			"set all queues drop (port_id) (on|off)\n"
286 			"    Set drop enable bit for all queues.\n\n"
287 
288 			"set vf split drop (port_id) (vf_id) (on|off)\n"
289 			"    Set split drop enable bit for a VF from the PF.\n\n"
290 #endif
291 
292 			"set vf mac antispoof (port_id) (vf_id) (on|off).\n"
293 			"    Set MAC antispoof for a VF from the PF.\n\n"
294 
295 #ifdef RTE_LIBRTE_IXGBE_PMD
296 			"set macsec offload (port_id) on encrypt (on|off) replay-protect (on|off)\n"
297 			"    Enable MACsec offload.\n\n"
298 
299 			"set macsec offload (port_id) off\n"
300 			"    Disable MACsec offload.\n\n"
301 
302 			"set macsec sc (tx|rx) (port_id) (mac) (pi)\n"
303 			"    Configure MACsec secure connection (SC).\n\n"
304 
305 			"set macsec sa (tx|rx) (port_id) (idx) (an) (pn) (key)\n"
306 			"    Configure MACsec secure association (SA).\n\n"
307 #endif
308 
309 			"set vf broadcast (port_id) (vf_id) (on|off)\n"
310 			"    Set VF broadcast for a VF from the PF.\n\n"
311 
312 			"vlan set strip (on|off) (port_id)\n"
313 			"    Set the VLAN strip on a port.\n\n"
314 
315 			"vlan set stripq (on|off) (port_id,queue_id)\n"
316 			"    Set the VLAN strip for a queue on a port.\n\n"
317 
318 			"set vf vlan stripq (port_id) (vf_id) (on|off)\n"
319 			"    Set the VLAN strip for all queues in a pool for a VF from the PF.\n\n"
320 
321 			"set vf vlan insert (port_id) (vf_id) (vlan_id)\n"
322 			"    Set VLAN insert for a VF from the PF.\n\n"
323 
324 			"set vf vlan antispoof (port_id) (vf_id) (on|off)\n"
325 			"    Set VLAN antispoof for a VF from the PF.\n\n"
326 
327 			"set vf vlan tag (port_id) (vf_id) (on|off)\n"
328 			"    Set VLAN tag for a VF from the PF.\n\n"
329 
330 			"set vf tx max-bandwidth (port_id) (vf_id) (bandwidth)\n"
331 			"    Set a VF's max bandwidth(Mbps).\n\n"
332 
333 			"set vf tc tx min-bandwidth (port_id) (vf_id) (bw1, bw2, ...)\n"
334 			"    Set all TCs' min bandwidth(%%) on a VF.\n\n"
335 
336 			"set vf tc tx max-bandwidth (port_id) (vf_id) (tc_no) (bandwidth)\n"
337 			"    Set a TC's max bandwidth(Mbps) on a VF.\n\n"
338 
339 			"set tx strict-link-priority (port_id) (tc_bitmap)\n"
340 			"    Set some TCs' strict link priority mode on a physical port.\n\n"
341 
342 			"set tc tx min-bandwidth (port_id) (bw1, bw2, ...)\n"
343 			"    Set all TCs' min bandwidth(%%) for all PF and VFs.\n\n"
344 
345 			"vlan set filter (on|off) (port_id)\n"
346 			"    Set the VLAN filter on a port.\n\n"
347 
348 			"vlan set qinq (on|off) (port_id)\n"
349 			"    Set the VLAN QinQ (extended queue in queue)"
350 			" on a port.\n\n"
351 
352 			"vlan set (inner|outer) tpid (value) (port_id)\n"
353 			"    Set the VLAN TPID for Packet Filtering on"
354 			" a port\n\n"
355 
356 			"rx_vlan add (vlan_id|all) (port_id)\n"
357 			"    Add a vlan_id, or all identifiers, to the set"
358 			" of VLAN identifiers filtered by port_id.\n\n"
359 
360 			"rx_vlan rm (vlan_id|all) (port_id)\n"
361 			"    Remove a vlan_id, or all identifiers, from the set"
362 			" of VLAN identifiers filtered by port_id.\n\n"
363 
364 			"rx_vlan add (vlan_id) port (port_id) vf (vf_mask)\n"
365 			"    Add a vlan_id, to the set of VLAN identifiers"
366 			"filtered for VF(s) from port_id.\n\n"
367 
368 			"rx_vlan rm (vlan_id) port (port_id) vf (vf_mask)\n"
369 			"    Remove a vlan_id, to the set of VLAN identifiers"
370 			"filtered for VF(s) from port_id.\n\n"
371 
372 			"tunnel_filter add (port_id) (outer_mac) (inner_mac) (ip_addr) "
373 			"(inner_vlan) (vxlan|nvgre|ipingre) (imac-ivlan|imac-ivlan-tenid|"
374 			"imac-tenid|imac|omac-imac-tenid|oip|iip) (tenant_id) (queue_id)\n"
375 			"   add a tunnel filter of a port.\n\n"
376 
377 			"tunnel_filter rm (port_id) (outer_mac) (inner_mac) (ip_addr) "
378 			"(inner_vlan) (vxlan|nvgre|ipingre) (imac-ivlan|imac-ivlan-tenid|"
379 			"imac-tenid|imac|omac-imac-tenid|oip|iip) (tenant_id) (queue_id)\n"
380 			"   remove a tunnel filter of a port.\n\n"
381 
382 			"rx_vxlan_port add (udp_port) (port_id)\n"
383 			"    Add an UDP port for VXLAN packet filter on a port\n\n"
384 
385 			"rx_vxlan_port rm (udp_port) (port_id)\n"
386 			"    Remove an UDP port for VXLAN packet filter on a port\n\n"
387 
388 			"tx_vlan set (port_id) vlan_id[, vlan_id_outer]\n"
389 			"    Set hardware insertion of VLAN IDs (single or double VLAN "
390 			"depends on the number of VLAN IDs) in packets sent on a port.\n\n"
391 
392 			"tx_vlan set pvid port_id vlan_id (on|off)\n"
393 			"    Set port based TX VLAN insertion.\n\n"
394 
395 			"tx_vlan reset (port_id)\n"
396 			"    Disable hardware insertion of a VLAN header in"
397 			" packets sent on a port.\n\n"
398 
399 			"csum set (ip|udp|tcp|sctp|outer-ip) (hw|sw) (port_id)\n"
400 			"    Select hardware or software calculation of the"
401 			" checksum when transmitting a packet using the"
402 			" csum forward engine.\n"
403 			"    ip|udp|tcp|sctp always concern the inner layer.\n"
404 			"    outer-ip concerns the outer IP layer in"
405 			" case the packet is recognized as a tunnel packet by"
406 			" the forward engine (vxlan, gre and ipip are supported)\n"
407 			"    Please check the NIC datasheet for HW limits.\n\n"
408 
409 			"csum parse-tunnel (on|off) (tx_port_id)\n"
410 			"    If disabled, treat tunnel packets as non-tunneled"
411 			" packets (treat inner headers as payload). The port\n"
412 			"    argument is the port used for TX in csum forward"
413 			" engine.\n\n"
414 
415 			"csum show (port_id)\n"
416 			"    Display tx checksum offload configuration\n\n"
417 
418 			"tso set (segsize) (portid)\n"
419 			"    Enable TCP Segmentation Offload in csum forward"
420 			" engine.\n"
421 			"    Please check the NIC datasheet for HW limits.\n\n"
422 
423 			"tso show (portid)"
424 			"    Display the status of TCP Segmentation Offload.\n\n"
425 
426 			"set fwd (%s)\n"
427 			"    Set packet forwarding mode.\n\n"
428 
429 			"mac_addr add (port_id) (XX:XX:XX:XX:XX:XX)\n"
430 			"    Add a MAC address on port_id.\n\n"
431 
432 			"mac_addr remove (port_id) (XX:XX:XX:XX:XX:XX)\n"
433 			"    Remove a MAC address from port_id.\n\n"
434 
435 			"mac_addr set (port_id) (XX:XX:XX:XX:XX:XX)\n"
436 			"    Set the default MAC address for port_id.\n\n"
437 
438 			"mac_addr add port (port_id) vf (vf_id) (mac_address)\n"
439 			"    Add a MAC address for a VF on the port.\n\n"
440 
441 			"set vf mac addr (port_id) (vf_id) (XX:XX:XX:XX:XX:XX)\n"
442 			"    Set the MAC address for a VF from the PF.\n\n"
443 
444 			"set port (port_id) uta (mac_address|all) (on|off)\n"
445 			"    Add/Remove a or all unicast hash filter(s)"
446 			"from port X.\n\n"
447 
448 			"set promisc (port_id|all) (on|off)\n"
449 			"    Set the promiscuous mode on port_id, or all.\n\n"
450 
451 			"set allmulti (port_id|all) (on|off)\n"
452 			"    Set the allmulti mode on port_id, or all.\n\n"
453 
454 			"set vf promisc (port_id) (vf_id) (on|off)\n"
455 			"    Set unicast promiscuous mode for a VF from the PF.\n\n"
456 
457 			"set vf allmulti (port_id) (vf_id) (on|off)\n"
458 			"    Set multicast promiscuous mode for a VF from the PF.\n\n"
459 
460 			"set flow_ctrl rx (on|off) tx (on|off) (high_water)"
461 			" (low_water) (pause_time) (send_xon) mac_ctrl_frame_fwd"
462 			" (on|off) autoneg (on|off) (port_id)\n"
463 			"set flow_ctrl rx (on|off) (portid)\n"
464 			"set flow_ctrl tx (on|off) (portid)\n"
465 			"set flow_ctrl high_water (high_water) (portid)\n"
466 			"set flow_ctrl low_water (low_water) (portid)\n"
467 			"set flow_ctrl pause_time (pause_time) (portid)\n"
468 			"set flow_ctrl send_xon (send_xon) (portid)\n"
469 			"set flow_ctrl mac_ctrl_frame_fwd (on|off) (portid)\n"
470 			"set flow_ctrl autoneg (on|off) (port_id)\n"
471 			"    Set the link flow control parameter on a port.\n\n"
472 
473 			"set pfc_ctrl rx (on|off) tx (on|off) (high_water)"
474 			" (low_water) (pause_time) (priority) (port_id)\n"
475 			"    Set the priority flow control parameter on a"
476 			" port.\n\n"
477 
478 			"set stat_qmap (tx|rx) (port_id) (queue_id) (qmapping)\n"
479 			"    Set statistics mapping (qmapping 0..15) for RX/TX"
480 			" queue on port.\n"
481 			"    e.g., 'set stat_qmap rx 0 2 5' sets rx queue 2"
482 			" on port 0 to mapping 5.\n\n"
483 
484 			"set port (port_id) vf (vf_id) rx|tx on|off\n"
485 			"    Enable/Disable a VF receive/tranmit from a port\n\n"
486 
487 			"set port (port_id) vf (vf_id) (mac_addr)"
488 			" (exact-mac#exact-mac-vlan#hashmac|hashmac-vlan) on|off\n"
489 			"   Add/Remove unicast or multicast MAC addr filter"
490 			" for a VF.\n\n"
491 
492 			"set port (port_id) vf (vf_id) rxmode (AUPE|ROPE|BAM"
493 			"|MPE) (on|off)\n"
494 			"    AUPE:accepts untagged VLAN;"
495 			"ROPE:accept unicast hash\n\n"
496 			"    BAM:accepts broadcast packets;"
497 			"MPE:accepts all multicast packets\n\n"
498 			"    Enable/Disable a VF receive mode of a port\n\n"
499 
500 			"set port (port_id) queue (queue_id) rate (rate_num)\n"
501 			"    Set rate limit for a queue of a port\n\n"
502 
503 			"set port (port_id) vf (vf_id) rate (rate_num) "
504 			"queue_mask (queue_mask_value)\n"
505 			"    Set rate limit for queues in VF of a port\n\n"
506 
507 			"set port (port_id) mirror-rule (rule_id)"
508 			" (pool-mirror-up|pool-mirror-down|vlan-mirror)"
509 			" (poolmask|vlanid[,vlanid]*) dst-pool (pool_id) (on|off)\n"
510 			"   Set pool or vlan type mirror rule on a port.\n"
511 			"   e.g., 'set port 0 mirror-rule 0 vlan-mirror 0,1"
512 			" dst-pool 0 on' enable mirror traffic with vlan 0,1"
513 			" to pool 0.\n\n"
514 
515 			"set port (port_id) mirror-rule (rule_id)"
516 			" (uplink-mirror|downlink-mirror) dst-pool"
517 			" (pool_id) (on|off)\n"
518 			"   Set uplink or downlink type mirror rule on a port.\n"
519 			"   e.g., 'set port 0 mirror-rule 0 uplink-mirror dst-pool"
520 			" 0 on' enable mirror income traffic to pool 0.\n\n"
521 
522 			"reset port (port_id) mirror-rule (rule_id)\n"
523 			"   Reset a mirror rule.\n\n"
524 
525 			"set flush_rx (on|off)\n"
526 			"   Flush (default) or don't flush RX streams before"
527 			" forwarding. Mainly used with PCAP drivers.\n\n"
528 
529 			"set bypass mode (normal|bypass|isolate) (port_id)\n"
530 			"   Set the bypass mode for the lowest port on bypass enabled"
531 			" NIC.\n\n"
532 
533 			"set bypass event (timeout|os_on|os_off|power_on|power_off) "
534 			"mode (normal|bypass|isolate) (port_id)\n"
535 			"   Set the event required to initiate specified bypass mode for"
536 			" the lowest port on a bypass enabled NIC where:\n"
537 			"       timeout   = enable bypass after watchdog timeout.\n"
538 			"       os_on     = enable bypass when OS/board is powered on.\n"
539 			"       os_off    = enable bypass when OS/board is powered off.\n"
540 			"       power_on  = enable bypass when power supply is turned on.\n"
541 			"       power_off = enable bypass when power supply is turned off."
542 			"\n\n"
543 
544 			"set bypass timeout (0|1.5|2|3|4|8|16|32)\n"
545 			"   Set the bypass watchdog timeout to 'n' seconds"
546 			" where 0 = instant.\n\n"
547 
548 			"show bypass config (port_id)\n"
549 			"   Show the bypass configuration for a bypass enabled NIC"
550 			" using the lowest port on the NIC.\n\n"
551 
552 #ifdef RTE_LIBRTE_PMD_BOND
553 			"create bonded device (mode) (socket)\n"
554 			"	Create a new bonded device with specific bonding mode and socket.\n\n"
555 
556 			"add bonding slave (slave_id) (port_id)\n"
557 			"	Add a slave device to a bonded device.\n\n"
558 
559 			"remove bonding slave (slave_id) (port_id)\n"
560 			"	Remove a slave device from a bonded device.\n\n"
561 
562 			"set bonding mode (value) (port_id)\n"
563 			"	Set the bonding mode on a bonded device.\n\n"
564 
565 			"set bonding primary (slave_id) (port_id)\n"
566 			"	Set the primary slave for a bonded device.\n\n"
567 
568 			"show bonding config (port_id)\n"
569 			"	Show the bonding config for port_id.\n\n"
570 
571 			"set bonding mac_addr (port_id) (address)\n"
572 			"	Set the MAC address of a bonded device.\n\n"
573 
574 			"set bonding xmit_balance_policy (port_id) (l2|l23|l34)\n"
575 			"	Set the transmit balance policy for bonded device running in balance mode.\n\n"
576 
577 			"set bonding mon_period (port_id) (value)\n"
578 			"	Set the bonding link status monitoring polling period in ms.\n\n"
579 #endif
580 			"set link-up port (port_id)\n"
581 			"	Set link up for a port.\n\n"
582 
583 			"set link-down port (port_id)\n"
584 			"	Set link down for a port.\n\n"
585 
586 			"E-tag set insertion on port-tag-id (value)"
587 			" port (port_id) vf (vf_id)\n"
588 			"    Enable E-tag insertion for a VF on a port\n\n"
589 
590 			"E-tag set insertion off port (port_id) vf (vf_id)\n"
591 			"    Disable E-tag insertion for a VF on a port\n\n"
592 
593 			"E-tag set stripping (on|off) port (port_id)\n"
594 			"    Enable/disable E-tag stripping on a port\n\n"
595 
596 			"E-tag set forwarding (on|off) port (port_id)\n"
597 			"    Enable/disable E-tag based forwarding"
598 			" on a port\n\n"
599 
600 			"E-tag set filter add e-tag-id (value) dst-pool"
601 			" (pool_id) port (port_id)\n"
602 			"    Add an E-tag forwarding filter on a port\n\n"
603 
604 			"E-tag set filter del e-tag-id (value) port (port_id)\n"
605 			"    Delete an E-tag forwarding filter on a port\n\n"
606 
607 			"ddp add (port_id) (profile_path)\n"
608 			"    Load a profile package on a port\n\n"
609 
610 			"ptype mapping get (port_id) (valid_only)\n"
611 			"    Get ptype mapping on a port\n\n"
612 
613 			"ptype mapping replace (port_id) (target) (mask) (pky_type)\n"
614 			"    Replace target with the pkt_type in ptype mapping\n\n"
615 
616 			"ptype mapping reset (port_id)\n"
617 			"    Reset ptype mapping on a port\n\n"
618 
619 			"ptype mapping update (port_id) (hw_ptype) (sw_ptype)\n"
620 			"    Update a ptype mapping item on a port\n\n"
621 
622 			, list_pkt_forwarding_modes()
623 		);
624 	}
625 
626 	if (show_all || !strcmp(res->section, "ports")) {
627 
628 		cmdline_printf(
629 			cl,
630 			"\n"
631 			"Port Operations:\n"
632 			"----------------\n\n"
633 
634 			"port start (port_id|all)\n"
635 			"    Start all ports or port_id.\n\n"
636 
637 			"port stop (port_id|all)\n"
638 			"    Stop all ports or port_id.\n\n"
639 
640 			"port close (port_id|all)\n"
641 			"    Close all ports or port_id.\n\n"
642 
643 			"port attach (ident)\n"
644 			"    Attach physical or virtual dev by pci address or virtual device name\n\n"
645 
646 			"port detach (port_id)\n"
647 			"    Detach physical or virtual dev by port_id\n\n"
648 
649 			"port config (port_id|all)"
650 			" speed (10|100|1000|10000|25000|40000|50000|100000|auto)"
651 			" duplex (half|full|auto)\n"
652 			"    Set speed and duplex for all ports or port_id\n\n"
653 
654 			"port config all (rxq|txq|rxd|txd) (value)\n"
655 			"    Set number for rxq/txq/rxd/txd.\n\n"
656 
657 			"port config all max-pkt-len (value)\n"
658 			"    Set the max packet length.\n\n"
659 
660 			"port config all (crc-strip|scatter|rx-cksum|hw-vlan|hw-vlan-filter|"
661 			"hw-vlan-strip|hw-vlan-extend|drop-en)"
662 			" (on|off)\n"
663 			"    Set crc-strip/scatter/rx-checksum/hardware-vlan/drop_en"
664 			" for ports.\n\n"
665 
666 			"port config all rss (all|ip|tcp|udp|sctp|ether|port|vxlan|geneve|nvgre|none)\n"
667 			"    Set the RSS mode.\n\n"
668 
669 			"port config port-id rss reta (hash,queue)[,(hash,queue)]\n"
670 			"    Set the RSS redirection table.\n\n"
671 
672 			"port config (port_id) dcb vt (on|off) (traffic_class)"
673 			" pfc (on|off)\n"
674 			"    Set the DCB mode.\n\n"
675 
676 			"port config all burst (value)\n"
677 			"    Set the number of packets per burst.\n\n"
678 
679 			"port config all (txpt|txht|txwt|rxpt|rxht|rxwt)"
680 			" (value)\n"
681 			"    Set the ring prefetch/host/writeback threshold"
682 			" for tx/rx queue.\n\n"
683 
684 			"port config all (txfreet|txrst|rxfreet) (value)\n"
685 			"    Set free threshold for rx/tx, or set"
686 			" tx rs bit threshold.\n\n"
687 			"port config mtu X value\n"
688 			"    Set the MTU of port X to a given value\n\n"
689 
690 			"port (port_id) (rxq|txq) (queue_id) (start|stop)\n"
691 			"    Start/stop a rx/tx queue of port X. Only take effect"
692 			" when port X is started\n\n"
693 
694 			"port config (port_id|all) l2-tunnel E-tag ether-type"
695 			" (value)\n"
696 			"    Set the value of E-tag ether-type.\n\n"
697 
698 			"port config (port_id|all) l2-tunnel E-tag"
699 			" (enable|disable)\n"
700 			"    Enable/disable the E-tag support.\n\n"
701 		);
702 	}
703 
704 	if (show_all || !strcmp(res->section, "registers")) {
705 
706 		cmdline_printf(
707 			cl,
708 			"\n"
709 			"Registers:\n"
710 			"----------\n\n"
711 
712 			"read reg (port_id) (address)\n"
713 			"    Display value of a port register.\n\n"
714 
715 			"read regfield (port_id) (address) (bit_x) (bit_y)\n"
716 			"    Display a port register bit field.\n\n"
717 
718 			"read regbit (port_id) (address) (bit_x)\n"
719 			"    Display a single port register bit.\n\n"
720 
721 			"write reg (port_id) (address) (value)\n"
722 			"    Set value of a port register.\n\n"
723 
724 			"write regfield (port_id) (address) (bit_x) (bit_y)"
725 			" (value)\n"
726 			"    Set bit field of a port register.\n\n"
727 
728 			"write regbit (port_id) (address) (bit_x) (value)\n"
729 			"    Set single bit value of a port register.\n\n"
730 		);
731 	}
732 	if (show_all || !strcmp(res->section, "filters")) {
733 
734 		cmdline_printf(
735 			cl,
736 			"\n"
737 			"filters:\n"
738 			"--------\n\n"
739 
740 			"ethertype_filter (port_id) (add|del)"
741 			" (mac_addr|mac_ignr) (mac_address) ethertype"
742 			" (ether_type) (drop|fwd) queue (queue_id)\n"
743 			"    Add/Del an ethertype filter.\n\n"
744 
745 			"2tuple_filter (port_id) (add|del)"
746 			" dst_port (dst_port_value) protocol (protocol_value)"
747 			" mask (mask_value) tcp_flags (tcp_flags_value)"
748 			" priority (prio_value) queue (queue_id)\n"
749 			"    Add/Del a 2tuple filter.\n\n"
750 
751 			"5tuple_filter (port_id) (add|del)"
752 			" dst_ip (dst_address) src_ip (src_address)"
753 			" dst_port (dst_port_value) src_port (src_port_value)"
754 			" protocol (protocol_value)"
755 			" mask (mask_value) tcp_flags (tcp_flags_value)"
756 			" priority (prio_value) queue (queue_id)\n"
757 			"    Add/Del a 5tuple filter.\n\n"
758 
759 			"syn_filter (port_id) (add|del) priority (high|low) queue (queue_id)"
760 			"    Add/Del syn filter.\n\n"
761 
762 			"flex_filter (port_id) (add|del) len (len_value)"
763 			" bytes (bytes_value) mask (mask_value)"
764 			" priority (prio_value) queue (queue_id)\n"
765 			"    Add/Del a flex filter.\n\n"
766 
767 			"flow_director_filter (port_id) mode IP (add|del|update)"
768 			" flow (ipv4-other|ipv4-frag|ipv6-other|ipv6-frag)"
769 			" src (src_ip_address) dst (dst_ip_address)"
770 			" tos (tos_value) proto (proto_value) ttl (ttl_value)"
771 			" vlan (vlan_value) flexbytes (flexbytes_value)"
772 			" (drop|fwd) pf|vf(vf_id) queue (queue_id)"
773 			" fd_id (fd_id_value)\n"
774 			"    Add/Del an IP type flow director filter.\n\n"
775 
776 			"flow_director_filter (port_id) mode IP (add|del|update)"
777 			" flow (ipv4-tcp|ipv4-udp|ipv6-tcp|ipv6-udp)"
778 			" src (src_ip_address) (src_port)"
779 			" dst (dst_ip_address) (dst_port)"
780 			" tos (tos_value) ttl (ttl_value)"
781 			" vlan (vlan_value) flexbytes (flexbytes_value)"
782 			" (drop|fwd) pf|vf(vf_id) queue (queue_id)"
783 			" fd_id (fd_id_value)\n"
784 			"    Add/Del an UDP/TCP type flow director filter.\n\n"
785 
786 			"flow_director_filter (port_id) mode IP (add|del|update)"
787 			" flow (ipv4-sctp|ipv6-sctp)"
788 			" src (src_ip_address) (src_port)"
789 			" dst (dst_ip_address) (dst_port)"
790 			" tag (verification_tag) "
791 			" tos (tos_value) ttl (ttl_value)"
792 			" vlan (vlan_value)"
793 			" flexbytes (flexbytes_value) (drop|fwd)"
794 			" pf|vf(vf_id) queue (queue_id) fd_id (fd_id_value)\n"
795 			"    Add/Del a SCTP type flow director filter.\n\n"
796 
797 			"flow_director_filter (port_id) mode IP (add|del|update)"
798 			" flow l2_payload ether (ethertype)"
799 			" flexbytes (flexbytes_value) (drop|fwd)"
800 			" pf|vf(vf_id) queue (queue_id) fd_id (fd_id_value)\n"
801 			"    Add/Del a l2 payload type flow director filter.\n\n"
802 
803 			"flow_director_filter (port_id) mode MAC-VLAN (add|del|update)"
804 			" mac (mac_address) vlan (vlan_value)"
805 			" flexbytes (flexbytes_value) (drop|fwd)"
806 			" queue (queue_id) fd_id (fd_id_value)\n"
807 			"    Add/Del a MAC-VLAN flow director filter.\n\n"
808 
809 			"flow_director_filter (port_id) mode Tunnel (add|del|update)"
810 			" mac (mac_address) vlan (vlan_value)"
811 			" tunnel (NVGRE|VxLAN) tunnel-id (tunnel_id_value)"
812 			" flexbytes (flexbytes_value) (drop|fwd)"
813 			" queue (queue_id) fd_id (fd_id_value)\n"
814 			"    Add/Del a Tunnel flow director filter.\n\n"
815 
816 			"flush_flow_director (port_id)\n"
817 			"    Flush all flow director entries of a device.\n\n"
818 
819 			"flow_director_mask (port_id) mode IP vlan (vlan_value)"
820 			" src_mask (ipv4_src) (ipv6_src) (src_port)"
821 			" dst_mask (ipv4_dst) (ipv6_dst) (dst_port)\n"
822 			"    Set flow director IP mask.\n\n"
823 
824 			"flow_director_mask (port_id) mode MAC-VLAN"
825 			" vlan (vlan_value)\n"
826 			"    Set flow director MAC-VLAN mask.\n\n"
827 
828 			"flow_director_mask (port_id) mode Tunnel"
829 			" vlan (vlan_value) mac (mac_value)"
830 			" tunnel-type (tunnel_type_value)"
831 			" tunnel-id (tunnel_id_value)\n"
832 			"    Set flow director Tunnel mask.\n\n"
833 
834 			"flow_director_flex_mask (port_id)"
835 			" flow (none|ipv4-other|ipv4-frag|ipv4-tcp|ipv4-udp|ipv4-sctp|"
836 			"ipv6-other|ipv6-frag|ipv6-tcp|ipv6-udp|ipv6-sctp|l2_payload|all)"
837 			" (mask)\n"
838 			"    Configure mask of flex payload.\n\n"
839 
840 			"flow_director_flex_payload (port_id)"
841 			" (raw|l2|l3|l4) (config)\n"
842 			"    Configure flex payload selection.\n\n"
843 
844 			"get_sym_hash_ena_per_port (port_id)\n"
845 			"    get symmetric hash enable configuration per port.\n\n"
846 
847 			"set_sym_hash_ena_per_port (port_id) (enable|disable)\n"
848 			"    set symmetric hash enable configuration per port"
849 			" to enable or disable.\n\n"
850 
851 			"get_hash_global_config (port_id)\n"
852 			"    Get the global configurations of hash filters.\n\n"
853 
854 			"set_hash_global_config (port_id) (toeplitz|simple_xor|default)"
855 			" (ipv4|ipv4-frag|ipv4-tcp|ipv4-udp|ipv4-sctp|ipv4-other|ipv6|"
856 			"ipv6-frag|ipv6-tcp|ipv6-udp|ipv6-sctp|ipv6-other|l2_payload)"
857 			" (enable|disable)\n"
858 			"    Set the global configurations of hash filters.\n\n"
859 
860 			"set_hash_input_set (port_id) (ipv4|ipv4-frag|"
861 			"ipv4-tcp|ipv4-udp|ipv4-sctp|ipv4-other|ipv6|"
862 			"ipv6-frag|ipv6-tcp|ipv6-udp|ipv6-sctp|ipv6-other|"
863 			"l2_payload) (ovlan|ivlan|src-ipv4|dst-ipv4|src-ipv6|"
864 			"dst-ipv6|ipv4-tos|ipv4-proto|ipv6-tc|"
865 			"ipv6-next-header|udp-src-port|udp-dst-port|"
866 			"tcp-src-port|tcp-dst-port|sctp-src-port|"
867 			"sctp-dst-port|sctp-veri-tag|udp-key|gre-key|fld-1st|"
868 			"fld-2nd|fld-3rd|fld-4th|fld-5th|fld-6th|fld-7th|"
869 			"fld-8th|none) (select|add)\n"
870 			"    Set the input set for hash.\n\n"
871 
872 			"set_fdir_input_set (port_id) "
873 			"(ipv4-frag|ipv4-tcp|ipv4-udp|ipv4-sctp|ipv4-other|"
874 			"ipv6-frag|ipv6-tcp|ipv6-udp|ipv6-sctp|ipv6-other|"
875 			"l2_payload) (ivlan|ethertype|src-ipv4|dst-ipv4|src-ipv6|"
876 			"dst-ipv6|ipv4-tos|ipv4-proto|ipv4-ttl|ipv6-tc|"
877 			"ipv6-next-header|ipv6-hop-limits|udp-src-port|"
878 			"udp-dst-port|tcp-src-port|tcp-dst-port|"
879 			"sctp-src-port|sctp-dst-port|sctp-veri-tag|none)"
880 			" (select|add)\n"
881 			"    Set the input set for FDir.\n\n"
882 
883 			"flow validate {port_id}"
884 			" [group {group_id}] [priority {level}]"
885 			" [ingress] [egress]"
886 			" pattern {item} [/ {item} [...]] / end"
887 			" actions {action} [/ {action} [...]] / end\n"
888 			"    Check whether a flow rule can be created.\n\n"
889 
890 			"flow create {port_id}"
891 			" [group {group_id}] [priority {level}]"
892 			" [ingress] [egress]"
893 			" pattern {item} [/ {item} [...]] / end"
894 			" actions {action} [/ {action} [...]] / end\n"
895 			"    Create a flow rule.\n\n"
896 
897 			"flow destroy {port_id} rule {rule_id} [...]\n"
898 			"    Destroy specific flow rules.\n\n"
899 
900 			"flow flush {port_id}\n"
901 			"    Destroy all flow rules.\n\n"
902 
903 			"flow query {port_id} {rule_id} {action}\n"
904 			"    Query an existing flow rule.\n\n"
905 
906 			"flow list {port_id} [group {group_id}] [...]\n"
907 			"    List existing flow rules sorted by priority,"
908 			" filtered by group identifiers.\n\n"
909 		);
910 	}
911 }
912 
913 cmdline_parse_token_string_t cmd_help_long_help =
914 	TOKEN_STRING_INITIALIZER(struct cmd_help_long_result, help, "help");
915 
916 cmdline_parse_token_string_t cmd_help_long_section =
917 	TOKEN_STRING_INITIALIZER(struct cmd_help_long_result, section,
918 			"all#control#display#config#"
919 			"ports#registers#filters");
920 
921 cmdline_parse_inst_t cmd_help_long = {
922 	.f = cmd_help_long_parsed,
923 	.data = NULL,
924 	.help_str = "help all|control|display|config|ports|register|filters: "
925 		"Show help",
926 	.tokens = {
927 		(void *)&cmd_help_long_help,
928 		(void *)&cmd_help_long_section,
929 		NULL,
930 	},
931 };
932 
933 
934 /* *** start/stop/close all ports *** */
935 struct cmd_operate_port_result {
936 	cmdline_fixed_string_t keyword;
937 	cmdline_fixed_string_t name;
938 	cmdline_fixed_string_t value;
939 };
940 
941 static void cmd_operate_port_parsed(void *parsed_result,
942 				__attribute__((unused)) struct cmdline *cl,
943 				__attribute__((unused)) void *data)
944 {
945 	struct cmd_operate_port_result *res = parsed_result;
946 
947 	if (!strcmp(res->name, "start"))
948 		start_port(RTE_PORT_ALL);
949 	else if (!strcmp(res->name, "stop"))
950 		stop_port(RTE_PORT_ALL);
951 	else if (!strcmp(res->name, "close"))
952 		close_port(RTE_PORT_ALL);
953 	else
954 		printf("Unknown parameter\n");
955 }
956 
957 cmdline_parse_token_string_t cmd_operate_port_all_cmd =
958 	TOKEN_STRING_INITIALIZER(struct cmd_operate_port_result, keyword,
959 								"port");
960 cmdline_parse_token_string_t cmd_operate_port_all_port =
961 	TOKEN_STRING_INITIALIZER(struct cmd_operate_port_result, name,
962 						"start#stop#close");
963 cmdline_parse_token_string_t cmd_operate_port_all_all =
964 	TOKEN_STRING_INITIALIZER(struct cmd_operate_port_result, value, "all");
965 
966 cmdline_parse_inst_t cmd_operate_port = {
967 	.f = cmd_operate_port_parsed,
968 	.data = NULL,
969 	.help_str = "port start|stop|close all: Start/Stop/Close all ports",
970 	.tokens = {
971 		(void *)&cmd_operate_port_all_cmd,
972 		(void *)&cmd_operate_port_all_port,
973 		(void *)&cmd_operate_port_all_all,
974 		NULL,
975 	},
976 };
977 
978 /* *** start/stop/close specific port *** */
979 struct cmd_operate_specific_port_result {
980 	cmdline_fixed_string_t keyword;
981 	cmdline_fixed_string_t name;
982 	uint8_t value;
983 };
984 
985 static void cmd_operate_specific_port_parsed(void *parsed_result,
986 			__attribute__((unused)) struct cmdline *cl,
987 				__attribute__((unused)) void *data)
988 {
989 	struct cmd_operate_specific_port_result *res = parsed_result;
990 
991 	if (!strcmp(res->name, "start"))
992 		start_port(res->value);
993 	else if (!strcmp(res->name, "stop"))
994 		stop_port(res->value);
995 	else if (!strcmp(res->name, "close"))
996 		close_port(res->value);
997 	else
998 		printf("Unknown parameter\n");
999 }
1000 
1001 cmdline_parse_token_string_t cmd_operate_specific_port_cmd =
1002 	TOKEN_STRING_INITIALIZER(struct cmd_operate_specific_port_result,
1003 							keyword, "port");
1004 cmdline_parse_token_string_t cmd_operate_specific_port_port =
1005 	TOKEN_STRING_INITIALIZER(struct cmd_operate_specific_port_result,
1006 						name, "start#stop#close");
1007 cmdline_parse_token_num_t cmd_operate_specific_port_id =
1008 	TOKEN_NUM_INITIALIZER(struct cmd_operate_specific_port_result,
1009 							value, UINT8);
1010 
1011 cmdline_parse_inst_t cmd_operate_specific_port = {
1012 	.f = cmd_operate_specific_port_parsed,
1013 	.data = NULL,
1014 	.help_str = "port start|stop|close <port_id>: Start/Stop/Close port_id",
1015 	.tokens = {
1016 		(void *)&cmd_operate_specific_port_cmd,
1017 		(void *)&cmd_operate_specific_port_port,
1018 		(void *)&cmd_operate_specific_port_id,
1019 		NULL,
1020 	},
1021 };
1022 
1023 /* *** attach a specified port *** */
1024 struct cmd_operate_attach_port_result {
1025 	cmdline_fixed_string_t port;
1026 	cmdline_fixed_string_t keyword;
1027 	cmdline_fixed_string_t identifier;
1028 };
1029 
1030 static void cmd_operate_attach_port_parsed(void *parsed_result,
1031 				__attribute__((unused)) struct cmdline *cl,
1032 				__attribute__((unused)) void *data)
1033 {
1034 	struct cmd_operate_attach_port_result *res = parsed_result;
1035 
1036 	if (!strcmp(res->keyword, "attach"))
1037 		attach_port(res->identifier);
1038 	else
1039 		printf("Unknown parameter\n");
1040 }
1041 
1042 cmdline_parse_token_string_t cmd_operate_attach_port_port =
1043 	TOKEN_STRING_INITIALIZER(struct cmd_operate_attach_port_result,
1044 			port, "port");
1045 cmdline_parse_token_string_t cmd_operate_attach_port_keyword =
1046 	TOKEN_STRING_INITIALIZER(struct cmd_operate_attach_port_result,
1047 			keyword, "attach");
1048 cmdline_parse_token_string_t cmd_operate_attach_port_identifier =
1049 	TOKEN_STRING_INITIALIZER(struct cmd_operate_attach_port_result,
1050 			identifier, NULL);
1051 
1052 cmdline_parse_inst_t cmd_operate_attach_port = {
1053 	.f = cmd_operate_attach_port_parsed,
1054 	.data = NULL,
1055 	.help_str = "port attach <identifier>: "
1056 		"(identifier: pci address or virtual dev name)",
1057 	.tokens = {
1058 		(void *)&cmd_operate_attach_port_port,
1059 		(void *)&cmd_operate_attach_port_keyword,
1060 		(void *)&cmd_operate_attach_port_identifier,
1061 		NULL,
1062 	},
1063 };
1064 
1065 /* *** detach a specified port *** */
1066 struct cmd_operate_detach_port_result {
1067 	cmdline_fixed_string_t port;
1068 	cmdline_fixed_string_t keyword;
1069 	uint8_t port_id;
1070 };
1071 
1072 static void cmd_operate_detach_port_parsed(void *parsed_result,
1073 				__attribute__((unused)) struct cmdline *cl,
1074 				__attribute__((unused)) void *data)
1075 {
1076 	struct cmd_operate_detach_port_result *res = parsed_result;
1077 
1078 	if (!strcmp(res->keyword, "detach"))
1079 		detach_port(res->port_id);
1080 	else
1081 		printf("Unknown parameter\n");
1082 }
1083 
1084 cmdline_parse_token_string_t cmd_operate_detach_port_port =
1085 	TOKEN_STRING_INITIALIZER(struct cmd_operate_detach_port_result,
1086 			port, "port");
1087 cmdline_parse_token_string_t cmd_operate_detach_port_keyword =
1088 	TOKEN_STRING_INITIALIZER(struct cmd_operate_detach_port_result,
1089 			keyword, "detach");
1090 cmdline_parse_token_num_t cmd_operate_detach_port_port_id =
1091 	TOKEN_NUM_INITIALIZER(struct cmd_operate_detach_port_result,
1092 			port_id, UINT8);
1093 
1094 cmdline_parse_inst_t cmd_operate_detach_port = {
1095 	.f = cmd_operate_detach_port_parsed,
1096 	.data = NULL,
1097 	.help_str = "port detach <port_id>",
1098 	.tokens = {
1099 		(void *)&cmd_operate_detach_port_port,
1100 		(void *)&cmd_operate_detach_port_keyword,
1101 		(void *)&cmd_operate_detach_port_port_id,
1102 		NULL,
1103 	},
1104 };
1105 
1106 /* *** configure speed for all ports *** */
1107 struct cmd_config_speed_all {
1108 	cmdline_fixed_string_t port;
1109 	cmdline_fixed_string_t keyword;
1110 	cmdline_fixed_string_t all;
1111 	cmdline_fixed_string_t item1;
1112 	cmdline_fixed_string_t item2;
1113 	cmdline_fixed_string_t value1;
1114 	cmdline_fixed_string_t value2;
1115 };
1116 
1117 static int
1118 parse_and_check_speed_duplex(char *speedstr, char *duplexstr, uint32_t *speed)
1119 {
1120 
1121 	int duplex;
1122 
1123 	if (!strcmp(duplexstr, "half")) {
1124 		duplex = ETH_LINK_HALF_DUPLEX;
1125 	} else if (!strcmp(duplexstr, "full")) {
1126 		duplex = ETH_LINK_FULL_DUPLEX;
1127 	} else if (!strcmp(duplexstr, "auto")) {
1128 		duplex = ETH_LINK_FULL_DUPLEX;
1129 	} else {
1130 		printf("Unknown duplex parameter\n");
1131 		return -1;
1132 	}
1133 
1134 	if (!strcmp(speedstr, "10")) {
1135 		*speed = (duplex == ETH_LINK_HALF_DUPLEX) ?
1136 				ETH_LINK_SPEED_10M_HD : ETH_LINK_SPEED_10M;
1137 	} else if (!strcmp(speedstr, "100")) {
1138 		*speed = (duplex == ETH_LINK_HALF_DUPLEX) ?
1139 				ETH_LINK_SPEED_100M_HD : ETH_LINK_SPEED_100M;
1140 	} else {
1141 		if (duplex != ETH_LINK_FULL_DUPLEX) {
1142 			printf("Invalid speed/duplex parameters\n");
1143 			return -1;
1144 		}
1145 		if (!strcmp(speedstr, "1000")) {
1146 			*speed = ETH_LINK_SPEED_1G;
1147 		} else if (!strcmp(speedstr, "10000")) {
1148 			*speed = ETH_LINK_SPEED_10G;
1149 		} else if (!strcmp(speedstr, "25000")) {
1150 			*speed = ETH_LINK_SPEED_25G;
1151 		} else if (!strcmp(speedstr, "40000")) {
1152 			*speed = ETH_LINK_SPEED_40G;
1153 		} else if (!strcmp(speedstr, "50000")) {
1154 			*speed = ETH_LINK_SPEED_50G;
1155 		} else if (!strcmp(speedstr, "100000")) {
1156 			*speed = ETH_LINK_SPEED_100G;
1157 		} else if (!strcmp(speedstr, "auto")) {
1158 			*speed = ETH_LINK_SPEED_AUTONEG;
1159 		} else {
1160 			printf("Unknown speed parameter\n");
1161 			return -1;
1162 		}
1163 	}
1164 
1165 	return 0;
1166 }
1167 
1168 static void
1169 cmd_config_speed_all_parsed(void *parsed_result,
1170 			__attribute__((unused)) struct cmdline *cl,
1171 			__attribute__((unused)) void *data)
1172 {
1173 	struct cmd_config_speed_all *res = parsed_result;
1174 	uint32_t link_speed;
1175 	portid_t pid;
1176 
1177 	if (!all_ports_stopped()) {
1178 		printf("Please stop all ports first\n");
1179 		return;
1180 	}
1181 
1182 	if (parse_and_check_speed_duplex(res->value1, res->value2,
1183 			&link_speed) < 0)
1184 		return;
1185 
1186 	RTE_ETH_FOREACH_DEV(pid) {
1187 		ports[pid].dev_conf.link_speeds = link_speed;
1188 	}
1189 
1190 	cmd_reconfig_device_queue(RTE_PORT_ALL, 1, 1);
1191 }
1192 
1193 cmdline_parse_token_string_t cmd_config_speed_all_port =
1194 	TOKEN_STRING_INITIALIZER(struct cmd_config_speed_all, port, "port");
1195 cmdline_parse_token_string_t cmd_config_speed_all_keyword =
1196 	TOKEN_STRING_INITIALIZER(struct cmd_config_speed_all, keyword,
1197 							"config");
1198 cmdline_parse_token_string_t cmd_config_speed_all_all =
1199 	TOKEN_STRING_INITIALIZER(struct cmd_config_speed_all, all, "all");
1200 cmdline_parse_token_string_t cmd_config_speed_all_item1 =
1201 	TOKEN_STRING_INITIALIZER(struct cmd_config_speed_all, item1, "speed");
1202 cmdline_parse_token_string_t cmd_config_speed_all_value1 =
1203 	TOKEN_STRING_INITIALIZER(struct cmd_config_speed_all, value1,
1204 				"10#100#1000#10000#25000#40000#50000#100000#auto");
1205 cmdline_parse_token_string_t cmd_config_speed_all_item2 =
1206 	TOKEN_STRING_INITIALIZER(struct cmd_config_speed_all, item2, "duplex");
1207 cmdline_parse_token_string_t cmd_config_speed_all_value2 =
1208 	TOKEN_STRING_INITIALIZER(struct cmd_config_speed_all, value2,
1209 						"half#full#auto");
1210 
1211 cmdline_parse_inst_t cmd_config_speed_all = {
1212 	.f = cmd_config_speed_all_parsed,
1213 	.data = NULL,
1214 	.help_str = "port config all speed "
1215 		"10|100|1000|10000|25000|40000|50000|100000|auto duplex "
1216 							"half|full|auto",
1217 	.tokens = {
1218 		(void *)&cmd_config_speed_all_port,
1219 		(void *)&cmd_config_speed_all_keyword,
1220 		(void *)&cmd_config_speed_all_all,
1221 		(void *)&cmd_config_speed_all_item1,
1222 		(void *)&cmd_config_speed_all_value1,
1223 		(void *)&cmd_config_speed_all_item2,
1224 		(void *)&cmd_config_speed_all_value2,
1225 		NULL,
1226 	},
1227 };
1228 
1229 /* *** configure speed for specific port *** */
1230 struct cmd_config_speed_specific {
1231 	cmdline_fixed_string_t port;
1232 	cmdline_fixed_string_t keyword;
1233 	uint8_t id;
1234 	cmdline_fixed_string_t item1;
1235 	cmdline_fixed_string_t item2;
1236 	cmdline_fixed_string_t value1;
1237 	cmdline_fixed_string_t value2;
1238 };
1239 
1240 static void
1241 cmd_config_speed_specific_parsed(void *parsed_result,
1242 				__attribute__((unused)) struct cmdline *cl,
1243 				__attribute__((unused)) void *data)
1244 {
1245 	struct cmd_config_speed_specific *res = parsed_result;
1246 	uint32_t link_speed;
1247 
1248 	if (!all_ports_stopped()) {
1249 		printf("Please stop all ports first\n");
1250 		return;
1251 	}
1252 
1253 	if (port_id_is_invalid(res->id, ENABLED_WARN))
1254 		return;
1255 
1256 	if (parse_and_check_speed_duplex(res->value1, res->value2,
1257 			&link_speed) < 0)
1258 		return;
1259 
1260 	ports[res->id].dev_conf.link_speeds = link_speed;
1261 
1262 	cmd_reconfig_device_queue(RTE_PORT_ALL, 1, 1);
1263 }
1264 
1265 
1266 cmdline_parse_token_string_t cmd_config_speed_specific_port =
1267 	TOKEN_STRING_INITIALIZER(struct cmd_config_speed_specific, port,
1268 								"port");
1269 cmdline_parse_token_string_t cmd_config_speed_specific_keyword =
1270 	TOKEN_STRING_INITIALIZER(struct cmd_config_speed_specific, keyword,
1271 								"config");
1272 cmdline_parse_token_num_t cmd_config_speed_specific_id =
1273 	TOKEN_NUM_INITIALIZER(struct cmd_config_speed_specific, id, UINT8);
1274 cmdline_parse_token_string_t cmd_config_speed_specific_item1 =
1275 	TOKEN_STRING_INITIALIZER(struct cmd_config_speed_specific, item1,
1276 								"speed");
1277 cmdline_parse_token_string_t cmd_config_speed_specific_value1 =
1278 	TOKEN_STRING_INITIALIZER(struct cmd_config_speed_specific, value1,
1279 				"10#100#1000#10000#25000#40000#50000#100000#auto");
1280 cmdline_parse_token_string_t cmd_config_speed_specific_item2 =
1281 	TOKEN_STRING_INITIALIZER(struct cmd_config_speed_specific, item2,
1282 								"duplex");
1283 cmdline_parse_token_string_t cmd_config_speed_specific_value2 =
1284 	TOKEN_STRING_INITIALIZER(struct cmd_config_speed_specific, value2,
1285 							"half#full#auto");
1286 
1287 cmdline_parse_inst_t cmd_config_speed_specific = {
1288 	.f = cmd_config_speed_specific_parsed,
1289 	.data = NULL,
1290 	.help_str = "port config <port_id> speed "
1291 		"10|100|1000|10000|25000|40000|50000|100000|auto duplex "
1292 							"half|full|auto",
1293 	.tokens = {
1294 		(void *)&cmd_config_speed_specific_port,
1295 		(void *)&cmd_config_speed_specific_keyword,
1296 		(void *)&cmd_config_speed_specific_id,
1297 		(void *)&cmd_config_speed_specific_item1,
1298 		(void *)&cmd_config_speed_specific_value1,
1299 		(void *)&cmd_config_speed_specific_item2,
1300 		(void *)&cmd_config_speed_specific_value2,
1301 		NULL,
1302 	},
1303 };
1304 
1305 /* *** configure txq/rxq, txd/rxd *** */
1306 struct cmd_config_rx_tx {
1307 	cmdline_fixed_string_t port;
1308 	cmdline_fixed_string_t keyword;
1309 	cmdline_fixed_string_t all;
1310 	cmdline_fixed_string_t name;
1311 	uint16_t value;
1312 };
1313 
1314 static void
1315 cmd_config_rx_tx_parsed(void *parsed_result,
1316 			__attribute__((unused)) struct cmdline *cl,
1317 			__attribute__((unused)) void *data)
1318 {
1319 	struct cmd_config_rx_tx *res = parsed_result;
1320 
1321 	if (!all_ports_stopped()) {
1322 		printf("Please stop all ports first\n");
1323 		return;
1324 	}
1325 	if (!strcmp(res->name, "rxq")) {
1326 		if (!res->value && !nb_txq) {
1327 			printf("Warning: Either rx or tx queues should be non zero\n");
1328 			return;
1329 		}
1330 		nb_rxq = res->value;
1331 	}
1332 	else if (!strcmp(res->name, "txq")) {
1333 		if (!res->value && !nb_rxq) {
1334 			printf("Warning: Either rx or tx queues should be non zero\n");
1335 			return;
1336 		}
1337 		nb_txq = res->value;
1338 	}
1339 	else if (!strcmp(res->name, "rxd")) {
1340 		if (res->value <= 0 || res->value > RTE_TEST_RX_DESC_MAX) {
1341 			printf("rxd %d invalid - must be > 0 && <= %d\n",
1342 					res->value, RTE_TEST_RX_DESC_MAX);
1343 			return;
1344 		}
1345 		nb_rxd = res->value;
1346 	} else if (!strcmp(res->name, "txd")) {
1347 		if (res->value <= 0 || res->value > RTE_TEST_TX_DESC_MAX) {
1348 			printf("txd %d invalid - must be > 0 && <= %d\n",
1349 					res->value, RTE_TEST_TX_DESC_MAX);
1350 			return;
1351 		}
1352 		nb_txd = res->value;
1353 	} else {
1354 		printf("Unknown parameter\n");
1355 		return;
1356 	}
1357 
1358 	fwd_config_setup();
1359 
1360 	init_port_config();
1361 
1362 	cmd_reconfig_device_queue(RTE_PORT_ALL, 1, 1);
1363 }
1364 
1365 cmdline_parse_token_string_t cmd_config_rx_tx_port =
1366 	TOKEN_STRING_INITIALIZER(struct cmd_config_rx_tx, port, "port");
1367 cmdline_parse_token_string_t cmd_config_rx_tx_keyword =
1368 	TOKEN_STRING_INITIALIZER(struct cmd_config_rx_tx, keyword, "config");
1369 cmdline_parse_token_string_t cmd_config_rx_tx_all =
1370 	TOKEN_STRING_INITIALIZER(struct cmd_config_rx_tx, all, "all");
1371 cmdline_parse_token_string_t cmd_config_rx_tx_name =
1372 	TOKEN_STRING_INITIALIZER(struct cmd_config_rx_tx, name,
1373 						"rxq#txq#rxd#txd");
1374 cmdline_parse_token_num_t cmd_config_rx_tx_value =
1375 	TOKEN_NUM_INITIALIZER(struct cmd_config_rx_tx, value, UINT16);
1376 
1377 cmdline_parse_inst_t cmd_config_rx_tx = {
1378 	.f = cmd_config_rx_tx_parsed,
1379 	.data = NULL,
1380 	.help_str = "port config all rxq|txq|rxd|txd <value>",
1381 	.tokens = {
1382 		(void *)&cmd_config_rx_tx_port,
1383 		(void *)&cmd_config_rx_tx_keyword,
1384 		(void *)&cmd_config_rx_tx_all,
1385 		(void *)&cmd_config_rx_tx_name,
1386 		(void *)&cmd_config_rx_tx_value,
1387 		NULL,
1388 	},
1389 };
1390 
1391 /* *** config max packet length *** */
1392 struct cmd_config_max_pkt_len_result {
1393 	cmdline_fixed_string_t port;
1394 	cmdline_fixed_string_t keyword;
1395 	cmdline_fixed_string_t all;
1396 	cmdline_fixed_string_t name;
1397 	uint32_t value;
1398 };
1399 
1400 static void
1401 cmd_config_max_pkt_len_parsed(void *parsed_result,
1402 				__attribute__((unused)) struct cmdline *cl,
1403 				__attribute__((unused)) void *data)
1404 {
1405 	struct cmd_config_max_pkt_len_result *res = parsed_result;
1406 
1407 	if (!all_ports_stopped()) {
1408 		printf("Please stop all ports first\n");
1409 		return;
1410 	}
1411 
1412 	if (!strcmp(res->name, "max-pkt-len")) {
1413 		if (res->value < ETHER_MIN_LEN) {
1414 			printf("max-pkt-len can not be less than %d\n",
1415 							ETHER_MIN_LEN);
1416 			return;
1417 		}
1418 		if (res->value == rx_mode.max_rx_pkt_len)
1419 			return;
1420 
1421 		rx_mode.max_rx_pkt_len = res->value;
1422 		if (res->value > ETHER_MAX_LEN)
1423 			rx_mode.jumbo_frame = 1;
1424 		else
1425 			rx_mode.jumbo_frame = 0;
1426 	} else {
1427 		printf("Unknown parameter\n");
1428 		return;
1429 	}
1430 
1431 	init_port_config();
1432 
1433 	cmd_reconfig_device_queue(RTE_PORT_ALL, 1, 1);
1434 }
1435 
1436 cmdline_parse_token_string_t cmd_config_max_pkt_len_port =
1437 	TOKEN_STRING_INITIALIZER(struct cmd_config_max_pkt_len_result, port,
1438 								"port");
1439 cmdline_parse_token_string_t cmd_config_max_pkt_len_keyword =
1440 	TOKEN_STRING_INITIALIZER(struct cmd_config_max_pkt_len_result, keyword,
1441 								"config");
1442 cmdline_parse_token_string_t cmd_config_max_pkt_len_all =
1443 	TOKEN_STRING_INITIALIZER(struct cmd_config_max_pkt_len_result, all,
1444 								"all");
1445 cmdline_parse_token_string_t cmd_config_max_pkt_len_name =
1446 	TOKEN_STRING_INITIALIZER(struct cmd_config_max_pkt_len_result, name,
1447 								"max-pkt-len");
1448 cmdline_parse_token_num_t cmd_config_max_pkt_len_value =
1449 	TOKEN_NUM_INITIALIZER(struct cmd_config_max_pkt_len_result, value,
1450 								UINT32);
1451 
1452 cmdline_parse_inst_t cmd_config_max_pkt_len = {
1453 	.f = cmd_config_max_pkt_len_parsed,
1454 	.data = NULL,
1455 	.help_str = "port config all max-pkt-len <value>",
1456 	.tokens = {
1457 		(void *)&cmd_config_max_pkt_len_port,
1458 		(void *)&cmd_config_max_pkt_len_keyword,
1459 		(void *)&cmd_config_max_pkt_len_all,
1460 		(void *)&cmd_config_max_pkt_len_name,
1461 		(void *)&cmd_config_max_pkt_len_value,
1462 		NULL,
1463 	},
1464 };
1465 
1466 /* *** configure port MTU *** */
1467 struct cmd_config_mtu_result {
1468 	cmdline_fixed_string_t port;
1469 	cmdline_fixed_string_t keyword;
1470 	cmdline_fixed_string_t mtu;
1471 	uint8_t port_id;
1472 	uint16_t value;
1473 };
1474 
1475 static void
1476 cmd_config_mtu_parsed(void *parsed_result,
1477 		      __attribute__((unused)) struct cmdline *cl,
1478 		      __attribute__((unused)) void *data)
1479 {
1480 	struct cmd_config_mtu_result *res = parsed_result;
1481 
1482 	if (res->value < ETHER_MIN_LEN) {
1483 		printf("mtu cannot be less than %d\n", ETHER_MIN_LEN);
1484 		return;
1485 	}
1486 	port_mtu_set(res->port_id, res->value);
1487 }
1488 
1489 cmdline_parse_token_string_t cmd_config_mtu_port =
1490 	TOKEN_STRING_INITIALIZER(struct cmd_config_mtu_result, port,
1491 				 "port");
1492 cmdline_parse_token_string_t cmd_config_mtu_keyword =
1493 	TOKEN_STRING_INITIALIZER(struct cmd_config_mtu_result, keyword,
1494 				 "config");
1495 cmdline_parse_token_string_t cmd_config_mtu_mtu =
1496 	TOKEN_STRING_INITIALIZER(struct cmd_config_mtu_result, keyword,
1497 				 "mtu");
1498 cmdline_parse_token_num_t cmd_config_mtu_port_id =
1499 	TOKEN_NUM_INITIALIZER(struct cmd_config_mtu_result, port_id, UINT8);
1500 cmdline_parse_token_num_t cmd_config_mtu_value =
1501 	TOKEN_NUM_INITIALIZER(struct cmd_config_mtu_result, value, UINT16);
1502 
1503 cmdline_parse_inst_t cmd_config_mtu = {
1504 	.f = cmd_config_mtu_parsed,
1505 	.data = NULL,
1506 	.help_str = "port config mtu <port_id> <value>",
1507 	.tokens = {
1508 		(void *)&cmd_config_mtu_port,
1509 		(void *)&cmd_config_mtu_keyword,
1510 		(void *)&cmd_config_mtu_mtu,
1511 		(void *)&cmd_config_mtu_port_id,
1512 		(void *)&cmd_config_mtu_value,
1513 		NULL,
1514 	},
1515 };
1516 
1517 /* *** configure rx mode *** */
1518 struct cmd_config_rx_mode_flag {
1519 	cmdline_fixed_string_t port;
1520 	cmdline_fixed_string_t keyword;
1521 	cmdline_fixed_string_t all;
1522 	cmdline_fixed_string_t name;
1523 	cmdline_fixed_string_t value;
1524 };
1525 
1526 static void
1527 cmd_config_rx_mode_flag_parsed(void *parsed_result,
1528 				__attribute__((unused)) struct cmdline *cl,
1529 				__attribute__((unused)) void *data)
1530 {
1531 	struct cmd_config_rx_mode_flag *res = parsed_result;
1532 
1533 	if (!all_ports_stopped()) {
1534 		printf("Please stop all ports first\n");
1535 		return;
1536 	}
1537 
1538 	if (!strcmp(res->name, "crc-strip")) {
1539 		if (!strcmp(res->value, "on"))
1540 			rx_mode.hw_strip_crc = 1;
1541 		else if (!strcmp(res->value, "off"))
1542 			rx_mode.hw_strip_crc = 0;
1543 		else {
1544 			printf("Unknown parameter\n");
1545 			return;
1546 		}
1547 	} else if (!strcmp(res->name, "scatter")) {
1548 		if (!strcmp(res->value, "on"))
1549 			rx_mode.enable_scatter = 1;
1550 		else if (!strcmp(res->value, "off"))
1551 			rx_mode.enable_scatter = 0;
1552 		else {
1553 			printf("Unknown parameter\n");
1554 			return;
1555 		}
1556 	} else if (!strcmp(res->name, "rx-cksum")) {
1557 		if (!strcmp(res->value, "on"))
1558 			rx_mode.hw_ip_checksum = 1;
1559 		else if (!strcmp(res->value, "off"))
1560 			rx_mode.hw_ip_checksum = 0;
1561 		else {
1562 			printf("Unknown parameter\n");
1563 			return;
1564 		}
1565 	} else if (!strcmp(res->name, "hw-vlan")) {
1566 		if (!strcmp(res->value, "on")) {
1567 			rx_mode.hw_vlan_filter = 1;
1568 			rx_mode.hw_vlan_strip  = 1;
1569 		}
1570 		else if (!strcmp(res->value, "off")) {
1571 			rx_mode.hw_vlan_filter = 0;
1572 			rx_mode.hw_vlan_strip  = 0;
1573 		}
1574 		else {
1575 			printf("Unknown parameter\n");
1576 			return;
1577 		}
1578 	} else if (!strcmp(res->name, "hw-vlan-filter")) {
1579 		if (!strcmp(res->value, "on"))
1580 			rx_mode.hw_vlan_filter = 1;
1581 		else if (!strcmp(res->value, "off"))
1582 			rx_mode.hw_vlan_filter = 0;
1583 		else {
1584 			printf("Unknown parameter\n");
1585 			return;
1586 		}
1587 	} else if (!strcmp(res->name, "hw-vlan-strip")) {
1588 		if (!strcmp(res->value, "on"))
1589 			rx_mode.hw_vlan_strip  = 1;
1590 		else if (!strcmp(res->value, "off"))
1591 			rx_mode.hw_vlan_strip  = 0;
1592 		else {
1593 			printf("Unknown parameter\n");
1594 			return;
1595 		}
1596 	} else if (!strcmp(res->name, "hw-vlan-extend")) {
1597 		if (!strcmp(res->value, "on"))
1598 			rx_mode.hw_vlan_extend = 1;
1599 		else if (!strcmp(res->value, "off"))
1600 			rx_mode.hw_vlan_extend = 0;
1601 		else {
1602 			printf("Unknown parameter\n");
1603 			return;
1604 		}
1605 	} else if (!strcmp(res->name, "drop-en")) {
1606 		if (!strcmp(res->value, "on"))
1607 			rx_drop_en = 1;
1608 		else if (!strcmp(res->value, "off"))
1609 			rx_drop_en = 0;
1610 		else {
1611 			printf("Unknown parameter\n");
1612 			return;
1613 		}
1614 	} else {
1615 		printf("Unknown parameter\n");
1616 		return;
1617 	}
1618 
1619 	init_port_config();
1620 
1621 	cmd_reconfig_device_queue(RTE_PORT_ALL, 1, 1);
1622 }
1623 
1624 cmdline_parse_token_string_t cmd_config_rx_mode_flag_port =
1625 	TOKEN_STRING_INITIALIZER(struct cmd_config_rx_mode_flag, port, "port");
1626 cmdline_parse_token_string_t cmd_config_rx_mode_flag_keyword =
1627 	TOKEN_STRING_INITIALIZER(struct cmd_config_rx_mode_flag, keyword,
1628 								"config");
1629 cmdline_parse_token_string_t cmd_config_rx_mode_flag_all =
1630 	TOKEN_STRING_INITIALIZER(struct cmd_config_rx_mode_flag, all, "all");
1631 cmdline_parse_token_string_t cmd_config_rx_mode_flag_name =
1632 	TOKEN_STRING_INITIALIZER(struct cmd_config_rx_mode_flag, name,
1633 					"crc-strip#scatter#rx-cksum#hw-vlan#"
1634 					"hw-vlan-filter#hw-vlan-strip#hw-vlan-extend");
1635 cmdline_parse_token_string_t cmd_config_rx_mode_flag_value =
1636 	TOKEN_STRING_INITIALIZER(struct cmd_config_rx_mode_flag, value,
1637 							"on#off");
1638 
1639 cmdline_parse_inst_t cmd_config_rx_mode_flag = {
1640 	.f = cmd_config_rx_mode_flag_parsed,
1641 	.data = NULL,
1642 	.help_str = "port config all crc-strip|scatter|rx-cksum|hw-vlan|"
1643 		"hw-vlan-filter|hw-vlan-strip|hw-vlan-extend on|off",
1644 	.tokens = {
1645 		(void *)&cmd_config_rx_mode_flag_port,
1646 		(void *)&cmd_config_rx_mode_flag_keyword,
1647 		(void *)&cmd_config_rx_mode_flag_all,
1648 		(void *)&cmd_config_rx_mode_flag_name,
1649 		(void *)&cmd_config_rx_mode_flag_value,
1650 		NULL,
1651 	},
1652 };
1653 
1654 /* *** configure rss *** */
1655 struct cmd_config_rss {
1656 	cmdline_fixed_string_t port;
1657 	cmdline_fixed_string_t keyword;
1658 	cmdline_fixed_string_t all;
1659 	cmdline_fixed_string_t name;
1660 	cmdline_fixed_string_t value;
1661 };
1662 
1663 static void
1664 cmd_config_rss_parsed(void *parsed_result,
1665 			__attribute__((unused)) struct cmdline *cl,
1666 			__attribute__((unused)) void *data)
1667 {
1668 	struct cmd_config_rss *res = parsed_result;
1669 	struct rte_eth_rss_conf rss_conf;
1670 	int diag;
1671 	uint8_t i;
1672 
1673 	if (!strcmp(res->value, "all"))
1674 		rss_conf.rss_hf = ETH_RSS_IP | ETH_RSS_TCP |
1675 				ETH_RSS_UDP | ETH_RSS_SCTP |
1676 					ETH_RSS_L2_PAYLOAD;
1677 	else if (!strcmp(res->value, "ip"))
1678 		rss_conf.rss_hf = ETH_RSS_IP;
1679 	else if (!strcmp(res->value, "udp"))
1680 		rss_conf.rss_hf = ETH_RSS_UDP;
1681 	else if (!strcmp(res->value, "tcp"))
1682 		rss_conf.rss_hf = ETH_RSS_TCP;
1683 	else if (!strcmp(res->value, "sctp"))
1684 		rss_conf.rss_hf = ETH_RSS_SCTP;
1685 	else if (!strcmp(res->value, "ether"))
1686 		rss_conf.rss_hf = ETH_RSS_L2_PAYLOAD;
1687 	else if (!strcmp(res->value, "port"))
1688 		rss_conf.rss_hf = ETH_RSS_PORT;
1689 	else if (!strcmp(res->value, "vxlan"))
1690 		rss_conf.rss_hf = ETH_RSS_VXLAN;
1691 	else if (!strcmp(res->value, "geneve"))
1692 		rss_conf.rss_hf = ETH_RSS_GENEVE;
1693 	else if (!strcmp(res->value, "nvgre"))
1694 		rss_conf.rss_hf = ETH_RSS_NVGRE;
1695 	else if (!strcmp(res->value, "none"))
1696 		rss_conf.rss_hf = 0;
1697 	else {
1698 		printf("Unknown parameter\n");
1699 		return;
1700 	}
1701 	rss_conf.rss_key = NULL;
1702 	for (i = 0; i < rte_eth_dev_count(); i++) {
1703 		diag = rte_eth_dev_rss_hash_update(i, &rss_conf);
1704 		if (diag < 0)
1705 			printf("Configuration of RSS hash at ethernet port %d "
1706 				"failed with error (%d): %s.\n",
1707 				i, -diag, strerror(-diag));
1708 	}
1709 }
1710 
1711 cmdline_parse_token_string_t cmd_config_rss_port =
1712 	TOKEN_STRING_INITIALIZER(struct cmd_config_rss, port, "port");
1713 cmdline_parse_token_string_t cmd_config_rss_keyword =
1714 	TOKEN_STRING_INITIALIZER(struct cmd_config_rss, keyword, "config");
1715 cmdline_parse_token_string_t cmd_config_rss_all =
1716 	TOKEN_STRING_INITIALIZER(struct cmd_config_rss, all, "all");
1717 cmdline_parse_token_string_t cmd_config_rss_name =
1718 	TOKEN_STRING_INITIALIZER(struct cmd_config_rss, name, "rss");
1719 cmdline_parse_token_string_t cmd_config_rss_value =
1720 	TOKEN_STRING_INITIALIZER(struct cmd_config_rss, value,
1721 		"all#ip#tcp#udp#sctp#ether#port#vxlan#geneve#nvgre#none");
1722 
1723 cmdline_parse_inst_t cmd_config_rss = {
1724 	.f = cmd_config_rss_parsed,
1725 	.data = NULL,
1726 	.help_str = "port config all rss "
1727 		"all|ip|tcp|udp|sctp|ether|port|vxlan|geneve|nvgre|none",
1728 	.tokens = {
1729 		(void *)&cmd_config_rss_port,
1730 		(void *)&cmd_config_rss_keyword,
1731 		(void *)&cmd_config_rss_all,
1732 		(void *)&cmd_config_rss_name,
1733 		(void *)&cmd_config_rss_value,
1734 		NULL,
1735 	},
1736 };
1737 
1738 /* *** configure rss hash key *** */
1739 struct cmd_config_rss_hash_key {
1740 	cmdline_fixed_string_t port;
1741 	cmdline_fixed_string_t config;
1742 	uint8_t port_id;
1743 	cmdline_fixed_string_t rss_hash_key;
1744 	cmdline_fixed_string_t rss_type;
1745 	cmdline_fixed_string_t key;
1746 };
1747 
1748 static uint8_t
1749 hexa_digit_to_value(char hexa_digit)
1750 {
1751 	if ((hexa_digit >= '0') && (hexa_digit <= '9'))
1752 		return (uint8_t) (hexa_digit - '0');
1753 	if ((hexa_digit >= 'a') && (hexa_digit <= 'f'))
1754 		return (uint8_t) ((hexa_digit - 'a') + 10);
1755 	if ((hexa_digit >= 'A') && (hexa_digit <= 'F'))
1756 		return (uint8_t) ((hexa_digit - 'A') + 10);
1757 	/* Invalid hexa digit */
1758 	return 0xFF;
1759 }
1760 
1761 static uint8_t
1762 parse_and_check_key_hexa_digit(char *key, int idx)
1763 {
1764 	uint8_t hexa_v;
1765 
1766 	hexa_v = hexa_digit_to_value(key[idx]);
1767 	if (hexa_v == 0xFF)
1768 		printf("invalid key: character %c at position %d is not a "
1769 		       "valid hexa digit\n", key[idx], idx);
1770 	return hexa_v;
1771 }
1772 
1773 static void
1774 cmd_config_rss_hash_key_parsed(void *parsed_result,
1775 			       __attribute__((unused)) struct cmdline *cl,
1776 			       __attribute__((unused)) void *data)
1777 {
1778 	struct cmd_config_rss_hash_key *res = parsed_result;
1779 	uint8_t hash_key[RSS_HASH_KEY_LENGTH];
1780 	uint8_t xdgt0;
1781 	uint8_t xdgt1;
1782 	int i;
1783 	struct rte_eth_dev_info dev_info;
1784 	uint8_t hash_key_size;
1785 	uint32_t key_len;
1786 
1787 	memset(&dev_info, 0, sizeof(dev_info));
1788 	rte_eth_dev_info_get(res->port_id, &dev_info);
1789 	if (dev_info.hash_key_size > 0 &&
1790 			dev_info.hash_key_size <= sizeof(hash_key))
1791 		hash_key_size = dev_info.hash_key_size;
1792 	else {
1793 		printf("dev_info did not provide a valid hash key size\n");
1794 		return;
1795 	}
1796 	/* Check the length of the RSS hash key */
1797 	key_len = strlen(res->key);
1798 	if (key_len != (hash_key_size * 2)) {
1799 		printf("key length: %d invalid - key must be a string of %d"
1800 			   " hexa-decimal numbers\n",
1801 			   (int) key_len, hash_key_size * 2);
1802 		return;
1803 	}
1804 	/* Translate RSS hash key into binary representation */
1805 	for (i = 0; i < hash_key_size; i++) {
1806 		xdgt0 = parse_and_check_key_hexa_digit(res->key, (i * 2));
1807 		if (xdgt0 == 0xFF)
1808 			return;
1809 		xdgt1 = parse_and_check_key_hexa_digit(res->key, (i * 2) + 1);
1810 		if (xdgt1 == 0xFF)
1811 			return;
1812 		hash_key[i] = (uint8_t) ((xdgt0 * 16) + xdgt1);
1813 	}
1814 	port_rss_hash_key_update(res->port_id, res->rss_type, hash_key,
1815 			hash_key_size);
1816 }
1817 
1818 cmdline_parse_token_string_t cmd_config_rss_hash_key_port =
1819 	TOKEN_STRING_INITIALIZER(struct cmd_config_rss_hash_key, port, "port");
1820 cmdline_parse_token_string_t cmd_config_rss_hash_key_config =
1821 	TOKEN_STRING_INITIALIZER(struct cmd_config_rss_hash_key, config,
1822 				 "config");
1823 cmdline_parse_token_num_t cmd_config_rss_hash_key_port_id =
1824 	TOKEN_NUM_INITIALIZER(struct cmd_config_rss_hash_key, port_id, UINT8);
1825 cmdline_parse_token_string_t cmd_config_rss_hash_key_rss_hash_key =
1826 	TOKEN_STRING_INITIALIZER(struct cmd_config_rss_hash_key,
1827 				 rss_hash_key, "rss-hash-key");
1828 cmdline_parse_token_string_t cmd_config_rss_hash_key_rss_type =
1829 	TOKEN_STRING_INITIALIZER(struct cmd_config_rss_hash_key, rss_type,
1830 				 "ipv4#ipv4-frag#ipv4-tcp#ipv4-udp#ipv4-sctp#"
1831 				 "ipv4-other#ipv6#ipv6-frag#ipv6-tcp#ipv6-udp#"
1832 				 "ipv6-sctp#ipv6-other#l2-payload#ipv6-ex#"
1833 				 "ipv6-tcp-ex#ipv6-udp-ex");
1834 cmdline_parse_token_string_t cmd_config_rss_hash_key_value =
1835 	TOKEN_STRING_INITIALIZER(struct cmd_config_rss_hash_key, key, NULL);
1836 
1837 cmdline_parse_inst_t cmd_config_rss_hash_key = {
1838 	.f = cmd_config_rss_hash_key_parsed,
1839 	.data = NULL,
1840 	.help_str = "port config <port_id> rss-hash-key "
1841 		"ipv4|ipv4-frag|ipv4-tcp|ipv4-udp|ipv4-sctp|ipv4-other|"
1842 		"ipv6|ipv6-frag|ipv6-tcp|ipv6-udp|ipv6-sctp|ipv6-other|"
1843 		"l2-payload|ipv6-ex|ipv6-tcp-ex|ipv6-udp-ex "
1844 		"<string of hex digits (variable length, NIC dependent)>",
1845 	.tokens = {
1846 		(void *)&cmd_config_rss_hash_key_port,
1847 		(void *)&cmd_config_rss_hash_key_config,
1848 		(void *)&cmd_config_rss_hash_key_port_id,
1849 		(void *)&cmd_config_rss_hash_key_rss_hash_key,
1850 		(void *)&cmd_config_rss_hash_key_rss_type,
1851 		(void *)&cmd_config_rss_hash_key_value,
1852 		NULL,
1853 	},
1854 };
1855 
1856 /* *** configure port rxq/txq start/stop *** */
1857 struct cmd_config_rxtx_queue {
1858 	cmdline_fixed_string_t port;
1859 	uint8_t portid;
1860 	cmdline_fixed_string_t rxtxq;
1861 	uint16_t qid;
1862 	cmdline_fixed_string_t opname;
1863 };
1864 
1865 static void
1866 cmd_config_rxtx_queue_parsed(void *parsed_result,
1867 			__attribute__((unused)) struct cmdline *cl,
1868 			__attribute__((unused)) void *data)
1869 {
1870 	struct cmd_config_rxtx_queue *res = parsed_result;
1871 	uint8_t isrx;
1872 	uint8_t isstart;
1873 	int ret = 0;
1874 
1875 	if (test_done == 0) {
1876 		printf("Please stop forwarding first\n");
1877 		return;
1878 	}
1879 
1880 	if (port_id_is_invalid(res->portid, ENABLED_WARN))
1881 		return;
1882 
1883 	if (port_is_started(res->portid) != 1) {
1884 		printf("Please start port %u first\n", res->portid);
1885 		return;
1886 	}
1887 
1888 	if (!strcmp(res->rxtxq, "rxq"))
1889 		isrx = 1;
1890 	else if (!strcmp(res->rxtxq, "txq"))
1891 		isrx = 0;
1892 	else {
1893 		printf("Unknown parameter\n");
1894 		return;
1895 	}
1896 
1897 	if (isrx && rx_queue_id_is_invalid(res->qid))
1898 		return;
1899 	else if (!isrx && tx_queue_id_is_invalid(res->qid))
1900 		return;
1901 
1902 	if (!strcmp(res->opname, "start"))
1903 		isstart = 1;
1904 	else if (!strcmp(res->opname, "stop"))
1905 		isstart = 0;
1906 	else {
1907 		printf("Unknown parameter\n");
1908 		return;
1909 	}
1910 
1911 	if (isstart && isrx)
1912 		ret = rte_eth_dev_rx_queue_start(res->portid, res->qid);
1913 	else if (!isstart && isrx)
1914 		ret = rte_eth_dev_rx_queue_stop(res->portid, res->qid);
1915 	else if (isstart && !isrx)
1916 		ret = rte_eth_dev_tx_queue_start(res->portid, res->qid);
1917 	else
1918 		ret = rte_eth_dev_tx_queue_stop(res->portid, res->qid);
1919 
1920 	if (ret == -ENOTSUP)
1921 		printf("Function not supported in PMD driver\n");
1922 }
1923 
1924 cmdline_parse_token_string_t cmd_config_rxtx_queue_port =
1925 	TOKEN_STRING_INITIALIZER(struct cmd_config_rxtx_queue, port, "port");
1926 cmdline_parse_token_num_t cmd_config_rxtx_queue_portid =
1927 	TOKEN_NUM_INITIALIZER(struct cmd_config_rxtx_queue, portid, UINT8);
1928 cmdline_parse_token_string_t cmd_config_rxtx_queue_rxtxq =
1929 	TOKEN_STRING_INITIALIZER(struct cmd_config_rxtx_queue, rxtxq, "rxq#txq");
1930 cmdline_parse_token_num_t cmd_config_rxtx_queue_qid =
1931 	TOKEN_NUM_INITIALIZER(struct cmd_config_rxtx_queue, qid, UINT16);
1932 cmdline_parse_token_string_t cmd_config_rxtx_queue_opname =
1933 	TOKEN_STRING_INITIALIZER(struct cmd_config_rxtx_queue, opname,
1934 						"start#stop");
1935 
1936 cmdline_parse_inst_t cmd_config_rxtx_queue = {
1937 	.f = cmd_config_rxtx_queue_parsed,
1938 	.data = NULL,
1939 	.help_str = "port <port_id> rxq|txq <queue_id> start|stop",
1940 	.tokens = {
1941 		(void *)&cmd_config_speed_all_port,
1942 		(void *)&cmd_config_rxtx_queue_portid,
1943 		(void *)&cmd_config_rxtx_queue_rxtxq,
1944 		(void *)&cmd_config_rxtx_queue_qid,
1945 		(void *)&cmd_config_rxtx_queue_opname,
1946 		NULL,
1947 	},
1948 };
1949 
1950 /* *** Configure RSS RETA *** */
1951 struct cmd_config_rss_reta {
1952 	cmdline_fixed_string_t port;
1953 	cmdline_fixed_string_t keyword;
1954 	uint8_t port_id;
1955 	cmdline_fixed_string_t name;
1956 	cmdline_fixed_string_t list_name;
1957 	cmdline_fixed_string_t list_of_items;
1958 };
1959 
1960 static int
1961 parse_reta_config(const char *str,
1962 		  struct rte_eth_rss_reta_entry64 *reta_conf,
1963 		  uint16_t nb_entries)
1964 {
1965 	int i;
1966 	unsigned size;
1967 	uint16_t hash_index, idx, shift;
1968 	uint16_t nb_queue;
1969 	char s[256];
1970 	const char *p, *p0 = str;
1971 	char *end;
1972 	enum fieldnames {
1973 		FLD_HASH_INDEX = 0,
1974 		FLD_QUEUE,
1975 		_NUM_FLD
1976 	};
1977 	unsigned long int_fld[_NUM_FLD];
1978 	char *str_fld[_NUM_FLD];
1979 
1980 	while ((p = strchr(p0,'(')) != NULL) {
1981 		++p;
1982 		if((p0 = strchr(p,')')) == NULL)
1983 			return -1;
1984 
1985 		size = p0 - p;
1986 		if(size >= sizeof(s))
1987 			return -1;
1988 
1989 		snprintf(s, sizeof(s), "%.*s", size, p);
1990 		if (rte_strsplit(s, sizeof(s), str_fld, _NUM_FLD, ',') != _NUM_FLD)
1991 			return -1;
1992 		for (i = 0; i < _NUM_FLD; i++) {
1993 			errno = 0;
1994 			int_fld[i] = strtoul(str_fld[i], &end, 0);
1995 			if (errno != 0 || end == str_fld[i] ||
1996 					int_fld[i] > 65535)
1997 				return -1;
1998 		}
1999 
2000 		hash_index = (uint16_t)int_fld[FLD_HASH_INDEX];
2001 		nb_queue = (uint16_t)int_fld[FLD_QUEUE];
2002 
2003 		if (hash_index >= nb_entries) {
2004 			printf("Invalid RETA hash index=%d\n", hash_index);
2005 			return -1;
2006 		}
2007 
2008 		idx = hash_index / RTE_RETA_GROUP_SIZE;
2009 		shift = hash_index % RTE_RETA_GROUP_SIZE;
2010 		reta_conf[idx].mask |= (1ULL << shift);
2011 		reta_conf[idx].reta[shift] = nb_queue;
2012 	}
2013 
2014 	return 0;
2015 }
2016 
2017 static void
2018 cmd_set_rss_reta_parsed(void *parsed_result,
2019 			__attribute__((unused)) struct cmdline *cl,
2020 			__attribute__((unused)) void *data)
2021 {
2022 	int ret;
2023 	struct rte_eth_dev_info dev_info;
2024 	struct rte_eth_rss_reta_entry64 reta_conf[8];
2025 	struct cmd_config_rss_reta *res = parsed_result;
2026 
2027 	memset(&dev_info, 0, sizeof(dev_info));
2028 	rte_eth_dev_info_get(res->port_id, &dev_info);
2029 	if (dev_info.reta_size == 0) {
2030 		printf("Redirection table size is 0 which is "
2031 					"invalid for RSS\n");
2032 		return;
2033 	} else
2034 		printf("The reta size of port %d is %u\n",
2035 			res->port_id, dev_info.reta_size);
2036 	if (dev_info.reta_size > ETH_RSS_RETA_SIZE_512) {
2037 		printf("Currently do not support more than %u entries of "
2038 			"redirection table\n", ETH_RSS_RETA_SIZE_512);
2039 		return;
2040 	}
2041 
2042 	memset(reta_conf, 0, sizeof(reta_conf));
2043 	if (!strcmp(res->list_name, "reta")) {
2044 		if (parse_reta_config(res->list_of_items, reta_conf,
2045 						dev_info.reta_size)) {
2046 			printf("Invalid RSS Redirection Table "
2047 					"config entered\n");
2048 			return;
2049 		}
2050 		ret = rte_eth_dev_rss_reta_update(res->port_id,
2051 				reta_conf, dev_info.reta_size);
2052 		if (ret != 0)
2053 			printf("Bad redirection table parameter, "
2054 					"return code = %d \n", ret);
2055 	}
2056 }
2057 
2058 cmdline_parse_token_string_t cmd_config_rss_reta_port =
2059 	TOKEN_STRING_INITIALIZER(struct cmd_config_rss_reta, port, "port");
2060 cmdline_parse_token_string_t cmd_config_rss_reta_keyword =
2061 	TOKEN_STRING_INITIALIZER(struct cmd_config_rss_reta, keyword, "config");
2062 cmdline_parse_token_num_t cmd_config_rss_reta_port_id =
2063 	TOKEN_NUM_INITIALIZER(struct cmd_config_rss_reta, port_id, UINT8);
2064 cmdline_parse_token_string_t cmd_config_rss_reta_name =
2065 	TOKEN_STRING_INITIALIZER(struct cmd_config_rss_reta, name, "rss");
2066 cmdline_parse_token_string_t cmd_config_rss_reta_list_name =
2067 	TOKEN_STRING_INITIALIZER(struct cmd_config_rss_reta, list_name, "reta");
2068 cmdline_parse_token_string_t cmd_config_rss_reta_list_of_items =
2069         TOKEN_STRING_INITIALIZER(struct cmd_config_rss_reta, list_of_items,
2070                                  NULL);
2071 cmdline_parse_inst_t cmd_config_rss_reta = {
2072 	.f = cmd_set_rss_reta_parsed,
2073 	.data = NULL,
2074 	.help_str = "port config <port_id> rss reta <hash,queue[,hash,queue]*>",
2075 	.tokens = {
2076 		(void *)&cmd_config_rss_reta_port,
2077 		(void *)&cmd_config_rss_reta_keyword,
2078 		(void *)&cmd_config_rss_reta_port_id,
2079 		(void *)&cmd_config_rss_reta_name,
2080 		(void *)&cmd_config_rss_reta_list_name,
2081 		(void *)&cmd_config_rss_reta_list_of_items,
2082 		NULL,
2083 	},
2084 };
2085 
2086 /* *** SHOW PORT RETA INFO *** */
2087 struct cmd_showport_reta {
2088 	cmdline_fixed_string_t show;
2089 	cmdline_fixed_string_t port;
2090 	uint8_t port_id;
2091 	cmdline_fixed_string_t rss;
2092 	cmdline_fixed_string_t reta;
2093 	uint16_t size;
2094 	cmdline_fixed_string_t list_of_items;
2095 };
2096 
2097 static int
2098 showport_parse_reta_config(struct rte_eth_rss_reta_entry64 *conf,
2099 			   uint16_t nb_entries,
2100 			   char *str)
2101 {
2102 	uint32_t size;
2103 	const char *p, *p0 = str;
2104 	char s[256];
2105 	char *end;
2106 	char *str_fld[8];
2107 	uint16_t i;
2108 	uint16_t num = (nb_entries + RTE_RETA_GROUP_SIZE - 1) /
2109 			RTE_RETA_GROUP_SIZE;
2110 	int ret;
2111 
2112 	p = strchr(p0, '(');
2113 	if (p == NULL)
2114 		return -1;
2115 	p++;
2116 	p0 = strchr(p, ')');
2117 	if (p0 == NULL)
2118 		return -1;
2119 	size = p0 - p;
2120 	if (size >= sizeof(s)) {
2121 		printf("The string size exceeds the internal buffer size\n");
2122 		return -1;
2123 	}
2124 	snprintf(s, sizeof(s), "%.*s", size, p);
2125 	ret = rte_strsplit(s, sizeof(s), str_fld, num, ',');
2126 	if (ret <= 0 || ret != num) {
2127 		printf("The bits of masks do not match the number of "
2128 					"reta entries: %u\n", num);
2129 		return -1;
2130 	}
2131 	for (i = 0; i < ret; i++)
2132 		conf[i].mask = (uint64_t)strtoul(str_fld[i], &end, 0);
2133 
2134 	return 0;
2135 }
2136 
2137 static void
2138 cmd_showport_reta_parsed(void *parsed_result,
2139 			 __attribute__((unused)) struct cmdline *cl,
2140 			 __attribute__((unused)) void *data)
2141 {
2142 	struct cmd_showport_reta *res = parsed_result;
2143 	struct rte_eth_rss_reta_entry64 reta_conf[8];
2144 	struct rte_eth_dev_info dev_info;
2145 
2146 	memset(&dev_info, 0, sizeof(dev_info));
2147 	rte_eth_dev_info_get(res->port_id, &dev_info);
2148 	if (dev_info.reta_size == 0 || res->size != dev_info.reta_size ||
2149 				res->size > ETH_RSS_RETA_SIZE_512) {
2150 		printf("Invalid redirection table size: %u\n", res->size);
2151 		return;
2152 	}
2153 
2154 	memset(reta_conf, 0, sizeof(reta_conf));
2155 	if (showport_parse_reta_config(reta_conf, res->size,
2156 				res->list_of_items) < 0) {
2157 		printf("Invalid string: %s for reta masks\n",
2158 					res->list_of_items);
2159 		return;
2160 	}
2161 	port_rss_reta_info(res->port_id, reta_conf, res->size);
2162 }
2163 
2164 cmdline_parse_token_string_t cmd_showport_reta_show =
2165 	TOKEN_STRING_INITIALIZER(struct  cmd_showport_reta, show, "show");
2166 cmdline_parse_token_string_t cmd_showport_reta_port =
2167 	TOKEN_STRING_INITIALIZER(struct  cmd_showport_reta, port, "port");
2168 cmdline_parse_token_num_t cmd_showport_reta_port_id =
2169 	TOKEN_NUM_INITIALIZER(struct cmd_showport_reta, port_id, UINT8);
2170 cmdline_parse_token_string_t cmd_showport_reta_rss =
2171 	TOKEN_STRING_INITIALIZER(struct cmd_showport_reta, rss, "rss");
2172 cmdline_parse_token_string_t cmd_showport_reta_reta =
2173 	TOKEN_STRING_INITIALIZER(struct cmd_showport_reta, reta, "reta");
2174 cmdline_parse_token_num_t cmd_showport_reta_size =
2175 	TOKEN_NUM_INITIALIZER(struct cmd_showport_reta, size, UINT16);
2176 cmdline_parse_token_string_t cmd_showport_reta_list_of_items =
2177 	TOKEN_STRING_INITIALIZER(struct cmd_showport_reta,
2178 					list_of_items, NULL);
2179 
2180 cmdline_parse_inst_t cmd_showport_reta = {
2181 	.f = cmd_showport_reta_parsed,
2182 	.data = NULL,
2183 	.help_str = "show port <port_id> rss reta <size> <mask0[,mask1]*>",
2184 	.tokens = {
2185 		(void *)&cmd_showport_reta_show,
2186 		(void *)&cmd_showport_reta_port,
2187 		(void *)&cmd_showport_reta_port_id,
2188 		(void *)&cmd_showport_reta_rss,
2189 		(void *)&cmd_showport_reta_reta,
2190 		(void *)&cmd_showport_reta_size,
2191 		(void *)&cmd_showport_reta_list_of_items,
2192 		NULL,
2193 	},
2194 };
2195 
2196 /* *** Show RSS hash configuration *** */
2197 struct cmd_showport_rss_hash {
2198 	cmdline_fixed_string_t show;
2199 	cmdline_fixed_string_t port;
2200 	uint8_t port_id;
2201 	cmdline_fixed_string_t rss_hash;
2202 	cmdline_fixed_string_t rss_type;
2203 	cmdline_fixed_string_t key; /* optional argument */
2204 };
2205 
2206 static void cmd_showport_rss_hash_parsed(void *parsed_result,
2207 				__attribute__((unused)) struct cmdline *cl,
2208 				void *show_rss_key)
2209 {
2210 	struct cmd_showport_rss_hash *res = parsed_result;
2211 
2212 	port_rss_hash_conf_show(res->port_id, res->rss_type,
2213 				show_rss_key != NULL);
2214 }
2215 
2216 cmdline_parse_token_string_t cmd_showport_rss_hash_show =
2217 	TOKEN_STRING_INITIALIZER(struct cmd_showport_rss_hash, show, "show");
2218 cmdline_parse_token_string_t cmd_showport_rss_hash_port =
2219 	TOKEN_STRING_INITIALIZER(struct cmd_showport_rss_hash, port, "port");
2220 cmdline_parse_token_num_t cmd_showport_rss_hash_port_id =
2221 	TOKEN_NUM_INITIALIZER(struct cmd_showport_rss_hash, port_id, UINT8);
2222 cmdline_parse_token_string_t cmd_showport_rss_hash_rss_hash =
2223 	TOKEN_STRING_INITIALIZER(struct cmd_showport_rss_hash, rss_hash,
2224 				 "rss-hash");
2225 cmdline_parse_token_string_t cmd_showport_rss_hash_rss_hash_info =
2226 	TOKEN_STRING_INITIALIZER(struct cmd_showport_rss_hash, rss_type,
2227 				 "ipv4#ipv4-frag#ipv4-tcp#ipv4-udp#ipv4-sctp#"
2228 				 "ipv4-other#ipv6#ipv6-frag#ipv6-tcp#ipv6-udp#"
2229 				 "ipv6-sctp#ipv6-other#l2-payload#ipv6-ex#"
2230 				 "ipv6-tcp-ex#ipv6-udp-ex");
2231 cmdline_parse_token_string_t cmd_showport_rss_hash_rss_key =
2232 	TOKEN_STRING_INITIALIZER(struct cmd_showport_rss_hash, key, "key");
2233 
2234 cmdline_parse_inst_t cmd_showport_rss_hash = {
2235 	.f = cmd_showport_rss_hash_parsed,
2236 	.data = NULL,
2237 	.help_str = "show port <port_id> rss-hash "
2238 		"ipv4|ipv4-frag|ipv4-tcp|ipv4-udp|ipv4-sctp|ipv4-other|"
2239 		"ipv6|ipv6-frag|ipv6-tcp|ipv6-udp|ipv6-sctp|ipv6-other|"
2240 		"l2-payload|ipv6-ex|ipv6-tcp-ex|ipv6-udp-ex",
2241 	.tokens = {
2242 		(void *)&cmd_showport_rss_hash_show,
2243 		(void *)&cmd_showport_rss_hash_port,
2244 		(void *)&cmd_showport_rss_hash_port_id,
2245 		(void *)&cmd_showport_rss_hash_rss_hash,
2246 		(void *)&cmd_showport_rss_hash_rss_hash_info,
2247 		NULL,
2248 	},
2249 };
2250 
2251 cmdline_parse_inst_t cmd_showport_rss_hash_key = {
2252 	.f = cmd_showport_rss_hash_parsed,
2253 	.data = (void *)1,
2254 	.help_str = "show port <port_id> rss-hash "
2255 		"ipv4|ipv4-frag|ipv4-tcp|ipv4-udp|ipv4-sctp|ipv4-other|"
2256 		"ipv6|ipv6-frag|ipv6-tcp|ipv6-udp|ipv6-sctp|ipv6-other|"
2257 		"l2-payload|ipv6-ex|ipv6-tcp-ex|ipv6-udp-ex key",
2258 	.tokens = {
2259 		(void *)&cmd_showport_rss_hash_show,
2260 		(void *)&cmd_showport_rss_hash_port,
2261 		(void *)&cmd_showport_rss_hash_port_id,
2262 		(void *)&cmd_showport_rss_hash_rss_hash,
2263 		(void *)&cmd_showport_rss_hash_rss_hash_info,
2264 		(void *)&cmd_showport_rss_hash_rss_key,
2265 		NULL,
2266 	},
2267 };
2268 
2269 /* *** Configure DCB *** */
2270 struct cmd_config_dcb {
2271 	cmdline_fixed_string_t port;
2272 	cmdline_fixed_string_t config;
2273 	uint8_t port_id;
2274 	cmdline_fixed_string_t dcb;
2275 	cmdline_fixed_string_t vt;
2276 	cmdline_fixed_string_t vt_en;
2277 	uint8_t num_tcs;
2278 	cmdline_fixed_string_t pfc;
2279 	cmdline_fixed_string_t pfc_en;
2280 };
2281 
2282 static void
2283 cmd_config_dcb_parsed(void *parsed_result,
2284                         __attribute__((unused)) struct cmdline *cl,
2285                         __attribute__((unused)) void *data)
2286 {
2287 	struct cmd_config_dcb *res = parsed_result;
2288 	portid_t port_id = res->port_id;
2289 	struct rte_port *port;
2290 	uint8_t pfc_en;
2291 	int ret;
2292 
2293 	port = &ports[port_id];
2294 	/** Check if the port is not started **/
2295 	if (port->port_status != RTE_PORT_STOPPED) {
2296 		printf("Please stop port %d first\n", port_id);
2297 		return;
2298 	}
2299 
2300 	if ((res->num_tcs != ETH_4_TCS) && (res->num_tcs != ETH_8_TCS)) {
2301 		printf("The invalid number of traffic class,"
2302 			" only 4 or 8 allowed.\n");
2303 		return;
2304 	}
2305 
2306 	if (nb_fwd_lcores < res->num_tcs) {
2307 		printf("nb_cores shouldn't be less than number of TCs.\n");
2308 		return;
2309 	}
2310 	if (!strncmp(res->pfc_en, "on", 2))
2311 		pfc_en = 1;
2312 	else
2313 		pfc_en = 0;
2314 
2315 	/* DCB in VT mode */
2316 	if (!strncmp(res->vt_en, "on", 2))
2317 		ret = init_port_dcb_config(port_id, DCB_VT_ENABLED,
2318 				(enum rte_eth_nb_tcs)res->num_tcs,
2319 				pfc_en);
2320 	else
2321 		ret = init_port_dcb_config(port_id, DCB_ENABLED,
2322 				(enum rte_eth_nb_tcs)res->num_tcs,
2323 				pfc_en);
2324 
2325 
2326 	if (ret != 0) {
2327 		printf("Cannot initialize network ports.\n");
2328 		return;
2329 	}
2330 
2331 	cmd_reconfig_device_queue(port_id, 1, 1);
2332 }
2333 
2334 cmdline_parse_token_string_t cmd_config_dcb_port =
2335         TOKEN_STRING_INITIALIZER(struct cmd_config_dcb, port, "port");
2336 cmdline_parse_token_string_t cmd_config_dcb_config =
2337         TOKEN_STRING_INITIALIZER(struct cmd_config_dcb, config, "config");
2338 cmdline_parse_token_num_t cmd_config_dcb_port_id =
2339         TOKEN_NUM_INITIALIZER(struct cmd_config_dcb, port_id, UINT8);
2340 cmdline_parse_token_string_t cmd_config_dcb_dcb =
2341         TOKEN_STRING_INITIALIZER(struct cmd_config_dcb, dcb, "dcb");
2342 cmdline_parse_token_string_t cmd_config_dcb_vt =
2343         TOKEN_STRING_INITIALIZER(struct cmd_config_dcb, vt, "vt");
2344 cmdline_parse_token_string_t cmd_config_dcb_vt_en =
2345         TOKEN_STRING_INITIALIZER(struct cmd_config_dcb, vt_en, "on#off");
2346 cmdline_parse_token_num_t cmd_config_dcb_num_tcs =
2347         TOKEN_NUM_INITIALIZER(struct cmd_config_dcb, num_tcs, UINT8);
2348 cmdline_parse_token_string_t cmd_config_dcb_pfc=
2349         TOKEN_STRING_INITIALIZER(struct cmd_config_dcb, pfc, "pfc");
2350 cmdline_parse_token_string_t cmd_config_dcb_pfc_en =
2351         TOKEN_STRING_INITIALIZER(struct cmd_config_dcb, pfc_en, "on#off");
2352 
2353 cmdline_parse_inst_t cmd_config_dcb = {
2354 	.f = cmd_config_dcb_parsed,
2355 	.data = NULL,
2356 	.help_str = "port config <port-id> dcb vt on|off <num_tcs> pfc on|off",
2357 	.tokens = {
2358 		(void *)&cmd_config_dcb_port,
2359 		(void *)&cmd_config_dcb_config,
2360 		(void *)&cmd_config_dcb_port_id,
2361 		(void *)&cmd_config_dcb_dcb,
2362 		(void *)&cmd_config_dcb_vt,
2363 		(void *)&cmd_config_dcb_vt_en,
2364 		(void *)&cmd_config_dcb_num_tcs,
2365 		(void *)&cmd_config_dcb_pfc,
2366 		(void *)&cmd_config_dcb_pfc_en,
2367                 NULL,
2368         },
2369 };
2370 
2371 /* *** configure number of packets per burst *** */
2372 struct cmd_config_burst {
2373 	cmdline_fixed_string_t port;
2374 	cmdline_fixed_string_t keyword;
2375 	cmdline_fixed_string_t all;
2376 	cmdline_fixed_string_t name;
2377 	uint16_t value;
2378 };
2379 
2380 static void
2381 cmd_config_burst_parsed(void *parsed_result,
2382 			__attribute__((unused)) struct cmdline *cl,
2383 			__attribute__((unused)) void *data)
2384 {
2385 	struct cmd_config_burst *res = parsed_result;
2386 
2387 	if (!all_ports_stopped()) {
2388 		printf("Please stop all ports first\n");
2389 		return;
2390 	}
2391 
2392 	if (!strcmp(res->name, "burst")) {
2393 		if (res->value < 1 || res->value > MAX_PKT_BURST) {
2394 			printf("burst must be >= 1 && <= %d\n", MAX_PKT_BURST);
2395 			return;
2396 		}
2397 		nb_pkt_per_burst = res->value;
2398 	} else {
2399 		printf("Unknown parameter\n");
2400 		return;
2401 	}
2402 
2403 	init_port_config();
2404 
2405 	cmd_reconfig_device_queue(RTE_PORT_ALL, 1, 1);
2406 }
2407 
2408 cmdline_parse_token_string_t cmd_config_burst_port =
2409 	TOKEN_STRING_INITIALIZER(struct cmd_config_burst, port, "port");
2410 cmdline_parse_token_string_t cmd_config_burst_keyword =
2411 	TOKEN_STRING_INITIALIZER(struct cmd_config_burst, keyword, "config");
2412 cmdline_parse_token_string_t cmd_config_burst_all =
2413 	TOKEN_STRING_INITIALIZER(struct cmd_config_burst, all, "all");
2414 cmdline_parse_token_string_t cmd_config_burst_name =
2415 	TOKEN_STRING_INITIALIZER(struct cmd_config_burst, name, "burst");
2416 cmdline_parse_token_num_t cmd_config_burst_value =
2417 	TOKEN_NUM_INITIALIZER(struct cmd_config_burst, value, UINT16);
2418 
2419 cmdline_parse_inst_t cmd_config_burst = {
2420 	.f = cmd_config_burst_parsed,
2421 	.data = NULL,
2422 	.help_str = "port config all burst <value>",
2423 	.tokens = {
2424 		(void *)&cmd_config_burst_port,
2425 		(void *)&cmd_config_burst_keyword,
2426 		(void *)&cmd_config_burst_all,
2427 		(void *)&cmd_config_burst_name,
2428 		(void *)&cmd_config_burst_value,
2429 		NULL,
2430 	},
2431 };
2432 
2433 /* *** configure rx/tx queues *** */
2434 struct cmd_config_thresh {
2435 	cmdline_fixed_string_t port;
2436 	cmdline_fixed_string_t keyword;
2437 	cmdline_fixed_string_t all;
2438 	cmdline_fixed_string_t name;
2439 	uint8_t value;
2440 };
2441 
2442 static void
2443 cmd_config_thresh_parsed(void *parsed_result,
2444 			__attribute__((unused)) struct cmdline *cl,
2445 			__attribute__((unused)) void *data)
2446 {
2447 	struct cmd_config_thresh *res = parsed_result;
2448 
2449 	if (!all_ports_stopped()) {
2450 		printf("Please stop all ports first\n");
2451 		return;
2452 	}
2453 
2454 	if (!strcmp(res->name, "txpt"))
2455 		tx_pthresh = res->value;
2456 	else if(!strcmp(res->name, "txht"))
2457 		tx_hthresh = res->value;
2458 	else if(!strcmp(res->name, "txwt"))
2459 		tx_wthresh = res->value;
2460 	else if(!strcmp(res->name, "rxpt"))
2461 		rx_pthresh = res->value;
2462 	else if(!strcmp(res->name, "rxht"))
2463 		rx_hthresh = res->value;
2464 	else if(!strcmp(res->name, "rxwt"))
2465 		rx_wthresh = res->value;
2466 	else {
2467 		printf("Unknown parameter\n");
2468 		return;
2469 	}
2470 
2471 	init_port_config();
2472 
2473 	cmd_reconfig_device_queue(RTE_PORT_ALL, 1, 1);
2474 }
2475 
2476 cmdline_parse_token_string_t cmd_config_thresh_port =
2477 	TOKEN_STRING_INITIALIZER(struct cmd_config_thresh, port, "port");
2478 cmdline_parse_token_string_t cmd_config_thresh_keyword =
2479 	TOKEN_STRING_INITIALIZER(struct cmd_config_thresh, keyword, "config");
2480 cmdline_parse_token_string_t cmd_config_thresh_all =
2481 	TOKEN_STRING_INITIALIZER(struct cmd_config_thresh, all, "all");
2482 cmdline_parse_token_string_t cmd_config_thresh_name =
2483 	TOKEN_STRING_INITIALIZER(struct cmd_config_thresh, name,
2484 				"txpt#txht#txwt#rxpt#rxht#rxwt");
2485 cmdline_parse_token_num_t cmd_config_thresh_value =
2486 	TOKEN_NUM_INITIALIZER(struct cmd_config_thresh, value, UINT8);
2487 
2488 cmdline_parse_inst_t cmd_config_thresh = {
2489 	.f = cmd_config_thresh_parsed,
2490 	.data = NULL,
2491 	.help_str = "port config all txpt|txht|txwt|rxpt|rxht|rxwt <value>",
2492 	.tokens = {
2493 		(void *)&cmd_config_thresh_port,
2494 		(void *)&cmd_config_thresh_keyword,
2495 		(void *)&cmd_config_thresh_all,
2496 		(void *)&cmd_config_thresh_name,
2497 		(void *)&cmd_config_thresh_value,
2498 		NULL,
2499 	},
2500 };
2501 
2502 /* *** configure free/rs threshold *** */
2503 struct cmd_config_threshold {
2504 	cmdline_fixed_string_t port;
2505 	cmdline_fixed_string_t keyword;
2506 	cmdline_fixed_string_t all;
2507 	cmdline_fixed_string_t name;
2508 	uint16_t value;
2509 };
2510 
2511 static void
2512 cmd_config_threshold_parsed(void *parsed_result,
2513 			__attribute__((unused)) struct cmdline *cl,
2514 			__attribute__((unused)) void *data)
2515 {
2516 	struct cmd_config_threshold *res = parsed_result;
2517 
2518 	if (!all_ports_stopped()) {
2519 		printf("Please stop all ports first\n");
2520 		return;
2521 	}
2522 
2523 	if (!strcmp(res->name, "txfreet"))
2524 		tx_free_thresh = res->value;
2525 	else if (!strcmp(res->name, "txrst"))
2526 		tx_rs_thresh = res->value;
2527 	else if (!strcmp(res->name, "rxfreet"))
2528 		rx_free_thresh = res->value;
2529 	else {
2530 		printf("Unknown parameter\n");
2531 		return;
2532 	}
2533 
2534 	init_port_config();
2535 
2536 	cmd_reconfig_device_queue(RTE_PORT_ALL, 1, 1);
2537 }
2538 
2539 cmdline_parse_token_string_t cmd_config_threshold_port =
2540 	TOKEN_STRING_INITIALIZER(struct cmd_config_threshold, port, "port");
2541 cmdline_parse_token_string_t cmd_config_threshold_keyword =
2542 	TOKEN_STRING_INITIALIZER(struct cmd_config_threshold, keyword,
2543 								"config");
2544 cmdline_parse_token_string_t cmd_config_threshold_all =
2545 	TOKEN_STRING_INITIALIZER(struct cmd_config_threshold, all, "all");
2546 cmdline_parse_token_string_t cmd_config_threshold_name =
2547 	TOKEN_STRING_INITIALIZER(struct cmd_config_threshold, name,
2548 						"txfreet#txrst#rxfreet");
2549 cmdline_parse_token_num_t cmd_config_threshold_value =
2550 	TOKEN_NUM_INITIALIZER(struct cmd_config_threshold, value, UINT16);
2551 
2552 cmdline_parse_inst_t cmd_config_threshold = {
2553 	.f = cmd_config_threshold_parsed,
2554 	.data = NULL,
2555 	.help_str = "port config all txfreet|txrst|rxfreet <value>",
2556 	.tokens = {
2557 		(void *)&cmd_config_threshold_port,
2558 		(void *)&cmd_config_threshold_keyword,
2559 		(void *)&cmd_config_threshold_all,
2560 		(void *)&cmd_config_threshold_name,
2561 		(void *)&cmd_config_threshold_value,
2562 		NULL,
2563 	},
2564 };
2565 
2566 /* *** stop *** */
2567 struct cmd_stop_result {
2568 	cmdline_fixed_string_t stop;
2569 };
2570 
2571 static void cmd_stop_parsed(__attribute__((unused)) void *parsed_result,
2572 			    __attribute__((unused)) struct cmdline *cl,
2573 			    __attribute__((unused)) void *data)
2574 {
2575 	stop_packet_forwarding();
2576 }
2577 
2578 cmdline_parse_token_string_t cmd_stop_stop =
2579 	TOKEN_STRING_INITIALIZER(struct cmd_stop_result, stop, "stop");
2580 
2581 cmdline_parse_inst_t cmd_stop = {
2582 	.f = cmd_stop_parsed,
2583 	.data = NULL,
2584 	.help_str = "stop: Stop packet forwarding",
2585 	.tokens = {
2586 		(void *)&cmd_stop_stop,
2587 		NULL,
2588 	},
2589 };
2590 
2591 /* *** SET CORELIST and PORTLIST CONFIGURATION *** */
2592 
2593 unsigned int
2594 parse_item_list(char* str, const char* item_name, unsigned int max_items,
2595 		unsigned int *parsed_items, int check_unique_values)
2596 {
2597 	unsigned int nb_item;
2598 	unsigned int value;
2599 	unsigned int i;
2600 	unsigned int j;
2601 	int value_ok;
2602 	char c;
2603 
2604 	/*
2605 	 * First parse all items in the list and store their value.
2606 	 */
2607 	value = 0;
2608 	nb_item = 0;
2609 	value_ok = 0;
2610 	for (i = 0; i < strnlen(str, STR_TOKEN_SIZE); i++) {
2611 		c = str[i];
2612 		if ((c >= '0') && (c <= '9')) {
2613 			value = (unsigned int) (value * 10 + (c - '0'));
2614 			value_ok = 1;
2615 			continue;
2616 		}
2617 		if (c != ',') {
2618 			printf("character %c is not a decimal digit\n", c);
2619 			return 0;
2620 		}
2621 		if (! value_ok) {
2622 			printf("No valid value before comma\n");
2623 			return 0;
2624 		}
2625 		if (nb_item < max_items) {
2626 			parsed_items[nb_item] = value;
2627 			value_ok = 0;
2628 			value = 0;
2629 		}
2630 		nb_item++;
2631 	}
2632 	if (nb_item >= max_items) {
2633 		printf("Number of %s = %u > %u (maximum items)\n",
2634 		       item_name, nb_item + 1, max_items);
2635 		return 0;
2636 	}
2637 	parsed_items[nb_item++] = value;
2638 	if (! check_unique_values)
2639 		return nb_item;
2640 
2641 	/*
2642 	 * Then, check that all values in the list are differents.
2643 	 * No optimization here...
2644 	 */
2645 	for (i = 0; i < nb_item; i++) {
2646 		for (j = i + 1; j < nb_item; j++) {
2647 			if (parsed_items[j] == parsed_items[i]) {
2648 				printf("duplicated %s %u at index %u and %u\n",
2649 				       item_name, parsed_items[i], i, j);
2650 				return 0;
2651 			}
2652 		}
2653 	}
2654 	return nb_item;
2655 }
2656 
2657 struct cmd_set_list_result {
2658 	cmdline_fixed_string_t cmd_keyword;
2659 	cmdline_fixed_string_t list_name;
2660 	cmdline_fixed_string_t list_of_items;
2661 };
2662 
2663 static void cmd_set_list_parsed(void *parsed_result,
2664 				__attribute__((unused)) struct cmdline *cl,
2665 				__attribute__((unused)) void *data)
2666 {
2667 	struct cmd_set_list_result *res;
2668 	union {
2669 		unsigned int lcorelist[RTE_MAX_LCORE];
2670 		unsigned int portlist[RTE_MAX_ETHPORTS];
2671 	} parsed_items;
2672 	unsigned int nb_item;
2673 
2674 	if (test_done == 0) {
2675 		printf("Please stop forwarding first\n");
2676 		return;
2677 	}
2678 
2679 	res = parsed_result;
2680 	if (!strcmp(res->list_name, "corelist")) {
2681 		nb_item = parse_item_list(res->list_of_items, "core",
2682 					  RTE_MAX_LCORE,
2683 					  parsed_items.lcorelist, 1);
2684 		if (nb_item > 0) {
2685 			set_fwd_lcores_list(parsed_items.lcorelist, nb_item);
2686 			fwd_config_setup();
2687 		}
2688 		return;
2689 	}
2690 	if (!strcmp(res->list_name, "portlist")) {
2691 		nb_item = parse_item_list(res->list_of_items, "port",
2692 					  RTE_MAX_ETHPORTS,
2693 					  parsed_items.portlist, 1);
2694 		if (nb_item > 0) {
2695 			set_fwd_ports_list(parsed_items.portlist, nb_item);
2696 			fwd_config_setup();
2697 		}
2698 	}
2699 }
2700 
2701 cmdline_parse_token_string_t cmd_set_list_keyword =
2702 	TOKEN_STRING_INITIALIZER(struct cmd_set_list_result, cmd_keyword,
2703 				 "set");
2704 cmdline_parse_token_string_t cmd_set_list_name =
2705 	TOKEN_STRING_INITIALIZER(struct cmd_set_list_result, list_name,
2706 				 "corelist#portlist");
2707 cmdline_parse_token_string_t cmd_set_list_of_items =
2708 	TOKEN_STRING_INITIALIZER(struct cmd_set_list_result, list_of_items,
2709 				 NULL);
2710 
2711 cmdline_parse_inst_t cmd_set_fwd_list = {
2712 	.f = cmd_set_list_parsed,
2713 	.data = NULL,
2714 	.help_str = "set corelist|portlist <list0[,list1]*>",
2715 	.tokens = {
2716 		(void *)&cmd_set_list_keyword,
2717 		(void *)&cmd_set_list_name,
2718 		(void *)&cmd_set_list_of_items,
2719 		NULL,
2720 	},
2721 };
2722 
2723 /* *** SET COREMASK and PORTMASK CONFIGURATION *** */
2724 
2725 struct cmd_setmask_result {
2726 	cmdline_fixed_string_t set;
2727 	cmdline_fixed_string_t mask;
2728 	uint64_t hexavalue;
2729 };
2730 
2731 static void cmd_set_mask_parsed(void *parsed_result,
2732 				__attribute__((unused)) struct cmdline *cl,
2733 				__attribute__((unused)) void *data)
2734 {
2735 	struct cmd_setmask_result *res = parsed_result;
2736 
2737 	if (test_done == 0) {
2738 		printf("Please stop forwarding first\n");
2739 		return;
2740 	}
2741 	if (!strcmp(res->mask, "coremask")) {
2742 		set_fwd_lcores_mask(res->hexavalue);
2743 		fwd_config_setup();
2744 	} else if (!strcmp(res->mask, "portmask")) {
2745 		set_fwd_ports_mask(res->hexavalue);
2746 		fwd_config_setup();
2747 	}
2748 }
2749 
2750 cmdline_parse_token_string_t cmd_setmask_set =
2751 	TOKEN_STRING_INITIALIZER(struct cmd_setmask_result, set, "set");
2752 cmdline_parse_token_string_t cmd_setmask_mask =
2753 	TOKEN_STRING_INITIALIZER(struct cmd_setmask_result, mask,
2754 				 "coremask#portmask");
2755 cmdline_parse_token_num_t cmd_setmask_value =
2756 	TOKEN_NUM_INITIALIZER(struct cmd_setmask_result, hexavalue, UINT64);
2757 
2758 cmdline_parse_inst_t cmd_set_fwd_mask = {
2759 	.f = cmd_set_mask_parsed,
2760 	.data = NULL,
2761 	.help_str = "set coremask|portmask <hexadecimal value>",
2762 	.tokens = {
2763 		(void *)&cmd_setmask_set,
2764 		(void *)&cmd_setmask_mask,
2765 		(void *)&cmd_setmask_value,
2766 		NULL,
2767 	},
2768 };
2769 
2770 /*
2771  * SET NBPORT, NBCORE, PACKET BURST, and VERBOSE LEVEL CONFIGURATION
2772  */
2773 struct cmd_set_result {
2774 	cmdline_fixed_string_t set;
2775 	cmdline_fixed_string_t what;
2776 	uint16_t value;
2777 };
2778 
2779 static void cmd_set_parsed(void *parsed_result,
2780 			   __attribute__((unused)) struct cmdline *cl,
2781 			   __attribute__((unused)) void *data)
2782 {
2783 	struct cmd_set_result *res = parsed_result;
2784 	if (!strcmp(res->what, "nbport")) {
2785 		set_fwd_ports_number(res->value);
2786 		fwd_config_setup();
2787 	} else if (!strcmp(res->what, "nbcore")) {
2788 		set_fwd_lcores_number(res->value);
2789 		fwd_config_setup();
2790 	} else if (!strcmp(res->what, "burst"))
2791 		set_nb_pkt_per_burst(res->value);
2792 	else if (!strcmp(res->what, "verbose"))
2793 		set_verbose_level(res->value);
2794 }
2795 
2796 cmdline_parse_token_string_t cmd_set_set =
2797 	TOKEN_STRING_INITIALIZER(struct cmd_set_result, set, "set");
2798 cmdline_parse_token_string_t cmd_set_what =
2799 	TOKEN_STRING_INITIALIZER(struct cmd_set_result, what,
2800 				 "nbport#nbcore#burst#verbose");
2801 cmdline_parse_token_num_t cmd_set_value =
2802 	TOKEN_NUM_INITIALIZER(struct cmd_set_result, value, UINT16);
2803 
2804 cmdline_parse_inst_t cmd_set_numbers = {
2805 	.f = cmd_set_parsed,
2806 	.data = NULL,
2807 	.help_str = "set nbport|nbcore|burst|verbose <value>",
2808 	.tokens = {
2809 		(void *)&cmd_set_set,
2810 		(void *)&cmd_set_what,
2811 		(void *)&cmd_set_value,
2812 		NULL,
2813 	},
2814 };
2815 
2816 /* *** SET SEGMENT LENGTHS OF TXONLY PACKETS *** */
2817 
2818 struct cmd_set_txpkts_result {
2819 	cmdline_fixed_string_t cmd_keyword;
2820 	cmdline_fixed_string_t txpkts;
2821 	cmdline_fixed_string_t seg_lengths;
2822 };
2823 
2824 static void
2825 cmd_set_txpkts_parsed(void *parsed_result,
2826 		      __attribute__((unused)) struct cmdline *cl,
2827 		      __attribute__((unused)) void *data)
2828 {
2829 	struct cmd_set_txpkts_result *res;
2830 	unsigned seg_lengths[RTE_MAX_SEGS_PER_PKT];
2831 	unsigned int nb_segs;
2832 
2833 	res = parsed_result;
2834 	nb_segs = parse_item_list(res->seg_lengths, "segment lengths",
2835 				  RTE_MAX_SEGS_PER_PKT, seg_lengths, 0);
2836 	if (nb_segs > 0)
2837 		set_tx_pkt_segments(seg_lengths, nb_segs);
2838 }
2839 
2840 cmdline_parse_token_string_t cmd_set_txpkts_keyword =
2841 	TOKEN_STRING_INITIALIZER(struct cmd_set_txpkts_result,
2842 				 cmd_keyword, "set");
2843 cmdline_parse_token_string_t cmd_set_txpkts_name =
2844 	TOKEN_STRING_INITIALIZER(struct cmd_set_txpkts_result,
2845 				 txpkts, "txpkts");
2846 cmdline_parse_token_string_t cmd_set_txpkts_lengths =
2847 	TOKEN_STRING_INITIALIZER(struct cmd_set_txpkts_result,
2848 				 seg_lengths, NULL);
2849 
2850 cmdline_parse_inst_t cmd_set_txpkts = {
2851 	.f = cmd_set_txpkts_parsed,
2852 	.data = NULL,
2853 	.help_str = "set txpkts <len0[,len1]*>",
2854 	.tokens = {
2855 		(void *)&cmd_set_txpkts_keyword,
2856 		(void *)&cmd_set_txpkts_name,
2857 		(void *)&cmd_set_txpkts_lengths,
2858 		NULL,
2859 	},
2860 };
2861 
2862 /* *** SET COPY AND SPLIT POLICY ON TX PACKETS *** */
2863 
2864 struct cmd_set_txsplit_result {
2865 	cmdline_fixed_string_t cmd_keyword;
2866 	cmdline_fixed_string_t txsplit;
2867 	cmdline_fixed_string_t mode;
2868 };
2869 
2870 static void
2871 cmd_set_txsplit_parsed(void *parsed_result,
2872 		      __attribute__((unused)) struct cmdline *cl,
2873 		      __attribute__((unused)) void *data)
2874 {
2875 	struct cmd_set_txsplit_result *res;
2876 
2877 	res = parsed_result;
2878 	set_tx_pkt_split(res->mode);
2879 }
2880 
2881 cmdline_parse_token_string_t cmd_set_txsplit_keyword =
2882 	TOKEN_STRING_INITIALIZER(struct cmd_set_txsplit_result,
2883 				 cmd_keyword, "set");
2884 cmdline_parse_token_string_t cmd_set_txsplit_name =
2885 	TOKEN_STRING_INITIALIZER(struct cmd_set_txsplit_result,
2886 				 txsplit, "txsplit");
2887 cmdline_parse_token_string_t cmd_set_txsplit_mode =
2888 	TOKEN_STRING_INITIALIZER(struct cmd_set_txsplit_result,
2889 				 mode, NULL);
2890 
2891 cmdline_parse_inst_t cmd_set_txsplit = {
2892 	.f = cmd_set_txsplit_parsed,
2893 	.data = NULL,
2894 	.help_str = "set txsplit on|off|rand",
2895 	.tokens = {
2896 		(void *)&cmd_set_txsplit_keyword,
2897 		(void *)&cmd_set_txsplit_name,
2898 		(void *)&cmd_set_txsplit_mode,
2899 		NULL,
2900 	},
2901 };
2902 
2903 /* *** CONFIG TX QUEUE FLAGS *** */
2904 
2905 struct cmd_config_txqflags_result {
2906 	cmdline_fixed_string_t port;
2907 	cmdline_fixed_string_t config;
2908 	cmdline_fixed_string_t all;
2909 	cmdline_fixed_string_t what;
2910 	int32_t hexvalue;
2911 };
2912 
2913 static void cmd_config_txqflags_parsed(void *parsed_result,
2914 				__attribute__((unused)) struct cmdline *cl,
2915 				__attribute__((unused)) void *data)
2916 {
2917 	struct cmd_config_txqflags_result *res = parsed_result;
2918 
2919 	if (!all_ports_stopped()) {
2920 		printf("Please stop all ports first\n");
2921 		return;
2922 	}
2923 
2924 	if (strcmp(res->what, "txqflags")) {
2925 		printf("Unknown parameter\n");
2926 		return;
2927 	}
2928 
2929 	if (res->hexvalue >= 0) {
2930 		txq_flags = res->hexvalue;
2931 	} else {
2932 		printf("txqflags must be >= 0\n");
2933 		return;
2934 	}
2935 
2936 	init_port_config();
2937 
2938 	cmd_reconfig_device_queue(RTE_PORT_ALL, 1, 1);
2939 }
2940 
2941 cmdline_parse_token_string_t cmd_config_txqflags_port =
2942 	TOKEN_STRING_INITIALIZER(struct cmd_config_txqflags_result, port,
2943 				 "port");
2944 cmdline_parse_token_string_t cmd_config_txqflags_config =
2945 	TOKEN_STRING_INITIALIZER(struct cmd_config_txqflags_result, config,
2946 				 "config");
2947 cmdline_parse_token_string_t cmd_config_txqflags_all =
2948 	TOKEN_STRING_INITIALIZER(struct cmd_config_txqflags_result, all,
2949 				 "all");
2950 cmdline_parse_token_string_t cmd_config_txqflags_what =
2951 	TOKEN_STRING_INITIALIZER(struct cmd_config_txqflags_result, what,
2952 				 "txqflags");
2953 cmdline_parse_token_num_t cmd_config_txqflags_value =
2954 	TOKEN_NUM_INITIALIZER(struct cmd_config_txqflags_result,
2955 				hexvalue, INT32);
2956 
2957 cmdline_parse_inst_t cmd_config_txqflags = {
2958 	.f = cmd_config_txqflags_parsed,
2959 	.data = NULL,
2960 	.help_str = "port config all txqflags <value>",
2961 	.tokens = {
2962 		(void *)&cmd_config_txqflags_port,
2963 		(void *)&cmd_config_txqflags_config,
2964 		(void *)&cmd_config_txqflags_all,
2965 		(void *)&cmd_config_txqflags_what,
2966 		(void *)&cmd_config_txqflags_value,
2967 		NULL,
2968 	},
2969 };
2970 
2971 /* *** ADD/REMOVE ALL VLAN IDENTIFIERS TO/FROM A PORT VLAN RX FILTER *** */
2972 struct cmd_rx_vlan_filter_all_result {
2973 	cmdline_fixed_string_t rx_vlan;
2974 	cmdline_fixed_string_t what;
2975 	cmdline_fixed_string_t all;
2976 	uint8_t port_id;
2977 };
2978 
2979 static void
2980 cmd_rx_vlan_filter_all_parsed(void *parsed_result,
2981 			      __attribute__((unused)) struct cmdline *cl,
2982 			      __attribute__((unused)) void *data)
2983 {
2984 	struct cmd_rx_vlan_filter_all_result *res = parsed_result;
2985 
2986 	if (!strcmp(res->what, "add"))
2987 		rx_vlan_all_filter_set(res->port_id, 1);
2988 	else
2989 		rx_vlan_all_filter_set(res->port_id, 0);
2990 }
2991 
2992 cmdline_parse_token_string_t cmd_rx_vlan_filter_all_rx_vlan =
2993 	TOKEN_STRING_INITIALIZER(struct cmd_rx_vlan_filter_all_result,
2994 				 rx_vlan, "rx_vlan");
2995 cmdline_parse_token_string_t cmd_rx_vlan_filter_all_what =
2996 	TOKEN_STRING_INITIALIZER(struct cmd_rx_vlan_filter_all_result,
2997 				 what, "add#rm");
2998 cmdline_parse_token_string_t cmd_rx_vlan_filter_all_all =
2999 	TOKEN_STRING_INITIALIZER(struct cmd_rx_vlan_filter_all_result,
3000 				 all, "all");
3001 cmdline_parse_token_num_t cmd_rx_vlan_filter_all_portid =
3002 	TOKEN_NUM_INITIALIZER(struct cmd_rx_vlan_filter_all_result,
3003 			      port_id, UINT8);
3004 
3005 cmdline_parse_inst_t cmd_rx_vlan_filter_all = {
3006 	.f = cmd_rx_vlan_filter_all_parsed,
3007 	.data = NULL,
3008 	.help_str = "rx_vlan add|rm all <port_id>: "
3009 		"Add/Remove all identifiers to/from the set of VLAN "
3010 		"identifiers filtered by a port",
3011 	.tokens = {
3012 		(void *)&cmd_rx_vlan_filter_all_rx_vlan,
3013 		(void *)&cmd_rx_vlan_filter_all_what,
3014 		(void *)&cmd_rx_vlan_filter_all_all,
3015 		(void *)&cmd_rx_vlan_filter_all_portid,
3016 		NULL,
3017 	},
3018 };
3019 
3020 /* *** VLAN OFFLOAD SET ON A PORT *** */
3021 struct cmd_vlan_offload_result {
3022 	cmdline_fixed_string_t vlan;
3023 	cmdline_fixed_string_t set;
3024 	cmdline_fixed_string_t vlan_type;
3025 	cmdline_fixed_string_t what;
3026 	cmdline_fixed_string_t on;
3027 	cmdline_fixed_string_t port_id;
3028 };
3029 
3030 static void
3031 cmd_vlan_offload_parsed(void *parsed_result,
3032 			  __attribute__((unused)) struct cmdline *cl,
3033 			  __attribute__((unused)) void *data)
3034 {
3035 	int on;
3036 	struct cmd_vlan_offload_result *res = parsed_result;
3037 	char *str;
3038 	int i, len = 0;
3039 	portid_t port_id = 0;
3040 	unsigned int tmp;
3041 
3042 	str = res->port_id;
3043 	len = strnlen(str, STR_TOKEN_SIZE);
3044 	i = 0;
3045 	/* Get port_id first */
3046 	while(i < len){
3047 		if(str[i] == ',')
3048 			break;
3049 
3050 		i++;
3051 	}
3052 	str[i]='\0';
3053 	tmp = strtoul(str, NULL, 0);
3054 	/* If port_id greater that what portid_t can represent, return */
3055 	if(tmp >= RTE_MAX_ETHPORTS)
3056 		return;
3057 	port_id = (portid_t)tmp;
3058 
3059 	if (!strcmp(res->on, "on"))
3060 		on = 1;
3061 	else
3062 		on = 0;
3063 
3064 	if (!strcmp(res->what, "strip"))
3065 		rx_vlan_strip_set(port_id,  on);
3066 	else if(!strcmp(res->what, "stripq")){
3067 		uint16_t queue_id = 0;
3068 
3069 		/* No queue_id, return */
3070 		if(i + 1 >= len) {
3071 			printf("must specify (port,queue_id)\n");
3072 			return;
3073 		}
3074 		tmp = strtoul(str + i + 1, NULL, 0);
3075 		/* If queue_id greater that what 16-bits can represent, return */
3076 		if(tmp > 0xffff)
3077 			return;
3078 
3079 		queue_id = (uint16_t)tmp;
3080 		rx_vlan_strip_set_on_queue(port_id, queue_id, on);
3081 	}
3082 	else if (!strcmp(res->what, "filter"))
3083 		rx_vlan_filter_set(port_id, on);
3084 	else
3085 		vlan_extend_set(port_id, on);
3086 
3087 	return;
3088 }
3089 
3090 cmdline_parse_token_string_t cmd_vlan_offload_vlan =
3091 	TOKEN_STRING_INITIALIZER(struct cmd_vlan_offload_result,
3092 				 vlan, "vlan");
3093 cmdline_parse_token_string_t cmd_vlan_offload_set =
3094 	TOKEN_STRING_INITIALIZER(struct cmd_vlan_offload_result,
3095 				 set, "set");
3096 cmdline_parse_token_string_t cmd_vlan_offload_what =
3097 	TOKEN_STRING_INITIALIZER(struct cmd_vlan_offload_result,
3098 				 what, "strip#filter#qinq#stripq");
3099 cmdline_parse_token_string_t cmd_vlan_offload_on =
3100 	TOKEN_STRING_INITIALIZER(struct cmd_vlan_offload_result,
3101 			      on, "on#off");
3102 cmdline_parse_token_string_t cmd_vlan_offload_portid =
3103 	TOKEN_STRING_INITIALIZER(struct cmd_vlan_offload_result,
3104 			      port_id, NULL);
3105 
3106 cmdline_parse_inst_t cmd_vlan_offload = {
3107 	.f = cmd_vlan_offload_parsed,
3108 	.data = NULL,
3109 	.help_str = "vlan set strip|filter|qinq|stripq on|off "
3110 		"<port_id[,queue_id]>: "
3111 		"Filter/Strip for rx side qinq(extended) for both rx/tx sides",
3112 	.tokens = {
3113 		(void *)&cmd_vlan_offload_vlan,
3114 		(void *)&cmd_vlan_offload_set,
3115 		(void *)&cmd_vlan_offload_what,
3116 		(void *)&cmd_vlan_offload_on,
3117 		(void *)&cmd_vlan_offload_portid,
3118 		NULL,
3119 	},
3120 };
3121 
3122 /* *** VLAN TPID SET ON A PORT *** */
3123 struct cmd_vlan_tpid_result {
3124 	cmdline_fixed_string_t vlan;
3125 	cmdline_fixed_string_t set;
3126 	cmdline_fixed_string_t vlan_type;
3127 	cmdline_fixed_string_t what;
3128 	uint16_t tp_id;
3129 	uint8_t port_id;
3130 };
3131 
3132 static void
3133 cmd_vlan_tpid_parsed(void *parsed_result,
3134 			  __attribute__((unused)) struct cmdline *cl,
3135 			  __attribute__((unused)) void *data)
3136 {
3137 	struct cmd_vlan_tpid_result *res = parsed_result;
3138 	enum rte_vlan_type vlan_type;
3139 
3140 	if (!strcmp(res->vlan_type, "inner"))
3141 		vlan_type = ETH_VLAN_TYPE_INNER;
3142 	else if (!strcmp(res->vlan_type, "outer"))
3143 		vlan_type = ETH_VLAN_TYPE_OUTER;
3144 	else {
3145 		printf("Unknown vlan type\n");
3146 		return;
3147 	}
3148 	vlan_tpid_set(res->port_id, vlan_type, res->tp_id);
3149 }
3150 
3151 cmdline_parse_token_string_t cmd_vlan_tpid_vlan =
3152 	TOKEN_STRING_INITIALIZER(struct cmd_vlan_tpid_result,
3153 				 vlan, "vlan");
3154 cmdline_parse_token_string_t cmd_vlan_tpid_set =
3155 	TOKEN_STRING_INITIALIZER(struct cmd_vlan_tpid_result,
3156 				 set, "set");
3157 cmdline_parse_token_string_t cmd_vlan_type =
3158 	TOKEN_STRING_INITIALIZER(struct cmd_vlan_tpid_result,
3159 				 vlan_type, "inner#outer");
3160 cmdline_parse_token_string_t cmd_vlan_tpid_what =
3161 	TOKEN_STRING_INITIALIZER(struct cmd_vlan_tpid_result,
3162 				 what, "tpid");
3163 cmdline_parse_token_num_t cmd_vlan_tpid_tpid =
3164 	TOKEN_NUM_INITIALIZER(struct cmd_vlan_tpid_result,
3165 			      tp_id, UINT16);
3166 cmdline_parse_token_num_t cmd_vlan_tpid_portid =
3167 	TOKEN_NUM_INITIALIZER(struct cmd_vlan_tpid_result,
3168 			      port_id, UINT8);
3169 
3170 cmdline_parse_inst_t cmd_vlan_tpid = {
3171 	.f = cmd_vlan_tpid_parsed,
3172 	.data = NULL,
3173 	.help_str = "vlan set inner|outer tpid <tp_id> <port_id>: "
3174 		"Set the VLAN Ether type",
3175 	.tokens = {
3176 		(void *)&cmd_vlan_tpid_vlan,
3177 		(void *)&cmd_vlan_tpid_set,
3178 		(void *)&cmd_vlan_type,
3179 		(void *)&cmd_vlan_tpid_what,
3180 		(void *)&cmd_vlan_tpid_tpid,
3181 		(void *)&cmd_vlan_tpid_portid,
3182 		NULL,
3183 	},
3184 };
3185 
3186 /* *** ADD/REMOVE A VLAN IDENTIFIER TO/FROM A PORT VLAN RX FILTER *** */
3187 struct cmd_rx_vlan_filter_result {
3188 	cmdline_fixed_string_t rx_vlan;
3189 	cmdline_fixed_string_t what;
3190 	uint16_t vlan_id;
3191 	uint8_t port_id;
3192 };
3193 
3194 static void
3195 cmd_rx_vlan_filter_parsed(void *parsed_result,
3196 			  __attribute__((unused)) struct cmdline *cl,
3197 			  __attribute__((unused)) void *data)
3198 {
3199 	struct cmd_rx_vlan_filter_result *res = parsed_result;
3200 
3201 	if (!strcmp(res->what, "add"))
3202 		rx_vft_set(res->port_id, res->vlan_id, 1);
3203 	else
3204 		rx_vft_set(res->port_id, res->vlan_id, 0);
3205 }
3206 
3207 cmdline_parse_token_string_t cmd_rx_vlan_filter_rx_vlan =
3208 	TOKEN_STRING_INITIALIZER(struct cmd_rx_vlan_filter_result,
3209 				 rx_vlan, "rx_vlan");
3210 cmdline_parse_token_string_t cmd_rx_vlan_filter_what =
3211 	TOKEN_STRING_INITIALIZER(struct cmd_rx_vlan_filter_result,
3212 				 what, "add#rm");
3213 cmdline_parse_token_num_t cmd_rx_vlan_filter_vlanid =
3214 	TOKEN_NUM_INITIALIZER(struct cmd_rx_vlan_filter_result,
3215 			      vlan_id, UINT16);
3216 cmdline_parse_token_num_t cmd_rx_vlan_filter_portid =
3217 	TOKEN_NUM_INITIALIZER(struct cmd_rx_vlan_filter_result,
3218 			      port_id, UINT8);
3219 
3220 cmdline_parse_inst_t cmd_rx_vlan_filter = {
3221 	.f = cmd_rx_vlan_filter_parsed,
3222 	.data = NULL,
3223 	.help_str = "rx_vlan add|rm <vlan_id> <port_id>: "
3224 		"Add/Remove a VLAN identifier to/from the set of VLAN "
3225 		"identifiers filtered by a port",
3226 	.tokens = {
3227 		(void *)&cmd_rx_vlan_filter_rx_vlan,
3228 		(void *)&cmd_rx_vlan_filter_what,
3229 		(void *)&cmd_rx_vlan_filter_vlanid,
3230 		(void *)&cmd_rx_vlan_filter_portid,
3231 		NULL,
3232 	},
3233 };
3234 
3235 /* *** ENABLE HARDWARE INSERTION OF VLAN HEADER IN TX PACKETS *** */
3236 struct cmd_tx_vlan_set_result {
3237 	cmdline_fixed_string_t tx_vlan;
3238 	cmdline_fixed_string_t set;
3239 	uint8_t port_id;
3240 	uint16_t vlan_id;
3241 };
3242 
3243 static void
3244 cmd_tx_vlan_set_parsed(void *parsed_result,
3245 		       __attribute__((unused)) struct cmdline *cl,
3246 		       __attribute__((unused)) void *data)
3247 {
3248 	struct cmd_tx_vlan_set_result *res = parsed_result;
3249 
3250 	tx_vlan_set(res->port_id, res->vlan_id);
3251 }
3252 
3253 cmdline_parse_token_string_t cmd_tx_vlan_set_tx_vlan =
3254 	TOKEN_STRING_INITIALIZER(struct cmd_tx_vlan_set_result,
3255 				 tx_vlan, "tx_vlan");
3256 cmdline_parse_token_string_t cmd_tx_vlan_set_set =
3257 	TOKEN_STRING_INITIALIZER(struct cmd_tx_vlan_set_result,
3258 				 set, "set");
3259 cmdline_parse_token_num_t cmd_tx_vlan_set_portid =
3260 	TOKEN_NUM_INITIALIZER(struct cmd_tx_vlan_set_result,
3261 			      port_id, UINT8);
3262 cmdline_parse_token_num_t cmd_tx_vlan_set_vlanid =
3263 	TOKEN_NUM_INITIALIZER(struct cmd_tx_vlan_set_result,
3264 			      vlan_id, UINT16);
3265 
3266 cmdline_parse_inst_t cmd_tx_vlan_set = {
3267 	.f = cmd_tx_vlan_set_parsed,
3268 	.data = NULL,
3269 	.help_str = "tx_vlan set <port_id> <vlan_id>: "
3270 		"Enable hardware insertion of a single VLAN header "
3271 		"with a given TAG Identifier in packets sent on a port",
3272 	.tokens = {
3273 		(void *)&cmd_tx_vlan_set_tx_vlan,
3274 		(void *)&cmd_tx_vlan_set_set,
3275 		(void *)&cmd_tx_vlan_set_portid,
3276 		(void *)&cmd_tx_vlan_set_vlanid,
3277 		NULL,
3278 	},
3279 };
3280 
3281 /* *** ENABLE HARDWARE INSERTION OF Double VLAN HEADER IN TX PACKETS *** */
3282 struct cmd_tx_vlan_set_qinq_result {
3283 	cmdline_fixed_string_t tx_vlan;
3284 	cmdline_fixed_string_t set;
3285 	uint8_t port_id;
3286 	uint16_t vlan_id;
3287 	uint16_t vlan_id_outer;
3288 };
3289 
3290 static void
3291 cmd_tx_vlan_set_qinq_parsed(void *parsed_result,
3292 			    __attribute__((unused)) struct cmdline *cl,
3293 			    __attribute__((unused)) void *data)
3294 {
3295 	struct cmd_tx_vlan_set_qinq_result *res = parsed_result;
3296 
3297 	tx_qinq_set(res->port_id, res->vlan_id, res->vlan_id_outer);
3298 }
3299 
3300 cmdline_parse_token_string_t cmd_tx_vlan_set_qinq_tx_vlan =
3301 	TOKEN_STRING_INITIALIZER(struct cmd_tx_vlan_set_qinq_result,
3302 		tx_vlan, "tx_vlan");
3303 cmdline_parse_token_string_t cmd_tx_vlan_set_qinq_set =
3304 	TOKEN_STRING_INITIALIZER(struct cmd_tx_vlan_set_qinq_result,
3305 		set, "set");
3306 cmdline_parse_token_num_t cmd_tx_vlan_set_qinq_portid =
3307 	TOKEN_NUM_INITIALIZER(struct cmd_tx_vlan_set_qinq_result,
3308 		port_id, UINT8);
3309 cmdline_parse_token_num_t cmd_tx_vlan_set_qinq_vlanid =
3310 	TOKEN_NUM_INITIALIZER(struct cmd_tx_vlan_set_qinq_result,
3311 		vlan_id, UINT16);
3312 cmdline_parse_token_num_t cmd_tx_vlan_set_qinq_vlanid_outer =
3313 	TOKEN_NUM_INITIALIZER(struct cmd_tx_vlan_set_qinq_result,
3314 		vlan_id_outer, UINT16);
3315 
3316 cmdline_parse_inst_t cmd_tx_vlan_set_qinq = {
3317 	.f = cmd_tx_vlan_set_qinq_parsed,
3318 	.data = NULL,
3319 	.help_str = "tx_vlan set <port_id> <vlan_id> <outer_vlan_id>: "
3320 		"Enable hardware insertion of double VLAN header "
3321 		"with given TAG Identifiers in packets sent on a port",
3322 	.tokens = {
3323 		(void *)&cmd_tx_vlan_set_qinq_tx_vlan,
3324 		(void *)&cmd_tx_vlan_set_qinq_set,
3325 		(void *)&cmd_tx_vlan_set_qinq_portid,
3326 		(void *)&cmd_tx_vlan_set_qinq_vlanid,
3327 		(void *)&cmd_tx_vlan_set_qinq_vlanid_outer,
3328 		NULL,
3329 	},
3330 };
3331 
3332 /* *** ENABLE/DISABLE PORT BASED TX VLAN INSERTION *** */
3333 struct cmd_tx_vlan_set_pvid_result {
3334 	cmdline_fixed_string_t tx_vlan;
3335 	cmdline_fixed_string_t set;
3336 	cmdline_fixed_string_t pvid;
3337 	uint8_t port_id;
3338 	uint16_t vlan_id;
3339 	cmdline_fixed_string_t mode;
3340 };
3341 
3342 static void
3343 cmd_tx_vlan_set_pvid_parsed(void *parsed_result,
3344 			    __attribute__((unused)) struct cmdline *cl,
3345 			    __attribute__((unused)) void *data)
3346 {
3347 	struct cmd_tx_vlan_set_pvid_result *res = parsed_result;
3348 
3349 	if (strcmp(res->mode, "on") == 0)
3350 		tx_vlan_pvid_set(res->port_id, res->vlan_id, 1);
3351 	else
3352 		tx_vlan_pvid_set(res->port_id, res->vlan_id, 0);
3353 }
3354 
3355 cmdline_parse_token_string_t cmd_tx_vlan_set_pvid_tx_vlan =
3356 	TOKEN_STRING_INITIALIZER(struct cmd_tx_vlan_set_pvid_result,
3357 				 tx_vlan, "tx_vlan");
3358 cmdline_parse_token_string_t cmd_tx_vlan_set_pvid_set =
3359 	TOKEN_STRING_INITIALIZER(struct cmd_tx_vlan_set_pvid_result,
3360 				 set, "set");
3361 cmdline_parse_token_string_t cmd_tx_vlan_set_pvid_pvid =
3362 	TOKEN_STRING_INITIALIZER(struct cmd_tx_vlan_set_pvid_result,
3363 				 pvid, "pvid");
3364 cmdline_parse_token_num_t cmd_tx_vlan_set_pvid_port_id =
3365 	TOKEN_NUM_INITIALIZER(struct cmd_tx_vlan_set_pvid_result,
3366 			     port_id, UINT8);
3367 cmdline_parse_token_num_t cmd_tx_vlan_set_pvid_vlan_id =
3368 	TOKEN_NUM_INITIALIZER(struct cmd_tx_vlan_set_pvid_result,
3369 			      vlan_id, UINT16);
3370 cmdline_parse_token_string_t cmd_tx_vlan_set_pvid_mode =
3371 	TOKEN_STRING_INITIALIZER(struct cmd_tx_vlan_set_pvid_result,
3372 				 mode, "on#off");
3373 
3374 cmdline_parse_inst_t cmd_tx_vlan_set_pvid = {
3375 	.f = cmd_tx_vlan_set_pvid_parsed,
3376 	.data = NULL,
3377 	.help_str = "tx_vlan set pvid <port_id> <vlan_id> on|off",
3378 	.tokens = {
3379 		(void *)&cmd_tx_vlan_set_pvid_tx_vlan,
3380 		(void *)&cmd_tx_vlan_set_pvid_set,
3381 		(void *)&cmd_tx_vlan_set_pvid_pvid,
3382 		(void *)&cmd_tx_vlan_set_pvid_port_id,
3383 		(void *)&cmd_tx_vlan_set_pvid_vlan_id,
3384 		(void *)&cmd_tx_vlan_set_pvid_mode,
3385 		NULL,
3386 	},
3387 };
3388 
3389 /* *** DISABLE HARDWARE INSERTION OF VLAN HEADER IN TX PACKETS *** */
3390 struct cmd_tx_vlan_reset_result {
3391 	cmdline_fixed_string_t tx_vlan;
3392 	cmdline_fixed_string_t reset;
3393 	uint8_t port_id;
3394 };
3395 
3396 static void
3397 cmd_tx_vlan_reset_parsed(void *parsed_result,
3398 			 __attribute__((unused)) struct cmdline *cl,
3399 			 __attribute__((unused)) void *data)
3400 {
3401 	struct cmd_tx_vlan_reset_result *res = parsed_result;
3402 
3403 	tx_vlan_reset(res->port_id);
3404 }
3405 
3406 cmdline_parse_token_string_t cmd_tx_vlan_reset_tx_vlan =
3407 	TOKEN_STRING_INITIALIZER(struct cmd_tx_vlan_reset_result,
3408 				 tx_vlan, "tx_vlan");
3409 cmdline_parse_token_string_t cmd_tx_vlan_reset_reset =
3410 	TOKEN_STRING_INITIALIZER(struct cmd_tx_vlan_reset_result,
3411 				 reset, "reset");
3412 cmdline_parse_token_num_t cmd_tx_vlan_reset_portid =
3413 	TOKEN_NUM_INITIALIZER(struct cmd_tx_vlan_reset_result,
3414 			      port_id, UINT8);
3415 
3416 cmdline_parse_inst_t cmd_tx_vlan_reset = {
3417 	.f = cmd_tx_vlan_reset_parsed,
3418 	.data = NULL,
3419 	.help_str = "tx_vlan reset <port_id>: Disable hardware insertion of a "
3420 		"VLAN header in packets sent on a port",
3421 	.tokens = {
3422 		(void *)&cmd_tx_vlan_reset_tx_vlan,
3423 		(void *)&cmd_tx_vlan_reset_reset,
3424 		(void *)&cmd_tx_vlan_reset_portid,
3425 		NULL,
3426 	},
3427 };
3428 
3429 
3430 /* *** ENABLE HARDWARE INSERTION OF CHECKSUM IN TX PACKETS *** */
3431 struct cmd_csum_result {
3432 	cmdline_fixed_string_t csum;
3433 	cmdline_fixed_string_t mode;
3434 	cmdline_fixed_string_t proto;
3435 	cmdline_fixed_string_t hwsw;
3436 	uint8_t port_id;
3437 };
3438 
3439 static void
3440 csum_show(int port_id)
3441 {
3442 	struct rte_eth_dev_info dev_info;
3443 	uint16_t ol_flags;
3444 
3445 	ol_flags = ports[port_id].tx_ol_flags;
3446 	printf("Parse tunnel is %s\n",
3447 		(ol_flags & TESTPMD_TX_OFFLOAD_PARSE_TUNNEL) ? "on" : "off");
3448 	printf("IP checksum offload is %s\n",
3449 		(ol_flags & TESTPMD_TX_OFFLOAD_IP_CKSUM) ? "hw" : "sw");
3450 	printf("UDP checksum offload is %s\n",
3451 		(ol_flags & TESTPMD_TX_OFFLOAD_UDP_CKSUM) ? "hw" : "sw");
3452 	printf("TCP checksum offload is %s\n",
3453 		(ol_flags & TESTPMD_TX_OFFLOAD_TCP_CKSUM) ? "hw" : "sw");
3454 	printf("SCTP checksum offload is %s\n",
3455 		(ol_flags & TESTPMD_TX_OFFLOAD_SCTP_CKSUM) ? "hw" : "sw");
3456 	printf("Outer-Ip checksum offload is %s\n",
3457 		(ol_flags & TESTPMD_TX_OFFLOAD_OUTER_IP_CKSUM) ? "hw" : "sw");
3458 
3459 	/* display warnings if configuration is not supported by the NIC */
3460 	rte_eth_dev_info_get(port_id, &dev_info);
3461 	if ((ol_flags & TESTPMD_TX_OFFLOAD_IP_CKSUM) &&
3462 		(dev_info.tx_offload_capa & DEV_TX_OFFLOAD_IPV4_CKSUM) == 0) {
3463 		printf("Warning: hardware IP checksum enabled but not "
3464 			"supported by port %d\n", port_id);
3465 	}
3466 	if ((ol_flags & TESTPMD_TX_OFFLOAD_UDP_CKSUM) &&
3467 		(dev_info.tx_offload_capa & DEV_TX_OFFLOAD_UDP_CKSUM) == 0) {
3468 		printf("Warning: hardware UDP checksum enabled but not "
3469 			"supported by port %d\n", port_id);
3470 	}
3471 	if ((ol_flags & TESTPMD_TX_OFFLOAD_TCP_CKSUM) &&
3472 		(dev_info.tx_offload_capa & DEV_TX_OFFLOAD_TCP_CKSUM) == 0) {
3473 		printf("Warning: hardware TCP checksum enabled but not "
3474 			"supported by port %d\n", port_id);
3475 	}
3476 	if ((ol_flags & TESTPMD_TX_OFFLOAD_SCTP_CKSUM) &&
3477 		(dev_info.tx_offload_capa & DEV_TX_OFFLOAD_SCTP_CKSUM) == 0) {
3478 		printf("Warning: hardware SCTP checksum enabled but not "
3479 			"supported by port %d\n", port_id);
3480 	}
3481 	if ((ol_flags & TESTPMD_TX_OFFLOAD_OUTER_IP_CKSUM) &&
3482 		(dev_info.tx_offload_capa & DEV_TX_OFFLOAD_OUTER_IPV4_CKSUM) == 0) {
3483 		printf("Warning: hardware outer IP checksum enabled but not "
3484 			"supported by port %d\n", port_id);
3485 	}
3486 }
3487 
3488 static void
3489 cmd_csum_parsed(void *parsed_result,
3490 		       __attribute__((unused)) struct cmdline *cl,
3491 		       __attribute__((unused)) void *data)
3492 {
3493 	struct cmd_csum_result *res = parsed_result;
3494 	int hw = 0;
3495 	uint16_t mask = 0;
3496 
3497 	if (port_id_is_invalid(res->port_id, ENABLED_WARN)) {
3498 		printf("invalid port %d\n", res->port_id);
3499 		return;
3500 	}
3501 
3502 	if (!strcmp(res->mode, "set")) {
3503 
3504 		if (!strcmp(res->hwsw, "hw"))
3505 			hw = 1;
3506 
3507 		if (!strcmp(res->proto, "ip")) {
3508 			mask = TESTPMD_TX_OFFLOAD_IP_CKSUM;
3509 		} else if (!strcmp(res->proto, "udp")) {
3510 			mask = TESTPMD_TX_OFFLOAD_UDP_CKSUM;
3511 		} else if (!strcmp(res->proto, "tcp")) {
3512 			mask = TESTPMD_TX_OFFLOAD_TCP_CKSUM;
3513 		} else if (!strcmp(res->proto, "sctp")) {
3514 			mask = TESTPMD_TX_OFFLOAD_SCTP_CKSUM;
3515 		} else if (!strcmp(res->proto, "outer-ip")) {
3516 			mask = TESTPMD_TX_OFFLOAD_OUTER_IP_CKSUM;
3517 		}
3518 
3519 		if (hw)
3520 			ports[res->port_id].tx_ol_flags |= mask;
3521 		else
3522 			ports[res->port_id].tx_ol_flags &= (~mask);
3523 	}
3524 	csum_show(res->port_id);
3525 }
3526 
3527 cmdline_parse_token_string_t cmd_csum_csum =
3528 	TOKEN_STRING_INITIALIZER(struct cmd_csum_result,
3529 				csum, "csum");
3530 cmdline_parse_token_string_t cmd_csum_mode =
3531 	TOKEN_STRING_INITIALIZER(struct cmd_csum_result,
3532 				mode, "set");
3533 cmdline_parse_token_string_t cmd_csum_proto =
3534 	TOKEN_STRING_INITIALIZER(struct cmd_csum_result,
3535 				proto, "ip#tcp#udp#sctp#outer-ip");
3536 cmdline_parse_token_string_t cmd_csum_hwsw =
3537 	TOKEN_STRING_INITIALIZER(struct cmd_csum_result,
3538 				hwsw, "hw#sw");
3539 cmdline_parse_token_num_t cmd_csum_portid =
3540 	TOKEN_NUM_INITIALIZER(struct cmd_csum_result,
3541 				port_id, UINT8);
3542 
3543 cmdline_parse_inst_t cmd_csum_set = {
3544 	.f = cmd_csum_parsed,
3545 	.data = NULL,
3546 	.help_str = "csum set ip|tcp|udp|sctp|outer-ip hw|sw <port_id>: "
3547 		"Enable/Disable hardware calculation of L3/L4 checksum when "
3548 		"using csum forward engine",
3549 	.tokens = {
3550 		(void *)&cmd_csum_csum,
3551 		(void *)&cmd_csum_mode,
3552 		(void *)&cmd_csum_proto,
3553 		(void *)&cmd_csum_hwsw,
3554 		(void *)&cmd_csum_portid,
3555 		NULL,
3556 	},
3557 };
3558 
3559 cmdline_parse_token_string_t cmd_csum_mode_show =
3560 	TOKEN_STRING_INITIALIZER(struct cmd_csum_result,
3561 				mode, "show");
3562 
3563 cmdline_parse_inst_t cmd_csum_show = {
3564 	.f = cmd_csum_parsed,
3565 	.data = NULL,
3566 	.help_str = "csum show <port_id>: Show checksum offload configuration",
3567 	.tokens = {
3568 		(void *)&cmd_csum_csum,
3569 		(void *)&cmd_csum_mode_show,
3570 		(void *)&cmd_csum_portid,
3571 		NULL,
3572 	},
3573 };
3574 
3575 /* Enable/disable tunnel parsing */
3576 struct cmd_csum_tunnel_result {
3577 	cmdline_fixed_string_t csum;
3578 	cmdline_fixed_string_t parse;
3579 	cmdline_fixed_string_t onoff;
3580 	uint8_t port_id;
3581 };
3582 
3583 static void
3584 cmd_csum_tunnel_parsed(void *parsed_result,
3585 		       __attribute__((unused)) struct cmdline *cl,
3586 		       __attribute__((unused)) void *data)
3587 {
3588 	struct cmd_csum_tunnel_result *res = parsed_result;
3589 
3590 	if (port_id_is_invalid(res->port_id, ENABLED_WARN))
3591 		return;
3592 
3593 	if (!strcmp(res->onoff, "on"))
3594 		ports[res->port_id].tx_ol_flags |=
3595 			TESTPMD_TX_OFFLOAD_PARSE_TUNNEL;
3596 	else
3597 		ports[res->port_id].tx_ol_flags &=
3598 			(~TESTPMD_TX_OFFLOAD_PARSE_TUNNEL);
3599 
3600 	csum_show(res->port_id);
3601 }
3602 
3603 cmdline_parse_token_string_t cmd_csum_tunnel_csum =
3604 	TOKEN_STRING_INITIALIZER(struct cmd_csum_tunnel_result,
3605 				csum, "csum");
3606 cmdline_parse_token_string_t cmd_csum_tunnel_parse =
3607 	TOKEN_STRING_INITIALIZER(struct cmd_csum_tunnel_result,
3608 				parse, "parse_tunnel");
3609 cmdline_parse_token_string_t cmd_csum_tunnel_onoff =
3610 	TOKEN_STRING_INITIALIZER(struct cmd_csum_tunnel_result,
3611 				onoff, "on#off");
3612 cmdline_parse_token_num_t cmd_csum_tunnel_portid =
3613 	TOKEN_NUM_INITIALIZER(struct cmd_csum_tunnel_result,
3614 				port_id, UINT8);
3615 
3616 cmdline_parse_inst_t cmd_csum_tunnel = {
3617 	.f = cmd_csum_tunnel_parsed,
3618 	.data = NULL,
3619 	.help_str = "csum parse_tunnel on|off <port_id>: "
3620 		"Enable/Disable parsing of tunnels for csum engine",
3621 	.tokens = {
3622 		(void *)&cmd_csum_tunnel_csum,
3623 		(void *)&cmd_csum_tunnel_parse,
3624 		(void *)&cmd_csum_tunnel_onoff,
3625 		(void *)&cmd_csum_tunnel_portid,
3626 		NULL,
3627 	},
3628 };
3629 
3630 /* *** ENABLE HARDWARE SEGMENTATION IN TX NON-TUNNELED PACKETS *** */
3631 struct cmd_tso_set_result {
3632 	cmdline_fixed_string_t tso;
3633 	cmdline_fixed_string_t mode;
3634 	uint16_t tso_segsz;
3635 	uint8_t port_id;
3636 };
3637 
3638 static void
3639 cmd_tso_set_parsed(void *parsed_result,
3640 		       __attribute__((unused)) struct cmdline *cl,
3641 		       __attribute__((unused)) void *data)
3642 {
3643 	struct cmd_tso_set_result *res = parsed_result;
3644 	struct rte_eth_dev_info dev_info;
3645 
3646 	if (port_id_is_invalid(res->port_id, ENABLED_WARN))
3647 		return;
3648 
3649 	if (!strcmp(res->mode, "set"))
3650 		ports[res->port_id].tso_segsz = res->tso_segsz;
3651 
3652 	if (ports[res->port_id].tso_segsz == 0)
3653 		printf("TSO for non-tunneled packets is disabled\n");
3654 	else
3655 		printf("TSO segment size for non-tunneled packets is %d\n",
3656 			ports[res->port_id].tso_segsz);
3657 
3658 	/* display warnings if configuration is not supported by the NIC */
3659 	rte_eth_dev_info_get(res->port_id, &dev_info);
3660 	if ((ports[res->port_id].tso_segsz != 0) &&
3661 		(dev_info.tx_offload_capa & DEV_TX_OFFLOAD_TCP_TSO) == 0) {
3662 		printf("Warning: TSO enabled but not "
3663 			"supported by port %d\n", res->port_id);
3664 	}
3665 }
3666 
3667 cmdline_parse_token_string_t cmd_tso_set_tso =
3668 	TOKEN_STRING_INITIALIZER(struct cmd_tso_set_result,
3669 				tso, "tso");
3670 cmdline_parse_token_string_t cmd_tso_set_mode =
3671 	TOKEN_STRING_INITIALIZER(struct cmd_tso_set_result,
3672 				mode, "set");
3673 cmdline_parse_token_num_t cmd_tso_set_tso_segsz =
3674 	TOKEN_NUM_INITIALIZER(struct cmd_tso_set_result,
3675 				tso_segsz, UINT16);
3676 cmdline_parse_token_num_t cmd_tso_set_portid =
3677 	TOKEN_NUM_INITIALIZER(struct cmd_tso_set_result,
3678 				port_id, UINT8);
3679 
3680 cmdline_parse_inst_t cmd_tso_set = {
3681 	.f = cmd_tso_set_parsed,
3682 	.data = NULL,
3683 	.help_str = "tso set <tso_segsz> <port_id>: "
3684 		"Set TSO segment size of non-tunneled packets for csum engine "
3685 		"(0 to disable)",
3686 	.tokens = {
3687 		(void *)&cmd_tso_set_tso,
3688 		(void *)&cmd_tso_set_mode,
3689 		(void *)&cmd_tso_set_tso_segsz,
3690 		(void *)&cmd_tso_set_portid,
3691 		NULL,
3692 	},
3693 };
3694 
3695 cmdline_parse_token_string_t cmd_tso_show_mode =
3696 	TOKEN_STRING_INITIALIZER(struct cmd_tso_set_result,
3697 				mode, "show");
3698 
3699 
3700 cmdline_parse_inst_t cmd_tso_show = {
3701 	.f = cmd_tso_set_parsed,
3702 	.data = NULL,
3703 	.help_str = "tso show <port_id>: "
3704 		"Show TSO segment size of non-tunneled packets for csum engine",
3705 	.tokens = {
3706 		(void *)&cmd_tso_set_tso,
3707 		(void *)&cmd_tso_show_mode,
3708 		(void *)&cmd_tso_set_portid,
3709 		NULL,
3710 	},
3711 };
3712 
3713 /* *** ENABLE HARDWARE SEGMENTATION IN TX TUNNELED PACKETS *** */
3714 struct cmd_tunnel_tso_set_result {
3715 	cmdline_fixed_string_t tso;
3716 	cmdline_fixed_string_t mode;
3717 	uint16_t tso_segsz;
3718 	uint8_t port_id;
3719 };
3720 
3721 static void
3722 check_tunnel_tso_nic_support(uint8_t port_id)
3723 {
3724 	struct rte_eth_dev_info dev_info;
3725 
3726 	rte_eth_dev_info_get(port_id, &dev_info);
3727 	if (!(dev_info.tx_offload_capa & DEV_TX_OFFLOAD_VXLAN_TNL_TSO))
3728 		printf("Warning: TSO enabled but VXLAN TUNNEL TSO not "
3729 		       "supported by port %d\n", port_id);
3730 	if (!(dev_info.tx_offload_capa & DEV_TX_OFFLOAD_GRE_TNL_TSO))
3731 		printf("Warning: TSO enabled but GRE TUNNEL TSO not "
3732 			"supported by port %d\n", port_id);
3733 	if (!(dev_info.tx_offload_capa & DEV_TX_OFFLOAD_IPIP_TNL_TSO))
3734 		printf("Warning: TSO enabled but IPIP TUNNEL TSO not "
3735 		       "supported by port %d\n", port_id);
3736 	if (!(dev_info.tx_offload_capa & DEV_TX_OFFLOAD_GENEVE_TNL_TSO))
3737 		printf("Warning: TSO enabled but GENEVE TUNNEL TSO not "
3738 		       "supported by port %d\n", port_id);
3739 }
3740 
3741 static void
3742 cmd_tunnel_tso_set_parsed(void *parsed_result,
3743 			  __attribute__((unused)) struct cmdline *cl,
3744 			  __attribute__((unused)) void *data)
3745 {
3746 	struct cmd_tunnel_tso_set_result *res = parsed_result;
3747 
3748 	if (port_id_is_invalid(res->port_id, ENABLED_WARN))
3749 		return;
3750 
3751 	if (!strcmp(res->mode, "set"))
3752 		ports[res->port_id].tunnel_tso_segsz = res->tso_segsz;
3753 
3754 	if (ports[res->port_id].tunnel_tso_segsz == 0)
3755 		printf("TSO for tunneled packets is disabled\n");
3756 	else {
3757 		printf("TSO segment size for tunneled packets is %d\n",
3758 			ports[res->port_id].tunnel_tso_segsz);
3759 
3760 		/* Below conditions are needed to make it work:
3761 		 * (1) tunnel TSO is supported by the NIC;
3762 		 * (2) "csum parse_tunnel" must be set so that tunneled pkts
3763 		 * are recognized;
3764 		 * (3) for tunneled pkts with outer L3 of IPv4,
3765 		 * "csum set outer-ip" must be set to hw, because after tso,
3766 		 * total_len of outer IP header is changed, and the checksum
3767 		 * of outer IP header calculated by sw should be wrong; that
3768 		 * is not necessary for IPv6 tunneled pkts because there's no
3769 		 * checksum in IP header anymore.
3770 		 */
3771 		check_tunnel_tso_nic_support(res->port_id);
3772 
3773 		if (!(ports[res->port_id].tx_ol_flags &
3774 		      TESTPMD_TX_OFFLOAD_PARSE_TUNNEL))
3775 			printf("Warning: csum parse_tunnel must be set "
3776 				"so that tunneled packets are recognized\n");
3777 		if (!(ports[res->port_id].tx_ol_flags &
3778 		      TESTPMD_TX_OFFLOAD_OUTER_IP_CKSUM))
3779 			printf("Warning: csum set outer-ip must be set to hw "
3780 				"if outer L3 is IPv4; not necessary for IPv6\n");
3781 	}
3782 }
3783 
3784 cmdline_parse_token_string_t cmd_tunnel_tso_set_tso =
3785 	TOKEN_STRING_INITIALIZER(struct cmd_tunnel_tso_set_result,
3786 				tso, "tunnel_tso");
3787 cmdline_parse_token_string_t cmd_tunnel_tso_set_mode =
3788 	TOKEN_STRING_INITIALIZER(struct cmd_tunnel_tso_set_result,
3789 				mode, "set");
3790 cmdline_parse_token_num_t cmd_tunnel_tso_set_tso_segsz =
3791 	TOKEN_NUM_INITIALIZER(struct cmd_tunnel_tso_set_result,
3792 				tso_segsz, UINT16);
3793 cmdline_parse_token_num_t cmd_tunnel_tso_set_portid =
3794 	TOKEN_NUM_INITIALIZER(struct cmd_tunnel_tso_set_result,
3795 				port_id, UINT8);
3796 
3797 cmdline_parse_inst_t cmd_tunnel_tso_set = {
3798 	.f = cmd_tunnel_tso_set_parsed,
3799 	.data = NULL,
3800 	.help_str = "tunnel_tso set <tso_segsz> <port_id>: "
3801 		"Set TSO segment size of tunneled packets for csum engine "
3802 		"(0 to disable)",
3803 	.tokens = {
3804 		(void *)&cmd_tunnel_tso_set_tso,
3805 		(void *)&cmd_tunnel_tso_set_mode,
3806 		(void *)&cmd_tunnel_tso_set_tso_segsz,
3807 		(void *)&cmd_tunnel_tso_set_portid,
3808 		NULL,
3809 	},
3810 };
3811 
3812 cmdline_parse_token_string_t cmd_tunnel_tso_show_mode =
3813 	TOKEN_STRING_INITIALIZER(struct cmd_tunnel_tso_set_result,
3814 				mode, "show");
3815 
3816 
3817 cmdline_parse_inst_t cmd_tunnel_tso_show = {
3818 	.f = cmd_tunnel_tso_set_parsed,
3819 	.data = NULL,
3820 	.help_str = "tunnel_tso show <port_id> "
3821 		"Show TSO segment size of tunneled packets for csum engine",
3822 	.tokens = {
3823 		(void *)&cmd_tunnel_tso_set_tso,
3824 		(void *)&cmd_tunnel_tso_show_mode,
3825 		(void *)&cmd_tunnel_tso_set_portid,
3826 		NULL,
3827 	},
3828 };
3829 
3830 /* *** ENABLE/DISABLE FLUSH ON RX STREAMS *** */
3831 struct cmd_set_flush_rx {
3832 	cmdline_fixed_string_t set;
3833 	cmdline_fixed_string_t flush_rx;
3834 	cmdline_fixed_string_t mode;
3835 };
3836 
3837 static void
3838 cmd_set_flush_rx_parsed(void *parsed_result,
3839 		__attribute__((unused)) struct cmdline *cl,
3840 		__attribute__((unused)) void *data)
3841 {
3842 	struct cmd_set_flush_rx *res = parsed_result;
3843 	no_flush_rx = (uint8_t)((strcmp(res->mode, "on") == 0) ? 0 : 1);
3844 }
3845 
3846 cmdline_parse_token_string_t cmd_setflushrx_set =
3847 	TOKEN_STRING_INITIALIZER(struct cmd_set_flush_rx,
3848 			set, "set");
3849 cmdline_parse_token_string_t cmd_setflushrx_flush_rx =
3850 	TOKEN_STRING_INITIALIZER(struct cmd_set_flush_rx,
3851 			flush_rx, "flush_rx");
3852 cmdline_parse_token_string_t cmd_setflushrx_mode =
3853 	TOKEN_STRING_INITIALIZER(struct cmd_set_flush_rx,
3854 			mode, "on#off");
3855 
3856 
3857 cmdline_parse_inst_t cmd_set_flush_rx = {
3858 	.f = cmd_set_flush_rx_parsed,
3859 	.help_str = "set flush_rx on|off: Enable/Disable flush on rx streams",
3860 	.data = NULL,
3861 	.tokens = {
3862 		(void *)&cmd_setflushrx_set,
3863 		(void *)&cmd_setflushrx_flush_rx,
3864 		(void *)&cmd_setflushrx_mode,
3865 		NULL,
3866 	},
3867 };
3868 
3869 /* *** ENABLE/DISABLE LINK STATUS CHECK *** */
3870 struct cmd_set_link_check {
3871 	cmdline_fixed_string_t set;
3872 	cmdline_fixed_string_t link_check;
3873 	cmdline_fixed_string_t mode;
3874 };
3875 
3876 static void
3877 cmd_set_link_check_parsed(void *parsed_result,
3878 		__attribute__((unused)) struct cmdline *cl,
3879 		__attribute__((unused)) void *data)
3880 {
3881 	struct cmd_set_link_check *res = parsed_result;
3882 	no_link_check = (uint8_t)((strcmp(res->mode, "on") == 0) ? 0 : 1);
3883 }
3884 
3885 cmdline_parse_token_string_t cmd_setlinkcheck_set =
3886 	TOKEN_STRING_INITIALIZER(struct cmd_set_link_check,
3887 			set, "set");
3888 cmdline_parse_token_string_t cmd_setlinkcheck_link_check =
3889 	TOKEN_STRING_INITIALIZER(struct cmd_set_link_check,
3890 			link_check, "link_check");
3891 cmdline_parse_token_string_t cmd_setlinkcheck_mode =
3892 	TOKEN_STRING_INITIALIZER(struct cmd_set_link_check,
3893 			mode, "on#off");
3894 
3895 
3896 cmdline_parse_inst_t cmd_set_link_check = {
3897 	.f = cmd_set_link_check_parsed,
3898 	.help_str = "set link_check on|off: Enable/Disable link status check "
3899 	            "when starting/stopping a port",
3900 	.data = NULL,
3901 	.tokens = {
3902 		(void *)&cmd_setlinkcheck_set,
3903 		(void *)&cmd_setlinkcheck_link_check,
3904 		(void *)&cmd_setlinkcheck_mode,
3905 		NULL,
3906 	},
3907 };
3908 
3909 /* *** SET NIC BYPASS MODE *** */
3910 struct cmd_set_bypass_mode_result {
3911 	cmdline_fixed_string_t set;
3912 	cmdline_fixed_string_t bypass;
3913 	cmdline_fixed_string_t mode;
3914 	cmdline_fixed_string_t value;
3915 	uint8_t port_id;
3916 };
3917 
3918 static void
3919 cmd_set_bypass_mode_parsed(void *parsed_result,
3920 		__attribute__((unused)) struct cmdline *cl,
3921 		__attribute__((unused)) void *data)
3922 {
3923 	struct cmd_set_bypass_mode_result *res = parsed_result;
3924 	portid_t port_id = res->port_id;
3925 	int32_t rc = -EINVAL;
3926 
3927 #ifdef RTE_LIBRTE_IXGBE_BYPASS
3928 	uint32_t bypass_mode = RTE_PMD_IXGBE_BYPASS_MODE_NORMAL;
3929 
3930 	if (!strcmp(res->value, "bypass"))
3931 		bypass_mode = RTE_PMD_IXGBE_BYPASS_MODE_BYPASS;
3932 	else if (!strcmp(res->value, "isolate"))
3933 		bypass_mode = RTE_PMD_IXGBE_BYPASS_MODE_ISOLATE;
3934 	else
3935 		bypass_mode = RTE_PMD_IXGBE_BYPASS_MODE_NORMAL;
3936 
3937 	/* Set the bypass mode for the relevant port. */
3938 	rc = rte_pmd_ixgbe_bypass_state_set(port_id, &bypass_mode);
3939 #endif
3940 	if (rc != 0)
3941 		printf("\t Failed to set bypass mode for port = %d.\n", port_id);
3942 }
3943 
3944 cmdline_parse_token_string_t cmd_setbypass_mode_set =
3945 	TOKEN_STRING_INITIALIZER(struct cmd_set_bypass_mode_result,
3946 			set, "set");
3947 cmdline_parse_token_string_t cmd_setbypass_mode_bypass =
3948 	TOKEN_STRING_INITIALIZER(struct cmd_set_bypass_mode_result,
3949 			bypass, "bypass");
3950 cmdline_parse_token_string_t cmd_setbypass_mode_mode =
3951 	TOKEN_STRING_INITIALIZER(struct cmd_set_bypass_mode_result,
3952 			mode, "mode");
3953 cmdline_parse_token_string_t cmd_setbypass_mode_value =
3954 	TOKEN_STRING_INITIALIZER(struct cmd_set_bypass_mode_result,
3955 			value, "normal#bypass#isolate");
3956 cmdline_parse_token_num_t cmd_setbypass_mode_port =
3957 	TOKEN_NUM_INITIALIZER(struct cmd_set_bypass_mode_result,
3958 				port_id, UINT8);
3959 
3960 cmdline_parse_inst_t cmd_set_bypass_mode = {
3961 	.f = cmd_set_bypass_mode_parsed,
3962 	.help_str = "set bypass mode normal|bypass|isolate <port_id>: "
3963 	            "Set the NIC bypass mode for port_id",
3964 	.data = NULL,
3965 	.tokens = {
3966 		(void *)&cmd_setbypass_mode_set,
3967 		(void *)&cmd_setbypass_mode_bypass,
3968 		(void *)&cmd_setbypass_mode_mode,
3969 		(void *)&cmd_setbypass_mode_value,
3970 		(void *)&cmd_setbypass_mode_port,
3971 		NULL,
3972 	},
3973 };
3974 
3975 /* *** SET NIC BYPASS EVENT *** */
3976 struct cmd_set_bypass_event_result {
3977 	cmdline_fixed_string_t set;
3978 	cmdline_fixed_string_t bypass;
3979 	cmdline_fixed_string_t event;
3980 	cmdline_fixed_string_t event_value;
3981 	cmdline_fixed_string_t mode;
3982 	cmdline_fixed_string_t mode_value;
3983 	uint8_t port_id;
3984 };
3985 
3986 static void
3987 cmd_set_bypass_event_parsed(void *parsed_result,
3988 		__attribute__((unused)) struct cmdline *cl,
3989 		__attribute__((unused)) void *data)
3990 {
3991 	int32_t rc = -EINVAL;
3992 	struct cmd_set_bypass_event_result *res = parsed_result;
3993 	portid_t port_id = res->port_id;
3994 
3995 #ifdef RTE_LIBRTE_IXGBE_BYPASS
3996 	uint32_t bypass_event = RTE_PMD_IXGBE_BYPASS_EVENT_NONE;
3997 	uint32_t bypass_mode = RTE_PMD_IXGBE_BYPASS_MODE_NORMAL;
3998 
3999 	if (!strcmp(res->event_value, "timeout"))
4000 		bypass_event = RTE_PMD_IXGBE_BYPASS_EVENT_TIMEOUT;
4001 	else if (!strcmp(res->event_value, "os_on"))
4002 		bypass_event = RTE_PMD_IXGBE_BYPASS_EVENT_OS_ON;
4003 	else if (!strcmp(res->event_value, "os_off"))
4004 		bypass_event = RTE_PMD_IXGBE_BYPASS_EVENT_OS_OFF;
4005 	else if (!strcmp(res->event_value, "power_on"))
4006 		bypass_event = RTE_PMD_IXGBE_BYPASS_EVENT_POWER_ON;
4007 	else if (!strcmp(res->event_value, "power_off"))
4008 		bypass_event = RTE_PMD_IXGBE_BYPASS_EVENT_POWER_OFF;
4009 	else
4010 		bypass_event = RTE_PMD_IXGBE_BYPASS_EVENT_NONE;
4011 
4012 	if (!strcmp(res->mode_value, "bypass"))
4013 		bypass_mode = RTE_PMD_IXGBE_BYPASS_MODE_BYPASS;
4014 	else if (!strcmp(res->mode_value, "isolate"))
4015 		bypass_mode = RTE_PMD_IXGBE_BYPASS_MODE_ISOLATE;
4016 	else
4017 		bypass_mode = RTE_PMD_IXGBE_BYPASS_MODE_NORMAL;
4018 
4019 	/* Set the watchdog timeout. */
4020 	if (bypass_event == RTE_PMD_IXGBE_BYPASS_EVENT_TIMEOUT) {
4021 
4022 		rc = -EINVAL;
4023 		if (RTE_PMD_IXGBE_BYPASS_TMT_VALID(bypass_timeout)) {
4024 			rc = rte_pmd_ixgbe_bypass_wd_timeout_store(port_id,
4025 							   bypass_timeout);
4026 		}
4027 		if (rc != 0) {
4028 			printf("Failed to set timeout value %u "
4029 			"for port %d, errto code: %d.\n",
4030 			bypass_timeout, port_id, rc);
4031 		}
4032 	}
4033 
4034 	/* Set the bypass event to transition to bypass mode. */
4035 	rc = rte_pmd_ixgbe_bypass_event_store(port_id, bypass_event,
4036 					      bypass_mode);
4037 #endif
4038 
4039 	if (rc != 0)
4040 		printf("\t Failed to set bypass event for port = %d.\n",
4041 		       port_id);
4042 }
4043 
4044 cmdline_parse_token_string_t cmd_setbypass_event_set =
4045 	TOKEN_STRING_INITIALIZER(struct cmd_set_bypass_event_result,
4046 			set, "set");
4047 cmdline_parse_token_string_t cmd_setbypass_event_bypass =
4048 	TOKEN_STRING_INITIALIZER(struct cmd_set_bypass_event_result,
4049 			bypass, "bypass");
4050 cmdline_parse_token_string_t cmd_setbypass_event_event =
4051 	TOKEN_STRING_INITIALIZER(struct cmd_set_bypass_event_result,
4052 			event, "event");
4053 cmdline_parse_token_string_t cmd_setbypass_event_event_value =
4054 	TOKEN_STRING_INITIALIZER(struct cmd_set_bypass_event_result,
4055 			event_value, "none#timeout#os_off#os_on#power_on#power_off");
4056 cmdline_parse_token_string_t cmd_setbypass_event_mode =
4057 	TOKEN_STRING_INITIALIZER(struct cmd_set_bypass_event_result,
4058 			mode, "mode");
4059 cmdline_parse_token_string_t cmd_setbypass_event_mode_value =
4060 	TOKEN_STRING_INITIALIZER(struct cmd_set_bypass_event_result,
4061 			mode_value, "normal#bypass#isolate");
4062 cmdline_parse_token_num_t cmd_setbypass_event_port =
4063 	TOKEN_NUM_INITIALIZER(struct cmd_set_bypass_event_result,
4064 				port_id, UINT8);
4065 
4066 cmdline_parse_inst_t cmd_set_bypass_event = {
4067 	.f = cmd_set_bypass_event_parsed,
4068 	.help_str = "set bypass event none|timeout|os_on|os_off|power_on|"
4069 		"power_off mode normal|bypass|isolate <port_id>: "
4070 		"Set the NIC bypass event mode for port_id",
4071 	.data = NULL,
4072 	.tokens = {
4073 		(void *)&cmd_setbypass_event_set,
4074 		(void *)&cmd_setbypass_event_bypass,
4075 		(void *)&cmd_setbypass_event_event,
4076 		(void *)&cmd_setbypass_event_event_value,
4077 		(void *)&cmd_setbypass_event_mode,
4078 		(void *)&cmd_setbypass_event_mode_value,
4079 		(void *)&cmd_setbypass_event_port,
4080 		NULL,
4081 	},
4082 };
4083 
4084 
4085 /* *** SET NIC BYPASS TIMEOUT *** */
4086 struct cmd_set_bypass_timeout_result {
4087 	cmdline_fixed_string_t set;
4088 	cmdline_fixed_string_t bypass;
4089 	cmdline_fixed_string_t timeout;
4090 	cmdline_fixed_string_t value;
4091 };
4092 
4093 static void
4094 cmd_set_bypass_timeout_parsed(void *parsed_result,
4095 		__attribute__((unused)) struct cmdline *cl,
4096 		__attribute__((unused)) void *data)
4097 {
4098 	__rte_unused struct cmd_set_bypass_timeout_result *res = parsed_result;
4099 
4100 #ifdef RTE_LIBRTE_IXGBE_BYPASS
4101 	if (!strcmp(res->value, "1.5"))
4102 		bypass_timeout = RTE_PMD_IXGBE_BYPASS_TMT_1_5_SEC;
4103 	else if (!strcmp(res->value, "2"))
4104 		bypass_timeout = RTE_PMD_IXGBE_BYPASS_TMT_2_SEC;
4105 	else if (!strcmp(res->value, "3"))
4106 		bypass_timeout = RTE_PMD_IXGBE_BYPASS_TMT_3_SEC;
4107 	else if (!strcmp(res->value, "4"))
4108 		bypass_timeout = RTE_PMD_IXGBE_BYPASS_TMT_4_SEC;
4109 	else if (!strcmp(res->value, "8"))
4110 		bypass_timeout = RTE_PMD_IXGBE_BYPASS_TMT_8_SEC;
4111 	else if (!strcmp(res->value, "16"))
4112 		bypass_timeout = RTE_PMD_IXGBE_BYPASS_TMT_16_SEC;
4113 	else if (!strcmp(res->value, "32"))
4114 		bypass_timeout = RTE_PMD_IXGBE_BYPASS_TMT_32_SEC;
4115 	else
4116 		bypass_timeout = RTE_PMD_IXGBE_BYPASS_TMT_OFF;
4117 #endif
4118 }
4119 
4120 cmdline_parse_token_string_t cmd_setbypass_timeout_set =
4121 	TOKEN_STRING_INITIALIZER(struct cmd_set_bypass_timeout_result,
4122 			set, "set");
4123 cmdline_parse_token_string_t cmd_setbypass_timeout_bypass =
4124 	TOKEN_STRING_INITIALIZER(struct cmd_set_bypass_timeout_result,
4125 			bypass, "bypass");
4126 cmdline_parse_token_string_t cmd_setbypass_timeout_timeout =
4127 	TOKEN_STRING_INITIALIZER(struct cmd_set_bypass_timeout_result,
4128 			timeout, "timeout");
4129 cmdline_parse_token_string_t cmd_setbypass_timeout_value =
4130 	TOKEN_STRING_INITIALIZER(struct cmd_set_bypass_timeout_result,
4131 			value, "0#1.5#2#3#4#8#16#32");
4132 
4133 cmdline_parse_inst_t cmd_set_bypass_timeout = {
4134 	.f = cmd_set_bypass_timeout_parsed,
4135 	.help_str = "set bypass timeout 0|1.5|2|3|4|8|16|32: "
4136 		"Set the NIC bypass watchdog timeout in seconds",
4137 	.data = NULL,
4138 	.tokens = {
4139 		(void *)&cmd_setbypass_timeout_set,
4140 		(void *)&cmd_setbypass_timeout_bypass,
4141 		(void *)&cmd_setbypass_timeout_timeout,
4142 		(void *)&cmd_setbypass_timeout_value,
4143 		NULL,
4144 	},
4145 };
4146 
4147 /* *** SHOW NIC BYPASS MODE *** */
4148 struct cmd_show_bypass_config_result {
4149 	cmdline_fixed_string_t show;
4150 	cmdline_fixed_string_t bypass;
4151 	cmdline_fixed_string_t config;
4152 	uint8_t port_id;
4153 };
4154 
4155 static void
4156 cmd_show_bypass_config_parsed(void *parsed_result,
4157 		__attribute__((unused)) struct cmdline *cl,
4158 		__attribute__((unused)) void *data)
4159 {
4160 	struct cmd_show_bypass_config_result *res = parsed_result;
4161 	portid_t port_id = res->port_id;
4162 	int rc = -EINVAL;
4163 #ifdef RTE_LIBRTE_IXGBE_BYPASS
4164 	uint32_t event_mode;
4165 	uint32_t bypass_mode;
4166 	uint32_t timeout = bypass_timeout;
4167 	int i;
4168 
4169 	static const char * const timeouts[RTE_PMD_IXGBE_BYPASS_TMT_NUM] =
4170 		{"off", "1.5", "2", "3", "4", "8", "16", "32"};
4171 	static const char * const modes[RTE_PMD_IXGBE_BYPASS_MODE_NUM] =
4172 		{"UNKNOWN", "normal", "bypass", "isolate"};
4173 	static const char * const events[RTE_PMD_IXGBE_BYPASS_EVENT_NUM] = {
4174 		"NONE",
4175 		"OS/board on",
4176 		"power supply on",
4177 		"OS/board off",
4178 		"power supply off",
4179 		"timeout"};
4180 	int num_events = (sizeof events) / (sizeof events[0]);
4181 
4182 	/* Display the bypass mode.*/
4183 	if (rte_pmd_ixgbe_bypass_state_show(port_id, &bypass_mode) != 0) {
4184 		printf("\tFailed to get bypass mode for port = %d\n", port_id);
4185 		return;
4186 	}
4187 	else {
4188 		if (!RTE_PMD_IXGBE_BYPASS_MODE_VALID(bypass_mode))
4189 			bypass_mode = RTE_PMD_IXGBE_BYPASS_MODE_NONE;
4190 
4191 		printf("\tbypass mode    = %s\n",  modes[bypass_mode]);
4192 	}
4193 
4194 	/* Display the bypass timeout.*/
4195 	if (!RTE_PMD_IXGBE_BYPASS_TMT_VALID(timeout))
4196 		timeout = RTE_PMD_IXGBE_BYPASS_TMT_OFF;
4197 
4198 	printf("\tbypass timeout = %s\n", timeouts[timeout]);
4199 
4200 	/* Display the bypass events and associated modes. */
4201 	for (i = RTE_PMD_IXGBE_BYPASS_EVENT_START; i < num_events; i++) {
4202 
4203 		if (rte_pmd_ixgbe_bypass_event_show(port_id, i, &event_mode)) {
4204 			printf("\tFailed to get bypass mode for event = %s\n",
4205 				events[i]);
4206 		} else {
4207 			if (!RTE_PMD_IXGBE_BYPASS_MODE_VALID(event_mode))
4208 				event_mode = RTE_PMD_IXGBE_BYPASS_MODE_NONE;
4209 
4210 			printf("\tbypass event: %-16s = %s\n", events[i],
4211 				modes[event_mode]);
4212 		}
4213 	}
4214 #endif
4215 	if (rc != 0)
4216 		printf("\tFailed to get bypass configuration for port = %d\n",
4217 		       port_id);
4218 }
4219 
4220 cmdline_parse_token_string_t cmd_showbypass_config_show =
4221 	TOKEN_STRING_INITIALIZER(struct cmd_show_bypass_config_result,
4222 			show, "show");
4223 cmdline_parse_token_string_t cmd_showbypass_config_bypass =
4224 	TOKEN_STRING_INITIALIZER(struct cmd_show_bypass_config_result,
4225 			bypass, "bypass");
4226 cmdline_parse_token_string_t cmd_showbypass_config_config =
4227 	TOKEN_STRING_INITIALIZER(struct cmd_show_bypass_config_result,
4228 			config, "config");
4229 cmdline_parse_token_num_t cmd_showbypass_config_port =
4230 	TOKEN_NUM_INITIALIZER(struct cmd_show_bypass_config_result,
4231 				port_id, UINT8);
4232 
4233 cmdline_parse_inst_t cmd_show_bypass_config = {
4234 	.f = cmd_show_bypass_config_parsed,
4235 	.help_str = "show bypass config <port_id>: "
4236 	            "Show the NIC bypass config for port_id",
4237 	.data = NULL,
4238 	.tokens = {
4239 		(void *)&cmd_showbypass_config_show,
4240 		(void *)&cmd_showbypass_config_bypass,
4241 		(void *)&cmd_showbypass_config_config,
4242 		(void *)&cmd_showbypass_config_port,
4243 		NULL,
4244 	},
4245 };
4246 
4247 #ifdef RTE_LIBRTE_PMD_BOND
4248 /* *** SET BONDING MODE *** */
4249 struct cmd_set_bonding_mode_result {
4250 	cmdline_fixed_string_t set;
4251 	cmdline_fixed_string_t bonding;
4252 	cmdline_fixed_string_t mode;
4253 	uint8_t value;
4254 	uint8_t port_id;
4255 };
4256 
4257 static void cmd_set_bonding_mode_parsed(void *parsed_result,
4258 		__attribute__((unused))  struct cmdline *cl,
4259 		__attribute__((unused)) void *data)
4260 {
4261 	struct cmd_set_bonding_mode_result *res = parsed_result;
4262 	portid_t port_id = res->port_id;
4263 
4264 	/* Set the bonding mode for the relevant port. */
4265 	if (0 != rte_eth_bond_mode_set(port_id, res->value))
4266 		printf("\t Failed to set bonding mode for port = %d.\n", port_id);
4267 }
4268 
4269 cmdline_parse_token_string_t cmd_setbonding_mode_set =
4270 TOKEN_STRING_INITIALIZER(struct cmd_set_bonding_mode_result,
4271 		set, "set");
4272 cmdline_parse_token_string_t cmd_setbonding_mode_bonding =
4273 TOKEN_STRING_INITIALIZER(struct cmd_set_bonding_mode_result,
4274 		bonding, "bonding");
4275 cmdline_parse_token_string_t cmd_setbonding_mode_mode =
4276 TOKEN_STRING_INITIALIZER(struct cmd_set_bonding_mode_result,
4277 		mode, "mode");
4278 cmdline_parse_token_num_t cmd_setbonding_mode_value =
4279 TOKEN_NUM_INITIALIZER(struct cmd_set_bonding_mode_result,
4280 		value, UINT8);
4281 cmdline_parse_token_num_t cmd_setbonding_mode_port =
4282 TOKEN_NUM_INITIALIZER(struct cmd_set_bonding_mode_result,
4283 		port_id, UINT8);
4284 
4285 cmdline_parse_inst_t cmd_set_bonding_mode = {
4286 		.f = cmd_set_bonding_mode_parsed,
4287 		.help_str = "set bonding mode <mode_value> <port_id>: "
4288 			"Set the bonding mode for port_id",
4289 		.data = NULL,
4290 		.tokens = {
4291 				(void *) &cmd_setbonding_mode_set,
4292 				(void *) &cmd_setbonding_mode_bonding,
4293 				(void *) &cmd_setbonding_mode_mode,
4294 				(void *) &cmd_setbonding_mode_value,
4295 				(void *) &cmd_setbonding_mode_port,
4296 				NULL
4297 		}
4298 };
4299 
4300 /* *** SET BALANCE XMIT POLICY *** */
4301 struct cmd_set_bonding_balance_xmit_policy_result {
4302 	cmdline_fixed_string_t set;
4303 	cmdline_fixed_string_t bonding;
4304 	cmdline_fixed_string_t balance_xmit_policy;
4305 	uint8_t port_id;
4306 	cmdline_fixed_string_t policy;
4307 };
4308 
4309 static void cmd_set_bonding_balance_xmit_policy_parsed(void *parsed_result,
4310 		__attribute__((unused))  struct cmdline *cl,
4311 		__attribute__((unused)) void *data)
4312 {
4313 	struct cmd_set_bonding_balance_xmit_policy_result *res = parsed_result;
4314 	portid_t port_id = res->port_id;
4315 	uint8_t policy;
4316 
4317 	if (!strcmp(res->policy, "l2")) {
4318 		policy = BALANCE_XMIT_POLICY_LAYER2;
4319 	} else if (!strcmp(res->policy, "l23")) {
4320 		policy = BALANCE_XMIT_POLICY_LAYER23;
4321 	} else if (!strcmp(res->policy, "l34")) {
4322 		policy = BALANCE_XMIT_POLICY_LAYER34;
4323 	} else {
4324 		printf("\t Invalid xmit policy selection");
4325 		return;
4326 	}
4327 
4328 	/* Set the bonding mode for the relevant port. */
4329 	if (0 != rte_eth_bond_xmit_policy_set(port_id, policy)) {
4330 		printf("\t Failed to set bonding balance xmit policy for port = %d.\n",
4331 				port_id);
4332 	}
4333 }
4334 
4335 cmdline_parse_token_string_t cmd_setbonding_balance_xmit_policy_set =
4336 TOKEN_STRING_INITIALIZER(struct cmd_set_bonding_balance_xmit_policy_result,
4337 		set, "set");
4338 cmdline_parse_token_string_t cmd_setbonding_balance_xmit_policy_bonding =
4339 TOKEN_STRING_INITIALIZER(struct cmd_set_bonding_balance_xmit_policy_result,
4340 		bonding, "bonding");
4341 cmdline_parse_token_string_t cmd_setbonding_balance_xmit_policy_balance_xmit_policy =
4342 TOKEN_STRING_INITIALIZER(struct cmd_set_bonding_balance_xmit_policy_result,
4343 		balance_xmit_policy, "balance_xmit_policy");
4344 cmdline_parse_token_num_t cmd_setbonding_balance_xmit_policy_port =
4345 TOKEN_NUM_INITIALIZER(struct cmd_set_bonding_balance_xmit_policy_result,
4346 		port_id, UINT8);
4347 cmdline_parse_token_string_t cmd_setbonding_balance_xmit_policy_policy =
4348 TOKEN_STRING_INITIALIZER(struct cmd_set_bonding_balance_xmit_policy_result,
4349 		policy, "l2#l23#l34");
4350 
4351 cmdline_parse_inst_t cmd_set_balance_xmit_policy = {
4352 		.f = cmd_set_bonding_balance_xmit_policy_parsed,
4353 		.help_str = "set bonding balance_xmit_policy <port_id> "
4354 			"l2|l23|l34: "
4355 			"Set the bonding balance_xmit_policy for port_id",
4356 		.data = NULL,
4357 		.tokens = {
4358 				(void *)&cmd_setbonding_balance_xmit_policy_set,
4359 				(void *)&cmd_setbonding_balance_xmit_policy_bonding,
4360 				(void *)&cmd_setbonding_balance_xmit_policy_balance_xmit_policy,
4361 				(void *)&cmd_setbonding_balance_xmit_policy_port,
4362 				(void *)&cmd_setbonding_balance_xmit_policy_policy,
4363 				NULL
4364 		}
4365 };
4366 
4367 /* *** SHOW NIC BONDING CONFIGURATION *** */
4368 struct cmd_show_bonding_config_result {
4369 	cmdline_fixed_string_t show;
4370 	cmdline_fixed_string_t bonding;
4371 	cmdline_fixed_string_t config;
4372 	uint8_t port_id;
4373 };
4374 
4375 static void cmd_show_bonding_config_parsed(void *parsed_result,
4376 		__attribute__((unused))  struct cmdline *cl,
4377 		__attribute__((unused)) void *data)
4378 {
4379 	struct cmd_show_bonding_config_result *res = parsed_result;
4380 	int bonding_mode;
4381 	uint8_t slaves[RTE_MAX_ETHPORTS];
4382 	int num_slaves, num_active_slaves;
4383 	int primary_id;
4384 	int i;
4385 	portid_t port_id = res->port_id;
4386 
4387 	/* Display the bonding mode.*/
4388 	bonding_mode = rte_eth_bond_mode_get(port_id);
4389 	if (bonding_mode < 0) {
4390 		printf("\tFailed to get bonding mode for port = %d\n", port_id);
4391 		return;
4392 	} else
4393 		printf("\tBonding mode: %d\n", bonding_mode);
4394 
4395 	if (bonding_mode == BONDING_MODE_BALANCE) {
4396 		int balance_xmit_policy;
4397 
4398 		balance_xmit_policy = rte_eth_bond_xmit_policy_get(port_id);
4399 		if (balance_xmit_policy < 0) {
4400 			printf("\tFailed to get balance xmit policy for port = %d\n",
4401 					port_id);
4402 			return;
4403 		} else {
4404 			printf("\tBalance Xmit Policy: ");
4405 
4406 			switch (balance_xmit_policy) {
4407 			case BALANCE_XMIT_POLICY_LAYER2:
4408 				printf("BALANCE_XMIT_POLICY_LAYER2");
4409 				break;
4410 			case BALANCE_XMIT_POLICY_LAYER23:
4411 				printf("BALANCE_XMIT_POLICY_LAYER23");
4412 				break;
4413 			case BALANCE_XMIT_POLICY_LAYER34:
4414 				printf("BALANCE_XMIT_POLICY_LAYER34");
4415 				break;
4416 			}
4417 			printf("\n");
4418 		}
4419 	}
4420 
4421 	num_slaves = rte_eth_bond_slaves_get(port_id, slaves, RTE_MAX_ETHPORTS);
4422 
4423 	if (num_slaves < 0) {
4424 		printf("\tFailed to get slave list for port = %d\n", port_id);
4425 		return;
4426 	}
4427 	if (num_slaves > 0) {
4428 		printf("\tSlaves (%d): [", num_slaves);
4429 		for (i = 0; i < num_slaves - 1; i++)
4430 			printf("%d ", slaves[i]);
4431 
4432 		printf("%d]\n", slaves[num_slaves - 1]);
4433 	} else {
4434 		printf("\tSlaves: []\n");
4435 
4436 	}
4437 
4438 	num_active_slaves = rte_eth_bond_active_slaves_get(port_id, slaves,
4439 			RTE_MAX_ETHPORTS);
4440 
4441 	if (num_active_slaves < 0) {
4442 		printf("\tFailed to get active slave list for port = %d\n", port_id);
4443 		return;
4444 	}
4445 	if (num_active_slaves > 0) {
4446 		printf("\tActive Slaves (%d): [", num_active_slaves);
4447 		for (i = 0; i < num_active_slaves - 1; i++)
4448 			printf("%d ", slaves[i]);
4449 
4450 		printf("%d]\n", slaves[num_active_slaves - 1]);
4451 
4452 	} else {
4453 		printf("\tActive Slaves: []\n");
4454 
4455 	}
4456 
4457 	primary_id = rte_eth_bond_primary_get(port_id);
4458 	if (primary_id < 0) {
4459 		printf("\tFailed to get primary slave for port = %d\n", port_id);
4460 		return;
4461 	} else
4462 		printf("\tPrimary: [%d]\n", primary_id);
4463 
4464 }
4465 
4466 cmdline_parse_token_string_t cmd_showbonding_config_show =
4467 TOKEN_STRING_INITIALIZER(struct cmd_show_bonding_config_result,
4468 		show, "show");
4469 cmdline_parse_token_string_t cmd_showbonding_config_bonding =
4470 TOKEN_STRING_INITIALIZER(struct cmd_show_bonding_config_result,
4471 		bonding, "bonding");
4472 cmdline_parse_token_string_t cmd_showbonding_config_config =
4473 TOKEN_STRING_INITIALIZER(struct cmd_show_bonding_config_result,
4474 		config, "config");
4475 cmdline_parse_token_num_t cmd_showbonding_config_port =
4476 TOKEN_NUM_INITIALIZER(struct cmd_show_bonding_config_result,
4477 		port_id, UINT8);
4478 
4479 cmdline_parse_inst_t cmd_show_bonding_config = {
4480 		.f = cmd_show_bonding_config_parsed,
4481 		.help_str = "show bonding config <port_id>: "
4482 			"Show the bonding config for port_id",
4483 		.data = NULL,
4484 		.tokens = {
4485 				(void *)&cmd_showbonding_config_show,
4486 				(void *)&cmd_showbonding_config_bonding,
4487 				(void *)&cmd_showbonding_config_config,
4488 				(void *)&cmd_showbonding_config_port,
4489 				NULL
4490 		}
4491 };
4492 
4493 /* *** SET BONDING PRIMARY *** */
4494 struct cmd_set_bonding_primary_result {
4495 	cmdline_fixed_string_t set;
4496 	cmdline_fixed_string_t bonding;
4497 	cmdline_fixed_string_t primary;
4498 	uint8_t slave_id;
4499 	uint8_t port_id;
4500 };
4501 
4502 static void cmd_set_bonding_primary_parsed(void *parsed_result,
4503 		__attribute__((unused))  struct cmdline *cl,
4504 		__attribute__((unused)) void *data)
4505 {
4506 	struct cmd_set_bonding_primary_result *res = parsed_result;
4507 	portid_t master_port_id = res->port_id;
4508 	portid_t slave_port_id = res->slave_id;
4509 
4510 	/* Set the primary slave for a bonded device. */
4511 	if (0 != rte_eth_bond_primary_set(master_port_id, slave_port_id)) {
4512 		printf("\t Failed to set primary slave for port = %d.\n",
4513 				master_port_id);
4514 		return;
4515 	}
4516 	init_port_config();
4517 }
4518 
4519 cmdline_parse_token_string_t cmd_setbonding_primary_set =
4520 TOKEN_STRING_INITIALIZER(struct cmd_set_bonding_primary_result,
4521 		set, "set");
4522 cmdline_parse_token_string_t cmd_setbonding_primary_bonding =
4523 TOKEN_STRING_INITIALIZER(struct cmd_set_bonding_primary_result,
4524 		bonding, "bonding");
4525 cmdline_parse_token_string_t cmd_setbonding_primary_primary =
4526 TOKEN_STRING_INITIALIZER(struct cmd_set_bonding_primary_result,
4527 		primary, "primary");
4528 cmdline_parse_token_num_t cmd_setbonding_primary_slave =
4529 TOKEN_NUM_INITIALIZER(struct cmd_set_bonding_primary_result,
4530 		slave_id, UINT8);
4531 cmdline_parse_token_num_t cmd_setbonding_primary_port =
4532 TOKEN_NUM_INITIALIZER(struct cmd_set_bonding_primary_result,
4533 		port_id, UINT8);
4534 
4535 cmdline_parse_inst_t cmd_set_bonding_primary = {
4536 		.f = cmd_set_bonding_primary_parsed,
4537 		.help_str = "set bonding primary <slave_id> <port_id>: "
4538 			"Set the primary slave for port_id",
4539 		.data = NULL,
4540 		.tokens = {
4541 				(void *)&cmd_setbonding_primary_set,
4542 				(void *)&cmd_setbonding_primary_bonding,
4543 				(void *)&cmd_setbonding_primary_primary,
4544 				(void *)&cmd_setbonding_primary_slave,
4545 				(void *)&cmd_setbonding_primary_port,
4546 				NULL
4547 		}
4548 };
4549 
4550 /* *** ADD SLAVE *** */
4551 struct cmd_add_bonding_slave_result {
4552 	cmdline_fixed_string_t add;
4553 	cmdline_fixed_string_t bonding;
4554 	cmdline_fixed_string_t slave;
4555 	uint8_t slave_id;
4556 	uint8_t port_id;
4557 };
4558 
4559 static void cmd_add_bonding_slave_parsed(void *parsed_result,
4560 		__attribute__((unused))  struct cmdline *cl,
4561 		__attribute__((unused)) void *data)
4562 {
4563 	struct cmd_add_bonding_slave_result *res = parsed_result;
4564 	portid_t master_port_id = res->port_id;
4565 	portid_t slave_port_id = res->slave_id;
4566 
4567 	/* Set the primary slave for a bonded device. */
4568 	if (0 != rte_eth_bond_slave_add(master_port_id, slave_port_id)) {
4569 		printf("\t Failed to add slave %d to master port = %d.\n",
4570 				slave_port_id, master_port_id);
4571 		return;
4572 	}
4573 	init_port_config();
4574 	set_port_slave_flag(slave_port_id);
4575 }
4576 
4577 cmdline_parse_token_string_t cmd_addbonding_slave_add =
4578 TOKEN_STRING_INITIALIZER(struct cmd_add_bonding_slave_result,
4579 		add, "add");
4580 cmdline_parse_token_string_t cmd_addbonding_slave_bonding =
4581 TOKEN_STRING_INITIALIZER(struct cmd_add_bonding_slave_result,
4582 		bonding, "bonding");
4583 cmdline_parse_token_string_t cmd_addbonding_slave_slave =
4584 TOKEN_STRING_INITIALIZER(struct cmd_add_bonding_slave_result,
4585 		slave, "slave");
4586 cmdline_parse_token_num_t cmd_addbonding_slave_slaveid =
4587 TOKEN_NUM_INITIALIZER(struct cmd_add_bonding_slave_result,
4588 		slave_id, UINT8);
4589 cmdline_parse_token_num_t cmd_addbonding_slave_port =
4590 TOKEN_NUM_INITIALIZER(struct cmd_add_bonding_slave_result,
4591 		port_id, UINT8);
4592 
4593 cmdline_parse_inst_t cmd_add_bonding_slave = {
4594 		.f = cmd_add_bonding_slave_parsed,
4595 		.help_str = "add bonding slave <slave_id> <port_id>: "
4596 			"Add a slave device to a bonded device",
4597 		.data = NULL,
4598 		.tokens = {
4599 				(void *)&cmd_addbonding_slave_add,
4600 				(void *)&cmd_addbonding_slave_bonding,
4601 				(void *)&cmd_addbonding_slave_slave,
4602 				(void *)&cmd_addbonding_slave_slaveid,
4603 				(void *)&cmd_addbonding_slave_port,
4604 				NULL
4605 		}
4606 };
4607 
4608 /* *** REMOVE SLAVE *** */
4609 struct cmd_remove_bonding_slave_result {
4610 	cmdline_fixed_string_t remove;
4611 	cmdline_fixed_string_t bonding;
4612 	cmdline_fixed_string_t slave;
4613 	uint8_t slave_id;
4614 	uint8_t port_id;
4615 };
4616 
4617 static void cmd_remove_bonding_slave_parsed(void *parsed_result,
4618 		__attribute__((unused))  struct cmdline *cl,
4619 		__attribute__((unused)) void *data)
4620 {
4621 	struct cmd_remove_bonding_slave_result *res = parsed_result;
4622 	portid_t master_port_id = res->port_id;
4623 	portid_t slave_port_id = res->slave_id;
4624 
4625 	/* Set the primary slave for a bonded device. */
4626 	if (0 != rte_eth_bond_slave_remove(master_port_id, slave_port_id)) {
4627 		printf("\t Failed to remove slave %d from master port = %d.\n",
4628 				slave_port_id, master_port_id);
4629 		return;
4630 	}
4631 	init_port_config();
4632 	clear_port_slave_flag(slave_port_id);
4633 }
4634 
4635 cmdline_parse_token_string_t cmd_removebonding_slave_remove =
4636 		TOKEN_STRING_INITIALIZER(struct cmd_remove_bonding_slave_result,
4637 				remove, "remove");
4638 cmdline_parse_token_string_t cmd_removebonding_slave_bonding =
4639 		TOKEN_STRING_INITIALIZER(struct cmd_remove_bonding_slave_result,
4640 				bonding, "bonding");
4641 cmdline_parse_token_string_t cmd_removebonding_slave_slave =
4642 		TOKEN_STRING_INITIALIZER(struct cmd_remove_bonding_slave_result,
4643 				slave, "slave");
4644 cmdline_parse_token_num_t cmd_removebonding_slave_slaveid =
4645 		TOKEN_NUM_INITIALIZER(struct cmd_remove_bonding_slave_result,
4646 				slave_id, UINT8);
4647 cmdline_parse_token_num_t cmd_removebonding_slave_port =
4648 		TOKEN_NUM_INITIALIZER(struct cmd_remove_bonding_slave_result,
4649 				port_id, UINT8);
4650 
4651 cmdline_parse_inst_t cmd_remove_bonding_slave = {
4652 		.f = cmd_remove_bonding_slave_parsed,
4653 		.help_str = "remove bonding slave <slave_id> <port_id>: "
4654 			"Remove a slave device from a bonded device",
4655 		.data = NULL,
4656 		.tokens = {
4657 				(void *)&cmd_removebonding_slave_remove,
4658 				(void *)&cmd_removebonding_slave_bonding,
4659 				(void *)&cmd_removebonding_slave_slave,
4660 				(void *)&cmd_removebonding_slave_slaveid,
4661 				(void *)&cmd_removebonding_slave_port,
4662 				NULL
4663 		}
4664 };
4665 
4666 /* *** CREATE BONDED DEVICE *** */
4667 struct cmd_create_bonded_device_result {
4668 	cmdline_fixed_string_t create;
4669 	cmdline_fixed_string_t bonded;
4670 	cmdline_fixed_string_t device;
4671 	uint8_t mode;
4672 	uint8_t socket;
4673 };
4674 
4675 static int bond_dev_num = 0;
4676 
4677 static void cmd_create_bonded_device_parsed(void *parsed_result,
4678 		__attribute__((unused))  struct cmdline *cl,
4679 		__attribute__((unused)) void *data)
4680 {
4681 	struct cmd_create_bonded_device_result *res = parsed_result;
4682 	char ethdev_name[RTE_ETH_NAME_MAX_LEN];
4683 	int port_id;
4684 
4685 	if (test_done == 0) {
4686 		printf("Please stop forwarding first\n");
4687 		return;
4688 	}
4689 
4690 	snprintf(ethdev_name, RTE_ETH_NAME_MAX_LEN, "net_bond_testpmd_%d",
4691 			bond_dev_num++);
4692 
4693 	/* Create a new bonded device. */
4694 	port_id = rte_eth_bond_create(ethdev_name, res->mode, res->socket);
4695 	if (port_id < 0) {
4696 		printf("\t Failed to create bonded device.\n");
4697 		return;
4698 	} else {
4699 		printf("Created new bonded device %s on (port %d).\n", ethdev_name,
4700 				port_id);
4701 
4702 		/* Update number of ports */
4703 		nb_ports = rte_eth_dev_count();
4704 		reconfig(port_id, res->socket);
4705 		rte_eth_promiscuous_enable(port_id);
4706 	}
4707 
4708 }
4709 
4710 cmdline_parse_token_string_t cmd_createbonded_device_create =
4711 		TOKEN_STRING_INITIALIZER(struct cmd_create_bonded_device_result,
4712 				create, "create");
4713 cmdline_parse_token_string_t cmd_createbonded_device_bonded =
4714 		TOKEN_STRING_INITIALIZER(struct cmd_create_bonded_device_result,
4715 				bonded, "bonded");
4716 cmdline_parse_token_string_t cmd_createbonded_device_device =
4717 		TOKEN_STRING_INITIALIZER(struct cmd_create_bonded_device_result,
4718 				device, "device");
4719 cmdline_parse_token_num_t cmd_createbonded_device_mode =
4720 		TOKEN_NUM_INITIALIZER(struct cmd_create_bonded_device_result,
4721 				mode, UINT8);
4722 cmdline_parse_token_num_t cmd_createbonded_device_socket =
4723 		TOKEN_NUM_INITIALIZER(struct cmd_create_bonded_device_result,
4724 				socket, UINT8);
4725 
4726 cmdline_parse_inst_t cmd_create_bonded_device = {
4727 		.f = cmd_create_bonded_device_parsed,
4728 		.help_str = "create bonded device <mode> <socket>: "
4729 			"Create a new bonded device with specific bonding mode and socket",
4730 		.data = NULL,
4731 		.tokens = {
4732 				(void *)&cmd_createbonded_device_create,
4733 				(void *)&cmd_createbonded_device_bonded,
4734 				(void *)&cmd_createbonded_device_device,
4735 				(void *)&cmd_createbonded_device_mode,
4736 				(void *)&cmd_createbonded_device_socket,
4737 				NULL
4738 		}
4739 };
4740 
4741 /* *** SET MAC ADDRESS IN BONDED DEVICE *** */
4742 struct cmd_set_bond_mac_addr_result {
4743 	cmdline_fixed_string_t set;
4744 	cmdline_fixed_string_t bonding;
4745 	cmdline_fixed_string_t mac_addr;
4746 	uint8_t port_num;
4747 	struct ether_addr address;
4748 };
4749 
4750 static void cmd_set_bond_mac_addr_parsed(void *parsed_result,
4751 		__attribute__((unused))  struct cmdline *cl,
4752 		__attribute__((unused)) void *data)
4753 {
4754 	struct cmd_set_bond_mac_addr_result *res = parsed_result;
4755 	int ret;
4756 
4757 	if (port_id_is_invalid(res->port_num, ENABLED_WARN))
4758 		return;
4759 
4760 	ret = rte_eth_bond_mac_address_set(res->port_num, &res->address);
4761 
4762 	/* check the return value and print it if is < 0 */
4763 	if (ret < 0)
4764 		printf("set_bond_mac_addr error: (%s)\n", strerror(-ret));
4765 }
4766 
4767 cmdline_parse_token_string_t cmd_set_bond_mac_addr_set =
4768 		TOKEN_STRING_INITIALIZER(struct cmd_set_bond_mac_addr_result, set, "set");
4769 cmdline_parse_token_string_t cmd_set_bond_mac_addr_bonding =
4770 		TOKEN_STRING_INITIALIZER(struct cmd_set_bond_mac_addr_result, bonding,
4771 				"bonding");
4772 cmdline_parse_token_string_t cmd_set_bond_mac_addr_mac =
4773 		TOKEN_STRING_INITIALIZER(struct cmd_set_bond_mac_addr_result, mac_addr,
4774 				"mac_addr");
4775 cmdline_parse_token_num_t cmd_set_bond_mac_addr_portnum =
4776 		TOKEN_NUM_INITIALIZER(struct cmd_set_bond_mac_addr_result, port_num, UINT8);
4777 cmdline_parse_token_etheraddr_t cmd_set_bond_mac_addr_addr =
4778 		TOKEN_ETHERADDR_INITIALIZER(struct cmd_set_bond_mac_addr_result, address);
4779 
4780 cmdline_parse_inst_t cmd_set_bond_mac_addr = {
4781 		.f = cmd_set_bond_mac_addr_parsed,
4782 		.data = (void *) 0,
4783 		.help_str = "set bonding mac_addr <port_id> <mac_addr>",
4784 		.tokens = {
4785 				(void *)&cmd_set_bond_mac_addr_set,
4786 				(void *)&cmd_set_bond_mac_addr_bonding,
4787 				(void *)&cmd_set_bond_mac_addr_mac,
4788 				(void *)&cmd_set_bond_mac_addr_portnum,
4789 				(void *)&cmd_set_bond_mac_addr_addr,
4790 				NULL
4791 		}
4792 };
4793 
4794 
4795 /* *** SET LINK STATUS MONITORING POLLING PERIOD ON BONDED DEVICE *** */
4796 struct cmd_set_bond_mon_period_result {
4797 	cmdline_fixed_string_t set;
4798 	cmdline_fixed_string_t bonding;
4799 	cmdline_fixed_string_t mon_period;
4800 	uint8_t port_num;
4801 	uint32_t period_ms;
4802 };
4803 
4804 static void cmd_set_bond_mon_period_parsed(void *parsed_result,
4805 		__attribute__((unused))  struct cmdline *cl,
4806 		__attribute__((unused)) void *data)
4807 {
4808 	struct cmd_set_bond_mon_period_result *res = parsed_result;
4809 	int ret;
4810 
4811 	if (res->port_num >= nb_ports) {
4812 		printf("Port id %d must be less than %d\n", res->port_num, nb_ports);
4813 		return;
4814 	}
4815 
4816 	ret = rte_eth_bond_link_monitoring_set(res->port_num, res->period_ms);
4817 
4818 	/* check the return value and print it if is < 0 */
4819 	if (ret < 0)
4820 		printf("set_bond_mac_addr error: (%s)\n", strerror(-ret));
4821 }
4822 
4823 cmdline_parse_token_string_t cmd_set_bond_mon_period_set =
4824 		TOKEN_STRING_INITIALIZER(struct cmd_set_bond_mon_period_result,
4825 				set, "set");
4826 cmdline_parse_token_string_t cmd_set_bond_mon_period_bonding =
4827 		TOKEN_STRING_INITIALIZER(struct cmd_set_bond_mon_period_result,
4828 				bonding, "bonding");
4829 cmdline_parse_token_string_t cmd_set_bond_mon_period_mon_period =
4830 		TOKEN_STRING_INITIALIZER(struct cmd_set_bond_mon_period_result,
4831 				mon_period,	"mon_period");
4832 cmdline_parse_token_num_t cmd_set_bond_mon_period_portnum =
4833 		TOKEN_NUM_INITIALIZER(struct cmd_set_bond_mon_period_result,
4834 				port_num, UINT8);
4835 cmdline_parse_token_num_t cmd_set_bond_mon_period_period_ms =
4836 		TOKEN_NUM_INITIALIZER(struct cmd_set_bond_mon_period_result,
4837 				period_ms, UINT32);
4838 
4839 cmdline_parse_inst_t cmd_set_bond_mon_period = {
4840 		.f = cmd_set_bond_mon_period_parsed,
4841 		.data = (void *) 0,
4842 		.help_str = "set bonding mon_period <port_id> <period_ms>",
4843 		.tokens = {
4844 				(void *)&cmd_set_bond_mon_period_set,
4845 				(void *)&cmd_set_bond_mon_period_bonding,
4846 				(void *)&cmd_set_bond_mon_period_mon_period,
4847 				(void *)&cmd_set_bond_mon_period_portnum,
4848 				(void *)&cmd_set_bond_mon_period_period_ms,
4849 				NULL
4850 		}
4851 };
4852 
4853 #endif /* RTE_LIBRTE_PMD_BOND */
4854 
4855 /* *** SET FORWARDING MODE *** */
4856 struct cmd_set_fwd_mode_result {
4857 	cmdline_fixed_string_t set;
4858 	cmdline_fixed_string_t fwd;
4859 	cmdline_fixed_string_t mode;
4860 };
4861 
4862 static void cmd_set_fwd_mode_parsed(void *parsed_result,
4863 				    __attribute__((unused)) struct cmdline *cl,
4864 				    __attribute__((unused)) void *data)
4865 {
4866 	struct cmd_set_fwd_mode_result *res = parsed_result;
4867 
4868 	retry_enabled = 0;
4869 	set_pkt_forwarding_mode(res->mode);
4870 }
4871 
4872 cmdline_parse_token_string_t cmd_setfwd_set =
4873 	TOKEN_STRING_INITIALIZER(struct cmd_set_fwd_mode_result, set, "set");
4874 cmdline_parse_token_string_t cmd_setfwd_fwd =
4875 	TOKEN_STRING_INITIALIZER(struct cmd_set_fwd_mode_result, fwd, "fwd");
4876 cmdline_parse_token_string_t cmd_setfwd_mode =
4877 	TOKEN_STRING_INITIALIZER(struct cmd_set_fwd_mode_result, mode,
4878 		"" /* defined at init */);
4879 
4880 cmdline_parse_inst_t cmd_set_fwd_mode = {
4881 	.f = cmd_set_fwd_mode_parsed,
4882 	.data = NULL,
4883 	.help_str = NULL, /* defined at init */
4884 	.tokens = {
4885 		(void *)&cmd_setfwd_set,
4886 		(void *)&cmd_setfwd_fwd,
4887 		(void *)&cmd_setfwd_mode,
4888 		NULL,
4889 	},
4890 };
4891 
4892 static void cmd_set_fwd_mode_init(void)
4893 {
4894 	char *modes, *c;
4895 	static char token[128];
4896 	static char help[256];
4897 	cmdline_parse_token_string_t *token_struct;
4898 
4899 	modes = list_pkt_forwarding_modes();
4900 	snprintf(help, sizeof(help), "set fwd %s: "
4901 		"Set packet forwarding mode", modes);
4902 	cmd_set_fwd_mode.help_str = help;
4903 
4904 	/* string token separator is # */
4905 	for (c = token; *modes != '\0'; modes++)
4906 		if (*modes == '|')
4907 			*c++ = '#';
4908 		else
4909 			*c++ = *modes;
4910 	token_struct = (cmdline_parse_token_string_t*)cmd_set_fwd_mode.tokens[2];
4911 	token_struct->string_data.str = token;
4912 }
4913 
4914 /* *** SET RETRY FORWARDING MODE *** */
4915 struct cmd_set_fwd_retry_mode_result {
4916 	cmdline_fixed_string_t set;
4917 	cmdline_fixed_string_t fwd;
4918 	cmdline_fixed_string_t mode;
4919 	cmdline_fixed_string_t retry;
4920 };
4921 
4922 static void cmd_set_fwd_retry_mode_parsed(void *parsed_result,
4923 			    __attribute__((unused)) struct cmdline *cl,
4924 			    __attribute__((unused)) void *data)
4925 {
4926 	struct cmd_set_fwd_retry_mode_result *res = parsed_result;
4927 
4928 	retry_enabled = 1;
4929 	set_pkt_forwarding_mode(res->mode);
4930 }
4931 
4932 cmdline_parse_token_string_t cmd_setfwd_retry_set =
4933 	TOKEN_STRING_INITIALIZER(struct cmd_set_fwd_retry_mode_result,
4934 			set, "set");
4935 cmdline_parse_token_string_t cmd_setfwd_retry_fwd =
4936 	TOKEN_STRING_INITIALIZER(struct cmd_set_fwd_retry_mode_result,
4937 			fwd, "fwd");
4938 cmdline_parse_token_string_t cmd_setfwd_retry_mode =
4939 	TOKEN_STRING_INITIALIZER(struct cmd_set_fwd_retry_mode_result,
4940 			mode,
4941 		"" /* defined at init */);
4942 cmdline_parse_token_string_t cmd_setfwd_retry_retry =
4943 	TOKEN_STRING_INITIALIZER(struct cmd_set_fwd_retry_mode_result,
4944 			retry, "retry");
4945 
4946 cmdline_parse_inst_t cmd_set_fwd_retry_mode = {
4947 	.f = cmd_set_fwd_retry_mode_parsed,
4948 	.data = NULL,
4949 	.help_str = NULL, /* defined at init */
4950 	.tokens = {
4951 		(void *)&cmd_setfwd_retry_set,
4952 		(void *)&cmd_setfwd_retry_fwd,
4953 		(void *)&cmd_setfwd_retry_mode,
4954 		(void *)&cmd_setfwd_retry_retry,
4955 		NULL,
4956 	},
4957 };
4958 
4959 static void cmd_set_fwd_retry_mode_init(void)
4960 {
4961 	char *modes, *c;
4962 	static char token[128];
4963 	static char help[256];
4964 	cmdline_parse_token_string_t *token_struct;
4965 
4966 	modes = list_pkt_forwarding_retry_modes();
4967 	snprintf(help, sizeof(help), "set fwd %s retry: "
4968 		"Set packet forwarding mode with retry", modes);
4969 	cmd_set_fwd_retry_mode.help_str = help;
4970 
4971 	/* string token separator is # */
4972 	for (c = token; *modes != '\0'; modes++)
4973 		if (*modes == '|')
4974 			*c++ = '#';
4975 		else
4976 			*c++ = *modes;
4977 	token_struct = (cmdline_parse_token_string_t *)
4978 		cmd_set_fwd_retry_mode.tokens[2];
4979 	token_struct->string_data.str = token;
4980 }
4981 
4982 /* *** SET BURST TX DELAY TIME RETRY NUMBER *** */
4983 struct cmd_set_burst_tx_retry_result {
4984 	cmdline_fixed_string_t set;
4985 	cmdline_fixed_string_t burst;
4986 	cmdline_fixed_string_t tx;
4987 	cmdline_fixed_string_t delay;
4988 	uint32_t time;
4989 	cmdline_fixed_string_t retry;
4990 	uint32_t retry_num;
4991 };
4992 
4993 static void cmd_set_burst_tx_retry_parsed(void *parsed_result,
4994 					__attribute__((unused)) struct cmdline *cl,
4995 					__attribute__((unused)) void *data)
4996 {
4997 	struct cmd_set_burst_tx_retry_result *res = parsed_result;
4998 
4999 	if (!strcmp(res->set, "set") && !strcmp(res->burst, "burst")
5000 		&& !strcmp(res->tx, "tx")) {
5001 		if (!strcmp(res->delay, "delay"))
5002 			burst_tx_delay_time = res->time;
5003 		if (!strcmp(res->retry, "retry"))
5004 			burst_tx_retry_num = res->retry_num;
5005 	}
5006 
5007 }
5008 
5009 cmdline_parse_token_string_t cmd_set_burst_tx_retry_set =
5010 	TOKEN_STRING_INITIALIZER(struct cmd_set_burst_tx_retry_result, set, "set");
5011 cmdline_parse_token_string_t cmd_set_burst_tx_retry_burst =
5012 	TOKEN_STRING_INITIALIZER(struct cmd_set_burst_tx_retry_result, burst,
5013 				 "burst");
5014 cmdline_parse_token_string_t cmd_set_burst_tx_retry_tx =
5015 	TOKEN_STRING_INITIALIZER(struct cmd_set_burst_tx_retry_result, tx, "tx");
5016 cmdline_parse_token_string_t cmd_set_burst_tx_retry_delay =
5017 	TOKEN_STRING_INITIALIZER(struct cmd_set_burst_tx_retry_result, delay, "delay");
5018 cmdline_parse_token_num_t cmd_set_burst_tx_retry_time =
5019 	TOKEN_NUM_INITIALIZER(struct cmd_set_burst_tx_retry_result, time, UINT32);
5020 cmdline_parse_token_string_t cmd_set_burst_tx_retry_retry =
5021 	TOKEN_STRING_INITIALIZER(struct cmd_set_burst_tx_retry_result, retry, "retry");
5022 cmdline_parse_token_num_t cmd_set_burst_tx_retry_retry_num =
5023 	TOKEN_NUM_INITIALIZER(struct cmd_set_burst_tx_retry_result, retry_num, UINT32);
5024 
5025 cmdline_parse_inst_t cmd_set_burst_tx_retry = {
5026 	.f = cmd_set_burst_tx_retry_parsed,
5027 	.help_str = "set burst tx delay <delay_usec> retry <num_retry>",
5028 	.tokens = {
5029 		(void *)&cmd_set_burst_tx_retry_set,
5030 		(void *)&cmd_set_burst_tx_retry_burst,
5031 		(void *)&cmd_set_burst_tx_retry_tx,
5032 		(void *)&cmd_set_burst_tx_retry_delay,
5033 		(void *)&cmd_set_burst_tx_retry_time,
5034 		(void *)&cmd_set_burst_tx_retry_retry,
5035 		(void *)&cmd_set_burst_tx_retry_retry_num,
5036 		NULL,
5037 	},
5038 };
5039 
5040 /* *** SET PROMISC MODE *** */
5041 struct cmd_set_promisc_mode_result {
5042 	cmdline_fixed_string_t set;
5043 	cmdline_fixed_string_t promisc;
5044 	cmdline_fixed_string_t port_all; /* valid if "allports" argument == 1 */
5045 	uint8_t port_num;                /* valid if "allports" argument == 0 */
5046 	cmdline_fixed_string_t mode;
5047 };
5048 
5049 static void cmd_set_promisc_mode_parsed(void *parsed_result,
5050 					__attribute__((unused)) struct cmdline *cl,
5051 					void *allports)
5052 {
5053 	struct cmd_set_promisc_mode_result *res = parsed_result;
5054 	int enable;
5055 	portid_t i;
5056 
5057 	if (!strcmp(res->mode, "on"))
5058 		enable = 1;
5059 	else
5060 		enable = 0;
5061 
5062 	/* all ports */
5063 	if (allports) {
5064 		RTE_ETH_FOREACH_DEV(i) {
5065 			if (enable)
5066 				rte_eth_promiscuous_enable(i);
5067 			else
5068 				rte_eth_promiscuous_disable(i);
5069 		}
5070 	}
5071 	else {
5072 		if (enable)
5073 			rte_eth_promiscuous_enable(res->port_num);
5074 		else
5075 			rte_eth_promiscuous_disable(res->port_num);
5076 	}
5077 }
5078 
5079 cmdline_parse_token_string_t cmd_setpromisc_set =
5080 	TOKEN_STRING_INITIALIZER(struct cmd_set_promisc_mode_result, set, "set");
5081 cmdline_parse_token_string_t cmd_setpromisc_promisc =
5082 	TOKEN_STRING_INITIALIZER(struct cmd_set_promisc_mode_result, promisc,
5083 				 "promisc");
5084 cmdline_parse_token_string_t cmd_setpromisc_portall =
5085 	TOKEN_STRING_INITIALIZER(struct cmd_set_promisc_mode_result, port_all,
5086 				 "all");
5087 cmdline_parse_token_num_t cmd_setpromisc_portnum =
5088 	TOKEN_NUM_INITIALIZER(struct cmd_set_promisc_mode_result, port_num,
5089 			      UINT8);
5090 cmdline_parse_token_string_t cmd_setpromisc_mode =
5091 	TOKEN_STRING_INITIALIZER(struct cmd_set_promisc_mode_result, mode,
5092 				 "on#off");
5093 
5094 cmdline_parse_inst_t cmd_set_promisc_mode_all = {
5095 	.f = cmd_set_promisc_mode_parsed,
5096 	.data = (void *)1,
5097 	.help_str = "set promisc all on|off: Set promisc mode for all ports",
5098 	.tokens = {
5099 		(void *)&cmd_setpromisc_set,
5100 		(void *)&cmd_setpromisc_promisc,
5101 		(void *)&cmd_setpromisc_portall,
5102 		(void *)&cmd_setpromisc_mode,
5103 		NULL,
5104 	},
5105 };
5106 
5107 cmdline_parse_inst_t cmd_set_promisc_mode_one = {
5108 	.f = cmd_set_promisc_mode_parsed,
5109 	.data = (void *)0,
5110 	.help_str = "set promisc <port_id> on|off: Set promisc mode on port_id",
5111 	.tokens = {
5112 		(void *)&cmd_setpromisc_set,
5113 		(void *)&cmd_setpromisc_promisc,
5114 		(void *)&cmd_setpromisc_portnum,
5115 		(void *)&cmd_setpromisc_mode,
5116 		NULL,
5117 	},
5118 };
5119 
5120 /* *** SET ALLMULTI MODE *** */
5121 struct cmd_set_allmulti_mode_result {
5122 	cmdline_fixed_string_t set;
5123 	cmdline_fixed_string_t allmulti;
5124 	cmdline_fixed_string_t port_all; /* valid if "allports" argument == 1 */
5125 	uint8_t port_num;                /* valid if "allports" argument == 0 */
5126 	cmdline_fixed_string_t mode;
5127 };
5128 
5129 static void cmd_set_allmulti_mode_parsed(void *parsed_result,
5130 					__attribute__((unused)) struct cmdline *cl,
5131 					void *allports)
5132 {
5133 	struct cmd_set_allmulti_mode_result *res = parsed_result;
5134 	int enable;
5135 	portid_t i;
5136 
5137 	if (!strcmp(res->mode, "on"))
5138 		enable = 1;
5139 	else
5140 		enable = 0;
5141 
5142 	/* all ports */
5143 	if (allports) {
5144 		RTE_ETH_FOREACH_DEV(i) {
5145 			if (enable)
5146 				rte_eth_allmulticast_enable(i);
5147 			else
5148 				rte_eth_allmulticast_disable(i);
5149 		}
5150 	}
5151 	else {
5152 		if (enable)
5153 			rte_eth_allmulticast_enable(res->port_num);
5154 		else
5155 			rte_eth_allmulticast_disable(res->port_num);
5156 	}
5157 }
5158 
5159 cmdline_parse_token_string_t cmd_setallmulti_set =
5160 	TOKEN_STRING_INITIALIZER(struct cmd_set_allmulti_mode_result, set, "set");
5161 cmdline_parse_token_string_t cmd_setallmulti_allmulti =
5162 	TOKEN_STRING_INITIALIZER(struct cmd_set_allmulti_mode_result, allmulti,
5163 				 "allmulti");
5164 cmdline_parse_token_string_t cmd_setallmulti_portall =
5165 	TOKEN_STRING_INITIALIZER(struct cmd_set_allmulti_mode_result, port_all,
5166 				 "all");
5167 cmdline_parse_token_num_t cmd_setallmulti_portnum =
5168 	TOKEN_NUM_INITIALIZER(struct cmd_set_allmulti_mode_result, port_num,
5169 			      UINT8);
5170 cmdline_parse_token_string_t cmd_setallmulti_mode =
5171 	TOKEN_STRING_INITIALIZER(struct cmd_set_allmulti_mode_result, mode,
5172 				 "on#off");
5173 
5174 cmdline_parse_inst_t cmd_set_allmulti_mode_all = {
5175 	.f = cmd_set_allmulti_mode_parsed,
5176 	.data = (void *)1,
5177 	.help_str = "set allmulti all on|off: Set allmulti mode for all ports",
5178 	.tokens = {
5179 		(void *)&cmd_setallmulti_set,
5180 		(void *)&cmd_setallmulti_allmulti,
5181 		(void *)&cmd_setallmulti_portall,
5182 		(void *)&cmd_setallmulti_mode,
5183 		NULL,
5184 	},
5185 };
5186 
5187 cmdline_parse_inst_t cmd_set_allmulti_mode_one = {
5188 	.f = cmd_set_allmulti_mode_parsed,
5189 	.data = (void *)0,
5190 	.help_str = "set allmulti <port_id> on|off: "
5191 		"Set allmulti mode on port_id",
5192 	.tokens = {
5193 		(void *)&cmd_setallmulti_set,
5194 		(void *)&cmd_setallmulti_allmulti,
5195 		(void *)&cmd_setallmulti_portnum,
5196 		(void *)&cmd_setallmulti_mode,
5197 		NULL,
5198 	},
5199 };
5200 
5201 /* *** SETUP ETHERNET LINK FLOW CONTROL *** */
5202 struct cmd_link_flow_ctrl_set_result {
5203 	cmdline_fixed_string_t set;
5204 	cmdline_fixed_string_t flow_ctrl;
5205 	cmdline_fixed_string_t rx;
5206 	cmdline_fixed_string_t rx_lfc_mode;
5207 	cmdline_fixed_string_t tx;
5208 	cmdline_fixed_string_t tx_lfc_mode;
5209 	cmdline_fixed_string_t mac_ctrl_frame_fwd;
5210 	cmdline_fixed_string_t mac_ctrl_frame_fwd_mode;
5211 	cmdline_fixed_string_t autoneg_str;
5212 	cmdline_fixed_string_t autoneg;
5213 	cmdline_fixed_string_t hw_str;
5214 	uint32_t high_water;
5215 	cmdline_fixed_string_t lw_str;
5216 	uint32_t low_water;
5217 	cmdline_fixed_string_t pt_str;
5218 	uint16_t pause_time;
5219 	cmdline_fixed_string_t xon_str;
5220 	uint16_t send_xon;
5221 	uint8_t  port_id;
5222 };
5223 
5224 cmdline_parse_token_string_t cmd_lfc_set_set =
5225 	TOKEN_STRING_INITIALIZER(struct cmd_link_flow_ctrl_set_result,
5226 				set, "set");
5227 cmdline_parse_token_string_t cmd_lfc_set_flow_ctrl =
5228 	TOKEN_STRING_INITIALIZER(struct cmd_link_flow_ctrl_set_result,
5229 				flow_ctrl, "flow_ctrl");
5230 cmdline_parse_token_string_t cmd_lfc_set_rx =
5231 	TOKEN_STRING_INITIALIZER(struct cmd_link_flow_ctrl_set_result,
5232 				rx, "rx");
5233 cmdline_parse_token_string_t cmd_lfc_set_rx_mode =
5234 	TOKEN_STRING_INITIALIZER(struct cmd_link_flow_ctrl_set_result,
5235 				rx_lfc_mode, "on#off");
5236 cmdline_parse_token_string_t cmd_lfc_set_tx =
5237 	TOKEN_STRING_INITIALIZER(struct cmd_link_flow_ctrl_set_result,
5238 				tx, "tx");
5239 cmdline_parse_token_string_t cmd_lfc_set_tx_mode =
5240 	TOKEN_STRING_INITIALIZER(struct cmd_link_flow_ctrl_set_result,
5241 				tx_lfc_mode, "on#off");
5242 cmdline_parse_token_string_t cmd_lfc_set_high_water_str =
5243 	TOKEN_STRING_INITIALIZER(struct cmd_link_flow_ctrl_set_result,
5244 				hw_str, "high_water");
5245 cmdline_parse_token_num_t cmd_lfc_set_high_water =
5246 	TOKEN_NUM_INITIALIZER(struct cmd_link_flow_ctrl_set_result,
5247 				high_water, UINT32);
5248 cmdline_parse_token_string_t cmd_lfc_set_low_water_str =
5249 	TOKEN_STRING_INITIALIZER(struct cmd_link_flow_ctrl_set_result,
5250 				lw_str, "low_water");
5251 cmdline_parse_token_num_t cmd_lfc_set_low_water =
5252 	TOKEN_NUM_INITIALIZER(struct cmd_link_flow_ctrl_set_result,
5253 				low_water, UINT32);
5254 cmdline_parse_token_string_t cmd_lfc_set_pause_time_str =
5255 	TOKEN_STRING_INITIALIZER(struct cmd_link_flow_ctrl_set_result,
5256 				pt_str, "pause_time");
5257 cmdline_parse_token_num_t cmd_lfc_set_pause_time =
5258 	TOKEN_NUM_INITIALIZER(struct cmd_link_flow_ctrl_set_result,
5259 				pause_time, UINT16);
5260 cmdline_parse_token_string_t cmd_lfc_set_send_xon_str =
5261 	TOKEN_STRING_INITIALIZER(struct cmd_link_flow_ctrl_set_result,
5262 				xon_str, "send_xon");
5263 cmdline_parse_token_num_t cmd_lfc_set_send_xon =
5264 	TOKEN_NUM_INITIALIZER(struct cmd_link_flow_ctrl_set_result,
5265 				send_xon, UINT16);
5266 cmdline_parse_token_string_t cmd_lfc_set_mac_ctrl_frame_fwd_mode =
5267 	TOKEN_STRING_INITIALIZER(struct cmd_link_flow_ctrl_set_result,
5268 				mac_ctrl_frame_fwd, "mac_ctrl_frame_fwd");
5269 cmdline_parse_token_string_t cmd_lfc_set_mac_ctrl_frame_fwd =
5270 	TOKEN_STRING_INITIALIZER(struct cmd_link_flow_ctrl_set_result,
5271 				mac_ctrl_frame_fwd_mode, "on#off");
5272 cmdline_parse_token_string_t cmd_lfc_set_autoneg_str =
5273 	TOKEN_STRING_INITIALIZER(struct cmd_link_flow_ctrl_set_result,
5274 				autoneg_str, "autoneg");
5275 cmdline_parse_token_string_t cmd_lfc_set_autoneg =
5276 	TOKEN_STRING_INITIALIZER(struct cmd_link_flow_ctrl_set_result,
5277 				autoneg, "on#off");
5278 cmdline_parse_token_num_t cmd_lfc_set_portid =
5279 	TOKEN_NUM_INITIALIZER(struct cmd_link_flow_ctrl_set_result,
5280 				port_id, UINT8);
5281 
5282 /* forward declaration */
5283 static void
5284 cmd_link_flow_ctrl_set_parsed(void *parsed_result, struct cmdline *cl,
5285 			      void *data);
5286 
5287 cmdline_parse_inst_t cmd_link_flow_control_set = {
5288 	.f = cmd_link_flow_ctrl_set_parsed,
5289 	.data = NULL,
5290 	.help_str = "set flow_ctrl rx on|off tx on|off <high_water> "
5291 		"<low_water> <pause_time> <send_xon> mac_ctrl_frame_fwd on|off "
5292 		"autoneg on|off <port_id>: Configure the Ethernet flow control",
5293 	.tokens = {
5294 		(void *)&cmd_lfc_set_set,
5295 		(void *)&cmd_lfc_set_flow_ctrl,
5296 		(void *)&cmd_lfc_set_rx,
5297 		(void *)&cmd_lfc_set_rx_mode,
5298 		(void *)&cmd_lfc_set_tx,
5299 		(void *)&cmd_lfc_set_tx_mode,
5300 		(void *)&cmd_lfc_set_high_water,
5301 		(void *)&cmd_lfc_set_low_water,
5302 		(void *)&cmd_lfc_set_pause_time,
5303 		(void *)&cmd_lfc_set_send_xon,
5304 		(void *)&cmd_lfc_set_mac_ctrl_frame_fwd_mode,
5305 		(void *)&cmd_lfc_set_mac_ctrl_frame_fwd,
5306 		(void *)&cmd_lfc_set_autoneg_str,
5307 		(void *)&cmd_lfc_set_autoneg,
5308 		(void *)&cmd_lfc_set_portid,
5309 		NULL,
5310 	},
5311 };
5312 
5313 cmdline_parse_inst_t cmd_link_flow_control_set_rx = {
5314 	.f = cmd_link_flow_ctrl_set_parsed,
5315 	.data = (void *)&cmd_link_flow_control_set_rx,
5316 	.help_str = "set flow_ctrl rx on|off <port_id>: "
5317 		"Change rx flow control parameter",
5318 	.tokens = {
5319 		(void *)&cmd_lfc_set_set,
5320 		(void *)&cmd_lfc_set_flow_ctrl,
5321 		(void *)&cmd_lfc_set_rx,
5322 		(void *)&cmd_lfc_set_rx_mode,
5323 		(void *)&cmd_lfc_set_portid,
5324 		NULL,
5325 	},
5326 };
5327 
5328 cmdline_parse_inst_t cmd_link_flow_control_set_tx = {
5329 	.f = cmd_link_flow_ctrl_set_parsed,
5330 	.data = (void *)&cmd_link_flow_control_set_tx,
5331 	.help_str = "set flow_ctrl tx on|off <port_id>: "
5332 		"Change tx flow control parameter",
5333 	.tokens = {
5334 		(void *)&cmd_lfc_set_set,
5335 		(void *)&cmd_lfc_set_flow_ctrl,
5336 		(void *)&cmd_lfc_set_tx,
5337 		(void *)&cmd_lfc_set_tx_mode,
5338 		(void *)&cmd_lfc_set_portid,
5339 		NULL,
5340 	},
5341 };
5342 
5343 cmdline_parse_inst_t cmd_link_flow_control_set_hw = {
5344 	.f = cmd_link_flow_ctrl_set_parsed,
5345 	.data = (void *)&cmd_link_flow_control_set_hw,
5346 	.help_str = "set flow_ctrl high_water <value> <port_id>: "
5347 		"Change high water flow control parameter",
5348 	.tokens = {
5349 		(void *)&cmd_lfc_set_set,
5350 		(void *)&cmd_lfc_set_flow_ctrl,
5351 		(void *)&cmd_lfc_set_high_water_str,
5352 		(void *)&cmd_lfc_set_high_water,
5353 		(void *)&cmd_lfc_set_portid,
5354 		NULL,
5355 	},
5356 };
5357 
5358 cmdline_parse_inst_t cmd_link_flow_control_set_lw = {
5359 	.f = cmd_link_flow_ctrl_set_parsed,
5360 	.data = (void *)&cmd_link_flow_control_set_lw,
5361 	.help_str = "set flow_ctrl low_water <value> <port_id>: "
5362 		"Change low water flow control parameter",
5363 	.tokens = {
5364 		(void *)&cmd_lfc_set_set,
5365 		(void *)&cmd_lfc_set_flow_ctrl,
5366 		(void *)&cmd_lfc_set_low_water_str,
5367 		(void *)&cmd_lfc_set_low_water,
5368 		(void *)&cmd_lfc_set_portid,
5369 		NULL,
5370 	},
5371 };
5372 
5373 cmdline_parse_inst_t cmd_link_flow_control_set_pt = {
5374 	.f = cmd_link_flow_ctrl_set_parsed,
5375 	.data = (void *)&cmd_link_flow_control_set_pt,
5376 	.help_str = "set flow_ctrl pause_time <value> <port_id>: "
5377 		"Change pause time flow control parameter",
5378 	.tokens = {
5379 		(void *)&cmd_lfc_set_set,
5380 		(void *)&cmd_lfc_set_flow_ctrl,
5381 		(void *)&cmd_lfc_set_pause_time_str,
5382 		(void *)&cmd_lfc_set_pause_time,
5383 		(void *)&cmd_lfc_set_portid,
5384 		NULL,
5385 	},
5386 };
5387 
5388 cmdline_parse_inst_t cmd_link_flow_control_set_xon = {
5389 	.f = cmd_link_flow_ctrl_set_parsed,
5390 	.data = (void *)&cmd_link_flow_control_set_xon,
5391 	.help_str = "set flow_ctrl send_xon <value> <port_id>: "
5392 		"Change send_xon flow control parameter",
5393 	.tokens = {
5394 		(void *)&cmd_lfc_set_set,
5395 		(void *)&cmd_lfc_set_flow_ctrl,
5396 		(void *)&cmd_lfc_set_send_xon_str,
5397 		(void *)&cmd_lfc_set_send_xon,
5398 		(void *)&cmd_lfc_set_portid,
5399 		NULL,
5400 	},
5401 };
5402 
5403 cmdline_parse_inst_t cmd_link_flow_control_set_macfwd = {
5404 	.f = cmd_link_flow_ctrl_set_parsed,
5405 	.data = (void *)&cmd_link_flow_control_set_macfwd,
5406 	.help_str = "set flow_ctrl mac_ctrl_frame_fwd on|off <port_id>: "
5407 		"Change mac ctrl fwd flow control parameter",
5408 	.tokens = {
5409 		(void *)&cmd_lfc_set_set,
5410 		(void *)&cmd_lfc_set_flow_ctrl,
5411 		(void *)&cmd_lfc_set_mac_ctrl_frame_fwd_mode,
5412 		(void *)&cmd_lfc_set_mac_ctrl_frame_fwd,
5413 		(void *)&cmd_lfc_set_portid,
5414 		NULL,
5415 	},
5416 };
5417 
5418 cmdline_parse_inst_t cmd_link_flow_control_set_autoneg = {
5419 	.f = cmd_link_flow_ctrl_set_parsed,
5420 	.data = (void *)&cmd_link_flow_control_set_autoneg,
5421 	.help_str = "set flow_ctrl autoneg on|off <port_id>: "
5422 		"Change autoneg flow control parameter",
5423 	.tokens = {
5424 		(void *)&cmd_lfc_set_set,
5425 		(void *)&cmd_lfc_set_flow_ctrl,
5426 		(void *)&cmd_lfc_set_autoneg_str,
5427 		(void *)&cmd_lfc_set_autoneg,
5428 		(void *)&cmd_lfc_set_portid,
5429 		NULL,
5430 	},
5431 };
5432 
5433 static void
5434 cmd_link_flow_ctrl_set_parsed(void *parsed_result,
5435 			      __attribute__((unused)) struct cmdline *cl,
5436 			      void *data)
5437 {
5438 	struct cmd_link_flow_ctrl_set_result *res = parsed_result;
5439 	cmdline_parse_inst_t *cmd = data;
5440 	struct rte_eth_fc_conf fc_conf;
5441 	int rx_fc_en = 0;
5442 	int tx_fc_en = 0;
5443 	int ret;
5444 
5445 	/*
5446 	 * Rx on/off, flow control is enabled/disabled on RX side. This can indicate
5447 	 * the RTE_FC_TX_PAUSE, Transmit pause frame at the Rx side.
5448 	 * Tx on/off, flow control is enabled/disabled on TX side. This can indicate
5449 	 * the RTE_FC_RX_PAUSE, Respond to the pause frame at the Tx side.
5450 	 */
5451 	static enum rte_eth_fc_mode rx_tx_onoff_2_lfc_mode[2][2] = {
5452 			{RTE_FC_NONE, RTE_FC_TX_PAUSE}, {RTE_FC_RX_PAUSE, RTE_FC_FULL}
5453 	};
5454 
5455 	/* Partial command line, retrieve current configuration */
5456 	if (cmd) {
5457 		ret = rte_eth_dev_flow_ctrl_get(res->port_id, &fc_conf);
5458 		if (ret != 0) {
5459 			printf("cannot get current flow ctrl parameters, return"
5460 			       "code = %d\n", ret);
5461 			return;
5462 		}
5463 
5464 		if ((fc_conf.mode == RTE_FC_RX_PAUSE) ||
5465 		    (fc_conf.mode == RTE_FC_FULL))
5466 			rx_fc_en = 1;
5467 		if ((fc_conf.mode == RTE_FC_TX_PAUSE) ||
5468 		    (fc_conf.mode == RTE_FC_FULL))
5469 			tx_fc_en = 1;
5470 	}
5471 
5472 	if (!cmd || cmd == &cmd_link_flow_control_set_rx)
5473 		rx_fc_en = (!strcmp(res->rx_lfc_mode, "on")) ? 1 : 0;
5474 
5475 	if (!cmd || cmd == &cmd_link_flow_control_set_tx)
5476 		tx_fc_en = (!strcmp(res->tx_lfc_mode, "on")) ? 1 : 0;
5477 
5478 	fc_conf.mode = rx_tx_onoff_2_lfc_mode[rx_fc_en][tx_fc_en];
5479 
5480 	if (!cmd || cmd == &cmd_link_flow_control_set_hw)
5481 		fc_conf.high_water = res->high_water;
5482 
5483 	if (!cmd || cmd == &cmd_link_flow_control_set_lw)
5484 		fc_conf.low_water = res->low_water;
5485 
5486 	if (!cmd || cmd == &cmd_link_flow_control_set_pt)
5487 		fc_conf.pause_time = res->pause_time;
5488 
5489 	if (!cmd || cmd == &cmd_link_flow_control_set_xon)
5490 		fc_conf.send_xon = res->send_xon;
5491 
5492 	if (!cmd || cmd == &cmd_link_flow_control_set_macfwd) {
5493 		if (!strcmp(res->mac_ctrl_frame_fwd_mode, "on"))
5494 			fc_conf.mac_ctrl_frame_fwd = 1;
5495 		else
5496 			fc_conf.mac_ctrl_frame_fwd = 0;
5497 	}
5498 
5499 	if (!cmd || cmd == &cmd_link_flow_control_set_autoneg)
5500 		fc_conf.autoneg = (!strcmp(res->autoneg, "on")) ? 1 : 0;
5501 
5502 	ret = rte_eth_dev_flow_ctrl_set(res->port_id, &fc_conf);
5503 	if (ret != 0)
5504 		printf("bad flow contrl parameter, return code = %d \n", ret);
5505 }
5506 
5507 /* *** SETUP ETHERNET PRIORITY FLOW CONTROL *** */
5508 struct cmd_priority_flow_ctrl_set_result {
5509 	cmdline_fixed_string_t set;
5510 	cmdline_fixed_string_t pfc_ctrl;
5511 	cmdline_fixed_string_t rx;
5512 	cmdline_fixed_string_t rx_pfc_mode;
5513 	cmdline_fixed_string_t tx;
5514 	cmdline_fixed_string_t tx_pfc_mode;
5515 	uint32_t high_water;
5516 	uint32_t low_water;
5517 	uint16_t pause_time;
5518 	uint8_t  priority;
5519 	uint8_t  port_id;
5520 };
5521 
5522 static void
5523 cmd_priority_flow_ctrl_set_parsed(void *parsed_result,
5524 		       __attribute__((unused)) struct cmdline *cl,
5525 		       __attribute__((unused)) void *data)
5526 {
5527 	struct cmd_priority_flow_ctrl_set_result *res = parsed_result;
5528 	struct rte_eth_pfc_conf pfc_conf;
5529 	int rx_fc_enable, tx_fc_enable;
5530 	int ret;
5531 
5532 	/*
5533 	 * Rx on/off, flow control is enabled/disabled on RX side. This can indicate
5534 	 * the RTE_FC_TX_PAUSE, Transmit pause frame at the Rx side.
5535 	 * Tx on/off, flow control is enabled/disabled on TX side. This can indicate
5536 	 * the RTE_FC_RX_PAUSE, Respond to the pause frame at the Tx side.
5537 	 */
5538 	static enum rte_eth_fc_mode rx_tx_onoff_2_pfc_mode[2][2] = {
5539 			{RTE_FC_NONE, RTE_FC_RX_PAUSE}, {RTE_FC_TX_PAUSE, RTE_FC_FULL}
5540 	};
5541 
5542 	rx_fc_enable = (!strncmp(res->rx_pfc_mode, "on",2)) ? 1 : 0;
5543 	tx_fc_enable = (!strncmp(res->tx_pfc_mode, "on",2)) ? 1 : 0;
5544 	pfc_conf.fc.mode       = rx_tx_onoff_2_pfc_mode[rx_fc_enable][tx_fc_enable];
5545 	pfc_conf.fc.high_water = res->high_water;
5546 	pfc_conf.fc.low_water  = res->low_water;
5547 	pfc_conf.fc.pause_time = res->pause_time;
5548 	pfc_conf.priority      = res->priority;
5549 
5550 	ret = rte_eth_dev_priority_flow_ctrl_set(res->port_id, &pfc_conf);
5551 	if (ret != 0)
5552 		printf("bad priority flow contrl parameter, return code = %d \n", ret);
5553 }
5554 
5555 cmdline_parse_token_string_t cmd_pfc_set_set =
5556 	TOKEN_STRING_INITIALIZER(struct cmd_priority_flow_ctrl_set_result,
5557 				set, "set");
5558 cmdline_parse_token_string_t cmd_pfc_set_flow_ctrl =
5559 	TOKEN_STRING_INITIALIZER(struct cmd_priority_flow_ctrl_set_result,
5560 				pfc_ctrl, "pfc_ctrl");
5561 cmdline_parse_token_string_t cmd_pfc_set_rx =
5562 	TOKEN_STRING_INITIALIZER(struct cmd_priority_flow_ctrl_set_result,
5563 				rx, "rx");
5564 cmdline_parse_token_string_t cmd_pfc_set_rx_mode =
5565 	TOKEN_STRING_INITIALIZER(struct cmd_priority_flow_ctrl_set_result,
5566 				rx_pfc_mode, "on#off");
5567 cmdline_parse_token_string_t cmd_pfc_set_tx =
5568 	TOKEN_STRING_INITIALIZER(struct cmd_priority_flow_ctrl_set_result,
5569 				tx, "tx");
5570 cmdline_parse_token_string_t cmd_pfc_set_tx_mode =
5571 	TOKEN_STRING_INITIALIZER(struct cmd_priority_flow_ctrl_set_result,
5572 				tx_pfc_mode, "on#off");
5573 cmdline_parse_token_num_t cmd_pfc_set_high_water =
5574 	TOKEN_NUM_INITIALIZER(struct cmd_priority_flow_ctrl_set_result,
5575 				high_water, UINT32);
5576 cmdline_parse_token_num_t cmd_pfc_set_low_water =
5577 	TOKEN_NUM_INITIALIZER(struct cmd_priority_flow_ctrl_set_result,
5578 				low_water, UINT32);
5579 cmdline_parse_token_num_t cmd_pfc_set_pause_time =
5580 	TOKEN_NUM_INITIALIZER(struct cmd_priority_flow_ctrl_set_result,
5581 				pause_time, UINT16);
5582 cmdline_parse_token_num_t cmd_pfc_set_priority =
5583 	TOKEN_NUM_INITIALIZER(struct cmd_priority_flow_ctrl_set_result,
5584 				priority, UINT8);
5585 cmdline_parse_token_num_t cmd_pfc_set_portid =
5586 	TOKEN_NUM_INITIALIZER(struct cmd_priority_flow_ctrl_set_result,
5587 				port_id, UINT8);
5588 
5589 cmdline_parse_inst_t cmd_priority_flow_control_set = {
5590 	.f = cmd_priority_flow_ctrl_set_parsed,
5591 	.data = NULL,
5592 	.help_str = "set pfc_ctrl rx on|off tx on|off <high_water> <low_water> "
5593 		"<pause_time> <priority> <port_id>: "
5594 		"Configure the Ethernet priority flow control",
5595 	.tokens = {
5596 		(void *)&cmd_pfc_set_set,
5597 		(void *)&cmd_pfc_set_flow_ctrl,
5598 		(void *)&cmd_pfc_set_rx,
5599 		(void *)&cmd_pfc_set_rx_mode,
5600 		(void *)&cmd_pfc_set_tx,
5601 		(void *)&cmd_pfc_set_tx_mode,
5602 		(void *)&cmd_pfc_set_high_water,
5603 		(void *)&cmd_pfc_set_low_water,
5604 		(void *)&cmd_pfc_set_pause_time,
5605 		(void *)&cmd_pfc_set_priority,
5606 		(void *)&cmd_pfc_set_portid,
5607 		NULL,
5608 	},
5609 };
5610 
5611 /* *** RESET CONFIGURATION *** */
5612 struct cmd_reset_result {
5613 	cmdline_fixed_string_t reset;
5614 	cmdline_fixed_string_t def;
5615 };
5616 
5617 static void cmd_reset_parsed(__attribute__((unused)) void *parsed_result,
5618 			     struct cmdline *cl,
5619 			     __attribute__((unused)) void *data)
5620 {
5621 	cmdline_printf(cl, "Reset to default forwarding configuration...\n");
5622 	set_def_fwd_config();
5623 }
5624 
5625 cmdline_parse_token_string_t cmd_reset_set =
5626 	TOKEN_STRING_INITIALIZER(struct cmd_reset_result, reset, "set");
5627 cmdline_parse_token_string_t cmd_reset_def =
5628 	TOKEN_STRING_INITIALIZER(struct cmd_reset_result, def,
5629 				 "default");
5630 
5631 cmdline_parse_inst_t cmd_reset = {
5632 	.f = cmd_reset_parsed,
5633 	.data = NULL,
5634 	.help_str = "set default: Reset default forwarding configuration",
5635 	.tokens = {
5636 		(void *)&cmd_reset_set,
5637 		(void *)&cmd_reset_def,
5638 		NULL,
5639 	},
5640 };
5641 
5642 /* *** START FORWARDING *** */
5643 struct cmd_start_result {
5644 	cmdline_fixed_string_t start;
5645 };
5646 
5647 cmdline_parse_token_string_t cmd_start_start =
5648 	TOKEN_STRING_INITIALIZER(struct cmd_start_result, start, "start");
5649 
5650 static void cmd_start_parsed(__attribute__((unused)) void *parsed_result,
5651 			     __attribute__((unused)) struct cmdline *cl,
5652 			     __attribute__((unused)) void *data)
5653 {
5654 	start_packet_forwarding(0);
5655 }
5656 
5657 cmdline_parse_inst_t cmd_start = {
5658 	.f = cmd_start_parsed,
5659 	.data = NULL,
5660 	.help_str = "start: Start packet forwarding",
5661 	.tokens = {
5662 		(void *)&cmd_start_start,
5663 		NULL,
5664 	},
5665 };
5666 
5667 /* *** START FORWARDING WITH ONE TX BURST FIRST *** */
5668 struct cmd_start_tx_first_result {
5669 	cmdline_fixed_string_t start;
5670 	cmdline_fixed_string_t tx_first;
5671 };
5672 
5673 static void
5674 cmd_start_tx_first_parsed(__attribute__((unused)) void *parsed_result,
5675 			  __attribute__((unused)) struct cmdline *cl,
5676 			  __attribute__((unused)) void *data)
5677 {
5678 	start_packet_forwarding(1);
5679 }
5680 
5681 cmdline_parse_token_string_t cmd_start_tx_first_start =
5682 	TOKEN_STRING_INITIALIZER(struct cmd_start_tx_first_result, start,
5683 				 "start");
5684 cmdline_parse_token_string_t cmd_start_tx_first_tx_first =
5685 	TOKEN_STRING_INITIALIZER(struct cmd_start_tx_first_result,
5686 				 tx_first, "tx_first");
5687 
5688 cmdline_parse_inst_t cmd_start_tx_first = {
5689 	.f = cmd_start_tx_first_parsed,
5690 	.data = NULL,
5691 	.help_str = "start tx_first: Start packet forwarding, "
5692 		"after sending 1 burst of packets",
5693 	.tokens = {
5694 		(void *)&cmd_start_tx_first_start,
5695 		(void *)&cmd_start_tx_first_tx_first,
5696 		NULL,
5697 	},
5698 };
5699 
5700 /* *** START FORWARDING WITH N TX BURST FIRST *** */
5701 struct cmd_start_tx_first_n_result {
5702 	cmdline_fixed_string_t start;
5703 	cmdline_fixed_string_t tx_first;
5704 	uint32_t tx_num;
5705 };
5706 
5707 static void
5708 cmd_start_tx_first_n_parsed(void *parsed_result,
5709 			  __attribute__((unused)) struct cmdline *cl,
5710 			  __attribute__((unused)) void *data)
5711 {
5712 	struct cmd_start_tx_first_n_result *res = parsed_result;
5713 
5714 	start_packet_forwarding(res->tx_num);
5715 }
5716 
5717 cmdline_parse_token_string_t cmd_start_tx_first_n_start =
5718 	TOKEN_STRING_INITIALIZER(struct cmd_start_tx_first_n_result,
5719 			start, "start");
5720 cmdline_parse_token_string_t cmd_start_tx_first_n_tx_first =
5721 	TOKEN_STRING_INITIALIZER(struct cmd_start_tx_first_n_result,
5722 			tx_first, "tx_first");
5723 cmdline_parse_token_num_t cmd_start_tx_first_n_tx_num =
5724 	TOKEN_NUM_INITIALIZER(struct cmd_start_tx_first_n_result,
5725 			tx_num, UINT32);
5726 
5727 cmdline_parse_inst_t cmd_start_tx_first_n = {
5728 	.f = cmd_start_tx_first_n_parsed,
5729 	.data = NULL,
5730 	.help_str = "start tx_first <num>: "
5731 		"packet forwarding, after sending <num> bursts of packets",
5732 	.tokens = {
5733 		(void *)&cmd_start_tx_first_n_start,
5734 		(void *)&cmd_start_tx_first_n_tx_first,
5735 		(void *)&cmd_start_tx_first_n_tx_num,
5736 		NULL,
5737 	},
5738 };
5739 
5740 /* *** SET LINK UP *** */
5741 struct cmd_set_link_up_result {
5742 	cmdline_fixed_string_t set;
5743 	cmdline_fixed_string_t link_up;
5744 	cmdline_fixed_string_t port;
5745 	uint8_t port_id;
5746 };
5747 
5748 cmdline_parse_token_string_t cmd_set_link_up_set =
5749 	TOKEN_STRING_INITIALIZER(struct cmd_set_link_up_result, set, "set");
5750 cmdline_parse_token_string_t cmd_set_link_up_link_up =
5751 	TOKEN_STRING_INITIALIZER(struct cmd_set_link_up_result, link_up,
5752 				"link-up");
5753 cmdline_parse_token_string_t cmd_set_link_up_port =
5754 	TOKEN_STRING_INITIALIZER(struct cmd_set_link_up_result, port, "port");
5755 cmdline_parse_token_num_t cmd_set_link_up_port_id =
5756 	TOKEN_NUM_INITIALIZER(struct cmd_set_link_up_result, port_id, UINT8);
5757 
5758 static void cmd_set_link_up_parsed(__attribute__((unused)) void *parsed_result,
5759 			     __attribute__((unused)) struct cmdline *cl,
5760 			     __attribute__((unused)) void *data)
5761 {
5762 	struct cmd_set_link_up_result *res = parsed_result;
5763 	dev_set_link_up(res->port_id);
5764 }
5765 
5766 cmdline_parse_inst_t cmd_set_link_up = {
5767 	.f = cmd_set_link_up_parsed,
5768 	.data = NULL,
5769 	.help_str = "set link-up port <port id>",
5770 	.tokens = {
5771 		(void *)&cmd_set_link_up_set,
5772 		(void *)&cmd_set_link_up_link_up,
5773 		(void *)&cmd_set_link_up_port,
5774 		(void *)&cmd_set_link_up_port_id,
5775 		NULL,
5776 	},
5777 };
5778 
5779 /* *** SET LINK DOWN *** */
5780 struct cmd_set_link_down_result {
5781 	cmdline_fixed_string_t set;
5782 	cmdline_fixed_string_t link_down;
5783 	cmdline_fixed_string_t port;
5784 	uint8_t port_id;
5785 };
5786 
5787 cmdline_parse_token_string_t cmd_set_link_down_set =
5788 	TOKEN_STRING_INITIALIZER(struct cmd_set_link_down_result, set, "set");
5789 cmdline_parse_token_string_t cmd_set_link_down_link_down =
5790 	TOKEN_STRING_INITIALIZER(struct cmd_set_link_down_result, link_down,
5791 				"link-down");
5792 cmdline_parse_token_string_t cmd_set_link_down_port =
5793 	TOKEN_STRING_INITIALIZER(struct cmd_set_link_down_result, port, "port");
5794 cmdline_parse_token_num_t cmd_set_link_down_port_id =
5795 	TOKEN_NUM_INITIALIZER(struct cmd_set_link_down_result, port_id, UINT8);
5796 
5797 static void cmd_set_link_down_parsed(
5798 				__attribute__((unused)) void *parsed_result,
5799 				__attribute__((unused)) struct cmdline *cl,
5800 				__attribute__((unused)) void *data)
5801 {
5802 	struct cmd_set_link_down_result *res = parsed_result;
5803 	dev_set_link_down(res->port_id);
5804 }
5805 
5806 cmdline_parse_inst_t cmd_set_link_down = {
5807 	.f = cmd_set_link_down_parsed,
5808 	.data = NULL,
5809 	.help_str = "set link-down port <port id>",
5810 	.tokens = {
5811 		(void *)&cmd_set_link_down_set,
5812 		(void *)&cmd_set_link_down_link_down,
5813 		(void *)&cmd_set_link_down_port,
5814 		(void *)&cmd_set_link_down_port_id,
5815 		NULL,
5816 	},
5817 };
5818 
5819 /* *** SHOW CFG *** */
5820 struct cmd_showcfg_result {
5821 	cmdline_fixed_string_t show;
5822 	cmdline_fixed_string_t cfg;
5823 	cmdline_fixed_string_t what;
5824 };
5825 
5826 static void cmd_showcfg_parsed(void *parsed_result,
5827 			       __attribute__((unused)) struct cmdline *cl,
5828 			       __attribute__((unused)) void *data)
5829 {
5830 	struct cmd_showcfg_result *res = parsed_result;
5831 	if (!strcmp(res->what, "rxtx"))
5832 		rxtx_config_display();
5833 	else if (!strcmp(res->what, "cores"))
5834 		fwd_lcores_config_display();
5835 	else if (!strcmp(res->what, "fwd"))
5836 		pkt_fwd_config_display(&cur_fwd_config);
5837 	else if (!strcmp(res->what, "txpkts"))
5838 		show_tx_pkt_segments();
5839 }
5840 
5841 cmdline_parse_token_string_t cmd_showcfg_show =
5842 	TOKEN_STRING_INITIALIZER(struct cmd_showcfg_result, show, "show");
5843 cmdline_parse_token_string_t cmd_showcfg_port =
5844 	TOKEN_STRING_INITIALIZER(struct cmd_showcfg_result, cfg, "config");
5845 cmdline_parse_token_string_t cmd_showcfg_what =
5846 	TOKEN_STRING_INITIALIZER(struct cmd_showcfg_result, what,
5847 				 "rxtx#cores#fwd#txpkts");
5848 
5849 cmdline_parse_inst_t cmd_showcfg = {
5850 	.f = cmd_showcfg_parsed,
5851 	.data = NULL,
5852 	.help_str = "show config rxtx|cores|fwd|txpkts",
5853 	.tokens = {
5854 		(void *)&cmd_showcfg_show,
5855 		(void *)&cmd_showcfg_port,
5856 		(void *)&cmd_showcfg_what,
5857 		NULL,
5858 	},
5859 };
5860 
5861 /* *** SHOW ALL PORT INFO *** */
5862 struct cmd_showportall_result {
5863 	cmdline_fixed_string_t show;
5864 	cmdline_fixed_string_t port;
5865 	cmdline_fixed_string_t what;
5866 	cmdline_fixed_string_t all;
5867 };
5868 
5869 static void cmd_showportall_parsed(void *parsed_result,
5870 				__attribute__((unused)) struct cmdline *cl,
5871 				__attribute__((unused)) void *data)
5872 {
5873 	portid_t i;
5874 
5875 	struct cmd_showportall_result *res = parsed_result;
5876 	if (!strcmp(res->show, "clear")) {
5877 		if (!strcmp(res->what, "stats"))
5878 			RTE_ETH_FOREACH_DEV(i)
5879 				nic_stats_clear(i);
5880 		else if (!strcmp(res->what, "xstats"))
5881 			RTE_ETH_FOREACH_DEV(i)
5882 				nic_xstats_clear(i);
5883 	} else if (!strcmp(res->what, "info"))
5884 		RTE_ETH_FOREACH_DEV(i)
5885 			port_infos_display(i);
5886 	else if (!strcmp(res->what, "stats"))
5887 		RTE_ETH_FOREACH_DEV(i)
5888 			nic_stats_display(i);
5889 	else if (!strcmp(res->what, "xstats"))
5890 		RTE_ETH_FOREACH_DEV(i)
5891 			nic_xstats_display(i);
5892 	else if (!strcmp(res->what, "fdir"))
5893 		RTE_ETH_FOREACH_DEV(i)
5894 			fdir_get_infos(i);
5895 	else if (!strcmp(res->what, "stat_qmap"))
5896 		RTE_ETH_FOREACH_DEV(i)
5897 			nic_stats_mapping_display(i);
5898 	else if (!strcmp(res->what, "dcb_tc"))
5899 		RTE_ETH_FOREACH_DEV(i)
5900 			port_dcb_info_display(i);
5901 	else if (!strcmp(res->what, "cap"))
5902 		RTE_ETH_FOREACH_DEV(i)
5903 			port_offload_cap_display(i);
5904 }
5905 
5906 cmdline_parse_token_string_t cmd_showportall_show =
5907 	TOKEN_STRING_INITIALIZER(struct cmd_showportall_result, show,
5908 				 "show#clear");
5909 cmdline_parse_token_string_t cmd_showportall_port =
5910 	TOKEN_STRING_INITIALIZER(struct cmd_showportall_result, port, "port");
5911 cmdline_parse_token_string_t cmd_showportall_what =
5912 	TOKEN_STRING_INITIALIZER(struct cmd_showportall_result, what,
5913 				 "info#stats#xstats#fdir#stat_qmap#dcb_tc#cap");
5914 cmdline_parse_token_string_t cmd_showportall_all =
5915 	TOKEN_STRING_INITIALIZER(struct cmd_showportall_result, all, "all");
5916 cmdline_parse_inst_t cmd_showportall = {
5917 	.f = cmd_showportall_parsed,
5918 	.data = NULL,
5919 	.help_str = "show|clear port "
5920 		"info|stats|xstats|fdir|stat_qmap|dcb_tc|cap all",
5921 	.tokens = {
5922 		(void *)&cmd_showportall_show,
5923 		(void *)&cmd_showportall_port,
5924 		(void *)&cmd_showportall_what,
5925 		(void *)&cmd_showportall_all,
5926 		NULL,
5927 	},
5928 };
5929 
5930 /* *** SHOW PORT INFO *** */
5931 struct cmd_showport_result {
5932 	cmdline_fixed_string_t show;
5933 	cmdline_fixed_string_t port;
5934 	cmdline_fixed_string_t what;
5935 	uint8_t portnum;
5936 };
5937 
5938 static void cmd_showport_parsed(void *parsed_result,
5939 				__attribute__((unused)) struct cmdline *cl,
5940 				__attribute__((unused)) void *data)
5941 {
5942 	struct cmd_showport_result *res = parsed_result;
5943 	if (!strcmp(res->show, "clear")) {
5944 		if (!strcmp(res->what, "stats"))
5945 			nic_stats_clear(res->portnum);
5946 		else if (!strcmp(res->what, "xstats"))
5947 			nic_xstats_clear(res->portnum);
5948 	} else if (!strcmp(res->what, "info"))
5949 		port_infos_display(res->portnum);
5950 	else if (!strcmp(res->what, "stats"))
5951 		nic_stats_display(res->portnum);
5952 	else if (!strcmp(res->what, "xstats"))
5953 		nic_xstats_display(res->portnum);
5954 	else if (!strcmp(res->what, "fdir"))
5955 		 fdir_get_infos(res->portnum);
5956 	else if (!strcmp(res->what, "stat_qmap"))
5957 		nic_stats_mapping_display(res->portnum);
5958 	else if (!strcmp(res->what, "dcb_tc"))
5959 		port_dcb_info_display(res->portnum);
5960 	else if (!strcmp(res->what, "cap"))
5961 		port_offload_cap_display(res->portnum);
5962 }
5963 
5964 cmdline_parse_token_string_t cmd_showport_show =
5965 	TOKEN_STRING_INITIALIZER(struct cmd_showport_result, show,
5966 				 "show#clear");
5967 cmdline_parse_token_string_t cmd_showport_port =
5968 	TOKEN_STRING_INITIALIZER(struct cmd_showport_result, port, "port");
5969 cmdline_parse_token_string_t cmd_showport_what =
5970 	TOKEN_STRING_INITIALIZER(struct cmd_showport_result, what,
5971 				 "info#stats#xstats#fdir#stat_qmap#dcb_tc#cap");
5972 cmdline_parse_token_num_t cmd_showport_portnum =
5973 	TOKEN_NUM_INITIALIZER(struct cmd_showport_result, portnum, UINT8);
5974 
5975 cmdline_parse_inst_t cmd_showport = {
5976 	.f = cmd_showport_parsed,
5977 	.data = NULL,
5978 	.help_str = "show|clear port "
5979 		"info|stats|xstats|fdir|stat_qmap|dcb_tc|cap "
5980 		"<port_id>",
5981 	.tokens = {
5982 		(void *)&cmd_showport_show,
5983 		(void *)&cmd_showport_port,
5984 		(void *)&cmd_showport_what,
5985 		(void *)&cmd_showport_portnum,
5986 		NULL,
5987 	},
5988 };
5989 
5990 /* *** SHOW QUEUE INFO *** */
5991 struct cmd_showqueue_result {
5992 	cmdline_fixed_string_t show;
5993 	cmdline_fixed_string_t type;
5994 	cmdline_fixed_string_t what;
5995 	uint8_t portnum;
5996 	uint16_t queuenum;
5997 };
5998 
5999 static void
6000 cmd_showqueue_parsed(void *parsed_result,
6001 	__attribute__((unused)) struct cmdline *cl,
6002 	__attribute__((unused)) void *data)
6003 {
6004 	struct cmd_showqueue_result *res = parsed_result;
6005 
6006 	if (!strcmp(res->type, "rxq"))
6007 		rx_queue_infos_display(res->portnum, res->queuenum);
6008 	else if (!strcmp(res->type, "txq"))
6009 		tx_queue_infos_display(res->portnum, res->queuenum);
6010 }
6011 
6012 cmdline_parse_token_string_t cmd_showqueue_show =
6013 	TOKEN_STRING_INITIALIZER(struct cmd_showqueue_result, show, "show");
6014 cmdline_parse_token_string_t cmd_showqueue_type =
6015 	TOKEN_STRING_INITIALIZER(struct cmd_showqueue_result, type, "rxq#txq");
6016 cmdline_parse_token_string_t cmd_showqueue_what =
6017 	TOKEN_STRING_INITIALIZER(struct cmd_showqueue_result, what, "info");
6018 cmdline_parse_token_num_t cmd_showqueue_portnum =
6019 	TOKEN_NUM_INITIALIZER(struct cmd_showqueue_result, portnum, UINT8);
6020 cmdline_parse_token_num_t cmd_showqueue_queuenum =
6021 	TOKEN_NUM_INITIALIZER(struct cmd_showqueue_result, queuenum, UINT16);
6022 
6023 cmdline_parse_inst_t cmd_showqueue = {
6024 	.f = cmd_showqueue_parsed,
6025 	.data = NULL,
6026 	.help_str = "show rxq|txq info <port_id> <queue_id>",
6027 	.tokens = {
6028 		(void *)&cmd_showqueue_show,
6029 		(void *)&cmd_showqueue_type,
6030 		(void *)&cmd_showqueue_what,
6031 		(void *)&cmd_showqueue_portnum,
6032 		(void *)&cmd_showqueue_queuenum,
6033 		NULL,
6034 	},
6035 };
6036 
6037 /* *** READ PORT REGISTER *** */
6038 struct cmd_read_reg_result {
6039 	cmdline_fixed_string_t read;
6040 	cmdline_fixed_string_t reg;
6041 	uint8_t port_id;
6042 	uint32_t reg_off;
6043 };
6044 
6045 static void
6046 cmd_read_reg_parsed(void *parsed_result,
6047 		    __attribute__((unused)) struct cmdline *cl,
6048 		    __attribute__((unused)) void *data)
6049 {
6050 	struct cmd_read_reg_result *res = parsed_result;
6051 	port_reg_display(res->port_id, res->reg_off);
6052 }
6053 
6054 cmdline_parse_token_string_t cmd_read_reg_read =
6055 	TOKEN_STRING_INITIALIZER(struct cmd_read_reg_result, read, "read");
6056 cmdline_parse_token_string_t cmd_read_reg_reg =
6057 	TOKEN_STRING_INITIALIZER(struct cmd_read_reg_result, reg, "reg");
6058 cmdline_parse_token_num_t cmd_read_reg_port_id =
6059 	TOKEN_NUM_INITIALIZER(struct cmd_read_reg_result, port_id, UINT8);
6060 cmdline_parse_token_num_t cmd_read_reg_reg_off =
6061 	TOKEN_NUM_INITIALIZER(struct cmd_read_reg_result, reg_off, UINT32);
6062 
6063 cmdline_parse_inst_t cmd_read_reg = {
6064 	.f = cmd_read_reg_parsed,
6065 	.data = NULL,
6066 	.help_str = "read reg <port_id> <reg_off>",
6067 	.tokens = {
6068 		(void *)&cmd_read_reg_read,
6069 		(void *)&cmd_read_reg_reg,
6070 		(void *)&cmd_read_reg_port_id,
6071 		(void *)&cmd_read_reg_reg_off,
6072 		NULL,
6073 	},
6074 };
6075 
6076 /* *** READ PORT REGISTER BIT FIELD *** */
6077 struct cmd_read_reg_bit_field_result {
6078 	cmdline_fixed_string_t read;
6079 	cmdline_fixed_string_t regfield;
6080 	uint8_t port_id;
6081 	uint32_t reg_off;
6082 	uint8_t bit1_pos;
6083 	uint8_t bit2_pos;
6084 };
6085 
6086 static void
6087 cmd_read_reg_bit_field_parsed(void *parsed_result,
6088 			      __attribute__((unused)) struct cmdline *cl,
6089 			      __attribute__((unused)) void *data)
6090 {
6091 	struct cmd_read_reg_bit_field_result *res = parsed_result;
6092 	port_reg_bit_field_display(res->port_id, res->reg_off,
6093 				   res->bit1_pos, res->bit2_pos);
6094 }
6095 
6096 cmdline_parse_token_string_t cmd_read_reg_bit_field_read =
6097 	TOKEN_STRING_INITIALIZER(struct cmd_read_reg_bit_field_result, read,
6098 				 "read");
6099 cmdline_parse_token_string_t cmd_read_reg_bit_field_regfield =
6100 	TOKEN_STRING_INITIALIZER(struct cmd_read_reg_bit_field_result,
6101 				 regfield, "regfield");
6102 cmdline_parse_token_num_t cmd_read_reg_bit_field_port_id =
6103 	TOKEN_NUM_INITIALIZER(struct cmd_read_reg_bit_field_result, port_id,
6104 			      UINT8);
6105 cmdline_parse_token_num_t cmd_read_reg_bit_field_reg_off =
6106 	TOKEN_NUM_INITIALIZER(struct cmd_read_reg_bit_field_result, reg_off,
6107 			      UINT32);
6108 cmdline_parse_token_num_t cmd_read_reg_bit_field_bit1_pos =
6109 	TOKEN_NUM_INITIALIZER(struct cmd_read_reg_bit_field_result, bit1_pos,
6110 			      UINT8);
6111 cmdline_parse_token_num_t cmd_read_reg_bit_field_bit2_pos =
6112 	TOKEN_NUM_INITIALIZER(struct cmd_read_reg_bit_field_result, bit2_pos,
6113 			      UINT8);
6114 
6115 cmdline_parse_inst_t cmd_read_reg_bit_field = {
6116 	.f = cmd_read_reg_bit_field_parsed,
6117 	.data = NULL,
6118 	.help_str = "read regfield <port_id> <reg_off> <bit_x> <bit_y>: "
6119 	"Read register bit field between bit_x and bit_y included",
6120 	.tokens = {
6121 		(void *)&cmd_read_reg_bit_field_read,
6122 		(void *)&cmd_read_reg_bit_field_regfield,
6123 		(void *)&cmd_read_reg_bit_field_port_id,
6124 		(void *)&cmd_read_reg_bit_field_reg_off,
6125 		(void *)&cmd_read_reg_bit_field_bit1_pos,
6126 		(void *)&cmd_read_reg_bit_field_bit2_pos,
6127 		NULL,
6128 	},
6129 };
6130 
6131 /* *** READ PORT REGISTER BIT *** */
6132 struct cmd_read_reg_bit_result {
6133 	cmdline_fixed_string_t read;
6134 	cmdline_fixed_string_t regbit;
6135 	uint8_t port_id;
6136 	uint32_t reg_off;
6137 	uint8_t bit_pos;
6138 };
6139 
6140 static void
6141 cmd_read_reg_bit_parsed(void *parsed_result,
6142 			__attribute__((unused)) struct cmdline *cl,
6143 			__attribute__((unused)) void *data)
6144 {
6145 	struct cmd_read_reg_bit_result *res = parsed_result;
6146 	port_reg_bit_display(res->port_id, res->reg_off, res->bit_pos);
6147 }
6148 
6149 cmdline_parse_token_string_t cmd_read_reg_bit_read =
6150 	TOKEN_STRING_INITIALIZER(struct cmd_read_reg_bit_result, read, "read");
6151 cmdline_parse_token_string_t cmd_read_reg_bit_regbit =
6152 	TOKEN_STRING_INITIALIZER(struct cmd_read_reg_bit_result,
6153 				 regbit, "regbit");
6154 cmdline_parse_token_num_t cmd_read_reg_bit_port_id =
6155 	TOKEN_NUM_INITIALIZER(struct cmd_read_reg_bit_result, port_id, UINT8);
6156 cmdline_parse_token_num_t cmd_read_reg_bit_reg_off =
6157 	TOKEN_NUM_INITIALIZER(struct cmd_read_reg_bit_result, reg_off, UINT32);
6158 cmdline_parse_token_num_t cmd_read_reg_bit_bit_pos =
6159 	TOKEN_NUM_INITIALIZER(struct cmd_read_reg_bit_result, bit_pos, UINT8);
6160 
6161 cmdline_parse_inst_t cmd_read_reg_bit = {
6162 	.f = cmd_read_reg_bit_parsed,
6163 	.data = NULL,
6164 	.help_str = "read regbit <port_id> <reg_off> <bit_x>: 0 <= bit_x <= 31",
6165 	.tokens = {
6166 		(void *)&cmd_read_reg_bit_read,
6167 		(void *)&cmd_read_reg_bit_regbit,
6168 		(void *)&cmd_read_reg_bit_port_id,
6169 		(void *)&cmd_read_reg_bit_reg_off,
6170 		(void *)&cmd_read_reg_bit_bit_pos,
6171 		NULL,
6172 	},
6173 };
6174 
6175 /* *** WRITE PORT REGISTER *** */
6176 struct cmd_write_reg_result {
6177 	cmdline_fixed_string_t write;
6178 	cmdline_fixed_string_t reg;
6179 	uint8_t port_id;
6180 	uint32_t reg_off;
6181 	uint32_t value;
6182 };
6183 
6184 static void
6185 cmd_write_reg_parsed(void *parsed_result,
6186 		     __attribute__((unused)) struct cmdline *cl,
6187 		     __attribute__((unused)) void *data)
6188 {
6189 	struct cmd_write_reg_result *res = parsed_result;
6190 	port_reg_set(res->port_id, res->reg_off, res->value);
6191 }
6192 
6193 cmdline_parse_token_string_t cmd_write_reg_write =
6194 	TOKEN_STRING_INITIALIZER(struct cmd_write_reg_result, write, "write");
6195 cmdline_parse_token_string_t cmd_write_reg_reg =
6196 	TOKEN_STRING_INITIALIZER(struct cmd_write_reg_result, reg, "reg");
6197 cmdline_parse_token_num_t cmd_write_reg_port_id =
6198 	TOKEN_NUM_INITIALIZER(struct cmd_write_reg_result, port_id, UINT8);
6199 cmdline_parse_token_num_t cmd_write_reg_reg_off =
6200 	TOKEN_NUM_INITIALIZER(struct cmd_write_reg_result, reg_off, UINT32);
6201 cmdline_parse_token_num_t cmd_write_reg_value =
6202 	TOKEN_NUM_INITIALIZER(struct cmd_write_reg_result, value, UINT32);
6203 
6204 cmdline_parse_inst_t cmd_write_reg = {
6205 	.f = cmd_write_reg_parsed,
6206 	.data = NULL,
6207 	.help_str = "write reg <port_id> <reg_off> <reg_value>",
6208 	.tokens = {
6209 		(void *)&cmd_write_reg_write,
6210 		(void *)&cmd_write_reg_reg,
6211 		(void *)&cmd_write_reg_port_id,
6212 		(void *)&cmd_write_reg_reg_off,
6213 		(void *)&cmd_write_reg_value,
6214 		NULL,
6215 	},
6216 };
6217 
6218 /* *** WRITE PORT REGISTER BIT FIELD *** */
6219 struct cmd_write_reg_bit_field_result {
6220 	cmdline_fixed_string_t write;
6221 	cmdline_fixed_string_t regfield;
6222 	uint8_t port_id;
6223 	uint32_t reg_off;
6224 	uint8_t bit1_pos;
6225 	uint8_t bit2_pos;
6226 	uint32_t value;
6227 };
6228 
6229 static void
6230 cmd_write_reg_bit_field_parsed(void *parsed_result,
6231 			       __attribute__((unused)) struct cmdline *cl,
6232 			       __attribute__((unused)) void *data)
6233 {
6234 	struct cmd_write_reg_bit_field_result *res = parsed_result;
6235 	port_reg_bit_field_set(res->port_id, res->reg_off,
6236 			  res->bit1_pos, res->bit2_pos, res->value);
6237 }
6238 
6239 cmdline_parse_token_string_t cmd_write_reg_bit_field_write =
6240 	TOKEN_STRING_INITIALIZER(struct cmd_write_reg_bit_field_result, write,
6241 				 "write");
6242 cmdline_parse_token_string_t cmd_write_reg_bit_field_regfield =
6243 	TOKEN_STRING_INITIALIZER(struct cmd_write_reg_bit_field_result,
6244 				 regfield, "regfield");
6245 cmdline_parse_token_num_t cmd_write_reg_bit_field_port_id =
6246 	TOKEN_NUM_INITIALIZER(struct cmd_write_reg_bit_field_result, port_id,
6247 			      UINT8);
6248 cmdline_parse_token_num_t cmd_write_reg_bit_field_reg_off =
6249 	TOKEN_NUM_INITIALIZER(struct cmd_write_reg_bit_field_result, reg_off,
6250 			      UINT32);
6251 cmdline_parse_token_num_t cmd_write_reg_bit_field_bit1_pos =
6252 	TOKEN_NUM_INITIALIZER(struct cmd_write_reg_bit_field_result, bit1_pos,
6253 			      UINT8);
6254 cmdline_parse_token_num_t cmd_write_reg_bit_field_bit2_pos =
6255 	TOKEN_NUM_INITIALIZER(struct cmd_write_reg_bit_field_result, bit2_pos,
6256 			      UINT8);
6257 cmdline_parse_token_num_t cmd_write_reg_bit_field_value =
6258 	TOKEN_NUM_INITIALIZER(struct cmd_write_reg_bit_field_result, value,
6259 			      UINT32);
6260 
6261 cmdline_parse_inst_t cmd_write_reg_bit_field = {
6262 	.f = cmd_write_reg_bit_field_parsed,
6263 	.data = NULL,
6264 	.help_str = "write regfield <port_id> <reg_off> <bit_x> <bit_y> "
6265 		"<reg_value>: "
6266 		"Set register bit field between bit_x and bit_y included",
6267 	.tokens = {
6268 		(void *)&cmd_write_reg_bit_field_write,
6269 		(void *)&cmd_write_reg_bit_field_regfield,
6270 		(void *)&cmd_write_reg_bit_field_port_id,
6271 		(void *)&cmd_write_reg_bit_field_reg_off,
6272 		(void *)&cmd_write_reg_bit_field_bit1_pos,
6273 		(void *)&cmd_write_reg_bit_field_bit2_pos,
6274 		(void *)&cmd_write_reg_bit_field_value,
6275 		NULL,
6276 	},
6277 };
6278 
6279 /* *** WRITE PORT REGISTER BIT *** */
6280 struct cmd_write_reg_bit_result {
6281 	cmdline_fixed_string_t write;
6282 	cmdline_fixed_string_t regbit;
6283 	uint8_t port_id;
6284 	uint32_t reg_off;
6285 	uint8_t bit_pos;
6286 	uint8_t value;
6287 };
6288 
6289 static void
6290 cmd_write_reg_bit_parsed(void *parsed_result,
6291 			 __attribute__((unused)) struct cmdline *cl,
6292 			 __attribute__((unused)) void *data)
6293 {
6294 	struct cmd_write_reg_bit_result *res = parsed_result;
6295 	port_reg_bit_set(res->port_id, res->reg_off, res->bit_pos, res->value);
6296 }
6297 
6298 cmdline_parse_token_string_t cmd_write_reg_bit_write =
6299 	TOKEN_STRING_INITIALIZER(struct cmd_write_reg_bit_result, write,
6300 				 "write");
6301 cmdline_parse_token_string_t cmd_write_reg_bit_regbit =
6302 	TOKEN_STRING_INITIALIZER(struct cmd_write_reg_bit_result,
6303 				 regbit, "regbit");
6304 cmdline_parse_token_num_t cmd_write_reg_bit_port_id =
6305 	TOKEN_NUM_INITIALIZER(struct cmd_write_reg_bit_result, port_id, UINT8);
6306 cmdline_parse_token_num_t cmd_write_reg_bit_reg_off =
6307 	TOKEN_NUM_INITIALIZER(struct cmd_write_reg_bit_result, reg_off, UINT32);
6308 cmdline_parse_token_num_t cmd_write_reg_bit_bit_pos =
6309 	TOKEN_NUM_INITIALIZER(struct cmd_write_reg_bit_result, bit_pos, UINT8);
6310 cmdline_parse_token_num_t cmd_write_reg_bit_value =
6311 	TOKEN_NUM_INITIALIZER(struct cmd_write_reg_bit_result, value, UINT8);
6312 
6313 cmdline_parse_inst_t cmd_write_reg_bit = {
6314 	.f = cmd_write_reg_bit_parsed,
6315 	.data = NULL,
6316 	.help_str = "write regbit <port_id> <reg_off> <bit_x> 0|1: "
6317 		"0 <= bit_x <= 31",
6318 	.tokens = {
6319 		(void *)&cmd_write_reg_bit_write,
6320 		(void *)&cmd_write_reg_bit_regbit,
6321 		(void *)&cmd_write_reg_bit_port_id,
6322 		(void *)&cmd_write_reg_bit_reg_off,
6323 		(void *)&cmd_write_reg_bit_bit_pos,
6324 		(void *)&cmd_write_reg_bit_value,
6325 		NULL,
6326 	},
6327 };
6328 
6329 /* *** READ A RING DESCRIPTOR OF A PORT RX/TX QUEUE *** */
6330 struct cmd_read_rxd_txd_result {
6331 	cmdline_fixed_string_t read;
6332 	cmdline_fixed_string_t rxd_txd;
6333 	uint8_t port_id;
6334 	uint16_t queue_id;
6335 	uint16_t desc_id;
6336 };
6337 
6338 static void
6339 cmd_read_rxd_txd_parsed(void *parsed_result,
6340 			__attribute__((unused)) struct cmdline *cl,
6341 			__attribute__((unused)) void *data)
6342 {
6343 	struct cmd_read_rxd_txd_result *res = parsed_result;
6344 
6345 	if (!strcmp(res->rxd_txd, "rxd"))
6346 		rx_ring_desc_display(res->port_id, res->queue_id, res->desc_id);
6347 	else if (!strcmp(res->rxd_txd, "txd"))
6348 		tx_ring_desc_display(res->port_id, res->queue_id, res->desc_id);
6349 }
6350 
6351 cmdline_parse_token_string_t cmd_read_rxd_txd_read =
6352 	TOKEN_STRING_INITIALIZER(struct cmd_read_rxd_txd_result, read, "read");
6353 cmdline_parse_token_string_t cmd_read_rxd_txd_rxd_txd =
6354 	TOKEN_STRING_INITIALIZER(struct cmd_read_rxd_txd_result, rxd_txd,
6355 				 "rxd#txd");
6356 cmdline_parse_token_num_t cmd_read_rxd_txd_port_id =
6357 	TOKEN_NUM_INITIALIZER(struct cmd_read_rxd_txd_result, port_id, UINT8);
6358 cmdline_parse_token_num_t cmd_read_rxd_txd_queue_id =
6359 	TOKEN_NUM_INITIALIZER(struct cmd_read_rxd_txd_result, queue_id, UINT16);
6360 cmdline_parse_token_num_t cmd_read_rxd_txd_desc_id =
6361 	TOKEN_NUM_INITIALIZER(struct cmd_read_rxd_txd_result, desc_id, UINT16);
6362 
6363 cmdline_parse_inst_t cmd_read_rxd_txd = {
6364 	.f = cmd_read_rxd_txd_parsed,
6365 	.data = NULL,
6366 	.help_str = "read rxd|txd <port_id> <queue_id> <desc_id>",
6367 	.tokens = {
6368 		(void *)&cmd_read_rxd_txd_read,
6369 		(void *)&cmd_read_rxd_txd_rxd_txd,
6370 		(void *)&cmd_read_rxd_txd_port_id,
6371 		(void *)&cmd_read_rxd_txd_queue_id,
6372 		(void *)&cmd_read_rxd_txd_desc_id,
6373 		NULL,
6374 	},
6375 };
6376 
6377 /* *** QUIT *** */
6378 struct cmd_quit_result {
6379 	cmdline_fixed_string_t quit;
6380 };
6381 
6382 static void cmd_quit_parsed(__attribute__((unused)) void *parsed_result,
6383 			    struct cmdline *cl,
6384 			    __attribute__((unused)) void *data)
6385 {
6386 	pmd_test_exit();
6387 	cmdline_quit(cl);
6388 }
6389 
6390 cmdline_parse_token_string_t cmd_quit_quit =
6391 	TOKEN_STRING_INITIALIZER(struct cmd_quit_result, quit, "quit");
6392 
6393 cmdline_parse_inst_t cmd_quit = {
6394 	.f = cmd_quit_parsed,
6395 	.data = NULL,
6396 	.help_str = "quit: Exit application",
6397 	.tokens = {
6398 		(void *)&cmd_quit_quit,
6399 		NULL,
6400 	},
6401 };
6402 
6403 /* *** ADD/REMOVE MAC ADDRESS FROM A PORT *** */
6404 struct cmd_mac_addr_result {
6405 	cmdline_fixed_string_t mac_addr_cmd;
6406 	cmdline_fixed_string_t what;
6407 	uint8_t port_num;
6408 	struct ether_addr address;
6409 };
6410 
6411 static void cmd_mac_addr_parsed(void *parsed_result,
6412 		__attribute__((unused)) struct cmdline *cl,
6413 		__attribute__((unused)) void *data)
6414 {
6415 	struct cmd_mac_addr_result *res = parsed_result;
6416 	int ret;
6417 
6418 	if (strcmp(res->what, "add") == 0)
6419 		ret = rte_eth_dev_mac_addr_add(res->port_num, &res->address, 0);
6420 	else if (strcmp(res->what, "set") == 0)
6421 		ret = rte_eth_dev_default_mac_addr_set(res->port_num,
6422 						       &res->address);
6423 	else
6424 		ret = rte_eth_dev_mac_addr_remove(res->port_num, &res->address);
6425 
6426 	/* check the return value and print it if is < 0 */
6427 	if(ret < 0)
6428 		printf("mac_addr_cmd error: (%s)\n", strerror(-ret));
6429 
6430 }
6431 
6432 cmdline_parse_token_string_t cmd_mac_addr_cmd =
6433 	TOKEN_STRING_INITIALIZER(struct cmd_mac_addr_result, mac_addr_cmd,
6434 				"mac_addr");
6435 cmdline_parse_token_string_t cmd_mac_addr_what =
6436 	TOKEN_STRING_INITIALIZER(struct cmd_mac_addr_result, what,
6437 				"add#remove#set");
6438 cmdline_parse_token_num_t cmd_mac_addr_portnum =
6439 		TOKEN_NUM_INITIALIZER(struct cmd_mac_addr_result, port_num, UINT8);
6440 cmdline_parse_token_etheraddr_t cmd_mac_addr_addr =
6441 		TOKEN_ETHERADDR_INITIALIZER(struct cmd_mac_addr_result, address);
6442 
6443 cmdline_parse_inst_t cmd_mac_addr = {
6444 	.f = cmd_mac_addr_parsed,
6445 	.data = (void *)0,
6446 	.help_str = "mac_addr add|remove|set <port_id> <mac_addr>: "
6447 			"Add/Remove/Set MAC address on port_id",
6448 	.tokens = {
6449 		(void *)&cmd_mac_addr_cmd,
6450 		(void *)&cmd_mac_addr_what,
6451 		(void *)&cmd_mac_addr_portnum,
6452 		(void *)&cmd_mac_addr_addr,
6453 		NULL,
6454 	},
6455 };
6456 
6457 
6458 /* *** CONFIGURE QUEUE STATS COUNTER MAPPINGS *** */
6459 struct cmd_set_qmap_result {
6460 	cmdline_fixed_string_t set;
6461 	cmdline_fixed_string_t qmap;
6462 	cmdline_fixed_string_t what;
6463 	uint8_t port_id;
6464 	uint16_t queue_id;
6465 	uint8_t map_value;
6466 };
6467 
6468 static void
6469 cmd_set_qmap_parsed(void *parsed_result,
6470 		       __attribute__((unused)) struct cmdline *cl,
6471 		       __attribute__((unused)) void *data)
6472 {
6473 	struct cmd_set_qmap_result *res = parsed_result;
6474 	int is_rx = (strcmp(res->what, "tx") == 0) ? 0 : 1;
6475 
6476 	set_qmap(res->port_id, (uint8_t)is_rx, res->queue_id, res->map_value);
6477 }
6478 
6479 cmdline_parse_token_string_t cmd_setqmap_set =
6480 	TOKEN_STRING_INITIALIZER(struct cmd_set_qmap_result,
6481 				 set, "set");
6482 cmdline_parse_token_string_t cmd_setqmap_qmap =
6483 	TOKEN_STRING_INITIALIZER(struct cmd_set_qmap_result,
6484 				 qmap, "stat_qmap");
6485 cmdline_parse_token_string_t cmd_setqmap_what =
6486 	TOKEN_STRING_INITIALIZER(struct cmd_set_qmap_result,
6487 				 what, "tx#rx");
6488 cmdline_parse_token_num_t cmd_setqmap_portid =
6489 	TOKEN_NUM_INITIALIZER(struct cmd_set_qmap_result,
6490 			      port_id, UINT8);
6491 cmdline_parse_token_num_t cmd_setqmap_queueid =
6492 	TOKEN_NUM_INITIALIZER(struct cmd_set_qmap_result,
6493 			      queue_id, UINT16);
6494 cmdline_parse_token_num_t cmd_setqmap_mapvalue =
6495 	TOKEN_NUM_INITIALIZER(struct cmd_set_qmap_result,
6496 			      map_value, UINT8);
6497 
6498 cmdline_parse_inst_t cmd_set_qmap = {
6499 	.f = cmd_set_qmap_parsed,
6500 	.data = NULL,
6501 	.help_str = "set stat_qmap rx|tx <port_id> <queue_id> <map_value>: "
6502 		"Set statistics mapping value on tx|rx queue_id of port_id",
6503 	.tokens = {
6504 		(void *)&cmd_setqmap_set,
6505 		(void *)&cmd_setqmap_qmap,
6506 		(void *)&cmd_setqmap_what,
6507 		(void *)&cmd_setqmap_portid,
6508 		(void *)&cmd_setqmap_queueid,
6509 		(void *)&cmd_setqmap_mapvalue,
6510 		NULL,
6511 	},
6512 };
6513 
6514 /* *** CONFIGURE UNICAST HASH TABLE *** */
6515 struct cmd_set_uc_hash_table {
6516 	cmdline_fixed_string_t set;
6517 	cmdline_fixed_string_t port;
6518 	uint8_t port_id;
6519 	cmdline_fixed_string_t what;
6520 	struct ether_addr address;
6521 	cmdline_fixed_string_t mode;
6522 };
6523 
6524 static void
6525 cmd_set_uc_hash_parsed(void *parsed_result,
6526 		       __attribute__((unused)) struct cmdline *cl,
6527 		       __attribute__((unused)) void *data)
6528 {
6529 	int ret=0;
6530 	struct cmd_set_uc_hash_table *res = parsed_result;
6531 
6532 	int is_on = (strcmp(res->mode, "on") == 0) ? 1 : 0;
6533 
6534 	if (strcmp(res->what, "uta") == 0)
6535 		ret = rte_eth_dev_uc_hash_table_set(res->port_id,
6536 						&res->address,(uint8_t)is_on);
6537 	if (ret < 0)
6538 		printf("bad unicast hash table parameter, return code = %d \n", ret);
6539 
6540 }
6541 
6542 cmdline_parse_token_string_t cmd_set_uc_hash_set =
6543 	TOKEN_STRING_INITIALIZER(struct cmd_set_uc_hash_table,
6544 				 set, "set");
6545 cmdline_parse_token_string_t cmd_set_uc_hash_port =
6546 	TOKEN_STRING_INITIALIZER(struct cmd_set_uc_hash_table,
6547 				 port, "port");
6548 cmdline_parse_token_num_t cmd_set_uc_hash_portid =
6549 	TOKEN_NUM_INITIALIZER(struct cmd_set_uc_hash_table,
6550 			      port_id, UINT8);
6551 cmdline_parse_token_string_t cmd_set_uc_hash_what =
6552 	TOKEN_STRING_INITIALIZER(struct cmd_set_uc_hash_table,
6553 				 what, "uta");
6554 cmdline_parse_token_etheraddr_t cmd_set_uc_hash_mac =
6555 	TOKEN_ETHERADDR_INITIALIZER(struct cmd_set_uc_hash_table,
6556 				address);
6557 cmdline_parse_token_string_t cmd_set_uc_hash_mode =
6558 	TOKEN_STRING_INITIALIZER(struct cmd_set_uc_hash_table,
6559 				 mode, "on#off");
6560 
6561 cmdline_parse_inst_t cmd_set_uc_hash_filter = {
6562 	.f = cmd_set_uc_hash_parsed,
6563 	.data = NULL,
6564 	.help_str = "set port <port_id> uta <mac_addr> on|off)",
6565 	.tokens = {
6566 		(void *)&cmd_set_uc_hash_set,
6567 		(void *)&cmd_set_uc_hash_port,
6568 		(void *)&cmd_set_uc_hash_portid,
6569 		(void *)&cmd_set_uc_hash_what,
6570 		(void *)&cmd_set_uc_hash_mac,
6571 		(void *)&cmd_set_uc_hash_mode,
6572 		NULL,
6573 	},
6574 };
6575 
6576 struct cmd_set_uc_all_hash_table {
6577 	cmdline_fixed_string_t set;
6578 	cmdline_fixed_string_t port;
6579 	uint8_t port_id;
6580 	cmdline_fixed_string_t what;
6581 	cmdline_fixed_string_t value;
6582 	cmdline_fixed_string_t mode;
6583 };
6584 
6585 static void
6586 cmd_set_uc_all_hash_parsed(void *parsed_result,
6587 		       __attribute__((unused)) struct cmdline *cl,
6588 		       __attribute__((unused)) void *data)
6589 {
6590 	int ret=0;
6591 	struct cmd_set_uc_all_hash_table *res = parsed_result;
6592 
6593 	int is_on = (strcmp(res->mode, "on") == 0) ? 1 : 0;
6594 
6595 	if ((strcmp(res->what, "uta") == 0) &&
6596 		(strcmp(res->value, "all") == 0))
6597 		ret = rte_eth_dev_uc_all_hash_table_set(res->port_id,(uint8_t) is_on);
6598 	if (ret < 0)
6599 		printf("bad unicast hash table parameter,"
6600 			"return code = %d \n", ret);
6601 }
6602 
6603 cmdline_parse_token_string_t cmd_set_uc_all_hash_set =
6604 	TOKEN_STRING_INITIALIZER(struct cmd_set_uc_all_hash_table,
6605 				 set, "set");
6606 cmdline_parse_token_string_t cmd_set_uc_all_hash_port =
6607 	TOKEN_STRING_INITIALIZER(struct cmd_set_uc_all_hash_table,
6608 				 port, "port");
6609 cmdline_parse_token_num_t cmd_set_uc_all_hash_portid =
6610 	TOKEN_NUM_INITIALIZER(struct cmd_set_uc_all_hash_table,
6611 			      port_id, UINT8);
6612 cmdline_parse_token_string_t cmd_set_uc_all_hash_what =
6613 	TOKEN_STRING_INITIALIZER(struct cmd_set_uc_all_hash_table,
6614 				 what, "uta");
6615 cmdline_parse_token_string_t cmd_set_uc_all_hash_value =
6616 	TOKEN_STRING_INITIALIZER(struct cmd_set_uc_all_hash_table,
6617 				value,"all");
6618 cmdline_parse_token_string_t cmd_set_uc_all_hash_mode =
6619 	TOKEN_STRING_INITIALIZER(struct cmd_set_uc_all_hash_table,
6620 				 mode, "on#off");
6621 
6622 cmdline_parse_inst_t cmd_set_uc_all_hash_filter = {
6623 	.f = cmd_set_uc_all_hash_parsed,
6624 	.data = NULL,
6625 	.help_str = "set port <port_id> uta all on|off",
6626 	.tokens = {
6627 		(void *)&cmd_set_uc_all_hash_set,
6628 		(void *)&cmd_set_uc_all_hash_port,
6629 		(void *)&cmd_set_uc_all_hash_portid,
6630 		(void *)&cmd_set_uc_all_hash_what,
6631 		(void *)&cmd_set_uc_all_hash_value,
6632 		(void *)&cmd_set_uc_all_hash_mode,
6633 		NULL,
6634 	},
6635 };
6636 
6637 /* *** CONFIGURE MACVLAN FILTER FOR VF(s) *** */
6638 struct cmd_set_vf_macvlan_filter {
6639 	cmdline_fixed_string_t set;
6640 	cmdline_fixed_string_t port;
6641 	uint8_t port_id;
6642 	cmdline_fixed_string_t vf;
6643 	uint8_t vf_id;
6644 	struct ether_addr address;
6645 	cmdline_fixed_string_t filter_type;
6646 	cmdline_fixed_string_t mode;
6647 };
6648 
6649 static void
6650 cmd_set_vf_macvlan_parsed(void *parsed_result,
6651 		       __attribute__((unused)) struct cmdline *cl,
6652 		       __attribute__((unused)) void *data)
6653 {
6654 	int is_on, ret = 0;
6655 	struct cmd_set_vf_macvlan_filter *res = parsed_result;
6656 	struct rte_eth_mac_filter filter;
6657 
6658 	memset(&filter, 0, sizeof(struct rte_eth_mac_filter));
6659 
6660 	(void)rte_memcpy(&filter.mac_addr, &res->address, ETHER_ADDR_LEN);
6661 
6662 	/* set VF MAC filter */
6663 	filter.is_vf = 1;
6664 
6665 	/* set VF ID */
6666 	filter.dst_id = res->vf_id;
6667 
6668 	if (!strcmp(res->filter_type, "exact-mac"))
6669 		filter.filter_type = RTE_MAC_PERFECT_MATCH;
6670 	else if (!strcmp(res->filter_type, "exact-mac-vlan"))
6671 		filter.filter_type = RTE_MACVLAN_PERFECT_MATCH;
6672 	else if (!strcmp(res->filter_type, "hashmac"))
6673 		filter.filter_type = RTE_MAC_HASH_MATCH;
6674 	else if (!strcmp(res->filter_type, "hashmac-vlan"))
6675 		filter.filter_type = RTE_MACVLAN_HASH_MATCH;
6676 
6677 	is_on = (strcmp(res->mode, "on") == 0) ? 1 : 0;
6678 
6679 	if (is_on)
6680 		ret = rte_eth_dev_filter_ctrl(res->port_id,
6681 					RTE_ETH_FILTER_MACVLAN,
6682 					RTE_ETH_FILTER_ADD,
6683 					 &filter);
6684 	else
6685 		ret = rte_eth_dev_filter_ctrl(res->port_id,
6686 					RTE_ETH_FILTER_MACVLAN,
6687 					RTE_ETH_FILTER_DELETE,
6688 					&filter);
6689 
6690 	if (ret < 0)
6691 		printf("bad set MAC hash parameter, return code = %d\n", ret);
6692 
6693 }
6694 
6695 cmdline_parse_token_string_t cmd_set_vf_macvlan_set =
6696 	TOKEN_STRING_INITIALIZER(struct cmd_set_vf_macvlan_filter,
6697 				 set, "set");
6698 cmdline_parse_token_string_t cmd_set_vf_macvlan_port =
6699 	TOKEN_STRING_INITIALIZER(struct cmd_set_vf_macvlan_filter,
6700 				 port, "port");
6701 cmdline_parse_token_num_t cmd_set_vf_macvlan_portid =
6702 	TOKEN_NUM_INITIALIZER(struct cmd_set_vf_macvlan_filter,
6703 			      port_id, UINT8);
6704 cmdline_parse_token_string_t cmd_set_vf_macvlan_vf =
6705 	TOKEN_STRING_INITIALIZER(struct cmd_set_vf_macvlan_filter,
6706 				 vf, "vf");
6707 cmdline_parse_token_num_t cmd_set_vf_macvlan_vf_id =
6708 	TOKEN_NUM_INITIALIZER(struct cmd_set_vf_macvlan_filter,
6709 				vf_id, UINT8);
6710 cmdline_parse_token_etheraddr_t cmd_set_vf_macvlan_mac =
6711 	TOKEN_ETHERADDR_INITIALIZER(struct cmd_set_vf_macvlan_filter,
6712 				address);
6713 cmdline_parse_token_string_t cmd_set_vf_macvlan_filter_type =
6714 	TOKEN_STRING_INITIALIZER(struct cmd_set_vf_macvlan_filter,
6715 				filter_type, "exact-mac#exact-mac-vlan"
6716 				"#hashmac#hashmac-vlan");
6717 cmdline_parse_token_string_t cmd_set_vf_macvlan_mode =
6718 	TOKEN_STRING_INITIALIZER(struct cmd_set_vf_macvlan_filter,
6719 				 mode, "on#off");
6720 
6721 cmdline_parse_inst_t cmd_set_vf_macvlan_filter = {
6722 	.f = cmd_set_vf_macvlan_parsed,
6723 	.data = NULL,
6724 	.help_str = "set port <port_id> vf <vf_id> <mac_addr> "
6725 		"exact-mac|exact-mac-vlan|hashmac|hashmac-vlan on|off: "
6726 		"Exact match rule: exact match of MAC or MAC and VLAN; "
6727 		"hash match rule: hash match of MAC and exact match of VLAN",
6728 	.tokens = {
6729 		(void *)&cmd_set_vf_macvlan_set,
6730 		(void *)&cmd_set_vf_macvlan_port,
6731 		(void *)&cmd_set_vf_macvlan_portid,
6732 		(void *)&cmd_set_vf_macvlan_vf,
6733 		(void *)&cmd_set_vf_macvlan_vf_id,
6734 		(void *)&cmd_set_vf_macvlan_mac,
6735 		(void *)&cmd_set_vf_macvlan_filter_type,
6736 		(void *)&cmd_set_vf_macvlan_mode,
6737 		NULL,
6738 	},
6739 };
6740 
6741 #ifdef RTE_LIBRTE_IXGBE_PMD
6742 /* *** CONFIGURE VF TRAFFIC CONTROL *** */
6743 struct cmd_set_vf_traffic {
6744 	cmdline_fixed_string_t set;
6745 	cmdline_fixed_string_t port;
6746 	uint8_t port_id;
6747 	cmdline_fixed_string_t vf;
6748 	uint8_t vf_id;
6749 	cmdline_fixed_string_t what;
6750 	cmdline_fixed_string_t mode;
6751 };
6752 
6753 static void
6754 cmd_set_vf_traffic_parsed(void *parsed_result,
6755 		       __attribute__((unused)) struct cmdline *cl,
6756 		       __attribute__((unused)) void *data)
6757 {
6758 	struct cmd_set_vf_traffic *res = parsed_result;
6759 	int is_rx = (strcmp(res->what, "rx") == 0) ? 1 : 0;
6760 	int is_on = (strcmp(res->mode, "on") == 0) ? 1 : 0;
6761 
6762 	set_vf_traffic(res->port_id, (uint8_t)is_rx, res->vf_id,(uint8_t) is_on);
6763 }
6764 
6765 cmdline_parse_token_string_t cmd_setvf_traffic_set =
6766 	TOKEN_STRING_INITIALIZER(struct cmd_set_vf_traffic,
6767 				 set, "set");
6768 cmdline_parse_token_string_t cmd_setvf_traffic_port =
6769 	TOKEN_STRING_INITIALIZER(struct cmd_set_vf_traffic,
6770 				 port, "port");
6771 cmdline_parse_token_num_t cmd_setvf_traffic_portid =
6772 	TOKEN_NUM_INITIALIZER(struct cmd_set_vf_traffic,
6773 			      port_id, UINT8);
6774 cmdline_parse_token_string_t cmd_setvf_traffic_vf =
6775 	TOKEN_STRING_INITIALIZER(struct cmd_set_vf_traffic,
6776 				 vf, "vf");
6777 cmdline_parse_token_num_t cmd_setvf_traffic_vfid =
6778 	TOKEN_NUM_INITIALIZER(struct cmd_set_vf_traffic,
6779 			      vf_id, UINT8);
6780 cmdline_parse_token_string_t cmd_setvf_traffic_what =
6781 	TOKEN_STRING_INITIALIZER(struct cmd_set_vf_traffic,
6782 				 what, "tx#rx");
6783 cmdline_parse_token_string_t cmd_setvf_traffic_mode =
6784 	TOKEN_STRING_INITIALIZER(struct cmd_set_vf_traffic,
6785 				 mode, "on#off");
6786 
6787 cmdline_parse_inst_t cmd_set_vf_traffic = {
6788 	.f = cmd_set_vf_traffic_parsed,
6789 	.data = NULL,
6790 	.help_str = "set port <port_id> vf <vf_id> rx|tx on|off",
6791 	.tokens = {
6792 		(void *)&cmd_setvf_traffic_set,
6793 		(void *)&cmd_setvf_traffic_port,
6794 		(void *)&cmd_setvf_traffic_portid,
6795 		(void *)&cmd_setvf_traffic_vf,
6796 		(void *)&cmd_setvf_traffic_vfid,
6797 		(void *)&cmd_setvf_traffic_what,
6798 		(void *)&cmd_setvf_traffic_mode,
6799 		NULL,
6800 	},
6801 };
6802 
6803 /* *** CONFIGURE VF RECEIVE MODE *** */
6804 struct cmd_set_vf_rxmode {
6805 	cmdline_fixed_string_t set;
6806 	cmdline_fixed_string_t port;
6807 	uint8_t port_id;
6808 	cmdline_fixed_string_t vf;
6809 	uint8_t vf_id;
6810 	cmdline_fixed_string_t what;
6811 	cmdline_fixed_string_t mode;
6812 	cmdline_fixed_string_t on;
6813 };
6814 
6815 static void
6816 cmd_set_vf_rxmode_parsed(void *parsed_result,
6817 		       __attribute__((unused)) struct cmdline *cl,
6818 		       __attribute__((unused)) void *data)
6819 {
6820 	int ret;
6821 	uint16_t rx_mode = 0;
6822 	struct cmd_set_vf_rxmode *res = parsed_result;
6823 
6824 	int is_on = (strcmp(res->on, "on") == 0) ? 1 : 0;
6825 	if (!strcmp(res->what,"rxmode")) {
6826 		if (!strcmp(res->mode, "AUPE"))
6827 			rx_mode |= ETH_VMDQ_ACCEPT_UNTAG;
6828 		else if (!strcmp(res->mode, "ROPE"))
6829 			rx_mode |= ETH_VMDQ_ACCEPT_HASH_UC;
6830 		else if (!strcmp(res->mode, "BAM"))
6831 			rx_mode |= ETH_VMDQ_ACCEPT_BROADCAST;
6832 		else if (!strncmp(res->mode, "MPE",3))
6833 			rx_mode |= ETH_VMDQ_ACCEPT_MULTICAST;
6834 	}
6835 
6836 	ret = rte_pmd_ixgbe_set_vf_rxmode(res->port_id, res->vf_id, rx_mode, (uint8_t)is_on);
6837 	if (ret < 0)
6838 		printf("bad VF receive mode parameter, return code = %d \n",
6839 		ret);
6840 }
6841 
6842 cmdline_parse_token_string_t cmd_set_vf_rxmode_set =
6843 	TOKEN_STRING_INITIALIZER(struct cmd_set_vf_rxmode,
6844 				 set, "set");
6845 cmdline_parse_token_string_t cmd_set_vf_rxmode_port =
6846 	TOKEN_STRING_INITIALIZER(struct cmd_set_vf_rxmode,
6847 				 port, "port");
6848 cmdline_parse_token_num_t cmd_set_vf_rxmode_portid =
6849 	TOKEN_NUM_INITIALIZER(struct cmd_set_vf_rxmode,
6850 			      port_id, UINT8);
6851 cmdline_parse_token_string_t cmd_set_vf_rxmode_vf =
6852 	TOKEN_STRING_INITIALIZER(struct cmd_set_vf_rxmode,
6853 				 vf, "vf");
6854 cmdline_parse_token_num_t cmd_set_vf_rxmode_vfid =
6855 	TOKEN_NUM_INITIALIZER(struct cmd_set_vf_rxmode,
6856 			      vf_id, UINT8);
6857 cmdline_parse_token_string_t cmd_set_vf_rxmode_what =
6858 	TOKEN_STRING_INITIALIZER(struct cmd_set_vf_rxmode,
6859 				 what, "rxmode");
6860 cmdline_parse_token_string_t cmd_set_vf_rxmode_mode =
6861 	TOKEN_STRING_INITIALIZER(struct cmd_set_vf_rxmode,
6862 				 mode, "AUPE#ROPE#BAM#MPE");
6863 cmdline_parse_token_string_t cmd_set_vf_rxmode_on =
6864 	TOKEN_STRING_INITIALIZER(struct cmd_set_vf_rxmode,
6865 				 on, "on#off");
6866 
6867 cmdline_parse_inst_t cmd_set_vf_rxmode = {
6868 	.f = cmd_set_vf_rxmode_parsed,
6869 	.data = NULL,
6870 	.help_str = "set port <port_id> vf <vf_id> rxmode "
6871 		"AUPE|ROPE|BAM|MPE on|off",
6872 	.tokens = {
6873 		(void *)&cmd_set_vf_rxmode_set,
6874 		(void *)&cmd_set_vf_rxmode_port,
6875 		(void *)&cmd_set_vf_rxmode_portid,
6876 		(void *)&cmd_set_vf_rxmode_vf,
6877 		(void *)&cmd_set_vf_rxmode_vfid,
6878 		(void *)&cmd_set_vf_rxmode_what,
6879 		(void *)&cmd_set_vf_rxmode_mode,
6880 		(void *)&cmd_set_vf_rxmode_on,
6881 		NULL,
6882 	},
6883 };
6884 #endif
6885 
6886 /* *** ADD MAC ADDRESS FILTER FOR A VF OF A PORT *** */
6887 struct cmd_vf_mac_addr_result {
6888 	cmdline_fixed_string_t mac_addr_cmd;
6889 	cmdline_fixed_string_t what;
6890 	cmdline_fixed_string_t port;
6891 	uint8_t port_num;
6892 	cmdline_fixed_string_t vf;
6893 	uint8_t vf_num;
6894 	struct ether_addr address;
6895 };
6896 
6897 static void cmd_vf_mac_addr_parsed(void *parsed_result,
6898 		__attribute__((unused)) struct cmdline *cl,
6899 		__attribute__((unused)) void *data)
6900 {
6901 	struct cmd_vf_mac_addr_result *res = parsed_result;
6902 	int ret = 0;
6903 
6904 	if (strcmp(res->what, "add") == 0)
6905 		ret = rte_eth_dev_mac_addr_add(res->port_num,
6906 					&res->address, res->vf_num);
6907 	if(ret < 0)
6908 		printf("vf_mac_addr_cmd error: (%s)\n", strerror(-ret));
6909 
6910 }
6911 
6912 cmdline_parse_token_string_t cmd_vf_mac_addr_cmd =
6913 	TOKEN_STRING_INITIALIZER(struct cmd_vf_mac_addr_result,
6914 				mac_addr_cmd,"mac_addr");
6915 cmdline_parse_token_string_t cmd_vf_mac_addr_what =
6916 	TOKEN_STRING_INITIALIZER(struct cmd_vf_mac_addr_result,
6917 				what,"add");
6918 cmdline_parse_token_string_t cmd_vf_mac_addr_port =
6919 	TOKEN_STRING_INITIALIZER(struct cmd_vf_mac_addr_result,
6920 				port,"port");
6921 cmdline_parse_token_num_t cmd_vf_mac_addr_portnum =
6922 	TOKEN_NUM_INITIALIZER(struct cmd_vf_mac_addr_result,
6923 				port_num, UINT8);
6924 cmdline_parse_token_string_t cmd_vf_mac_addr_vf =
6925 	TOKEN_STRING_INITIALIZER(struct cmd_vf_mac_addr_result,
6926 				vf,"vf");
6927 cmdline_parse_token_num_t cmd_vf_mac_addr_vfnum =
6928 	TOKEN_NUM_INITIALIZER(struct cmd_vf_mac_addr_result,
6929 				vf_num, UINT8);
6930 cmdline_parse_token_etheraddr_t cmd_vf_mac_addr_addr =
6931 	TOKEN_ETHERADDR_INITIALIZER(struct cmd_vf_mac_addr_result,
6932 				address);
6933 
6934 cmdline_parse_inst_t cmd_vf_mac_addr_filter = {
6935 	.f = cmd_vf_mac_addr_parsed,
6936 	.data = (void *)0,
6937 	.help_str = "mac_addr add port <port_id> vf <vf_id> <mac_addr>: "
6938 		"Add MAC address filtering for a VF on port_id",
6939 	.tokens = {
6940 		(void *)&cmd_vf_mac_addr_cmd,
6941 		(void *)&cmd_vf_mac_addr_what,
6942 		(void *)&cmd_vf_mac_addr_port,
6943 		(void *)&cmd_vf_mac_addr_portnum,
6944 		(void *)&cmd_vf_mac_addr_vf,
6945 		(void *)&cmd_vf_mac_addr_vfnum,
6946 		(void *)&cmd_vf_mac_addr_addr,
6947 		NULL,
6948 	},
6949 };
6950 
6951 /* *** ADD/REMOVE A VLAN IDENTIFIER TO/FROM A PORT VLAN RX FILTER *** */
6952 struct cmd_vf_rx_vlan_filter {
6953 	cmdline_fixed_string_t rx_vlan;
6954 	cmdline_fixed_string_t what;
6955 	uint16_t vlan_id;
6956 	cmdline_fixed_string_t port;
6957 	uint8_t port_id;
6958 	cmdline_fixed_string_t vf;
6959 	uint64_t vf_mask;
6960 };
6961 
6962 static void
6963 cmd_vf_rx_vlan_filter_parsed(void *parsed_result,
6964 			  __attribute__((unused)) struct cmdline *cl,
6965 			  __attribute__((unused)) void *data)
6966 {
6967 	struct cmd_vf_rx_vlan_filter *res = parsed_result;
6968 	int ret = -ENOTSUP;
6969 
6970 	__rte_unused int is_add = (strcmp(res->what, "add") == 0) ? 1 : 0;
6971 
6972 #ifdef RTE_LIBRTE_IXGBE_PMD
6973 	if (ret == -ENOTSUP)
6974 		ret = rte_pmd_ixgbe_set_vf_vlan_filter(res->port_id,
6975 				res->vlan_id, res->vf_mask, is_add);
6976 #endif
6977 #ifdef RTE_LIBRTE_I40E_PMD
6978 	if (ret == -ENOTSUP)
6979 		ret = rte_pmd_i40e_set_vf_vlan_filter(res->port_id,
6980 				res->vlan_id, res->vf_mask, is_add);
6981 #endif
6982 #ifdef RTE_LIBRTE_BNXT_PMD
6983 	if (ret == -ENOTSUP)
6984 		ret = rte_pmd_bnxt_set_vf_vlan_filter(res->port_id,
6985 				res->vlan_id, res->vf_mask, is_add);
6986 #endif
6987 
6988 	switch (ret) {
6989 	case 0:
6990 		break;
6991 	case -EINVAL:
6992 		printf("invalid vlan_id %d or vf_mask %"PRIu64"\n",
6993 				res->vlan_id, res->vf_mask);
6994 		break;
6995 	case -ENODEV:
6996 		printf("invalid port_id %d\n", res->port_id);
6997 		break;
6998 	case -ENOTSUP:
6999 		printf("function not implemented or supported\n");
7000 		break;
7001 	default:
7002 		printf("programming error: (%s)\n", strerror(-ret));
7003 	}
7004 }
7005 
7006 cmdline_parse_token_string_t cmd_vf_rx_vlan_filter_rx_vlan =
7007 	TOKEN_STRING_INITIALIZER(struct cmd_vf_rx_vlan_filter,
7008 				 rx_vlan, "rx_vlan");
7009 cmdline_parse_token_string_t cmd_vf_rx_vlan_filter_what =
7010 	TOKEN_STRING_INITIALIZER(struct cmd_vf_rx_vlan_filter,
7011 				 what, "add#rm");
7012 cmdline_parse_token_num_t cmd_vf_rx_vlan_filter_vlanid =
7013 	TOKEN_NUM_INITIALIZER(struct cmd_vf_rx_vlan_filter,
7014 			      vlan_id, UINT16);
7015 cmdline_parse_token_string_t cmd_vf_rx_vlan_filter_port =
7016 	TOKEN_STRING_INITIALIZER(struct cmd_vf_rx_vlan_filter,
7017 				 port, "port");
7018 cmdline_parse_token_num_t cmd_vf_rx_vlan_filter_portid =
7019 	TOKEN_NUM_INITIALIZER(struct cmd_vf_rx_vlan_filter,
7020 			      port_id, UINT8);
7021 cmdline_parse_token_string_t cmd_vf_rx_vlan_filter_vf =
7022 	TOKEN_STRING_INITIALIZER(struct cmd_vf_rx_vlan_filter,
7023 				 vf, "vf");
7024 cmdline_parse_token_num_t cmd_vf_rx_vlan_filter_vf_mask =
7025 	TOKEN_NUM_INITIALIZER(struct cmd_vf_rx_vlan_filter,
7026 			      vf_mask, UINT64);
7027 
7028 cmdline_parse_inst_t cmd_vf_rxvlan_filter = {
7029 	.f = cmd_vf_rx_vlan_filter_parsed,
7030 	.data = NULL,
7031 	.help_str = "rx_vlan add|rm <vlan_id> port <port_id> vf <vf_mask>: "
7032 		"(vf_mask = hexadecimal VF mask)",
7033 	.tokens = {
7034 		(void *)&cmd_vf_rx_vlan_filter_rx_vlan,
7035 		(void *)&cmd_vf_rx_vlan_filter_what,
7036 		(void *)&cmd_vf_rx_vlan_filter_vlanid,
7037 		(void *)&cmd_vf_rx_vlan_filter_port,
7038 		(void *)&cmd_vf_rx_vlan_filter_portid,
7039 		(void *)&cmd_vf_rx_vlan_filter_vf,
7040 		(void *)&cmd_vf_rx_vlan_filter_vf_mask,
7041 		NULL,
7042 	},
7043 };
7044 
7045 /* *** SET RATE LIMIT FOR A QUEUE OF A PORT *** */
7046 struct cmd_queue_rate_limit_result {
7047 	cmdline_fixed_string_t set;
7048 	cmdline_fixed_string_t port;
7049 	uint8_t port_num;
7050 	cmdline_fixed_string_t queue;
7051 	uint8_t queue_num;
7052 	cmdline_fixed_string_t rate;
7053 	uint16_t rate_num;
7054 };
7055 
7056 static void cmd_queue_rate_limit_parsed(void *parsed_result,
7057 		__attribute__((unused)) struct cmdline *cl,
7058 		__attribute__((unused)) void *data)
7059 {
7060 	struct cmd_queue_rate_limit_result *res = parsed_result;
7061 	int ret = 0;
7062 
7063 	if ((strcmp(res->set, "set") == 0) && (strcmp(res->port, "port") == 0)
7064 		&& (strcmp(res->queue, "queue") == 0)
7065 		&& (strcmp(res->rate, "rate") == 0))
7066 		ret = set_queue_rate_limit(res->port_num, res->queue_num,
7067 					res->rate_num);
7068 	if (ret < 0)
7069 		printf("queue_rate_limit_cmd error: (%s)\n", strerror(-ret));
7070 
7071 }
7072 
7073 cmdline_parse_token_string_t cmd_queue_rate_limit_set =
7074 	TOKEN_STRING_INITIALIZER(struct cmd_queue_rate_limit_result,
7075 				set, "set");
7076 cmdline_parse_token_string_t cmd_queue_rate_limit_port =
7077 	TOKEN_STRING_INITIALIZER(struct cmd_queue_rate_limit_result,
7078 				port, "port");
7079 cmdline_parse_token_num_t cmd_queue_rate_limit_portnum =
7080 	TOKEN_NUM_INITIALIZER(struct cmd_queue_rate_limit_result,
7081 				port_num, UINT8);
7082 cmdline_parse_token_string_t cmd_queue_rate_limit_queue =
7083 	TOKEN_STRING_INITIALIZER(struct cmd_queue_rate_limit_result,
7084 				queue, "queue");
7085 cmdline_parse_token_num_t cmd_queue_rate_limit_queuenum =
7086 	TOKEN_NUM_INITIALIZER(struct cmd_queue_rate_limit_result,
7087 				queue_num, UINT8);
7088 cmdline_parse_token_string_t cmd_queue_rate_limit_rate =
7089 	TOKEN_STRING_INITIALIZER(struct cmd_queue_rate_limit_result,
7090 				rate, "rate");
7091 cmdline_parse_token_num_t cmd_queue_rate_limit_ratenum =
7092 	TOKEN_NUM_INITIALIZER(struct cmd_queue_rate_limit_result,
7093 				rate_num, UINT16);
7094 
7095 cmdline_parse_inst_t cmd_queue_rate_limit = {
7096 	.f = cmd_queue_rate_limit_parsed,
7097 	.data = (void *)0,
7098 	.help_str = "set port <port_id> queue <queue_id> rate <rate_value>: "
7099 		"Set rate limit for a queue on port_id",
7100 	.tokens = {
7101 		(void *)&cmd_queue_rate_limit_set,
7102 		(void *)&cmd_queue_rate_limit_port,
7103 		(void *)&cmd_queue_rate_limit_portnum,
7104 		(void *)&cmd_queue_rate_limit_queue,
7105 		(void *)&cmd_queue_rate_limit_queuenum,
7106 		(void *)&cmd_queue_rate_limit_rate,
7107 		(void *)&cmd_queue_rate_limit_ratenum,
7108 		NULL,
7109 	},
7110 };
7111 
7112 /* *** SET RATE LIMIT FOR A VF OF A PORT *** */
7113 struct cmd_vf_rate_limit_result {
7114 	cmdline_fixed_string_t set;
7115 	cmdline_fixed_string_t port;
7116 	uint8_t port_num;
7117 	cmdline_fixed_string_t vf;
7118 	uint8_t vf_num;
7119 	cmdline_fixed_string_t rate;
7120 	uint16_t rate_num;
7121 	cmdline_fixed_string_t q_msk;
7122 	uint64_t q_msk_val;
7123 };
7124 
7125 static void cmd_vf_rate_limit_parsed(void *parsed_result,
7126 		__attribute__((unused)) struct cmdline *cl,
7127 		__attribute__((unused)) void *data)
7128 {
7129 	struct cmd_vf_rate_limit_result *res = parsed_result;
7130 	int ret = 0;
7131 
7132 	if ((strcmp(res->set, "set") == 0) && (strcmp(res->port, "port") == 0)
7133 		&& (strcmp(res->vf, "vf") == 0)
7134 		&& (strcmp(res->rate, "rate") == 0)
7135 		&& (strcmp(res->q_msk, "queue_mask") == 0))
7136 		ret = set_vf_rate_limit(res->port_num, res->vf_num,
7137 					res->rate_num, res->q_msk_val);
7138 	if (ret < 0)
7139 		printf("vf_rate_limit_cmd error: (%s)\n", strerror(-ret));
7140 
7141 }
7142 
7143 cmdline_parse_token_string_t cmd_vf_rate_limit_set =
7144 	TOKEN_STRING_INITIALIZER(struct cmd_vf_rate_limit_result,
7145 				set, "set");
7146 cmdline_parse_token_string_t cmd_vf_rate_limit_port =
7147 	TOKEN_STRING_INITIALIZER(struct cmd_vf_rate_limit_result,
7148 				port, "port");
7149 cmdline_parse_token_num_t cmd_vf_rate_limit_portnum =
7150 	TOKEN_NUM_INITIALIZER(struct cmd_vf_rate_limit_result,
7151 				port_num, UINT8);
7152 cmdline_parse_token_string_t cmd_vf_rate_limit_vf =
7153 	TOKEN_STRING_INITIALIZER(struct cmd_vf_rate_limit_result,
7154 				vf, "vf");
7155 cmdline_parse_token_num_t cmd_vf_rate_limit_vfnum =
7156 	TOKEN_NUM_INITIALIZER(struct cmd_vf_rate_limit_result,
7157 				vf_num, UINT8);
7158 cmdline_parse_token_string_t cmd_vf_rate_limit_rate =
7159 	TOKEN_STRING_INITIALIZER(struct cmd_vf_rate_limit_result,
7160 				rate, "rate");
7161 cmdline_parse_token_num_t cmd_vf_rate_limit_ratenum =
7162 	TOKEN_NUM_INITIALIZER(struct cmd_vf_rate_limit_result,
7163 				rate_num, UINT16);
7164 cmdline_parse_token_string_t cmd_vf_rate_limit_q_msk =
7165 	TOKEN_STRING_INITIALIZER(struct cmd_vf_rate_limit_result,
7166 				q_msk, "queue_mask");
7167 cmdline_parse_token_num_t cmd_vf_rate_limit_q_msk_val =
7168 	TOKEN_NUM_INITIALIZER(struct cmd_vf_rate_limit_result,
7169 				q_msk_val, UINT64);
7170 
7171 cmdline_parse_inst_t cmd_vf_rate_limit = {
7172 	.f = cmd_vf_rate_limit_parsed,
7173 	.data = (void *)0,
7174 	.help_str = "set port <port_id> vf <vf_id> rate <rate_value> "
7175 		"queue_mask <queue_mask_value>: "
7176 		"Set rate limit for queues of VF on port_id",
7177 	.tokens = {
7178 		(void *)&cmd_vf_rate_limit_set,
7179 		(void *)&cmd_vf_rate_limit_port,
7180 		(void *)&cmd_vf_rate_limit_portnum,
7181 		(void *)&cmd_vf_rate_limit_vf,
7182 		(void *)&cmd_vf_rate_limit_vfnum,
7183 		(void *)&cmd_vf_rate_limit_rate,
7184 		(void *)&cmd_vf_rate_limit_ratenum,
7185 		(void *)&cmd_vf_rate_limit_q_msk,
7186 		(void *)&cmd_vf_rate_limit_q_msk_val,
7187 		NULL,
7188 	},
7189 };
7190 
7191 /* *** ADD TUNNEL FILTER OF A PORT *** */
7192 struct cmd_tunnel_filter_result {
7193 	cmdline_fixed_string_t cmd;
7194 	cmdline_fixed_string_t what;
7195 	uint8_t port_id;
7196 	struct ether_addr outer_mac;
7197 	struct ether_addr inner_mac;
7198 	cmdline_ipaddr_t ip_value;
7199 	uint16_t inner_vlan;
7200 	cmdline_fixed_string_t tunnel_type;
7201 	cmdline_fixed_string_t filter_type;
7202 	uint32_t tenant_id;
7203 	uint16_t queue_num;
7204 };
7205 
7206 static void
7207 cmd_tunnel_filter_parsed(void *parsed_result,
7208 			  __attribute__((unused)) struct cmdline *cl,
7209 			  __attribute__((unused)) void *data)
7210 {
7211 	struct cmd_tunnel_filter_result *res = parsed_result;
7212 	struct rte_eth_tunnel_filter_conf tunnel_filter_conf;
7213 	int ret = 0;
7214 
7215 	memset(&tunnel_filter_conf, 0, sizeof(tunnel_filter_conf));
7216 
7217 	ether_addr_copy(&res->outer_mac, &tunnel_filter_conf.outer_mac);
7218 	ether_addr_copy(&res->inner_mac, &tunnel_filter_conf.inner_mac);
7219 	tunnel_filter_conf.inner_vlan = res->inner_vlan;
7220 
7221 	if (res->ip_value.family == AF_INET) {
7222 		tunnel_filter_conf.ip_addr.ipv4_addr =
7223 			res->ip_value.addr.ipv4.s_addr;
7224 		tunnel_filter_conf.ip_type = RTE_TUNNEL_IPTYPE_IPV4;
7225 	} else {
7226 		memcpy(&(tunnel_filter_conf.ip_addr.ipv6_addr),
7227 			&(res->ip_value.addr.ipv6),
7228 			sizeof(struct in6_addr));
7229 		tunnel_filter_conf.ip_type = RTE_TUNNEL_IPTYPE_IPV6;
7230 	}
7231 
7232 	if (!strcmp(res->filter_type, "imac-ivlan"))
7233 		tunnel_filter_conf.filter_type = RTE_TUNNEL_FILTER_IMAC_IVLAN;
7234 	else if (!strcmp(res->filter_type, "imac-ivlan-tenid"))
7235 		tunnel_filter_conf.filter_type =
7236 			RTE_TUNNEL_FILTER_IMAC_IVLAN_TENID;
7237 	else if (!strcmp(res->filter_type, "imac-tenid"))
7238 		tunnel_filter_conf.filter_type = RTE_TUNNEL_FILTER_IMAC_TENID;
7239 	else if (!strcmp(res->filter_type, "imac"))
7240 		tunnel_filter_conf.filter_type = ETH_TUNNEL_FILTER_IMAC;
7241 	else if (!strcmp(res->filter_type, "omac-imac-tenid"))
7242 		tunnel_filter_conf.filter_type =
7243 			RTE_TUNNEL_FILTER_OMAC_TENID_IMAC;
7244 	else if (!strcmp(res->filter_type, "oip"))
7245 		tunnel_filter_conf.filter_type = ETH_TUNNEL_FILTER_OIP;
7246 	else if (!strcmp(res->filter_type, "iip"))
7247 		tunnel_filter_conf.filter_type = ETH_TUNNEL_FILTER_IIP;
7248 	else {
7249 		printf("The filter type is not supported");
7250 		return;
7251 	}
7252 
7253 	if (!strcmp(res->tunnel_type, "vxlan"))
7254 		tunnel_filter_conf.tunnel_type = RTE_TUNNEL_TYPE_VXLAN;
7255 	else if (!strcmp(res->tunnel_type, "nvgre"))
7256 		tunnel_filter_conf.tunnel_type = RTE_TUNNEL_TYPE_NVGRE;
7257 	else if (!strcmp(res->tunnel_type, "ipingre"))
7258 		tunnel_filter_conf.tunnel_type = RTE_TUNNEL_TYPE_IP_IN_GRE;
7259 	else {
7260 		printf("The tunnel type %s not supported.\n", res->tunnel_type);
7261 		return;
7262 	}
7263 
7264 	tunnel_filter_conf.tenant_id = res->tenant_id;
7265 	tunnel_filter_conf.queue_id = res->queue_num;
7266 	if (!strcmp(res->what, "add"))
7267 		ret = rte_eth_dev_filter_ctrl(res->port_id,
7268 					RTE_ETH_FILTER_TUNNEL,
7269 					RTE_ETH_FILTER_ADD,
7270 					&tunnel_filter_conf);
7271 	else
7272 		ret = rte_eth_dev_filter_ctrl(res->port_id,
7273 					RTE_ETH_FILTER_TUNNEL,
7274 					RTE_ETH_FILTER_DELETE,
7275 					&tunnel_filter_conf);
7276 	if (ret < 0)
7277 		printf("cmd_tunnel_filter_parsed error: (%s)\n",
7278 				strerror(-ret));
7279 
7280 }
7281 cmdline_parse_token_string_t cmd_tunnel_filter_cmd =
7282 	TOKEN_STRING_INITIALIZER(struct cmd_tunnel_filter_result,
7283 	cmd, "tunnel_filter");
7284 cmdline_parse_token_string_t cmd_tunnel_filter_what =
7285 	TOKEN_STRING_INITIALIZER(struct cmd_tunnel_filter_result,
7286 	what, "add#rm");
7287 cmdline_parse_token_num_t cmd_tunnel_filter_port_id =
7288 	TOKEN_NUM_INITIALIZER(struct cmd_tunnel_filter_result,
7289 	port_id, UINT8);
7290 cmdline_parse_token_etheraddr_t cmd_tunnel_filter_outer_mac =
7291 	TOKEN_ETHERADDR_INITIALIZER(struct cmd_tunnel_filter_result,
7292 	outer_mac);
7293 cmdline_parse_token_etheraddr_t cmd_tunnel_filter_inner_mac =
7294 	TOKEN_ETHERADDR_INITIALIZER(struct cmd_tunnel_filter_result,
7295 	inner_mac);
7296 cmdline_parse_token_num_t cmd_tunnel_filter_innner_vlan =
7297 	TOKEN_NUM_INITIALIZER(struct cmd_tunnel_filter_result,
7298 	inner_vlan, UINT16);
7299 cmdline_parse_token_ipaddr_t cmd_tunnel_filter_ip_value =
7300 	TOKEN_IPADDR_INITIALIZER(struct cmd_tunnel_filter_result,
7301 	ip_value);
7302 cmdline_parse_token_string_t cmd_tunnel_filter_tunnel_type =
7303 	TOKEN_STRING_INITIALIZER(struct cmd_tunnel_filter_result,
7304 	tunnel_type, "vxlan#nvgre#ipingre");
7305 
7306 cmdline_parse_token_string_t cmd_tunnel_filter_filter_type =
7307 	TOKEN_STRING_INITIALIZER(struct cmd_tunnel_filter_result,
7308 	filter_type, "oip#iip#imac-ivlan#imac-ivlan-tenid#imac-tenid#"
7309 		"imac#omac-imac-tenid");
7310 cmdline_parse_token_num_t cmd_tunnel_filter_tenant_id =
7311 	TOKEN_NUM_INITIALIZER(struct cmd_tunnel_filter_result,
7312 	tenant_id, UINT32);
7313 cmdline_parse_token_num_t cmd_tunnel_filter_queue_num =
7314 	TOKEN_NUM_INITIALIZER(struct cmd_tunnel_filter_result,
7315 	queue_num, UINT16);
7316 
7317 cmdline_parse_inst_t cmd_tunnel_filter = {
7318 	.f = cmd_tunnel_filter_parsed,
7319 	.data = (void *)0,
7320 	.help_str = "tunnel_filter add|rm <port_id> <outer_mac> <inner_mac> "
7321 		"<ip> <inner_vlan> vxlan|nvgre|ipingre oip|iip|imac-ivlan|"
7322 		"imac-ivlan-tenid|imac-tenid|imac|omac-imac-tenid <tenant_id> "
7323 		"<queue_id>: Add/Rm tunnel filter of a port",
7324 	.tokens = {
7325 		(void *)&cmd_tunnel_filter_cmd,
7326 		(void *)&cmd_tunnel_filter_what,
7327 		(void *)&cmd_tunnel_filter_port_id,
7328 		(void *)&cmd_tunnel_filter_outer_mac,
7329 		(void *)&cmd_tunnel_filter_inner_mac,
7330 		(void *)&cmd_tunnel_filter_ip_value,
7331 		(void *)&cmd_tunnel_filter_innner_vlan,
7332 		(void *)&cmd_tunnel_filter_tunnel_type,
7333 		(void *)&cmd_tunnel_filter_filter_type,
7334 		(void *)&cmd_tunnel_filter_tenant_id,
7335 		(void *)&cmd_tunnel_filter_queue_num,
7336 		NULL,
7337 	},
7338 };
7339 
7340 /* *** CONFIGURE TUNNEL UDP PORT *** */
7341 struct cmd_tunnel_udp_config {
7342 	cmdline_fixed_string_t cmd;
7343 	cmdline_fixed_string_t what;
7344 	uint16_t udp_port;
7345 	uint8_t port_id;
7346 };
7347 
7348 static void
7349 cmd_tunnel_udp_config_parsed(void *parsed_result,
7350 			  __attribute__((unused)) struct cmdline *cl,
7351 			  __attribute__((unused)) void *data)
7352 {
7353 	struct cmd_tunnel_udp_config *res = parsed_result;
7354 	struct rte_eth_udp_tunnel tunnel_udp;
7355 	int ret;
7356 
7357 	tunnel_udp.udp_port = res->udp_port;
7358 
7359 	if (!strcmp(res->cmd, "rx_vxlan_port"))
7360 		tunnel_udp.prot_type = RTE_TUNNEL_TYPE_VXLAN;
7361 
7362 	if (!strcmp(res->what, "add"))
7363 		ret = rte_eth_dev_udp_tunnel_port_add(res->port_id,
7364 						      &tunnel_udp);
7365 	else
7366 		ret = rte_eth_dev_udp_tunnel_port_delete(res->port_id,
7367 							 &tunnel_udp);
7368 
7369 	if (ret < 0)
7370 		printf("udp tunneling add error: (%s)\n", strerror(-ret));
7371 }
7372 
7373 cmdline_parse_token_string_t cmd_tunnel_udp_config_cmd =
7374 	TOKEN_STRING_INITIALIZER(struct cmd_tunnel_udp_config,
7375 				cmd, "rx_vxlan_port");
7376 cmdline_parse_token_string_t cmd_tunnel_udp_config_what =
7377 	TOKEN_STRING_INITIALIZER(struct cmd_tunnel_udp_config,
7378 				what, "add#rm");
7379 cmdline_parse_token_num_t cmd_tunnel_udp_config_udp_port =
7380 	TOKEN_NUM_INITIALIZER(struct cmd_tunnel_udp_config,
7381 				udp_port, UINT16);
7382 cmdline_parse_token_num_t cmd_tunnel_udp_config_port_id =
7383 	TOKEN_NUM_INITIALIZER(struct cmd_tunnel_udp_config,
7384 				port_id, UINT8);
7385 
7386 cmdline_parse_inst_t cmd_tunnel_udp_config = {
7387 	.f = cmd_tunnel_udp_config_parsed,
7388 	.data = (void *)0,
7389 	.help_str = "rx_vxlan_port add|rm <udp_port> <port_id>: "
7390 		"Add/Remove a tunneling UDP port filter",
7391 	.tokens = {
7392 		(void *)&cmd_tunnel_udp_config_cmd,
7393 		(void *)&cmd_tunnel_udp_config_what,
7394 		(void *)&cmd_tunnel_udp_config_udp_port,
7395 		(void *)&cmd_tunnel_udp_config_port_id,
7396 		NULL,
7397 	},
7398 };
7399 
7400 /* *** GLOBAL CONFIG *** */
7401 struct cmd_global_config_result {
7402 	cmdline_fixed_string_t cmd;
7403 	uint8_t port_id;
7404 	cmdline_fixed_string_t cfg_type;
7405 	uint8_t len;
7406 };
7407 
7408 static void
7409 cmd_global_config_parsed(void *parsed_result,
7410 			 __attribute__((unused)) struct cmdline *cl,
7411 			 __attribute__((unused)) void *data)
7412 {
7413 	struct cmd_global_config_result *res = parsed_result;
7414 	struct rte_eth_global_cfg conf;
7415 	int ret;
7416 
7417 	memset(&conf, 0, sizeof(conf));
7418 	conf.cfg_type = RTE_ETH_GLOBAL_CFG_TYPE_GRE_KEY_LEN;
7419 	conf.cfg.gre_key_len = res->len;
7420 	ret = rte_eth_dev_filter_ctrl(res->port_id, RTE_ETH_FILTER_NONE,
7421 				      RTE_ETH_FILTER_SET, &conf);
7422 	if (ret != 0)
7423 		printf("Global config error\n");
7424 }
7425 
7426 cmdline_parse_token_string_t cmd_global_config_cmd =
7427 	TOKEN_STRING_INITIALIZER(struct cmd_global_config_result, cmd,
7428 		"global_config");
7429 cmdline_parse_token_num_t cmd_global_config_port_id =
7430 	TOKEN_NUM_INITIALIZER(struct cmd_global_config_result, port_id, UINT8);
7431 cmdline_parse_token_string_t cmd_global_config_type =
7432 	TOKEN_STRING_INITIALIZER(struct cmd_global_config_result,
7433 		cfg_type, "gre-key-len");
7434 cmdline_parse_token_num_t cmd_global_config_gre_key_len =
7435 	TOKEN_NUM_INITIALIZER(struct cmd_global_config_result,
7436 		len, UINT8);
7437 
7438 cmdline_parse_inst_t cmd_global_config = {
7439 	.f = cmd_global_config_parsed,
7440 	.data = (void *)NULL,
7441 	.help_str = "global_config <port_id> gre-key-len <key_len>",
7442 	.tokens = {
7443 		(void *)&cmd_global_config_cmd,
7444 		(void *)&cmd_global_config_port_id,
7445 		(void *)&cmd_global_config_type,
7446 		(void *)&cmd_global_config_gre_key_len,
7447 		NULL,
7448 	},
7449 };
7450 
7451 /* *** CONFIGURE VM MIRROR VLAN/POOL RULE *** */
7452 struct cmd_set_mirror_mask_result {
7453 	cmdline_fixed_string_t set;
7454 	cmdline_fixed_string_t port;
7455 	uint8_t port_id;
7456 	cmdline_fixed_string_t mirror;
7457 	uint8_t rule_id;
7458 	cmdline_fixed_string_t what;
7459 	cmdline_fixed_string_t value;
7460 	cmdline_fixed_string_t dstpool;
7461 	uint8_t dstpool_id;
7462 	cmdline_fixed_string_t on;
7463 };
7464 
7465 cmdline_parse_token_string_t cmd_mirror_mask_set =
7466 	TOKEN_STRING_INITIALIZER(struct cmd_set_mirror_mask_result,
7467 				set, "set");
7468 cmdline_parse_token_string_t cmd_mirror_mask_port =
7469 	TOKEN_STRING_INITIALIZER(struct cmd_set_mirror_mask_result,
7470 				port, "port");
7471 cmdline_parse_token_num_t cmd_mirror_mask_portid =
7472 	TOKEN_NUM_INITIALIZER(struct cmd_set_mirror_mask_result,
7473 				port_id, UINT8);
7474 cmdline_parse_token_string_t cmd_mirror_mask_mirror =
7475 	TOKEN_STRING_INITIALIZER(struct cmd_set_mirror_mask_result,
7476 				mirror, "mirror-rule");
7477 cmdline_parse_token_num_t cmd_mirror_mask_ruleid =
7478 	TOKEN_NUM_INITIALIZER(struct cmd_set_mirror_mask_result,
7479 				rule_id, UINT8);
7480 cmdline_parse_token_string_t cmd_mirror_mask_what =
7481 	TOKEN_STRING_INITIALIZER(struct cmd_set_mirror_mask_result,
7482 				what, "pool-mirror-up#pool-mirror-down"
7483 				      "#vlan-mirror");
7484 cmdline_parse_token_string_t cmd_mirror_mask_value =
7485 	TOKEN_STRING_INITIALIZER(struct cmd_set_mirror_mask_result,
7486 				value, NULL);
7487 cmdline_parse_token_string_t cmd_mirror_mask_dstpool =
7488 	TOKEN_STRING_INITIALIZER(struct cmd_set_mirror_mask_result,
7489 				dstpool, "dst-pool");
7490 cmdline_parse_token_num_t cmd_mirror_mask_poolid =
7491 	TOKEN_NUM_INITIALIZER(struct cmd_set_mirror_mask_result,
7492 				dstpool_id, UINT8);
7493 cmdline_parse_token_string_t cmd_mirror_mask_on =
7494 	TOKEN_STRING_INITIALIZER(struct cmd_set_mirror_mask_result,
7495 				on, "on#off");
7496 
7497 static void
7498 cmd_set_mirror_mask_parsed(void *parsed_result,
7499 		       __attribute__((unused)) struct cmdline *cl,
7500 		       __attribute__((unused)) void *data)
7501 {
7502 	int ret,nb_item,i;
7503 	struct cmd_set_mirror_mask_result *res = parsed_result;
7504 	struct rte_eth_mirror_conf mr_conf;
7505 
7506 	memset(&mr_conf, 0, sizeof(struct rte_eth_mirror_conf));
7507 
7508 	unsigned int vlan_list[ETH_MIRROR_MAX_VLANS];
7509 
7510 	mr_conf.dst_pool = res->dstpool_id;
7511 
7512 	if (!strcmp(res->what, "pool-mirror-up")) {
7513 		mr_conf.pool_mask = strtoull(res->value, NULL, 16);
7514 		mr_conf.rule_type = ETH_MIRROR_VIRTUAL_POOL_UP;
7515 	} else if (!strcmp(res->what, "pool-mirror-down")) {
7516 		mr_conf.pool_mask = strtoull(res->value, NULL, 16);
7517 		mr_conf.rule_type = ETH_MIRROR_VIRTUAL_POOL_DOWN;
7518 	} else if (!strcmp(res->what, "vlan-mirror")) {
7519 		mr_conf.rule_type = ETH_MIRROR_VLAN;
7520 		nb_item = parse_item_list(res->value, "vlan",
7521 				ETH_MIRROR_MAX_VLANS, vlan_list, 1);
7522 		if (nb_item <= 0)
7523 			return;
7524 
7525 		for (i = 0; i < nb_item; i++) {
7526 			if (vlan_list[i] > ETHER_MAX_VLAN_ID) {
7527 				printf("Invalid vlan_id: must be < 4096\n");
7528 				return;
7529 			}
7530 
7531 			mr_conf.vlan.vlan_id[i] = (uint16_t)vlan_list[i];
7532 			mr_conf.vlan.vlan_mask |= 1ULL << i;
7533 		}
7534 	}
7535 
7536 	if (!strcmp(res->on, "on"))
7537 		ret = rte_eth_mirror_rule_set(res->port_id, &mr_conf,
7538 						res->rule_id, 1);
7539 	else
7540 		ret = rte_eth_mirror_rule_set(res->port_id, &mr_conf,
7541 						res->rule_id, 0);
7542 	if (ret < 0)
7543 		printf("mirror rule add error: (%s)\n", strerror(-ret));
7544 }
7545 
7546 cmdline_parse_inst_t cmd_set_mirror_mask = {
7547 		.f = cmd_set_mirror_mask_parsed,
7548 		.data = NULL,
7549 		.help_str = "set port <port_id> mirror-rule <rule_id> "
7550 			"pool-mirror-up|pool-mirror-down|vlan-mirror "
7551 			"<pool_mask|vlan_id[,vlan_id]*> dst-pool <pool_id> on|off",
7552 		.tokens = {
7553 			(void *)&cmd_mirror_mask_set,
7554 			(void *)&cmd_mirror_mask_port,
7555 			(void *)&cmd_mirror_mask_portid,
7556 			(void *)&cmd_mirror_mask_mirror,
7557 			(void *)&cmd_mirror_mask_ruleid,
7558 			(void *)&cmd_mirror_mask_what,
7559 			(void *)&cmd_mirror_mask_value,
7560 			(void *)&cmd_mirror_mask_dstpool,
7561 			(void *)&cmd_mirror_mask_poolid,
7562 			(void *)&cmd_mirror_mask_on,
7563 			NULL,
7564 		},
7565 };
7566 
7567 /* *** CONFIGURE VM MIRROR UPLINK/DOWNLINK RULE *** */
7568 struct cmd_set_mirror_link_result {
7569 	cmdline_fixed_string_t set;
7570 	cmdline_fixed_string_t port;
7571 	uint8_t port_id;
7572 	cmdline_fixed_string_t mirror;
7573 	uint8_t rule_id;
7574 	cmdline_fixed_string_t what;
7575 	cmdline_fixed_string_t dstpool;
7576 	uint8_t dstpool_id;
7577 	cmdline_fixed_string_t on;
7578 };
7579 
7580 cmdline_parse_token_string_t cmd_mirror_link_set =
7581 	TOKEN_STRING_INITIALIZER(struct cmd_set_mirror_link_result,
7582 				 set, "set");
7583 cmdline_parse_token_string_t cmd_mirror_link_port =
7584 	TOKEN_STRING_INITIALIZER(struct cmd_set_mirror_link_result,
7585 				port, "port");
7586 cmdline_parse_token_num_t cmd_mirror_link_portid =
7587 	TOKEN_NUM_INITIALIZER(struct cmd_set_mirror_link_result,
7588 				port_id, UINT8);
7589 cmdline_parse_token_string_t cmd_mirror_link_mirror =
7590 	TOKEN_STRING_INITIALIZER(struct cmd_set_mirror_link_result,
7591 				mirror, "mirror-rule");
7592 cmdline_parse_token_num_t cmd_mirror_link_ruleid =
7593 	TOKEN_NUM_INITIALIZER(struct cmd_set_mirror_link_result,
7594 			    rule_id, UINT8);
7595 cmdline_parse_token_string_t cmd_mirror_link_what =
7596 	TOKEN_STRING_INITIALIZER(struct cmd_set_mirror_link_result,
7597 				what, "uplink-mirror#downlink-mirror");
7598 cmdline_parse_token_string_t cmd_mirror_link_dstpool =
7599 	TOKEN_STRING_INITIALIZER(struct cmd_set_mirror_link_result,
7600 				dstpool, "dst-pool");
7601 cmdline_parse_token_num_t cmd_mirror_link_poolid =
7602 	TOKEN_NUM_INITIALIZER(struct cmd_set_mirror_link_result,
7603 				dstpool_id, UINT8);
7604 cmdline_parse_token_string_t cmd_mirror_link_on =
7605 	TOKEN_STRING_INITIALIZER(struct cmd_set_mirror_link_result,
7606 				on, "on#off");
7607 
7608 static void
7609 cmd_set_mirror_link_parsed(void *parsed_result,
7610 		       __attribute__((unused)) struct cmdline *cl,
7611 		       __attribute__((unused)) void *data)
7612 {
7613 	int ret;
7614 	struct cmd_set_mirror_link_result *res = parsed_result;
7615 	struct rte_eth_mirror_conf mr_conf;
7616 
7617 	memset(&mr_conf, 0, sizeof(struct rte_eth_mirror_conf));
7618 	if (!strcmp(res->what, "uplink-mirror"))
7619 		mr_conf.rule_type = ETH_MIRROR_UPLINK_PORT;
7620 	else
7621 		mr_conf.rule_type = ETH_MIRROR_DOWNLINK_PORT;
7622 
7623 	mr_conf.dst_pool = res->dstpool_id;
7624 
7625 	if (!strcmp(res->on, "on"))
7626 		ret = rte_eth_mirror_rule_set(res->port_id, &mr_conf,
7627 						res->rule_id, 1);
7628 	else
7629 		ret = rte_eth_mirror_rule_set(res->port_id, &mr_conf,
7630 						res->rule_id, 0);
7631 
7632 	/* check the return value and print it if is < 0 */
7633 	if (ret < 0)
7634 		printf("mirror rule add error: (%s)\n", strerror(-ret));
7635 
7636 }
7637 
7638 cmdline_parse_inst_t cmd_set_mirror_link = {
7639 		.f = cmd_set_mirror_link_parsed,
7640 		.data = NULL,
7641 		.help_str = "set port <port_id> mirror-rule <rule_id> "
7642 			"uplink-mirror|downlink-mirror dst-pool <pool_id> on|off",
7643 		.tokens = {
7644 			(void *)&cmd_mirror_link_set,
7645 			(void *)&cmd_mirror_link_port,
7646 			(void *)&cmd_mirror_link_portid,
7647 			(void *)&cmd_mirror_link_mirror,
7648 			(void *)&cmd_mirror_link_ruleid,
7649 			(void *)&cmd_mirror_link_what,
7650 			(void *)&cmd_mirror_link_dstpool,
7651 			(void *)&cmd_mirror_link_poolid,
7652 			(void *)&cmd_mirror_link_on,
7653 			NULL,
7654 		},
7655 };
7656 
7657 /* *** RESET VM MIRROR RULE *** */
7658 struct cmd_rm_mirror_rule_result {
7659 	cmdline_fixed_string_t reset;
7660 	cmdline_fixed_string_t port;
7661 	uint8_t port_id;
7662 	cmdline_fixed_string_t mirror;
7663 	uint8_t rule_id;
7664 };
7665 
7666 cmdline_parse_token_string_t cmd_rm_mirror_rule_reset =
7667 	TOKEN_STRING_INITIALIZER(struct cmd_rm_mirror_rule_result,
7668 				 reset, "reset");
7669 cmdline_parse_token_string_t cmd_rm_mirror_rule_port =
7670 	TOKEN_STRING_INITIALIZER(struct cmd_rm_mirror_rule_result,
7671 				port, "port");
7672 cmdline_parse_token_num_t cmd_rm_mirror_rule_portid =
7673 	TOKEN_NUM_INITIALIZER(struct cmd_rm_mirror_rule_result,
7674 				port_id, UINT8);
7675 cmdline_parse_token_string_t cmd_rm_mirror_rule_mirror =
7676 	TOKEN_STRING_INITIALIZER(struct cmd_rm_mirror_rule_result,
7677 				mirror, "mirror-rule");
7678 cmdline_parse_token_num_t cmd_rm_mirror_rule_ruleid =
7679 	TOKEN_NUM_INITIALIZER(struct cmd_rm_mirror_rule_result,
7680 				rule_id, UINT8);
7681 
7682 static void
7683 cmd_reset_mirror_rule_parsed(void *parsed_result,
7684 		       __attribute__((unused)) struct cmdline *cl,
7685 		       __attribute__((unused)) void *data)
7686 {
7687 	int ret;
7688 	struct cmd_set_mirror_link_result *res = parsed_result;
7689         /* check rule_id */
7690 	ret = rte_eth_mirror_rule_reset(res->port_id,res->rule_id);
7691 	if(ret < 0)
7692 		printf("mirror rule remove error: (%s)\n", strerror(-ret));
7693 }
7694 
7695 cmdline_parse_inst_t cmd_reset_mirror_rule = {
7696 		.f = cmd_reset_mirror_rule_parsed,
7697 		.data = NULL,
7698 		.help_str = "reset port <port_id> mirror-rule <rule_id>",
7699 		.tokens = {
7700 			(void *)&cmd_rm_mirror_rule_reset,
7701 			(void *)&cmd_rm_mirror_rule_port,
7702 			(void *)&cmd_rm_mirror_rule_portid,
7703 			(void *)&cmd_rm_mirror_rule_mirror,
7704 			(void *)&cmd_rm_mirror_rule_ruleid,
7705 			NULL,
7706 		},
7707 };
7708 
7709 /* ******************************************************************************** */
7710 
7711 struct cmd_dump_result {
7712 	cmdline_fixed_string_t dump;
7713 };
7714 
7715 static void
7716 dump_struct_sizes(void)
7717 {
7718 #define DUMP_SIZE(t) printf("sizeof(" #t ") = %u\n", (unsigned)sizeof(t));
7719 	DUMP_SIZE(struct rte_mbuf);
7720 	DUMP_SIZE(struct rte_mempool);
7721 	DUMP_SIZE(struct rte_ring);
7722 #undef DUMP_SIZE
7723 }
7724 
7725 static void cmd_dump_parsed(void *parsed_result,
7726 			    __attribute__((unused)) struct cmdline *cl,
7727 			    __attribute__((unused)) void *data)
7728 {
7729 	struct cmd_dump_result *res = parsed_result;
7730 
7731 	if (!strcmp(res->dump, "dump_physmem"))
7732 		rte_dump_physmem_layout(stdout);
7733 	else if (!strcmp(res->dump, "dump_memzone"))
7734 		rte_memzone_dump(stdout);
7735 	else if (!strcmp(res->dump, "dump_struct_sizes"))
7736 		dump_struct_sizes();
7737 	else if (!strcmp(res->dump, "dump_ring"))
7738 		rte_ring_list_dump(stdout);
7739 	else if (!strcmp(res->dump, "dump_mempool"))
7740 		rte_mempool_list_dump(stdout);
7741 	else if (!strcmp(res->dump, "dump_devargs"))
7742 		rte_eal_devargs_dump(stdout);
7743 	else if (!strcmp(res->dump, "dump_log_types"))
7744 		rte_log_dump(stdout);
7745 }
7746 
7747 cmdline_parse_token_string_t cmd_dump_dump =
7748 	TOKEN_STRING_INITIALIZER(struct cmd_dump_result, dump,
7749 		"dump_physmem#"
7750 		"dump_memzone#"
7751 		"dump_struct_sizes#"
7752 		"dump_ring#"
7753 		"dump_mempool#"
7754 		"dump_devargs#"
7755 		"dump_log_types");
7756 
7757 cmdline_parse_inst_t cmd_dump = {
7758 	.f = cmd_dump_parsed,  /* function to call */
7759 	.data = NULL,      /* 2nd arg of func */
7760 	.help_str = "Dump status",
7761 	.tokens = {        /* token list, NULL terminated */
7762 		(void *)&cmd_dump_dump,
7763 		NULL,
7764 	},
7765 };
7766 
7767 /* ******************************************************************************** */
7768 
7769 struct cmd_dump_one_result {
7770 	cmdline_fixed_string_t dump;
7771 	cmdline_fixed_string_t name;
7772 };
7773 
7774 static void cmd_dump_one_parsed(void *parsed_result, struct cmdline *cl,
7775 				__attribute__((unused)) void *data)
7776 {
7777 	struct cmd_dump_one_result *res = parsed_result;
7778 
7779 	if (!strcmp(res->dump, "dump_ring")) {
7780 		struct rte_ring *r;
7781 		r = rte_ring_lookup(res->name);
7782 		if (r == NULL) {
7783 			cmdline_printf(cl, "Cannot find ring\n");
7784 			return;
7785 		}
7786 		rte_ring_dump(stdout, r);
7787 	} else if (!strcmp(res->dump, "dump_mempool")) {
7788 		struct rte_mempool *mp;
7789 		mp = rte_mempool_lookup(res->name);
7790 		if (mp == NULL) {
7791 			cmdline_printf(cl, "Cannot find mempool\n");
7792 			return;
7793 		}
7794 		rte_mempool_dump(stdout, mp);
7795 	}
7796 }
7797 
7798 cmdline_parse_token_string_t cmd_dump_one_dump =
7799 	TOKEN_STRING_INITIALIZER(struct cmd_dump_one_result, dump,
7800 				 "dump_ring#dump_mempool");
7801 
7802 cmdline_parse_token_string_t cmd_dump_one_name =
7803 	TOKEN_STRING_INITIALIZER(struct cmd_dump_one_result, name, NULL);
7804 
7805 cmdline_parse_inst_t cmd_dump_one = {
7806 	.f = cmd_dump_one_parsed,  /* function to call */
7807 	.data = NULL,      /* 2nd arg of func */
7808 	.help_str = "dump_ring|dump_mempool <name>: Dump one ring/mempool",
7809 	.tokens = {        /* token list, NULL terminated */
7810 		(void *)&cmd_dump_one_dump,
7811 		(void *)&cmd_dump_one_name,
7812 		NULL,
7813 	},
7814 };
7815 
7816 /* *** Add/Del syn filter *** */
7817 struct cmd_syn_filter_result {
7818 	cmdline_fixed_string_t filter;
7819 	uint8_t port_id;
7820 	cmdline_fixed_string_t ops;
7821 	cmdline_fixed_string_t priority;
7822 	cmdline_fixed_string_t high;
7823 	cmdline_fixed_string_t queue;
7824 	uint16_t queue_id;
7825 };
7826 
7827 static void
7828 cmd_syn_filter_parsed(void *parsed_result,
7829 			__attribute__((unused)) struct cmdline *cl,
7830 			__attribute__((unused)) void *data)
7831 {
7832 	struct cmd_syn_filter_result *res = parsed_result;
7833 	struct rte_eth_syn_filter syn_filter;
7834 	int ret = 0;
7835 
7836 	ret = rte_eth_dev_filter_supported(res->port_id,
7837 					RTE_ETH_FILTER_SYN);
7838 	if (ret < 0) {
7839 		printf("syn filter is not supported on port %u.\n",
7840 				res->port_id);
7841 		return;
7842 	}
7843 
7844 	memset(&syn_filter, 0, sizeof(syn_filter));
7845 
7846 	if (!strcmp(res->ops, "add")) {
7847 		if (!strcmp(res->high, "high"))
7848 			syn_filter.hig_pri = 1;
7849 		else
7850 			syn_filter.hig_pri = 0;
7851 
7852 		syn_filter.queue = res->queue_id;
7853 		ret = rte_eth_dev_filter_ctrl(res->port_id,
7854 						RTE_ETH_FILTER_SYN,
7855 						RTE_ETH_FILTER_ADD,
7856 						&syn_filter);
7857 	} else
7858 		ret = rte_eth_dev_filter_ctrl(res->port_id,
7859 						RTE_ETH_FILTER_SYN,
7860 						RTE_ETH_FILTER_DELETE,
7861 						&syn_filter);
7862 
7863 	if (ret < 0)
7864 		printf("syn filter programming error: (%s)\n",
7865 				strerror(-ret));
7866 }
7867 
7868 cmdline_parse_token_string_t cmd_syn_filter_filter =
7869 	TOKEN_STRING_INITIALIZER(struct cmd_syn_filter_result,
7870 	filter, "syn_filter");
7871 cmdline_parse_token_num_t cmd_syn_filter_port_id =
7872 	TOKEN_NUM_INITIALIZER(struct cmd_syn_filter_result,
7873 	port_id, UINT8);
7874 cmdline_parse_token_string_t cmd_syn_filter_ops =
7875 	TOKEN_STRING_INITIALIZER(struct cmd_syn_filter_result,
7876 	ops, "add#del");
7877 cmdline_parse_token_string_t cmd_syn_filter_priority =
7878 	TOKEN_STRING_INITIALIZER(struct cmd_syn_filter_result,
7879 				priority, "priority");
7880 cmdline_parse_token_string_t cmd_syn_filter_high =
7881 	TOKEN_STRING_INITIALIZER(struct cmd_syn_filter_result,
7882 				high, "high#low");
7883 cmdline_parse_token_string_t cmd_syn_filter_queue =
7884 	TOKEN_STRING_INITIALIZER(struct cmd_syn_filter_result,
7885 				queue, "queue");
7886 cmdline_parse_token_num_t cmd_syn_filter_queue_id =
7887 	TOKEN_NUM_INITIALIZER(struct cmd_syn_filter_result,
7888 				queue_id, UINT16);
7889 
7890 cmdline_parse_inst_t cmd_syn_filter = {
7891 	.f = cmd_syn_filter_parsed,
7892 	.data = NULL,
7893 	.help_str = "syn_filter <port_id> add|del priority high|low queue "
7894 		"<queue_id>: Add/Delete syn filter",
7895 	.tokens = {
7896 		(void *)&cmd_syn_filter_filter,
7897 		(void *)&cmd_syn_filter_port_id,
7898 		(void *)&cmd_syn_filter_ops,
7899 		(void *)&cmd_syn_filter_priority,
7900 		(void *)&cmd_syn_filter_high,
7901 		(void *)&cmd_syn_filter_queue,
7902 		(void *)&cmd_syn_filter_queue_id,
7903 		NULL,
7904 	},
7905 };
7906 
7907 /* *** ADD/REMOVE A 2tuple FILTER *** */
7908 struct cmd_2tuple_filter_result {
7909 	cmdline_fixed_string_t filter;
7910 	uint8_t  port_id;
7911 	cmdline_fixed_string_t ops;
7912 	cmdline_fixed_string_t dst_port;
7913 	uint16_t dst_port_value;
7914 	cmdline_fixed_string_t protocol;
7915 	uint8_t protocol_value;
7916 	cmdline_fixed_string_t mask;
7917 	uint8_t  mask_value;
7918 	cmdline_fixed_string_t tcp_flags;
7919 	uint8_t tcp_flags_value;
7920 	cmdline_fixed_string_t priority;
7921 	uint8_t  priority_value;
7922 	cmdline_fixed_string_t queue;
7923 	uint16_t  queue_id;
7924 };
7925 
7926 static void
7927 cmd_2tuple_filter_parsed(void *parsed_result,
7928 			__attribute__((unused)) struct cmdline *cl,
7929 			__attribute__((unused)) void *data)
7930 {
7931 	struct rte_eth_ntuple_filter filter;
7932 	struct cmd_2tuple_filter_result *res = parsed_result;
7933 	int ret = 0;
7934 
7935 	ret = rte_eth_dev_filter_supported(res->port_id, RTE_ETH_FILTER_NTUPLE);
7936 	if (ret < 0) {
7937 		printf("ntuple filter is not supported on port %u.\n",
7938 			res->port_id);
7939 		return;
7940 	}
7941 
7942 	memset(&filter, 0, sizeof(struct rte_eth_ntuple_filter));
7943 
7944 	filter.flags = RTE_2TUPLE_FLAGS;
7945 	filter.dst_port_mask = (res->mask_value & 0x02) ? UINT16_MAX : 0;
7946 	filter.proto_mask = (res->mask_value & 0x01) ? UINT8_MAX : 0;
7947 	filter.proto = res->protocol_value;
7948 	filter.priority = res->priority_value;
7949 	if (res->tcp_flags_value != 0 && filter.proto != IPPROTO_TCP) {
7950 		printf("nonzero tcp_flags is only meaningful"
7951 			" when protocol is TCP.\n");
7952 		return;
7953 	}
7954 	if (res->tcp_flags_value > TCP_FLAG_ALL) {
7955 		printf("invalid TCP flags.\n");
7956 		return;
7957 	}
7958 
7959 	if (res->tcp_flags_value != 0) {
7960 		filter.flags |= RTE_NTUPLE_FLAGS_TCP_FLAG;
7961 		filter.tcp_flags = res->tcp_flags_value;
7962 	}
7963 
7964 	/* need convert to big endian. */
7965 	filter.dst_port = rte_cpu_to_be_16(res->dst_port_value);
7966 	filter.queue = res->queue_id;
7967 
7968 	if (!strcmp(res->ops, "add"))
7969 		ret = rte_eth_dev_filter_ctrl(res->port_id,
7970 				RTE_ETH_FILTER_NTUPLE,
7971 				RTE_ETH_FILTER_ADD,
7972 				&filter);
7973 	else
7974 		ret = rte_eth_dev_filter_ctrl(res->port_id,
7975 				RTE_ETH_FILTER_NTUPLE,
7976 				RTE_ETH_FILTER_DELETE,
7977 				&filter);
7978 	if (ret < 0)
7979 		printf("2tuple filter programming error: (%s)\n",
7980 			strerror(-ret));
7981 
7982 }
7983 
7984 cmdline_parse_token_string_t cmd_2tuple_filter_filter =
7985 	TOKEN_STRING_INITIALIZER(struct cmd_2tuple_filter_result,
7986 				 filter, "2tuple_filter");
7987 cmdline_parse_token_num_t cmd_2tuple_filter_port_id =
7988 	TOKEN_NUM_INITIALIZER(struct cmd_2tuple_filter_result,
7989 				port_id, UINT8);
7990 cmdline_parse_token_string_t cmd_2tuple_filter_ops =
7991 	TOKEN_STRING_INITIALIZER(struct cmd_2tuple_filter_result,
7992 				 ops, "add#del");
7993 cmdline_parse_token_string_t cmd_2tuple_filter_dst_port =
7994 	TOKEN_STRING_INITIALIZER(struct cmd_2tuple_filter_result,
7995 				dst_port, "dst_port");
7996 cmdline_parse_token_num_t cmd_2tuple_filter_dst_port_value =
7997 	TOKEN_NUM_INITIALIZER(struct cmd_2tuple_filter_result,
7998 				dst_port_value, UINT16);
7999 cmdline_parse_token_string_t cmd_2tuple_filter_protocol =
8000 	TOKEN_STRING_INITIALIZER(struct cmd_2tuple_filter_result,
8001 				protocol, "protocol");
8002 cmdline_parse_token_num_t cmd_2tuple_filter_protocol_value =
8003 	TOKEN_NUM_INITIALIZER(struct cmd_2tuple_filter_result,
8004 				protocol_value, UINT8);
8005 cmdline_parse_token_string_t cmd_2tuple_filter_mask =
8006 	TOKEN_STRING_INITIALIZER(struct cmd_2tuple_filter_result,
8007 				mask, "mask");
8008 cmdline_parse_token_num_t cmd_2tuple_filter_mask_value =
8009 	TOKEN_NUM_INITIALIZER(struct cmd_2tuple_filter_result,
8010 				mask_value, INT8);
8011 cmdline_parse_token_string_t cmd_2tuple_filter_tcp_flags =
8012 	TOKEN_STRING_INITIALIZER(struct cmd_2tuple_filter_result,
8013 				tcp_flags, "tcp_flags");
8014 cmdline_parse_token_num_t cmd_2tuple_filter_tcp_flags_value =
8015 	TOKEN_NUM_INITIALIZER(struct cmd_2tuple_filter_result,
8016 				tcp_flags_value, UINT8);
8017 cmdline_parse_token_string_t cmd_2tuple_filter_priority =
8018 	TOKEN_STRING_INITIALIZER(struct cmd_2tuple_filter_result,
8019 				priority, "priority");
8020 cmdline_parse_token_num_t cmd_2tuple_filter_priority_value =
8021 	TOKEN_NUM_INITIALIZER(struct cmd_2tuple_filter_result,
8022 				priority_value, UINT8);
8023 cmdline_parse_token_string_t cmd_2tuple_filter_queue =
8024 	TOKEN_STRING_INITIALIZER(struct cmd_2tuple_filter_result,
8025 				queue, "queue");
8026 cmdline_parse_token_num_t cmd_2tuple_filter_queue_id =
8027 	TOKEN_NUM_INITIALIZER(struct cmd_2tuple_filter_result,
8028 				queue_id, UINT16);
8029 
8030 cmdline_parse_inst_t cmd_2tuple_filter = {
8031 	.f = cmd_2tuple_filter_parsed,
8032 	.data = NULL,
8033 	.help_str = "2tuple_filter <port_id> add|del dst_port <value> protocol "
8034 		"<value> mask <value> tcp_flags <value> priority <value> queue "
8035 		"<queue_id>: Add a 2tuple filter",
8036 	.tokens = {
8037 		(void *)&cmd_2tuple_filter_filter,
8038 		(void *)&cmd_2tuple_filter_port_id,
8039 		(void *)&cmd_2tuple_filter_ops,
8040 		(void *)&cmd_2tuple_filter_dst_port,
8041 		(void *)&cmd_2tuple_filter_dst_port_value,
8042 		(void *)&cmd_2tuple_filter_protocol,
8043 		(void *)&cmd_2tuple_filter_protocol_value,
8044 		(void *)&cmd_2tuple_filter_mask,
8045 		(void *)&cmd_2tuple_filter_mask_value,
8046 		(void *)&cmd_2tuple_filter_tcp_flags,
8047 		(void *)&cmd_2tuple_filter_tcp_flags_value,
8048 		(void *)&cmd_2tuple_filter_priority,
8049 		(void *)&cmd_2tuple_filter_priority_value,
8050 		(void *)&cmd_2tuple_filter_queue,
8051 		(void *)&cmd_2tuple_filter_queue_id,
8052 		NULL,
8053 	},
8054 };
8055 
8056 /* *** ADD/REMOVE A 5tuple FILTER *** */
8057 struct cmd_5tuple_filter_result {
8058 	cmdline_fixed_string_t filter;
8059 	uint8_t  port_id;
8060 	cmdline_fixed_string_t ops;
8061 	cmdline_fixed_string_t dst_ip;
8062 	cmdline_ipaddr_t dst_ip_value;
8063 	cmdline_fixed_string_t src_ip;
8064 	cmdline_ipaddr_t src_ip_value;
8065 	cmdline_fixed_string_t dst_port;
8066 	uint16_t dst_port_value;
8067 	cmdline_fixed_string_t src_port;
8068 	uint16_t src_port_value;
8069 	cmdline_fixed_string_t protocol;
8070 	uint8_t protocol_value;
8071 	cmdline_fixed_string_t mask;
8072 	uint8_t  mask_value;
8073 	cmdline_fixed_string_t tcp_flags;
8074 	uint8_t tcp_flags_value;
8075 	cmdline_fixed_string_t priority;
8076 	uint8_t  priority_value;
8077 	cmdline_fixed_string_t queue;
8078 	uint16_t  queue_id;
8079 };
8080 
8081 static void
8082 cmd_5tuple_filter_parsed(void *parsed_result,
8083 			__attribute__((unused)) struct cmdline *cl,
8084 			__attribute__((unused)) void *data)
8085 {
8086 	struct rte_eth_ntuple_filter filter;
8087 	struct cmd_5tuple_filter_result *res = parsed_result;
8088 	int ret = 0;
8089 
8090 	ret = rte_eth_dev_filter_supported(res->port_id, RTE_ETH_FILTER_NTUPLE);
8091 	if (ret < 0) {
8092 		printf("ntuple filter is not supported on port %u.\n",
8093 			res->port_id);
8094 		return;
8095 	}
8096 
8097 	memset(&filter, 0, sizeof(struct rte_eth_ntuple_filter));
8098 
8099 	filter.flags = RTE_5TUPLE_FLAGS;
8100 	filter.dst_ip_mask = (res->mask_value & 0x10) ? UINT32_MAX : 0;
8101 	filter.src_ip_mask = (res->mask_value & 0x08) ? UINT32_MAX : 0;
8102 	filter.dst_port_mask = (res->mask_value & 0x04) ? UINT16_MAX : 0;
8103 	filter.src_port_mask = (res->mask_value & 0x02) ? UINT16_MAX : 0;
8104 	filter.proto_mask = (res->mask_value & 0x01) ? UINT8_MAX : 0;
8105 	filter.proto = res->protocol_value;
8106 	filter.priority = res->priority_value;
8107 	if (res->tcp_flags_value != 0 && filter.proto != IPPROTO_TCP) {
8108 		printf("nonzero tcp_flags is only meaningful"
8109 			" when protocol is TCP.\n");
8110 		return;
8111 	}
8112 	if (res->tcp_flags_value > TCP_FLAG_ALL) {
8113 		printf("invalid TCP flags.\n");
8114 		return;
8115 	}
8116 
8117 	if (res->tcp_flags_value != 0) {
8118 		filter.flags |= RTE_NTUPLE_FLAGS_TCP_FLAG;
8119 		filter.tcp_flags = res->tcp_flags_value;
8120 	}
8121 
8122 	if (res->dst_ip_value.family == AF_INET)
8123 		/* no need to convert, already big endian. */
8124 		filter.dst_ip = res->dst_ip_value.addr.ipv4.s_addr;
8125 	else {
8126 		if (filter.dst_ip_mask == 0) {
8127 			printf("can not support ipv6 involved compare.\n");
8128 			return;
8129 		}
8130 		filter.dst_ip = 0;
8131 	}
8132 
8133 	if (res->src_ip_value.family == AF_INET)
8134 		/* no need to convert, already big endian. */
8135 		filter.src_ip = res->src_ip_value.addr.ipv4.s_addr;
8136 	else {
8137 		if (filter.src_ip_mask == 0) {
8138 			printf("can not support ipv6 involved compare.\n");
8139 			return;
8140 		}
8141 		filter.src_ip = 0;
8142 	}
8143 	/* need convert to big endian. */
8144 	filter.dst_port = rte_cpu_to_be_16(res->dst_port_value);
8145 	filter.src_port = rte_cpu_to_be_16(res->src_port_value);
8146 	filter.queue = res->queue_id;
8147 
8148 	if (!strcmp(res->ops, "add"))
8149 		ret = rte_eth_dev_filter_ctrl(res->port_id,
8150 				RTE_ETH_FILTER_NTUPLE,
8151 				RTE_ETH_FILTER_ADD,
8152 				&filter);
8153 	else
8154 		ret = rte_eth_dev_filter_ctrl(res->port_id,
8155 				RTE_ETH_FILTER_NTUPLE,
8156 				RTE_ETH_FILTER_DELETE,
8157 				&filter);
8158 	if (ret < 0)
8159 		printf("5tuple filter programming error: (%s)\n",
8160 			strerror(-ret));
8161 }
8162 
8163 cmdline_parse_token_string_t cmd_5tuple_filter_filter =
8164 	TOKEN_STRING_INITIALIZER(struct cmd_5tuple_filter_result,
8165 				 filter, "5tuple_filter");
8166 cmdline_parse_token_num_t cmd_5tuple_filter_port_id =
8167 	TOKEN_NUM_INITIALIZER(struct cmd_5tuple_filter_result,
8168 				port_id, UINT8);
8169 cmdline_parse_token_string_t cmd_5tuple_filter_ops =
8170 	TOKEN_STRING_INITIALIZER(struct cmd_5tuple_filter_result,
8171 				 ops, "add#del");
8172 cmdline_parse_token_string_t cmd_5tuple_filter_dst_ip =
8173 	TOKEN_STRING_INITIALIZER(struct cmd_5tuple_filter_result,
8174 				dst_ip, "dst_ip");
8175 cmdline_parse_token_ipaddr_t cmd_5tuple_filter_dst_ip_value =
8176 	TOKEN_IPADDR_INITIALIZER(struct cmd_5tuple_filter_result,
8177 				dst_ip_value);
8178 cmdline_parse_token_string_t cmd_5tuple_filter_src_ip =
8179 	TOKEN_STRING_INITIALIZER(struct cmd_5tuple_filter_result,
8180 				src_ip, "src_ip");
8181 cmdline_parse_token_ipaddr_t cmd_5tuple_filter_src_ip_value =
8182 	TOKEN_IPADDR_INITIALIZER(struct cmd_5tuple_filter_result,
8183 				src_ip_value);
8184 cmdline_parse_token_string_t cmd_5tuple_filter_dst_port =
8185 	TOKEN_STRING_INITIALIZER(struct cmd_5tuple_filter_result,
8186 				dst_port, "dst_port");
8187 cmdline_parse_token_num_t cmd_5tuple_filter_dst_port_value =
8188 	TOKEN_NUM_INITIALIZER(struct cmd_5tuple_filter_result,
8189 				dst_port_value, UINT16);
8190 cmdline_parse_token_string_t cmd_5tuple_filter_src_port =
8191 	TOKEN_STRING_INITIALIZER(struct cmd_5tuple_filter_result,
8192 				src_port, "src_port");
8193 cmdline_parse_token_num_t cmd_5tuple_filter_src_port_value =
8194 	TOKEN_NUM_INITIALIZER(struct cmd_5tuple_filter_result,
8195 				src_port_value, UINT16);
8196 cmdline_parse_token_string_t cmd_5tuple_filter_protocol =
8197 	TOKEN_STRING_INITIALIZER(struct cmd_5tuple_filter_result,
8198 				protocol, "protocol");
8199 cmdline_parse_token_num_t cmd_5tuple_filter_protocol_value =
8200 	TOKEN_NUM_INITIALIZER(struct cmd_5tuple_filter_result,
8201 				protocol_value, UINT8);
8202 cmdline_parse_token_string_t cmd_5tuple_filter_mask =
8203 	TOKEN_STRING_INITIALIZER(struct cmd_5tuple_filter_result,
8204 				mask, "mask");
8205 cmdline_parse_token_num_t cmd_5tuple_filter_mask_value =
8206 	TOKEN_NUM_INITIALIZER(struct cmd_5tuple_filter_result,
8207 				mask_value, INT8);
8208 cmdline_parse_token_string_t cmd_5tuple_filter_tcp_flags =
8209 	TOKEN_STRING_INITIALIZER(struct cmd_5tuple_filter_result,
8210 				tcp_flags, "tcp_flags");
8211 cmdline_parse_token_num_t cmd_5tuple_filter_tcp_flags_value =
8212 	TOKEN_NUM_INITIALIZER(struct cmd_5tuple_filter_result,
8213 				tcp_flags_value, UINT8);
8214 cmdline_parse_token_string_t cmd_5tuple_filter_priority =
8215 	TOKEN_STRING_INITIALIZER(struct cmd_5tuple_filter_result,
8216 				priority, "priority");
8217 cmdline_parse_token_num_t cmd_5tuple_filter_priority_value =
8218 	TOKEN_NUM_INITIALIZER(struct cmd_5tuple_filter_result,
8219 				priority_value, UINT8);
8220 cmdline_parse_token_string_t cmd_5tuple_filter_queue =
8221 	TOKEN_STRING_INITIALIZER(struct cmd_5tuple_filter_result,
8222 				queue, "queue");
8223 cmdline_parse_token_num_t cmd_5tuple_filter_queue_id =
8224 	TOKEN_NUM_INITIALIZER(struct cmd_5tuple_filter_result,
8225 				queue_id, UINT16);
8226 
8227 cmdline_parse_inst_t cmd_5tuple_filter = {
8228 	.f = cmd_5tuple_filter_parsed,
8229 	.data = NULL,
8230 	.help_str = "5tuple_filter <port_id> add|del dst_ip <value> "
8231 		"src_ip <value> dst_port <value> src_port <value> "
8232 		"protocol <value>  mask <value> tcp_flags <value> "
8233 		"priority <value> queue <queue_id>: Add/Del a 5tuple filter",
8234 	.tokens = {
8235 		(void *)&cmd_5tuple_filter_filter,
8236 		(void *)&cmd_5tuple_filter_port_id,
8237 		(void *)&cmd_5tuple_filter_ops,
8238 		(void *)&cmd_5tuple_filter_dst_ip,
8239 		(void *)&cmd_5tuple_filter_dst_ip_value,
8240 		(void *)&cmd_5tuple_filter_src_ip,
8241 		(void *)&cmd_5tuple_filter_src_ip_value,
8242 		(void *)&cmd_5tuple_filter_dst_port,
8243 		(void *)&cmd_5tuple_filter_dst_port_value,
8244 		(void *)&cmd_5tuple_filter_src_port,
8245 		(void *)&cmd_5tuple_filter_src_port_value,
8246 		(void *)&cmd_5tuple_filter_protocol,
8247 		(void *)&cmd_5tuple_filter_protocol_value,
8248 		(void *)&cmd_5tuple_filter_mask,
8249 		(void *)&cmd_5tuple_filter_mask_value,
8250 		(void *)&cmd_5tuple_filter_tcp_flags,
8251 		(void *)&cmd_5tuple_filter_tcp_flags_value,
8252 		(void *)&cmd_5tuple_filter_priority,
8253 		(void *)&cmd_5tuple_filter_priority_value,
8254 		(void *)&cmd_5tuple_filter_queue,
8255 		(void *)&cmd_5tuple_filter_queue_id,
8256 		NULL,
8257 	},
8258 };
8259 
8260 /* *** ADD/REMOVE A flex FILTER *** */
8261 struct cmd_flex_filter_result {
8262 	cmdline_fixed_string_t filter;
8263 	cmdline_fixed_string_t ops;
8264 	uint8_t port_id;
8265 	cmdline_fixed_string_t len;
8266 	uint8_t len_value;
8267 	cmdline_fixed_string_t bytes;
8268 	cmdline_fixed_string_t bytes_value;
8269 	cmdline_fixed_string_t mask;
8270 	cmdline_fixed_string_t mask_value;
8271 	cmdline_fixed_string_t priority;
8272 	uint8_t priority_value;
8273 	cmdline_fixed_string_t queue;
8274 	uint16_t queue_id;
8275 };
8276 
8277 static int xdigit2val(unsigned char c)
8278 {
8279 	int val;
8280 	if (isdigit(c))
8281 		val = c - '0';
8282 	else if (isupper(c))
8283 		val = c - 'A' + 10;
8284 	else
8285 		val = c - 'a' + 10;
8286 	return val;
8287 }
8288 
8289 static void
8290 cmd_flex_filter_parsed(void *parsed_result,
8291 			  __attribute__((unused)) struct cmdline *cl,
8292 			  __attribute__((unused)) void *data)
8293 {
8294 	int ret = 0;
8295 	struct rte_eth_flex_filter filter;
8296 	struct cmd_flex_filter_result *res = parsed_result;
8297 	char *bytes_ptr, *mask_ptr;
8298 	uint16_t len, i, j = 0;
8299 	char c;
8300 	int val;
8301 	uint8_t byte = 0;
8302 
8303 	if (res->len_value > RTE_FLEX_FILTER_MAXLEN) {
8304 		printf("the len exceed the max length 128\n");
8305 		return;
8306 	}
8307 	memset(&filter, 0, sizeof(struct rte_eth_flex_filter));
8308 	filter.len = res->len_value;
8309 	filter.priority = res->priority_value;
8310 	filter.queue = res->queue_id;
8311 	bytes_ptr = res->bytes_value;
8312 	mask_ptr = res->mask_value;
8313 
8314 	 /* translate bytes string to array. */
8315 	if (bytes_ptr[0] == '0' && ((bytes_ptr[1] == 'x') ||
8316 		(bytes_ptr[1] == 'X')))
8317 		bytes_ptr += 2;
8318 	len = strnlen(bytes_ptr, res->len_value * 2);
8319 	if (len == 0 || (len % 8 != 0)) {
8320 		printf("please check len and bytes input\n");
8321 		return;
8322 	}
8323 	for (i = 0; i < len; i++) {
8324 		c = bytes_ptr[i];
8325 		if (isxdigit(c) == 0) {
8326 			/* invalid characters. */
8327 			printf("invalid input\n");
8328 			return;
8329 		}
8330 		val = xdigit2val(c);
8331 		if (i % 2) {
8332 			byte |= val;
8333 			filter.bytes[j] = byte;
8334 			printf("bytes[%d]:%02x ", j, filter.bytes[j]);
8335 			j++;
8336 			byte = 0;
8337 		} else
8338 			byte |= val << 4;
8339 	}
8340 	printf("\n");
8341 	 /* translate mask string to uint8_t array. */
8342 	if (mask_ptr[0] == '0' && ((mask_ptr[1] == 'x') ||
8343 		(mask_ptr[1] == 'X')))
8344 		mask_ptr += 2;
8345 	len = strnlen(mask_ptr, (res->len_value + 3) / 4);
8346 	if (len == 0) {
8347 		printf("invalid input\n");
8348 		return;
8349 	}
8350 	j = 0;
8351 	byte = 0;
8352 	for (i = 0; i < len; i++) {
8353 		c = mask_ptr[i];
8354 		if (isxdigit(c) == 0) {
8355 			/* invalid characters. */
8356 			printf("invalid input\n");
8357 			return;
8358 		}
8359 		val = xdigit2val(c);
8360 		if (i % 2) {
8361 			byte |= val;
8362 			filter.mask[j] = byte;
8363 			printf("mask[%d]:%02x ", j, filter.mask[j]);
8364 			j++;
8365 			byte = 0;
8366 		} else
8367 			byte |= val << 4;
8368 	}
8369 	printf("\n");
8370 
8371 	if (!strcmp(res->ops, "add"))
8372 		ret = rte_eth_dev_filter_ctrl(res->port_id,
8373 				RTE_ETH_FILTER_FLEXIBLE,
8374 				RTE_ETH_FILTER_ADD,
8375 				&filter);
8376 	else
8377 		ret = rte_eth_dev_filter_ctrl(res->port_id,
8378 				RTE_ETH_FILTER_FLEXIBLE,
8379 				RTE_ETH_FILTER_DELETE,
8380 				&filter);
8381 
8382 	if (ret < 0)
8383 		printf("flex filter setting error: (%s)\n", strerror(-ret));
8384 }
8385 
8386 cmdline_parse_token_string_t cmd_flex_filter_filter =
8387 	TOKEN_STRING_INITIALIZER(struct cmd_flex_filter_result,
8388 				filter, "flex_filter");
8389 cmdline_parse_token_num_t cmd_flex_filter_port_id =
8390 	TOKEN_NUM_INITIALIZER(struct cmd_flex_filter_result,
8391 				port_id, UINT8);
8392 cmdline_parse_token_string_t cmd_flex_filter_ops =
8393 	TOKEN_STRING_INITIALIZER(struct cmd_flex_filter_result,
8394 				ops, "add#del");
8395 cmdline_parse_token_string_t cmd_flex_filter_len =
8396 	TOKEN_STRING_INITIALIZER(struct cmd_flex_filter_result,
8397 				len, "len");
8398 cmdline_parse_token_num_t cmd_flex_filter_len_value =
8399 	TOKEN_NUM_INITIALIZER(struct cmd_flex_filter_result,
8400 				len_value, UINT8);
8401 cmdline_parse_token_string_t cmd_flex_filter_bytes =
8402 	TOKEN_STRING_INITIALIZER(struct cmd_flex_filter_result,
8403 				bytes, "bytes");
8404 cmdline_parse_token_string_t cmd_flex_filter_bytes_value =
8405 	TOKEN_STRING_INITIALIZER(struct cmd_flex_filter_result,
8406 				bytes_value, NULL);
8407 cmdline_parse_token_string_t cmd_flex_filter_mask =
8408 	TOKEN_STRING_INITIALIZER(struct cmd_flex_filter_result,
8409 				mask, "mask");
8410 cmdline_parse_token_string_t cmd_flex_filter_mask_value =
8411 	TOKEN_STRING_INITIALIZER(struct cmd_flex_filter_result,
8412 				mask_value, NULL);
8413 cmdline_parse_token_string_t cmd_flex_filter_priority =
8414 	TOKEN_STRING_INITIALIZER(struct cmd_flex_filter_result,
8415 				priority, "priority");
8416 cmdline_parse_token_num_t cmd_flex_filter_priority_value =
8417 	TOKEN_NUM_INITIALIZER(struct cmd_flex_filter_result,
8418 				priority_value, UINT8);
8419 cmdline_parse_token_string_t cmd_flex_filter_queue =
8420 	TOKEN_STRING_INITIALIZER(struct cmd_flex_filter_result,
8421 				queue, "queue");
8422 cmdline_parse_token_num_t cmd_flex_filter_queue_id =
8423 	TOKEN_NUM_INITIALIZER(struct cmd_flex_filter_result,
8424 				queue_id, UINT16);
8425 cmdline_parse_inst_t cmd_flex_filter = {
8426 	.f = cmd_flex_filter_parsed,
8427 	.data = NULL,
8428 	.help_str = "flex_filter <port_id> add|del len <value> bytes "
8429 		"<value> mask <value> priority <value> queue <queue_id>: "
8430 		"Add/Del a flex filter",
8431 	.tokens = {
8432 		(void *)&cmd_flex_filter_filter,
8433 		(void *)&cmd_flex_filter_port_id,
8434 		(void *)&cmd_flex_filter_ops,
8435 		(void *)&cmd_flex_filter_len,
8436 		(void *)&cmd_flex_filter_len_value,
8437 		(void *)&cmd_flex_filter_bytes,
8438 		(void *)&cmd_flex_filter_bytes_value,
8439 		(void *)&cmd_flex_filter_mask,
8440 		(void *)&cmd_flex_filter_mask_value,
8441 		(void *)&cmd_flex_filter_priority,
8442 		(void *)&cmd_flex_filter_priority_value,
8443 		(void *)&cmd_flex_filter_queue,
8444 		(void *)&cmd_flex_filter_queue_id,
8445 		NULL,
8446 	},
8447 };
8448 
8449 /* *** Filters Control *** */
8450 
8451 /* *** deal with ethertype filter *** */
8452 struct cmd_ethertype_filter_result {
8453 	cmdline_fixed_string_t filter;
8454 	uint8_t port_id;
8455 	cmdline_fixed_string_t ops;
8456 	cmdline_fixed_string_t mac;
8457 	struct ether_addr mac_addr;
8458 	cmdline_fixed_string_t ethertype;
8459 	uint16_t ethertype_value;
8460 	cmdline_fixed_string_t drop;
8461 	cmdline_fixed_string_t queue;
8462 	uint16_t  queue_id;
8463 };
8464 
8465 cmdline_parse_token_string_t cmd_ethertype_filter_filter =
8466 	TOKEN_STRING_INITIALIZER(struct cmd_ethertype_filter_result,
8467 				 filter, "ethertype_filter");
8468 cmdline_parse_token_num_t cmd_ethertype_filter_port_id =
8469 	TOKEN_NUM_INITIALIZER(struct cmd_ethertype_filter_result,
8470 			      port_id, UINT8);
8471 cmdline_parse_token_string_t cmd_ethertype_filter_ops =
8472 	TOKEN_STRING_INITIALIZER(struct cmd_ethertype_filter_result,
8473 				 ops, "add#del");
8474 cmdline_parse_token_string_t cmd_ethertype_filter_mac =
8475 	TOKEN_STRING_INITIALIZER(struct cmd_ethertype_filter_result,
8476 				 mac, "mac_addr#mac_ignr");
8477 cmdline_parse_token_etheraddr_t cmd_ethertype_filter_mac_addr =
8478 	TOKEN_ETHERADDR_INITIALIZER(struct cmd_ethertype_filter_result,
8479 				     mac_addr);
8480 cmdline_parse_token_string_t cmd_ethertype_filter_ethertype =
8481 	TOKEN_STRING_INITIALIZER(struct cmd_ethertype_filter_result,
8482 				 ethertype, "ethertype");
8483 cmdline_parse_token_num_t cmd_ethertype_filter_ethertype_value =
8484 	TOKEN_NUM_INITIALIZER(struct cmd_ethertype_filter_result,
8485 			      ethertype_value, UINT16);
8486 cmdline_parse_token_string_t cmd_ethertype_filter_drop =
8487 	TOKEN_STRING_INITIALIZER(struct cmd_ethertype_filter_result,
8488 				 drop, "drop#fwd");
8489 cmdline_parse_token_string_t cmd_ethertype_filter_queue =
8490 	TOKEN_STRING_INITIALIZER(struct cmd_ethertype_filter_result,
8491 				 queue, "queue");
8492 cmdline_parse_token_num_t cmd_ethertype_filter_queue_id =
8493 	TOKEN_NUM_INITIALIZER(struct cmd_ethertype_filter_result,
8494 			      queue_id, UINT16);
8495 
8496 static void
8497 cmd_ethertype_filter_parsed(void *parsed_result,
8498 			  __attribute__((unused)) struct cmdline *cl,
8499 			  __attribute__((unused)) void *data)
8500 {
8501 	struct cmd_ethertype_filter_result *res = parsed_result;
8502 	struct rte_eth_ethertype_filter filter;
8503 	int ret = 0;
8504 
8505 	ret = rte_eth_dev_filter_supported(res->port_id,
8506 			RTE_ETH_FILTER_ETHERTYPE);
8507 	if (ret < 0) {
8508 		printf("ethertype filter is not supported on port %u.\n",
8509 			res->port_id);
8510 		return;
8511 	}
8512 
8513 	memset(&filter, 0, sizeof(filter));
8514 	if (!strcmp(res->mac, "mac_addr")) {
8515 		filter.flags |= RTE_ETHTYPE_FLAGS_MAC;
8516 		(void)rte_memcpy(&filter.mac_addr, &res->mac_addr,
8517 			sizeof(struct ether_addr));
8518 	}
8519 	if (!strcmp(res->drop, "drop"))
8520 		filter.flags |= RTE_ETHTYPE_FLAGS_DROP;
8521 	filter.ether_type = res->ethertype_value;
8522 	filter.queue = res->queue_id;
8523 
8524 	if (!strcmp(res->ops, "add"))
8525 		ret = rte_eth_dev_filter_ctrl(res->port_id,
8526 				RTE_ETH_FILTER_ETHERTYPE,
8527 				RTE_ETH_FILTER_ADD,
8528 				&filter);
8529 	else
8530 		ret = rte_eth_dev_filter_ctrl(res->port_id,
8531 				RTE_ETH_FILTER_ETHERTYPE,
8532 				RTE_ETH_FILTER_DELETE,
8533 				&filter);
8534 	if (ret < 0)
8535 		printf("ethertype filter programming error: (%s)\n",
8536 			strerror(-ret));
8537 }
8538 
8539 cmdline_parse_inst_t cmd_ethertype_filter = {
8540 	.f = cmd_ethertype_filter_parsed,
8541 	.data = NULL,
8542 	.help_str = "ethertype_filter <port_id> add|del mac_addr|mac_ignr "
8543 		"<mac_addr> ethertype <value> drop|fw queue <queue_id>: "
8544 		"Add or delete an ethertype filter entry",
8545 	.tokens = {
8546 		(void *)&cmd_ethertype_filter_filter,
8547 		(void *)&cmd_ethertype_filter_port_id,
8548 		(void *)&cmd_ethertype_filter_ops,
8549 		(void *)&cmd_ethertype_filter_mac,
8550 		(void *)&cmd_ethertype_filter_mac_addr,
8551 		(void *)&cmd_ethertype_filter_ethertype,
8552 		(void *)&cmd_ethertype_filter_ethertype_value,
8553 		(void *)&cmd_ethertype_filter_drop,
8554 		(void *)&cmd_ethertype_filter_queue,
8555 		(void *)&cmd_ethertype_filter_queue_id,
8556 		NULL,
8557 	},
8558 };
8559 
8560 /* *** deal with flow director filter *** */
8561 struct cmd_flow_director_result {
8562 	cmdline_fixed_string_t flow_director_filter;
8563 	uint8_t port_id;
8564 	cmdline_fixed_string_t mode;
8565 	cmdline_fixed_string_t mode_value;
8566 	cmdline_fixed_string_t ops;
8567 	cmdline_fixed_string_t flow;
8568 	cmdline_fixed_string_t flow_type;
8569 	cmdline_fixed_string_t ether;
8570 	uint16_t ether_type;
8571 	cmdline_fixed_string_t src;
8572 	cmdline_ipaddr_t ip_src;
8573 	uint16_t port_src;
8574 	cmdline_fixed_string_t dst;
8575 	cmdline_ipaddr_t ip_dst;
8576 	uint16_t port_dst;
8577 	cmdline_fixed_string_t verify_tag;
8578 	uint32_t verify_tag_value;
8579 	cmdline_ipaddr_t tos;
8580 	uint8_t tos_value;
8581 	cmdline_ipaddr_t proto;
8582 	uint8_t proto_value;
8583 	cmdline_ipaddr_t ttl;
8584 	uint8_t ttl_value;
8585 	cmdline_fixed_string_t vlan;
8586 	uint16_t vlan_value;
8587 	cmdline_fixed_string_t flexbytes;
8588 	cmdline_fixed_string_t flexbytes_value;
8589 	cmdline_fixed_string_t pf_vf;
8590 	cmdline_fixed_string_t drop;
8591 	cmdline_fixed_string_t queue;
8592 	uint16_t  queue_id;
8593 	cmdline_fixed_string_t fd_id;
8594 	uint32_t  fd_id_value;
8595 	cmdline_fixed_string_t mac;
8596 	struct ether_addr mac_addr;
8597 	cmdline_fixed_string_t tunnel;
8598 	cmdline_fixed_string_t tunnel_type;
8599 	cmdline_fixed_string_t tunnel_id;
8600 	uint32_t tunnel_id_value;
8601 };
8602 
8603 static inline int
8604 parse_flexbytes(const char *q_arg, uint8_t *flexbytes, uint16_t max_num)
8605 {
8606 	char s[256];
8607 	const char *p, *p0 = q_arg;
8608 	char *end;
8609 	unsigned long int_fld;
8610 	char *str_fld[max_num];
8611 	int i;
8612 	unsigned size;
8613 	int ret = -1;
8614 
8615 	p = strchr(p0, '(');
8616 	if (p == NULL)
8617 		return -1;
8618 	++p;
8619 	p0 = strchr(p, ')');
8620 	if (p0 == NULL)
8621 		return -1;
8622 
8623 	size = p0 - p;
8624 	if (size >= sizeof(s))
8625 		return -1;
8626 
8627 	snprintf(s, sizeof(s), "%.*s", size, p);
8628 	ret = rte_strsplit(s, sizeof(s), str_fld, max_num, ',');
8629 	if (ret < 0 || ret > max_num)
8630 		return -1;
8631 	for (i = 0; i < ret; i++) {
8632 		errno = 0;
8633 		int_fld = strtoul(str_fld[i], &end, 0);
8634 		if (errno != 0 || *end != '\0' || int_fld > UINT8_MAX)
8635 			return -1;
8636 		flexbytes[i] = (uint8_t)int_fld;
8637 	}
8638 	return ret;
8639 }
8640 
8641 static uint16_t
8642 str2flowtype(char *string)
8643 {
8644 	uint8_t i = 0;
8645 	static const struct {
8646 		char str[32];
8647 		uint16_t type;
8648 	} flowtype_str[] = {
8649 		{"raw", RTE_ETH_FLOW_RAW},
8650 		{"ipv4", RTE_ETH_FLOW_IPV4},
8651 		{"ipv4-frag", RTE_ETH_FLOW_FRAG_IPV4},
8652 		{"ipv4-tcp", RTE_ETH_FLOW_NONFRAG_IPV4_TCP},
8653 		{"ipv4-udp", RTE_ETH_FLOW_NONFRAG_IPV4_UDP},
8654 		{"ipv4-sctp", RTE_ETH_FLOW_NONFRAG_IPV4_SCTP},
8655 		{"ipv4-other", RTE_ETH_FLOW_NONFRAG_IPV4_OTHER},
8656 		{"ipv6", RTE_ETH_FLOW_IPV6},
8657 		{"ipv6-frag", RTE_ETH_FLOW_FRAG_IPV6},
8658 		{"ipv6-tcp", RTE_ETH_FLOW_NONFRAG_IPV6_TCP},
8659 		{"ipv6-udp", RTE_ETH_FLOW_NONFRAG_IPV6_UDP},
8660 		{"ipv6-sctp", RTE_ETH_FLOW_NONFRAG_IPV6_SCTP},
8661 		{"ipv6-other", RTE_ETH_FLOW_NONFRAG_IPV6_OTHER},
8662 		{"l2_payload", RTE_ETH_FLOW_L2_PAYLOAD},
8663 	};
8664 
8665 	for (i = 0; i < RTE_DIM(flowtype_str); i++) {
8666 		if (!strcmp(flowtype_str[i].str, string))
8667 			return flowtype_str[i].type;
8668 	}
8669 	return RTE_ETH_FLOW_UNKNOWN;
8670 }
8671 
8672 static enum rte_eth_fdir_tunnel_type
8673 str2fdir_tunneltype(char *string)
8674 {
8675 	uint8_t i = 0;
8676 
8677 	static const struct {
8678 		char str[32];
8679 		enum rte_eth_fdir_tunnel_type type;
8680 	} tunneltype_str[] = {
8681 		{"NVGRE", RTE_FDIR_TUNNEL_TYPE_NVGRE},
8682 		{"VxLAN", RTE_FDIR_TUNNEL_TYPE_VXLAN},
8683 	};
8684 
8685 	for (i = 0; i < RTE_DIM(tunneltype_str); i++) {
8686 		if (!strcmp(tunneltype_str[i].str, string))
8687 			return tunneltype_str[i].type;
8688 	}
8689 	return RTE_FDIR_TUNNEL_TYPE_UNKNOWN;
8690 }
8691 
8692 #define IPV4_ADDR_TO_UINT(ip_addr, ip) \
8693 do { \
8694 	if ((ip_addr).family == AF_INET) \
8695 		(ip) = (ip_addr).addr.ipv4.s_addr; \
8696 	else { \
8697 		printf("invalid parameter.\n"); \
8698 		return; \
8699 	} \
8700 } while (0)
8701 
8702 #define IPV6_ADDR_TO_ARRAY(ip_addr, ip) \
8703 do { \
8704 	if ((ip_addr).family == AF_INET6) \
8705 		(void)rte_memcpy(&(ip), \
8706 				 &((ip_addr).addr.ipv6), \
8707 				 sizeof(struct in6_addr)); \
8708 	else { \
8709 		printf("invalid parameter.\n"); \
8710 		return; \
8711 	} \
8712 } while (0)
8713 
8714 static void
8715 cmd_flow_director_filter_parsed(void *parsed_result,
8716 			  __attribute__((unused)) struct cmdline *cl,
8717 			  __attribute__((unused)) void *data)
8718 {
8719 	struct cmd_flow_director_result *res = parsed_result;
8720 	struct rte_eth_fdir_filter entry;
8721 	uint8_t flexbytes[RTE_ETH_FDIR_MAX_FLEXLEN];
8722 	char *end;
8723 	unsigned long vf_id;
8724 	int ret = 0;
8725 
8726 	ret = rte_eth_dev_filter_supported(res->port_id, RTE_ETH_FILTER_FDIR);
8727 	if (ret < 0) {
8728 		printf("flow director is not supported on port %u.\n",
8729 			res->port_id);
8730 		return;
8731 	}
8732 	memset(flexbytes, 0, sizeof(flexbytes));
8733 	memset(&entry, 0, sizeof(struct rte_eth_fdir_filter));
8734 
8735 	if (fdir_conf.mode ==  RTE_FDIR_MODE_PERFECT_MAC_VLAN) {
8736 		if (strcmp(res->mode_value, "MAC-VLAN")) {
8737 			printf("Please set mode to MAC-VLAN.\n");
8738 			return;
8739 		}
8740 	} else if (fdir_conf.mode ==  RTE_FDIR_MODE_PERFECT_TUNNEL) {
8741 		if (strcmp(res->mode_value, "Tunnel")) {
8742 			printf("Please set mode to Tunnel.\n");
8743 			return;
8744 		}
8745 	} else {
8746 		if (strcmp(res->mode_value, "IP")) {
8747 			printf("Please set mode to IP.\n");
8748 			return;
8749 		}
8750 		entry.input.flow_type = str2flowtype(res->flow_type);
8751 	}
8752 
8753 	ret = parse_flexbytes(res->flexbytes_value,
8754 					flexbytes,
8755 					RTE_ETH_FDIR_MAX_FLEXLEN);
8756 	if (ret < 0) {
8757 		printf("error: Cannot parse flexbytes input.\n");
8758 		return;
8759 	}
8760 
8761 	switch (entry.input.flow_type) {
8762 	case RTE_ETH_FLOW_FRAG_IPV4:
8763 	case RTE_ETH_FLOW_NONFRAG_IPV4_OTHER:
8764 		entry.input.flow.ip4_flow.proto = res->proto_value;
8765 		/* fall-through */
8766 	case RTE_ETH_FLOW_NONFRAG_IPV4_UDP:
8767 	case RTE_ETH_FLOW_NONFRAG_IPV4_TCP:
8768 		IPV4_ADDR_TO_UINT(res->ip_dst,
8769 			entry.input.flow.ip4_flow.dst_ip);
8770 		IPV4_ADDR_TO_UINT(res->ip_src,
8771 			entry.input.flow.ip4_flow.src_ip);
8772 		entry.input.flow.ip4_flow.tos = res->tos_value;
8773 		entry.input.flow.ip4_flow.ttl = res->ttl_value;
8774 		/* need convert to big endian. */
8775 		entry.input.flow.udp4_flow.dst_port =
8776 				rte_cpu_to_be_16(res->port_dst);
8777 		entry.input.flow.udp4_flow.src_port =
8778 				rte_cpu_to_be_16(res->port_src);
8779 		break;
8780 	case RTE_ETH_FLOW_NONFRAG_IPV4_SCTP:
8781 		IPV4_ADDR_TO_UINT(res->ip_dst,
8782 			entry.input.flow.sctp4_flow.ip.dst_ip);
8783 		IPV4_ADDR_TO_UINT(res->ip_src,
8784 			entry.input.flow.sctp4_flow.ip.src_ip);
8785 		entry.input.flow.ip4_flow.tos = res->tos_value;
8786 		entry.input.flow.ip4_flow.ttl = res->ttl_value;
8787 		/* need convert to big endian. */
8788 		entry.input.flow.sctp4_flow.dst_port =
8789 				rte_cpu_to_be_16(res->port_dst);
8790 		entry.input.flow.sctp4_flow.src_port =
8791 				rte_cpu_to_be_16(res->port_src);
8792 		entry.input.flow.sctp4_flow.verify_tag =
8793 				rte_cpu_to_be_32(res->verify_tag_value);
8794 		break;
8795 	case RTE_ETH_FLOW_FRAG_IPV6:
8796 	case RTE_ETH_FLOW_NONFRAG_IPV6_OTHER:
8797 		entry.input.flow.ipv6_flow.proto = res->proto_value;
8798 		/* fall-through */
8799 	case RTE_ETH_FLOW_NONFRAG_IPV6_UDP:
8800 	case RTE_ETH_FLOW_NONFRAG_IPV6_TCP:
8801 		IPV6_ADDR_TO_ARRAY(res->ip_dst,
8802 			entry.input.flow.ipv6_flow.dst_ip);
8803 		IPV6_ADDR_TO_ARRAY(res->ip_src,
8804 			entry.input.flow.ipv6_flow.src_ip);
8805 		entry.input.flow.ipv6_flow.tc = res->tos_value;
8806 		entry.input.flow.ipv6_flow.hop_limits = res->ttl_value;
8807 		/* need convert to big endian. */
8808 		entry.input.flow.udp6_flow.dst_port =
8809 				rte_cpu_to_be_16(res->port_dst);
8810 		entry.input.flow.udp6_flow.src_port =
8811 				rte_cpu_to_be_16(res->port_src);
8812 		break;
8813 	case RTE_ETH_FLOW_NONFRAG_IPV6_SCTP:
8814 		IPV6_ADDR_TO_ARRAY(res->ip_dst,
8815 			entry.input.flow.sctp6_flow.ip.dst_ip);
8816 		IPV6_ADDR_TO_ARRAY(res->ip_src,
8817 			entry.input.flow.sctp6_flow.ip.src_ip);
8818 		entry.input.flow.ipv6_flow.tc = res->tos_value;
8819 		entry.input.flow.ipv6_flow.hop_limits = res->ttl_value;
8820 		/* need convert to big endian. */
8821 		entry.input.flow.sctp6_flow.dst_port =
8822 				rte_cpu_to_be_16(res->port_dst);
8823 		entry.input.flow.sctp6_flow.src_port =
8824 				rte_cpu_to_be_16(res->port_src);
8825 		entry.input.flow.sctp6_flow.verify_tag =
8826 				rte_cpu_to_be_32(res->verify_tag_value);
8827 		break;
8828 	case RTE_ETH_FLOW_L2_PAYLOAD:
8829 		entry.input.flow.l2_flow.ether_type =
8830 			rte_cpu_to_be_16(res->ether_type);
8831 		break;
8832 	default:
8833 		break;
8834 	}
8835 
8836 	if (fdir_conf.mode ==  RTE_FDIR_MODE_PERFECT_MAC_VLAN)
8837 		(void)rte_memcpy(&entry.input.flow.mac_vlan_flow.mac_addr,
8838 				 &res->mac_addr,
8839 				 sizeof(struct ether_addr));
8840 
8841 	if (fdir_conf.mode ==  RTE_FDIR_MODE_PERFECT_TUNNEL) {
8842 		(void)rte_memcpy(&entry.input.flow.tunnel_flow.mac_addr,
8843 				 &res->mac_addr,
8844 				 sizeof(struct ether_addr));
8845 		entry.input.flow.tunnel_flow.tunnel_type =
8846 			str2fdir_tunneltype(res->tunnel_type);
8847 		entry.input.flow.tunnel_flow.tunnel_id =
8848 			rte_cpu_to_be_32(res->tunnel_id_value);
8849 	}
8850 
8851 	(void)rte_memcpy(entry.input.flow_ext.flexbytes,
8852 		   flexbytes,
8853 		   RTE_ETH_FDIR_MAX_FLEXLEN);
8854 
8855 	entry.input.flow_ext.vlan_tci = rte_cpu_to_be_16(res->vlan_value);
8856 
8857 	entry.action.flex_off = 0;  /*use 0 by default */
8858 	if (!strcmp(res->drop, "drop"))
8859 		entry.action.behavior = RTE_ETH_FDIR_REJECT;
8860 	else
8861 		entry.action.behavior = RTE_ETH_FDIR_ACCEPT;
8862 
8863 	if (fdir_conf.mode !=  RTE_FDIR_MODE_PERFECT_MAC_VLAN &&
8864 	    fdir_conf.mode !=  RTE_FDIR_MODE_PERFECT_TUNNEL) {
8865 		if (!strcmp(res->pf_vf, "pf"))
8866 			entry.input.flow_ext.is_vf = 0;
8867 		else if (!strncmp(res->pf_vf, "vf", 2)) {
8868 			struct rte_eth_dev_info dev_info;
8869 
8870 			memset(&dev_info, 0, sizeof(dev_info));
8871 			rte_eth_dev_info_get(res->port_id, &dev_info);
8872 			errno = 0;
8873 			vf_id = strtoul(res->pf_vf + 2, &end, 10);
8874 			if (errno != 0 || *end != '\0' ||
8875 			    vf_id >= dev_info.max_vfs) {
8876 				printf("invalid parameter %s.\n", res->pf_vf);
8877 				return;
8878 			}
8879 			entry.input.flow_ext.is_vf = 1;
8880 			entry.input.flow_ext.dst_id = (uint16_t)vf_id;
8881 		} else {
8882 			printf("invalid parameter %s.\n", res->pf_vf);
8883 			return;
8884 		}
8885 	}
8886 
8887 	/* set to report FD ID by default */
8888 	entry.action.report_status = RTE_ETH_FDIR_REPORT_ID;
8889 	entry.action.rx_queue = res->queue_id;
8890 	entry.soft_id = res->fd_id_value;
8891 	if (!strcmp(res->ops, "add"))
8892 		ret = rte_eth_dev_filter_ctrl(res->port_id, RTE_ETH_FILTER_FDIR,
8893 					     RTE_ETH_FILTER_ADD, &entry);
8894 	else if (!strcmp(res->ops, "del"))
8895 		ret = rte_eth_dev_filter_ctrl(res->port_id, RTE_ETH_FILTER_FDIR,
8896 					     RTE_ETH_FILTER_DELETE, &entry);
8897 	else
8898 		ret = rte_eth_dev_filter_ctrl(res->port_id, RTE_ETH_FILTER_FDIR,
8899 					     RTE_ETH_FILTER_UPDATE, &entry);
8900 	if (ret < 0)
8901 		printf("flow director programming error: (%s)\n",
8902 			strerror(-ret));
8903 }
8904 
8905 cmdline_parse_token_string_t cmd_flow_director_filter =
8906 	TOKEN_STRING_INITIALIZER(struct cmd_flow_director_result,
8907 				 flow_director_filter, "flow_director_filter");
8908 cmdline_parse_token_num_t cmd_flow_director_port_id =
8909 	TOKEN_NUM_INITIALIZER(struct cmd_flow_director_result,
8910 			      port_id, UINT8);
8911 cmdline_parse_token_string_t cmd_flow_director_ops =
8912 	TOKEN_STRING_INITIALIZER(struct cmd_flow_director_result,
8913 				 ops, "add#del#update");
8914 cmdline_parse_token_string_t cmd_flow_director_flow =
8915 	TOKEN_STRING_INITIALIZER(struct cmd_flow_director_result,
8916 				 flow, "flow");
8917 cmdline_parse_token_string_t cmd_flow_director_flow_type =
8918 	TOKEN_STRING_INITIALIZER(struct cmd_flow_director_result,
8919 		flow_type, "ipv4-other#ipv4-frag#ipv4-tcp#ipv4-udp#ipv4-sctp#"
8920 		"ipv6-other#ipv6-frag#ipv6-tcp#ipv6-udp#ipv6-sctp#l2_payload");
8921 cmdline_parse_token_string_t cmd_flow_director_ether =
8922 	TOKEN_STRING_INITIALIZER(struct cmd_flow_director_result,
8923 				 ether, "ether");
8924 cmdline_parse_token_num_t cmd_flow_director_ether_type =
8925 	TOKEN_NUM_INITIALIZER(struct cmd_flow_director_result,
8926 			      ether_type, UINT16);
8927 cmdline_parse_token_string_t cmd_flow_director_src =
8928 	TOKEN_STRING_INITIALIZER(struct cmd_flow_director_result,
8929 				 src, "src");
8930 cmdline_parse_token_ipaddr_t cmd_flow_director_ip_src =
8931 	TOKEN_IPADDR_INITIALIZER(struct cmd_flow_director_result,
8932 				 ip_src);
8933 cmdline_parse_token_num_t cmd_flow_director_port_src =
8934 	TOKEN_NUM_INITIALIZER(struct cmd_flow_director_result,
8935 			      port_src, UINT16);
8936 cmdline_parse_token_string_t cmd_flow_director_dst =
8937 	TOKEN_STRING_INITIALIZER(struct cmd_flow_director_result,
8938 				 dst, "dst");
8939 cmdline_parse_token_ipaddr_t cmd_flow_director_ip_dst =
8940 	TOKEN_IPADDR_INITIALIZER(struct cmd_flow_director_result,
8941 				 ip_dst);
8942 cmdline_parse_token_num_t cmd_flow_director_port_dst =
8943 	TOKEN_NUM_INITIALIZER(struct cmd_flow_director_result,
8944 			      port_dst, UINT16);
8945 cmdline_parse_token_string_t cmd_flow_director_verify_tag =
8946 	TOKEN_STRING_INITIALIZER(struct cmd_flow_director_result,
8947 				  verify_tag, "verify_tag");
8948 cmdline_parse_token_num_t cmd_flow_director_verify_tag_value =
8949 	TOKEN_NUM_INITIALIZER(struct cmd_flow_director_result,
8950 			      verify_tag_value, UINT32);
8951 cmdline_parse_token_string_t cmd_flow_director_tos =
8952 	TOKEN_STRING_INITIALIZER(struct cmd_flow_director_result,
8953 				 tos, "tos");
8954 cmdline_parse_token_num_t cmd_flow_director_tos_value =
8955 	TOKEN_NUM_INITIALIZER(struct cmd_flow_director_result,
8956 			      tos_value, UINT8);
8957 cmdline_parse_token_string_t cmd_flow_director_proto =
8958 	TOKEN_STRING_INITIALIZER(struct cmd_flow_director_result,
8959 				 proto, "proto");
8960 cmdline_parse_token_num_t cmd_flow_director_proto_value =
8961 	TOKEN_NUM_INITIALIZER(struct cmd_flow_director_result,
8962 			      proto_value, UINT8);
8963 cmdline_parse_token_string_t cmd_flow_director_ttl =
8964 	TOKEN_STRING_INITIALIZER(struct cmd_flow_director_result,
8965 				 ttl, "ttl");
8966 cmdline_parse_token_num_t cmd_flow_director_ttl_value =
8967 	TOKEN_NUM_INITIALIZER(struct cmd_flow_director_result,
8968 			      ttl_value, UINT8);
8969 cmdline_parse_token_string_t cmd_flow_director_vlan =
8970 	TOKEN_STRING_INITIALIZER(struct cmd_flow_director_result,
8971 				 vlan, "vlan");
8972 cmdline_parse_token_num_t cmd_flow_director_vlan_value =
8973 	TOKEN_NUM_INITIALIZER(struct cmd_flow_director_result,
8974 			      vlan_value, UINT16);
8975 cmdline_parse_token_string_t cmd_flow_director_flexbytes =
8976 	TOKEN_STRING_INITIALIZER(struct cmd_flow_director_result,
8977 				 flexbytes, "flexbytes");
8978 cmdline_parse_token_string_t cmd_flow_director_flexbytes_value =
8979 	TOKEN_STRING_INITIALIZER(struct cmd_flow_director_result,
8980 			      flexbytes_value, NULL);
8981 cmdline_parse_token_string_t cmd_flow_director_drop =
8982 	TOKEN_STRING_INITIALIZER(struct cmd_flow_director_result,
8983 				 drop, "drop#fwd");
8984 cmdline_parse_token_string_t cmd_flow_director_pf_vf =
8985 	TOKEN_STRING_INITIALIZER(struct cmd_flow_director_result,
8986 			      pf_vf, NULL);
8987 cmdline_parse_token_string_t cmd_flow_director_queue =
8988 	TOKEN_STRING_INITIALIZER(struct cmd_flow_director_result,
8989 				 queue, "queue");
8990 cmdline_parse_token_num_t cmd_flow_director_queue_id =
8991 	TOKEN_NUM_INITIALIZER(struct cmd_flow_director_result,
8992 			      queue_id, UINT16);
8993 cmdline_parse_token_string_t cmd_flow_director_fd_id =
8994 	TOKEN_STRING_INITIALIZER(struct cmd_flow_director_result,
8995 				 fd_id, "fd_id");
8996 cmdline_parse_token_num_t cmd_flow_director_fd_id_value =
8997 	TOKEN_NUM_INITIALIZER(struct cmd_flow_director_result,
8998 			      fd_id_value, UINT32);
8999 
9000 cmdline_parse_token_string_t cmd_flow_director_mode =
9001 	TOKEN_STRING_INITIALIZER(struct cmd_flow_director_result,
9002 				 mode, "mode");
9003 cmdline_parse_token_string_t cmd_flow_director_mode_ip =
9004 	TOKEN_STRING_INITIALIZER(struct cmd_flow_director_result,
9005 				 mode_value, "IP");
9006 cmdline_parse_token_string_t cmd_flow_director_mode_mac_vlan =
9007 	TOKEN_STRING_INITIALIZER(struct cmd_flow_director_result,
9008 				 mode_value, "MAC-VLAN");
9009 cmdline_parse_token_string_t cmd_flow_director_mode_tunnel =
9010 	TOKEN_STRING_INITIALIZER(struct cmd_flow_director_result,
9011 				 mode_value, "Tunnel");
9012 cmdline_parse_token_string_t cmd_flow_director_mac =
9013 	TOKEN_STRING_INITIALIZER(struct cmd_flow_director_result,
9014 				 mac, "mac");
9015 cmdline_parse_token_etheraddr_t cmd_flow_director_mac_addr =
9016 	TOKEN_ETHERADDR_INITIALIZER(struct cmd_flow_director_result,
9017 				    mac_addr);
9018 cmdline_parse_token_string_t cmd_flow_director_tunnel =
9019 	TOKEN_STRING_INITIALIZER(struct cmd_flow_director_result,
9020 				 tunnel, "tunnel");
9021 cmdline_parse_token_string_t cmd_flow_director_tunnel_type =
9022 	TOKEN_STRING_INITIALIZER(struct cmd_flow_director_result,
9023 				 tunnel_type, "NVGRE#VxLAN");
9024 cmdline_parse_token_string_t cmd_flow_director_tunnel_id =
9025 	TOKEN_STRING_INITIALIZER(struct cmd_flow_director_result,
9026 				 tunnel_id, "tunnel-id");
9027 cmdline_parse_token_num_t cmd_flow_director_tunnel_id_value =
9028 	TOKEN_NUM_INITIALIZER(struct cmd_flow_director_result,
9029 			      tunnel_id_value, UINT32);
9030 
9031 cmdline_parse_inst_t cmd_add_del_ip_flow_director = {
9032 	.f = cmd_flow_director_filter_parsed,
9033 	.data = NULL,
9034 	.help_str = "flow_director_filter <port_id> mode IP add|del|update flow"
9035 		" ipv4-other|ipv4-frag|ipv4-tcp|ipv4-udp|ipv4-sctp|"
9036 		"ipv6-other|ipv6-frag|ipv6-tcp|ipv6-udp|ipv6-sctp|"
9037 		"l2_payload src <src_ip> dst <dst_ip> tos <tos_value> "
9038 		"proto <proto_value> ttl <ttl_value> vlan <vlan_value> "
9039 		"flexbytes <flexbyte_vaues> drop|fw <pf_vf> queue <queue_id> "
9040 		"fd_id <fd_id_value>: "
9041 		"Add or delete an ip flow director entry on NIC",
9042 	.tokens = {
9043 		(void *)&cmd_flow_director_filter,
9044 		(void *)&cmd_flow_director_port_id,
9045 		(void *)&cmd_flow_director_mode,
9046 		(void *)&cmd_flow_director_mode_ip,
9047 		(void *)&cmd_flow_director_ops,
9048 		(void *)&cmd_flow_director_flow,
9049 		(void *)&cmd_flow_director_flow_type,
9050 		(void *)&cmd_flow_director_src,
9051 		(void *)&cmd_flow_director_ip_src,
9052 		(void *)&cmd_flow_director_dst,
9053 		(void *)&cmd_flow_director_ip_dst,
9054 		(void *)&cmd_flow_director_tos,
9055 		(void *)&cmd_flow_director_tos_value,
9056 		(void *)&cmd_flow_director_proto,
9057 		(void *)&cmd_flow_director_proto_value,
9058 		(void *)&cmd_flow_director_ttl,
9059 		(void *)&cmd_flow_director_ttl_value,
9060 		(void *)&cmd_flow_director_vlan,
9061 		(void *)&cmd_flow_director_vlan_value,
9062 		(void *)&cmd_flow_director_flexbytes,
9063 		(void *)&cmd_flow_director_flexbytes_value,
9064 		(void *)&cmd_flow_director_drop,
9065 		(void *)&cmd_flow_director_pf_vf,
9066 		(void *)&cmd_flow_director_queue,
9067 		(void *)&cmd_flow_director_queue_id,
9068 		(void *)&cmd_flow_director_fd_id,
9069 		(void *)&cmd_flow_director_fd_id_value,
9070 		NULL,
9071 	},
9072 };
9073 
9074 cmdline_parse_inst_t cmd_add_del_udp_flow_director = {
9075 	.f = cmd_flow_director_filter_parsed,
9076 	.data = NULL,
9077 	.help_str = "flow_director_filter ... : Add or delete an udp/tcp flow "
9078 		"director entry on NIC",
9079 	.tokens = {
9080 		(void *)&cmd_flow_director_filter,
9081 		(void *)&cmd_flow_director_port_id,
9082 		(void *)&cmd_flow_director_mode,
9083 		(void *)&cmd_flow_director_mode_ip,
9084 		(void *)&cmd_flow_director_ops,
9085 		(void *)&cmd_flow_director_flow,
9086 		(void *)&cmd_flow_director_flow_type,
9087 		(void *)&cmd_flow_director_src,
9088 		(void *)&cmd_flow_director_ip_src,
9089 		(void *)&cmd_flow_director_port_src,
9090 		(void *)&cmd_flow_director_dst,
9091 		(void *)&cmd_flow_director_ip_dst,
9092 		(void *)&cmd_flow_director_port_dst,
9093 		(void *)&cmd_flow_director_tos,
9094 		(void *)&cmd_flow_director_tos_value,
9095 		(void *)&cmd_flow_director_ttl,
9096 		(void *)&cmd_flow_director_ttl_value,
9097 		(void *)&cmd_flow_director_vlan,
9098 		(void *)&cmd_flow_director_vlan_value,
9099 		(void *)&cmd_flow_director_flexbytes,
9100 		(void *)&cmd_flow_director_flexbytes_value,
9101 		(void *)&cmd_flow_director_drop,
9102 		(void *)&cmd_flow_director_pf_vf,
9103 		(void *)&cmd_flow_director_queue,
9104 		(void *)&cmd_flow_director_queue_id,
9105 		(void *)&cmd_flow_director_fd_id,
9106 		(void *)&cmd_flow_director_fd_id_value,
9107 		NULL,
9108 	},
9109 };
9110 
9111 cmdline_parse_inst_t cmd_add_del_sctp_flow_director = {
9112 	.f = cmd_flow_director_filter_parsed,
9113 	.data = NULL,
9114 	.help_str = "flow_director_filter ... : Add or delete a sctp flow "
9115 		"director entry on NIC",
9116 	.tokens = {
9117 		(void *)&cmd_flow_director_filter,
9118 		(void *)&cmd_flow_director_port_id,
9119 		(void *)&cmd_flow_director_mode,
9120 		(void *)&cmd_flow_director_mode_ip,
9121 		(void *)&cmd_flow_director_ops,
9122 		(void *)&cmd_flow_director_flow,
9123 		(void *)&cmd_flow_director_flow_type,
9124 		(void *)&cmd_flow_director_src,
9125 		(void *)&cmd_flow_director_ip_src,
9126 		(void *)&cmd_flow_director_port_dst,
9127 		(void *)&cmd_flow_director_dst,
9128 		(void *)&cmd_flow_director_ip_dst,
9129 		(void *)&cmd_flow_director_port_dst,
9130 		(void *)&cmd_flow_director_verify_tag,
9131 		(void *)&cmd_flow_director_verify_tag_value,
9132 		(void *)&cmd_flow_director_tos,
9133 		(void *)&cmd_flow_director_tos_value,
9134 		(void *)&cmd_flow_director_ttl,
9135 		(void *)&cmd_flow_director_ttl_value,
9136 		(void *)&cmd_flow_director_vlan,
9137 		(void *)&cmd_flow_director_vlan_value,
9138 		(void *)&cmd_flow_director_flexbytes,
9139 		(void *)&cmd_flow_director_flexbytes_value,
9140 		(void *)&cmd_flow_director_drop,
9141 		(void *)&cmd_flow_director_pf_vf,
9142 		(void *)&cmd_flow_director_queue,
9143 		(void *)&cmd_flow_director_queue_id,
9144 		(void *)&cmd_flow_director_fd_id,
9145 		(void *)&cmd_flow_director_fd_id_value,
9146 		NULL,
9147 	},
9148 };
9149 
9150 cmdline_parse_inst_t cmd_add_del_l2_flow_director = {
9151 	.f = cmd_flow_director_filter_parsed,
9152 	.data = NULL,
9153 	.help_str = "flow_director_filter ... : Add or delete a L2 flow "
9154 		"director entry on NIC",
9155 	.tokens = {
9156 		(void *)&cmd_flow_director_filter,
9157 		(void *)&cmd_flow_director_port_id,
9158 		(void *)&cmd_flow_director_mode,
9159 		(void *)&cmd_flow_director_mode_ip,
9160 		(void *)&cmd_flow_director_ops,
9161 		(void *)&cmd_flow_director_flow,
9162 		(void *)&cmd_flow_director_flow_type,
9163 		(void *)&cmd_flow_director_ether,
9164 		(void *)&cmd_flow_director_ether_type,
9165 		(void *)&cmd_flow_director_flexbytes,
9166 		(void *)&cmd_flow_director_flexbytes_value,
9167 		(void *)&cmd_flow_director_drop,
9168 		(void *)&cmd_flow_director_pf_vf,
9169 		(void *)&cmd_flow_director_queue,
9170 		(void *)&cmd_flow_director_queue_id,
9171 		(void *)&cmd_flow_director_fd_id,
9172 		(void *)&cmd_flow_director_fd_id_value,
9173 		NULL,
9174 	},
9175 };
9176 
9177 cmdline_parse_inst_t cmd_add_del_mac_vlan_flow_director = {
9178 	.f = cmd_flow_director_filter_parsed,
9179 	.data = NULL,
9180 	.help_str = "flow_director_filter ... : Add or delete a MAC VLAN flow "
9181 		"director entry on NIC",
9182 	.tokens = {
9183 		(void *)&cmd_flow_director_filter,
9184 		(void *)&cmd_flow_director_port_id,
9185 		(void *)&cmd_flow_director_mode,
9186 		(void *)&cmd_flow_director_mode_mac_vlan,
9187 		(void *)&cmd_flow_director_ops,
9188 		(void *)&cmd_flow_director_mac,
9189 		(void *)&cmd_flow_director_mac_addr,
9190 		(void *)&cmd_flow_director_vlan,
9191 		(void *)&cmd_flow_director_vlan_value,
9192 		(void *)&cmd_flow_director_flexbytes,
9193 		(void *)&cmd_flow_director_flexbytes_value,
9194 		(void *)&cmd_flow_director_drop,
9195 		(void *)&cmd_flow_director_queue,
9196 		(void *)&cmd_flow_director_queue_id,
9197 		(void *)&cmd_flow_director_fd_id,
9198 		(void *)&cmd_flow_director_fd_id_value,
9199 		NULL,
9200 	},
9201 };
9202 
9203 cmdline_parse_inst_t cmd_add_del_tunnel_flow_director = {
9204 	.f = cmd_flow_director_filter_parsed,
9205 	.data = NULL,
9206 	.help_str = "flow_director_filter ... : Add or delete a tunnel flow "
9207 		"director entry on NIC",
9208 	.tokens = {
9209 		(void *)&cmd_flow_director_filter,
9210 		(void *)&cmd_flow_director_port_id,
9211 		(void *)&cmd_flow_director_mode,
9212 		(void *)&cmd_flow_director_mode_tunnel,
9213 		(void *)&cmd_flow_director_ops,
9214 		(void *)&cmd_flow_director_mac,
9215 		(void *)&cmd_flow_director_mac_addr,
9216 		(void *)&cmd_flow_director_vlan,
9217 		(void *)&cmd_flow_director_vlan_value,
9218 		(void *)&cmd_flow_director_tunnel,
9219 		(void *)&cmd_flow_director_tunnel_type,
9220 		(void *)&cmd_flow_director_tunnel_id,
9221 		(void *)&cmd_flow_director_tunnel_id_value,
9222 		(void *)&cmd_flow_director_flexbytes,
9223 		(void *)&cmd_flow_director_flexbytes_value,
9224 		(void *)&cmd_flow_director_drop,
9225 		(void *)&cmd_flow_director_queue,
9226 		(void *)&cmd_flow_director_queue_id,
9227 		(void *)&cmd_flow_director_fd_id,
9228 		(void *)&cmd_flow_director_fd_id_value,
9229 		NULL,
9230 	},
9231 };
9232 
9233 struct cmd_flush_flow_director_result {
9234 	cmdline_fixed_string_t flush_flow_director;
9235 	uint8_t port_id;
9236 };
9237 
9238 cmdline_parse_token_string_t cmd_flush_flow_director_flush =
9239 	TOKEN_STRING_INITIALIZER(struct cmd_flush_flow_director_result,
9240 				 flush_flow_director, "flush_flow_director");
9241 cmdline_parse_token_num_t cmd_flush_flow_director_port_id =
9242 	TOKEN_NUM_INITIALIZER(struct cmd_flush_flow_director_result,
9243 			      port_id, UINT8);
9244 
9245 static void
9246 cmd_flush_flow_director_parsed(void *parsed_result,
9247 			  __attribute__((unused)) struct cmdline *cl,
9248 			  __attribute__((unused)) void *data)
9249 {
9250 	struct cmd_flow_director_result *res = parsed_result;
9251 	int ret = 0;
9252 
9253 	ret = rte_eth_dev_filter_supported(res->port_id, RTE_ETH_FILTER_FDIR);
9254 	if (ret < 0) {
9255 		printf("flow director is not supported on port %u.\n",
9256 			res->port_id);
9257 		return;
9258 	}
9259 
9260 	ret = rte_eth_dev_filter_ctrl(res->port_id, RTE_ETH_FILTER_FDIR,
9261 			RTE_ETH_FILTER_FLUSH, NULL);
9262 	if (ret < 0)
9263 		printf("flow director table flushing error: (%s)\n",
9264 			strerror(-ret));
9265 }
9266 
9267 cmdline_parse_inst_t cmd_flush_flow_director = {
9268 	.f = cmd_flush_flow_director_parsed,
9269 	.data = NULL,
9270 	.help_str = "flush_flow_director <port_id>: "
9271 		"Flush all flow director entries of a device on NIC",
9272 	.tokens = {
9273 		(void *)&cmd_flush_flow_director_flush,
9274 		(void *)&cmd_flush_flow_director_port_id,
9275 		NULL,
9276 	},
9277 };
9278 
9279 /* *** deal with flow director mask *** */
9280 struct cmd_flow_director_mask_result {
9281 	cmdline_fixed_string_t flow_director_mask;
9282 	uint8_t port_id;
9283 	cmdline_fixed_string_t mode;
9284 	cmdline_fixed_string_t mode_value;
9285 	cmdline_fixed_string_t vlan;
9286 	uint16_t vlan_mask;
9287 	cmdline_fixed_string_t src_mask;
9288 	cmdline_ipaddr_t ipv4_src;
9289 	cmdline_ipaddr_t ipv6_src;
9290 	uint16_t port_src;
9291 	cmdline_fixed_string_t dst_mask;
9292 	cmdline_ipaddr_t ipv4_dst;
9293 	cmdline_ipaddr_t ipv6_dst;
9294 	uint16_t port_dst;
9295 	cmdline_fixed_string_t mac;
9296 	uint8_t mac_addr_byte_mask;
9297 	cmdline_fixed_string_t tunnel_id;
9298 	uint32_t tunnel_id_mask;
9299 	cmdline_fixed_string_t tunnel_type;
9300 	uint8_t tunnel_type_mask;
9301 };
9302 
9303 static void
9304 cmd_flow_director_mask_parsed(void *parsed_result,
9305 			  __attribute__((unused)) struct cmdline *cl,
9306 			  __attribute__((unused)) void *data)
9307 {
9308 	struct cmd_flow_director_mask_result *res = parsed_result;
9309 	struct rte_eth_fdir_masks *mask;
9310 	struct rte_port *port;
9311 
9312 	if (res->port_id > nb_ports) {
9313 		printf("Invalid port, range is [0, %d]\n", nb_ports - 1);
9314 		return;
9315 	}
9316 
9317 	port = &ports[res->port_id];
9318 	/** Check if the port is not started **/
9319 	if (port->port_status != RTE_PORT_STOPPED) {
9320 		printf("Please stop port %d first\n", res->port_id);
9321 		return;
9322 	}
9323 
9324 	mask = &port->dev_conf.fdir_conf.mask;
9325 
9326 	if (fdir_conf.mode ==  RTE_FDIR_MODE_PERFECT_MAC_VLAN) {
9327 		if (strcmp(res->mode_value, "MAC-VLAN")) {
9328 			printf("Please set mode to MAC-VLAN.\n");
9329 			return;
9330 		}
9331 
9332 		mask->vlan_tci_mask = rte_cpu_to_be_16(res->vlan_mask);
9333 	} else if (fdir_conf.mode ==  RTE_FDIR_MODE_PERFECT_TUNNEL) {
9334 		if (strcmp(res->mode_value, "Tunnel")) {
9335 			printf("Please set mode to Tunnel.\n");
9336 			return;
9337 		}
9338 
9339 		mask->vlan_tci_mask = rte_cpu_to_be_16(res->vlan_mask);
9340 		mask->mac_addr_byte_mask = res->mac_addr_byte_mask;
9341 		mask->tunnel_id_mask = rte_cpu_to_be_32(res->tunnel_id_mask);
9342 		mask->tunnel_type_mask = res->tunnel_type_mask;
9343 	} else {
9344 		if (strcmp(res->mode_value, "IP")) {
9345 			printf("Please set mode to IP.\n");
9346 			return;
9347 		}
9348 
9349 		mask->vlan_tci_mask = rte_cpu_to_be_16(res->vlan_mask);
9350 		IPV4_ADDR_TO_UINT(res->ipv4_src, mask->ipv4_mask.src_ip);
9351 		IPV4_ADDR_TO_UINT(res->ipv4_dst, mask->ipv4_mask.dst_ip);
9352 		IPV6_ADDR_TO_ARRAY(res->ipv6_src, mask->ipv6_mask.src_ip);
9353 		IPV6_ADDR_TO_ARRAY(res->ipv6_dst, mask->ipv6_mask.dst_ip);
9354 		mask->src_port_mask = rte_cpu_to_be_16(res->port_src);
9355 		mask->dst_port_mask = rte_cpu_to_be_16(res->port_dst);
9356 	}
9357 
9358 	cmd_reconfig_device_queue(res->port_id, 1, 1);
9359 }
9360 
9361 cmdline_parse_token_string_t cmd_flow_director_mask =
9362 	TOKEN_STRING_INITIALIZER(struct cmd_flow_director_mask_result,
9363 				 flow_director_mask, "flow_director_mask");
9364 cmdline_parse_token_num_t cmd_flow_director_mask_port_id =
9365 	TOKEN_NUM_INITIALIZER(struct cmd_flow_director_mask_result,
9366 			      port_id, UINT8);
9367 cmdline_parse_token_string_t cmd_flow_director_mask_vlan =
9368 	TOKEN_STRING_INITIALIZER(struct cmd_flow_director_mask_result,
9369 				 vlan, "vlan");
9370 cmdline_parse_token_num_t cmd_flow_director_mask_vlan_value =
9371 	TOKEN_NUM_INITIALIZER(struct cmd_flow_director_mask_result,
9372 			      vlan_mask, UINT16);
9373 cmdline_parse_token_string_t cmd_flow_director_mask_src =
9374 	TOKEN_STRING_INITIALIZER(struct cmd_flow_director_mask_result,
9375 				 src_mask, "src_mask");
9376 cmdline_parse_token_ipaddr_t cmd_flow_director_mask_ipv4_src =
9377 	TOKEN_IPADDR_INITIALIZER(struct cmd_flow_director_mask_result,
9378 				 ipv4_src);
9379 cmdline_parse_token_ipaddr_t cmd_flow_director_mask_ipv6_src =
9380 	TOKEN_IPADDR_INITIALIZER(struct cmd_flow_director_mask_result,
9381 				 ipv6_src);
9382 cmdline_parse_token_num_t cmd_flow_director_mask_port_src =
9383 	TOKEN_NUM_INITIALIZER(struct cmd_flow_director_mask_result,
9384 			      port_src, UINT16);
9385 cmdline_parse_token_string_t cmd_flow_director_mask_dst =
9386 	TOKEN_STRING_INITIALIZER(struct cmd_flow_director_mask_result,
9387 				 dst_mask, "dst_mask");
9388 cmdline_parse_token_ipaddr_t cmd_flow_director_mask_ipv4_dst =
9389 	TOKEN_IPADDR_INITIALIZER(struct cmd_flow_director_mask_result,
9390 				 ipv4_dst);
9391 cmdline_parse_token_ipaddr_t cmd_flow_director_mask_ipv6_dst =
9392 	TOKEN_IPADDR_INITIALIZER(struct cmd_flow_director_mask_result,
9393 				 ipv6_dst);
9394 cmdline_parse_token_num_t cmd_flow_director_mask_port_dst =
9395 	TOKEN_NUM_INITIALIZER(struct cmd_flow_director_mask_result,
9396 			      port_dst, UINT16);
9397 
9398 cmdline_parse_token_string_t cmd_flow_director_mask_mode =
9399 	TOKEN_STRING_INITIALIZER(struct cmd_flow_director_mask_result,
9400 				 mode, "mode");
9401 cmdline_parse_token_string_t cmd_flow_director_mask_mode_ip =
9402 	TOKEN_STRING_INITIALIZER(struct cmd_flow_director_mask_result,
9403 				 mode_value, "IP");
9404 cmdline_parse_token_string_t cmd_flow_director_mask_mode_mac_vlan =
9405 	TOKEN_STRING_INITIALIZER(struct cmd_flow_director_mask_result,
9406 				 mode_value, "MAC-VLAN");
9407 cmdline_parse_token_string_t cmd_flow_director_mask_mode_tunnel =
9408 	TOKEN_STRING_INITIALIZER(struct cmd_flow_director_mask_result,
9409 				 mode_value, "Tunnel");
9410 cmdline_parse_token_string_t cmd_flow_director_mask_mac =
9411 	TOKEN_STRING_INITIALIZER(struct cmd_flow_director_mask_result,
9412 				 mac, "mac");
9413 cmdline_parse_token_num_t cmd_flow_director_mask_mac_value =
9414 	TOKEN_NUM_INITIALIZER(struct cmd_flow_director_mask_result,
9415 			      mac_addr_byte_mask, UINT8);
9416 cmdline_parse_token_string_t cmd_flow_director_mask_tunnel_type =
9417 	TOKEN_STRING_INITIALIZER(struct cmd_flow_director_mask_result,
9418 				 tunnel_type, "tunnel-type");
9419 cmdline_parse_token_num_t cmd_flow_director_mask_tunnel_type_value =
9420 	TOKEN_NUM_INITIALIZER(struct cmd_flow_director_mask_result,
9421 			      tunnel_type_mask, UINT8);
9422 cmdline_parse_token_string_t cmd_flow_director_mask_tunnel_id =
9423 	TOKEN_STRING_INITIALIZER(struct cmd_flow_director_mask_result,
9424 				 tunnel_id, "tunnel-id");
9425 cmdline_parse_token_num_t cmd_flow_director_mask_tunnel_id_value =
9426 	TOKEN_NUM_INITIALIZER(struct cmd_flow_director_mask_result,
9427 			      tunnel_id_mask, UINT32);
9428 
9429 cmdline_parse_inst_t cmd_set_flow_director_ip_mask = {
9430 	.f = cmd_flow_director_mask_parsed,
9431 	.data = NULL,
9432 	.help_str = "flow_director_mask ... : "
9433 		"Set IP mode flow director's mask on NIC",
9434 	.tokens = {
9435 		(void *)&cmd_flow_director_mask,
9436 		(void *)&cmd_flow_director_mask_port_id,
9437 		(void *)&cmd_flow_director_mask_mode,
9438 		(void *)&cmd_flow_director_mask_mode_ip,
9439 		(void *)&cmd_flow_director_mask_vlan,
9440 		(void *)&cmd_flow_director_mask_vlan_value,
9441 		(void *)&cmd_flow_director_mask_src,
9442 		(void *)&cmd_flow_director_mask_ipv4_src,
9443 		(void *)&cmd_flow_director_mask_ipv6_src,
9444 		(void *)&cmd_flow_director_mask_port_src,
9445 		(void *)&cmd_flow_director_mask_dst,
9446 		(void *)&cmd_flow_director_mask_ipv4_dst,
9447 		(void *)&cmd_flow_director_mask_ipv6_dst,
9448 		(void *)&cmd_flow_director_mask_port_dst,
9449 		NULL,
9450 	},
9451 };
9452 
9453 cmdline_parse_inst_t cmd_set_flow_director_mac_vlan_mask = {
9454 	.f = cmd_flow_director_mask_parsed,
9455 	.data = NULL,
9456 	.help_str = "flow_director_mask ... : Set MAC VLAN mode "
9457 		"flow director's mask on NIC",
9458 	.tokens = {
9459 		(void *)&cmd_flow_director_mask,
9460 		(void *)&cmd_flow_director_mask_port_id,
9461 		(void *)&cmd_flow_director_mask_mode,
9462 		(void *)&cmd_flow_director_mask_mode_mac_vlan,
9463 		(void *)&cmd_flow_director_mask_vlan,
9464 		(void *)&cmd_flow_director_mask_vlan_value,
9465 		NULL,
9466 	},
9467 };
9468 
9469 cmdline_parse_inst_t cmd_set_flow_director_tunnel_mask = {
9470 	.f = cmd_flow_director_mask_parsed,
9471 	.data = NULL,
9472 	.help_str = "flow_director_mask ... : Set tunnel mode "
9473 		"flow director's mask on NIC",
9474 	.tokens = {
9475 		(void *)&cmd_flow_director_mask,
9476 		(void *)&cmd_flow_director_mask_port_id,
9477 		(void *)&cmd_flow_director_mask_mode,
9478 		(void *)&cmd_flow_director_mask_mode_tunnel,
9479 		(void *)&cmd_flow_director_mask_vlan,
9480 		(void *)&cmd_flow_director_mask_vlan_value,
9481 		(void *)&cmd_flow_director_mask_mac,
9482 		(void *)&cmd_flow_director_mask_mac_value,
9483 		(void *)&cmd_flow_director_mask_tunnel_type,
9484 		(void *)&cmd_flow_director_mask_tunnel_type_value,
9485 		(void *)&cmd_flow_director_mask_tunnel_id,
9486 		(void *)&cmd_flow_director_mask_tunnel_id_value,
9487 		NULL,
9488 	},
9489 };
9490 
9491 /* *** deal with flow director mask on flexible payload *** */
9492 struct cmd_flow_director_flex_mask_result {
9493 	cmdline_fixed_string_t flow_director_flexmask;
9494 	uint8_t port_id;
9495 	cmdline_fixed_string_t flow;
9496 	cmdline_fixed_string_t flow_type;
9497 	cmdline_fixed_string_t mask;
9498 };
9499 
9500 static void
9501 cmd_flow_director_flex_mask_parsed(void *parsed_result,
9502 			  __attribute__((unused)) struct cmdline *cl,
9503 			  __attribute__((unused)) void *data)
9504 {
9505 	struct cmd_flow_director_flex_mask_result *res = parsed_result;
9506 	struct rte_eth_fdir_info fdir_info;
9507 	struct rte_eth_fdir_flex_mask flex_mask;
9508 	struct rte_port *port;
9509 	uint32_t flow_type_mask;
9510 	uint16_t i;
9511 	int ret;
9512 
9513 	if (res->port_id > nb_ports) {
9514 		printf("Invalid port, range is [0, %d]\n", nb_ports - 1);
9515 		return;
9516 	}
9517 
9518 	port = &ports[res->port_id];
9519 	/** Check if the port is not started **/
9520 	if (port->port_status != RTE_PORT_STOPPED) {
9521 		printf("Please stop port %d first\n", res->port_id);
9522 		return;
9523 	}
9524 
9525 	memset(&flex_mask, 0, sizeof(struct rte_eth_fdir_flex_mask));
9526 	ret = parse_flexbytes(res->mask,
9527 			flex_mask.mask,
9528 			RTE_ETH_FDIR_MAX_FLEXLEN);
9529 	if (ret < 0) {
9530 		printf("error: Cannot parse mask input.\n");
9531 		return;
9532 	}
9533 
9534 	memset(&fdir_info, 0, sizeof(fdir_info));
9535 	ret = rte_eth_dev_filter_ctrl(res->port_id, RTE_ETH_FILTER_FDIR,
9536 				RTE_ETH_FILTER_INFO, &fdir_info);
9537 	if (ret < 0) {
9538 		printf("Cannot get FDir filter info\n");
9539 		return;
9540 	}
9541 
9542 	if (!strcmp(res->flow_type, "none")) {
9543 		/* means don't specify the flow type */
9544 		flex_mask.flow_type = RTE_ETH_FLOW_UNKNOWN;
9545 		for (i = 0; i < RTE_ETH_FLOW_MAX; i++)
9546 			memset(&port->dev_conf.fdir_conf.flex_conf.flex_mask[i],
9547 			       0, sizeof(struct rte_eth_fdir_flex_mask));
9548 		port->dev_conf.fdir_conf.flex_conf.nb_flexmasks = 1;
9549 		(void)rte_memcpy(&port->dev_conf.fdir_conf.flex_conf.flex_mask[0],
9550 				 &flex_mask,
9551 				 sizeof(struct rte_eth_fdir_flex_mask));
9552 		cmd_reconfig_device_queue(res->port_id, 1, 1);
9553 		return;
9554 	}
9555 	flow_type_mask = fdir_info.flow_types_mask[0];
9556 	if (!strcmp(res->flow_type, "all")) {
9557 		if (!flow_type_mask) {
9558 			printf("No flow type supported\n");
9559 			return;
9560 		}
9561 		for (i = RTE_ETH_FLOW_UNKNOWN; i < RTE_ETH_FLOW_MAX; i++) {
9562 			if (flow_type_mask & (1 << i)) {
9563 				flex_mask.flow_type = i;
9564 				fdir_set_flex_mask(res->port_id, &flex_mask);
9565 			}
9566 		}
9567 		cmd_reconfig_device_queue(res->port_id, 1, 1);
9568 		return;
9569 	}
9570 	flex_mask.flow_type = str2flowtype(res->flow_type);
9571 	if (!(flow_type_mask & (1 << flex_mask.flow_type))) {
9572 		printf("Flow type %s not supported on port %d\n",
9573 				res->flow_type, res->port_id);
9574 		return;
9575 	}
9576 	fdir_set_flex_mask(res->port_id, &flex_mask);
9577 	cmd_reconfig_device_queue(res->port_id, 1, 1);
9578 }
9579 
9580 cmdline_parse_token_string_t cmd_flow_director_flexmask =
9581 	TOKEN_STRING_INITIALIZER(struct cmd_flow_director_flex_mask_result,
9582 				 flow_director_flexmask,
9583 				 "flow_director_flex_mask");
9584 cmdline_parse_token_num_t cmd_flow_director_flexmask_port_id =
9585 	TOKEN_NUM_INITIALIZER(struct cmd_flow_director_flex_mask_result,
9586 			      port_id, UINT8);
9587 cmdline_parse_token_string_t cmd_flow_director_flexmask_flow =
9588 	TOKEN_STRING_INITIALIZER(struct cmd_flow_director_flex_mask_result,
9589 				 flow, "flow");
9590 cmdline_parse_token_string_t cmd_flow_director_flexmask_flow_type =
9591 	TOKEN_STRING_INITIALIZER(struct cmd_flow_director_flex_mask_result,
9592 		flow_type, "none#ipv4-other#ipv4-frag#ipv4-tcp#ipv4-udp#ipv4-sctp#"
9593 		"ipv6-other#ipv6-frag#ipv6-tcp#ipv6-udp#ipv6-sctp#l2_payload#all");
9594 cmdline_parse_token_string_t cmd_flow_director_flexmask_mask =
9595 	TOKEN_STRING_INITIALIZER(struct cmd_flow_director_flex_mask_result,
9596 				 mask, NULL);
9597 
9598 cmdline_parse_inst_t cmd_set_flow_director_flex_mask = {
9599 	.f = cmd_flow_director_flex_mask_parsed,
9600 	.data = NULL,
9601 	.help_str = "flow_director_flex_mask ... : "
9602 		"Set flow director's flex mask on NIC",
9603 	.tokens = {
9604 		(void *)&cmd_flow_director_flexmask,
9605 		(void *)&cmd_flow_director_flexmask_port_id,
9606 		(void *)&cmd_flow_director_flexmask_flow,
9607 		(void *)&cmd_flow_director_flexmask_flow_type,
9608 		(void *)&cmd_flow_director_flexmask_mask,
9609 		NULL,
9610 	},
9611 };
9612 
9613 /* *** deal with flow director flexible payload configuration *** */
9614 struct cmd_flow_director_flexpayload_result {
9615 	cmdline_fixed_string_t flow_director_flexpayload;
9616 	uint8_t port_id;
9617 	cmdline_fixed_string_t payload_layer;
9618 	cmdline_fixed_string_t payload_cfg;
9619 };
9620 
9621 static inline int
9622 parse_offsets(const char *q_arg, uint16_t *offsets, uint16_t max_num)
9623 {
9624 	char s[256];
9625 	const char *p, *p0 = q_arg;
9626 	char *end;
9627 	unsigned long int_fld;
9628 	char *str_fld[max_num];
9629 	int i;
9630 	unsigned size;
9631 	int ret = -1;
9632 
9633 	p = strchr(p0, '(');
9634 	if (p == NULL)
9635 		return -1;
9636 	++p;
9637 	p0 = strchr(p, ')');
9638 	if (p0 == NULL)
9639 		return -1;
9640 
9641 	size = p0 - p;
9642 	if (size >= sizeof(s))
9643 		return -1;
9644 
9645 	snprintf(s, sizeof(s), "%.*s", size, p);
9646 	ret = rte_strsplit(s, sizeof(s), str_fld, max_num, ',');
9647 	if (ret < 0 || ret > max_num)
9648 		return -1;
9649 	for (i = 0; i < ret; i++) {
9650 		errno = 0;
9651 		int_fld = strtoul(str_fld[i], &end, 0);
9652 		if (errno != 0 || *end != '\0' || int_fld > UINT16_MAX)
9653 			return -1;
9654 		offsets[i] = (uint16_t)int_fld;
9655 	}
9656 	return ret;
9657 }
9658 
9659 static void
9660 cmd_flow_director_flxpld_parsed(void *parsed_result,
9661 			  __attribute__((unused)) struct cmdline *cl,
9662 			  __attribute__((unused)) void *data)
9663 {
9664 	struct cmd_flow_director_flexpayload_result *res = parsed_result;
9665 	struct rte_eth_flex_payload_cfg flex_cfg;
9666 	struct rte_port *port;
9667 	int ret = 0;
9668 
9669 	if (res->port_id > nb_ports) {
9670 		printf("Invalid port, range is [0, %d]\n", nb_ports - 1);
9671 		return;
9672 	}
9673 
9674 	port = &ports[res->port_id];
9675 	/** Check if the port is not started **/
9676 	if (port->port_status != RTE_PORT_STOPPED) {
9677 		printf("Please stop port %d first\n", res->port_id);
9678 		return;
9679 	}
9680 
9681 	memset(&flex_cfg, 0, sizeof(struct rte_eth_flex_payload_cfg));
9682 
9683 	if (!strcmp(res->payload_layer, "raw"))
9684 		flex_cfg.type = RTE_ETH_RAW_PAYLOAD;
9685 	else if (!strcmp(res->payload_layer, "l2"))
9686 		flex_cfg.type = RTE_ETH_L2_PAYLOAD;
9687 	else if (!strcmp(res->payload_layer, "l3"))
9688 		flex_cfg.type = RTE_ETH_L3_PAYLOAD;
9689 	else if (!strcmp(res->payload_layer, "l4"))
9690 		flex_cfg.type = RTE_ETH_L4_PAYLOAD;
9691 
9692 	ret = parse_offsets(res->payload_cfg, flex_cfg.src_offset,
9693 			    RTE_ETH_FDIR_MAX_FLEXLEN);
9694 	if (ret < 0) {
9695 		printf("error: Cannot parse flex payload input.\n");
9696 		return;
9697 	}
9698 
9699 	fdir_set_flex_payload(res->port_id, &flex_cfg);
9700 	cmd_reconfig_device_queue(res->port_id, 1, 1);
9701 }
9702 
9703 cmdline_parse_token_string_t cmd_flow_director_flexpayload =
9704 	TOKEN_STRING_INITIALIZER(struct cmd_flow_director_flexpayload_result,
9705 				 flow_director_flexpayload,
9706 				 "flow_director_flex_payload");
9707 cmdline_parse_token_num_t cmd_flow_director_flexpayload_port_id =
9708 	TOKEN_NUM_INITIALIZER(struct cmd_flow_director_flexpayload_result,
9709 			      port_id, UINT8);
9710 cmdline_parse_token_string_t cmd_flow_director_flexpayload_payload_layer =
9711 	TOKEN_STRING_INITIALIZER(struct cmd_flow_director_flexpayload_result,
9712 				 payload_layer, "raw#l2#l3#l4");
9713 cmdline_parse_token_string_t cmd_flow_director_flexpayload_payload_cfg =
9714 	TOKEN_STRING_INITIALIZER(struct cmd_flow_director_flexpayload_result,
9715 				 payload_cfg, NULL);
9716 
9717 cmdline_parse_inst_t cmd_set_flow_director_flex_payload = {
9718 	.f = cmd_flow_director_flxpld_parsed,
9719 	.data = NULL,
9720 	.help_str = "flow_director_flexpayload ... : "
9721 		"Set flow director's flex payload on NIC",
9722 	.tokens = {
9723 		(void *)&cmd_flow_director_flexpayload,
9724 		(void *)&cmd_flow_director_flexpayload_port_id,
9725 		(void *)&cmd_flow_director_flexpayload_payload_layer,
9726 		(void *)&cmd_flow_director_flexpayload_payload_cfg,
9727 		NULL,
9728 	},
9729 };
9730 
9731 /* Generic flow interface command. */
9732 extern cmdline_parse_inst_t cmd_flow;
9733 
9734 /* *** Classification Filters Control *** */
9735 /* *** Get symmetric hash enable per port *** */
9736 struct cmd_get_sym_hash_ena_per_port_result {
9737 	cmdline_fixed_string_t get_sym_hash_ena_per_port;
9738 	uint8_t port_id;
9739 };
9740 
9741 static void
9742 cmd_get_sym_hash_per_port_parsed(void *parsed_result,
9743 				 __rte_unused struct cmdline *cl,
9744 				 __rte_unused void *data)
9745 {
9746 	struct cmd_get_sym_hash_ena_per_port_result *res = parsed_result;
9747 	struct rte_eth_hash_filter_info info;
9748 	int ret;
9749 
9750 	if (rte_eth_dev_filter_supported(res->port_id,
9751 				RTE_ETH_FILTER_HASH) < 0) {
9752 		printf("RTE_ETH_FILTER_HASH not supported on port: %d\n",
9753 							res->port_id);
9754 		return;
9755 	}
9756 
9757 	memset(&info, 0, sizeof(info));
9758 	info.info_type = RTE_ETH_HASH_FILTER_SYM_HASH_ENA_PER_PORT;
9759 	ret = rte_eth_dev_filter_ctrl(res->port_id, RTE_ETH_FILTER_HASH,
9760 						RTE_ETH_FILTER_GET, &info);
9761 
9762 	if (ret < 0) {
9763 		printf("Cannot get symmetric hash enable per port "
9764 					"on port %u\n", res->port_id);
9765 		return;
9766 	}
9767 
9768 	printf("Symmetric hash is %s on port %u\n", info.info.enable ?
9769 				"enabled" : "disabled", res->port_id);
9770 }
9771 
9772 cmdline_parse_token_string_t cmd_get_sym_hash_ena_per_port_all =
9773 	TOKEN_STRING_INITIALIZER(struct cmd_get_sym_hash_ena_per_port_result,
9774 		get_sym_hash_ena_per_port, "get_sym_hash_ena_per_port");
9775 cmdline_parse_token_num_t cmd_get_sym_hash_ena_per_port_port_id =
9776 	TOKEN_NUM_INITIALIZER(struct cmd_get_sym_hash_ena_per_port_result,
9777 		port_id, UINT8);
9778 
9779 cmdline_parse_inst_t cmd_get_sym_hash_ena_per_port = {
9780 	.f = cmd_get_sym_hash_per_port_parsed,
9781 	.data = NULL,
9782 	.help_str = "get_sym_hash_ena_per_port <port_id>",
9783 	.tokens = {
9784 		(void *)&cmd_get_sym_hash_ena_per_port_all,
9785 		(void *)&cmd_get_sym_hash_ena_per_port_port_id,
9786 		NULL,
9787 	},
9788 };
9789 
9790 /* *** Set symmetric hash enable per port *** */
9791 struct cmd_set_sym_hash_ena_per_port_result {
9792 	cmdline_fixed_string_t set_sym_hash_ena_per_port;
9793 	cmdline_fixed_string_t enable;
9794 	uint8_t port_id;
9795 };
9796 
9797 static void
9798 cmd_set_sym_hash_per_port_parsed(void *parsed_result,
9799 				 __rte_unused struct cmdline *cl,
9800 				 __rte_unused void *data)
9801 {
9802 	struct cmd_set_sym_hash_ena_per_port_result *res = parsed_result;
9803 	struct rte_eth_hash_filter_info info;
9804 	int ret;
9805 
9806 	if (rte_eth_dev_filter_supported(res->port_id,
9807 				RTE_ETH_FILTER_HASH) < 0) {
9808 		printf("RTE_ETH_FILTER_HASH not supported on port: %d\n",
9809 							res->port_id);
9810 		return;
9811 	}
9812 
9813 	memset(&info, 0, sizeof(info));
9814 	info.info_type = RTE_ETH_HASH_FILTER_SYM_HASH_ENA_PER_PORT;
9815 	if (!strcmp(res->enable, "enable"))
9816 		info.info.enable = 1;
9817 	ret = rte_eth_dev_filter_ctrl(res->port_id, RTE_ETH_FILTER_HASH,
9818 					RTE_ETH_FILTER_SET, &info);
9819 	if (ret < 0) {
9820 		printf("Cannot set symmetric hash enable per port on "
9821 					"port %u\n", res->port_id);
9822 		return;
9823 	}
9824 	printf("Symmetric hash has been set to %s on port %u\n",
9825 					res->enable, res->port_id);
9826 }
9827 
9828 cmdline_parse_token_string_t cmd_set_sym_hash_ena_per_port_all =
9829 	TOKEN_STRING_INITIALIZER(struct cmd_set_sym_hash_ena_per_port_result,
9830 		set_sym_hash_ena_per_port, "set_sym_hash_ena_per_port");
9831 cmdline_parse_token_num_t cmd_set_sym_hash_ena_per_port_port_id =
9832 	TOKEN_NUM_INITIALIZER(struct cmd_set_sym_hash_ena_per_port_result,
9833 		port_id, UINT8);
9834 cmdline_parse_token_string_t cmd_set_sym_hash_ena_per_port_enable =
9835 	TOKEN_STRING_INITIALIZER(struct cmd_set_sym_hash_ena_per_port_result,
9836 		enable, "enable#disable");
9837 
9838 cmdline_parse_inst_t cmd_set_sym_hash_ena_per_port = {
9839 	.f = cmd_set_sym_hash_per_port_parsed,
9840 	.data = NULL,
9841 	.help_str = "set_sym_hash_ena_per_port <port_id> enable|disable",
9842 	.tokens = {
9843 		(void *)&cmd_set_sym_hash_ena_per_port_all,
9844 		(void *)&cmd_set_sym_hash_ena_per_port_port_id,
9845 		(void *)&cmd_set_sym_hash_ena_per_port_enable,
9846 		NULL,
9847 	},
9848 };
9849 
9850 /* Get global config of hash function */
9851 struct cmd_get_hash_global_config_result {
9852 	cmdline_fixed_string_t get_hash_global_config;
9853 	uint8_t port_id;
9854 };
9855 
9856 static char *
9857 flowtype_to_str(uint16_t ftype)
9858 {
9859 	uint16_t i;
9860 	static struct {
9861 		char str[16];
9862 		uint16_t ftype;
9863 	} ftype_table[] = {
9864 		{"ipv4", RTE_ETH_FLOW_IPV4},
9865 		{"ipv4-frag", RTE_ETH_FLOW_FRAG_IPV4},
9866 		{"ipv4-tcp", RTE_ETH_FLOW_NONFRAG_IPV4_TCP},
9867 		{"ipv4-udp", RTE_ETH_FLOW_NONFRAG_IPV4_UDP},
9868 		{"ipv4-sctp", RTE_ETH_FLOW_NONFRAG_IPV4_SCTP},
9869 		{"ipv4-other", RTE_ETH_FLOW_NONFRAG_IPV4_OTHER},
9870 		{"ipv6", RTE_ETH_FLOW_IPV6},
9871 		{"ipv6-frag", RTE_ETH_FLOW_FRAG_IPV6},
9872 		{"ipv6-tcp", RTE_ETH_FLOW_NONFRAG_IPV6_TCP},
9873 		{"ipv6-udp", RTE_ETH_FLOW_NONFRAG_IPV6_UDP},
9874 		{"ipv6-sctp", RTE_ETH_FLOW_NONFRAG_IPV6_SCTP},
9875 		{"ipv6-other", RTE_ETH_FLOW_NONFRAG_IPV6_OTHER},
9876 		{"l2_payload", RTE_ETH_FLOW_L2_PAYLOAD},
9877 		{"port", RTE_ETH_FLOW_PORT},
9878 		{"vxlan", RTE_ETH_FLOW_VXLAN},
9879 		{"geneve", RTE_ETH_FLOW_GENEVE},
9880 		{"nvgre", RTE_ETH_FLOW_NVGRE},
9881 	};
9882 
9883 	for (i = 0; i < RTE_DIM(ftype_table); i++) {
9884 		if (ftype_table[i].ftype == ftype)
9885 			return ftype_table[i].str;
9886 	}
9887 
9888 	return NULL;
9889 }
9890 
9891 static void
9892 cmd_get_hash_global_config_parsed(void *parsed_result,
9893 				  __rte_unused struct cmdline *cl,
9894 				  __rte_unused void *data)
9895 {
9896 	struct cmd_get_hash_global_config_result *res = parsed_result;
9897 	struct rte_eth_hash_filter_info info;
9898 	uint32_t idx, offset;
9899 	uint16_t i;
9900 	char *str;
9901 	int ret;
9902 
9903 	if (rte_eth_dev_filter_supported(res->port_id,
9904 			RTE_ETH_FILTER_HASH) < 0) {
9905 		printf("RTE_ETH_FILTER_HASH not supported on port %d\n",
9906 							res->port_id);
9907 		return;
9908 	}
9909 
9910 	memset(&info, 0, sizeof(info));
9911 	info.info_type = RTE_ETH_HASH_FILTER_GLOBAL_CONFIG;
9912 	ret = rte_eth_dev_filter_ctrl(res->port_id, RTE_ETH_FILTER_HASH,
9913 					RTE_ETH_FILTER_GET, &info);
9914 	if (ret < 0) {
9915 		printf("Cannot get hash global configurations by port %d\n",
9916 							res->port_id);
9917 		return;
9918 	}
9919 
9920 	switch (info.info.global_conf.hash_func) {
9921 	case RTE_ETH_HASH_FUNCTION_TOEPLITZ:
9922 		printf("Hash function is Toeplitz\n");
9923 		break;
9924 	case RTE_ETH_HASH_FUNCTION_SIMPLE_XOR:
9925 		printf("Hash function is Simple XOR\n");
9926 		break;
9927 	default:
9928 		printf("Unknown hash function\n");
9929 		break;
9930 	}
9931 
9932 	for (i = 0; i < RTE_ETH_FLOW_MAX; i++) {
9933 		idx = i / UINT32_BIT;
9934 		offset = i % UINT32_BIT;
9935 		if (!(info.info.global_conf.valid_bit_mask[idx] &
9936 						(1UL << offset)))
9937 			continue;
9938 		str = flowtype_to_str(i);
9939 		if (!str)
9940 			continue;
9941 		printf("Symmetric hash is %s globally for flow type %s "
9942 							"by port %d\n",
9943 			((info.info.global_conf.sym_hash_enable_mask[idx] &
9944 			(1UL << offset)) ? "enabled" : "disabled"), str,
9945 							res->port_id);
9946 	}
9947 }
9948 
9949 cmdline_parse_token_string_t cmd_get_hash_global_config_all =
9950 	TOKEN_STRING_INITIALIZER(struct cmd_get_hash_global_config_result,
9951 		get_hash_global_config, "get_hash_global_config");
9952 cmdline_parse_token_num_t cmd_get_hash_global_config_port_id =
9953 	TOKEN_NUM_INITIALIZER(struct cmd_get_hash_global_config_result,
9954 		port_id, UINT8);
9955 
9956 cmdline_parse_inst_t cmd_get_hash_global_config = {
9957 	.f = cmd_get_hash_global_config_parsed,
9958 	.data = NULL,
9959 	.help_str = "get_hash_global_config <port_id>",
9960 	.tokens = {
9961 		(void *)&cmd_get_hash_global_config_all,
9962 		(void *)&cmd_get_hash_global_config_port_id,
9963 		NULL,
9964 	},
9965 };
9966 
9967 /* Set global config of hash function */
9968 struct cmd_set_hash_global_config_result {
9969 	cmdline_fixed_string_t set_hash_global_config;
9970 	uint8_t port_id;
9971 	cmdline_fixed_string_t hash_func;
9972 	cmdline_fixed_string_t flow_type;
9973 	cmdline_fixed_string_t enable;
9974 };
9975 
9976 static void
9977 cmd_set_hash_global_config_parsed(void *parsed_result,
9978 				  __rte_unused struct cmdline *cl,
9979 				  __rte_unused void *data)
9980 {
9981 	struct cmd_set_hash_global_config_result *res = parsed_result;
9982 	struct rte_eth_hash_filter_info info;
9983 	uint32_t ftype, idx, offset;
9984 	int ret;
9985 
9986 	if (rte_eth_dev_filter_supported(res->port_id,
9987 				RTE_ETH_FILTER_HASH) < 0) {
9988 		printf("RTE_ETH_FILTER_HASH not supported on port %d\n",
9989 							res->port_id);
9990 		return;
9991 	}
9992 	memset(&info, 0, sizeof(info));
9993 	info.info_type = RTE_ETH_HASH_FILTER_GLOBAL_CONFIG;
9994 	if (!strcmp(res->hash_func, "toeplitz"))
9995 		info.info.global_conf.hash_func =
9996 			RTE_ETH_HASH_FUNCTION_TOEPLITZ;
9997 	else if (!strcmp(res->hash_func, "simple_xor"))
9998 		info.info.global_conf.hash_func =
9999 			RTE_ETH_HASH_FUNCTION_SIMPLE_XOR;
10000 	else if (!strcmp(res->hash_func, "default"))
10001 		info.info.global_conf.hash_func =
10002 			RTE_ETH_HASH_FUNCTION_DEFAULT;
10003 
10004 	ftype = str2flowtype(res->flow_type);
10005 	idx = ftype / (CHAR_BIT * sizeof(uint32_t));
10006 	offset = ftype % (CHAR_BIT * sizeof(uint32_t));
10007 	info.info.global_conf.valid_bit_mask[idx] |= (1UL << offset);
10008 	if (!strcmp(res->enable, "enable"))
10009 		info.info.global_conf.sym_hash_enable_mask[idx] |=
10010 						(1UL << offset);
10011 	ret = rte_eth_dev_filter_ctrl(res->port_id, RTE_ETH_FILTER_HASH,
10012 					RTE_ETH_FILTER_SET, &info);
10013 	if (ret < 0)
10014 		printf("Cannot set global hash configurations by port %d\n",
10015 							res->port_id);
10016 	else
10017 		printf("Global hash configurations have been set "
10018 			"succcessfully by port %d\n", res->port_id);
10019 }
10020 
10021 cmdline_parse_token_string_t cmd_set_hash_global_config_all =
10022 	TOKEN_STRING_INITIALIZER(struct cmd_set_hash_global_config_result,
10023 		set_hash_global_config, "set_hash_global_config");
10024 cmdline_parse_token_num_t cmd_set_hash_global_config_port_id =
10025 	TOKEN_NUM_INITIALIZER(struct cmd_set_hash_global_config_result,
10026 		port_id, UINT8);
10027 cmdline_parse_token_string_t cmd_set_hash_global_config_hash_func =
10028 	TOKEN_STRING_INITIALIZER(struct cmd_set_hash_global_config_result,
10029 		hash_func, "toeplitz#simple_xor#default");
10030 cmdline_parse_token_string_t cmd_set_hash_global_config_flow_type =
10031 	TOKEN_STRING_INITIALIZER(struct cmd_set_hash_global_config_result,
10032 		flow_type,
10033 		"ipv4#ipv4-frag#ipv4-tcp#ipv4-udp#ipv4-sctp#ipv4-other#ipv6#"
10034 		"ipv6-frag#ipv6-tcp#ipv6-udp#ipv6-sctp#ipv6-other#l2_payload");
10035 cmdline_parse_token_string_t cmd_set_hash_global_config_enable =
10036 	TOKEN_STRING_INITIALIZER(struct cmd_set_hash_global_config_result,
10037 		enable, "enable#disable");
10038 
10039 cmdline_parse_inst_t cmd_set_hash_global_config = {
10040 	.f = cmd_set_hash_global_config_parsed,
10041 	.data = NULL,
10042 	.help_str = "set_hash_global_config <port_id> "
10043 		"toeplitz|simple_xor|default "
10044 		"ipv4|ipv4-frag|ipv4-tcp|ipv4-udp|ipv4-sctp|ipv4-other|"
10045 		"ipv6|ipv6-frag|ipv6-tcp|ipv6-udp|ipv6-sctp|ipv6-other|"
10046 		"l2_payload enable|disable",
10047 	.tokens = {
10048 		(void *)&cmd_set_hash_global_config_all,
10049 		(void *)&cmd_set_hash_global_config_port_id,
10050 		(void *)&cmd_set_hash_global_config_hash_func,
10051 		(void *)&cmd_set_hash_global_config_flow_type,
10052 		(void *)&cmd_set_hash_global_config_enable,
10053 		NULL,
10054 	},
10055 };
10056 
10057 /* Set hash input set */
10058 struct cmd_set_hash_input_set_result {
10059 	cmdline_fixed_string_t set_hash_input_set;
10060 	uint8_t port_id;
10061 	cmdline_fixed_string_t flow_type;
10062 	cmdline_fixed_string_t inset_field;
10063 	cmdline_fixed_string_t select;
10064 };
10065 
10066 static enum rte_eth_input_set_field
10067 str2inset(char *string)
10068 {
10069 	uint16_t i;
10070 
10071 	static const struct {
10072 		char str[32];
10073 		enum rte_eth_input_set_field inset;
10074 	} inset_table[] = {
10075 		{"ethertype", RTE_ETH_INPUT_SET_L2_ETHERTYPE},
10076 		{"ovlan", RTE_ETH_INPUT_SET_L2_OUTER_VLAN},
10077 		{"ivlan", RTE_ETH_INPUT_SET_L2_INNER_VLAN},
10078 		{"src-ipv4", RTE_ETH_INPUT_SET_L3_SRC_IP4},
10079 		{"dst-ipv4", RTE_ETH_INPUT_SET_L3_DST_IP4},
10080 		{"ipv4-tos", RTE_ETH_INPUT_SET_L3_IP4_TOS},
10081 		{"ipv4-proto", RTE_ETH_INPUT_SET_L3_IP4_PROTO},
10082 		{"ipv4-ttl", RTE_ETH_INPUT_SET_L3_IP4_TTL},
10083 		{"src-ipv6", RTE_ETH_INPUT_SET_L3_SRC_IP6},
10084 		{"dst-ipv6", RTE_ETH_INPUT_SET_L3_DST_IP6},
10085 		{"ipv6-tc", RTE_ETH_INPUT_SET_L3_IP6_TC},
10086 		{"ipv6-next-header", RTE_ETH_INPUT_SET_L3_IP6_NEXT_HEADER},
10087 		{"ipv6-hop-limits", RTE_ETH_INPUT_SET_L3_IP6_HOP_LIMITS},
10088 		{"udp-src-port", RTE_ETH_INPUT_SET_L4_UDP_SRC_PORT},
10089 		{"udp-dst-port", RTE_ETH_INPUT_SET_L4_UDP_DST_PORT},
10090 		{"tcp-src-port", RTE_ETH_INPUT_SET_L4_TCP_SRC_PORT},
10091 		{"tcp-dst-port", RTE_ETH_INPUT_SET_L4_TCP_DST_PORT},
10092 		{"sctp-src-port", RTE_ETH_INPUT_SET_L4_SCTP_SRC_PORT},
10093 		{"sctp-dst-port", RTE_ETH_INPUT_SET_L4_SCTP_DST_PORT},
10094 		{"sctp-veri-tag", RTE_ETH_INPUT_SET_L4_SCTP_VERIFICATION_TAG},
10095 		{"udp-key", RTE_ETH_INPUT_SET_TUNNEL_L4_UDP_KEY},
10096 		{"gre-key", RTE_ETH_INPUT_SET_TUNNEL_GRE_KEY},
10097 		{"fld-1st", RTE_ETH_INPUT_SET_FLEX_PAYLOAD_1ST_WORD},
10098 		{"fld-2nd", RTE_ETH_INPUT_SET_FLEX_PAYLOAD_2ND_WORD},
10099 		{"fld-3rd", RTE_ETH_INPUT_SET_FLEX_PAYLOAD_3RD_WORD},
10100 		{"fld-4th", RTE_ETH_INPUT_SET_FLEX_PAYLOAD_4TH_WORD},
10101 		{"fld-5th", RTE_ETH_INPUT_SET_FLEX_PAYLOAD_5TH_WORD},
10102 		{"fld-6th", RTE_ETH_INPUT_SET_FLEX_PAYLOAD_6TH_WORD},
10103 		{"fld-7th", RTE_ETH_INPUT_SET_FLEX_PAYLOAD_7TH_WORD},
10104 		{"fld-8th", RTE_ETH_INPUT_SET_FLEX_PAYLOAD_8TH_WORD},
10105 		{"none", RTE_ETH_INPUT_SET_NONE},
10106 	};
10107 
10108 	for (i = 0; i < RTE_DIM(inset_table); i++) {
10109 		if (!strcmp(string, inset_table[i].str))
10110 			return inset_table[i].inset;
10111 	}
10112 
10113 	return RTE_ETH_INPUT_SET_UNKNOWN;
10114 }
10115 
10116 static void
10117 cmd_set_hash_input_set_parsed(void *parsed_result,
10118 			      __rte_unused struct cmdline *cl,
10119 			      __rte_unused void *data)
10120 {
10121 	struct cmd_set_hash_input_set_result *res = parsed_result;
10122 	struct rte_eth_hash_filter_info info;
10123 
10124 	memset(&info, 0, sizeof(info));
10125 	info.info_type = RTE_ETH_HASH_FILTER_INPUT_SET_SELECT;
10126 	info.info.input_set_conf.flow_type = str2flowtype(res->flow_type);
10127 	info.info.input_set_conf.field[0] = str2inset(res->inset_field);
10128 	info.info.input_set_conf.inset_size = 1;
10129 	if (!strcmp(res->select, "select"))
10130 		info.info.input_set_conf.op = RTE_ETH_INPUT_SET_SELECT;
10131 	else if (!strcmp(res->select, "add"))
10132 		info.info.input_set_conf.op = RTE_ETH_INPUT_SET_ADD;
10133 	rte_eth_dev_filter_ctrl(res->port_id, RTE_ETH_FILTER_HASH,
10134 				RTE_ETH_FILTER_SET, &info);
10135 }
10136 
10137 cmdline_parse_token_string_t cmd_set_hash_input_set_cmd =
10138 	TOKEN_STRING_INITIALIZER(struct cmd_set_hash_input_set_result,
10139 		set_hash_input_set, "set_hash_input_set");
10140 cmdline_parse_token_num_t cmd_set_hash_input_set_port_id =
10141 	TOKEN_NUM_INITIALIZER(struct cmd_set_hash_input_set_result,
10142 		port_id, UINT8);
10143 cmdline_parse_token_string_t cmd_set_hash_input_set_flow_type =
10144 	TOKEN_STRING_INITIALIZER(struct cmd_set_hash_input_set_result,
10145 		flow_type,
10146 		"ipv4-frag#ipv4-tcp#ipv4-udp#ipv4-sctp#ipv4-other#"
10147 		"ipv6-frag#ipv6-tcp#ipv6-udp#ipv6-sctp#ipv6-other#l2_payload");
10148 cmdline_parse_token_string_t cmd_set_hash_input_set_field =
10149 	TOKEN_STRING_INITIALIZER(struct cmd_set_hash_input_set_result,
10150 		inset_field,
10151 		"ovlan#ivlan#src-ipv4#dst-ipv4#src-ipv6#dst-ipv6#"
10152 		"ipv4-tos#ipv4-proto#ipv6-tc#ipv6-next-header#udp-src-port#"
10153 		"udp-dst-port#tcp-src-port#tcp-dst-port#sctp-src-port#"
10154 		"sctp-dst-port#sctp-veri-tag#udp-key#gre-key#fld-1st#"
10155 		"fld-2nd#fld-3rd#fld-4th#fld-5th#fld-6th#fld-7th#"
10156 		"fld-8th#none");
10157 cmdline_parse_token_string_t cmd_set_hash_input_set_select =
10158 	TOKEN_STRING_INITIALIZER(struct cmd_set_hash_input_set_result,
10159 		select, "select#add");
10160 
10161 cmdline_parse_inst_t cmd_set_hash_input_set = {
10162 	.f = cmd_set_hash_input_set_parsed,
10163 	.data = NULL,
10164 	.help_str = "set_hash_input_set <port_id> "
10165 	"ipv4-frag|ipv4-tcp|ipv4-udp|ipv4-sctp|ipv4-other|"
10166 	"ipv6-frag|ipv6-tcp|ipv6-udp|ipv6-sctp|ipv6-other|l2_payload "
10167 	"ovlan|ivlan|src-ipv4|dst-ipv4|src-ipv6|dst-ipv6|ipv4-tos|ipv4-proto|"
10168 	"ipv6-tc|ipv6-next-header|udp-src-port|udp-dst-port|tcp-src-port|"
10169 	"tcp-dst-port|sctp-src-port|sctp-dst-port|sctp-veri-tag|udp-key|"
10170 	"gre-key|fld-1st|fld-2nd|fld-3rd|fld-4th|fld-5th|fld-6th|"
10171 	"fld-7th|fld-8th|none select|add",
10172 	.tokens = {
10173 		(void *)&cmd_set_hash_input_set_cmd,
10174 		(void *)&cmd_set_hash_input_set_port_id,
10175 		(void *)&cmd_set_hash_input_set_flow_type,
10176 		(void *)&cmd_set_hash_input_set_field,
10177 		(void *)&cmd_set_hash_input_set_select,
10178 		NULL,
10179 	},
10180 };
10181 
10182 /* Set flow director input set */
10183 struct cmd_set_fdir_input_set_result {
10184 	cmdline_fixed_string_t set_fdir_input_set;
10185 	uint8_t port_id;
10186 	cmdline_fixed_string_t flow_type;
10187 	cmdline_fixed_string_t inset_field;
10188 	cmdline_fixed_string_t select;
10189 };
10190 
10191 static void
10192 cmd_set_fdir_input_set_parsed(void *parsed_result,
10193 	__rte_unused struct cmdline *cl,
10194 	__rte_unused void *data)
10195 {
10196 	struct cmd_set_fdir_input_set_result *res = parsed_result;
10197 	struct rte_eth_fdir_filter_info info;
10198 
10199 	memset(&info, 0, sizeof(info));
10200 	info.info_type = RTE_ETH_FDIR_FILTER_INPUT_SET_SELECT;
10201 	info.info.input_set_conf.flow_type = str2flowtype(res->flow_type);
10202 	info.info.input_set_conf.field[0] = str2inset(res->inset_field);
10203 	info.info.input_set_conf.inset_size = 1;
10204 	if (!strcmp(res->select, "select"))
10205 		info.info.input_set_conf.op = RTE_ETH_INPUT_SET_SELECT;
10206 	else if (!strcmp(res->select, "add"))
10207 		info.info.input_set_conf.op = RTE_ETH_INPUT_SET_ADD;
10208 	rte_eth_dev_filter_ctrl(res->port_id, RTE_ETH_FILTER_FDIR,
10209 		RTE_ETH_FILTER_SET, &info);
10210 }
10211 
10212 cmdline_parse_token_string_t cmd_set_fdir_input_set_cmd =
10213 	TOKEN_STRING_INITIALIZER(struct cmd_set_fdir_input_set_result,
10214 	set_fdir_input_set, "set_fdir_input_set");
10215 cmdline_parse_token_num_t cmd_set_fdir_input_set_port_id =
10216 	TOKEN_NUM_INITIALIZER(struct cmd_set_fdir_input_set_result,
10217 	port_id, UINT8);
10218 cmdline_parse_token_string_t cmd_set_fdir_input_set_flow_type =
10219 	TOKEN_STRING_INITIALIZER(struct cmd_set_fdir_input_set_result,
10220 	flow_type,
10221 	"ipv4-frag#ipv4-tcp#ipv4-udp#ipv4-sctp#ipv4-other#"
10222 	"ipv6-frag#ipv6-tcp#ipv6-udp#ipv6-sctp#ipv6-other#l2_payload");
10223 cmdline_parse_token_string_t cmd_set_fdir_input_set_field =
10224 	TOKEN_STRING_INITIALIZER(struct cmd_set_fdir_input_set_result,
10225 	inset_field,
10226 	"ivlan#ethertype#src-ipv4#dst-ipv4#src-ipv6#dst-ipv6#"
10227 	"ipv4-tos#ipv4-proto#ipv4-ttl#ipv6-tc#ipv6-next-header#"
10228 	"ipv6-hop-limits#udp-src-port#udp-dst-port#"
10229 	"tcp-src-port#tcp-dst-port#sctp-src-port#sctp-dst-port#"
10230 	"sctp-veri-tag#none");
10231 cmdline_parse_token_string_t cmd_set_fdir_input_set_select =
10232 	TOKEN_STRING_INITIALIZER(struct cmd_set_fdir_input_set_result,
10233 	select, "select#add");
10234 
10235 cmdline_parse_inst_t cmd_set_fdir_input_set = {
10236 	.f = cmd_set_fdir_input_set_parsed,
10237 	.data = NULL,
10238 	.help_str = "set_fdir_input_set <port_id> "
10239 	"ipv4-frag|ipv4-tcp|ipv4-udp|ipv4-sctp|ipv4-other|"
10240 	"ipv6-frag|ipv6-tcp|ipv6-udp|ipv6-sctp|ipv6-other|l2_payload "
10241 	"ivlan|ethertype|src-ipv4|dst-ipv4|src-ipv6|dst-ipv6|"
10242 	"ipv4-tos|ipv4-proto|ipv4-ttl|ipv6-tc|ipv6-next-header|"
10243 	"ipv6-hop-limits|udp-src-port|udp-dst-port|"
10244 	"tcp-src-port|tcp-dst-port|sctp-src-port|sctp-dst-port|"
10245 	"sctp-veri-tag|none select|add",
10246 	.tokens = {
10247 		(void *)&cmd_set_fdir_input_set_cmd,
10248 		(void *)&cmd_set_fdir_input_set_port_id,
10249 		(void *)&cmd_set_fdir_input_set_flow_type,
10250 		(void *)&cmd_set_fdir_input_set_field,
10251 		(void *)&cmd_set_fdir_input_set_select,
10252 		NULL,
10253 	},
10254 };
10255 
10256 /* *** ADD/REMOVE A MULTICAST MAC ADDRESS TO/FROM A PORT *** */
10257 struct cmd_mcast_addr_result {
10258 	cmdline_fixed_string_t mcast_addr_cmd;
10259 	cmdline_fixed_string_t what;
10260 	uint8_t port_num;
10261 	struct ether_addr mc_addr;
10262 };
10263 
10264 static void cmd_mcast_addr_parsed(void *parsed_result,
10265 		__attribute__((unused)) struct cmdline *cl,
10266 		__attribute__((unused)) void *data)
10267 {
10268 	struct cmd_mcast_addr_result *res = parsed_result;
10269 
10270 	if (!is_multicast_ether_addr(&res->mc_addr)) {
10271 		printf("Invalid multicast addr %02X:%02X:%02X:%02X:%02X:%02X\n",
10272 		       res->mc_addr.addr_bytes[0], res->mc_addr.addr_bytes[1],
10273 		       res->mc_addr.addr_bytes[2], res->mc_addr.addr_bytes[3],
10274 		       res->mc_addr.addr_bytes[4], res->mc_addr.addr_bytes[5]);
10275 		return;
10276 	}
10277 	if (strcmp(res->what, "add") == 0)
10278 		mcast_addr_add(res->port_num, &res->mc_addr);
10279 	else
10280 		mcast_addr_remove(res->port_num, &res->mc_addr);
10281 }
10282 
10283 cmdline_parse_token_string_t cmd_mcast_addr_cmd =
10284 	TOKEN_STRING_INITIALIZER(struct cmd_mcast_addr_result,
10285 				 mcast_addr_cmd, "mcast_addr");
10286 cmdline_parse_token_string_t cmd_mcast_addr_what =
10287 	TOKEN_STRING_INITIALIZER(struct cmd_mcast_addr_result, what,
10288 				 "add#remove");
10289 cmdline_parse_token_num_t cmd_mcast_addr_portnum =
10290 	TOKEN_NUM_INITIALIZER(struct cmd_mcast_addr_result, port_num, UINT8);
10291 cmdline_parse_token_etheraddr_t cmd_mcast_addr_addr =
10292 	TOKEN_ETHERADDR_INITIALIZER(struct cmd_mac_addr_result, address);
10293 
10294 cmdline_parse_inst_t cmd_mcast_addr = {
10295 	.f = cmd_mcast_addr_parsed,
10296 	.data = (void *)0,
10297 	.help_str = "mcast_addr add|remove <port_id> <mcast_addr>: "
10298 		"Add/Remove multicast MAC address on port_id",
10299 	.tokens = {
10300 		(void *)&cmd_mcast_addr_cmd,
10301 		(void *)&cmd_mcast_addr_what,
10302 		(void *)&cmd_mcast_addr_portnum,
10303 		(void *)&cmd_mcast_addr_addr,
10304 		NULL,
10305 	},
10306 };
10307 
10308 /* l2 tunnel config
10309  * only support E-tag now.
10310  */
10311 
10312 /* Ether type config */
10313 struct cmd_config_l2_tunnel_eth_type_result {
10314 	cmdline_fixed_string_t port;
10315 	cmdline_fixed_string_t config;
10316 	cmdline_fixed_string_t all;
10317 	uint8_t id;
10318 	cmdline_fixed_string_t l2_tunnel;
10319 	cmdline_fixed_string_t l2_tunnel_type;
10320 	cmdline_fixed_string_t eth_type;
10321 	uint16_t eth_type_val;
10322 };
10323 
10324 cmdline_parse_token_string_t cmd_config_l2_tunnel_eth_type_port =
10325 	TOKEN_STRING_INITIALIZER
10326 		(struct cmd_config_l2_tunnel_eth_type_result,
10327 		 port, "port");
10328 cmdline_parse_token_string_t cmd_config_l2_tunnel_eth_type_config =
10329 	TOKEN_STRING_INITIALIZER
10330 		(struct cmd_config_l2_tunnel_eth_type_result,
10331 		 config, "config");
10332 cmdline_parse_token_string_t cmd_config_l2_tunnel_eth_type_all_str =
10333 	TOKEN_STRING_INITIALIZER
10334 		(struct cmd_config_l2_tunnel_eth_type_result,
10335 		 all, "all");
10336 cmdline_parse_token_num_t cmd_config_l2_tunnel_eth_type_id =
10337 	TOKEN_NUM_INITIALIZER
10338 		(struct cmd_config_l2_tunnel_eth_type_result,
10339 		 id, UINT8);
10340 cmdline_parse_token_string_t cmd_config_l2_tunnel_eth_type_l2_tunnel =
10341 	TOKEN_STRING_INITIALIZER
10342 		(struct cmd_config_l2_tunnel_eth_type_result,
10343 		 l2_tunnel, "l2-tunnel");
10344 cmdline_parse_token_string_t cmd_config_l2_tunnel_eth_type_l2_tunnel_type =
10345 	TOKEN_STRING_INITIALIZER
10346 		(struct cmd_config_l2_tunnel_eth_type_result,
10347 		 l2_tunnel_type, "E-tag");
10348 cmdline_parse_token_string_t cmd_config_l2_tunnel_eth_type_eth_type =
10349 	TOKEN_STRING_INITIALIZER
10350 		(struct cmd_config_l2_tunnel_eth_type_result,
10351 		 eth_type, "ether-type");
10352 cmdline_parse_token_num_t cmd_config_l2_tunnel_eth_type_eth_type_val =
10353 	TOKEN_NUM_INITIALIZER
10354 		(struct cmd_config_l2_tunnel_eth_type_result,
10355 		 eth_type_val, UINT16);
10356 
10357 static enum rte_eth_tunnel_type
10358 str2fdir_l2_tunnel_type(char *string)
10359 {
10360 	uint32_t i = 0;
10361 
10362 	static const struct {
10363 		char str[32];
10364 		enum rte_eth_tunnel_type type;
10365 	} l2_tunnel_type_str[] = {
10366 		{"E-tag", RTE_L2_TUNNEL_TYPE_E_TAG},
10367 	};
10368 
10369 	for (i = 0; i < RTE_DIM(l2_tunnel_type_str); i++) {
10370 		if (!strcmp(l2_tunnel_type_str[i].str, string))
10371 			return l2_tunnel_type_str[i].type;
10372 	}
10373 	return RTE_TUNNEL_TYPE_NONE;
10374 }
10375 
10376 /* ether type config for all ports */
10377 static void
10378 cmd_config_l2_tunnel_eth_type_all_parsed
10379 	(void *parsed_result,
10380 	 __attribute__((unused)) struct cmdline *cl,
10381 	 __attribute__((unused)) void *data)
10382 {
10383 	struct cmd_config_l2_tunnel_eth_type_result *res = parsed_result;
10384 	struct rte_eth_l2_tunnel_conf entry;
10385 	portid_t pid;
10386 
10387 	entry.l2_tunnel_type = str2fdir_l2_tunnel_type(res->l2_tunnel_type);
10388 	entry.ether_type = res->eth_type_val;
10389 
10390 	RTE_ETH_FOREACH_DEV(pid) {
10391 		rte_eth_dev_l2_tunnel_eth_type_conf(pid, &entry);
10392 	}
10393 }
10394 
10395 cmdline_parse_inst_t cmd_config_l2_tunnel_eth_type_all = {
10396 	.f = cmd_config_l2_tunnel_eth_type_all_parsed,
10397 	.data = NULL,
10398 	.help_str = "port config all l2-tunnel E-tag ether-type <value>",
10399 	.tokens = {
10400 		(void *)&cmd_config_l2_tunnel_eth_type_port,
10401 		(void *)&cmd_config_l2_tunnel_eth_type_config,
10402 		(void *)&cmd_config_l2_tunnel_eth_type_all_str,
10403 		(void *)&cmd_config_l2_tunnel_eth_type_l2_tunnel,
10404 		(void *)&cmd_config_l2_tunnel_eth_type_l2_tunnel_type,
10405 		(void *)&cmd_config_l2_tunnel_eth_type_eth_type,
10406 		(void *)&cmd_config_l2_tunnel_eth_type_eth_type_val,
10407 		NULL,
10408 	},
10409 };
10410 
10411 /* ether type config for a specific port */
10412 static void
10413 cmd_config_l2_tunnel_eth_type_specific_parsed(
10414 	void *parsed_result,
10415 	__attribute__((unused)) struct cmdline *cl,
10416 	__attribute__((unused)) void *data)
10417 {
10418 	struct cmd_config_l2_tunnel_eth_type_result *res =
10419 		 parsed_result;
10420 	struct rte_eth_l2_tunnel_conf entry;
10421 
10422 	if (port_id_is_invalid(res->id, ENABLED_WARN))
10423 		return;
10424 
10425 	entry.l2_tunnel_type = str2fdir_l2_tunnel_type(res->l2_tunnel_type);
10426 	entry.ether_type = res->eth_type_val;
10427 
10428 	rte_eth_dev_l2_tunnel_eth_type_conf(res->id, &entry);
10429 }
10430 
10431 cmdline_parse_inst_t cmd_config_l2_tunnel_eth_type_specific = {
10432 	.f = cmd_config_l2_tunnel_eth_type_specific_parsed,
10433 	.data = NULL,
10434 	.help_str = "port config <port_id> l2-tunnel E-tag ether-type <value>",
10435 	.tokens = {
10436 		(void *)&cmd_config_l2_tunnel_eth_type_port,
10437 		(void *)&cmd_config_l2_tunnel_eth_type_config,
10438 		(void *)&cmd_config_l2_tunnel_eth_type_id,
10439 		(void *)&cmd_config_l2_tunnel_eth_type_l2_tunnel,
10440 		(void *)&cmd_config_l2_tunnel_eth_type_l2_tunnel_type,
10441 		(void *)&cmd_config_l2_tunnel_eth_type_eth_type,
10442 		(void *)&cmd_config_l2_tunnel_eth_type_eth_type_val,
10443 		NULL,
10444 	},
10445 };
10446 
10447 /* Enable/disable l2 tunnel */
10448 struct cmd_config_l2_tunnel_en_dis_result {
10449 	cmdline_fixed_string_t port;
10450 	cmdline_fixed_string_t config;
10451 	cmdline_fixed_string_t all;
10452 	uint8_t id;
10453 	cmdline_fixed_string_t l2_tunnel;
10454 	cmdline_fixed_string_t l2_tunnel_type;
10455 	cmdline_fixed_string_t en_dis;
10456 };
10457 
10458 cmdline_parse_token_string_t cmd_config_l2_tunnel_en_dis_port =
10459 	TOKEN_STRING_INITIALIZER
10460 		(struct cmd_config_l2_tunnel_en_dis_result,
10461 		 port, "port");
10462 cmdline_parse_token_string_t cmd_config_l2_tunnel_en_dis_config =
10463 	TOKEN_STRING_INITIALIZER
10464 		(struct cmd_config_l2_tunnel_en_dis_result,
10465 		 config, "config");
10466 cmdline_parse_token_string_t cmd_config_l2_tunnel_en_dis_all_str =
10467 	TOKEN_STRING_INITIALIZER
10468 		(struct cmd_config_l2_tunnel_en_dis_result,
10469 		 all, "all");
10470 cmdline_parse_token_num_t cmd_config_l2_tunnel_en_dis_id =
10471 	TOKEN_NUM_INITIALIZER
10472 		(struct cmd_config_l2_tunnel_en_dis_result,
10473 		 id, UINT8);
10474 cmdline_parse_token_string_t cmd_config_l2_tunnel_en_dis_l2_tunnel =
10475 	TOKEN_STRING_INITIALIZER
10476 		(struct cmd_config_l2_tunnel_en_dis_result,
10477 		 l2_tunnel, "l2-tunnel");
10478 cmdline_parse_token_string_t cmd_config_l2_tunnel_en_dis_l2_tunnel_type =
10479 	TOKEN_STRING_INITIALIZER
10480 		(struct cmd_config_l2_tunnel_en_dis_result,
10481 		 l2_tunnel_type, "E-tag");
10482 cmdline_parse_token_string_t cmd_config_l2_tunnel_en_dis_en_dis =
10483 	TOKEN_STRING_INITIALIZER
10484 		(struct cmd_config_l2_tunnel_en_dis_result,
10485 		 en_dis, "enable#disable");
10486 
10487 /* enable/disable l2 tunnel for all ports */
10488 static void
10489 cmd_config_l2_tunnel_en_dis_all_parsed(
10490 	void *parsed_result,
10491 	__attribute__((unused)) struct cmdline *cl,
10492 	__attribute__((unused)) void *data)
10493 {
10494 	struct cmd_config_l2_tunnel_en_dis_result *res = parsed_result;
10495 	struct rte_eth_l2_tunnel_conf entry;
10496 	portid_t pid;
10497 	uint8_t en;
10498 
10499 	entry.l2_tunnel_type = str2fdir_l2_tunnel_type(res->l2_tunnel_type);
10500 
10501 	if (!strcmp("enable", res->en_dis))
10502 		en = 1;
10503 	else
10504 		en = 0;
10505 
10506 	RTE_ETH_FOREACH_DEV(pid) {
10507 		rte_eth_dev_l2_tunnel_offload_set(pid,
10508 						  &entry,
10509 						  ETH_L2_TUNNEL_ENABLE_MASK,
10510 						  en);
10511 	}
10512 }
10513 
10514 cmdline_parse_inst_t cmd_config_l2_tunnel_en_dis_all = {
10515 	.f = cmd_config_l2_tunnel_en_dis_all_parsed,
10516 	.data = NULL,
10517 	.help_str = "port config all l2-tunnel E-tag enable|disable",
10518 	.tokens = {
10519 		(void *)&cmd_config_l2_tunnel_en_dis_port,
10520 		(void *)&cmd_config_l2_tunnel_en_dis_config,
10521 		(void *)&cmd_config_l2_tunnel_en_dis_all_str,
10522 		(void *)&cmd_config_l2_tunnel_en_dis_l2_tunnel,
10523 		(void *)&cmd_config_l2_tunnel_en_dis_l2_tunnel_type,
10524 		(void *)&cmd_config_l2_tunnel_en_dis_en_dis,
10525 		NULL,
10526 	},
10527 };
10528 
10529 /* enable/disable l2 tunnel for a port */
10530 static void
10531 cmd_config_l2_tunnel_en_dis_specific_parsed(
10532 	void *parsed_result,
10533 	__attribute__((unused)) struct cmdline *cl,
10534 	__attribute__((unused)) void *data)
10535 {
10536 	struct cmd_config_l2_tunnel_en_dis_result *res =
10537 		parsed_result;
10538 	struct rte_eth_l2_tunnel_conf entry;
10539 
10540 	if (port_id_is_invalid(res->id, ENABLED_WARN))
10541 		return;
10542 
10543 	entry.l2_tunnel_type = str2fdir_l2_tunnel_type(res->l2_tunnel_type);
10544 
10545 	if (!strcmp("enable", res->en_dis))
10546 		rte_eth_dev_l2_tunnel_offload_set(res->id,
10547 						  &entry,
10548 						  ETH_L2_TUNNEL_ENABLE_MASK,
10549 						  1);
10550 	else
10551 		rte_eth_dev_l2_tunnel_offload_set(res->id,
10552 						  &entry,
10553 						  ETH_L2_TUNNEL_ENABLE_MASK,
10554 						  0);
10555 }
10556 
10557 cmdline_parse_inst_t cmd_config_l2_tunnel_en_dis_specific = {
10558 	.f = cmd_config_l2_tunnel_en_dis_specific_parsed,
10559 	.data = NULL,
10560 	.help_str = "port config <port_id> l2-tunnel E-tag enable|disable",
10561 	.tokens = {
10562 		(void *)&cmd_config_l2_tunnel_en_dis_port,
10563 		(void *)&cmd_config_l2_tunnel_en_dis_config,
10564 		(void *)&cmd_config_l2_tunnel_en_dis_id,
10565 		(void *)&cmd_config_l2_tunnel_en_dis_l2_tunnel,
10566 		(void *)&cmd_config_l2_tunnel_en_dis_l2_tunnel_type,
10567 		(void *)&cmd_config_l2_tunnel_en_dis_en_dis,
10568 		NULL,
10569 	},
10570 };
10571 
10572 /* E-tag configuration */
10573 
10574 /* Common result structure for all E-tag configuration */
10575 struct cmd_config_e_tag_result {
10576 	cmdline_fixed_string_t e_tag;
10577 	cmdline_fixed_string_t set;
10578 	cmdline_fixed_string_t insertion;
10579 	cmdline_fixed_string_t stripping;
10580 	cmdline_fixed_string_t forwarding;
10581 	cmdline_fixed_string_t filter;
10582 	cmdline_fixed_string_t add;
10583 	cmdline_fixed_string_t del;
10584 	cmdline_fixed_string_t on;
10585 	cmdline_fixed_string_t off;
10586 	cmdline_fixed_string_t on_off;
10587 	cmdline_fixed_string_t port_tag_id;
10588 	uint32_t port_tag_id_val;
10589 	cmdline_fixed_string_t e_tag_id;
10590 	uint16_t e_tag_id_val;
10591 	cmdline_fixed_string_t dst_pool;
10592 	uint8_t dst_pool_val;
10593 	cmdline_fixed_string_t port;
10594 	uint8_t port_id;
10595 	cmdline_fixed_string_t vf;
10596 	uint8_t vf_id;
10597 };
10598 
10599 /* Common CLI fields for all E-tag configuration */
10600 cmdline_parse_token_string_t cmd_config_e_tag_e_tag =
10601 	TOKEN_STRING_INITIALIZER
10602 		(struct cmd_config_e_tag_result,
10603 		 e_tag, "E-tag");
10604 cmdline_parse_token_string_t cmd_config_e_tag_set =
10605 	TOKEN_STRING_INITIALIZER
10606 		(struct cmd_config_e_tag_result,
10607 		 set, "set");
10608 cmdline_parse_token_string_t cmd_config_e_tag_insertion =
10609 	TOKEN_STRING_INITIALIZER
10610 		(struct cmd_config_e_tag_result,
10611 		 insertion, "insertion");
10612 cmdline_parse_token_string_t cmd_config_e_tag_stripping =
10613 	TOKEN_STRING_INITIALIZER
10614 		(struct cmd_config_e_tag_result,
10615 		 stripping, "stripping");
10616 cmdline_parse_token_string_t cmd_config_e_tag_forwarding =
10617 	TOKEN_STRING_INITIALIZER
10618 		(struct cmd_config_e_tag_result,
10619 		 forwarding, "forwarding");
10620 cmdline_parse_token_string_t cmd_config_e_tag_filter =
10621 	TOKEN_STRING_INITIALIZER
10622 		(struct cmd_config_e_tag_result,
10623 		 filter, "filter");
10624 cmdline_parse_token_string_t cmd_config_e_tag_add =
10625 	TOKEN_STRING_INITIALIZER
10626 		(struct cmd_config_e_tag_result,
10627 		 add, "add");
10628 cmdline_parse_token_string_t cmd_config_e_tag_del =
10629 	TOKEN_STRING_INITIALIZER
10630 		(struct cmd_config_e_tag_result,
10631 		 del, "del");
10632 cmdline_parse_token_string_t cmd_config_e_tag_on =
10633 	TOKEN_STRING_INITIALIZER
10634 		(struct cmd_config_e_tag_result,
10635 		 on, "on");
10636 cmdline_parse_token_string_t cmd_config_e_tag_off =
10637 	TOKEN_STRING_INITIALIZER
10638 		(struct cmd_config_e_tag_result,
10639 		 off, "off");
10640 cmdline_parse_token_string_t cmd_config_e_tag_on_off =
10641 	TOKEN_STRING_INITIALIZER
10642 		(struct cmd_config_e_tag_result,
10643 		 on_off, "on#off");
10644 cmdline_parse_token_string_t cmd_config_e_tag_port_tag_id =
10645 	TOKEN_STRING_INITIALIZER
10646 		(struct cmd_config_e_tag_result,
10647 		 port_tag_id, "port-tag-id");
10648 cmdline_parse_token_num_t cmd_config_e_tag_port_tag_id_val =
10649 	TOKEN_NUM_INITIALIZER
10650 		(struct cmd_config_e_tag_result,
10651 		 port_tag_id_val, UINT32);
10652 cmdline_parse_token_string_t cmd_config_e_tag_e_tag_id =
10653 	TOKEN_STRING_INITIALIZER
10654 		(struct cmd_config_e_tag_result,
10655 		 e_tag_id, "e-tag-id");
10656 cmdline_parse_token_num_t cmd_config_e_tag_e_tag_id_val =
10657 	TOKEN_NUM_INITIALIZER
10658 		(struct cmd_config_e_tag_result,
10659 		 e_tag_id_val, UINT16);
10660 cmdline_parse_token_string_t cmd_config_e_tag_dst_pool =
10661 	TOKEN_STRING_INITIALIZER
10662 		(struct cmd_config_e_tag_result,
10663 		 dst_pool, "dst-pool");
10664 cmdline_parse_token_num_t cmd_config_e_tag_dst_pool_val =
10665 	TOKEN_NUM_INITIALIZER
10666 		(struct cmd_config_e_tag_result,
10667 		 dst_pool_val, UINT8);
10668 cmdline_parse_token_string_t cmd_config_e_tag_port =
10669 	TOKEN_STRING_INITIALIZER
10670 		(struct cmd_config_e_tag_result,
10671 		 port, "port");
10672 cmdline_parse_token_num_t cmd_config_e_tag_port_id =
10673 	TOKEN_NUM_INITIALIZER
10674 		(struct cmd_config_e_tag_result,
10675 		 port_id, UINT8);
10676 cmdline_parse_token_string_t cmd_config_e_tag_vf =
10677 	TOKEN_STRING_INITIALIZER
10678 		(struct cmd_config_e_tag_result,
10679 		 vf, "vf");
10680 cmdline_parse_token_num_t cmd_config_e_tag_vf_id =
10681 	TOKEN_NUM_INITIALIZER
10682 		(struct cmd_config_e_tag_result,
10683 		 vf_id, UINT8);
10684 
10685 /* E-tag insertion configuration */
10686 static void
10687 cmd_config_e_tag_insertion_en_parsed(
10688 	void *parsed_result,
10689 	__attribute__((unused)) struct cmdline *cl,
10690 	__attribute__((unused)) void *data)
10691 {
10692 	struct cmd_config_e_tag_result *res =
10693 		parsed_result;
10694 	struct rte_eth_l2_tunnel_conf entry;
10695 
10696 	if (port_id_is_invalid(res->port_id, ENABLED_WARN))
10697 		return;
10698 
10699 	entry.l2_tunnel_type = RTE_L2_TUNNEL_TYPE_E_TAG;
10700 	entry.tunnel_id = res->port_tag_id_val;
10701 	entry.vf_id = res->vf_id;
10702 	rte_eth_dev_l2_tunnel_offload_set(res->port_id,
10703 					  &entry,
10704 					  ETH_L2_TUNNEL_INSERTION_MASK,
10705 					  1);
10706 }
10707 
10708 static void
10709 cmd_config_e_tag_insertion_dis_parsed(
10710 	void *parsed_result,
10711 	__attribute__((unused)) struct cmdline *cl,
10712 	__attribute__((unused)) void *data)
10713 {
10714 	struct cmd_config_e_tag_result *res =
10715 		parsed_result;
10716 	struct rte_eth_l2_tunnel_conf entry;
10717 
10718 	if (port_id_is_invalid(res->port_id, ENABLED_WARN))
10719 		return;
10720 
10721 	entry.l2_tunnel_type = RTE_L2_TUNNEL_TYPE_E_TAG;
10722 	entry.vf_id = res->vf_id;
10723 
10724 	rte_eth_dev_l2_tunnel_offload_set(res->port_id,
10725 					  &entry,
10726 					  ETH_L2_TUNNEL_INSERTION_MASK,
10727 					  0);
10728 }
10729 
10730 cmdline_parse_inst_t cmd_config_e_tag_insertion_en = {
10731 	.f = cmd_config_e_tag_insertion_en_parsed,
10732 	.data = NULL,
10733 	.help_str = "E-tag ... : E-tag insertion enable",
10734 	.tokens = {
10735 		(void *)&cmd_config_e_tag_e_tag,
10736 		(void *)&cmd_config_e_tag_set,
10737 		(void *)&cmd_config_e_tag_insertion,
10738 		(void *)&cmd_config_e_tag_on,
10739 		(void *)&cmd_config_e_tag_port_tag_id,
10740 		(void *)&cmd_config_e_tag_port_tag_id_val,
10741 		(void *)&cmd_config_e_tag_port,
10742 		(void *)&cmd_config_e_tag_port_id,
10743 		(void *)&cmd_config_e_tag_vf,
10744 		(void *)&cmd_config_e_tag_vf_id,
10745 		NULL,
10746 	},
10747 };
10748 
10749 cmdline_parse_inst_t cmd_config_e_tag_insertion_dis = {
10750 	.f = cmd_config_e_tag_insertion_dis_parsed,
10751 	.data = NULL,
10752 	.help_str = "E-tag ... : E-tag insertion disable",
10753 	.tokens = {
10754 		(void *)&cmd_config_e_tag_e_tag,
10755 		(void *)&cmd_config_e_tag_set,
10756 		(void *)&cmd_config_e_tag_insertion,
10757 		(void *)&cmd_config_e_tag_off,
10758 		(void *)&cmd_config_e_tag_port,
10759 		(void *)&cmd_config_e_tag_port_id,
10760 		(void *)&cmd_config_e_tag_vf,
10761 		(void *)&cmd_config_e_tag_vf_id,
10762 		NULL,
10763 	},
10764 };
10765 
10766 /* E-tag stripping configuration */
10767 static void
10768 cmd_config_e_tag_stripping_parsed(
10769 	void *parsed_result,
10770 	__attribute__((unused)) struct cmdline *cl,
10771 	__attribute__((unused)) void *data)
10772 {
10773 	struct cmd_config_e_tag_result *res =
10774 		parsed_result;
10775 	struct rte_eth_l2_tunnel_conf entry;
10776 
10777 	if (port_id_is_invalid(res->port_id, ENABLED_WARN))
10778 		return;
10779 
10780 	entry.l2_tunnel_type = RTE_L2_TUNNEL_TYPE_E_TAG;
10781 
10782 	if (!strcmp(res->on_off, "on"))
10783 		rte_eth_dev_l2_tunnel_offload_set
10784 			(res->port_id,
10785 			 &entry,
10786 			 ETH_L2_TUNNEL_STRIPPING_MASK,
10787 			 1);
10788 	else
10789 		rte_eth_dev_l2_tunnel_offload_set
10790 			(res->port_id,
10791 			 &entry,
10792 			 ETH_L2_TUNNEL_STRIPPING_MASK,
10793 			 0);
10794 }
10795 
10796 cmdline_parse_inst_t cmd_config_e_tag_stripping_en_dis = {
10797 	.f = cmd_config_e_tag_stripping_parsed,
10798 	.data = NULL,
10799 	.help_str = "E-tag ... : E-tag stripping enable/disable",
10800 	.tokens = {
10801 		(void *)&cmd_config_e_tag_e_tag,
10802 		(void *)&cmd_config_e_tag_set,
10803 		(void *)&cmd_config_e_tag_stripping,
10804 		(void *)&cmd_config_e_tag_on_off,
10805 		(void *)&cmd_config_e_tag_port,
10806 		(void *)&cmd_config_e_tag_port_id,
10807 		NULL,
10808 	},
10809 };
10810 
10811 /* E-tag forwarding configuration */
10812 static void
10813 cmd_config_e_tag_forwarding_parsed(
10814 	void *parsed_result,
10815 	__attribute__((unused)) struct cmdline *cl,
10816 	__attribute__((unused)) void *data)
10817 {
10818 	struct cmd_config_e_tag_result *res = parsed_result;
10819 	struct rte_eth_l2_tunnel_conf entry;
10820 
10821 	if (port_id_is_invalid(res->port_id, ENABLED_WARN))
10822 		return;
10823 
10824 	entry.l2_tunnel_type = RTE_L2_TUNNEL_TYPE_E_TAG;
10825 
10826 	if (!strcmp(res->on_off, "on"))
10827 		rte_eth_dev_l2_tunnel_offload_set
10828 			(res->port_id,
10829 			 &entry,
10830 			 ETH_L2_TUNNEL_FORWARDING_MASK,
10831 			 1);
10832 	else
10833 		rte_eth_dev_l2_tunnel_offload_set
10834 			(res->port_id,
10835 			 &entry,
10836 			 ETH_L2_TUNNEL_FORWARDING_MASK,
10837 			 0);
10838 }
10839 
10840 cmdline_parse_inst_t cmd_config_e_tag_forwarding_en_dis = {
10841 	.f = cmd_config_e_tag_forwarding_parsed,
10842 	.data = NULL,
10843 	.help_str = "E-tag ... : E-tag forwarding enable/disable",
10844 	.tokens = {
10845 		(void *)&cmd_config_e_tag_e_tag,
10846 		(void *)&cmd_config_e_tag_set,
10847 		(void *)&cmd_config_e_tag_forwarding,
10848 		(void *)&cmd_config_e_tag_on_off,
10849 		(void *)&cmd_config_e_tag_port,
10850 		(void *)&cmd_config_e_tag_port_id,
10851 		NULL,
10852 	},
10853 };
10854 
10855 /* E-tag filter configuration */
10856 static void
10857 cmd_config_e_tag_filter_add_parsed(
10858 	void *parsed_result,
10859 	__attribute__((unused)) struct cmdline *cl,
10860 	__attribute__((unused)) void *data)
10861 {
10862 	struct cmd_config_e_tag_result *res = parsed_result;
10863 	struct rte_eth_l2_tunnel_conf entry;
10864 	int ret = 0;
10865 
10866 	if (port_id_is_invalid(res->port_id, ENABLED_WARN))
10867 		return;
10868 
10869 	if (res->e_tag_id_val > 0x3fff) {
10870 		printf("e-tag-id must be equal or less than 0x3fff.\n");
10871 		return;
10872 	}
10873 
10874 	ret = rte_eth_dev_filter_supported(res->port_id,
10875 					   RTE_ETH_FILTER_L2_TUNNEL);
10876 	if (ret < 0) {
10877 		printf("E-tag filter is not supported on port %u.\n",
10878 		       res->port_id);
10879 		return;
10880 	}
10881 
10882 	entry.l2_tunnel_type = RTE_L2_TUNNEL_TYPE_E_TAG;
10883 	entry.tunnel_id = res->e_tag_id_val;
10884 	entry.pool = res->dst_pool_val;
10885 
10886 	ret = rte_eth_dev_filter_ctrl(res->port_id,
10887 				      RTE_ETH_FILTER_L2_TUNNEL,
10888 				      RTE_ETH_FILTER_ADD,
10889 				      &entry);
10890 	if (ret < 0)
10891 		printf("E-tag filter programming error: (%s)\n",
10892 		       strerror(-ret));
10893 }
10894 
10895 cmdline_parse_inst_t cmd_config_e_tag_filter_add = {
10896 	.f = cmd_config_e_tag_filter_add_parsed,
10897 	.data = NULL,
10898 	.help_str = "E-tag ... : E-tag filter add",
10899 	.tokens = {
10900 		(void *)&cmd_config_e_tag_e_tag,
10901 		(void *)&cmd_config_e_tag_set,
10902 		(void *)&cmd_config_e_tag_filter,
10903 		(void *)&cmd_config_e_tag_add,
10904 		(void *)&cmd_config_e_tag_e_tag_id,
10905 		(void *)&cmd_config_e_tag_e_tag_id_val,
10906 		(void *)&cmd_config_e_tag_dst_pool,
10907 		(void *)&cmd_config_e_tag_dst_pool_val,
10908 		(void *)&cmd_config_e_tag_port,
10909 		(void *)&cmd_config_e_tag_port_id,
10910 		NULL,
10911 	},
10912 };
10913 
10914 static void
10915 cmd_config_e_tag_filter_del_parsed(
10916 	void *parsed_result,
10917 	__attribute__((unused)) struct cmdline *cl,
10918 	__attribute__((unused)) void *data)
10919 {
10920 	struct cmd_config_e_tag_result *res = parsed_result;
10921 	struct rte_eth_l2_tunnel_conf entry;
10922 	int ret = 0;
10923 
10924 	if (port_id_is_invalid(res->port_id, ENABLED_WARN))
10925 		return;
10926 
10927 	if (res->e_tag_id_val > 0x3fff) {
10928 		printf("e-tag-id must be less than 0x3fff.\n");
10929 		return;
10930 	}
10931 
10932 	ret = rte_eth_dev_filter_supported(res->port_id,
10933 					   RTE_ETH_FILTER_L2_TUNNEL);
10934 	if (ret < 0) {
10935 		printf("E-tag filter is not supported on port %u.\n",
10936 		       res->port_id);
10937 		return;
10938 	}
10939 
10940 	entry.l2_tunnel_type = RTE_L2_TUNNEL_TYPE_E_TAG;
10941 	entry.tunnel_id = res->e_tag_id_val;
10942 
10943 	ret = rte_eth_dev_filter_ctrl(res->port_id,
10944 				      RTE_ETH_FILTER_L2_TUNNEL,
10945 				      RTE_ETH_FILTER_DELETE,
10946 				      &entry);
10947 	if (ret < 0)
10948 		printf("E-tag filter programming error: (%s)\n",
10949 		       strerror(-ret));
10950 }
10951 
10952 cmdline_parse_inst_t cmd_config_e_tag_filter_del = {
10953 	.f = cmd_config_e_tag_filter_del_parsed,
10954 	.data = NULL,
10955 	.help_str = "E-tag ... : E-tag filter delete",
10956 	.tokens = {
10957 		(void *)&cmd_config_e_tag_e_tag,
10958 		(void *)&cmd_config_e_tag_set,
10959 		(void *)&cmd_config_e_tag_filter,
10960 		(void *)&cmd_config_e_tag_del,
10961 		(void *)&cmd_config_e_tag_e_tag_id,
10962 		(void *)&cmd_config_e_tag_e_tag_id_val,
10963 		(void *)&cmd_config_e_tag_port,
10964 		(void *)&cmd_config_e_tag_port_id,
10965 		NULL,
10966 	},
10967 };
10968 
10969 /* vf vlan anti spoof configuration */
10970 
10971 /* Common result structure for vf vlan anti spoof */
10972 struct cmd_vf_vlan_anti_spoof_result {
10973 	cmdline_fixed_string_t set;
10974 	cmdline_fixed_string_t vf;
10975 	cmdline_fixed_string_t vlan;
10976 	cmdline_fixed_string_t antispoof;
10977 	uint8_t port_id;
10978 	uint32_t vf_id;
10979 	cmdline_fixed_string_t on_off;
10980 };
10981 
10982 /* Common CLI fields for vf vlan anti spoof enable disable */
10983 cmdline_parse_token_string_t cmd_vf_vlan_anti_spoof_set =
10984 	TOKEN_STRING_INITIALIZER
10985 		(struct cmd_vf_vlan_anti_spoof_result,
10986 		 set, "set");
10987 cmdline_parse_token_string_t cmd_vf_vlan_anti_spoof_vf =
10988 	TOKEN_STRING_INITIALIZER
10989 		(struct cmd_vf_vlan_anti_spoof_result,
10990 		 vf, "vf");
10991 cmdline_parse_token_string_t cmd_vf_vlan_anti_spoof_vlan =
10992 	TOKEN_STRING_INITIALIZER
10993 		(struct cmd_vf_vlan_anti_spoof_result,
10994 		 vlan, "vlan");
10995 cmdline_parse_token_string_t cmd_vf_vlan_anti_spoof_antispoof =
10996 	TOKEN_STRING_INITIALIZER
10997 		(struct cmd_vf_vlan_anti_spoof_result,
10998 		 antispoof, "antispoof");
10999 cmdline_parse_token_num_t cmd_vf_vlan_anti_spoof_port_id =
11000 	TOKEN_NUM_INITIALIZER
11001 		(struct cmd_vf_vlan_anti_spoof_result,
11002 		 port_id, UINT8);
11003 cmdline_parse_token_num_t cmd_vf_vlan_anti_spoof_vf_id =
11004 	TOKEN_NUM_INITIALIZER
11005 		(struct cmd_vf_vlan_anti_spoof_result,
11006 		 vf_id, UINT32);
11007 cmdline_parse_token_string_t cmd_vf_vlan_anti_spoof_on_off =
11008 	TOKEN_STRING_INITIALIZER
11009 		(struct cmd_vf_vlan_anti_spoof_result,
11010 		 on_off, "on#off");
11011 
11012 static void
11013 cmd_set_vf_vlan_anti_spoof_parsed(
11014 	void *parsed_result,
11015 	__attribute__((unused)) struct cmdline *cl,
11016 	__attribute__((unused)) void *data)
11017 {
11018 	struct cmd_vf_vlan_anti_spoof_result *res = parsed_result;
11019 	int ret = -ENOTSUP;
11020 
11021 	__rte_unused int is_on = (strcmp(res->on_off, "on") == 0) ? 1 : 0;
11022 
11023 	if (port_id_is_invalid(res->port_id, ENABLED_WARN))
11024 		return;
11025 
11026 #ifdef RTE_LIBRTE_IXGBE_PMD
11027 	if (ret == -ENOTSUP)
11028 		ret = rte_pmd_ixgbe_set_vf_vlan_anti_spoof(res->port_id,
11029 				res->vf_id, is_on);
11030 #endif
11031 #ifdef RTE_LIBRTE_I40E_PMD
11032 	if (ret == -ENOTSUP)
11033 		ret = rte_pmd_i40e_set_vf_vlan_anti_spoof(res->port_id,
11034 				res->vf_id, is_on);
11035 #endif
11036 #ifdef RTE_LIBRTE_BNXT_PMD
11037 	if (ret == -ENOTSUP)
11038 		ret = rte_pmd_bnxt_set_vf_vlan_anti_spoof(res->port_id,
11039 				res->vf_id, is_on);
11040 #endif
11041 
11042 	switch (ret) {
11043 	case 0:
11044 		break;
11045 	case -EINVAL:
11046 		printf("invalid vf_id %d\n", res->vf_id);
11047 		break;
11048 	case -ENODEV:
11049 		printf("invalid port_id %d\n", res->port_id);
11050 		break;
11051 	case -ENOTSUP:
11052 		printf("function not implemented\n");
11053 		break;
11054 	default:
11055 		printf("programming error: (%s)\n", strerror(-ret));
11056 	}
11057 }
11058 
11059 cmdline_parse_inst_t cmd_set_vf_vlan_anti_spoof = {
11060 	.f = cmd_set_vf_vlan_anti_spoof_parsed,
11061 	.data = NULL,
11062 	.help_str = "set vf vlan antispoof <port_id> <vf_id> on|off",
11063 	.tokens = {
11064 		(void *)&cmd_vf_vlan_anti_spoof_set,
11065 		(void *)&cmd_vf_vlan_anti_spoof_vf,
11066 		(void *)&cmd_vf_vlan_anti_spoof_vlan,
11067 		(void *)&cmd_vf_vlan_anti_spoof_antispoof,
11068 		(void *)&cmd_vf_vlan_anti_spoof_port_id,
11069 		(void *)&cmd_vf_vlan_anti_spoof_vf_id,
11070 		(void *)&cmd_vf_vlan_anti_spoof_on_off,
11071 		NULL,
11072 	},
11073 };
11074 
11075 /* vf mac anti spoof configuration */
11076 
11077 /* Common result structure for vf mac anti spoof */
11078 struct cmd_vf_mac_anti_spoof_result {
11079 	cmdline_fixed_string_t set;
11080 	cmdline_fixed_string_t vf;
11081 	cmdline_fixed_string_t mac;
11082 	cmdline_fixed_string_t antispoof;
11083 	uint8_t port_id;
11084 	uint32_t vf_id;
11085 	cmdline_fixed_string_t on_off;
11086 };
11087 
11088 /* Common CLI fields for vf mac anti spoof enable disable */
11089 cmdline_parse_token_string_t cmd_vf_mac_anti_spoof_set =
11090 	TOKEN_STRING_INITIALIZER
11091 		(struct cmd_vf_mac_anti_spoof_result,
11092 		 set, "set");
11093 cmdline_parse_token_string_t cmd_vf_mac_anti_spoof_vf =
11094 	TOKEN_STRING_INITIALIZER
11095 		(struct cmd_vf_mac_anti_spoof_result,
11096 		 vf, "vf");
11097 cmdline_parse_token_string_t cmd_vf_mac_anti_spoof_mac =
11098 	TOKEN_STRING_INITIALIZER
11099 		(struct cmd_vf_mac_anti_spoof_result,
11100 		 mac, "mac");
11101 cmdline_parse_token_string_t cmd_vf_mac_anti_spoof_antispoof =
11102 	TOKEN_STRING_INITIALIZER
11103 		(struct cmd_vf_mac_anti_spoof_result,
11104 		 antispoof, "antispoof");
11105 cmdline_parse_token_num_t cmd_vf_mac_anti_spoof_port_id =
11106 	TOKEN_NUM_INITIALIZER
11107 		(struct cmd_vf_mac_anti_spoof_result,
11108 		 port_id, UINT8);
11109 cmdline_parse_token_num_t cmd_vf_mac_anti_spoof_vf_id =
11110 	TOKEN_NUM_INITIALIZER
11111 		(struct cmd_vf_mac_anti_spoof_result,
11112 		 vf_id, UINT32);
11113 cmdline_parse_token_string_t cmd_vf_mac_anti_spoof_on_off =
11114 	TOKEN_STRING_INITIALIZER
11115 		(struct cmd_vf_mac_anti_spoof_result,
11116 		 on_off, "on#off");
11117 
11118 static void
11119 cmd_set_vf_mac_anti_spoof_parsed(
11120 	void *parsed_result,
11121 	__attribute__((unused)) struct cmdline *cl,
11122 	__attribute__((unused)) void *data)
11123 {
11124 	struct cmd_vf_mac_anti_spoof_result *res = parsed_result;
11125 	int ret = -ENOTSUP;
11126 
11127 	__rte_unused int is_on = (strcmp(res->on_off, "on") == 0) ? 1 : 0;
11128 
11129 	if (port_id_is_invalid(res->port_id, ENABLED_WARN))
11130 		return;
11131 
11132 #ifdef RTE_LIBRTE_IXGBE_PMD
11133 	if (ret == -ENOTSUP)
11134 		ret = rte_pmd_ixgbe_set_vf_mac_anti_spoof(res->port_id,
11135 			res->vf_id, is_on);
11136 #endif
11137 #ifdef RTE_LIBRTE_I40E_PMD
11138 	if (ret == -ENOTSUP)
11139 		ret = rte_pmd_i40e_set_vf_mac_anti_spoof(res->port_id,
11140 			res->vf_id, is_on);
11141 #endif
11142 #ifdef RTE_LIBRTE_BNXT_PMD
11143 	if (ret == -ENOTSUP)
11144 		ret = rte_pmd_bnxt_set_vf_mac_anti_spoof(res->port_id,
11145 			res->vf_id, is_on);
11146 #endif
11147 
11148 	switch (ret) {
11149 	case 0:
11150 		break;
11151 	case -EINVAL:
11152 		printf("invalid vf_id %d or is_on %d\n", res->vf_id, is_on);
11153 		break;
11154 	case -ENODEV:
11155 		printf("invalid port_id %d\n", res->port_id);
11156 		break;
11157 	case -ENOTSUP:
11158 		printf("function not implemented\n");
11159 		break;
11160 	default:
11161 		printf("programming error: (%s)\n", strerror(-ret));
11162 	}
11163 }
11164 
11165 cmdline_parse_inst_t cmd_set_vf_mac_anti_spoof = {
11166 	.f = cmd_set_vf_mac_anti_spoof_parsed,
11167 	.data = NULL,
11168 	.help_str = "set vf mac antispoof <port_id> <vf_id> on|off",
11169 	.tokens = {
11170 		(void *)&cmd_vf_mac_anti_spoof_set,
11171 		(void *)&cmd_vf_mac_anti_spoof_vf,
11172 		(void *)&cmd_vf_mac_anti_spoof_mac,
11173 		(void *)&cmd_vf_mac_anti_spoof_antispoof,
11174 		(void *)&cmd_vf_mac_anti_spoof_port_id,
11175 		(void *)&cmd_vf_mac_anti_spoof_vf_id,
11176 		(void *)&cmd_vf_mac_anti_spoof_on_off,
11177 		NULL,
11178 	},
11179 };
11180 
11181 /* vf vlan strip queue configuration */
11182 
11183 /* Common result structure for vf mac anti spoof */
11184 struct cmd_vf_vlan_stripq_result {
11185 	cmdline_fixed_string_t set;
11186 	cmdline_fixed_string_t vf;
11187 	cmdline_fixed_string_t vlan;
11188 	cmdline_fixed_string_t stripq;
11189 	uint8_t port_id;
11190 	uint16_t vf_id;
11191 	cmdline_fixed_string_t on_off;
11192 };
11193 
11194 /* Common CLI fields for vf vlan strip enable disable */
11195 cmdline_parse_token_string_t cmd_vf_vlan_stripq_set =
11196 	TOKEN_STRING_INITIALIZER
11197 		(struct cmd_vf_vlan_stripq_result,
11198 		 set, "set");
11199 cmdline_parse_token_string_t cmd_vf_vlan_stripq_vf =
11200 	TOKEN_STRING_INITIALIZER
11201 		(struct cmd_vf_vlan_stripq_result,
11202 		 vf, "vf");
11203 cmdline_parse_token_string_t cmd_vf_vlan_stripq_vlan =
11204 	TOKEN_STRING_INITIALIZER
11205 		(struct cmd_vf_vlan_stripq_result,
11206 		 vlan, "vlan");
11207 cmdline_parse_token_string_t cmd_vf_vlan_stripq_stripq =
11208 	TOKEN_STRING_INITIALIZER
11209 		(struct cmd_vf_vlan_stripq_result,
11210 		 stripq, "stripq");
11211 cmdline_parse_token_num_t cmd_vf_vlan_stripq_port_id =
11212 	TOKEN_NUM_INITIALIZER
11213 		(struct cmd_vf_vlan_stripq_result,
11214 		 port_id, UINT8);
11215 cmdline_parse_token_num_t cmd_vf_vlan_stripq_vf_id =
11216 	TOKEN_NUM_INITIALIZER
11217 		(struct cmd_vf_vlan_stripq_result,
11218 		 vf_id, UINT16);
11219 cmdline_parse_token_string_t cmd_vf_vlan_stripq_on_off =
11220 	TOKEN_STRING_INITIALIZER
11221 		(struct cmd_vf_vlan_stripq_result,
11222 		 on_off, "on#off");
11223 
11224 static void
11225 cmd_set_vf_vlan_stripq_parsed(
11226 	void *parsed_result,
11227 	__attribute__((unused)) struct cmdline *cl,
11228 	__attribute__((unused)) void *data)
11229 {
11230 	struct cmd_vf_vlan_stripq_result *res = parsed_result;
11231 	int ret = -ENOTSUP;
11232 
11233 	__rte_unused int is_on = (strcmp(res->on_off, "on") == 0) ? 1 : 0;
11234 
11235 	if (port_id_is_invalid(res->port_id, ENABLED_WARN))
11236 		return;
11237 
11238 #ifdef RTE_LIBRTE_IXGBE_PMD
11239 	if (ret == -ENOTSUP)
11240 		ret = rte_pmd_ixgbe_set_vf_vlan_stripq(res->port_id,
11241 			res->vf_id, is_on);
11242 #endif
11243 #ifdef RTE_LIBRTE_I40E_PMD
11244 	if (ret == -ENOTSUP)
11245 		ret = rte_pmd_i40e_set_vf_vlan_stripq(res->port_id,
11246 			res->vf_id, is_on);
11247 #endif
11248 #ifdef RTE_LIBRTE_BNXT_PMD
11249 	if (ret == -ENOTSUP)
11250 		ret = rte_pmd_bnxt_set_vf_vlan_stripq(res->port_id,
11251 			res->vf_id, is_on);
11252 #endif
11253 
11254 	switch (ret) {
11255 	case 0:
11256 		break;
11257 	case -EINVAL:
11258 		printf("invalid vf_id %d or is_on %d\n", res->vf_id, is_on);
11259 		break;
11260 	case -ENODEV:
11261 		printf("invalid port_id %d\n", res->port_id);
11262 		break;
11263 	case -ENOTSUP:
11264 		printf("function not implemented\n");
11265 		break;
11266 	default:
11267 		printf("programming error: (%s)\n", strerror(-ret));
11268 	}
11269 }
11270 
11271 cmdline_parse_inst_t cmd_set_vf_vlan_stripq = {
11272 	.f = cmd_set_vf_vlan_stripq_parsed,
11273 	.data = NULL,
11274 	.help_str = "set vf vlan stripq <port_id> <vf_id> on|off",
11275 	.tokens = {
11276 		(void *)&cmd_vf_vlan_stripq_set,
11277 		(void *)&cmd_vf_vlan_stripq_vf,
11278 		(void *)&cmd_vf_vlan_stripq_vlan,
11279 		(void *)&cmd_vf_vlan_stripq_stripq,
11280 		(void *)&cmd_vf_vlan_stripq_port_id,
11281 		(void *)&cmd_vf_vlan_stripq_vf_id,
11282 		(void *)&cmd_vf_vlan_stripq_on_off,
11283 		NULL,
11284 	},
11285 };
11286 
11287 /* vf vlan insert configuration */
11288 
11289 /* Common result structure for vf vlan insert */
11290 struct cmd_vf_vlan_insert_result {
11291 	cmdline_fixed_string_t set;
11292 	cmdline_fixed_string_t vf;
11293 	cmdline_fixed_string_t vlan;
11294 	cmdline_fixed_string_t insert;
11295 	uint8_t port_id;
11296 	uint16_t vf_id;
11297 	uint16_t vlan_id;
11298 };
11299 
11300 /* Common CLI fields for vf vlan insert enable disable */
11301 cmdline_parse_token_string_t cmd_vf_vlan_insert_set =
11302 	TOKEN_STRING_INITIALIZER
11303 		(struct cmd_vf_vlan_insert_result,
11304 		 set, "set");
11305 cmdline_parse_token_string_t cmd_vf_vlan_insert_vf =
11306 	TOKEN_STRING_INITIALIZER
11307 		(struct cmd_vf_vlan_insert_result,
11308 		 vf, "vf");
11309 cmdline_parse_token_string_t cmd_vf_vlan_insert_vlan =
11310 	TOKEN_STRING_INITIALIZER
11311 		(struct cmd_vf_vlan_insert_result,
11312 		 vlan, "vlan");
11313 cmdline_parse_token_string_t cmd_vf_vlan_insert_insert =
11314 	TOKEN_STRING_INITIALIZER
11315 		(struct cmd_vf_vlan_insert_result,
11316 		 insert, "insert");
11317 cmdline_parse_token_num_t cmd_vf_vlan_insert_port_id =
11318 	TOKEN_NUM_INITIALIZER
11319 		(struct cmd_vf_vlan_insert_result,
11320 		 port_id, UINT8);
11321 cmdline_parse_token_num_t cmd_vf_vlan_insert_vf_id =
11322 	TOKEN_NUM_INITIALIZER
11323 		(struct cmd_vf_vlan_insert_result,
11324 		 vf_id, UINT16);
11325 cmdline_parse_token_num_t cmd_vf_vlan_insert_vlan_id =
11326 	TOKEN_NUM_INITIALIZER
11327 		(struct cmd_vf_vlan_insert_result,
11328 		 vlan_id, UINT16);
11329 
11330 static void
11331 cmd_set_vf_vlan_insert_parsed(
11332 	void *parsed_result,
11333 	__attribute__((unused)) struct cmdline *cl,
11334 	__attribute__((unused)) void *data)
11335 {
11336 	struct cmd_vf_vlan_insert_result *res = parsed_result;
11337 	int ret = -ENOTSUP;
11338 
11339 	if (port_id_is_invalid(res->port_id, ENABLED_WARN))
11340 		return;
11341 
11342 #ifdef RTE_LIBRTE_IXGBE_PMD
11343 	if (ret == -ENOTSUP)
11344 		ret = rte_pmd_ixgbe_set_vf_vlan_insert(res->port_id, res->vf_id,
11345 			res->vlan_id);
11346 #endif
11347 #ifdef RTE_LIBRTE_I40E_PMD
11348 	if (ret == -ENOTSUP)
11349 		ret = rte_pmd_i40e_set_vf_vlan_insert(res->port_id, res->vf_id,
11350 			res->vlan_id);
11351 #endif
11352 
11353 	switch (ret) {
11354 	case 0:
11355 		break;
11356 	case -EINVAL:
11357 		printf("invalid vf_id %d or vlan_id %d\n", res->vf_id, res->vlan_id);
11358 		break;
11359 	case -ENODEV:
11360 		printf("invalid port_id %d\n", res->port_id);
11361 		break;
11362 	case -ENOTSUP:
11363 		printf("function not implemented\n");
11364 		break;
11365 	default:
11366 		printf("programming error: (%s)\n", strerror(-ret));
11367 	}
11368 }
11369 
11370 cmdline_parse_inst_t cmd_set_vf_vlan_insert = {
11371 	.f = cmd_set_vf_vlan_insert_parsed,
11372 	.data = NULL,
11373 	.help_str = "set vf vlan insert <port_id> <vf_id> <vlan_id>",
11374 	.tokens = {
11375 		(void *)&cmd_vf_vlan_insert_set,
11376 		(void *)&cmd_vf_vlan_insert_vf,
11377 		(void *)&cmd_vf_vlan_insert_vlan,
11378 		(void *)&cmd_vf_vlan_insert_insert,
11379 		(void *)&cmd_vf_vlan_insert_port_id,
11380 		(void *)&cmd_vf_vlan_insert_vf_id,
11381 		(void *)&cmd_vf_vlan_insert_vlan_id,
11382 		NULL,
11383 	},
11384 };
11385 
11386 /* tx loopback configuration */
11387 
11388 /* Common result structure for tx loopback */
11389 struct cmd_tx_loopback_result {
11390 	cmdline_fixed_string_t set;
11391 	cmdline_fixed_string_t tx;
11392 	cmdline_fixed_string_t loopback;
11393 	uint8_t port_id;
11394 	cmdline_fixed_string_t on_off;
11395 };
11396 
11397 /* Common CLI fields for tx loopback enable disable */
11398 cmdline_parse_token_string_t cmd_tx_loopback_set =
11399 	TOKEN_STRING_INITIALIZER
11400 		(struct cmd_tx_loopback_result,
11401 		 set, "set");
11402 cmdline_parse_token_string_t cmd_tx_loopback_tx =
11403 	TOKEN_STRING_INITIALIZER
11404 		(struct cmd_tx_loopback_result,
11405 		 tx, "tx");
11406 cmdline_parse_token_string_t cmd_tx_loopback_loopback =
11407 	TOKEN_STRING_INITIALIZER
11408 		(struct cmd_tx_loopback_result,
11409 		 loopback, "loopback");
11410 cmdline_parse_token_num_t cmd_tx_loopback_port_id =
11411 	TOKEN_NUM_INITIALIZER
11412 		(struct cmd_tx_loopback_result,
11413 		 port_id, UINT8);
11414 cmdline_parse_token_string_t cmd_tx_loopback_on_off =
11415 	TOKEN_STRING_INITIALIZER
11416 		(struct cmd_tx_loopback_result,
11417 		 on_off, "on#off");
11418 
11419 static void
11420 cmd_set_tx_loopback_parsed(
11421 	void *parsed_result,
11422 	__attribute__((unused)) struct cmdline *cl,
11423 	__attribute__((unused)) void *data)
11424 {
11425 	struct cmd_tx_loopback_result *res = parsed_result;
11426 	int ret = -ENOTSUP;
11427 
11428 	__rte_unused int is_on = (strcmp(res->on_off, "on") == 0) ? 1 : 0;
11429 
11430 	if (port_id_is_invalid(res->port_id, ENABLED_WARN))
11431 		return;
11432 
11433 #ifdef RTE_LIBRTE_IXGBE_PMD
11434 	if (ret == -ENOTSUP)
11435 		ret = rte_pmd_ixgbe_set_tx_loopback(res->port_id, is_on);
11436 #endif
11437 #ifdef RTE_LIBRTE_I40E_PMD
11438 	if (ret == -ENOTSUP)
11439 		ret = rte_pmd_i40e_set_tx_loopback(res->port_id, is_on);
11440 #endif
11441 #ifdef RTE_LIBRTE_BNXT_PMD
11442 	if (ret == -ENOTSUP)
11443 		ret = rte_pmd_bnxt_set_tx_loopback(res->port_id, is_on);
11444 #endif
11445 
11446 	switch (ret) {
11447 	case 0:
11448 		break;
11449 	case -EINVAL:
11450 		printf("invalid is_on %d\n", is_on);
11451 		break;
11452 	case -ENODEV:
11453 		printf("invalid port_id %d\n", res->port_id);
11454 		break;
11455 	case -ENOTSUP:
11456 		printf("function not implemented\n");
11457 		break;
11458 	default:
11459 		printf("programming error: (%s)\n", strerror(-ret));
11460 	}
11461 }
11462 
11463 cmdline_parse_inst_t cmd_set_tx_loopback = {
11464 	.f = cmd_set_tx_loopback_parsed,
11465 	.data = NULL,
11466 	.help_str = "set tx loopback <port_id> on|off",
11467 	.tokens = {
11468 		(void *)&cmd_tx_loopback_set,
11469 		(void *)&cmd_tx_loopback_tx,
11470 		(void *)&cmd_tx_loopback_loopback,
11471 		(void *)&cmd_tx_loopback_port_id,
11472 		(void *)&cmd_tx_loopback_on_off,
11473 		NULL,
11474 	},
11475 };
11476 
11477 /* all queues drop enable configuration */
11478 
11479 /* Common result structure for all queues drop enable */
11480 struct cmd_all_queues_drop_en_result {
11481 	cmdline_fixed_string_t set;
11482 	cmdline_fixed_string_t all;
11483 	cmdline_fixed_string_t queues;
11484 	cmdline_fixed_string_t drop;
11485 	uint8_t port_id;
11486 	cmdline_fixed_string_t on_off;
11487 };
11488 
11489 /* Common CLI fields for tx loopback enable disable */
11490 cmdline_parse_token_string_t cmd_all_queues_drop_en_set =
11491 	TOKEN_STRING_INITIALIZER
11492 		(struct cmd_all_queues_drop_en_result,
11493 		 set, "set");
11494 cmdline_parse_token_string_t cmd_all_queues_drop_en_all =
11495 	TOKEN_STRING_INITIALIZER
11496 		(struct cmd_all_queues_drop_en_result,
11497 		 all, "all");
11498 cmdline_parse_token_string_t cmd_all_queues_drop_en_queues =
11499 	TOKEN_STRING_INITIALIZER
11500 		(struct cmd_all_queues_drop_en_result,
11501 		 queues, "queues");
11502 cmdline_parse_token_string_t cmd_all_queues_drop_en_drop =
11503 	TOKEN_STRING_INITIALIZER
11504 		(struct cmd_all_queues_drop_en_result,
11505 		 drop, "drop");
11506 cmdline_parse_token_num_t cmd_all_queues_drop_en_port_id =
11507 	TOKEN_NUM_INITIALIZER
11508 		(struct cmd_all_queues_drop_en_result,
11509 		 port_id, UINT8);
11510 cmdline_parse_token_string_t cmd_all_queues_drop_en_on_off =
11511 	TOKEN_STRING_INITIALIZER
11512 		(struct cmd_all_queues_drop_en_result,
11513 		 on_off, "on#off");
11514 
11515 static void
11516 cmd_set_all_queues_drop_en_parsed(
11517 	void *parsed_result,
11518 	__attribute__((unused)) struct cmdline *cl,
11519 	__attribute__((unused)) void *data)
11520 {
11521 	struct cmd_all_queues_drop_en_result *res = parsed_result;
11522 	int ret = -ENOTSUP;
11523 	int is_on = (strcmp(res->on_off, "on") == 0) ? 1 : 0;
11524 
11525 	if (port_id_is_invalid(res->port_id, ENABLED_WARN))
11526 		return;
11527 
11528 #ifdef RTE_LIBRTE_IXGBE_PMD
11529 	if (ret == -ENOTSUP)
11530 		ret = rte_pmd_ixgbe_set_all_queues_drop_en(res->port_id, is_on);
11531 #endif
11532 #ifdef RTE_LIBRTE_BNXT_PMD
11533 	if (ret == -ENOTSUP)
11534 		ret = rte_pmd_bnxt_set_all_queues_drop_en(res->port_id, is_on);
11535 #endif
11536 	switch (ret) {
11537 	case 0:
11538 		break;
11539 	case -EINVAL:
11540 		printf("invalid is_on %d\n", is_on);
11541 		break;
11542 	case -ENODEV:
11543 		printf("invalid port_id %d\n", res->port_id);
11544 		break;
11545 	case -ENOTSUP:
11546 		printf("function not implemented\n");
11547 		break;
11548 	default:
11549 		printf("programming error: (%s)\n", strerror(-ret));
11550 	}
11551 }
11552 
11553 cmdline_parse_inst_t cmd_set_all_queues_drop_en = {
11554 	.f = cmd_set_all_queues_drop_en_parsed,
11555 	.data = NULL,
11556 	.help_str = "set all queues drop <port_id> on|off",
11557 	.tokens = {
11558 		(void *)&cmd_all_queues_drop_en_set,
11559 		(void *)&cmd_all_queues_drop_en_all,
11560 		(void *)&cmd_all_queues_drop_en_queues,
11561 		(void *)&cmd_all_queues_drop_en_drop,
11562 		(void *)&cmd_all_queues_drop_en_port_id,
11563 		(void *)&cmd_all_queues_drop_en_on_off,
11564 		NULL,
11565 	},
11566 };
11567 
11568 #ifdef RTE_LIBRTE_IXGBE_PMD
11569 /* vf split drop enable configuration */
11570 
11571 /* Common result structure for vf split drop enable */
11572 struct cmd_vf_split_drop_en_result {
11573 	cmdline_fixed_string_t set;
11574 	cmdline_fixed_string_t vf;
11575 	cmdline_fixed_string_t split;
11576 	cmdline_fixed_string_t drop;
11577 	uint8_t port_id;
11578 	uint16_t vf_id;
11579 	cmdline_fixed_string_t on_off;
11580 };
11581 
11582 /* Common CLI fields for vf split drop enable disable */
11583 cmdline_parse_token_string_t cmd_vf_split_drop_en_set =
11584 	TOKEN_STRING_INITIALIZER
11585 		(struct cmd_vf_split_drop_en_result,
11586 		 set, "set");
11587 cmdline_parse_token_string_t cmd_vf_split_drop_en_vf =
11588 	TOKEN_STRING_INITIALIZER
11589 		(struct cmd_vf_split_drop_en_result,
11590 		 vf, "vf");
11591 cmdline_parse_token_string_t cmd_vf_split_drop_en_split =
11592 	TOKEN_STRING_INITIALIZER
11593 		(struct cmd_vf_split_drop_en_result,
11594 		 split, "split");
11595 cmdline_parse_token_string_t cmd_vf_split_drop_en_drop =
11596 	TOKEN_STRING_INITIALIZER
11597 		(struct cmd_vf_split_drop_en_result,
11598 		 drop, "drop");
11599 cmdline_parse_token_num_t cmd_vf_split_drop_en_port_id =
11600 	TOKEN_NUM_INITIALIZER
11601 		(struct cmd_vf_split_drop_en_result,
11602 		 port_id, UINT8);
11603 cmdline_parse_token_num_t cmd_vf_split_drop_en_vf_id =
11604 	TOKEN_NUM_INITIALIZER
11605 		(struct cmd_vf_split_drop_en_result,
11606 		 vf_id, UINT16);
11607 cmdline_parse_token_string_t cmd_vf_split_drop_en_on_off =
11608 	TOKEN_STRING_INITIALIZER
11609 		(struct cmd_vf_split_drop_en_result,
11610 		 on_off, "on#off");
11611 
11612 static void
11613 cmd_set_vf_split_drop_en_parsed(
11614 	void *parsed_result,
11615 	__attribute__((unused)) struct cmdline *cl,
11616 	__attribute__((unused)) void *data)
11617 {
11618 	struct cmd_vf_split_drop_en_result *res = parsed_result;
11619 	int ret;
11620 	int is_on = (strcmp(res->on_off, "on") == 0) ? 1 : 0;
11621 
11622 	if (port_id_is_invalid(res->port_id, ENABLED_WARN))
11623 		return;
11624 
11625 	ret = rte_pmd_ixgbe_set_vf_split_drop_en(res->port_id, res->vf_id,
11626 			is_on);
11627 	switch (ret) {
11628 	case 0:
11629 		break;
11630 	case -EINVAL:
11631 		printf("invalid vf_id %d or is_on %d\n", res->vf_id, is_on);
11632 		break;
11633 	case -ENODEV:
11634 		printf("invalid port_id %d\n", res->port_id);
11635 		break;
11636 	default:
11637 		printf("programming error: (%s)\n", strerror(-ret));
11638 	}
11639 }
11640 
11641 cmdline_parse_inst_t cmd_set_vf_split_drop_en = {
11642 	.f = cmd_set_vf_split_drop_en_parsed,
11643 	.data = NULL,
11644 	.help_str = "set vf split drop <port_id> <vf_id> on|off",
11645 	.tokens = {
11646 		(void *)&cmd_vf_split_drop_en_set,
11647 		(void *)&cmd_vf_split_drop_en_vf,
11648 		(void *)&cmd_vf_split_drop_en_split,
11649 		(void *)&cmd_vf_split_drop_en_drop,
11650 		(void *)&cmd_vf_split_drop_en_port_id,
11651 		(void *)&cmd_vf_split_drop_en_vf_id,
11652 		(void *)&cmd_vf_split_drop_en_on_off,
11653 		NULL,
11654 	},
11655 };
11656 #endif
11657 
11658 /* vf mac address configuration */
11659 
11660 /* Common result structure for vf mac address */
11661 struct cmd_set_vf_mac_addr_result {
11662 	cmdline_fixed_string_t set;
11663 	cmdline_fixed_string_t vf;
11664 	cmdline_fixed_string_t mac;
11665 	cmdline_fixed_string_t addr;
11666 	uint8_t port_id;
11667 	uint16_t vf_id;
11668 	struct ether_addr mac_addr;
11669 
11670 };
11671 
11672 /* Common CLI fields for vf split drop enable disable */
11673 cmdline_parse_token_string_t cmd_set_vf_mac_addr_set =
11674 	TOKEN_STRING_INITIALIZER
11675 		(struct cmd_set_vf_mac_addr_result,
11676 		 set, "set");
11677 cmdline_parse_token_string_t cmd_set_vf_mac_addr_vf =
11678 	TOKEN_STRING_INITIALIZER
11679 		(struct cmd_set_vf_mac_addr_result,
11680 		 vf, "vf");
11681 cmdline_parse_token_string_t cmd_set_vf_mac_addr_mac =
11682 	TOKEN_STRING_INITIALIZER
11683 		(struct cmd_set_vf_mac_addr_result,
11684 		 mac, "mac");
11685 cmdline_parse_token_string_t cmd_set_vf_mac_addr_addr =
11686 	TOKEN_STRING_INITIALIZER
11687 		(struct cmd_set_vf_mac_addr_result,
11688 		 addr, "addr");
11689 cmdline_parse_token_num_t cmd_set_vf_mac_addr_port_id =
11690 	TOKEN_NUM_INITIALIZER
11691 		(struct cmd_set_vf_mac_addr_result,
11692 		 port_id, UINT8);
11693 cmdline_parse_token_num_t cmd_set_vf_mac_addr_vf_id =
11694 	TOKEN_NUM_INITIALIZER
11695 		(struct cmd_set_vf_mac_addr_result,
11696 		 vf_id, UINT16);
11697 cmdline_parse_token_etheraddr_t cmd_set_vf_mac_addr_mac_addr =
11698 	TOKEN_ETHERADDR_INITIALIZER(struct cmd_set_vf_mac_addr_result,
11699 		 mac_addr);
11700 
11701 static void
11702 cmd_set_vf_mac_addr_parsed(
11703 	void *parsed_result,
11704 	__attribute__((unused)) struct cmdline *cl,
11705 	__attribute__((unused)) void *data)
11706 {
11707 	struct cmd_set_vf_mac_addr_result *res = parsed_result;
11708 	int ret = -ENOTSUP;
11709 
11710 	if (port_id_is_invalid(res->port_id, ENABLED_WARN))
11711 		return;
11712 
11713 #ifdef RTE_LIBRTE_IXGBE_PMD
11714 	if (ret == -ENOTSUP)
11715 		ret = rte_pmd_ixgbe_set_vf_mac_addr(res->port_id, res->vf_id,
11716 				&res->mac_addr);
11717 #endif
11718 #ifdef RTE_LIBRTE_I40E_PMD
11719 	if (ret == -ENOTSUP)
11720 		ret = rte_pmd_i40e_set_vf_mac_addr(res->port_id, res->vf_id,
11721 				&res->mac_addr);
11722 #endif
11723 #ifdef RTE_LIBRTE_BNXT_PMD
11724 	if (ret == -ENOTSUP)
11725 		ret = rte_pmd_bnxt_set_vf_mac_addr(res->port_id, res->vf_id,
11726 				&res->mac_addr);
11727 #endif
11728 
11729 	switch (ret) {
11730 	case 0:
11731 		break;
11732 	case -EINVAL:
11733 		printf("invalid vf_id %d or mac_addr\n", res->vf_id);
11734 		break;
11735 	case -ENODEV:
11736 		printf("invalid port_id %d\n", res->port_id);
11737 		break;
11738 	case -ENOTSUP:
11739 		printf("function not implemented\n");
11740 		break;
11741 	default:
11742 		printf("programming error: (%s)\n", strerror(-ret));
11743 	}
11744 }
11745 
11746 cmdline_parse_inst_t cmd_set_vf_mac_addr = {
11747 	.f = cmd_set_vf_mac_addr_parsed,
11748 	.data = NULL,
11749 	.help_str = "set vf mac addr <port_id> <vf_id> <mac_addr>",
11750 	.tokens = {
11751 		(void *)&cmd_set_vf_mac_addr_set,
11752 		(void *)&cmd_set_vf_mac_addr_vf,
11753 		(void *)&cmd_set_vf_mac_addr_mac,
11754 		(void *)&cmd_set_vf_mac_addr_addr,
11755 		(void *)&cmd_set_vf_mac_addr_port_id,
11756 		(void *)&cmd_set_vf_mac_addr_vf_id,
11757 		(void *)&cmd_set_vf_mac_addr_mac_addr,
11758 		NULL,
11759 	},
11760 };
11761 
11762 #ifdef RTE_LIBRTE_IXGBE_PMD
11763 /* MACsec configuration */
11764 
11765 /* Common result structure for MACsec offload enable */
11766 struct cmd_macsec_offload_on_result {
11767 	cmdline_fixed_string_t set;
11768 	cmdline_fixed_string_t macsec;
11769 	cmdline_fixed_string_t offload;
11770 	uint8_t port_id;
11771 	cmdline_fixed_string_t on;
11772 	cmdline_fixed_string_t encrypt;
11773 	cmdline_fixed_string_t en_on_off;
11774 	cmdline_fixed_string_t replay_protect;
11775 	cmdline_fixed_string_t rp_on_off;
11776 };
11777 
11778 /* Common CLI fields for MACsec offload disable */
11779 cmdline_parse_token_string_t cmd_macsec_offload_on_set =
11780 	TOKEN_STRING_INITIALIZER
11781 		(struct cmd_macsec_offload_on_result,
11782 		 set, "set");
11783 cmdline_parse_token_string_t cmd_macsec_offload_on_macsec =
11784 	TOKEN_STRING_INITIALIZER
11785 		(struct cmd_macsec_offload_on_result,
11786 		 macsec, "macsec");
11787 cmdline_parse_token_string_t cmd_macsec_offload_on_offload =
11788 	TOKEN_STRING_INITIALIZER
11789 		(struct cmd_macsec_offload_on_result,
11790 		 offload, "offload");
11791 cmdline_parse_token_num_t cmd_macsec_offload_on_port_id =
11792 	TOKEN_NUM_INITIALIZER
11793 		(struct cmd_macsec_offload_on_result,
11794 		 port_id, UINT8);
11795 cmdline_parse_token_string_t cmd_macsec_offload_on_on =
11796 	TOKEN_STRING_INITIALIZER
11797 		(struct cmd_macsec_offload_on_result,
11798 		 on, "on");
11799 cmdline_parse_token_string_t cmd_macsec_offload_on_encrypt =
11800 	TOKEN_STRING_INITIALIZER
11801 		(struct cmd_macsec_offload_on_result,
11802 		 encrypt, "encrypt");
11803 cmdline_parse_token_string_t cmd_macsec_offload_on_en_on_off =
11804 	TOKEN_STRING_INITIALIZER
11805 		(struct cmd_macsec_offload_on_result,
11806 		 en_on_off, "on#off");
11807 cmdline_parse_token_string_t cmd_macsec_offload_on_replay_protect =
11808 	TOKEN_STRING_INITIALIZER
11809 		(struct cmd_macsec_offload_on_result,
11810 		 replay_protect, "replay-protect");
11811 cmdline_parse_token_string_t cmd_macsec_offload_on_rp_on_off =
11812 	TOKEN_STRING_INITIALIZER
11813 		(struct cmd_macsec_offload_on_result,
11814 		 rp_on_off, "on#off");
11815 
11816 static void
11817 cmd_set_macsec_offload_on_parsed(
11818 	void *parsed_result,
11819 	__attribute__((unused)) struct cmdline *cl,
11820 	__attribute__((unused)) void *data)
11821 {
11822 	struct cmd_macsec_offload_on_result *res = parsed_result;
11823 	int ret;
11824 	portid_t port_id = res->port_id;
11825 	int en = (strcmp(res->en_on_off, "on") == 0) ? 1 : 0;
11826 	int rp = (strcmp(res->rp_on_off, "on") == 0) ? 1 : 0;
11827 
11828 	if (port_id_is_invalid(port_id, ENABLED_WARN))
11829 		return;
11830 
11831 	ports[port_id].tx_ol_flags |= TESTPMD_TX_OFFLOAD_MACSEC;
11832 	ret = rte_pmd_ixgbe_macsec_enable(port_id, en, rp);
11833 
11834 	switch (ret) {
11835 	case 0:
11836 		break;
11837 	case -ENODEV:
11838 		printf("invalid port_id %d\n", port_id);
11839 		break;
11840 	default:
11841 		printf("programming error: (%s)\n", strerror(-ret));
11842 	}
11843 }
11844 
11845 cmdline_parse_inst_t cmd_set_macsec_offload_on = {
11846 	.f = cmd_set_macsec_offload_on_parsed,
11847 	.data = NULL,
11848 	.help_str = "set macsec offload <port_id> on "
11849 		"encrypt on|off replay-protect on|off",
11850 	.tokens = {
11851 		(void *)&cmd_macsec_offload_on_set,
11852 		(void *)&cmd_macsec_offload_on_macsec,
11853 		(void *)&cmd_macsec_offload_on_offload,
11854 		(void *)&cmd_macsec_offload_on_port_id,
11855 		(void *)&cmd_macsec_offload_on_on,
11856 		(void *)&cmd_macsec_offload_on_encrypt,
11857 		(void *)&cmd_macsec_offload_on_en_on_off,
11858 		(void *)&cmd_macsec_offload_on_replay_protect,
11859 		(void *)&cmd_macsec_offload_on_rp_on_off,
11860 		NULL,
11861 	},
11862 };
11863 
11864 /* Common result structure for MACsec offload disable */
11865 struct cmd_macsec_offload_off_result {
11866 	cmdline_fixed_string_t set;
11867 	cmdline_fixed_string_t macsec;
11868 	cmdline_fixed_string_t offload;
11869 	uint8_t port_id;
11870 	cmdline_fixed_string_t off;
11871 };
11872 
11873 /* Common CLI fields for MACsec offload disable */
11874 cmdline_parse_token_string_t cmd_macsec_offload_off_set =
11875 	TOKEN_STRING_INITIALIZER
11876 		(struct cmd_macsec_offload_off_result,
11877 		 set, "set");
11878 cmdline_parse_token_string_t cmd_macsec_offload_off_macsec =
11879 	TOKEN_STRING_INITIALIZER
11880 		(struct cmd_macsec_offload_off_result,
11881 		 macsec, "macsec");
11882 cmdline_parse_token_string_t cmd_macsec_offload_off_offload =
11883 	TOKEN_STRING_INITIALIZER
11884 		(struct cmd_macsec_offload_off_result,
11885 		 offload, "offload");
11886 cmdline_parse_token_num_t cmd_macsec_offload_off_port_id =
11887 	TOKEN_NUM_INITIALIZER
11888 		(struct cmd_macsec_offload_off_result,
11889 		 port_id, UINT8);
11890 cmdline_parse_token_string_t cmd_macsec_offload_off_off =
11891 	TOKEN_STRING_INITIALIZER
11892 		(struct cmd_macsec_offload_off_result,
11893 		 off, "off");
11894 
11895 static void
11896 cmd_set_macsec_offload_off_parsed(
11897 	void *parsed_result,
11898 	__attribute__((unused)) struct cmdline *cl,
11899 	__attribute__((unused)) void *data)
11900 {
11901 	struct cmd_macsec_offload_off_result *res = parsed_result;
11902 	int ret;
11903 	portid_t port_id = res->port_id;
11904 
11905 	if (port_id_is_invalid(port_id, ENABLED_WARN))
11906 		return;
11907 
11908 	ports[port_id].tx_ol_flags &= ~TESTPMD_TX_OFFLOAD_MACSEC;
11909 	ret = rte_pmd_ixgbe_macsec_disable(port_id);
11910 
11911 	switch (ret) {
11912 	case 0:
11913 		break;
11914 	case -ENODEV:
11915 		printf("invalid port_id %d\n", port_id);
11916 		break;
11917 	default:
11918 		printf("programming error: (%s)\n", strerror(-ret));
11919 	}
11920 }
11921 
11922 cmdline_parse_inst_t cmd_set_macsec_offload_off = {
11923 	.f = cmd_set_macsec_offload_off_parsed,
11924 	.data = NULL,
11925 	.help_str = "set macsec offload <port_id> off",
11926 	.tokens = {
11927 		(void *)&cmd_macsec_offload_off_set,
11928 		(void *)&cmd_macsec_offload_off_macsec,
11929 		(void *)&cmd_macsec_offload_off_offload,
11930 		(void *)&cmd_macsec_offload_off_port_id,
11931 		(void *)&cmd_macsec_offload_off_off,
11932 		NULL,
11933 	},
11934 };
11935 
11936 /* Common result structure for MACsec secure connection configure */
11937 struct cmd_macsec_sc_result {
11938 	cmdline_fixed_string_t set;
11939 	cmdline_fixed_string_t macsec;
11940 	cmdline_fixed_string_t sc;
11941 	cmdline_fixed_string_t tx_rx;
11942 	uint8_t port_id;
11943 	struct ether_addr mac;
11944 	uint16_t pi;
11945 };
11946 
11947 /* Common CLI fields for MACsec secure connection configure */
11948 cmdline_parse_token_string_t cmd_macsec_sc_set =
11949 	TOKEN_STRING_INITIALIZER
11950 		(struct cmd_macsec_sc_result,
11951 		 set, "set");
11952 cmdline_parse_token_string_t cmd_macsec_sc_macsec =
11953 	TOKEN_STRING_INITIALIZER
11954 		(struct cmd_macsec_sc_result,
11955 		 macsec, "macsec");
11956 cmdline_parse_token_string_t cmd_macsec_sc_sc =
11957 	TOKEN_STRING_INITIALIZER
11958 		(struct cmd_macsec_sc_result,
11959 		 sc, "sc");
11960 cmdline_parse_token_string_t cmd_macsec_sc_tx_rx =
11961 	TOKEN_STRING_INITIALIZER
11962 		(struct cmd_macsec_sc_result,
11963 		 tx_rx, "tx#rx");
11964 cmdline_parse_token_num_t cmd_macsec_sc_port_id =
11965 	TOKEN_NUM_INITIALIZER
11966 		(struct cmd_macsec_sc_result,
11967 		 port_id, UINT8);
11968 cmdline_parse_token_etheraddr_t cmd_macsec_sc_mac =
11969 	TOKEN_ETHERADDR_INITIALIZER
11970 		(struct cmd_macsec_sc_result,
11971 		 mac);
11972 cmdline_parse_token_num_t cmd_macsec_sc_pi =
11973 	TOKEN_NUM_INITIALIZER
11974 		(struct cmd_macsec_sc_result,
11975 		 pi, UINT16);
11976 
11977 static void
11978 cmd_set_macsec_sc_parsed(
11979 	void *parsed_result,
11980 	__attribute__((unused)) struct cmdline *cl,
11981 	__attribute__((unused)) void *data)
11982 {
11983 	struct cmd_macsec_sc_result *res = parsed_result;
11984 	int ret;
11985 	int is_tx = (strcmp(res->tx_rx, "tx") == 0) ? 1 : 0;
11986 
11987 	ret = is_tx ?
11988 		rte_pmd_ixgbe_macsec_config_txsc(res->port_id,
11989 				res->mac.addr_bytes) :
11990 		rte_pmd_ixgbe_macsec_config_rxsc(res->port_id,
11991 				res->mac.addr_bytes, res->pi);
11992 	switch (ret) {
11993 	case 0:
11994 		break;
11995 	case -ENODEV:
11996 		printf("invalid port_id %d\n", res->port_id);
11997 		break;
11998 	default:
11999 		printf("programming error: (%s)\n", strerror(-ret));
12000 	}
12001 }
12002 
12003 cmdline_parse_inst_t cmd_set_macsec_sc = {
12004 	.f = cmd_set_macsec_sc_parsed,
12005 	.data = NULL,
12006 	.help_str = "set macsec sc tx|rx <port_id> <mac> <pi>",
12007 	.tokens = {
12008 		(void *)&cmd_macsec_sc_set,
12009 		(void *)&cmd_macsec_sc_macsec,
12010 		(void *)&cmd_macsec_sc_sc,
12011 		(void *)&cmd_macsec_sc_tx_rx,
12012 		(void *)&cmd_macsec_sc_port_id,
12013 		(void *)&cmd_macsec_sc_mac,
12014 		(void *)&cmd_macsec_sc_pi,
12015 		NULL,
12016 	},
12017 };
12018 
12019 /* Common result structure for MACsec secure connection configure */
12020 struct cmd_macsec_sa_result {
12021 	cmdline_fixed_string_t set;
12022 	cmdline_fixed_string_t macsec;
12023 	cmdline_fixed_string_t sa;
12024 	cmdline_fixed_string_t tx_rx;
12025 	uint8_t port_id;
12026 	uint8_t idx;
12027 	uint8_t an;
12028 	uint32_t pn;
12029 	cmdline_fixed_string_t key;
12030 };
12031 
12032 /* Common CLI fields for MACsec secure connection configure */
12033 cmdline_parse_token_string_t cmd_macsec_sa_set =
12034 	TOKEN_STRING_INITIALIZER
12035 		(struct cmd_macsec_sa_result,
12036 		 set, "set");
12037 cmdline_parse_token_string_t cmd_macsec_sa_macsec =
12038 	TOKEN_STRING_INITIALIZER
12039 		(struct cmd_macsec_sa_result,
12040 		 macsec, "macsec");
12041 cmdline_parse_token_string_t cmd_macsec_sa_sa =
12042 	TOKEN_STRING_INITIALIZER
12043 		(struct cmd_macsec_sa_result,
12044 		 sa, "sa");
12045 cmdline_parse_token_string_t cmd_macsec_sa_tx_rx =
12046 	TOKEN_STRING_INITIALIZER
12047 		(struct cmd_macsec_sa_result,
12048 		 tx_rx, "tx#rx");
12049 cmdline_parse_token_num_t cmd_macsec_sa_port_id =
12050 	TOKEN_NUM_INITIALIZER
12051 		(struct cmd_macsec_sa_result,
12052 		 port_id, UINT8);
12053 cmdline_parse_token_num_t cmd_macsec_sa_idx =
12054 	TOKEN_NUM_INITIALIZER
12055 		(struct cmd_macsec_sa_result,
12056 		 idx, UINT8);
12057 cmdline_parse_token_num_t cmd_macsec_sa_an =
12058 	TOKEN_NUM_INITIALIZER
12059 		(struct cmd_macsec_sa_result,
12060 		 an, UINT8);
12061 cmdline_parse_token_num_t cmd_macsec_sa_pn =
12062 	TOKEN_NUM_INITIALIZER
12063 		(struct cmd_macsec_sa_result,
12064 		 pn, UINT32);
12065 cmdline_parse_token_string_t cmd_macsec_sa_key =
12066 	TOKEN_STRING_INITIALIZER
12067 		(struct cmd_macsec_sa_result,
12068 		 key, NULL);
12069 
12070 static void
12071 cmd_set_macsec_sa_parsed(
12072 	void *parsed_result,
12073 	__attribute__((unused)) struct cmdline *cl,
12074 	__attribute__((unused)) void *data)
12075 {
12076 	struct cmd_macsec_sa_result *res = parsed_result;
12077 	int ret;
12078 	int is_tx = (strcmp(res->tx_rx, "tx") == 0) ? 1 : 0;
12079 	uint8_t key[16] = { 0 };
12080 	uint8_t xdgt0;
12081 	uint8_t xdgt1;
12082 	int key_len;
12083 	int i;
12084 
12085 	key_len = strlen(res->key) / 2;
12086 	if (key_len > 16)
12087 		key_len = 16;
12088 
12089 	for (i = 0; i < key_len; i++) {
12090 		xdgt0 = parse_and_check_key_hexa_digit(res->key, (i * 2));
12091 		if (xdgt0 == 0xFF)
12092 			return;
12093 		xdgt1 = parse_and_check_key_hexa_digit(res->key, (i * 2) + 1);
12094 		if (xdgt1 == 0xFF)
12095 			return;
12096 		key[i] = (uint8_t) ((xdgt0 * 16) + xdgt1);
12097 	}
12098 
12099 	ret = is_tx ?
12100 		rte_pmd_ixgbe_macsec_select_txsa(res->port_id,
12101 			res->idx, res->an, res->pn, key) :
12102 		rte_pmd_ixgbe_macsec_select_rxsa(res->port_id,
12103 			res->idx, res->an, res->pn, key);
12104 	switch (ret) {
12105 	case 0:
12106 		break;
12107 	case -EINVAL:
12108 		printf("invalid idx %d or an %d\n", res->idx, res->an);
12109 		break;
12110 	case -ENODEV:
12111 		printf("invalid port_id %d\n", res->port_id);
12112 		break;
12113 	default:
12114 		printf("programming error: (%s)\n", strerror(-ret));
12115 	}
12116 }
12117 
12118 cmdline_parse_inst_t cmd_set_macsec_sa = {
12119 	.f = cmd_set_macsec_sa_parsed,
12120 	.data = NULL,
12121 	.help_str = "set macsec sa tx|rx <port_id> <idx> <an> <pn> <key>",
12122 	.tokens = {
12123 		(void *)&cmd_macsec_sa_set,
12124 		(void *)&cmd_macsec_sa_macsec,
12125 		(void *)&cmd_macsec_sa_sa,
12126 		(void *)&cmd_macsec_sa_tx_rx,
12127 		(void *)&cmd_macsec_sa_port_id,
12128 		(void *)&cmd_macsec_sa_idx,
12129 		(void *)&cmd_macsec_sa_an,
12130 		(void *)&cmd_macsec_sa_pn,
12131 		(void *)&cmd_macsec_sa_key,
12132 		NULL,
12133 	},
12134 };
12135 #endif
12136 
12137 /* VF unicast promiscuous mode configuration */
12138 
12139 /* Common result structure for VF unicast promiscuous mode */
12140 struct cmd_vf_promisc_result {
12141 	cmdline_fixed_string_t set;
12142 	cmdline_fixed_string_t vf;
12143 	cmdline_fixed_string_t promisc;
12144 	uint8_t port_id;
12145 	uint32_t vf_id;
12146 	cmdline_fixed_string_t on_off;
12147 };
12148 
12149 /* Common CLI fields for VF unicast promiscuous mode enable disable */
12150 cmdline_parse_token_string_t cmd_vf_promisc_set =
12151 	TOKEN_STRING_INITIALIZER
12152 		(struct cmd_vf_promisc_result,
12153 		 set, "set");
12154 cmdline_parse_token_string_t cmd_vf_promisc_vf =
12155 	TOKEN_STRING_INITIALIZER
12156 		(struct cmd_vf_promisc_result,
12157 		 vf, "vf");
12158 cmdline_parse_token_string_t cmd_vf_promisc_promisc =
12159 	TOKEN_STRING_INITIALIZER
12160 		(struct cmd_vf_promisc_result,
12161 		 promisc, "promisc");
12162 cmdline_parse_token_num_t cmd_vf_promisc_port_id =
12163 	TOKEN_NUM_INITIALIZER
12164 		(struct cmd_vf_promisc_result,
12165 		 port_id, UINT8);
12166 cmdline_parse_token_num_t cmd_vf_promisc_vf_id =
12167 	TOKEN_NUM_INITIALIZER
12168 		(struct cmd_vf_promisc_result,
12169 		 vf_id, UINT32);
12170 cmdline_parse_token_string_t cmd_vf_promisc_on_off =
12171 	TOKEN_STRING_INITIALIZER
12172 		(struct cmd_vf_promisc_result,
12173 		 on_off, "on#off");
12174 
12175 static void
12176 cmd_set_vf_promisc_parsed(
12177 	void *parsed_result,
12178 	__attribute__((unused)) struct cmdline *cl,
12179 	__attribute__((unused)) void *data)
12180 {
12181 	struct cmd_vf_promisc_result *res = parsed_result;
12182 	int ret = -ENOTSUP;
12183 
12184 	__rte_unused int is_on = (strcmp(res->on_off, "on") == 0) ? 1 : 0;
12185 
12186 	if (port_id_is_invalid(res->port_id, ENABLED_WARN))
12187 		return;
12188 
12189 #ifdef RTE_LIBRTE_I40E_PMD
12190 	ret = rte_pmd_i40e_set_vf_unicast_promisc(res->port_id,
12191 						  res->vf_id, is_on);
12192 #endif
12193 
12194 	switch (ret) {
12195 	case 0:
12196 		break;
12197 	case -EINVAL:
12198 		printf("invalid vf_id %d\n", res->vf_id);
12199 		break;
12200 	case -ENODEV:
12201 		printf("invalid port_id %d\n", res->port_id);
12202 		break;
12203 	case -ENOTSUP:
12204 		printf("function not implemented\n");
12205 		break;
12206 	default:
12207 		printf("programming error: (%s)\n", strerror(-ret));
12208 	}
12209 }
12210 
12211 cmdline_parse_inst_t cmd_set_vf_promisc = {
12212 	.f = cmd_set_vf_promisc_parsed,
12213 	.data = NULL,
12214 	.help_str = "set vf promisc <port_id> <vf_id> on|off: "
12215 		"Set unicast promiscuous mode for a VF from the PF",
12216 	.tokens = {
12217 		(void *)&cmd_vf_promisc_set,
12218 		(void *)&cmd_vf_promisc_vf,
12219 		(void *)&cmd_vf_promisc_promisc,
12220 		(void *)&cmd_vf_promisc_port_id,
12221 		(void *)&cmd_vf_promisc_vf_id,
12222 		(void *)&cmd_vf_promisc_on_off,
12223 		NULL,
12224 	},
12225 };
12226 
12227 /* VF multicast promiscuous mode configuration */
12228 
12229 /* Common result structure for VF multicast promiscuous mode */
12230 struct cmd_vf_allmulti_result {
12231 	cmdline_fixed_string_t set;
12232 	cmdline_fixed_string_t vf;
12233 	cmdline_fixed_string_t allmulti;
12234 	uint8_t port_id;
12235 	uint32_t vf_id;
12236 	cmdline_fixed_string_t on_off;
12237 };
12238 
12239 /* Common CLI fields for VF multicast promiscuous mode enable disable */
12240 cmdline_parse_token_string_t cmd_vf_allmulti_set =
12241 	TOKEN_STRING_INITIALIZER
12242 		(struct cmd_vf_allmulti_result,
12243 		 set, "set");
12244 cmdline_parse_token_string_t cmd_vf_allmulti_vf =
12245 	TOKEN_STRING_INITIALIZER
12246 		(struct cmd_vf_allmulti_result,
12247 		 vf, "vf");
12248 cmdline_parse_token_string_t cmd_vf_allmulti_allmulti =
12249 	TOKEN_STRING_INITIALIZER
12250 		(struct cmd_vf_allmulti_result,
12251 		 allmulti, "allmulti");
12252 cmdline_parse_token_num_t cmd_vf_allmulti_port_id =
12253 	TOKEN_NUM_INITIALIZER
12254 		(struct cmd_vf_allmulti_result,
12255 		 port_id, UINT8);
12256 cmdline_parse_token_num_t cmd_vf_allmulti_vf_id =
12257 	TOKEN_NUM_INITIALIZER
12258 		(struct cmd_vf_allmulti_result,
12259 		 vf_id, UINT32);
12260 cmdline_parse_token_string_t cmd_vf_allmulti_on_off =
12261 	TOKEN_STRING_INITIALIZER
12262 		(struct cmd_vf_allmulti_result,
12263 		 on_off, "on#off");
12264 
12265 static void
12266 cmd_set_vf_allmulti_parsed(
12267 	void *parsed_result,
12268 	__attribute__((unused)) struct cmdline *cl,
12269 	__attribute__((unused)) void *data)
12270 {
12271 	struct cmd_vf_allmulti_result *res = parsed_result;
12272 	int ret = -ENOTSUP;
12273 
12274 	__rte_unused int is_on = (strcmp(res->on_off, "on") == 0) ? 1 : 0;
12275 
12276 	if (port_id_is_invalid(res->port_id, ENABLED_WARN))
12277 		return;
12278 
12279 #ifdef RTE_LIBRTE_I40E_PMD
12280 	ret = rte_pmd_i40e_set_vf_multicast_promisc(res->port_id,
12281 						    res->vf_id, is_on);
12282 #endif
12283 
12284 	switch (ret) {
12285 	case 0:
12286 		break;
12287 	case -EINVAL:
12288 		printf("invalid vf_id %d\n", res->vf_id);
12289 		break;
12290 	case -ENODEV:
12291 		printf("invalid port_id %d\n", res->port_id);
12292 		break;
12293 	case -ENOTSUP:
12294 		printf("function not implemented\n");
12295 		break;
12296 	default:
12297 		printf("programming error: (%s)\n", strerror(-ret));
12298 	}
12299 }
12300 
12301 cmdline_parse_inst_t cmd_set_vf_allmulti = {
12302 	.f = cmd_set_vf_allmulti_parsed,
12303 	.data = NULL,
12304 	.help_str = "set vf allmulti <port_id> <vf_id> on|off: "
12305 		"Set multicast promiscuous mode for a VF from the PF",
12306 	.tokens = {
12307 		(void *)&cmd_vf_allmulti_set,
12308 		(void *)&cmd_vf_allmulti_vf,
12309 		(void *)&cmd_vf_allmulti_allmulti,
12310 		(void *)&cmd_vf_allmulti_port_id,
12311 		(void *)&cmd_vf_allmulti_vf_id,
12312 		(void *)&cmd_vf_allmulti_on_off,
12313 		NULL,
12314 	},
12315 };
12316 
12317 /* vf broadcast mode configuration */
12318 
12319 /* Common result structure for vf broadcast */
12320 struct cmd_set_vf_broadcast_result {
12321 	cmdline_fixed_string_t set;
12322 	cmdline_fixed_string_t vf;
12323 	cmdline_fixed_string_t broadcast;
12324 	uint8_t port_id;
12325 	uint16_t vf_id;
12326 	cmdline_fixed_string_t on_off;
12327 };
12328 
12329 /* Common CLI fields for vf broadcast enable disable */
12330 cmdline_parse_token_string_t cmd_set_vf_broadcast_set =
12331 	TOKEN_STRING_INITIALIZER
12332 		(struct cmd_set_vf_broadcast_result,
12333 		 set, "set");
12334 cmdline_parse_token_string_t cmd_set_vf_broadcast_vf =
12335 	TOKEN_STRING_INITIALIZER
12336 		(struct cmd_set_vf_broadcast_result,
12337 		 vf, "vf");
12338 cmdline_parse_token_string_t cmd_set_vf_broadcast_broadcast =
12339 	TOKEN_STRING_INITIALIZER
12340 		(struct cmd_set_vf_broadcast_result,
12341 		 broadcast, "broadcast");
12342 cmdline_parse_token_num_t cmd_set_vf_broadcast_port_id =
12343 	TOKEN_NUM_INITIALIZER
12344 		(struct cmd_set_vf_broadcast_result,
12345 		 port_id, UINT8);
12346 cmdline_parse_token_num_t cmd_set_vf_broadcast_vf_id =
12347 	TOKEN_NUM_INITIALIZER
12348 		(struct cmd_set_vf_broadcast_result,
12349 		 vf_id, UINT16);
12350 cmdline_parse_token_string_t cmd_set_vf_broadcast_on_off =
12351 	TOKEN_STRING_INITIALIZER
12352 		(struct cmd_set_vf_broadcast_result,
12353 		 on_off, "on#off");
12354 
12355 static void
12356 cmd_set_vf_broadcast_parsed(
12357 	void *parsed_result,
12358 	__attribute__((unused)) struct cmdline *cl,
12359 	__attribute__((unused)) void *data)
12360 {
12361 	struct cmd_set_vf_broadcast_result *res = parsed_result;
12362 	int ret = -ENOTSUP;
12363 
12364 	__rte_unused int is_on = (strcmp(res->on_off, "on") == 0) ? 1 : 0;
12365 
12366 	if (port_id_is_invalid(res->port_id, ENABLED_WARN))
12367 		return;
12368 
12369 #ifdef RTE_LIBRTE_I40E_PMD
12370 	ret = rte_pmd_i40e_set_vf_broadcast(res->port_id,
12371 					    res->vf_id, is_on);
12372 #endif
12373 
12374 	switch (ret) {
12375 	case 0:
12376 		break;
12377 	case -EINVAL:
12378 		printf("invalid vf_id %d or is_on %d\n", res->vf_id, is_on);
12379 		break;
12380 	case -ENODEV:
12381 		printf("invalid port_id %d\n", res->port_id);
12382 		break;
12383 	case -ENOTSUP:
12384 		printf("function not implemented\n");
12385 		break;
12386 	default:
12387 		printf("programming error: (%s)\n", strerror(-ret));
12388 	}
12389 }
12390 
12391 cmdline_parse_inst_t cmd_set_vf_broadcast = {
12392 	.f = cmd_set_vf_broadcast_parsed,
12393 	.data = NULL,
12394 	.help_str = "set vf broadcast <port_id> <vf_id> on|off",
12395 	.tokens = {
12396 		(void *)&cmd_set_vf_broadcast_set,
12397 		(void *)&cmd_set_vf_broadcast_vf,
12398 		(void *)&cmd_set_vf_broadcast_broadcast,
12399 		(void *)&cmd_set_vf_broadcast_port_id,
12400 		(void *)&cmd_set_vf_broadcast_vf_id,
12401 		(void *)&cmd_set_vf_broadcast_on_off,
12402 		NULL,
12403 	},
12404 };
12405 
12406 /* vf vlan tag configuration */
12407 
12408 /* Common result structure for vf vlan tag */
12409 struct cmd_set_vf_vlan_tag_result {
12410 	cmdline_fixed_string_t set;
12411 	cmdline_fixed_string_t vf;
12412 	cmdline_fixed_string_t vlan;
12413 	cmdline_fixed_string_t tag;
12414 	uint8_t port_id;
12415 	uint16_t vf_id;
12416 	cmdline_fixed_string_t on_off;
12417 };
12418 
12419 /* Common CLI fields for vf vlan tag enable disable */
12420 cmdline_parse_token_string_t cmd_set_vf_vlan_tag_set =
12421 	TOKEN_STRING_INITIALIZER
12422 		(struct cmd_set_vf_vlan_tag_result,
12423 		 set, "set");
12424 cmdline_parse_token_string_t cmd_set_vf_vlan_tag_vf =
12425 	TOKEN_STRING_INITIALIZER
12426 		(struct cmd_set_vf_vlan_tag_result,
12427 		 vf, "vf");
12428 cmdline_parse_token_string_t cmd_set_vf_vlan_tag_vlan =
12429 	TOKEN_STRING_INITIALIZER
12430 		(struct cmd_set_vf_vlan_tag_result,
12431 		 vlan, "vlan");
12432 cmdline_parse_token_string_t cmd_set_vf_vlan_tag_tag =
12433 	TOKEN_STRING_INITIALIZER
12434 		(struct cmd_set_vf_vlan_tag_result,
12435 		 tag, "tag");
12436 cmdline_parse_token_num_t cmd_set_vf_vlan_tag_port_id =
12437 	TOKEN_NUM_INITIALIZER
12438 		(struct cmd_set_vf_vlan_tag_result,
12439 		 port_id, UINT8);
12440 cmdline_parse_token_num_t cmd_set_vf_vlan_tag_vf_id =
12441 	TOKEN_NUM_INITIALIZER
12442 		(struct cmd_set_vf_vlan_tag_result,
12443 		 vf_id, UINT16);
12444 cmdline_parse_token_string_t cmd_set_vf_vlan_tag_on_off =
12445 	TOKEN_STRING_INITIALIZER
12446 		(struct cmd_set_vf_vlan_tag_result,
12447 		 on_off, "on#off");
12448 
12449 static void
12450 cmd_set_vf_vlan_tag_parsed(
12451 	void *parsed_result,
12452 	__attribute__((unused)) struct cmdline *cl,
12453 	__attribute__((unused)) void *data)
12454 {
12455 	struct cmd_set_vf_vlan_tag_result *res = parsed_result;
12456 	int ret = -ENOTSUP;
12457 
12458 	__rte_unused int is_on = (strcmp(res->on_off, "on") == 0) ? 1 : 0;
12459 
12460 	if (port_id_is_invalid(res->port_id, ENABLED_WARN))
12461 		return;
12462 
12463 #ifdef RTE_LIBRTE_I40E_PMD
12464 	ret = rte_pmd_i40e_set_vf_vlan_tag(res->port_id,
12465 					   res->vf_id, is_on);
12466 #endif
12467 
12468 	switch (ret) {
12469 	case 0:
12470 		break;
12471 	case -EINVAL:
12472 		printf("invalid vf_id %d or is_on %d\n", res->vf_id, is_on);
12473 		break;
12474 	case -ENODEV:
12475 		printf("invalid port_id %d\n", res->port_id);
12476 		break;
12477 	case -ENOTSUP:
12478 		printf("function not implemented\n");
12479 		break;
12480 	default:
12481 		printf("programming error: (%s)\n", strerror(-ret));
12482 	}
12483 }
12484 
12485 cmdline_parse_inst_t cmd_set_vf_vlan_tag = {
12486 	.f = cmd_set_vf_vlan_tag_parsed,
12487 	.data = NULL,
12488 	.help_str = "set vf vlan tag <port_id> <vf_id> on|off",
12489 	.tokens = {
12490 		(void *)&cmd_set_vf_vlan_tag_set,
12491 		(void *)&cmd_set_vf_vlan_tag_vf,
12492 		(void *)&cmd_set_vf_vlan_tag_vlan,
12493 		(void *)&cmd_set_vf_vlan_tag_tag,
12494 		(void *)&cmd_set_vf_vlan_tag_port_id,
12495 		(void *)&cmd_set_vf_vlan_tag_vf_id,
12496 		(void *)&cmd_set_vf_vlan_tag_on_off,
12497 		NULL,
12498 	},
12499 };
12500 
12501 /* Common definition of VF and TC TX bandwidth configuration */
12502 struct cmd_vf_tc_bw_result {
12503 	cmdline_fixed_string_t set;
12504 	cmdline_fixed_string_t vf;
12505 	cmdline_fixed_string_t tc;
12506 	cmdline_fixed_string_t tx;
12507 	cmdline_fixed_string_t min_bw;
12508 	cmdline_fixed_string_t max_bw;
12509 	cmdline_fixed_string_t strict_link_prio;
12510 	uint8_t port_id;
12511 	uint16_t vf_id;
12512 	uint8_t tc_no;
12513 	uint32_t bw;
12514 	cmdline_fixed_string_t bw_list;
12515 	uint8_t tc_map;
12516 };
12517 
12518 cmdline_parse_token_string_t cmd_vf_tc_bw_set =
12519 	TOKEN_STRING_INITIALIZER
12520 		(struct cmd_vf_tc_bw_result,
12521 		 set, "set");
12522 cmdline_parse_token_string_t cmd_vf_tc_bw_vf =
12523 	TOKEN_STRING_INITIALIZER
12524 		(struct cmd_vf_tc_bw_result,
12525 		 vf, "vf");
12526 cmdline_parse_token_string_t cmd_vf_tc_bw_tc =
12527 	TOKEN_STRING_INITIALIZER
12528 		(struct cmd_vf_tc_bw_result,
12529 		 tc, "tc");
12530 cmdline_parse_token_string_t cmd_vf_tc_bw_tx =
12531 	TOKEN_STRING_INITIALIZER
12532 		(struct cmd_vf_tc_bw_result,
12533 		 tx, "tx");
12534 cmdline_parse_token_string_t cmd_vf_tc_bw_strict_link_prio =
12535 	TOKEN_STRING_INITIALIZER
12536 		(struct cmd_vf_tc_bw_result,
12537 		 strict_link_prio, "strict-link-priority");
12538 cmdline_parse_token_string_t cmd_vf_tc_bw_min_bw =
12539 	TOKEN_STRING_INITIALIZER
12540 		(struct cmd_vf_tc_bw_result,
12541 		 min_bw, "min-bandwidth");
12542 cmdline_parse_token_string_t cmd_vf_tc_bw_max_bw =
12543 	TOKEN_STRING_INITIALIZER
12544 		(struct cmd_vf_tc_bw_result,
12545 		 max_bw, "max-bandwidth");
12546 cmdline_parse_token_num_t cmd_vf_tc_bw_port_id =
12547 	TOKEN_NUM_INITIALIZER
12548 		(struct cmd_vf_tc_bw_result,
12549 		 port_id, UINT8);
12550 cmdline_parse_token_num_t cmd_vf_tc_bw_vf_id =
12551 	TOKEN_NUM_INITIALIZER
12552 		(struct cmd_vf_tc_bw_result,
12553 		 vf_id, UINT16);
12554 cmdline_parse_token_num_t cmd_vf_tc_bw_tc_no =
12555 	TOKEN_NUM_INITIALIZER
12556 		(struct cmd_vf_tc_bw_result,
12557 		 tc_no, UINT8);
12558 cmdline_parse_token_num_t cmd_vf_tc_bw_bw =
12559 	TOKEN_NUM_INITIALIZER
12560 		(struct cmd_vf_tc_bw_result,
12561 		 bw, UINT32);
12562 cmdline_parse_token_string_t cmd_vf_tc_bw_bw_list =
12563 	TOKEN_STRING_INITIALIZER
12564 		(struct cmd_vf_tc_bw_result,
12565 		 bw_list, NULL);
12566 cmdline_parse_token_num_t cmd_vf_tc_bw_tc_map =
12567 	TOKEN_NUM_INITIALIZER
12568 		(struct cmd_vf_tc_bw_result,
12569 		 tc_map, UINT8);
12570 
12571 /* VF max bandwidth setting */
12572 static void
12573 cmd_vf_max_bw_parsed(
12574 	void *parsed_result,
12575 	__attribute__((unused)) struct cmdline *cl,
12576 	__attribute__((unused)) void *data)
12577 {
12578 	struct cmd_vf_tc_bw_result *res = parsed_result;
12579 	int ret = -ENOTSUP;
12580 
12581 	if (port_id_is_invalid(res->port_id, ENABLED_WARN))
12582 		return;
12583 
12584 #ifdef RTE_LIBRTE_I40E_PMD
12585 	ret = rte_pmd_i40e_set_vf_max_bw(res->port_id,
12586 					 res->vf_id, res->bw);
12587 #endif
12588 
12589 	switch (ret) {
12590 	case 0:
12591 		break;
12592 	case -EINVAL:
12593 		printf("invalid vf_id %d or bandwidth %d\n",
12594 		       res->vf_id, res->bw);
12595 		break;
12596 	case -ENODEV:
12597 		printf("invalid port_id %d\n", res->port_id);
12598 		break;
12599 	case -ENOTSUP:
12600 		printf("function not implemented\n");
12601 		break;
12602 	default:
12603 		printf("programming error: (%s)\n", strerror(-ret));
12604 	}
12605 }
12606 
12607 cmdline_parse_inst_t cmd_vf_max_bw = {
12608 	.f = cmd_vf_max_bw_parsed,
12609 	.data = NULL,
12610 	.help_str = "set vf tx max-bandwidth <port_id> <vf_id> <bandwidth>",
12611 	.tokens = {
12612 		(void *)&cmd_vf_tc_bw_set,
12613 		(void *)&cmd_vf_tc_bw_vf,
12614 		(void *)&cmd_vf_tc_bw_tx,
12615 		(void *)&cmd_vf_tc_bw_max_bw,
12616 		(void *)&cmd_vf_tc_bw_port_id,
12617 		(void *)&cmd_vf_tc_bw_vf_id,
12618 		(void *)&cmd_vf_tc_bw_bw,
12619 		NULL,
12620 	},
12621 };
12622 
12623 static int
12624 vf_tc_min_bw_parse_bw_list(uint8_t *bw_list,
12625 			   uint8_t *tc_num,
12626 			   char *str)
12627 {
12628 	uint32_t size;
12629 	const char *p, *p0 = str;
12630 	char s[256];
12631 	char *end;
12632 	char *str_fld[16];
12633 	uint16_t i;
12634 	int ret;
12635 
12636 	p = strchr(p0, '(');
12637 	if (p == NULL) {
12638 		printf("The bandwidth-list should be '(bw1, bw2, ...)'\n");
12639 		return -1;
12640 	}
12641 	p++;
12642 	p0 = strchr(p, ')');
12643 	if (p0 == NULL) {
12644 		printf("The bandwidth-list should be '(bw1, bw2, ...)'\n");
12645 		return -1;
12646 	}
12647 	size = p0 - p;
12648 	if (size >= sizeof(s)) {
12649 		printf("The string size exceeds the internal buffer size\n");
12650 		return -1;
12651 	}
12652 	snprintf(s, sizeof(s), "%.*s", size, p);
12653 	ret = rte_strsplit(s, sizeof(s), str_fld, 16, ',');
12654 	if (ret <= 0) {
12655 		printf("Failed to get the bandwidth list. ");
12656 		return -1;
12657 	}
12658 	*tc_num = ret;
12659 	for (i = 0; i < ret; i++)
12660 		bw_list[i] = (uint8_t)strtoul(str_fld[i], &end, 0);
12661 
12662 	return 0;
12663 }
12664 
12665 /* TC min bandwidth setting */
12666 static void
12667 cmd_vf_tc_min_bw_parsed(
12668 	void *parsed_result,
12669 	__attribute__((unused)) struct cmdline *cl,
12670 	__attribute__((unused)) void *data)
12671 {
12672 	struct cmd_vf_tc_bw_result *res = parsed_result;
12673 	uint8_t tc_num;
12674 	uint8_t bw[16];
12675 	int ret = -ENOTSUP;
12676 
12677 	if (port_id_is_invalid(res->port_id, ENABLED_WARN))
12678 		return;
12679 
12680 	ret = vf_tc_min_bw_parse_bw_list(bw, &tc_num, res->bw_list);
12681 	if (ret)
12682 		return;
12683 
12684 #ifdef RTE_LIBRTE_I40E_PMD
12685 	ret = rte_pmd_i40e_set_vf_tc_bw_alloc(res->port_id, res->vf_id,
12686 					      tc_num, bw);
12687 #endif
12688 
12689 	switch (ret) {
12690 	case 0:
12691 		break;
12692 	case -EINVAL:
12693 		printf("invalid vf_id %d or bandwidth\n", res->vf_id);
12694 		break;
12695 	case -ENODEV:
12696 		printf("invalid port_id %d\n", res->port_id);
12697 		break;
12698 	case -ENOTSUP:
12699 		printf("function not implemented\n");
12700 		break;
12701 	default:
12702 		printf("programming error: (%s)\n", strerror(-ret));
12703 	}
12704 }
12705 
12706 cmdline_parse_inst_t cmd_vf_tc_min_bw = {
12707 	.f = cmd_vf_tc_min_bw_parsed,
12708 	.data = NULL,
12709 	.help_str = "set vf tc tx min-bandwidth <port_id> <vf_id>"
12710 		    " <bw1, bw2, ...>",
12711 	.tokens = {
12712 		(void *)&cmd_vf_tc_bw_set,
12713 		(void *)&cmd_vf_tc_bw_vf,
12714 		(void *)&cmd_vf_tc_bw_tc,
12715 		(void *)&cmd_vf_tc_bw_tx,
12716 		(void *)&cmd_vf_tc_bw_min_bw,
12717 		(void *)&cmd_vf_tc_bw_port_id,
12718 		(void *)&cmd_vf_tc_bw_vf_id,
12719 		(void *)&cmd_vf_tc_bw_bw_list,
12720 		NULL,
12721 	},
12722 };
12723 
12724 static void
12725 cmd_tc_min_bw_parsed(
12726 	void *parsed_result,
12727 	__attribute__((unused)) struct cmdline *cl,
12728 	__attribute__((unused)) void *data)
12729 {
12730 	struct cmd_vf_tc_bw_result *res = parsed_result;
12731 	struct rte_port *port;
12732 	uint8_t tc_num;
12733 	uint8_t bw[16];
12734 	int ret = -ENOTSUP;
12735 
12736 	if (port_id_is_invalid(res->port_id, ENABLED_WARN))
12737 		return;
12738 
12739 	port = &ports[res->port_id];
12740 	/** Check if the port is not started **/
12741 	if (port->port_status != RTE_PORT_STOPPED) {
12742 		printf("Please stop port %d first\n", res->port_id);
12743 		return;
12744 	}
12745 
12746 	ret = vf_tc_min_bw_parse_bw_list(bw, &tc_num, res->bw_list);
12747 	if (ret)
12748 		return;
12749 
12750 #ifdef RTE_LIBRTE_IXGBE_PMD
12751 	ret = rte_pmd_ixgbe_set_tc_bw_alloc(res->port_id, tc_num, bw);
12752 #endif
12753 
12754 	switch (ret) {
12755 	case 0:
12756 		break;
12757 	case -EINVAL:
12758 		printf("invalid bandwidth\n");
12759 		break;
12760 	case -ENODEV:
12761 		printf("invalid port_id %d\n", res->port_id);
12762 		break;
12763 	case -ENOTSUP:
12764 		printf("function not implemented\n");
12765 		break;
12766 	default:
12767 		printf("programming error: (%s)\n", strerror(-ret));
12768 	}
12769 }
12770 
12771 cmdline_parse_inst_t cmd_tc_min_bw = {
12772 	.f = cmd_tc_min_bw_parsed,
12773 	.data = NULL,
12774 	.help_str = "set tc tx min-bandwidth <port_id> <bw1, bw2, ...>",
12775 	.tokens = {
12776 		(void *)&cmd_vf_tc_bw_set,
12777 		(void *)&cmd_vf_tc_bw_tc,
12778 		(void *)&cmd_vf_tc_bw_tx,
12779 		(void *)&cmd_vf_tc_bw_min_bw,
12780 		(void *)&cmd_vf_tc_bw_port_id,
12781 		(void *)&cmd_vf_tc_bw_bw_list,
12782 		NULL,
12783 	},
12784 };
12785 
12786 /* TC max bandwidth setting */
12787 static void
12788 cmd_vf_tc_max_bw_parsed(
12789 	void *parsed_result,
12790 	__attribute__((unused)) struct cmdline *cl,
12791 	__attribute__((unused)) void *data)
12792 {
12793 	struct cmd_vf_tc_bw_result *res = parsed_result;
12794 	int ret = -ENOTSUP;
12795 
12796 	if (port_id_is_invalid(res->port_id, ENABLED_WARN))
12797 		return;
12798 
12799 #ifdef RTE_LIBRTE_I40E_PMD
12800 	ret = rte_pmd_i40e_set_vf_tc_max_bw(res->port_id, res->vf_id,
12801 					    res->tc_no, res->bw);
12802 #endif
12803 
12804 	switch (ret) {
12805 	case 0:
12806 		break;
12807 	case -EINVAL:
12808 		printf("invalid vf_id %d, tc_no %d or bandwidth %d\n",
12809 		       res->vf_id, res->tc_no, res->bw);
12810 		break;
12811 	case -ENODEV:
12812 		printf("invalid port_id %d\n", res->port_id);
12813 		break;
12814 	case -ENOTSUP:
12815 		printf("function not implemented\n");
12816 		break;
12817 	default:
12818 		printf("programming error: (%s)\n", strerror(-ret));
12819 	}
12820 }
12821 
12822 cmdline_parse_inst_t cmd_vf_tc_max_bw = {
12823 	.f = cmd_vf_tc_max_bw_parsed,
12824 	.data = NULL,
12825 	.help_str = "set vf tc tx max-bandwidth <port_id> <vf_id> <tc_no>"
12826 		    " <bandwidth>",
12827 	.tokens = {
12828 		(void *)&cmd_vf_tc_bw_set,
12829 		(void *)&cmd_vf_tc_bw_vf,
12830 		(void *)&cmd_vf_tc_bw_tc,
12831 		(void *)&cmd_vf_tc_bw_tx,
12832 		(void *)&cmd_vf_tc_bw_max_bw,
12833 		(void *)&cmd_vf_tc_bw_port_id,
12834 		(void *)&cmd_vf_tc_bw_vf_id,
12835 		(void *)&cmd_vf_tc_bw_tc_no,
12836 		(void *)&cmd_vf_tc_bw_bw,
12837 		NULL,
12838 	},
12839 };
12840 
12841 /* Strict link priority scheduling mode setting */
12842 static void
12843 cmd_strict_link_prio_parsed(
12844 	void *parsed_result,
12845 	__attribute__((unused)) struct cmdline *cl,
12846 	__attribute__((unused)) void *data)
12847 {
12848 	struct cmd_vf_tc_bw_result *res = parsed_result;
12849 	int ret = -ENOTSUP;
12850 
12851 	if (port_id_is_invalid(res->port_id, ENABLED_WARN))
12852 		return;
12853 
12854 #ifdef RTE_LIBRTE_I40E_PMD
12855 	ret = rte_pmd_i40e_set_tc_strict_prio(res->port_id, res->tc_map);
12856 #endif
12857 
12858 	switch (ret) {
12859 	case 0:
12860 		break;
12861 	case -EINVAL:
12862 		printf("invalid tc_bitmap 0x%x\n", res->tc_map);
12863 		break;
12864 	case -ENODEV:
12865 		printf("invalid port_id %d\n", res->port_id);
12866 		break;
12867 	case -ENOTSUP:
12868 		printf("function not implemented\n");
12869 		break;
12870 	default:
12871 		printf("programming error: (%s)\n", strerror(-ret));
12872 	}
12873 }
12874 
12875 cmdline_parse_inst_t cmd_strict_link_prio = {
12876 	.f = cmd_strict_link_prio_parsed,
12877 	.data = NULL,
12878 	.help_str = "set tx strict-link-priority <port_id> <tc_bitmap>",
12879 	.tokens = {
12880 		(void *)&cmd_vf_tc_bw_set,
12881 		(void *)&cmd_vf_tc_bw_tx,
12882 		(void *)&cmd_vf_tc_bw_strict_link_prio,
12883 		(void *)&cmd_vf_tc_bw_port_id,
12884 		(void *)&cmd_vf_tc_bw_tc_map,
12885 		NULL,
12886 	},
12887 };
12888 
12889 /* Load dynamic device personalization*/
12890 struct cmd_ddp_add_result {
12891 	cmdline_fixed_string_t ddp;
12892 	cmdline_fixed_string_t add;
12893 	uint8_t port_id;
12894 	char filepath[];
12895 };
12896 
12897 cmdline_parse_token_string_t cmd_ddp_add_ddp =
12898 	TOKEN_STRING_INITIALIZER(struct cmd_ddp_add_result, ddp, "ddp");
12899 cmdline_parse_token_string_t cmd_ddp_add_add =
12900 	TOKEN_STRING_INITIALIZER(struct cmd_ddp_add_result, add, "add");
12901 cmdline_parse_token_num_t cmd_ddp_add_port_id =
12902 	TOKEN_NUM_INITIALIZER(struct cmd_ddp_add_result, port_id, UINT8);
12903 cmdline_parse_token_string_t cmd_ddp_add_filepath =
12904 	TOKEN_STRING_INITIALIZER(struct cmd_ddp_add_result, filepath, NULL);
12905 
12906 static void
12907 cmd_ddp_add_parsed(
12908 	void *parsed_result,
12909 	__attribute__((unused)) struct cmdline *cl,
12910 	__attribute__((unused)) void *data)
12911 {
12912 	struct cmd_ddp_add_result *res = parsed_result;
12913 	uint8_t *buff;
12914 	uint32_t size;
12915 	int ret = -ENOTSUP;
12916 
12917 	if (res->port_id > nb_ports) {
12918 		printf("Invalid port, range is [0, %d]\n", nb_ports - 1);
12919 		return;
12920 	}
12921 
12922 	if (!all_ports_stopped()) {
12923 		printf("Please stop all ports first\n");
12924 		return;
12925 	}
12926 
12927 	buff = open_ddp_package_file(res->filepath, &size);
12928 	if (!buff)
12929 		return;
12930 
12931 #ifdef RTE_LIBRTE_I40E_PMD
12932 	if (ret == -ENOTSUP)
12933 		ret = rte_pmd_i40e_process_ddp_package(res->port_id,
12934 					       buff, size,
12935 					       RTE_PMD_I40E_PKG_OP_WR_ADD);
12936 #endif
12937 
12938 	if (ret < 0)
12939 		printf("Failed to load profile.\n");
12940 	else if (ret > 0)
12941 		printf("Profile has already existed.\n");
12942 
12943 	close_ddp_package_file(buff);
12944 }
12945 
12946 cmdline_parse_inst_t cmd_ddp_add = {
12947 	.f = cmd_ddp_add_parsed,
12948 	.data = NULL,
12949 	.help_str = "ddp add <port_id> <profile_path>",
12950 	.tokens = {
12951 		(void *)&cmd_ddp_add_ddp,
12952 		(void *)&cmd_ddp_add_add,
12953 		(void *)&cmd_ddp_add_port_id,
12954 		(void *)&cmd_ddp_add_filepath,
12955 		NULL,
12956 	},
12957 };
12958 
12959 /* Get dynamic device personalization profile info list*/
12960 #define PROFILE_INFO_SIZE 48
12961 #define MAX_PROFILE_NUM 16
12962 
12963 struct cmd_ddp_get_list_result {
12964 	cmdline_fixed_string_t ddp;
12965 	cmdline_fixed_string_t get;
12966 	cmdline_fixed_string_t list;
12967 	uint8_t port_id;
12968 };
12969 
12970 cmdline_parse_token_string_t cmd_ddp_get_list_ddp =
12971 	TOKEN_STRING_INITIALIZER(struct cmd_ddp_get_list_result, ddp, "ddp");
12972 cmdline_parse_token_string_t cmd_ddp_get_list_get =
12973 	TOKEN_STRING_INITIALIZER(struct cmd_ddp_get_list_result, get, "get");
12974 cmdline_parse_token_string_t cmd_ddp_get_list_list =
12975 	TOKEN_STRING_INITIALIZER(struct cmd_ddp_get_list_result, list, "list");
12976 cmdline_parse_token_num_t cmd_ddp_get_list_port_id =
12977 	TOKEN_NUM_INITIALIZER(struct cmd_ddp_get_list_result, port_id, UINT8);
12978 
12979 static void
12980 cmd_ddp_get_list_parsed(
12981 	void *parsed_result,
12982 	__attribute__((unused)) struct cmdline *cl,
12983 	__attribute__((unused)) void *data)
12984 {
12985 	struct cmd_ddp_get_list_result *res = parsed_result;
12986 #ifdef RTE_LIBRTE_I40E_PMD
12987 	struct rte_pmd_i40e_profile_list *p_list;
12988 	struct rte_pmd_i40e_profile_info *p_info;
12989 	uint32_t p_num;
12990 	uint32_t size;
12991 	uint32_t i;
12992 #endif
12993 	int ret = -ENOTSUP;
12994 
12995 	if (res->port_id > nb_ports) {
12996 		printf("Invalid port, range is [0, %d]\n", nb_ports - 1);
12997 		return;
12998 	}
12999 
13000 #ifdef RTE_LIBRTE_I40E_PMD
13001 	size = PROFILE_INFO_SIZE * MAX_PROFILE_NUM + 4;
13002 	p_list = (struct rte_pmd_i40e_profile_list *)malloc(size);
13003 	if (!p_list)
13004 		printf("%s: Failed to malloc buffer\n", __func__);
13005 
13006 	if (ret == -ENOTSUP)
13007 		ret = rte_pmd_i40e_get_ddp_list(res->port_id,
13008 						(uint8_t *)p_list, size);
13009 
13010 	if (!ret) {
13011 		p_num = p_list->p_count;
13012 		printf("Profile number is: %d\n\n", p_num);
13013 
13014 		for (i = 0; i < p_num; i++) {
13015 			p_info = &p_list->p_info[i];
13016 			printf("Profile %d:\n", i);
13017 			printf("Track id:     0x%x\n", p_info->track_id);
13018 			printf("Version:      %d.%d.%d.%d\n",
13019 			       p_info->version.major,
13020 			       p_info->version.minor,
13021 			       p_info->version.update,
13022 			       p_info->version.draft);
13023 			printf("Profile name: %s\n\n", p_info->name);
13024 		}
13025 	}
13026 
13027 	free(p_list);
13028 #endif
13029 
13030 	if (ret < 0)
13031 		printf("Failed to get ddp list\n");
13032 }
13033 
13034 cmdline_parse_inst_t cmd_ddp_get_list = {
13035 	.f = cmd_ddp_get_list_parsed,
13036 	.data = NULL,
13037 	.help_str = "ddp get list <port_id>",
13038 	.tokens = {
13039 		(void *)&cmd_ddp_get_list_ddp,
13040 		(void *)&cmd_ddp_get_list_get,
13041 		(void *)&cmd_ddp_get_list_list,
13042 		(void *)&cmd_ddp_get_list_port_id,
13043 		NULL,
13044 	},
13045 };
13046 
13047 /* show vf stats */
13048 
13049 /* Common result structure for show vf stats */
13050 struct cmd_show_vf_stats_result {
13051 	cmdline_fixed_string_t show;
13052 	cmdline_fixed_string_t vf;
13053 	cmdline_fixed_string_t stats;
13054 	uint8_t port_id;
13055 	uint16_t vf_id;
13056 };
13057 
13058 /* Common CLI fields show vf stats*/
13059 cmdline_parse_token_string_t cmd_show_vf_stats_show =
13060 	TOKEN_STRING_INITIALIZER
13061 		(struct cmd_show_vf_stats_result,
13062 		 show, "show");
13063 cmdline_parse_token_string_t cmd_show_vf_stats_vf =
13064 	TOKEN_STRING_INITIALIZER
13065 		(struct cmd_show_vf_stats_result,
13066 		 vf, "vf");
13067 cmdline_parse_token_string_t cmd_show_vf_stats_stats =
13068 	TOKEN_STRING_INITIALIZER
13069 		(struct cmd_show_vf_stats_result,
13070 		 stats, "stats");
13071 cmdline_parse_token_num_t cmd_show_vf_stats_port_id =
13072 	TOKEN_NUM_INITIALIZER
13073 		(struct cmd_show_vf_stats_result,
13074 		 port_id, UINT8);
13075 cmdline_parse_token_num_t cmd_show_vf_stats_vf_id =
13076 	TOKEN_NUM_INITIALIZER
13077 		(struct cmd_show_vf_stats_result,
13078 		 vf_id, UINT16);
13079 
13080 static void
13081 cmd_show_vf_stats_parsed(
13082 	void *parsed_result,
13083 	__attribute__((unused)) struct cmdline *cl,
13084 	__attribute__((unused)) void *data)
13085 {
13086 	struct cmd_show_vf_stats_result *res = parsed_result;
13087 	struct rte_eth_stats stats;
13088 	int ret = -ENOTSUP;
13089 	static const char *nic_stats_border = "########################";
13090 
13091 	if (port_id_is_invalid(res->port_id, ENABLED_WARN))
13092 		return;
13093 
13094 	memset(&stats, 0, sizeof(stats));
13095 
13096 #ifdef RTE_LIBRTE_I40E_PMD
13097 	ret = rte_pmd_i40e_get_vf_stats(res->port_id,
13098 					res->vf_id,
13099 					&stats);
13100 #endif
13101 
13102 	switch (ret) {
13103 	case 0:
13104 		break;
13105 	case -EINVAL:
13106 		printf("invalid vf_id %d\n", res->vf_id);
13107 		break;
13108 	case -ENODEV:
13109 		printf("invalid port_id %d\n", res->port_id);
13110 		break;
13111 	case -ENOTSUP:
13112 		printf("function not implemented\n");
13113 		break;
13114 	default:
13115 		printf("programming error: (%s)\n", strerror(-ret));
13116 	}
13117 
13118 	printf("\n  %s NIC statistics for port %-2d vf %-2d %s\n",
13119 		nic_stats_border, res->port_id, res->vf_id, nic_stats_border);
13120 
13121 	printf("  RX-packets: %-10"PRIu64" RX-missed: %-10"PRIu64" RX-bytes:  "
13122 	       "%-"PRIu64"\n",
13123 	       stats.ipackets, stats.imissed, stats.ibytes);
13124 	printf("  RX-errors: %-"PRIu64"\n", stats.ierrors);
13125 	printf("  RX-nombuf:  %-10"PRIu64"\n",
13126 	       stats.rx_nombuf);
13127 	printf("  TX-packets: %-10"PRIu64" TX-errors: %-10"PRIu64" TX-bytes:  "
13128 	       "%-"PRIu64"\n",
13129 	       stats.opackets, stats.oerrors, stats.obytes);
13130 
13131 	printf("  %s############################%s\n",
13132 			       nic_stats_border, nic_stats_border);
13133 }
13134 
13135 cmdline_parse_inst_t cmd_show_vf_stats = {
13136 	.f = cmd_show_vf_stats_parsed,
13137 	.data = NULL,
13138 	.help_str = "show vf stats <port_id> <vf_id>",
13139 	.tokens = {
13140 		(void *)&cmd_show_vf_stats_show,
13141 		(void *)&cmd_show_vf_stats_vf,
13142 		(void *)&cmd_show_vf_stats_stats,
13143 		(void *)&cmd_show_vf_stats_port_id,
13144 		(void *)&cmd_show_vf_stats_vf_id,
13145 		NULL,
13146 	},
13147 };
13148 
13149 /* clear vf stats */
13150 
13151 /* Common result structure for clear vf stats */
13152 struct cmd_clear_vf_stats_result {
13153 	cmdline_fixed_string_t clear;
13154 	cmdline_fixed_string_t vf;
13155 	cmdline_fixed_string_t stats;
13156 	uint8_t port_id;
13157 	uint16_t vf_id;
13158 };
13159 
13160 /* Common CLI fields clear vf stats*/
13161 cmdline_parse_token_string_t cmd_clear_vf_stats_clear =
13162 	TOKEN_STRING_INITIALIZER
13163 		(struct cmd_clear_vf_stats_result,
13164 		 clear, "clear");
13165 cmdline_parse_token_string_t cmd_clear_vf_stats_vf =
13166 	TOKEN_STRING_INITIALIZER
13167 		(struct cmd_clear_vf_stats_result,
13168 		 vf, "vf");
13169 cmdline_parse_token_string_t cmd_clear_vf_stats_stats =
13170 	TOKEN_STRING_INITIALIZER
13171 		(struct cmd_clear_vf_stats_result,
13172 		 stats, "stats");
13173 cmdline_parse_token_num_t cmd_clear_vf_stats_port_id =
13174 	TOKEN_NUM_INITIALIZER
13175 		(struct cmd_clear_vf_stats_result,
13176 		 port_id, UINT8);
13177 cmdline_parse_token_num_t cmd_clear_vf_stats_vf_id =
13178 	TOKEN_NUM_INITIALIZER
13179 		(struct cmd_clear_vf_stats_result,
13180 		 vf_id, UINT16);
13181 
13182 static void
13183 cmd_clear_vf_stats_parsed(
13184 	void *parsed_result,
13185 	__attribute__((unused)) struct cmdline *cl,
13186 	__attribute__((unused)) void *data)
13187 {
13188 	struct cmd_clear_vf_stats_result *res = parsed_result;
13189 	int ret = -ENOTSUP;
13190 
13191 	if (port_id_is_invalid(res->port_id, ENABLED_WARN))
13192 		return;
13193 
13194 #ifdef RTE_LIBRTE_I40E_PMD
13195 	ret = rte_pmd_i40e_reset_vf_stats(res->port_id,
13196 					  res->vf_id);
13197 #endif
13198 
13199 	switch (ret) {
13200 	case 0:
13201 		break;
13202 	case -EINVAL:
13203 		printf("invalid vf_id %d\n", res->vf_id);
13204 		break;
13205 	case -ENODEV:
13206 		printf("invalid port_id %d\n", res->port_id);
13207 		break;
13208 	case -ENOTSUP:
13209 		printf("function not implemented\n");
13210 		break;
13211 	default:
13212 		printf("programming error: (%s)\n", strerror(-ret));
13213 	}
13214 }
13215 
13216 cmdline_parse_inst_t cmd_clear_vf_stats = {
13217 	.f = cmd_clear_vf_stats_parsed,
13218 	.data = NULL,
13219 	.help_str = "clear vf stats <port_id> <vf_id>",
13220 	.tokens = {
13221 		(void *)&cmd_clear_vf_stats_clear,
13222 		(void *)&cmd_clear_vf_stats_vf,
13223 		(void *)&cmd_clear_vf_stats_stats,
13224 		(void *)&cmd_clear_vf_stats_port_id,
13225 		(void *)&cmd_clear_vf_stats_vf_id,
13226 		NULL,
13227 	},
13228 };
13229 
13230 /* ptype mapping get */
13231 
13232 /* Common result structure for ptype mapping get */
13233 struct cmd_ptype_mapping_get_result {
13234 	cmdline_fixed_string_t ptype;
13235 	cmdline_fixed_string_t mapping;
13236 	cmdline_fixed_string_t get;
13237 	uint8_t port_id;
13238 	uint8_t valid_only;
13239 };
13240 
13241 /* Common CLI fields for ptype mapping get */
13242 cmdline_parse_token_string_t cmd_ptype_mapping_get_ptype =
13243 	TOKEN_STRING_INITIALIZER
13244 		(struct cmd_ptype_mapping_get_result,
13245 		 ptype, "ptype");
13246 cmdline_parse_token_string_t cmd_ptype_mapping_get_mapping =
13247 	TOKEN_STRING_INITIALIZER
13248 		(struct cmd_ptype_mapping_get_result,
13249 		 mapping, "mapping");
13250 cmdline_parse_token_string_t cmd_ptype_mapping_get_get =
13251 	TOKEN_STRING_INITIALIZER
13252 		(struct cmd_ptype_mapping_get_result,
13253 		 get, "get");
13254 cmdline_parse_token_num_t cmd_ptype_mapping_get_port_id =
13255 	TOKEN_NUM_INITIALIZER
13256 		(struct cmd_ptype_mapping_get_result,
13257 		 port_id, UINT8);
13258 cmdline_parse_token_num_t cmd_ptype_mapping_get_valid_only =
13259 	TOKEN_NUM_INITIALIZER
13260 		(struct cmd_ptype_mapping_get_result,
13261 		 valid_only, UINT8);
13262 
13263 static void
13264 cmd_ptype_mapping_get_parsed(
13265 	void *parsed_result,
13266 	__attribute__((unused)) struct cmdline *cl,
13267 	__attribute__((unused)) void *data)
13268 {
13269 	struct cmd_ptype_mapping_get_result *res = parsed_result;
13270 	int ret = -ENOTSUP;
13271 #ifdef RTE_LIBRTE_I40E_PMD
13272 	int max_ptype_num = 256;
13273 	struct rte_pmd_i40e_ptype_mapping mapping[max_ptype_num];
13274 	uint16_t count;
13275 	int i;
13276 #endif
13277 
13278 	if (port_id_is_invalid(res->port_id, ENABLED_WARN))
13279 		return;
13280 
13281 #ifdef RTE_LIBRTE_I40E_PMD
13282 	ret = rte_pmd_i40e_ptype_mapping_get(res->port_id,
13283 					mapping,
13284 					max_ptype_num,
13285 					&count,
13286 					res->valid_only);
13287 #endif
13288 
13289 	switch (ret) {
13290 	case 0:
13291 		break;
13292 	case -ENODEV:
13293 		printf("invalid port_id %d\n", res->port_id);
13294 		break;
13295 	case -ENOTSUP:
13296 		printf("function not implemented\n");
13297 		break;
13298 	default:
13299 		printf("programming error: (%s)\n", strerror(-ret));
13300 	}
13301 
13302 #ifdef RTE_LIBRTE_I40E_PMD
13303 	if (!ret) {
13304 		for (i = 0; i < count; i++)
13305 			printf("%3d\t0x%08x\n",
13306 				mapping[i].hw_ptype, mapping[i].sw_ptype);
13307 	}
13308 #endif
13309 }
13310 
13311 cmdline_parse_inst_t cmd_ptype_mapping_get = {
13312 	.f = cmd_ptype_mapping_get_parsed,
13313 	.data = NULL,
13314 	.help_str = "ptype mapping get <port_id> <valid_only>",
13315 	.tokens = {
13316 		(void *)&cmd_ptype_mapping_get_ptype,
13317 		(void *)&cmd_ptype_mapping_get_mapping,
13318 		(void *)&cmd_ptype_mapping_get_get,
13319 		(void *)&cmd_ptype_mapping_get_port_id,
13320 		(void *)&cmd_ptype_mapping_get_valid_only,
13321 		NULL,
13322 	},
13323 };
13324 
13325 /* ptype mapping replace */
13326 
13327 /* Common result structure for ptype mapping replace */
13328 struct cmd_ptype_mapping_replace_result {
13329 	cmdline_fixed_string_t ptype;
13330 	cmdline_fixed_string_t mapping;
13331 	cmdline_fixed_string_t replace;
13332 	uint8_t port_id;
13333 	uint32_t target;
13334 	uint8_t mask;
13335 	uint32_t pkt_type;
13336 };
13337 
13338 /* Common CLI fields for ptype mapping replace */
13339 cmdline_parse_token_string_t cmd_ptype_mapping_replace_ptype =
13340 	TOKEN_STRING_INITIALIZER
13341 		(struct cmd_ptype_mapping_replace_result,
13342 		 ptype, "ptype");
13343 cmdline_parse_token_string_t cmd_ptype_mapping_replace_mapping =
13344 	TOKEN_STRING_INITIALIZER
13345 		(struct cmd_ptype_mapping_replace_result,
13346 		 mapping, "mapping");
13347 cmdline_parse_token_string_t cmd_ptype_mapping_replace_replace =
13348 	TOKEN_STRING_INITIALIZER
13349 		(struct cmd_ptype_mapping_replace_result,
13350 		 replace, "replace");
13351 cmdline_parse_token_num_t cmd_ptype_mapping_replace_port_id =
13352 	TOKEN_NUM_INITIALIZER
13353 		(struct cmd_ptype_mapping_replace_result,
13354 		 port_id, UINT8);
13355 cmdline_parse_token_num_t cmd_ptype_mapping_replace_target =
13356 	TOKEN_NUM_INITIALIZER
13357 		(struct cmd_ptype_mapping_replace_result,
13358 		 target, UINT32);
13359 cmdline_parse_token_num_t cmd_ptype_mapping_replace_mask =
13360 	TOKEN_NUM_INITIALIZER
13361 		(struct cmd_ptype_mapping_replace_result,
13362 		 mask, UINT8);
13363 cmdline_parse_token_num_t cmd_ptype_mapping_replace_pkt_type =
13364 	TOKEN_NUM_INITIALIZER
13365 		(struct cmd_ptype_mapping_replace_result,
13366 		 pkt_type, UINT32);
13367 
13368 static void
13369 cmd_ptype_mapping_replace_parsed(
13370 	void *parsed_result,
13371 	__attribute__((unused)) struct cmdline *cl,
13372 	__attribute__((unused)) void *data)
13373 {
13374 	struct cmd_ptype_mapping_replace_result *res = parsed_result;
13375 	int ret = -ENOTSUP;
13376 
13377 	if (port_id_is_invalid(res->port_id, ENABLED_WARN))
13378 		return;
13379 
13380 #ifdef RTE_LIBRTE_I40E_PMD
13381 	ret = rte_pmd_i40e_ptype_mapping_replace(res->port_id,
13382 					res->target,
13383 					res->mask,
13384 					res->pkt_type);
13385 #endif
13386 
13387 	switch (ret) {
13388 	case 0:
13389 		break;
13390 	case -EINVAL:
13391 		printf("invalid ptype 0x%8x or 0x%8x\n",
13392 				res->target, res->pkt_type);
13393 		break;
13394 	case -ENODEV:
13395 		printf("invalid port_id %d\n", res->port_id);
13396 		break;
13397 	case -ENOTSUP:
13398 		printf("function not implemented\n");
13399 		break;
13400 	default:
13401 		printf("programming error: (%s)\n", strerror(-ret));
13402 	}
13403 }
13404 
13405 cmdline_parse_inst_t cmd_ptype_mapping_replace = {
13406 	.f = cmd_ptype_mapping_replace_parsed,
13407 	.data = NULL,
13408 	.help_str =
13409 		"ptype mapping replace <port_id> <target> <mask> <pkt_type>",
13410 	.tokens = {
13411 		(void *)&cmd_ptype_mapping_replace_ptype,
13412 		(void *)&cmd_ptype_mapping_replace_mapping,
13413 		(void *)&cmd_ptype_mapping_replace_replace,
13414 		(void *)&cmd_ptype_mapping_replace_port_id,
13415 		(void *)&cmd_ptype_mapping_replace_target,
13416 		(void *)&cmd_ptype_mapping_replace_mask,
13417 		(void *)&cmd_ptype_mapping_replace_pkt_type,
13418 		NULL,
13419 	},
13420 };
13421 
13422 /* ptype mapping reset */
13423 
13424 /* Common result structure for ptype mapping reset */
13425 struct cmd_ptype_mapping_reset_result {
13426 	cmdline_fixed_string_t ptype;
13427 	cmdline_fixed_string_t mapping;
13428 	cmdline_fixed_string_t reset;
13429 	uint8_t port_id;
13430 };
13431 
13432 /* Common CLI fields for ptype mapping reset*/
13433 cmdline_parse_token_string_t cmd_ptype_mapping_reset_ptype =
13434 	TOKEN_STRING_INITIALIZER
13435 		(struct cmd_ptype_mapping_reset_result,
13436 		 ptype, "ptype");
13437 cmdline_parse_token_string_t cmd_ptype_mapping_reset_mapping =
13438 	TOKEN_STRING_INITIALIZER
13439 		(struct cmd_ptype_mapping_reset_result,
13440 		 mapping, "mapping");
13441 cmdline_parse_token_string_t cmd_ptype_mapping_reset_reset =
13442 	TOKEN_STRING_INITIALIZER
13443 		(struct cmd_ptype_mapping_reset_result,
13444 		 reset, "reset");
13445 cmdline_parse_token_num_t cmd_ptype_mapping_reset_port_id =
13446 	TOKEN_NUM_INITIALIZER
13447 		(struct cmd_ptype_mapping_reset_result,
13448 		 port_id, UINT8);
13449 
13450 static void
13451 cmd_ptype_mapping_reset_parsed(
13452 	void *parsed_result,
13453 	__attribute__((unused)) struct cmdline *cl,
13454 	__attribute__((unused)) void *data)
13455 {
13456 	struct cmd_ptype_mapping_reset_result *res = parsed_result;
13457 	int ret = -ENOTSUP;
13458 
13459 	if (port_id_is_invalid(res->port_id, ENABLED_WARN))
13460 		return;
13461 
13462 #ifdef RTE_LIBRTE_I40E_PMD
13463 	ret = rte_pmd_i40e_ptype_mapping_reset(res->port_id);
13464 #endif
13465 
13466 	switch (ret) {
13467 	case 0:
13468 		break;
13469 	case -ENODEV:
13470 		printf("invalid port_id %d\n", res->port_id);
13471 		break;
13472 	case -ENOTSUP:
13473 		printf("function not implemented\n");
13474 		break;
13475 	default:
13476 		printf("programming error: (%s)\n", strerror(-ret));
13477 	}
13478 }
13479 
13480 cmdline_parse_inst_t cmd_ptype_mapping_reset = {
13481 	.f = cmd_ptype_mapping_reset_parsed,
13482 	.data = NULL,
13483 	.help_str = "ptype mapping reset <port_id>",
13484 	.tokens = {
13485 		(void *)&cmd_ptype_mapping_reset_ptype,
13486 		(void *)&cmd_ptype_mapping_reset_mapping,
13487 		(void *)&cmd_ptype_mapping_reset_reset,
13488 		(void *)&cmd_ptype_mapping_reset_port_id,
13489 		NULL,
13490 	},
13491 };
13492 
13493 /* ptype mapping update */
13494 
13495 /* Common result structure for ptype mapping update */
13496 struct cmd_ptype_mapping_update_result {
13497 	cmdline_fixed_string_t ptype;
13498 	cmdline_fixed_string_t mapping;
13499 	cmdline_fixed_string_t reset;
13500 	uint8_t port_id;
13501 	uint8_t hw_ptype;
13502 	uint32_t sw_ptype;
13503 };
13504 
13505 /* Common CLI fields for ptype mapping update*/
13506 cmdline_parse_token_string_t cmd_ptype_mapping_update_ptype =
13507 	TOKEN_STRING_INITIALIZER
13508 		(struct cmd_ptype_mapping_update_result,
13509 		 ptype, "ptype");
13510 cmdline_parse_token_string_t cmd_ptype_mapping_update_mapping =
13511 	TOKEN_STRING_INITIALIZER
13512 		(struct cmd_ptype_mapping_update_result,
13513 		 mapping, "mapping");
13514 cmdline_parse_token_string_t cmd_ptype_mapping_update_update =
13515 	TOKEN_STRING_INITIALIZER
13516 		(struct cmd_ptype_mapping_update_result,
13517 		 reset, "update");
13518 cmdline_parse_token_num_t cmd_ptype_mapping_update_port_id =
13519 	TOKEN_NUM_INITIALIZER
13520 		(struct cmd_ptype_mapping_update_result,
13521 		 port_id, UINT8);
13522 cmdline_parse_token_num_t cmd_ptype_mapping_update_hw_ptype =
13523 	TOKEN_NUM_INITIALIZER
13524 		(struct cmd_ptype_mapping_update_result,
13525 		 hw_ptype, UINT8);
13526 cmdline_parse_token_num_t cmd_ptype_mapping_update_sw_ptype =
13527 	TOKEN_NUM_INITIALIZER
13528 		(struct cmd_ptype_mapping_update_result,
13529 		 sw_ptype, UINT32);
13530 
13531 static void
13532 cmd_ptype_mapping_update_parsed(
13533 	void *parsed_result,
13534 	__attribute__((unused)) struct cmdline *cl,
13535 	__attribute__((unused)) void *data)
13536 {
13537 	struct cmd_ptype_mapping_update_result *res = parsed_result;
13538 	int ret = -ENOTSUP;
13539 #ifdef RTE_LIBRTE_I40E_PMD
13540 	struct rte_pmd_i40e_ptype_mapping mapping;
13541 #endif
13542 	if (port_id_is_invalid(res->port_id, ENABLED_WARN))
13543 		return;
13544 
13545 #ifdef RTE_LIBRTE_I40E_PMD
13546 	mapping.hw_ptype = res->hw_ptype;
13547 	mapping.sw_ptype = res->sw_ptype;
13548 	ret = rte_pmd_i40e_ptype_mapping_update(res->port_id,
13549 						&mapping,
13550 						1,
13551 						0);
13552 #endif
13553 
13554 	switch (ret) {
13555 	case 0:
13556 		break;
13557 	case -EINVAL:
13558 		printf("invalid ptype 0x%8x\n", res->sw_ptype);
13559 		break;
13560 	case -ENODEV:
13561 		printf("invalid port_id %d\n", res->port_id);
13562 		break;
13563 	case -ENOTSUP:
13564 		printf("function not implemented\n");
13565 		break;
13566 	default:
13567 		printf("programming error: (%s)\n", strerror(-ret));
13568 	}
13569 }
13570 
13571 cmdline_parse_inst_t cmd_ptype_mapping_update = {
13572 	.f = cmd_ptype_mapping_update_parsed,
13573 	.data = NULL,
13574 	.help_str = "ptype mapping update <port_id> <hw_ptype> <sw_ptype>",
13575 	.tokens = {
13576 		(void *)&cmd_ptype_mapping_update_ptype,
13577 		(void *)&cmd_ptype_mapping_update_mapping,
13578 		(void *)&cmd_ptype_mapping_update_update,
13579 		(void *)&cmd_ptype_mapping_update_port_id,
13580 		(void *)&cmd_ptype_mapping_update_hw_ptype,
13581 		(void *)&cmd_ptype_mapping_update_sw_ptype,
13582 		NULL,
13583 	},
13584 };
13585 
13586 /* Common result structure for file commands */
13587 struct cmd_cmdfile_result {
13588 	cmdline_fixed_string_t load;
13589 	cmdline_fixed_string_t filename;
13590 };
13591 
13592 /* Common CLI fields for file commands */
13593 cmdline_parse_token_string_t cmd_load_cmdfile =
13594 	TOKEN_STRING_INITIALIZER(struct cmd_cmdfile_result, load, "load");
13595 cmdline_parse_token_string_t cmd_load_cmdfile_filename =
13596 	TOKEN_STRING_INITIALIZER(struct cmd_cmdfile_result, filename, NULL);
13597 
13598 static void
13599 cmd_load_from_file_parsed(
13600 	void *parsed_result,
13601 	__attribute__((unused)) struct cmdline *cl,
13602 	__attribute__((unused)) void *data)
13603 {
13604 	struct cmd_cmdfile_result *res = parsed_result;
13605 
13606 	cmdline_read_from_file(res->filename);
13607 }
13608 
13609 cmdline_parse_inst_t cmd_load_from_file = {
13610 	.f = cmd_load_from_file_parsed,
13611 	.data = NULL,
13612 	.help_str = "load <filename>",
13613 	.tokens = {
13614 		(void *)&cmd_load_cmdfile,
13615 		(void *)&cmd_load_cmdfile_filename,
13616 		NULL,
13617 	},
13618 };
13619 
13620 /* ******************************************************************************** */
13621 
13622 /* list of instructions */
13623 cmdline_parse_ctx_t main_ctx[] = {
13624 	(cmdline_parse_inst_t *)&cmd_help_brief,
13625 	(cmdline_parse_inst_t *)&cmd_help_long,
13626 	(cmdline_parse_inst_t *)&cmd_quit,
13627 	(cmdline_parse_inst_t *)&cmd_load_from_file,
13628 	(cmdline_parse_inst_t *)&cmd_showport,
13629 	(cmdline_parse_inst_t *)&cmd_showqueue,
13630 	(cmdline_parse_inst_t *)&cmd_showportall,
13631 	(cmdline_parse_inst_t *)&cmd_showcfg,
13632 	(cmdline_parse_inst_t *)&cmd_start,
13633 	(cmdline_parse_inst_t *)&cmd_start_tx_first,
13634 	(cmdline_parse_inst_t *)&cmd_start_tx_first_n,
13635 	(cmdline_parse_inst_t *)&cmd_set_link_up,
13636 	(cmdline_parse_inst_t *)&cmd_set_link_down,
13637 	(cmdline_parse_inst_t *)&cmd_reset,
13638 	(cmdline_parse_inst_t *)&cmd_set_numbers,
13639 	(cmdline_parse_inst_t *)&cmd_set_txpkts,
13640 	(cmdline_parse_inst_t *)&cmd_set_txsplit,
13641 	(cmdline_parse_inst_t *)&cmd_set_fwd_list,
13642 	(cmdline_parse_inst_t *)&cmd_set_fwd_mask,
13643 	(cmdline_parse_inst_t *)&cmd_set_fwd_mode,
13644 	(cmdline_parse_inst_t *)&cmd_set_fwd_retry_mode,
13645 	(cmdline_parse_inst_t *)&cmd_set_burst_tx_retry,
13646 	(cmdline_parse_inst_t *)&cmd_set_promisc_mode_one,
13647 	(cmdline_parse_inst_t *)&cmd_set_promisc_mode_all,
13648 	(cmdline_parse_inst_t *)&cmd_set_allmulti_mode_one,
13649 	(cmdline_parse_inst_t *)&cmd_set_allmulti_mode_all,
13650 	(cmdline_parse_inst_t *)&cmd_set_flush_rx,
13651 	(cmdline_parse_inst_t *)&cmd_set_link_check,
13652 	(cmdline_parse_inst_t *)&cmd_set_bypass_mode,
13653 	(cmdline_parse_inst_t *)&cmd_set_bypass_event,
13654 	(cmdline_parse_inst_t *)&cmd_set_bypass_timeout,
13655 	(cmdline_parse_inst_t *)&cmd_show_bypass_config,
13656 #ifdef RTE_LIBRTE_PMD_BOND
13657 	(cmdline_parse_inst_t *) &cmd_set_bonding_mode,
13658 	(cmdline_parse_inst_t *) &cmd_show_bonding_config,
13659 	(cmdline_parse_inst_t *) &cmd_set_bonding_primary,
13660 	(cmdline_parse_inst_t *) &cmd_add_bonding_slave,
13661 	(cmdline_parse_inst_t *) &cmd_remove_bonding_slave,
13662 	(cmdline_parse_inst_t *) &cmd_create_bonded_device,
13663 	(cmdline_parse_inst_t *) &cmd_set_bond_mac_addr,
13664 	(cmdline_parse_inst_t *) &cmd_set_balance_xmit_policy,
13665 	(cmdline_parse_inst_t *) &cmd_set_bond_mon_period,
13666 #endif
13667 	(cmdline_parse_inst_t *)&cmd_vlan_offload,
13668 	(cmdline_parse_inst_t *)&cmd_vlan_tpid,
13669 	(cmdline_parse_inst_t *)&cmd_rx_vlan_filter_all,
13670 	(cmdline_parse_inst_t *)&cmd_rx_vlan_filter,
13671 	(cmdline_parse_inst_t *)&cmd_tx_vlan_set,
13672 	(cmdline_parse_inst_t *)&cmd_tx_vlan_set_qinq,
13673 	(cmdline_parse_inst_t *)&cmd_tx_vlan_reset,
13674 	(cmdline_parse_inst_t *)&cmd_tx_vlan_set_pvid,
13675 	(cmdline_parse_inst_t *)&cmd_csum_set,
13676 	(cmdline_parse_inst_t *)&cmd_csum_show,
13677 	(cmdline_parse_inst_t *)&cmd_csum_tunnel,
13678 	(cmdline_parse_inst_t *)&cmd_tso_set,
13679 	(cmdline_parse_inst_t *)&cmd_tso_show,
13680 	(cmdline_parse_inst_t *)&cmd_tunnel_tso_set,
13681 	(cmdline_parse_inst_t *)&cmd_tunnel_tso_show,
13682 	(cmdline_parse_inst_t *)&cmd_link_flow_control_set,
13683 	(cmdline_parse_inst_t *)&cmd_link_flow_control_set_rx,
13684 	(cmdline_parse_inst_t *)&cmd_link_flow_control_set_tx,
13685 	(cmdline_parse_inst_t *)&cmd_link_flow_control_set_hw,
13686 	(cmdline_parse_inst_t *)&cmd_link_flow_control_set_lw,
13687 	(cmdline_parse_inst_t *)&cmd_link_flow_control_set_pt,
13688 	(cmdline_parse_inst_t *)&cmd_link_flow_control_set_xon,
13689 	(cmdline_parse_inst_t *)&cmd_link_flow_control_set_macfwd,
13690 	(cmdline_parse_inst_t *)&cmd_link_flow_control_set_autoneg,
13691 	(cmdline_parse_inst_t *)&cmd_priority_flow_control_set,
13692 	(cmdline_parse_inst_t *)&cmd_config_dcb,
13693 	(cmdline_parse_inst_t *)&cmd_read_reg,
13694 	(cmdline_parse_inst_t *)&cmd_read_reg_bit_field,
13695 	(cmdline_parse_inst_t *)&cmd_read_reg_bit,
13696 	(cmdline_parse_inst_t *)&cmd_write_reg,
13697 	(cmdline_parse_inst_t *)&cmd_write_reg_bit_field,
13698 	(cmdline_parse_inst_t *)&cmd_write_reg_bit,
13699 	(cmdline_parse_inst_t *)&cmd_read_rxd_txd,
13700 	(cmdline_parse_inst_t *)&cmd_stop,
13701 	(cmdline_parse_inst_t *)&cmd_mac_addr,
13702 	(cmdline_parse_inst_t *)&cmd_set_qmap,
13703 	(cmdline_parse_inst_t *)&cmd_operate_port,
13704 	(cmdline_parse_inst_t *)&cmd_operate_specific_port,
13705 	(cmdline_parse_inst_t *)&cmd_operate_attach_port,
13706 	(cmdline_parse_inst_t *)&cmd_operate_detach_port,
13707 	(cmdline_parse_inst_t *)&cmd_config_speed_all,
13708 	(cmdline_parse_inst_t *)&cmd_config_speed_specific,
13709 	(cmdline_parse_inst_t *)&cmd_config_rx_tx,
13710 	(cmdline_parse_inst_t *)&cmd_config_mtu,
13711 	(cmdline_parse_inst_t *)&cmd_config_max_pkt_len,
13712 	(cmdline_parse_inst_t *)&cmd_config_rx_mode_flag,
13713 	(cmdline_parse_inst_t *)&cmd_config_rss,
13714 	(cmdline_parse_inst_t *)&cmd_config_rxtx_queue,
13715 	(cmdline_parse_inst_t *)&cmd_config_txqflags,
13716 	(cmdline_parse_inst_t *)&cmd_config_rss_reta,
13717 	(cmdline_parse_inst_t *)&cmd_showport_reta,
13718 	(cmdline_parse_inst_t *)&cmd_config_burst,
13719 	(cmdline_parse_inst_t *)&cmd_config_thresh,
13720 	(cmdline_parse_inst_t *)&cmd_config_threshold,
13721 	(cmdline_parse_inst_t *)&cmd_set_uc_hash_filter,
13722 	(cmdline_parse_inst_t *)&cmd_set_uc_all_hash_filter,
13723 	(cmdline_parse_inst_t *)&cmd_vf_mac_addr_filter,
13724 	(cmdline_parse_inst_t *)&cmd_set_vf_macvlan_filter,
13725 	(cmdline_parse_inst_t *)&cmd_queue_rate_limit,
13726 	(cmdline_parse_inst_t *)&cmd_tunnel_filter,
13727 	(cmdline_parse_inst_t *)&cmd_tunnel_udp_config,
13728 	(cmdline_parse_inst_t *)&cmd_global_config,
13729 	(cmdline_parse_inst_t *)&cmd_set_mirror_mask,
13730 	(cmdline_parse_inst_t *)&cmd_set_mirror_link,
13731 	(cmdline_parse_inst_t *)&cmd_reset_mirror_rule,
13732 	(cmdline_parse_inst_t *)&cmd_showport_rss_hash,
13733 	(cmdline_parse_inst_t *)&cmd_showport_rss_hash_key,
13734 	(cmdline_parse_inst_t *)&cmd_config_rss_hash_key,
13735 	(cmdline_parse_inst_t *)&cmd_dump,
13736 	(cmdline_parse_inst_t *)&cmd_dump_one,
13737 	(cmdline_parse_inst_t *)&cmd_ethertype_filter,
13738 	(cmdline_parse_inst_t *)&cmd_syn_filter,
13739 	(cmdline_parse_inst_t *)&cmd_2tuple_filter,
13740 	(cmdline_parse_inst_t *)&cmd_5tuple_filter,
13741 	(cmdline_parse_inst_t *)&cmd_flex_filter,
13742 	(cmdline_parse_inst_t *)&cmd_add_del_ip_flow_director,
13743 	(cmdline_parse_inst_t *)&cmd_add_del_udp_flow_director,
13744 	(cmdline_parse_inst_t *)&cmd_add_del_sctp_flow_director,
13745 	(cmdline_parse_inst_t *)&cmd_add_del_l2_flow_director,
13746 	(cmdline_parse_inst_t *)&cmd_add_del_mac_vlan_flow_director,
13747 	(cmdline_parse_inst_t *)&cmd_add_del_tunnel_flow_director,
13748 	(cmdline_parse_inst_t *)&cmd_flush_flow_director,
13749 	(cmdline_parse_inst_t *)&cmd_set_flow_director_ip_mask,
13750 	(cmdline_parse_inst_t *)&cmd_set_flow_director_mac_vlan_mask,
13751 	(cmdline_parse_inst_t *)&cmd_set_flow_director_tunnel_mask,
13752 	(cmdline_parse_inst_t *)&cmd_set_flow_director_flex_mask,
13753 	(cmdline_parse_inst_t *)&cmd_set_flow_director_flex_payload,
13754 	(cmdline_parse_inst_t *)&cmd_get_sym_hash_ena_per_port,
13755 	(cmdline_parse_inst_t *)&cmd_set_sym_hash_ena_per_port,
13756 	(cmdline_parse_inst_t *)&cmd_get_hash_global_config,
13757 	(cmdline_parse_inst_t *)&cmd_set_hash_global_config,
13758 	(cmdline_parse_inst_t *)&cmd_set_hash_input_set,
13759 	(cmdline_parse_inst_t *)&cmd_set_fdir_input_set,
13760 	(cmdline_parse_inst_t *)&cmd_flow,
13761 	(cmdline_parse_inst_t *)&cmd_mcast_addr,
13762 	(cmdline_parse_inst_t *)&cmd_config_l2_tunnel_eth_type_all,
13763 	(cmdline_parse_inst_t *)&cmd_config_l2_tunnel_eth_type_specific,
13764 	(cmdline_parse_inst_t *)&cmd_config_l2_tunnel_en_dis_all,
13765 	(cmdline_parse_inst_t *)&cmd_config_l2_tunnel_en_dis_specific,
13766 	(cmdline_parse_inst_t *)&cmd_config_e_tag_insertion_en,
13767 	(cmdline_parse_inst_t *)&cmd_config_e_tag_insertion_dis,
13768 	(cmdline_parse_inst_t *)&cmd_config_e_tag_stripping_en_dis,
13769 	(cmdline_parse_inst_t *)&cmd_config_e_tag_forwarding_en_dis,
13770 	(cmdline_parse_inst_t *)&cmd_config_e_tag_filter_add,
13771 	(cmdline_parse_inst_t *)&cmd_config_e_tag_filter_del,
13772 	(cmdline_parse_inst_t *)&cmd_set_vf_vlan_anti_spoof,
13773 	(cmdline_parse_inst_t *)&cmd_set_vf_mac_anti_spoof,
13774 	(cmdline_parse_inst_t *)&cmd_set_vf_vlan_stripq,
13775 	(cmdline_parse_inst_t *)&cmd_set_vf_vlan_insert,
13776 	(cmdline_parse_inst_t *)&cmd_set_tx_loopback,
13777 #ifdef RTE_LIBRTE_IXGBE_PMD
13778 	(cmdline_parse_inst_t *)&cmd_set_all_queues_drop_en,
13779 	(cmdline_parse_inst_t *)&cmd_set_vf_split_drop_en,
13780 	(cmdline_parse_inst_t *)&cmd_set_macsec_offload_on,
13781 	(cmdline_parse_inst_t *)&cmd_set_macsec_offload_off,
13782 	(cmdline_parse_inst_t *)&cmd_set_macsec_sc,
13783 	(cmdline_parse_inst_t *)&cmd_set_macsec_sa,
13784 	(cmdline_parse_inst_t *)&cmd_set_vf_rxmode,
13785 	(cmdline_parse_inst_t *)&cmd_set_vf_traffic,
13786 #endif
13787 	(cmdline_parse_inst_t *)&cmd_vf_rate_limit,
13788 	(cmdline_parse_inst_t *)&cmd_vf_rxvlan_filter,
13789 	(cmdline_parse_inst_t *)&cmd_set_vf_mac_addr,
13790 	(cmdline_parse_inst_t *)&cmd_set_vf_promisc,
13791 	(cmdline_parse_inst_t *)&cmd_set_vf_allmulti,
13792 	(cmdline_parse_inst_t *)&cmd_set_vf_broadcast,
13793 	(cmdline_parse_inst_t *)&cmd_set_vf_vlan_tag,
13794 	(cmdline_parse_inst_t *)&cmd_vf_max_bw,
13795 	(cmdline_parse_inst_t *)&cmd_vf_tc_min_bw,
13796 	(cmdline_parse_inst_t *)&cmd_vf_tc_max_bw,
13797 	(cmdline_parse_inst_t *)&cmd_strict_link_prio,
13798 	(cmdline_parse_inst_t *)&cmd_tc_min_bw,
13799 	(cmdline_parse_inst_t *)&cmd_ddp_add,
13800 	(cmdline_parse_inst_t *)&cmd_ddp_get_list,
13801 	(cmdline_parse_inst_t *)&cmd_show_vf_stats,
13802 	(cmdline_parse_inst_t *)&cmd_clear_vf_stats,
13803 	(cmdline_parse_inst_t *)&cmd_ptype_mapping_get,
13804 	(cmdline_parse_inst_t *)&cmd_ptype_mapping_replace,
13805 	(cmdline_parse_inst_t *)&cmd_ptype_mapping_reset,
13806 	(cmdline_parse_inst_t *)&cmd_ptype_mapping_update,
13807 	NULL,
13808 };
13809 
13810 /* read cmdline commands from file */
13811 void
13812 cmdline_read_from_file(const char *filename)
13813 {
13814 	struct cmdline *cl;
13815 
13816 	cl = cmdline_file_new(main_ctx, "testpmd> ", filename);
13817 	if (cl == NULL) {
13818 		printf("Failed to create file based cmdline context: %s\n",
13819 		       filename);
13820 		return;
13821 	}
13822 
13823 	cmdline_interact(cl);
13824 	cmdline_quit(cl);
13825 
13826 	cmdline_free(cl);
13827 
13828 	printf("Read CLI commands from %s\n", filename);
13829 }
13830 
13831 /* prompt function, called from main on MASTER lcore */
13832 void
13833 prompt(void)
13834 {
13835 	/* initialize non-constant commands */
13836 	cmd_set_fwd_mode_init();
13837 	cmd_set_fwd_retry_mode_init();
13838 
13839 	testpmd_cl = cmdline_stdin_new(main_ctx, "testpmd> ");
13840 	if (testpmd_cl == NULL)
13841 		return;
13842 	cmdline_interact(testpmd_cl);
13843 	cmdline_stdin_exit(testpmd_cl);
13844 }
13845 
13846 void
13847 prompt_exit(void)
13848 {
13849 	if (testpmd_cl != NULL)
13850 		cmdline_quit(testpmd_cl);
13851 }
13852 
13853 static void
13854 cmd_reconfig_device_queue(portid_t id, uint8_t dev, uint8_t queue)
13855 {
13856 	if (id == (portid_t)RTE_PORT_ALL) {
13857 		portid_t pid;
13858 
13859 		RTE_ETH_FOREACH_DEV(pid) {
13860 			/* check if need_reconfig has been set to 1 */
13861 			if (ports[pid].need_reconfig == 0)
13862 				ports[pid].need_reconfig = dev;
13863 			/* check if need_reconfig_queues has been set to 1 */
13864 			if (ports[pid].need_reconfig_queues == 0)
13865 				ports[pid].need_reconfig_queues = queue;
13866 		}
13867 	} else if (!port_id_is_invalid(id, DISABLED_WARN)) {
13868 		/* check if need_reconfig has been set to 1 */
13869 		if (ports[id].need_reconfig == 0)
13870 			ports[id].need_reconfig = dev;
13871 		/* check if need_reconfig_queues has been set to 1 */
13872 		if (ports[id].need_reconfig_queues == 0)
13873 			ports[id].need_reconfig_queues = queue;
13874 	}
13875 }
13876