73a5a4788cc3d0b2de7e6d381b9b892a7bd23454
[dpdk.git] / app / test-pmd / cmdline.c
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
79 #include <cmdline_rdline.h>
80 #include <cmdline_parse.h>
81 #include <cmdline_parse_num.h>
82 #include <cmdline_parse_string.h>
83 #include <cmdline_parse_ipaddr.h>
84 #include <cmdline_parse_etheraddr.h>
85 #include <cmdline_socket.h>
86 #include <cmdline.h>
87 #ifdef RTE_LIBRTE_PMD_BOND
88 #include <rte_eth_bond.h>
89 #endif
90
91 #include "testpmd.h"
92
93 static struct cmdline *testpmd_cl;
94
95 static void cmd_reconfig_device_queue(portid_t id, uint8_t dev, uint8_t queue);
96
97 #ifdef RTE_NIC_BYPASS
98 uint8_t bypass_is_supported(portid_t port_id);
99 #endif
100
101 /* *** Help command with introduction. *** */
102 struct cmd_help_brief_result {
103         cmdline_fixed_string_t help;
104 };
105
106 static void cmd_help_brief_parsed(__attribute__((unused)) void *parsed_result,
107                                   struct cmdline *cl,
108                                   __attribute__((unused)) void *data)
109 {
110         cmdline_printf(
111                 cl,
112                 "\n"
113                 "Help is available for the following sections:\n\n"
114                 "    help control    : Start and stop forwarding.\n"
115                 "    help display    : Displaying port, stats and config "
116                 "information.\n"
117                 "    help config     : Configuration information.\n"
118                 "    help ports      : Configuring ports.\n"
119                 "    help registers  : Reading and setting port registers.\n"
120                 "    help filters    : Filters configuration help.\n"
121                 "    help all        : All of the above sections.\n\n"
122         );
123
124 }
125
126 cmdline_parse_token_string_t cmd_help_brief_help =
127         TOKEN_STRING_INITIALIZER(struct cmd_help_brief_result, help, "help");
128
129 cmdline_parse_inst_t cmd_help_brief = {
130         .f = cmd_help_brief_parsed,
131         .data = NULL,
132         .help_str = "show help",
133         .tokens = {
134                 (void *)&cmd_help_brief_help,
135                 NULL,
136         },
137 };
138
139 /* *** Help command with help sections. *** */
140 struct cmd_help_long_result {
141         cmdline_fixed_string_t help;
142         cmdline_fixed_string_t section;
143 };
144
145 static void cmd_help_long_parsed(void *parsed_result,
146                                  struct cmdline *cl,
147                                  __attribute__((unused)) void *data)
148 {
149         int show_all = 0;
150         struct cmd_help_long_result *res = parsed_result;
151
152         if (!strcmp(res->section, "all"))
153                 show_all = 1;
154
155         if (show_all || !strcmp(res->section, "control")) {
156
157                 cmdline_printf(
158                         cl,
159                         "\n"
160                         "Control forwarding:\n"
161                         "-------------------\n\n"
162
163                         "start\n"
164                         "    Start packet forwarding with current configuration.\n\n"
165
166                         "start tx_first\n"
167                         "    Start packet forwarding with current config"
168                         " after sending one burst of packets.\n\n"
169
170                         "stop\n"
171                         "    Stop packet forwarding, and display accumulated"
172                         " statistics.\n\n"
173
174                         "quit\n"
175                         "    Quit to prompt.\n\n"
176                 );
177         }
178
179         if (show_all || !strcmp(res->section, "display")) {
180
181                 cmdline_printf(
182                         cl,
183                         "\n"
184                         "Display:\n"
185                         "--------\n\n"
186
187                         "show port (info|stats|xstats|fdir|stat_qmap|dcb_tc) (port_id|all)\n"
188                         "    Display information for port_id, or all.\n\n"
189
190                         "show port X rss reta (size) (mask0,mask1,...)\n"
191                         "    Display the rss redirection table entry indicated"
192                         " by masks on port X. size is used to indicate the"
193                         " hardware supported reta size\n\n"
194
195                         "show port rss-hash ipv4|ipv4-frag|ipv4-tcp|ipv4-udp|"
196                         "ipv4-sctp|ipv4-other|ipv6|ipv6-frag|ipv6-tcp|ipv6-udp|ipv6-sctp|"
197                         "ipv6-other|l2-payload|ipv6-ex|ipv6-tcp-ex|ipv6-udp-ex [key]\n"
198                         "    Display the RSS hash functions and RSS hash key"
199                         " of port X\n\n"
200
201                         "clear port (info|stats|xstats|fdir|stat_qmap) (port_id|all)\n"
202                         "    Clear information for port_id, or all.\n\n"
203
204                         "show (rxq|txq) info (port_id) (queue_id)\n"
205                         "    Display information for configured RX/TX queue.\n\n"
206
207                         "show config (rxtx|cores|fwd|txpkts)\n"
208                         "    Display the given configuration.\n\n"
209
210                         "read rxd (port_id) (queue_id) (rxd_id)\n"
211                         "    Display an RX descriptor of a port RX queue.\n\n"
212
213                         "read txd (port_id) (queue_id) (txd_id)\n"
214                         "    Display a TX descriptor of a port TX queue.\n\n"
215                 );
216         }
217
218         if (show_all || !strcmp(res->section, "config")) {
219                 cmdline_printf(
220                         cl,
221                         "\n"
222                         "Configuration:\n"
223                         "--------------\n"
224                         "Configuration changes only become active when"
225                         " forwarding is started/restarted.\n\n"
226
227                         "set default\n"
228                         "    Reset forwarding to the default configuration.\n\n"
229
230                         "set verbose (level)\n"
231                         "    Set the debug verbosity level X.\n\n"
232
233                         "set nbport (num)\n"
234                         "    Set number of ports.\n\n"
235
236                         "set nbcore (num)\n"
237                         "    Set number of cores.\n\n"
238
239                         "set coremask (mask)\n"
240                         "    Set the forwarding cores hexadecimal mask.\n\n"
241
242                         "set portmask (mask)\n"
243                         "    Set the forwarding ports hexadecimal mask.\n\n"
244
245                         "set burst (num)\n"
246                         "    Set number of packets per burst.\n\n"
247
248                         "set burst tx delay (microseconds) retry (num)\n"
249                         "    Set the transmit delay time and number of retries"
250                         " in mac_retry forwarding mode.\n\n"
251
252                         "set txpkts (x[,y]*)\n"
253                         "    Set the length of each segment of TXONLY"
254                         " and optionally CSUM packets.\n\n"
255
256                         "set txsplit (off|on|rand)\n"
257                         "    Set the split policy for the TX packets."
258                         " Right now only applicable for CSUM and TXONLY"
259                         " modes\n\n"
260
261                         "set corelist (x[,y]*)\n"
262                         "    Set the list of forwarding cores.\n\n"
263
264                         "set portlist (x[,y]*)\n"
265                         "    Set the list of forwarding ports.\n\n"
266
267                         "vlan set strip (on|off) (port_id)\n"
268                         "    Set the VLAN strip on a port.\n\n"
269
270                         "vlan set stripq (on|off) (port_id,queue_id)\n"
271                         "    Set the VLAN strip for a queue on a port.\n\n"
272
273                         "vlan set filter (on|off) (port_id)\n"
274                         "    Set the VLAN filter on a port.\n\n"
275
276                         "vlan set qinq (on|off) (port_id)\n"
277                         "    Set the VLAN QinQ (extended queue in queue)"
278                         " on a port.\n\n"
279
280                         "vlan set (inner|outer) tpid (value) (port_id)\n"
281                         "    Set the VLAN TPID for Packet Filtering on"
282                         " a port\n\n"
283
284                         "rx_vlan add (vlan_id|all) (port_id)\n"
285                         "    Add a vlan_id, or all identifiers, to the set"
286                         " of VLAN identifiers filtered by port_id.\n\n"
287
288                         "rx_vlan rm (vlan_id|all) (port_id)\n"
289                         "    Remove a vlan_id, or all identifiers, from the set"
290                         " of VLAN identifiers filtered by port_id.\n\n"
291
292                         "rx_vlan add (vlan_id) port (port_id) vf (vf_mask)\n"
293                         "    Add a vlan_id, to the set of VLAN identifiers"
294                         "filtered for VF(s) from port_id.\n\n"
295
296                         "rx_vlan rm (vlan_id) port (port_id) vf (vf_mask)\n"
297                         "    Remove a vlan_id, to the set of VLAN identifiers"
298                         "filtered for VF(s) from port_id.\n\n"
299
300                         "tunnel_filter add (port_id) (outer_mac) (inner_mac) (ip_addr) "
301                         "(inner_vlan) (vxlan|nvgre|ipingre) (imac-ivlan|imac-ivlan-tenid|"
302                         "imac-tenid|imac|omac-imac-tenid|oip|iip) (tenant_id) (queue_id)\n"
303                         "   add a tunnel filter of a port.\n\n"
304
305                         "tunnel_filter rm (port_id) (outer_mac) (inner_mac) (ip_addr) "
306                         "(inner_vlan) (vxlan|nvgre|ipingre) (imac-ivlan|imac-ivlan-tenid|"
307                         "imac-tenid|imac|omac-imac-tenid|oip|iip) (tenant_id) (queue_id)\n"
308                         "   remove a tunnel filter of a port.\n\n"
309
310                         "rx_vxlan_port add (udp_port) (port_id)\n"
311                         "    Add an UDP port for VXLAN packet filter on a port\n\n"
312
313                         "rx_vxlan_port rm (udp_port) (port_id)\n"
314                         "    Remove an UDP port for VXLAN packet filter on a port\n\n"
315
316                         "tx_vlan set (port_id) vlan_id[, vlan_id_outer]\n"
317                         "    Set hardware insertion of VLAN IDs (single or double VLAN "
318                         "depends on the number of VLAN IDs) in packets sent on a port.\n\n"
319
320                         "tx_vlan set pvid port_id vlan_id (on|off)\n"
321                         "    Set port based TX VLAN insertion.\n\n"
322
323                         "tx_vlan reset (port_id)\n"
324                         "    Disable hardware insertion of a VLAN header in"
325                         " packets sent on a port.\n\n"
326
327                         "csum set (ip|udp|tcp|sctp|outer-ip) (hw|sw) (port_id)\n"
328                         "    Select hardware or software calculation of the"
329                         " checksum when transmitting a packet using the"
330                         " csum forward engine.\n"
331                         "    ip|udp|tcp|sctp always concern the inner layer.\n"
332                         "    outer-ip concerns the outer IP layer in"
333                         " case the packet is recognized as a tunnel packet by"
334                         " the forward engine (vxlan, gre and ipip are supported)\n"
335                         "    Please check the NIC datasheet for HW limits.\n\n"
336
337                         "csum parse-tunnel (on|off) (tx_port_id)\n"
338                         "    If disabled, treat tunnel packets as non-tunneled"
339                         " packets (treat inner headers as payload). The port\n"
340                         "    argument is the port used for TX in csum forward"
341                         " engine.\n\n"
342
343                         "csum show (port_id)\n"
344                         "    Display tx checksum offload configuration\n\n"
345
346                         "tso set (segsize) (portid)\n"
347                         "    Enable TCP Segmentation Offload in csum forward"
348                         " engine.\n"
349                         "    Please check the NIC datasheet for HW limits.\n\n"
350
351                         "tso show (portid)"
352                         "    Display the status of TCP Segmentation Offload.\n\n"
353
354                         "set fwd (%s)\n"
355                         "    Set packet forwarding mode.\n\n"
356
357                         "mac_addr add (port_id) (XX:XX:XX:XX:XX:XX)\n"
358                         "    Add a MAC address on port_id.\n\n"
359
360                         "mac_addr remove (port_id) (XX:XX:XX:XX:XX:XX)\n"
361                         "    Remove a MAC address from port_id.\n\n"
362
363                         "mac_addr add port (port_id) vf (vf_id) (mac_address)\n"
364                         "    Add a MAC address for a VF on the port.\n\n"
365
366                         "set port (port_id) uta (mac_address|all) (on|off)\n"
367                         "    Add/Remove a or all unicast hash filter(s)"
368                         "from port X.\n\n"
369
370                         "set promisc (port_id|all) (on|off)\n"
371                         "    Set the promiscuous mode on port_id, or all.\n\n"
372
373                         "set allmulti (port_id|all) (on|off)\n"
374                         "    Set the allmulti mode on port_id, or all.\n\n"
375
376                         "set flow_ctrl rx (on|off) tx (on|off) (high_water)"
377                         " (low_water) (pause_time) (send_xon) mac_ctrl_frame_fwd"
378                         " (on|off) autoneg (on|off) (port_id)\n"
379                         "set flow_ctrl rx (on|off) (portid)\n"
380                         "set flow_ctrl tx (on|off) (portid)\n"
381                         "set flow_ctrl high_water (high_water) (portid)\n"
382                         "set flow_ctrl low_water (low_water) (portid)\n"
383                         "set flow_ctrl pause_time (pause_time) (portid)\n"
384                         "set flow_ctrl send_xon (send_xon) (portid)\n"
385                         "set flow_ctrl mac_ctrl_frame_fwd (on|off) (portid)\n"
386                         "set flow_ctrl autoneg (on|off) (port_id)\n"
387                         "    Set the link flow control parameter on a port.\n\n"
388
389                         "set pfc_ctrl rx (on|off) tx (on|off) (high_water)"
390                         " (low_water) (pause_time) (priority) (port_id)\n"
391                         "    Set the priority flow control parameter on a"
392                         " port.\n\n"
393
394                         "set stat_qmap (tx|rx) (port_id) (queue_id) (qmapping)\n"
395                         "    Set statistics mapping (qmapping 0..15) for RX/TX"
396                         " queue on port.\n"
397                         "    e.g., 'set stat_qmap rx 0 2 5' sets rx queue 2"
398                         " on port 0 to mapping 5.\n\n"
399
400                         "set port (port_id) vf (vf_id) rx|tx on|off\n"
401                         "    Enable/Disable a VF receive/tranmit from a port\n\n"
402
403                         "set port (port_id) vf (vf_id) (mac_addr)"
404                         " (exact-mac#exact-mac-vlan#hashmac|hashmac-vlan) on|off\n"
405                         "   Add/Remove unicast or multicast MAC addr filter"
406                         " for a VF.\n\n"
407
408                         "set port (port_id) vf (vf_id) rxmode (AUPE|ROPE|BAM"
409                         "|MPE) (on|off)\n"
410                         "    AUPE:accepts untagged VLAN;"
411                         "ROPE:accept unicast hash\n\n"
412                         "    BAM:accepts broadcast packets;"
413                         "MPE:accepts all multicast packets\n\n"
414                         "    Enable/Disable a VF receive mode of a port\n\n"
415
416                         "set port (port_id) queue (queue_id) rate (rate_num)\n"
417                         "    Set rate limit for a queue of a port\n\n"
418
419                         "set port (port_id) vf (vf_id) rate (rate_num) "
420                         "queue_mask (queue_mask_value)\n"
421                         "    Set rate limit for queues in VF of a port\n\n"
422
423                         "set port (port_id) mirror-rule (rule_id)"
424                         " (pool-mirror-up|pool-mirror-down|vlan-mirror)"
425                         " (poolmask|vlanid[,vlanid]*) dst-pool (pool_id) (on|off)\n"
426                         "   Set pool or vlan type mirror rule on a port.\n"
427                         "   e.g., 'set port 0 mirror-rule 0 vlan-mirror 0,1"
428                         " dst-pool 0 on' enable mirror traffic with vlan 0,1"
429                         " to pool 0.\n\n"
430
431                         "set port (port_id) mirror-rule (rule_id)"
432                         " (uplink-mirror|downlink-mirror) dst-pool"
433                         " (pool_id) (on|off)\n"
434                         "   Set uplink or downlink type mirror rule on a port.\n"
435                         "   e.g., 'set port 0 mirror-rule 0 uplink-mirror dst-pool"
436                         " 0 on' enable mirror income traffic to pool 0.\n\n"
437
438                         "reset port (port_id) mirror-rule (rule_id)\n"
439                         "   Reset a mirror rule.\n\n"
440
441                         "set flush_rx (on|off)\n"
442                         "   Flush (default) or don't flush RX streams before"
443                         " forwarding. Mainly used with PCAP drivers.\n\n"
444
445                         #ifdef RTE_NIC_BYPASS
446                         "set bypass mode (normal|bypass|isolate) (port_id)\n"
447                         "   Set the bypass mode for the lowest port on bypass enabled"
448                         " NIC.\n\n"
449
450                         "set bypass event (timeout|os_on|os_off|power_on|power_off) "
451                         "mode (normal|bypass|isolate) (port_id)\n"
452                         "   Set the event required to initiate specified bypass mode for"
453                         " the lowest port on a bypass enabled NIC where:\n"
454                         "       timeout   = enable bypass after watchdog timeout.\n"
455                         "       os_on     = enable bypass when OS/board is powered on.\n"
456                         "       os_off    = enable bypass when OS/board is powered off.\n"
457                         "       power_on  = enable bypass when power supply is turned on.\n"
458                         "       power_off = enable bypass when power supply is turned off."
459                         "\n\n"
460
461                         "set bypass timeout (0|1.5|2|3|4|8|16|32)\n"
462                         "   Set the bypass watchdog timeout to 'n' seconds"
463                         " where 0 = instant.\n\n"
464
465                         "show bypass config (port_id)\n"
466                         "   Show the bypass configuration for a bypass enabled NIC"
467                         " using the lowest port on the NIC.\n\n"
468 #endif
469 #ifdef RTE_LIBRTE_PMD_BOND
470                         "create bonded device (mode) (socket)\n"
471                         "       Create a new bonded device with specific bonding mode and socket.\n\n"
472
473                         "add bonding slave (slave_id) (port_id)\n"
474                         "       Add a slave device to a bonded device.\n\n"
475
476                         "remove bonding slave (slave_id) (port_id)\n"
477                         "       Remove a slave device from a bonded device.\n\n"
478
479                         "set bonding mode (value) (port_id)\n"
480                         "       Set the bonding mode on a bonded device.\n\n"
481
482                         "set bonding primary (slave_id) (port_id)\n"
483                         "       Set the primary slave for a bonded device.\n\n"
484
485                         "show bonding config (port_id)\n"
486                         "       Show the bonding config for port_id.\n\n"
487
488                         "set bonding mac_addr (port_id) (address)\n"
489                         "       Set the MAC address of a bonded device.\n\n"
490
491                         "set bonding xmit_balance_policy (port_id) (l2|l23|l34)\n"
492                         "       Set the transmit balance policy for bonded device running in balance mode.\n\n"
493
494                         "set bonding mon_period (port_id) (value)\n"
495                         "       Set the bonding link status monitoring polling period in ms.\n\n"
496 #endif
497                         "set link-up port (port_id)\n"
498                         "       Set link up for a port.\n\n"
499
500                         "set link-down port (port_id)\n"
501                         "       Set link down for a port.\n\n"
502
503                         "E-tag set insertion on port-tag-id (value)"
504                         " port (port_id) vf (vf_id)\n"
505                         "    Enable E-tag insertion for a VF on a port\n\n"
506
507                         "E-tag set insertion off port (port_id) vf (vf_id)\n"
508                         "    Disable E-tag insertion for a VF on a port\n\n"
509
510                         "E-tag set stripping (on|off) port (port_id)\n"
511                         "    Enable/disable E-tag stripping on a port\n\n"
512
513                         "E-tag set forwarding (on|off) port (port_id)\n"
514                         "    Enable/disable E-tag based forwarding"
515                         " on a port\n\n"
516
517                         "E-tag set filter add e-tag-id (value) dst-pool"
518                         " (pool_id) port (port_id)\n"
519                         "    Add an E-tag forwarding filter on a port\n\n"
520
521                         "E-tag set filter del e-tag-id (value) port (port_id)\n"
522                         "    Delete an E-tag forwarding filter on a port\n\n"
523
524                         , list_pkt_forwarding_modes()
525                 );
526         }
527
528         if (show_all || !strcmp(res->section, "ports")) {
529
530                 cmdline_printf(
531                         cl,
532                         "\n"
533                         "Port Operations:\n"
534                         "----------------\n\n"
535
536                         "port start (port_id|all)\n"
537                         "    Start all ports or port_id.\n\n"
538
539                         "port stop (port_id|all)\n"
540                         "    Stop all ports or port_id.\n\n"
541
542                         "port close (port_id|all)\n"
543                         "    Close all ports or port_id.\n\n"
544
545                         "port attach (ident)\n"
546                         "    Attach physical or virtual dev by pci address or virtual device name\n\n"
547
548                         "port detach (port_id)\n"
549                         "    Detach physical or virtual dev by port_id\n\n"
550
551                         "port config (port_id|all)"
552                         " speed (10|100|1000|10000|40000|100000|auto)"
553                         " duplex (half|full|auto)\n"
554                         "    Set speed and duplex for all ports or port_id\n\n"
555
556                         "port config all (rxq|txq|rxd|txd) (value)\n"
557                         "    Set number for rxq/txq/rxd/txd.\n\n"
558
559                         "port config all max-pkt-len (value)\n"
560                         "    Set the max packet length.\n\n"
561
562                         "port config all (crc-strip|scatter|rx-cksum|hw-vlan|hw-vlan-filter|"
563                         "hw-vlan-strip|hw-vlan-extend|drop-en)"
564                         " (on|off)\n"
565                         "    Set crc-strip/scatter/rx-checksum/hardware-vlan/drop_en"
566                         " for ports.\n\n"
567
568                         "port config all rss (all|ip|tcp|udp|sctp|ether|none)\n"
569                         "    Set the RSS mode.\n\n"
570
571                         "port config port-id rss reta (hash,queue)[,(hash,queue)]\n"
572                         "    Set the RSS redirection table.\n\n"
573
574                         "port config (port_id) dcb vt (on|off) (traffic_class)"
575                         " pfc (on|off)\n"
576                         "    Set the DCB mode.\n\n"
577
578                         "port config all burst (value)\n"
579                         "    Set the number of packets per burst.\n\n"
580
581                         "port config all (txpt|txht|txwt|rxpt|rxht|rxwt)"
582                         " (value)\n"
583                         "    Set the ring prefetch/host/writeback threshold"
584                         " for tx/rx queue.\n\n"
585
586                         "port config all (txfreet|txrst|rxfreet) (value)\n"
587                         "    Set free threshold for rx/tx, or set"
588                         " tx rs bit threshold.\n\n"
589                         "port config mtu X value\n"
590                         "    Set the MTU of port X to a given value\n\n"
591
592                         "port (port_id) (rxq|txq) (queue_id) (start|stop)\n"
593                         "    Start/stop a rx/tx queue of port X. Only take effect"
594                         " when port X is started\n\n"
595
596                         "port config (port_id|all) l2-tunnel E-tag ether-type"
597                         " (value)\n"
598                         "    Set the value of E-tag ether-type.\n\n"
599
600                         "port config (port_id|all) l2-tunnel E-tag"
601                         " (enable|disable)\n"
602                         "    Enable/disable the E-tag support.\n\n"
603                 );
604         }
605
606         if (show_all || !strcmp(res->section, "registers")) {
607
608                 cmdline_printf(
609                         cl,
610                         "\n"
611                         "Registers:\n"
612                         "----------\n\n"
613
614                         "read reg (port_id) (address)\n"
615                         "    Display value of a port register.\n\n"
616
617                         "read regfield (port_id) (address) (bit_x) (bit_y)\n"
618                         "    Display a port register bit field.\n\n"
619
620                         "read regbit (port_id) (address) (bit_x)\n"
621                         "    Display a single port register bit.\n\n"
622
623                         "write reg (port_id) (address) (value)\n"
624                         "    Set value of a port register.\n\n"
625
626                         "write regfield (port_id) (address) (bit_x) (bit_y)"
627                         " (value)\n"
628                         "    Set bit field of a port register.\n\n"
629
630                         "write regbit (port_id) (address) (bit_x) (value)\n"
631                         "    Set single bit value of a port register.\n\n"
632                 );
633         }
634         if (show_all || !strcmp(res->section, "filters")) {
635
636                 cmdline_printf(
637                         cl,
638                         "\n"
639                         "filters:\n"
640                         "--------\n\n"
641
642                         "ethertype_filter (port_id) (add|del)"
643                         " (mac_addr|mac_ignr) (mac_address) ethertype"
644                         " (ether_type) (drop|fwd) queue (queue_id)\n"
645                         "    Add/Del an ethertype filter.\n\n"
646
647                         "2tuple_filter (port_id) (add|del)"
648                         " dst_port (dst_port_value) protocol (protocol_value)"
649                         " mask (mask_value) tcp_flags (tcp_flags_value)"
650                         " priority (prio_value) queue (queue_id)\n"
651                         "    Add/Del a 2tuple filter.\n\n"
652
653                         "5tuple_filter (port_id) (add|del)"
654                         " dst_ip (dst_address) src_ip (src_address)"
655                         " dst_port (dst_port_value) src_port (src_port_value)"
656                         " protocol (protocol_value)"
657                         " mask (mask_value) tcp_flags (tcp_flags_value)"
658                         " priority (prio_value) queue (queue_id)\n"
659                         "    Add/Del a 5tuple filter.\n\n"
660
661                         "syn_filter (port_id) (add|del) priority (high|low) queue (queue_id)"
662                         "    Add/Del syn filter.\n\n"
663
664                         "flex_filter (port_id) (add|del) len (len_value)"
665                         " bytes (bytes_value) mask (mask_value)"
666                         " priority (prio_value) queue (queue_id)\n"
667                         "    Add/Del a flex filter.\n\n"
668
669                         "flow_director_filter (port_id) mode IP (add|del|update)"
670                         " flow (ipv4-other|ipv4-frag|ipv6-other|ipv6-frag)"
671                         " src (src_ip_address) dst (dst_ip_address)"
672                         " tos (tos_value) proto (proto_value) ttl (ttl_value)"
673                         " vlan (vlan_value) flexbytes (flexbytes_value)"
674                         " (drop|fwd) pf|vf(vf_id) queue (queue_id)"
675                         " fd_id (fd_id_value)\n"
676                         "    Add/Del an IP type flow director filter.\n\n"
677
678                         "flow_director_filter (port_id) mode IP (add|del|update)"
679                         " flow (ipv4-tcp|ipv4-udp|ipv6-tcp|ipv6-udp)"
680                         " src (src_ip_address) (src_port)"
681                         " dst (dst_ip_address) (dst_port)"
682                         " tos (tos_value) ttl (ttl_value)"
683                         " vlan (vlan_value) flexbytes (flexbytes_value)"
684                         " (drop|fwd) pf|vf(vf_id) queue (queue_id)"
685                         " fd_id (fd_id_value)\n"
686                         "    Add/Del an UDP/TCP type flow director filter.\n\n"
687
688                         "flow_director_filter (port_id) mode IP (add|del|update)"
689                         " flow (ipv4-sctp|ipv6-sctp)"
690                         " src (src_ip_address) (src_port)"
691                         " dst (dst_ip_address) (dst_port)"
692                         " tag (verification_tag) "
693                         " tos (tos_value) ttl (ttl_value)"
694                         " vlan (vlan_value)"
695                         " flexbytes (flexbytes_value) (drop|fwd)"
696                         " pf|vf(vf_id) queue (queue_id) fd_id (fd_id_value)\n"
697                         "    Add/Del a SCTP type flow director filter.\n\n"
698
699                         "flow_director_filter (port_id) mode IP (add|del|update)"
700                         " flow l2_payload ether (ethertype)"
701                         " flexbytes (flexbytes_value) (drop|fwd)"
702                         " pf|vf(vf_id) queue (queue_id) fd_id (fd_id_value)\n"
703                         "    Add/Del a l2 payload type flow director filter.\n\n"
704
705                         "flow_director_filter (port_id) mode MAC-VLAN (add|del|update)"
706                         " mac (mac_address) vlan (vlan_value)"
707                         " flexbytes (flexbytes_value) (drop|fwd)"
708                         " queue (queue_id) fd_id (fd_id_value)\n"
709                         "    Add/Del a MAC-VLAN flow director filter.\n\n"
710
711                         "flow_director_filter (port_id) mode Tunnel (add|del|update)"
712                         " mac (mac_address) vlan (vlan_value)"
713                         " tunnel (NVGRE|VxLAN) tunnel-id (tunnel_id_value)"
714                         " flexbytes (flexbytes_value) (drop|fwd)"
715                         " queue (queue_id) fd_id (fd_id_value)\n"
716                         "    Add/Del a Tunnel flow director filter.\n\n"
717
718                         "flush_flow_director (port_id)\n"
719                         "    Flush all flow director entries of a device.\n\n"
720
721                         "flow_director_mask (port_id) mode IP vlan (vlan_value)"
722                         " src_mask (ipv4_src) (ipv6_src) (src_port)"
723                         " dst_mask (ipv4_dst) (ipv6_dst) (dst_port)\n"
724                         "    Set flow director IP mask.\n\n"
725
726                         "flow_director_mask (port_id) mode MAC-VLAN"
727                         " vlan (vlan_value) mac (mac_value)\n"
728                         "    Set flow director MAC-VLAN mask.\n\n"
729
730                         "flow_director_mask (port_id) mode Tunnel"
731                         " vlan (vlan_value) mac (mac_value)"
732                         " tunnel-type (tunnel_type_value)"
733                         " tunnel-id (tunnel_id_value)\n"
734                         "    Set flow director Tunnel mask.\n\n"
735
736                         "flow_director_flex_mask (port_id)"
737                         " flow (none|ipv4-other|ipv4-frag|ipv4-tcp|ipv4-udp|ipv4-sctp|"
738                         "ipv6-other|ipv6-frag|ipv6-tcp|ipv6-udp|ipv6-sctp|l2_payload|all)"
739                         " (mask)\n"
740                         "    Configure mask of flex payload.\n\n"
741
742                         "flow_director_flex_payload (port_id)"
743                         " (raw|l2|l3|l4) (config)\n"
744                         "    Configure flex payload selection.\n\n"
745
746                         "get_sym_hash_ena_per_port (port_id)\n"
747                         "    get symmetric hash enable configuration per port.\n\n"
748
749                         "set_sym_hash_ena_per_port (port_id) (enable|disable)\n"
750                         "    set symmetric hash enable configuration per port"
751                         " to enable or disable.\n\n"
752
753                         "get_hash_global_config (port_id)\n"
754                         "    Get the global configurations of hash filters.\n\n"
755
756                         "set_hash_global_config (port_id) (toeplitz|simple_xor|default)"
757                         " (ipv4|ipv4-frag|ipv4-tcp|ipv4-udp|ipv4-sctp|ipv4-other|ipv6|"
758                         "ipv6-frag|ipv6-tcp|ipv6-udp|ipv6-sctp|ipv6-other|l2_payload)"
759                         " (enable|disable)\n"
760                         "    Set the global configurations of hash filters.\n\n"
761
762                         "set_hash_input_set (port_id) (ipv4|ipv4-frag|"
763                         "ipv4-tcp|ipv4-udp|ipv4-sctp|ipv4-other|ipv6|"
764                         "ipv6-frag|ipv6-tcp|ipv6-udp|ipv6-sctp|ipv6-other|"
765                         "l2_payload) (ovlan|ivlan|src-ipv4|dst-ipv4|src-ipv6|"
766                         "dst-ipv6|ipv4-tos|ipv4-proto|ipv6-tc|"
767                         "ipv6-next-header|udp-src-port|udp-dst-port|"
768                         "tcp-src-port|tcp-dst-port|sctp-src-port|"
769                         "sctp-dst-port|sctp-veri-tag|udp-key|gre-key|fld-1st|"
770                         "fld-2nd|fld-3rd|fld-4th|fld-5th|fld-6th|fld-7th|"
771                         "fld-8th|none) (select|add)\n"
772                         "    Set the input set for hash.\n\n"
773
774                         "set_fdir_input_set (port_id) "
775                         "(ipv4-frag|ipv4-tcp|ipv4-udp|ipv4-sctp|ipv4-other|"
776                         "ipv6-frag|ipv6-tcp|ipv6-udp|ipv6-sctp|ipv6-other|"
777                         "l2_payload) (ivlan|ethertype|src-ipv4|dst-ipv4|src-ipv6|"
778                         "dst-ipv6|ipv4-tos|ipv4-proto|ipv4-ttl|ipv6-tc|"
779                         "ipv6-next-header|ipv6-hop-limits|udp-src-port|"
780                         "udp-dst-port|tcp-src-port|tcp-dst-port|"
781                         "sctp-src-port|sctp-dst-port|sctp-veri-tag|none)"
782                         " (select|add)\n"
783                         "    Set the input set for FDir.\n\n"
784                 );
785         }
786 }
787
788 cmdline_parse_token_string_t cmd_help_long_help =
789         TOKEN_STRING_INITIALIZER(struct cmd_help_long_result, help, "help");
790
791 cmdline_parse_token_string_t cmd_help_long_section =
792         TOKEN_STRING_INITIALIZER(struct cmd_help_long_result, section,
793                         "all#control#display#config#"
794                         "ports#registers#filters");
795
796 cmdline_parse_inst_t cmd_help_long = {
797         .f = cmd_help_long_parsed,
798         .data = NULL,
799         .help_str = "show help",
800         .tokens = {
801                 (void *)&cmd_help_long_help,
802                 (void *)&cmd_help_long_section,
803                 NULL,
804         },
805 };
806
807
808 /* *** start/stop/close all ports *** */
809 struct cmd_operate_port_result {
810         cmdline_fixed_string_t keyword;
811         cmdline_fixed_string_t name;
812         cmdline_fixed_string_t value;
813 };
814
815 static void cmd_operate_port_parsed(void *parsed_result,
816                                 __attribute__((unused)) struct cmdline *cl,
817                                 __attribute__((unused)) void *data)
818 {
819         struct cmd_operate_port_result *res = parsed_result;
820
821         if (!strcmp(res->name, "start"))
822                 start_port(RTE_PORT_ALL);
823         else if (!strcmp(res->name, "stop"))
824                 stop_port(RTE_PORT_ALL);
825         else if (!strcmp(res->name, "close"))
826                 close_port(RTE_PORT_ALL);
827         else
828                 printf("Unknown parameter\n");
829 }
830
831 cmdline_parse_token_string_t cmd_operate_port_all_cmd =
832         TOKEN_STRING_INITIALIZER(struct cmd_operate_port_result, keyword,
833                                                                 "port");
834 cmdline_parse_token_string_t cmd_operate_port_all_port =
835         TOKEN_STRING_INITIALIZER(struct cmd_operate_port_result, name,
836                                                 "start#stop#close");
837 cmdline_parse_token_string_t cmd_operate_port_all_all =
838         TOKEN_STRING_INITIALIZER(struct cmd_operate_port_result, value, "all");
839
840 cmdline_parse_inst_t cmd_operate_port = {
841         .f = cmd_operate_port_parsed,
842         .data = NULL,
843         .help_str = "port start|stop|close all: start/stop/close all ports",
844         .tokens = {
845                 (void *)&cmd_operate_port_all_cmd,
846                 (void *)&cmd_operate_port_all_port,
847                 (void *)&cmd_operate_port_all_all,
848                 NULL,
849         },
850 };
851
852 /* *** start/stop/close specific port *** */
853 struct cmd_operate_specific_port_result {
854         cmdline_fixed_string_t keyword;
855         cmdline_fixed_string_t name;
856         uint8_t value;
857 };
858
859 static void cmd_operate_specific_port_parsed(void *parsed_result,
860                         __attribute__((unused)) struct cmdline *cl,
861                                 __attribute__((unused)) void *data)
862 {
863         struct cmd_operate_specific_port_result *res = parsed_result;
864
865         if (!strcmp(res->name, "start"))
866                 start_port(res->value);
867         else if (!strcmp(res->name, "stop"))
868                 stop_port(res->value);
869         else if (!strcmp(res->name, "close"))
870                 close_port(res->value);
871         else
872                 printf("Unknown parameter\n");
873 }
874
875 cmdline_parse_token_string_t cmd_operate_specific_port_cmd =
876         TOKEN_STRING_INITIALIZER(struct cmd_operate_specific_port_result,
877                                                         keyword, "port");
878 cmdline_parse_token_string_t cmd_operate_specific_port_port =
879         TOKEN_STRING_INITIALIZER(struct cmd_operate_specific_port_result,
880                                                 name, "start#stop#close");
881 cmdline_parse_token_num_t cmd_operate_specific_port_id =
882         TOKEN_NUM_INITIALIZER(struct cmd_operate_specific_port_result,
883                                                         value, UINT8);
884
885 cmdline_parse_inst_t cmd_operate_specific_port = {
886         .f = cmd_operate_specific_port_parsed,
887         .data = NULL,
888         .help_str = "port start|stop|close X: start/stop/close port X",
889         .tokens = {
890                 (void *)&cmd_operate_specific_port_cmd,
891                 (void *)&cmd_operate_specific_port_port,
892                 (void *)&cmd_operate_specific_port_id,
893                 NULL,
894         },
895 };
896
897 /* *** attach a specified port *** */
898 struct cmd_operate_attach_port_result {
899         cmdline_fixed_string_t port;
900         cmdline_fixed_string_t keyword;
901         cmdline_fixed_string_t identifier;
902 };
903
904 static void cmd_operate_attach_port_parsed(void *parsed_result,
905                                 __attribute__((unused)) struct cmdline *cl,
906                                 __attribute__((unused)) void *data)
907 {
908         struct cmd_operate_attach_port_result *res = parsed_result;
909
910         if (!strcmp(res->keyword, "attach"))
911                 attach_port(res->identifier);
912         else
913                 printf("Unknown parameter\n");
914 }
915
916 cmdline_parse_token_string_t cmd_operate_attach_port_port =
917         TOKEN_STRING_INITIALIZER(struct cmd_operate_attach_port_result,
918                         port, "port");
919 cmdline_parse_token_string_t cmd_operate_attach_port_keyword =
920         TOKEN_STRING_INITIALIZER(struct cmd_operate_attach_port_result,
921                         keyword, "attach");
922 cmdline_parse_token_string_t cmd_operate_attach_port_identifier =
923         TOKEN_STRING_INITIALIZER(struct cmd_operate_attach_port_result,
924                         identifier, NULL);
925
926 cmdline_parse_inst_t cmd_operate_attach_port = {
927         .f = cmd_operate_attach_port_parsed,
928         .data = NULL,
929         .help_str = "port attach identifier, "
930                 "identifier: pci address or virtual dev name",
931         .tokens = {
932                 (void *)&cmd_operate_attach_port_port,
933                 (void *)&cmd_operate_attach_port_keyword,
934                 (void *)&cmd_operate_attach_port_identifier,
935                 NULL,
936         },
937 };
938
939 /* *** detach a specified port *** */
940 struct cmd_operate_detach_port_result {
941         cmdline_fixed_string_t port;
942         cmdline_fixed_string_t keyword;
943         uint8_t port_id;
944 };
945
946 static void cmd_operate_detach_port_parsed(void *parsed_result,
947                                 __attribute__((unused)) struct cmdline *cl,
948                                 __attribute__((unused)) void *data)
949 {
950         struct cmd_operate_detach_port_result *res = parsed_result;
951
952         if (!strcmp(res->keyword, "detach"))
953                 detach_port(res->port_id);
954         else
955                 printf("Unknown parameter\n");
956 }
957
958 cmdline_parse_token_string_t cmd_operate_detach_port_port =
959         TOKEN_STRING_INITIALIZER(struct cmd_operate_detach_port_result,
960                         port, "port");
961 cmdline_parse_token_string_t cmd_operate_detach_port_keyword =
962         TOKEN_STRING_INITIALIZER(struct cmd_operate_detach_port_result,
963                         keyword, "detach");
964 cmdline_parse_token_num_t cmd_operate_detach_port_port_id =
965         TOKEN_NUM_INITIALIZER(struct cmd_operate_detach_port_result,
966                         port_id, UINT8);
967
968 cmdline_parse_inst_t cmd_operate_detach_port = {
969         .f = cmd_operate_detach_port_parsed,
970         .data = NULL,
971         .help_str = "port detach port_id",
972         .tokens = {
973                 (void *)&cmd_operate_detach_port_port,
974                 (void *)&cmd_operate_detach_port_keyword,
975                 (void *)&cmd_operate_detach_port_port_id,
976                 NULL,
977         },
978 };
979
980 /* *** configure speed for all ports *** */
981 struct cmd_config_speed_all {
982         cmdline_fixed_string_t port;
983         cmdline_fixed_string_t keyword;
984         cmdline_fixed_string_t all;
985         cmdline_fixed_string_t item1;
986         cmdline_fixed_string_t item2;
987         cmdline_fixed_string_t value1;
988         cmdline_fixed_string_t value2;
989 };
990
991 static int
992 parse_and_check_speed_duplex(char *speedstr, char *duplexstr, uint32_t *speed)
993 {
994
995         int duplex;
996
997         if (!strcmp(duplexstr, "half")) {
998                 duplex = ETH_LINK_HALF_DUPLEX;
999         } else if (!strcmp(duplexstr, "full")) {
1000                 duplex = ETH_LINK_FULL_DUPLEX;
1001         } else if (!strcmp(duplexstr, "auto")) {
1002                 duplex = ETH_LINK_FULL_DUPLEX;
1003         } else {
1004                 printf("Unknown duplex parameter\n");
1005                 return -1;
1006         }
1007
1008         if (!strcmp(speedstr, "10")) {
1009                 *speed = (duplex == ETH_LINK_HALF_DUPLEX) ?
1010                                 ETH_LINK_SPEED_10M_HD : ETH_LINK_SPEED_10M;
1011         } else if (!strcmp(speedstr, "100")) {
1012                 *speed = (duplex == ETH_LINK_HALF_DUPLEX) ?
1013                                 ETH_LINK_SPEED_100M_HD : ETH_LINK_SPEED_100M;
1014         } else {
1015                 if (duplex != ETH_LINK_FULL_DUPLEX) {
1016                         printf("Invalid speed/duplex parameters\n");
1017                         return -1;
1018                 }
1019                 if (!strcmp(speedstr, "1000")) {
1020                         *speed = ETH_LINK_SPEED_1G;
1021                 } else if (!strcmp(speedstr, "10000")) {
1022                         *speed = ETH_LINK_SPEED_10G;
1023                 } else if (!strcmp(speedstr, "40000")) {
1024                         *speed = ETH_LINK_SPEED_40G;
1025                 } else if (!strcmp(speedstr, "100000")) {
1026                         *speed = ETH_LINK_SPEED_100G;
1027                 } else if (!strcmp(speedstr, "auto")) {
1028                         *speed = ETH_LINK_SPEED_AUTONEG;
1029                 } else {
1030                         printf("Unknown speed parameter\n");
1031                         return -1;
1032                 }
1033         }
1034
1035         return 0;
1036 }
1037
1038 static void
1039 cmd_config_speed_all_parsed(void *parsed_result,
1040                         __attribute__((unused)) struct cmdline *cl,
1041                         __attribute__((unused)) void *data)
1042 {
1043         struct cmd_config_speed_all *res = parsed_result;
1044         uint32_t link_speed;
1045         portid_t pid;
1046
1047         if (!all_ports_stopped()) {
1048                 printf("Please stop all ports first\n");
1049                 return;
1050         }
1051
1052         if (parse_and_check_speed_duplex(res->value1, res->value2,
1053                         &link_speed) < 0)
1054                 return;
1055
1056         FOREACH_PORT(pid, ports) {
1057                 ports[pid].dev_conf.link_speeds = link_speed;
1058         }
1059
1060         cmd_reconfig_device_queue(RTE_PORT_ALL, 1, 1);
1061 }
1062
1063 cmdline_parse_token_string_t cmd_config_speed_all_port =
1064         TOKEN_STRING_INITIALIZER(struct cmd_config_speed_all, port, "port");
1065 cmdline_parse_token_string_t cmd_config_speed_all_keyword =
1066         TOKEN_STRING_INITIALIZER(struct cmd_config_speed_all, keyword,
1067                                                         "config");
1068 cmdline_parse_token_string_t cmd_config_speed_all_all =
1069         TOKEN_STRING_INITIALIZER(struct cmd_config_speed_all, all, "all");
1070 cmdline_parse_token_string_t cmd_config_speed_all_item1 =
1071         TOKEN_STRING_INITIALIZER(struct cmd_config_speed_all, item1, "speed");
1072 cmdline_parse_token_string_t cmd_config_speed_all_value1 =
1073         TOKEN_STRING_INITIALIZER(struct cmd_config_speed_all, value1,
1074                                                 "10#100#1000#10000#40000#100000#auto");
1075 cmdline_parse_token_string_t cmd_config_speed_all_item2 =
1076         TOKEN_STRING_INITIALIZER(struct cmd_config_speed_all, item2, "duplex");
1077 cmdline_parse_token_string_t cmd_config_speed_all_value2 =
1078         TOKEN_STRING_INITIALIZER(struct cmd_config_speed_all, value2,
1079                                                 "half#full#auto");
1080
1081 cmdline_parse_inst_t cmd_config_speed_all = {
1082         .f = cmd_config_speed_all_parsed,
1083         .data = NULL,
1084         .help_str = "port config all speed 10|100|1000|10000|40000|100000|auto duplex "
1085                                                         "half|full|auto",
1086         .tokens = {
1087                 (void *)&cmd_config_speed_all_port,
1088                 (void *)&cmd_config_speed_all_keyword,
1089                 (void *)&cmd_config_speed_all_all,
1090                 (void *)&cmd_config_speed_all_item1,
1091                 (void *)&cmd_config_speed_all_value1,
1092                 (void *)&cmd_config_speed_all_item2,
1093                 (void *)&cmd_config_speed_all_value2,
1094                 NULL,
1095         },
1096 };
1097
1098 /* *** configure speed for specific port *** */
1099 struct cmd_config_speed_specific {
1100         cmdline_fixed_string_t port;
1101         cmdline_fixed_string_t keyword;
1102         uint8_t id;
1103         cmdline_fixed_string_t item1;
1104         cmdline_fixed_string_t item2;
1105         cmdline_fixed_string_t value1;
1106         cmdline_fixed_string_t value2;
1107 };
1108
1109 static void
1110 cmd_config_speed_specific_parsed(void *parsed_result,
1111                                 __attribute__((unused)) struct cmdline *cl,
1112                                 __attribute__((unused)) void *data)
1113 {
1114         struct cmd_config_speed_specific *res = parsed_result;
1115         uint32_t link_speed;
1116
1117         if (!all_ports_stopped()) {
1118                 printf("Please stop all ports first\n");
1119                 return;
1120         }
1121
1122         if (port_id_is_invalid(res->id, ENABLED_WARN))
1123                 return;
1124
1125         if (parse_and_check_speed_duplex(res->value1, res->value2,
1126                         &link_speed) < 0)
1127                 return;
1128
1129         ports[res->id].dev_conf.link_speeds = link_speed;
1130
1131         cmd_reconfig_device_queue(RTE_PORT_ALL, 1, 1);
1132 }
1133
1134
1135 cmdline_parse_token_string_t cmd_config_speed_specific_port =
1136         TOKEN_STRING_INITIALIZER(struct cmd_config_speed_specific, port,
1137                                                                 "port");
1138 cmdline_parse_token_string_t cmd_config_speed_specific_keyword =
1139         TOKEN_STRING_INITIALIZER(struct cmd_config_speed_specific, keyword,
1140                                                                 "config");
1141 cmdline_parse_token_num_t cmd_config_speed_specific_id =
1142         TOKEN_NUM_INITIALIZER(struct cmd_config_speed_specific, id, UINT8);
1143 cmdline_parse_token_string_t cmd_config_speed_specific_item1 =
1144         TOKEN_STRING_INITIALIZER(struct cmd_config_speed_specific, item1,
1145                                                                 "speed");
1146 cmdline_parse_token_string_t cmd_config_speed_specific_value1 =
1147         TOKEN_STRING_INITIALIZER(struct cmd_config_speed_specific, value1,
1148                                                 "10#100#1000#10000#40000#100000#auto");
1149 cmdline_parse_token_string_t cmd_config_speed_specific_item2 =
1150         TOKEN_STRING_INITIALIZER(struct cmd_config_speed_specific, item2,
1151                                                                 "duplex");
1152 cmdline_parse_token_string_t cmd_config_speed_specific_value2 =
1153         TOKEN_STRING_INITIALIZER(struct cmd_config_speed_specific, value2,
1154                                                         "half#full#auto");
1155
1156 cmdline_parse_inst_t cmd_config_speed_specific = {
1157         .f = cmd_config_speed_specific_parsed,
1158         .data = NULL,
1159         .help_str = "port config X speed 10|100|1000|10000|40000|100000|auto duplex "
1160                                                         "half|full|auto",
1161         .tokens = {
1162                 (void *)&cmd_config_speed_specific_port,
1163                 (void *)&cmd_config_speed_specific_keyword,
1164                 (void *)&cmd_config_speed_specific_id,
1165                 (void *)&cmd_config_speed_specific_item1,
1166                 (void *)&cmd_config_speed_specific_value1,
1167                 (void *)&cmd_config_speed_specific_item2,
1168                 (void *)&cmd_config_speed_specific_value2,
1169                 NULL,
1170         },
1171 };
1172
1173 /* *** configure txq/rxq, txd/rxd *** */
1174 struct cmd_config_rx_tx {
1175         cmdline_fixed_string_t port;
1176         cmdline_fixed_string_t keyword;
1177         cmdline_fixed_string_t all;
1178         cmdline_fixed_string_t name;
1179         uint16_t value;
1180 };
1181
1182 static void
1183 cmd_config_rx_tx_parsed(void *parsed_result,
1184                         __attribute__((unused)) struct cmdline *cl,
1185                         __attribute__((unused)) void *data)
1186 {
1187         struct cmd_config_rx_tx *res = parsed_result;
1188
1189         if (!all_ports_stopped()) {
1190                 printf("Please stop all ports first\n");
1191                 return;
1192         }
1193         if (!strcmp(res->name, "rxq")) {
1194                 if (!res->value && !nb_txq) {
1195                         printf("Warning: Either rx or tx queues should be non zero\n");
1196                         return;
1197                 }
1198                 nb_rxq = res->value;
1199         }
1200         else if (!strcmp(res->name, "txq")) {
1201                 if (!res->value && !nb_rxq) {
1202                         printf("Warning: Either rx or tx queues should be non zero\n");
1203                         return;
1204                 }
1205                 nb_txq = res->value;
1206         }
1207         else if (!strcmp(res->name, "rxd")) {
1208                 if (res->value <= 0 || res->value > RTE_TEST_RX_DESC_MAX) {
1209                         printf("rxd %d invalid - must be > 0 && <= %d\n",
1210                                         res->value, RTE_TEST_RX_DESC_MAX);
1211                         return;
1212                 }
1213                 nb_rxd = res->value;
1214         } else if (!strcmp(res->name, "txd")) {
1215                 if (res->value <= 0 || res->value > RTE_TEST_TX_DESC_MAX) {
1216                         printf("txd %d invalid - must be > 0 && <= %d\n",
1217                                         res->value, RTE_TEST_TX_DESC_MAX);
1218                         return;
1219                 }
1220                 nb_txd = res->value;
1221         } else {
1222                 printf("Unknown parameter\n");
1223                 return;
1224         }
1225
1226         fwd_config_setup();
1227
1228         init_port_config();
1229
1230         cmd_reconfig_device_queue(RTE_PORT_ALL, 1, 1);
1231 }
1232
1233 cmdline_parse_token_string_t cmd_config_rx_tx_port =
1234         TOKEN_STRING_INITIALIZER(struct cmd_config_rx_tx, port, "port");
1235 cmdline_parse_token_string_t cmd_config_rx_tx_keyword =
1236         TOKEN_STRING_INITIALIZER(struct cmd_config_rx_tx, keyword, "config");
1237 cmdline_parse_token_string_t cmd_config_rx_tx_all =
1238         TOKEN_STRING_INITIALIZER(struct cmd_config_rx_tx, all, "all");
1239 cmdline_parse_token_string_t cmd_config_rx_tx_name =
1240         TOKEN_STRING_INITIALIZER(struct cmd_config_rx_tx, name,
1241                                                 "rxq#txq#rxd#txd");
1242 cmdline_parse_token_num_t cmd_config_rx_tx_value =
1243         TOKEN_NUM_INITIALIZER(struct cmd_config_rx_tx, value, UINT16);
1244
1245 cmdline_parse_inst_t cmd_config_rx_tx = {
1246         .f = cmd_config_rx_tx_parsed,
1247         .data = NULL,
1248         .help_str = "port config all rxq|txq|rxd|txd value",
1249         .tokens = {
1250                 (void *)&cmd_config_rx_tx_port,
1251                 (void *)&cmd_config_rx_tx_keyword,
1252                 (void *)&cmd_config_rx_tx_all,
1253                 (void *)&cmd_config_rx_tx_name,
1254                 (void *)&cmd_config_rx_tx_value,
1255                 NULL,
1256         },
1257 };
1258
1259 /* *** config max packet length *** */
1260 struct cmd_config_max_pkt_len_result {
1261         cmdline_fixed_string_t port;
1262         cmdline_fixed_string_t keyword;
1263         cmdline_fixed_string_t all;
1264         cmdline_fixed_string_t name;
1265         uint32_t value;
1266 };
1267
1268 static void
1269 cmd_config_max_pkt_len_parsed(void *parsed_result,
1270                                 __attribute__((unused)) struct cmdline *cl,
1271                                 __attribute__((unused)) void *data)
1272 {
1273         struct cmd_config_max_pkt_len_result *res = parsed_result;
1274
1275         if (!all_ports_stopped()) {
1276                 printf("Please stop all ports first\n");
1277                 return;
1278         }
1279
1280         if (!strcmp(res->name, "max-pkt-len")) {
1281                 if (res->value < ETHER_MIN_LEN) {
1282                         printf("max-pkt-len can not be less than %d\n",
1283                                                         ETHER_MIN_LEN);
1284                         return;
1285                 }
1286                 if (res->value == rx_mode.max_rx_pkt_len)
1287                         return;
1288
1289                 rx_mode.max_rx_pkt_len = res->value;
1290                 if (res->value > ETHER_MAX_LEN)
1291                         rx_mode.jumbo_frame = 1;
1292                 else
1293                         rx_mode.jumbo_frame = 0;
1294         } else {
1295                 printf("Unknown parameter\n");
1296                 return;
1297         }
1298
1299         init_port_config();
1300
1301         cmd_reconfig_device_queue(RTE_PORT_ALL, 1, 1);
1302 }
1303
1304 cmdline_parse_token_string_t cmd_config_max_pkt_len_port =
1305         TOKEN_STRING_INITIALIZER(struct cmd_config_max_pkt_len_result, port,
1306                                                                 "port");
1307 cmdline_parse_token_string_t cmd_config_max_pkt_len_keyword =
1308         TOKEN_STRING_INITIALIZER(struct cmd_config_max_pkt_len_result, keyword,
1309                                                                 "config");
1310 cmdline_parse_token_string_t cmd_config_max_pkt_len_all =
1311         TOKEN_STRING_INITIALIZER(struct cmd_config_max_pkt_len_result, all,
1312                                                                 "all");
1313 cmdline_parse_token_string_t cmd_config_max_pkt_len_name =
1314         TOKEN_STRING_INITIALIZER(struct cmd_config_max_pkt_len_result, name,
1315                                                                 "max-pkt-len");
1316 cmdline_parse_token_num_t cmd_config_max_pkt_len_value =
1317         TOKEN_NUM_INITIALIZER(struct cmd_config_max_pkt_len_result, value,
1318                                                                 UINT32);
1319
1320 cmdline_parse_inst_t cmd_config_max_pkt_len = {
1321         .f = cmd_config_max_pkt_len_parsed,
1322         .data = NULL,
1323         .help_str = "port config all max-pkt-len value",
1324         .tokens = {
1325                 (void *)&cmd_config_max_pkt_len_port,
1326                 (void *)&cmd_config_max_pkt_len_keyword,
1327                 (void *)&cmd_config_max_pkt_len_all,
1328                 (void *)&cmd_config_max_pkt_len_name,
1329                 (void *)&cmd_config_max_pkt_len_value,
1330                 NULL,
1331         },
1332 };
1333
1334 /* *** configure port MTU *** */
1335 struct cmd_config_mtu_result {
1336         cmdline_fixed_string_t port;
1337         cmdline_fixed_string_t keyword;
1338         cmdline_fixed_string_t mtu;
1339         uint8_t port_id;
1340         uint16_t value;
1341 };
1342
1343 static void
1344 cmd_config_mtu_parsed(void *parsed_result,
1345                       __attribute__((unused)) struct cmdline *cl,
1346                       __attribute__((unused)) void *data)
1347 {
1348         struct cmd_config_mtu_result *res = parsed_result;
1349
1350         if (res->value < ETHER_MIN_LEN) {
1351                 printf("mtu cannot be less than %d\n", ETHER_MIN_LEN);
1352                 return;
1353         }
1354         port_mtu_set(res->port_id, res->value);
1355 }
1356
1357 cmdline_parse_token_string_t cmd_config_mtu_port =
1358         TOKEN_STRING_INITIALIZER(struct cmd_config_mtu_result, port,
1359                                  "port");
1360 cmdline_parse_token_string_t cmd_config_mtu_keyword =
1361         TOKEN_STRING_INITIALIZER(struct cmd_config_mtu_result, keyword,
1362                                  "config");
1363 cmdline_parse_token_string_t cmd_config_mtu_mtu =
1364         TOKEN_STRING_INITIALIZER(struct cmd_config_mtu_result, keyword,
1365                                  "mtu");
1366 cmdline_parse_token_num_t cmd_config_mtu_port_id =
1367         TOKEN_NUM_INITIALIZER(struct cmd_config_mtu_result, port_id, UINT8);
1368 cmdline_parse_token_num_t cmd_config_mtu_value =
1369         TOKEN_NUM_INITIALIZER(struct cmd_config_mtu_result, value, UINT16);
1370
1371 cmdline_parse_inst_t cmd_config_mtu = {
1372         .f = cmd_config_mtu_parsed,
1373         .data = NULL,
1374         .help_str = "port config mtu value",
1375         .tokens = {
1376                 (void *)&cmd_config_mtu_port,
1377                 (void *)&cmd_config_mtu_keyword,
1378                 (void *)&cmd_config_mtu_mtu,
1379                 (void *)&cmd_config_mtu_port_id,
1380                 (void *)&cmd_config_mtu_value,
1381                 NULL,
1382         },
1383 };
1384
1385 /* *** configure rx mode *** */
1386 struct cmd_config_rx_mode_flag {
1387         cmdline_fixed_string_t port;
1388         cmdline_fixed_string_t keyword;
1389         cmdline_fixed_string_t all;
1390         cmdline_fixed_string_t name;
1391         cmdline_fixed_string_t value;
1392 };
1393
1394 static void
1395 cmd_config_rx_mode_flag_parsed(void *parsed_result,
1396                                 __attribute__((unused)) struct cmdline *cl,
1397                                 __attribute__((unused)) void *data)
1398 {
1399         struct cmd_config_rx_mode_flag *res = parsed_result;
1400
1401         if (!all_ports_stopped()) {
1402                 printf("Please stop all ports first\n");
1403                 return;
1404         }
1405
1406         if (!strcmp(res->name, "crc-strip")) {
1407                 if (!strcmp(res->value, "on"))
1408                         rx_mode.hw_strip_crc = 1;
1409                 else if (!strcmp(res->value, "off"))
1410                         rx_mode.hw_strip_crc = 0;
1411                 else {
1412                         printf("Unknown parameter\n");
1413                         return;
1414                 }
1415         } else if (!strcmp(res->name, "scatter")) {
1416                 if (!strcmp(res->value, "on"))
1417                         rx_mode.enable_scatter = 1;
1418                 else if (!strcmp(res->value, "off"))
1419                         rx_mode.enable_scatter = 0;
1420                 else {
1421                         printf("Unknown parameter\n");
1422                         return;
1423                 }
1424         } else if (!strcmp(res->name, "rx-cksum")) {
1425                 if (!strcmp(res->value, "on"))
1426                         rx_mode.hw_ip_checksum = 1;
1427                 else if (!strcmp(res->value, "off"))
1428                         rx_mode.hw_ip_checksum = 0;
1429                 else {
1430                         printf("Unknown parameter\n");
1431                         return;
1432                 }
1433         } else if (!strcmp(res->name, "hw-vlan")) {
1434                 if (!strcmp(res->value, "on")) {
1435                         rx_mode.hw_vlan_filter = 1;
1436                         rx_mode.hw_vlan_strip  = 1;
1437                 }
1438                 else if (!strcmp(res->value, "off")) {
1439                         rx_mode.hw_vlan_filter = 0;
1440                         rx_mode.hw_vlan_strip  = 0;
1441                 }
1442                 else {
1443                         printf("Unknown parameter\n");
1444                         return;
1445                 }
1446         } else if (!strcmp(res->name, "hw-vlan-filter")) {
1447                 if (!strcmp(res->value, "on"))
1448                         rx_mode.hw_vlan_filter = 1;
1449                 else if (!strcmp(res->value, "off"))
1450                         rx_mode.hw_vlan_filter = 0;
1451                 else {
1452                         printf("Unknown parameter\n");
1453                         return;
1454                 }
1455         } else if (!strcmp(res->name, "hw-vlan-strip")) {
1456                 if (!strcmp(res->value, "on"))
1457                         rx_mode.hw_vlan_strip  = 1;
1458                 else if (!strcmp(res->value, "off"))
1459                         rx_mode.hw_vlan_strip  = 0;
1460                 else {
1461                         printf("Unknown parameter\n");
1462                         return;
1463                 }
1464         } else if (!strcmp(res->name, "hw-vlan-extend")) {
1465                 if (!strcmp(res->value, "on"))
1466                         rx_mode.hw_vlan_extend = 1;
1467                 else if (!strcmp(res->value, "off"))
1468                         rx_mode.hw_vlan_extend = 0;
1469                 else {
1470                         printf("Unknown parameter\n");
1471                         return;
1472                 }
1473         } else if (!strcmp(res->name, "drop-en")) {
1474                 if (!strcmp(res->value, "on"))
1475                         rx_drop_en = 1;
1476                 else if (!strcmp(res->value, "off"))
1477                         rx_drop_en = 0;
1478                 else {
1479                         printf("Unknown parameter\n");
1480                         return;
1481                 }
1482         } else {
1483                 printf("Unknown parameter\n");
1484                 return;
1485         }
1486
1487         init_port_config();
1488
1489         cmd_reconfig_device_queue(RTE_PORT_ALL, 1, 1);
1490 }
1491
1492 cmdline_parse_token_string_t cmd_config_rx_mode_flag_port =
1493         TOKEN_STRING_INITIALIZER(struct cmd_config_rx_mode_flag, port, "port");
1494 cmdline_parse_token_string_t cmd_config_rx_mode_flag_keyword =
1495         TOKEN_STRING_INITIALIZER(struct cmd_config_rx_mode_flag, keyword,
1496                                                                 "config");
1497 cmdline_parse_token_string_t cmd_config_rx_mode_flag_all =
1498         TOKEN_STRING_INITIALIZER(struct cmd_config_rx_mode_flag, all, "all");
1499 cmdline_parse_token_string_t cmd_config_rx_mode_flag_name =
1500         TOKEN_STRING_INITIALIZER(struct cmd_config_rx_mode_flag, name,
1501                                         "crc-strip#scatter#rx-cksum#hw-vlan#"
1502                                         "hw-vlan-filter#hw-vlan-strip#hw-vlan-extend");
1503 cmdline_parse_token_string_t cmd_config_rx_mode_flag_value =
1504         TOKEN_STRING_INITIALIZER(struct cmd_config_rx_mode_flag, value,
1505                                                         "on#off");
1506
1507 cmdline_parse_inst_t cmd_config_rx_mode_flag = {
1508         .f = cmd_config_rx_mode_flag_parsed,
1509         .data = NULL,
1510         .help_str = "port config all crc-strip|scatter|rx-cksum|hw-vlan|"
1511                 "hw-vlan-filter|hw-vlan-strip|hw-vlan-extend on|off",
1512         .tokens = {
1513                 (void *)&cmd_config_rx_mode_flag_port,
1514                 (void *)&cmd_config_rx_mode_flag_keyword,
1515                 (void *)&cmd_config_rx_mode_flag_all,
1516                 (void *)&cmd_config_rx_mode_flag_name,
1517                 (void *)&cmd_config_rx_mode_flag_value,
1518                 NULL,
1519         },
1520 };
1521
1522 /* *** configure rss *** */
1523 struct cmd_config_rss {
1524         cmdline_fixed_string_t port;
1525         cmdline_fixed_string_t keyword;
1526         cmdline_fixed_string_t all;
1527         cmdline_fixed_string_t name;
1528         cmdline_fixed_string_t value;
1529 };
1530
1531 static void
1532 cmd_config_rss_parsed(void *parsed_result,
1533                         __attribute__((unused)) struct cmdline *cl,
1534                         __attribute__((unused)) void *data)
1535 {
1536         struct cmd_config_rss *res = parsed_result;
1537         struct rte_eth_rss_conf rss_conf;
1538         uint8_t i;
1539
1540         if (!strcmp(res->value, "all"))
1541                 rss_conf.rss_hf = ETH_RSS_IP | ETH_RSS_TCP |
1542                                 ETH_RSS_UDP | ETH_RSS_SCTP |
1543                                         ETH_RSS_L2_PAYLOAD;
1544         else if (!strcmp(res->value, "ip"))
1545                 rss_conf.rss_hf = ETH_RSS_IP;
1546         else if (!strcmp(res->value, "udp"))
1547                 rss_conf.rss_hf = ETH_RSS_UDP;
1548         else if (!strcmp(res->value, "tcp"))
1549                 rss_conf.rss_hf = ETH_RSS_TCP;
1550         else if (!strcmp(res->value, "sctp"))
1551                 rss_conf.rss_hf = ETH_RSS_SCTP;
1552         else if (!strcmp(res->value, "ether"))
1553                 rss_conf.rss_hf = ETH_RSS_L2_PAYLOAD;
1554         else if (!strcmp(res->value, "none"))
1555                 rss_conf.rss_hf = 0;
1556         else {
1557                 printf("Unknown parameter\n");
1558                 return;
1559         }
1560         rss_conf.rss_key = NULL;
1561         for (i = 0; i < rte_eth_dev_count(); i++)
1562                 rte_eth_dev_rss_hash_update(i, &rss_conf);
1563 }
1564
1565 cmdline_parse_token_string_t cmd_config_rss_port =
1566         TOKEN_STRING_INITIALIZER(struct cmd_config_rss, port, "port");
1567 cmdline_parse_token_string_t cmd_config_rss_keyword =
1568         TOKEN_STRING_INITIALIZER(struct cmd_config_rss, keyword, "config");
1569 cmdline_parse_token_string_t cmd_config_rss_all =
1570         TOKEN_STRING_INITIALIZER(struct cmd_config_rss, all, "all");
1571 cmdline_parse_token_string_t cmd_config_rss_name =
1572         TOKEN_STRING_INITIALIZER(struct cmd_config_rss, name, "rss");
1573 cmdline_parse_token_string_t cmd_config_rss_value =
1574         TOKEN_STRING_INITIALIZER(struct cmd_config_rss, value,
1575                 "all#ip#tcp#udp#sctp#ether#none");
1576
1577 cmdline_parse_inst_t cmd_config_rss = {
1578         .f = cmd_config_rss_parsed,
1579         .data = NULL,
1580         .help_str = "port config all rss all|ip|tcp|udp|sctp|ether|none",
1581         .tokens = {
1582                 (void *)&cmd_config_rss_port,
1583                 (void *)&cmd_config_rss_keyword,
1584                 (void *)&cmd_config_rss_all,
1585                 (void *)&cmd_config_rss_name,
1586                 (void *)&cmd_config_rss_value,
1587                 NULL,
1588         },
1589 };
1590
1591 /* *** configure rss hash key *** */
1592 struct cmd_config_rss_hash_key {
1593         cmdline_fixed_string_t port;
1594         cmdline_fixed_string_t config;
1595         uint8_t port_id;
1596         cmdline_fixed_string_t rss_hash_key;
1597         cmdline_fixed_string_t rss_type;
1598         cmdline_fixed_string_t key;
1599 };
1600
1601 #define RSS_HASH_KEY_LENGTH 40
1602 static uint8_t
1603 hexa_digit_to_value(char hexa_digit)
1604 {
1605         if ((hexa_digit >= '0') && (hexa_digit <= '9'))
1606                 return (uint8_t) (hexa_digit - '0');
1607         if ((hexa_digit >= 'a') && (hexa_digit <= 'f'))
1608                 return (uint8_t) ((hexa_digit - 'a') + 10);
1609         if ((hexa_digit >= 'A') && (hexa_digit <= 'F'))
1610                 return (uint8_t) ((hexa_digit - 'A') + 10);
1611         /* Invalid hexa digit */
1612         return 0xFF;
1613 }
1614
1615 static uint8_t
1616 parse_and_check_key_hexa_digit(char *key, int idx)
1617 {
1618         uint8_t hexa_v;
1619
1620         hexa_v = hexa_digit_to_value(key[idx]);
1621         if (hexa_v == 0xFF)
1622                 printf("invalid key: character %c at position %d is not a "
1623                        "valid hexa digit\n", key[idx], idx);
1624         return hexa_v;
1625 }
1626
1627 static void
1628 cmd_config_rss_hash_key_parsed(void *parsed_result,
1629                                __attribute__((unused)) struct cmdline *cl,
1630                                __attribute__((unused)) void *data)
1631 {
1632         struct cmd_config_rss_hash_key *res = parsed_result;
1633         uint8_t hash_key[RSS_HASH_KEY_LENGTH];
1634         uint8_t xdgt0;
1635         uint8_t xdgt1;
1636         int i;
1637
1638         /* Check the length of the RSS hash key */
1639         if (strlen(res->key) != (RSS_HASH_KEY_LENGTH * 2)) {
1640                 printf("key length: %d invalid - key must be a string of %d"
1641                        "hexa-decimal numbers\n", (int) strlen(res->key),
1642                        RSS_HASH_KEY_LENGTH * 2);
1643                 return;
1644         }
1645         /* Translate RSS hash key into binary representation */
1646         for (i = 0; i < RSS_HASH_KEY_LENGTH; i++) {
1647                 xdgt0 = parse_and_check_key_hexa_digit(res->key, (i * 2));
1648                 if (xdgt0 == 0xFF)
1649                         return;
1650                 xdgt1 = parse_and_check_key_hexa_digit(res->key, (i * 2) + 1);
1651                 if (xdgt1 == 0xFF)
1652                         return;
1653                 hash_key[i] = (uint8_t) ((xdgt0 * 16) + xdgt1);
1654         }
1655         port_rss_hash_key_update(res->port_id, res->rss_type, hash_key,
1656                                  RSS_HASH_KEY_LENGTH);
1657 }
1658
1659 cmdline_parse_token_string_t cmd_config_rss_hash_key_port =
1660         TOKEN_STRING_INITIALIZER(struct cmd_config_rss_hash_key, port, "port");
1661 cmdline_parse_token_string_t cmd_config_rss_hash_key_config =
1662         TOKEN_STRING_INITIALIZER(struct cmd_config_rss_hash_key, config,
1663                                  "config");
1664 cmdline_parse_token_num_t cmd_config_rss_hash_key_port_id =
1665         TOKEN_NUM_INITIALIZER(struct cmd_config_rss_hash_key, port_id, UINT8);
1666 cmdline_parse_token_string_t cmd_config_rss_hash_key_rss_hash_key =
1667         TOKEN_STRING_INITIALIZER(struct cmd_config_rss_hash_key,
1668                                  rss_hash_key, "rss-hash-key");
1669 cmdline_parse_token_string_t cmd_config_rss_hash_key_rss_type =
1670         TOKEN_STRING_INITIALIZER(struct cmd_config_rss_hash_key, rss_type,
1671                                  "ipv4#ipv4-frag#ipv4-tcp#ipv4-udp#ipv4-sctp#"
1672                                  "ipv4-other#ipv6#ipv6-frag#ipv6-tcp#ipv6-udp#"
1673                                  "ipv6-sctp#ipv6-other#l2-payload#ipv6-ex#"
1674                                  "ipv6-tcp-ex#ipv6-udp-ex");
1675 cmdline_parse_token_string_t cmd_config_rss_hash_key_value =
1676         TOKEN_STRING_INITIALIZER(struct cmd_config_rss_hash_key, key, NULL);
1677
1678 cmdline_parse_inst_t cmd_config_rss_hash_key = {
1679         .f = cmd_config_rss_hash_key_parsed,
1680         .data = NULL,
1681         .help_str =
1682                 "port config X rss-hash-key ipv4|ipv4-frag|ipv4-tcp|ipv4-udp|"
1683                 "ipv4-sctp|ipv4-other|ipv6|ipv6-frag|ipv6-tcp|ipv6-udp|"
1684                 "ipv6-sctp|ipv6-other|l2-payload|"
1685                 "ipv6-ex|ipv6-tcp-ex|ipv6-udp-ex 80 hexa digits\n",
1686         .tokens = {
1687                 (void *)&cmd_config_rss_hash_key_port,
1688                 (void *)&cmd_config_rss_hash_key_config,
1689                 (void *)&cmd_config_rss_hash_key_port_id,
1690                 (void *)&cmd_config_rss_hash_key_rss_hash_key,
1691                 (void *)&cmd_config_rss_hash_key_rss_type,
1692                 (void *)&cmd_config_rss_hash_key_value,
1693                 NULL,
1694         },
1695 };
1696
1697 /* *** configure port rxq/txq start/stop *** */
1698 struct cmd_config_rxtx_queue {
1699         cmdline_fixed_string_t port;
1700         uint8_t portid;
1701         cmdline_fixed_string_t rxtxq;
1702         uint16_t qid;
1703         cmdline_fixed_string_t opname;
1704 };
1705
1706 static void
1707 cmd_config_rxtx_queue_parsed(void *parsed_result,
1708                         __attribute__((unused)) struct cmdline *cl,
1709                         __attribute__((unused)) void *data)
1710 {
1711         struct cmd_config_rxtx_queue *res = parsed_result;
1712         uint8_t isrx;
1713         uint8_t isstart;
1714         int ret = 0;
1715
1716         if (test_done == 0) {
1717                 printf("Please stop forwarding first\n");
1718                 return;
1719         }
1720
1721         if (port_id_is_invalid(res->portid, ENABLED_WARN))
1722                 return;
1723
1724         if (port_is_started(res->portid) != 1) {
1725                 printf("Please start port %u first\n", res->portid);
1726                 return;
1727         }
1728
1729         if (!strcmp(res->rxtxq, "rxq"))
1730                 isrx = 1;
1731         else if (!strcmp(res->rxtxq, "txq"))
1732                 isrx = 0;
1733         else {
1734                 printf("Unknown parameter\n");
1735                 return;
1736         }
1737
1738         if (isrx && rx_queue_id_is_invalid(res->qid))
1739                 return;
1740         else if (!isrx && tx_queue_id_is_invalid(res->qid))
1741                 return;
1742
1743         if (!strcmp(res->opname, "start"))
1744                 isstart = 1;
1745         else if (!strcmp(res->opname, "stop"))
1746                 isstart = 0;
1747         else {
1748                 printf("Unknown parameter\n");
1749                 return;
1750         }
1751
1752         if (isstart && isrx)
1753                 ret = rte_eth_dev_rx_queue_start(res->portid, res->qid);
1754         else if (!isstart && isrx)
1755                 ret = rte_eth_dev_rx_queue_stop(res->portid, res->qid);
1756         else if (isstart && !isrx)
1757                 ret = rte_eth_dev_tx_queue_start(res->portid, res->qid);
1758         else
1759                 ret = rte_eth_dev_tx_queue_stop(res->portid, res->qid);
1760
1761         if (ret == -ENOTSUP)
1762                 printf("Function not supported in PMD driver\n");
1763 }
1764
1765 cmdline_parse_token_string_t cmd_config_rxtx_queue_port =
1766         TOKEN_STRING_INITIALIZER(struct cmd_config_rxtx_queue, port, "port");
1767 cmdline_parse_token_num_t cmd_config_rxtx_queue_portid =
1768         TOKEN_NUM_INITIALIZER(struct cmd_config_rxtx_queue, portid, UINT8);
1769 cmdline_parse_token_string_t cmd_config_rxtx_queue_rxtxq =
1770         TOKEN_STRING_INITIALIZER(struct cmd_config_rxtx_queue, rxtxq, "rxq#txq");
1771 cmdline_parse_token_num_t cmd_config_rxtx_queue_qid =
1772         TOKEN_NUM_INITIALIZER(struct cmd_config_rxtx_queue, qid, UINT16);
1773 cmdline_parse_token_string_t cmd_config_rxtx_queue_opname =
1774         TOKEN_STRING_INITIALIZER(struct cmd_config_rxtx_queue, opname,
1775                                                 "start#stop");
1776
1777 cmdline_parse_inst_t cmd_config_rxtx_queue = {
1778         .f = cmd_config_rxtx_queue_parsed,
1779         .data = NULL,
1780         .help_str = "port X rxq|txq ID start|stop",
1781         .tokens = {
1782                 (void *)&cmd_config_speed_all_port,
1783                 (void *)&cmd_config_rxtx_queue_portid,
1784                 (void *)&cmd_config_rxtx_queue_rxtxq,
1785                 (void *)&cmd_config_rxtx_queue_qid,
1786                 (void *)&cmd_config_rxtx_queue_opname,
1787                 NULL,
1788         },
1789 };
1790
1791 /* *** Configure RSS RETA *** */
1792 struct cmd_config_rss_reta {
1793         cmdline_fixed_string_t port;
1794         cmdline_fixed_string_t keyword;
1795         uint8_t port_id;
1796         cmdline_fixed_string_t name;
1797         cmdline_fixed_string_t list_name;
1798         cmdline_fixed_string_t list_of_items;
1799 };
1800
1801 static int
1802 parse_reta_config(const char *str,
1803                   struct rte_eth_rss_reta_entry64 *reta_conf,
1804                   uint16_t nb_entries)
1805 {
1806         int i;
1807         unsigned size;
1808         uint16_t hash_index, idx, shift;
1809         uint16_t nb_queue;
1810         char s[256];
1811         const char *p, *p0 = str;
1812         char *end;
1813         enum fieldnames {
1814                 FLD_HASH_INDEX = 0,
1815                 FLD_QUEUE,
1816                 _NUM_FLD
1817         };
1818         unsigned long int_fld[_NUM_FLD];
1819         char *str_fld[_NUM_FLD];
1820
1821         while ((p = strchr(p0,'(')) != NULL) {
1822                 ++p;
1823                 if((p0 = strchr(p,')')) == NULL)
1824                         return -1;
1825
1826                 size = p0 - p;
1827                 if(size >= sizeof(s))
1828                         return -1;
1829
1830                 snprintf(s, sizeof(s), "%.*s", size, p);
1831                 if (rte_strsplit(s, sizeof(s), str_fld, _NUM_FLD, ',') != _NUM_FLD)
1832                         return -1;
1833                 for (i = 0; i < _NUM_FLD; i++) {
1834                         errno = 0;
1835                         int_fld[i] = strtoul(str_fld[i], &end, 0);
1836                         if (errno != 0 || end == str_fld[i] ||
1837                                         int_fld[i] > 65535)
1838                                 return -1;
1839                 }
1840
1841                 hash_index = (uint16_t)int_fld[FLD_HASH_INDEX];
1842                 nb_queue = (uint16_t)int_fld[FLD_QUEUE];
1843
1844                 if (hash_index >= nb_entries) {
1845                         printf("Invalid RETA hash index=%d\n", hash_index);
1846                         return -1;
1847                 }
1848
1849                 idx = hash_index / RTE_RETA_GROUP_SIZE;
1850                 shift = hash_index % RTE_RETA_GROUP_SIZE;
1851                 reta_conf[idx].mask |= (1ULL << shift);
1852                 reta_conf[idx].reta[shift] = nb_queue;
1853         }
1854
1855         return 0;
1856 }
1857
1858 static void
1859 cmd_set_rss_reta_parsed(void *parsed_result,
1860                         __attribute__((unused)) struct cmdline *cl,
1861                         __attribute__((unused)) void *data)
1862 {
1863         int ret;
1864         struct rte_eth_dev_info dev_info;
1865         struct rte_eth_rss_reta_entry64 reta_conf[8];
1866         struct cmd_config_rss_reta *res = parsed_result;
1867
1868         memset(&dev_info, 0, sizeof(dev_info));
1869         rte_eth_dev_info_get(res->port_id, &dev_info);
1870         if (dev_info.reta_size == 0) {
1871                 printf("Redirection table size is 0 which is "
1872                                         "invalid for RSS\n");
1873                 return;
1874         } else
1875                 printf("The reta size of port %d is %u\n",
1876                         res->port_id, dev_info.reta_size);
1877         if (dev_info.reta_size > ETH_RSS_RETA_SIZE_512) {
1878                 printf("Currently do not support more than %u entries of "
1879                         "redirection table\n", ETH_RSS_RETA_SIZE_512);
1880                 return;
1881         }
1882
1883         memset(reta_conf, 0, sizeof(reta_conf));
1884         if (!strcmp(res->list_name, "reta")) {
1885                 if (parse_reta_config(res->list_of_items, reta_conf,
1886                                                 dev_info.reta_size)) {
1887                         printf("Invalid RSS Redirection Table "
1888                                         "config entered\n");
1889                         return;
1890                 }
1891                 ret = rte_eth_dev_rss_reta_update(res->port_id,
1892                                 reta_conf, dev_info.reta_size);
1893                 if (ret != 0)
1894                         printf("Bad redirection table parameter, "
1895                                         "return code = %d \n", ret);
1896         }
1897 }
1898
1899 cmdline_parse_token_string_t cmd_config_rss_reta_port =
1900         TOKEN_STRING_INITIALIZER(struct cmd_config_rss_reta, port, "port");
1901 cmdline_parse_token_string_t cmd_config_rss_reta_keyword =
1902         TOKEN_STRING_INITIALIZER(struct cmd_config_rss_reta, keyword, "config");
1903 cmdline_parse_token_num_t cmd_config_rss_reta_port_id =
1904         TOKEN_NUM_INITIALIZER(struct cmd_config_rss_reta, port_id, UINT8);
1905 cmdline_parse_token_string_t cmd_config_rss_reta_name =
1906         TOKEN_STRING_INITIALIZER(struct cmd_config_rss_reta, name, "rss");
1907 cmdline_parse_token_string_t cmd_config_rss_reta_list_name =
1908         TOKEN_STRING_INITIALIZER(struct cmd_config_rss_reta, list_name, "reta");
1909 cmdline_parse_token_string_t cmd_config_rss_reta_list_of_items =
1910         TOKEN_STRING_INITIALIZER(struct cmd_config_rss_reta, list_of_items,
1911                                  NULL);
1912 cmdline_parse_inst_t cmd_config_rss_reta = {
1913         .f = cmd_set_rss_reta_parsed,
1914         .data = NULL,
1915         .help_str = "port config X rss reta (hash,queue)[,(hash,queue)]",
1916         .tokens = {
1917                 (void *)&cmd_config_rss_reta_port,
1918                 (void *)&cmd_config_rss_reta_keyword,
1919                 (void *)&cmd_config_rss_reta_port_id,
1920                 (void *)&cmd_config_rss_reta_name,
1921                 (void *)&cmd_config_rss_reta_list_name,
1922                 (void *)&cmd_config_rss_reta_list_of_items,
1923                 NULL,
1924         },
1925 };
1926
1927 /* *** SHOW PORT RETA INFO *** */
1928 struct cmd_showport_reta {
1929         cmdline_fixed_string_t show;
1930         cmdline_fixed_string_t port;
1931         uint8_t port_id;
1932         cmdline_fixed_string_t rss;
1933         cmdline_fixed_string_t reta;
1934         uint16_t size;
1935         cmdline_fixed_string_t list_of_items;
1936 };
1937
1938 static int
1939 showport_parse_reta_config(struct rte_eth_rss_reta_entry64 *conf,
1940                            uint16_t nb_entries,
1941                            char *str)
1942 {
1943         uint32_t size;
1944         const char *p, *p0 = str;
1945         char s[256];
1946         char *end;
1947         char *str_fld[8];
1948         uint16_t i, num = nb_entries / RTE_RETA_GROUP_SIZE;
1949         int ret;
1950
1951         p = strchr(p0, '(');
1952         if (p == NULL)
1953                 return -1;
1954         p++;
1955         p0 = strchr(p, ')');
1956         if (p0 == NULL)
1957                 return -1;
1958         size = p0 - p;
1959         if (size >= sizeof(s)) {
1960                 printf("The string size exceeds the internal buffer size\n");
1961                 return -1;
1962         }
1963         snprintf(s, sizeof(s), "%.*s", size, p);
1964         ret = rte_strsplit(s, sizeof(s), str_fld, num, ',');
1965         if (ret <= 0 || ret != num) {
1966                 printf("The bits of masks do not match the number of "
1967                                         "reta entries: %u\n", num);
1968                 return -1;
1969         }
1970         for (i = 0; i < ret; i++)
1971                 conf[i].mask = (uint64_t)strtoul(str_fld[i], &end, 0);
1972
1973         return 0;
1974 }
1975
1976 static void
1977 cmd_showport_reta_parsed(void *parsed_result,
1978                          __attribute__((unused)) struct cmdline *cl,
1979                          __attribute__((unused)) void *data)
1980 {
1981         struct cmd_showport_reta *res = parsed_result;
1982         struct rte_eth_rss_reta_entry64 reta_conf[8];
1983         struct rte_eth_dev_info dev_info;
1984
1985         memset(&dev_info, 0, sizeof(dev_info));
1986         rte_eth_dev_info_get(res->port_id, &dev_info);
1987         if (dev_info.reta_size == 0 || res->size != dev_info.reta_size ||
1988                                 res->size > ETH_RSS_RETA_SIZE_512) {
1989                 printf("Invalid redirection table size: %u\n", res->size);
1990                 return;
1991         }
1992
1993         memset(reta_conf, 0, sizeof(reta_conf));
1994         if (showport_parse_reta_config(reta_conf, res->size,
1995                                 res->list_of_items) < 0) {
1996                 printf("Invalid string: %s for reta masks\n",
1997                                         res->list_of_items);
1998                 return;
1999         }
2000         port_rss_reta_info(res->port_id, reta_conf, res->size);
2001 }
2002
2003 cmdline_parse_token_string_t cmd_showport_reta_show =
2004         TOKEN_STRING_INITIALIZER(struct  cmd_showport_reta, show, "show");
2005 cmdline_parse_token_string_t cmd_showport_reta_port =
2006         TOKEN_STRING_INITIALIZER(struct  cmd_showport_reta, port, "port");
2007 cmdline_parse_token_num_t cmd_showport_reta_port_id =
2008         TOKEN_NUM_INITIALIZER(struct cmd_showport_reta, port_id, UINT8);
2009 cmdline_parse_token_string_t cmd_showport_reta_rss =
2010         TOKEN_STRING_INITIALIZER(struct cmd_showport_reta, rss, "rss");
2011 cmdline_parse_token_string_t cmd_showport_reta_reta =
2012         TOKEN_STRING_INITIALIZER(struct cmd_showport_reta, reta, "reta");
2013 cmdline_parse_token_num_t cmd_showport_reta_size =
2014         TOKEN_NUM_INITIALIZER(struct cmd_showport_reta, size, UINT16);
2015 cmdline_parse_token_string_t cmd_showport_reta_list_of_items =
2016         TOKEN_STRING_INITIALIZER(struct cmd_showport_reta,
2017                                         list_of_items, NULL);
2018
2019 cmdline_parse_inst_t cmd_showport_reta = {
2020         .f = cmd_showport_reta_parsed,
2021         .data = NULL,
2022         .help_str = "show port X rss reta (size) (mask0,mask1,...)",
2023         .tokens = {
2024                 (void *)&cmd_showport_reta_show,
2025                 (void *)&cmd_showport_reta_port,
2026                 (void *)&cmd_showport_reta_port_id,
2027                 (void *)&cmd_showport_reta_rss,
2028                 (void *)&cmd_showport_reta_reta,
2029                 (void *)&cmd_showport_reta_size,
2030                 (void *)&cmd_showport_reta_list_of_items,
2031                 NULL,
2032         },
2033 };
2034
2035 /* *** Show RSS hash configuration *** */
2036 struct cmd_showport_rss_hash {
2037         cmdline_fixed_string_t show;
2038         cmdline_fixed_string_t port;
2039         uint8_t port_id;
2040         cmdline_fixed_string_t rss_hash;
2041         cmdline_fixed_string_t rss_type;
2042         cmdline_fixed_string_t key; /* optional argument */
2043 };
2044
2045 static void cmd_showport_rss_hash_parsed(void *parsed_result,
2046                                 __attribute__((unused)) struct cmdline *cl,
2047                                 void *show_rss_key)
2048 {
2049         struct cmd_showport_rss_hash *res = parsed_result;
2050
2051         port_rss_hash_conf_show(res->port_id, res->rss_type,
2052                                 show_rss_key != NULL);
2053 }
2054
2055 cmdline_parse_token_string_t cmd_showport_rss_hash_show =
2056         TOKEN_STRING_INITIALIZER(struct cmd_showport_rss_hash, show, "show");
2057 cmdline_parse_token_string_t cmd_showport_rss_hash_port =
2058         TOKEN_STRING_INITIALIZER(struct cmd_showport_rss_hash, port, "port");
2059 cmdline_parse_token_num_t cmd_showport_rss_hash_port_id =
2060         TOKEN_NUM_INITIALIZER(struct cmd_showport_rss_hash, port_id, UINT8);
2061 cmdline_parse_token_string_t cmd_showport_rss_hash_rss_hash =
2062         TOKEN_STRING_INITIALIZER(struct cmd_showport_rss_hash, rss_hash,
2063                                  "rss-hash");
2064 cmdline_parse_token_string_t cmd_showport_rss_hash_rss_hash_info =
2065         TOKEN_STRING_INITIALIZER(struct cmd_showport_rss_hash, rss_type,
2066                                  "ipv4#ipv4-frag#ipv4-tcp#ipv4-udp#ipv4-sctp#"
2067                                  "ipv4-other#ipv6#ipv6-frag#ipv6-tcp#ipv6-udp#"
2068                                  "ipv6-sctp#ipv6-other#l2-payload#ipv6-ex#"
2069                                  "ipv6-tcp-ex#ipv6-udp-ex");
2070 cmdline_parse_token_string_t cmd_showport_rss_hash_rss_key =
2071         TOKEN_STRING_INITIALIZER(struct cmd_showport_rss_hash, key, "key");
2072
2073 cmdline_parse_inst_t cmd_showport_rss_hash = {
2074         .f = cmd_showport_rss_hash_parsed,
2075         .data = NULL,
2076         .help_str =
2077                 "show port X rss-hash ipv4|ipv4-frag|ipv4-tcp|ipv4-udp|"
2078                 "ipv4-sctp|ipv4-other|ipv6|ipv6-frag|ipv6-tcp|ipv6-udp|"
2079                 "ipv6-sctp|ipv6-other|l2-payload|"
2080                 "ipv6-ex|ipv6-tcp-ex|ipv6-udp-ex (X = port number)\n",
2081         .tokens = {
2082                 (void *)&cmd_showport_rss_hash_show,
2083                 (void *)&cmd_showport_rss_hash_port,
2084                 (void *)&cmd_showport_rss_hash_port_id,
2085                 (void *)&cmd_showport_rss_hash_rss_hash,
2086                 (void *)&cmd_showport_rss_hash_rss_hash_info,
2087                 NULL,
2088         },
2089 };
2090
2091 cmdline_parse_inst_t cmd_showport_rss_hash_key = {
2092         .f = cmd_showport_rss_hash_parsed,
2093         .data = (void *)1,
2094         .help_str =
2095                 "show port X rss-hash ipv4|ipv4-frag|ipv4-tcp|ipv4-udp|"
2096                 "ipv4-sctp|ipv4-other|ipv6|ipv6-frag|ipv6-tcp|ipv6-udp|"
2097                 "ipv6-sctp|ipv6-other|l2-payload|"
2098                 "ipv6-ex|ipv6-tcp-ex|ipv6-udp-ex key (X = port number)\n",
2099         .tokens = {
2100                 (void *)&cmd_showport_rss_hash_show,
2101                 (void *)&cmd_showport_rss_hash_port,
2102                 (void *)&cmd_showport_rss_hash_port_id,
2103                 (void *)&cmd_showport_rss_hash_rss_hash,
2104                 (void *)&cmd_showport_rss_hash_rss_hash_info,
2105                 (void *)&cmd_showport_rss_hash_rss_key,
2106                 NULL,
2107         },
2108 };
2109
2110 /* *** Configure DCB *** */
2111 struct cmd_config_dcb {
2112         cmdline_fixed_string_t port;
2113         cmdline_fixed_string_t config;
2114         uint8_t port_id;
2115         cmdline_fixed_string_t dcb;
2116         cmdline_fixed_string_t vt;
2117         cmdline_fixed_string_t vt_en;
2118         uint8_t num_tcs;
2119         cmdline_fixed_string_t pfc;
2120         cmdline_fixed_string_t pfc_en;
2121 };
2122
2123 static void
2124 cmd_config_dcb_parsed(void *parsed_result,
2125                         __attribute__((unused)) struct cmdline *cl,
2126                         __attribute__((unused)) void *data)
2127 {
2128         struct cmd_config_dcb *res = parsed_result;
2129         portid_t port_id = res->port_id;
2130         struct rte_port *port;
2131         uint8_t pfc_en;
2132         int ret;
2133
2134         port = &ports[port_id];
2135         /** Check if the port is not started **/
2136         if (port->port_status != RTE_PORT_STOPPED) {
2137                 printf("Please stop port %d first\n", port_id);
2138                 return;
2139         }
2140
2141         if ((res->num_tcs != ETH_4_TCS) && (res->num_tcs != ETH_8_TCS)) {
2142                 printf("The invalid number of traffic class,"
2143                         " only 4 or 8 allowed.\n");
2144                 return;
2145         }
2146
2147         if (nb_fwd_lcores < res->num_tcs) {
2148                 printf("nb_cores shouldn't be less than number of TCs.\n");
2149                 return;
2150         }
2151         if (!strncmp(res->pfc_en, "on", 2))
2152                 pfc_en = 1;
2153         else
2154                 pfc_en = 0;
2155
2156         /* DCB in VT mode */
2157         if (!strncmp(res->vt_en, "on", 2))
2158                 ret = init_port_dcb_config(port_id, DCB_VT_ENABLED,
2159                                 (enum rte_eth_nb_tcs)res->num_tcs,
2160                                 pfc_en);
2161         else
2162                 ret = init_port_dcb_config(port_id, DCB_ENABLED,
2163                                 (enum rte_eth_nb_tcs)res->num_tcs,
2164                                 pfc_en);
2165
2166
2167         if (ret != 0) {
2168                 printf("Cannot initialize network ports.\n");
2169                 return;
2170         }
2171
2172         cmd_reconfig_device_queue(port_id, 1, 1);
2173 }
2174
2175 cmdline_parse_token_string_t cmd_config_dcb_port =
2176         TOKEN_STRING_INITIALIZER(struct cmd_config_dcb, port, "port");
2177 cmdline_parse_token_string_t cmd_config_dcb_config =
2178         TOKEN_STRING_INITIALIZER(struct cmd_config_dcb, config, "config");
2179 cmdline_parse_token_num_t cmd_config_dcb_port_id =
2180         TOKEN_NUM_INITIALIZER(struct cmd_config_dcb, port_id, UINT8);
2181 cmdline_parse_token_string_t cmd_config_dcb_dcb =
2182         TOKEN_STRING_INITIALIZER(struct cmd_config_dcb, dcb, "dcb");
2183 cmdline_parse_token_string_t cmd_config_dcb_vt =
2184         TOKEN_STRING_INITIALIZER(struct cmd_config_dcb, vt, "vt");
2185 cmdline_parse_token_string_t cmd_config_dcb_vt_en =
2186         TOKEN_STRING_INITIALIZER(struct cmd_config_dcb, vt_en, "on#off");
2187 cmdline_parse_token_num_t cmd_config_dcb_num_tcs =
2188         TOKEN_NUM_INITIALIZER(struct cmd_config_dcb, num_tcs, UINT8);
2189 cmdline_parse_token_string_t cmd_config_dcb_pfc=
2190         TOKEN_STRING_INITIALIZER(struct cmd_config_dcb, pfc, "pfc");
2191 cmdline_parse_token_string_t cmd_config_dcb_pfc_en =
2192         TOKEN_STRING_INITIALIZER(struct cmd_config_dcb, pfc_en, "on#off");
2193
2194 cmdline_parse_inst_t cmd_config_dcb = {
2195         .f = cmd_config_dcb_parsed,
2196         .data = NULL,
2197         .help_str = "port config port-id dcb vt on|off nb-tcs pfc on|off",
2198         .tokens = {
2199                 (void *)&cmd_config_dcb_port,
2200                 (void *)&cmd_config_dcb_config,
2201                 (void *)&cmd_config_dcb_port_id,
2202                 (void *)&cmd_config_dcb_dcb,
2203                 (void *)&cmd_config_dcb_vt,
2204                 (void *)&cmd_config_dcb_vt_en,
2205                 (void *)&cmd_config_dcb_num_tcs,
2206                 (void *)&cmd_config_dcb_pfc,
2207                 (void *)&cmd_config_dcb_pfc_en,
2208                 NULL,
2209         },
2210 };
2211
2212 /* *** configure number of packets per burst *** */
2213 struct cmd_config_burst {
2214         cmdline_fixed_string_t port;
2215         cmdline_fixed_string_t keyword;
2216         cmdline_fixed_string_t all;
2217         cmdline_fixed_string_t name;
2218         uint16_t value;
2219 };
2220
2221 static void
2222 cmd_config_burst_parsed(void *parsed_result,
2223                         __attribute__((unused)) struct cmdline *cl,
2224                         __attribute__((unused)) void *data)
2225 {
2226         struct cmd_config_burst *res = parsed_result;
2227
2228         if (!all_ports_stopped()) {
2229                 printf("Please stop all ports first\n");
2230                 return;
2231         }
2232
2233         if (!strcmp(res->name, "burst")) {
2234                 if (res->value < 1 || res->value > MAX_PKT_BURST) {
2235                         printf("burst must be >= 1 && <= %d\n", MAX_PKT_BURST);
2236                         return;
2237                 }
2238                 nb_pkt_per_burst = res->value;
2239         } else {
2240                 printf("Unknown parameter\n");
2241                 return;
2242         }
2243
2244         init_port_config();
2245
2246         cmd_reconfig_device_queue(RTE_PORT_ALL, 1, 1);
2247 }
2248
2249 cmdline_parse_token_string_t cmd_config_burst_port =
2250         TOKEN_STRING_INITIALIZER(struct cmd_config_burst, port, "port");
2251 cmdline_parse_token_string_t cmd_config_burst_keyword =
2252         TOKEN_STRING_INITIALIZER(struct cmd_config_burst, keyword, "config");
2253 cmdline_parse_token_string_t cmd_config_burst_all =
2254         TOKEN_STRING_INITIALIZER(struct cmd_config_burst, all, "all");
2255 cmdline_parse_token_string_t cmd_config_burst_name =
2256         TOKEN_STRING_INITIALIZER(struct cmd_config_burst, name, "burst");
2257 cmdline_parse_token_num_t cmd_config_burst_value =
2258         TOKEN_NUM_INITIALIZER(struct cmd_config_burst, value, UINT16);
2259
2260 cmdline_parse_inst_t cmd_config_burst = {
2261         .f = cmd_config_burst_parsed,
2262         .data = NULL,
2263         .help_str = "port config all burst value",
2264         .tokens = {
2265                 (void *)&cmd_config_burst_port,
2266                 (void *)&cmd_config_burst_keyword,
2267                 (void *)&cmd_config_burst_all,
2268                 (void *)&cmd_config_burst_name,
2269                 (void *)&cmd_config_burst_value,
2270                 NULL,
2271         },
2272 };
2273
2274 /* *** configure rx/tx queues *** */
2275 struct cmd_config_thresh {
2276         cmdline_fixed_string_t port;
2277         cmdline_fixed_string_t keyword;
2278         cmdline_fixed_string_t all;
2279         cmdline_fixed_string_t name;
2280         uint8_t value;
2281 };
2282
2283 static void
2284 cmd_config_thresh_parsed(void *parsed_result,
2285                         __attribute__((unused)) struct cmdline *cl,
2286                         __attribute__((unused)) void *data)
2287 {
2288         struct cmd_config_thresh *res = parsed_result;
2289
2290         if (!all_ports_stopped()) {
2291                 printf("Please stop all ports first\n");
2292                 return;
2293         }
2294
2295         if (!strcmp(res->name, "txpt"))
2296                 tx_pthresh = res->value;
2297         else if(!strcmp(res->name, "txht"))
2298                 tx_hthresh = res->value;
2299         else if(!strcmp(res->name, "txwt"))
2300                 tx_wthresh = res->value;
2301         else if(!strcmp(res->name, "rxpt"))
2302                 rx_pthresh = res->value;
2303         else if(!strcmp(res->name, "rxht"))
2304                 rx_hthresh = res->value;
2305         else if(!strcmp(res->name, "rxwt"))
2306                 rx_wthresh = res->value;
2307         else {
2308                 printf("Unknown parameter\n");
2309                 return;
2310         }
2311
2312         init_port_config();
2313
2314         cmd_reconfig_device_queue(RTE_PORT_ALL, 1, 1);
2315 }
2316
2317 cmdline_parse_token_string_t cmd_config_thresh_port =
2318         TOKEN_STRING_INITIALIZER(struct cmd_config_thresh, port, "port");
2319 cmdline_parse_token_string_t cmd_config_thresh_keyword =
2320         TOKEN_STRING_INITIALIZER(struct cmd_config_thresh, keyword, "config");
2321 cmdline_parse_token_string_t cmd_config_thresh_all =
2322         TOKEN_STRING_INITIALIZER(struct cmd_config_thresh, all, "all");
2323 cmdline_parse_token_string_t cmd_config_thresh_name =
2324         TOKEN_STRING_INITIALIZER(struct cmd_config_thresh, name,
2325                                 "txpt#txht#txwt#rxpt#rxht#rxwt");
2326 cmdline_parse_token_num_t cmd_config_thresh_value =
2327         TOKEN_NUM_INITIALIZER(struct cmd_config_thresh, value, UINT8);
2328
2329 cmdline_parse_inst_t cmd_config_thresh = {
2330         .f = cmd_config_thresh_parsed,
2331         .data = NULL,
2332         .help_str = "port config all txpt|txht|txwt|rxpt|rxht|rxwt value",
2333         .tokens = {
2334                 (void *)&cmd_config_thresh_port,
2335                 (void *)&cmd_config_thresh_keyword,
2336                 (void *)&cmd_config_thresh_all,
2337                 (void *)&cmd_config_thresh_name,
2338                 (void *)&cmd_config_thresh_value,
2339                 NULL,
2340         },
2341 };
2342
2343 /* *** configure free/rs threshold *** */
2344 struct cmd_config_threshold {
2345         cmdline_fixed_string_t port;
2346         cmdline_fixed_string_t keyword;
2347         cmdline_fixed_string_t all;
2348         cmdline_fixed_string_t name;
2349         uint16_t value;
2350 };
2351
2352 static void
2353 cmd_config_threshold_parsed(void *parsed_result,
2354                         __attribute__((unused)) struct cmdline *cl,
2355                         __attribute__((unused)) void *data)
2356 {
2357         struct cmd_config_threshold *res = parsed_result;
2358
2359         if (!all_ports_stopped()) {
2360                 printf("Please stop all ports first\n");
2361                 return;
2362         }
2363
2364         if (!strcmp(res->name, "txfreet"))
2365                 tx_free_thresh = res->value;
2366         else if (!strcmp(res->name, "txrst"))
2367                 tx_rs_thresh = res->value;
2368         else if (!strcmp(res->name, "rxfreet"))
2369                 rx_free_thresh = res->value;
2370         else {
2371                 printf("Unknown parameter\n");
2372                 return;
2373         }
2374
2375         init_port_config();
2376
2377         cmd_reconfig_device_queue(RTE_PORT_ALL, 1, 1);
2378 }
2379
2380 cmdline_parse_token_string_t cmd_config_threshold_port =
2381         TOKEN_STRING_INITIALIZER(struct cmd_config_threshold, port, "port");
2382 cmdline_parse_token_string_t cmd_config_threshold_keyword =
2383         TOKEN_STRING_INITIALIZER(struct cmd_config_threshold, keyword,
2384                                                                 "config");
2385 cmdline_parse_token_string_t cmd_config_threshold_all =
2386         TOKEN_STRING_INITIALIZER(struct cmd_config_threshold, all, "all");
2387 cmdline_parse_token_string_t cmd_config_threshold_name =
2388         TOKEN_STRING_INITIALIZER(struct cmd_config_threshold, name,
2389                                                 "txfreet#txrst#rxfreet");
2390 cmdline_parse_token_num_t cmd_config_threshold_value =
2391         TOKEN_NUM_INITIALIZER(struct cmd_config_threshold, value, UINT16);
2392
2393 cmdline_parse_inst_t cmd_config_threshold = {
2394         .f = cmd_config_threshold_parsed,
2395         .data = NULL,
2396         .help_str = "port config all txfreet|txrst|rxfreet value",
2397         .tokens = {
2398                 (void *)&cmd_config_threshold_port,
2399                 (void *)&cmd_config_threshold_keyword,
2400                 (void *)&cmd_config_threshold_all,
2401                 (void *)&cmd_config_threshold_name,
2402                 (void *)&cmd_config_threshold_value,
2403                 NULL,
2404         },
2405 };
2406
2407 /* *** stop *** */
2408 struct cmd_stop_result {
2409         cmdline_fixed_string_t stop;
2410 };
2411
2412 static void cmd_stop_parsed(__attribute__((unused)) void *parsed_result,
2413                             __attribute__((unused)) struct cmdline *cl,
2414                             __attribute__((unused)) void *data)
2415 {
2416         stop_packet_forwarding();
2417 }
2418
2419 cmdline_parse_token_string_t cmd_stop_stop =
2420         TOKEN_STRING_INITIALIZER(struct cmd_stop_result, stop, "stop");
2421
2422 cmdline_parse_inst_t cmd_stop = {
2423         .f = cmd_stop_parsed,
2424         .data = NULL,
2425         .help_str = "stop - stop packet forwarding",
2426         .tokens = {
2427                 (void *)&cmd_stop_stop,
2428                 NULL,
2429         },
2430 };
2431
2432 /* *** SET CORELIST and PORTLIST CONFIGURATION *** */
2433
2434 unsigned int
2435 parse_item_list(char* str, const char* item_name, unsigned int max_items,
2436                 unsigned int *parsed_items, int check_unique_values)
2437 {
2438         unsigned int nb_item;
2439         unsigned int value;
2440         unsigned int i;
2441         unsigned int j;
2442         int value_ok;
2443         char c;
2444
2445         /*
2446          * First parse all items in the list and store their value.
2447          */
2448         value = 0;
2449         nb_item = 0;
2450         value_ok = 0;
2451         for (i = 0; i < strnlen(str, STR_TOKEN_SIZE); i++) {
2452                 c = str[i];
2453                 if ((c >= '0') && (c <= '9')) {
2454                         value = (unsigned int) (value * 10 + (c - '0'));
2455                         value_ok = 1;
2456                         continue;
2457                 }
2458                 if (c != ',') {
2459                         printf("character %c is not a decimal digit\n", c);
2460                         return 0;
2461                 }
2462                 if (! value_ok) {
2463                         printf("No valid value before comma\n");
2464                         return 0;
2465                 }
2466                 if (nb_item < max_items) {
2467                         parsed_items[nb_item] = value;
2468                         value_ok = 0;
2469                         value = 0;
2470                 }
2471                 nb_item++;
2472         }
2473         if (nb_item >= max_items) {
2474                 printf("Number of %s = %u > %u (maximum items)\n",
2475                        item_name, nb_item + 1, max_items);
2476                 return 0;
2477         }
2478         parsed_items[nb_item++] = value;
2479         if (! check_unique_values)
2480                 return nb_item;
2481
2482         /*
2483          * Then, check that all values in the list are differents.
2484          * No optimization here...
2485          */
2486         for (i = 0; i < nb_item; i++) {
2487                 for (j = i + 1; j < nb_item; j++) {
2488                         if (parsed_items[j] == parsed_items[i]) {
2489                                 printf("duplicated %s %u at index %u and %u\n",
2490                                        item_name, parsed_items[i], i, j);
2491                                 return 0;
2492                         }
2493                 }
2494         }
2495         return nb_item;
2496 }
2497
2498 struct cmd_set_list_result {
2499         cmdline_fixed_string_t cmd_keyword;
2500         cmdline_fixed_string_t list_name;
2501         cmdline_fixed_string_t list_of_items;
2502 };
2503
2504 static void cmd_set_list_parsed(void *parsed_result,
2505                                 __attribute__((unused)) struct cmdline *cl,
2506                                 __attribute__((unused)) void *data)
2507 {
2508         struct cmd_set_list_result *res;
2509         union {
2510                 unsigned int lcorelist[RTE_MAX_LCORE];
2511                 unsigned int portlist[RTE_MAX_ETHPORTS];
2512         } parsed_items;
2513         unsigned int nb_item;
2514
2515         if (test_done == 0) {
2516                 printf("Please stop forwarding first\n");
2517                 return;
2518         }
2519
2520         res = parsed_result;
2521         if (!strcmp(res->list_name, "corelist")) {
2522                 nb_item = parse_item_list(res->list_of_items, "core",
2523                                           RTE_MAX_LCORE,
2524                                           parsed_items.lcorelist, 1);
2525                 if (nb_item > 0) {
2526                         set_fwd_lcores_list(parsed_items.lcorelist, nb_item);
2527                         fwd_config_setup();
2528                 }
2529                 return;
2530         }
2531         if (!strcmp(res->list_name, "portlist")) {
2532                 nb_item = parse_item_list(res->list_of_items, "port",
2533                                           RTE_MAX_ETHPORTS,
2534                                           parsed_items.portlist, 1);
2535                 if (nb_item > 0) {
2536                         set_fwd_ports_list(parsed_items.portlist, nb_item);
2537                         fwd_config_setup();
2538                 }
2539         }
2540 }
2541
2542 cmdline_parse_token_string_t cmd_set_list_keyword =
2543         TOKEN_STRING_INITIALIZER(struct cmd_set_list_result, cmd_keyword,
2544                                  "set");
2545 cmdline_parse_token_string_t cmd_set_list_name =
2546         TOKEN_STRING_INITIALIZER(struct cmd_set_list_result, list_name,
2547                                  "corelist#portlist");
2548 cmdline_parse_token_string_t cmd_set_list_of_items =
2549         TOKEN_STRING_INITIALIZER(struct cmd_set_list_result, list_of_items,
2550                                  NULL);
2551
2552 cmdline_parse_inst_t cmd_set_fwd_list = {
2553         .f = cmd_set_list_parsed,
2554         .data = NULL,
2555         .help_str = "set corelist|portlist x[,y]*",
2556         .tokens = {
2557                 (void *)&cmd_set_list_keyword,
2558                 (void *)&cmd_set_list_name,
2559                 (void *)&cmd_set_list_of_items,
2560                 NULL,
2561         },
2562 };
2563
2564 /* *** SET COREMASK and PORTMASK CONFIGURATION *** */
2565
2566 struct cmd_setmask_result {
2567         cmdline_fixed_string_t set;
2568         cmdline_fixed_string_t mask;
2569         uint64_t hexavalue;
2570 };
2571
2572 static void cmd_set_mask_parsed(void *parsed_result,
2573                                 __attribute__((unused)) struct cmdline *cl,
2574                                 __attribute__((unused)) void *data)
2575 {
2576         struct cmd_setmask_result *res = parsed_result;
2577
2578         if (test_done == 0) {
2579                 printf("Please stop forwarding first\n");
2580                 return;
2581         }
2582         if (!strcmp(res->mask, "coremask")) {
2583                 set_fwd_lcores_mask(res->hexavalue);
2584                 fwd_config_setup();
2585         } else if (!strcmp(res->mask, "portmask")) {
2586                 set_fwd_ports_mask(res->hexavalue);
2587                 fwd_config_setup();
2588         }
2589 }
2590
2591 cmdline_parse_token_string_t cmd_setmask_set =
2592         TOKEN_STRING_INITIALIZER(struct cmd_setmask_result, set, "set");
2593 cmdline_parse_token_string_t cmd_setmask_mask =
2594         TOKEN_STRING_INITIALIZER(struct cmd_setmask_result, mask,
2595                                  "coremask#portmask");
2596 cmdline_parse_token_num_t cmd_setmask_value =
2597         TOKEN_NUM_INITIALIZER(struct cmd_setmask_result, hexavalue, UINT64);
2598
2599 cmdline_parse_inst_t cmd_set_fwd_mask = {
2600         .f = cmd_set_mask_parsed,
2601         .data = NULL,
2602         .help_str = "set coremask|portmask hexadecimal value",
2603         .tokens = {
2604                 (void *)&cmd_setmask_set,
2605                 (void *)&cmd_setmask_mask,
2606                 (void *)&cmd_setmask_value,
2607                 NULL,
2608         },
2609 };
2610
2611 /*
2612  * SET NBPORT, NBCORE, PACKET BURST, and VERBOSE LEVEL CONFIGURATION
2613  */
2614 struct cmd_set_result {
2615         cmdline_fixed_string_t set;
2616         cmdline_fixed_string_t what;
2617         uint16_t value;
2618 };
2619
2620 static void cmd_set_parsed(void *parsed_result,
2621                            __attribute__((unused)) struct cmdline *cl,
2622                            __attribute__((unused)) void *data)
2623 {
2624         struct cmd_set_result *res = parsed_result;
2625         if (!strcmp(res->what, "nbport")) {
2626                 set_fwd_ports_number(res->value);
2627                 fwd_config_setup();
2628         } else if (!strcmp(res->what, "nbcore")) {
2629                 set_fwd_lcores_number(res->value);
2630                 fwd_config_setup();
2631         } else if (!strcmp(res->what, "burst"))
2632                 set_nb_pkt_per_burst(res->value);
2633         else if (!strcmp(res->what, "verbose"))
2634                 set_verbose_level(res->value);
2635 }
2636
2637 cmdline_parse_token_string_t cmd_set_set =
2638         TOKEN_STRING_INITIALIZER(struct cmd_set_result, set, "set");
2639 cmdline_parse_token_string_t cmd_set_what =
2640         TOKEN_STRING_INITIALIZER(struct cmd_set_result, what,
2641                                  "nbport#nbcore#burst#verbose");
2642 cmdline_parse_token_num_t cmd_set_value =
2643         TOKEN_NUM_INITIALIZER(struct cmd_set_result, value, UINT16);
2644
2645 cmdline_parse_inst_t cmd_set_numbers = {
2646         .f = cmd_set_parsed,
2647         .data = NULL,
2648         .help_str = "set nbport|nbcore|burst|verbose value",
2649         .tokens = {
2650                 (void *)&cmd_set_set,
2651                 (void *)&cmd_set_what,
2652                 (void *)&cmd_set_value,
2653                 NULL,
2654         },
2655 };
2656
2657 /* *** SET SEGMENT LENGTHS OF TXONLY PACKETS *** */
2658
2659 struct cmd_set_txpkts_result {
2660         cmdline_fixed_string_t cmd_keyword;
2661         cmdline_fixed_string_t txpkts;
2662         cmdline_fixed_string_t seg_lengths;
2663 };
2664
2665 static void
2666 cmd_set_txpkts_parsed(void *parsed_result,
2667                       __attribute__((unused)) struct cmdline *cl,
2668                       __attribute__((unused)) void *data)
2669 {
2670         struct cmd_set_txpkts_result *res;
2671         unsigned seg_lengths[RTE_MAX_SEGS_PER_PKT];
2672         unsigned int nb_segs;
2673
2674         res = parsed_result;
2675         nb_segs = parse_item_list(res->seg_lengths, "segment lengths",
2676                                   RTE_MAX_SEGS_PER_PKT, seg_lengths, 0);
2677         if (nb_segs > 0)
2678                 set_tx_pkt_segments(seg_lengths, nb_segs);
2679 }
2680
2681 cmdline_parse_token_string_t cmd_set_txpkts_keyword =
2682         TOKEN_STRING_INITIALIZER(struct cmd_set_txpkts_result,
2683                                  cmd_keyword, "set");
2684 cmdline_parse_token_string_t cmd_set_txpkts_name =
2685         TOKEN_STRING_INITIALIZER(struct cmd_set_txpkts_result,
2686                                  txpkts, "txpkts");
2687 cmdline_parse_token_string_t cmd_set_txpkts_lengths =
2688         TOKEN_STRING_INITIALIZER(struct cmd_set_txpkts_result,
2689                                  seg_lengths, NULL);
2690
2691 cmdline_parse_inst_t cmd_set_txpkts = {
2692         .f = cmd_set_txpkts_parsed,
2693         .data = NULL,
2694         .help_str = "set txpkts x[,y]*",
2695         .tokens = {
2696                 (void *)&cmd_set_txpkts_keyword,
2697                 (void *)&cmd_set_txpkts_name,
2698                 (void *)&cmd_set_txpkts_lengths,
2699                 NULL,
2700         },
2701 };
2702
2703 /* *** SET COPY AND SPLIT POLICY ON TX PACKETS *** */
2704
2705 struct cmd_set_txsplit_result {
2706         cmdline_fixed_string_t cmd_keyword;
2707         cmdline_fixed_string_t txsplit;
2708         cmdline_fixed_string_t mode;
2709 };
2710
2711 static void
2712 cmd_set_txsplit_parsed(void *parsed_result,
2713                       __attribute__((unused)) struct cmdline *cl,
2714                       __attribute__((unused)) void *data)
2715 {
2716         struct cmd_set_txsplit_result *res;
2717
2718         res = parsed_result;
2719         set_tx_pkt_split(res->mode);
2720 }
2721
2722 cmdline_parse_token_string_t cmd_set_txsplit_keyword =
2723         TOKEN_STRING_INITIALIZER(struct cmd_set_txsplit_result,
2724                                  cmd_keyword, "set");
2725 cmdline_parse_token_string_t cmd_set_txsplit_name =
2726         TOKEN_STRING_INITIALIZER(struct cmd_set_txsplit_result,
2727                                  txsplit, "txsplit");
2728 cmdline_parse_token_string_t cmd_set_txsplit_mode =
2729         TOKEN_STRING_INITIALIZER(struct cmd_set_txsplit_result,
2730                                  mode, NULL);
2731
2732 cmdline_parse_inst_t cmd_set_txsplit = {
2733         .f = cmd_set_txsplit_parsed,
2734         .data = NULL,
2735         .help_str = "set txsplit on|off|rand",
2736         .tokens = {
2737                 (void *)&cmd_set_txsplit_keyword,
2738                 (void *)&cmd_set_txsplit_name,
2739                 (void *)&cmd_set_txsplit_mode,
2740                 NULL,
2741         },
2742 };
2743
2744 /* *** CONFIG TX QUEUE FLAGS *** */
2745
2746 struct cmd_config_txqflags_result {
2747         cmdline_fixed_string_t port;
2748         cmdline_fixed_string_t config;
2749         cmdline_fixed_string_t all;
2750         cmdline_fixed_string_t what;
2751         int32_t hexvalue;
2752 };
2753
2754 static void cmd_config_txqflags_parsed(void *parsed_result,
2755                                 __attribute__((unused)) struct cmdline *cl,
2756                                 __attribute__((unused)) void *data)
2757 {
2758         struct cmd_config_txqflags_result *res = parsed_result;
2759
2760         if (!all_ports_stopped()) {
2761                 printf("Please stop all ports first\n");
2762                 return;
2763         }
2764
2765         if (strcmp(res->what, "txqflags")) {
2766                 printf("Unknown parameter\n");
2767                 return;
2768         }
2769
2770         if (res->hexvalue >= 0) {
2771                 txq_flags = res->hexvalue;
2772         } else {
2773                 printf("txqflags must be >= 0\n");
2774                 return;
2775         }
2776
2777         init_port_config();
2778
2779         cmd_reconfig_device_queue(RTE_PORT_ALL, 1, 1);
2780 }
2781
2782 cmdline_parse_token_string_t cmd_config_txqflags_port =
2783         TOKEN_STRING_INITIALIZER(struct cmd_config_txqflags_result, port,
2784                                  "port");
2785 cmdline_parse_token_string_t cmd_config_txqflags_config =
2786         TOKEN_STRING_INITIALIZER(struct cmd_config_txqflags_result, config,
2787                                  "config");
2788 cmdline_parse_token_string_t cmd_config_txqflags_all =
2789         TOKEN_STRING_INITIALIZER(struct cmd_config_txqflags_result, all,
2790                                  "all");
2791 cmdline_parse_token_string_t cmd_config_txqflags_what =
2792         TOKEN_STRING_INITIALIZER(struct cmd_config_txqflags_result, what,
2793                                  "txqflags");
2794 cmdline_parse_token_num_t cmd_config_txqflags_value =
2795         TOKEN_NUM_INITIALIZER(struct cmd_config_txqflags_result,
2796                                 hexvalue, INT32);
2797
2798 cmdline_parse_inst_t cmd_config_txqflags = {
2799         .f = cmd_config_txqflags_parsed,
2800         .data = NULL,
2801         .help_str = "port config all txqflags value",
2802         .tokens = {
2803                 (void *)&cmd_config_txqflags_port,
2804                 (void *)&cmd_config_txqflags_config,
2805                 (void *)&cmd_config_txqflags_all,
2806                 (void *)&cmd_config_txqflags_what,
2807                 (void *)&cmd_config_txqflags_value,
2808                 NULL,
2809         },
2810 };
2811
2812 /* *** ADD/REMOVE ALL VLAN IDENTIFIERS TO/FROM A PORT VLAN RX FILTER *** */
2813 struct cmd_rx_vlan_filter_all_result {
2814         cmdline_fixed_string_t rx_vlan;
2815         cmdline_fixed_string_t what;
2816         cmdline_fixed_string_t all;
2817         uint8_t port_id;
2818 };
2819
2820 static void
2821 cmd_rx_vlan_filter_all_parsed(void *parsed_result,
2822                               __attribute__((unused)) struct cmdline *cl,
2823                               __attribute__((unused)) void *data)
2824 {
2825         struct cmd_rx_vlan_filter_all_result *res = parsed_result;
2826
2827         if (!strcmp(res->what, "add"))
2828                 rx_vlan_all_filter_set(res->port_id, 1);
2829         else
2830                 rx_vlan_all_filter_set(res->port_id, 0);
2831 }
2832
2833 cmdline_parse_token_string_t cmd_rx_vlan_filter_all_rx_vlan =
2834         TOKEN_STRING_INITIALIZER(struct cmd_rx_vlan_filter_all_result,
2835                                  rx_vlan, "rx_vlan");
2836 cmdline_parse_token_string_t cmd_rx_vlan_filter_all_what =
2837         TOKEN_STRING_INITIALIZER(struct cmd_rx_vlan_filter_all_result,
2838                                  what, "add#rm");
2839 cmdline_parse_token_string_t cmd_rx_vlan_filter_all_all =
2840         TOKEN_STRING_INITIALIZER(struct cmd_rx_vlan_filter_all_result,
2841                                  all, "all");
2842 cmdline_parse_token_num_t cmd_rx_vlan_filter_all_portid =
2843         TOKEN_NUM_INITIALIZER(struct cmd_rx_vlan_filter_all_result,
2844                               port_id, UINT8);
2845
2846 cmdline_parse_inst_t cmd_rx_vlan_filter_all = {
2847         .f = cmd_rx_vlan_filter_all_parsed,
2848         .data = NULL,
2849         .help_str = "add/remove all identifiers to/from the set of VLAN "
2850         "Identifiers filtered by a port",
2851         .tokens = {
2852                 (void *)&cmd_rx_vlan_filter_all_rx_vlan,
2853                 (void *)&cmd_rx_vlan_filter_all_what,
2854                 (void *)&cmd_rx_vlan_filter_all_all,
2855                 (void *)&cmd_rx_vlan_filter_all_portid,
2856                 NULL,
2857         },
2858 };
2859
2860 /* *** VLAN OFFLOAD SET ON A PORT *** */
2861 struct cmd_vlan_offload_result {
2862         cmdline_fixed_string_t vlan;
2863         cmdline_fixed_string_t set;
2864         cmdline_fixed_string_t vlan_type;
2865         cmdline_fixed_string_t what;
2866         cmdline_fixed_string_t on;
2867         cmdline_fixed_string_t port_id;
2868 };
2869
2870 static void
2871 cmd_vlan_offload_parsed(void *parsed_result,
2872                           __attribute__((unused)) struct cmdline *cl,
2873                           __attribute__((unused)) void *data)
2874 {
2875         int on;
2876         struct cmd_vlan_offload_result *res = parsed_result;
2877         char *str;
2878         int i, len = 0;
2879         portid_t port_id = 0;
2880         unsigned int tmp;
2881
2882         str = res->port_id;
2883         len = strnlen(str, STR_TOKEN_SIZE);
2884         i = 0;
2885         /* Get port_id first */
2886         while(i < len){
2887                 if(str[i] == ',')
2888                         break;
2889
2890                 i++;
2891         }
2892         str[i]='\0';
2893         tmp = strtoul(str, NULL, 0);
2894         /* If port_id greater that what portid_t can represent, return */
2895         if(tmp >= RTE_MAX_ETHPORTS)
2896                 return;
2897         port_id = (portid_t)tmp;
2898
2899         if (!strcmp(res->on, "on"))
2900                 on = 1;
2901         else
2902                 on = 0;
2903
2904         if (!strcmp(res->what, "strip"))
2905                 rx_vlan_strip_set(port_id,  on);
2906         else if(!strcmp(res->what, "stripq")){
2907                 uint16_t queue_id = 0;
2908
2909                 /* No queue_id, return */
2910                 if(i + 1 >= len) {
2911                         printf("must specify (port,queue_id)\n");
2912                         return;
2913                 }
2914                 tmp = strtoul(str + i + 1, NULL, 0);
2915                 /* If queue_id greater that what 16-bits can represent, return */
2916                 if(tmp > 0xffff)
2917                         return;
2918
2919                 queue_id = (uint16_t)tmp;
2920                 rx_vlan_strip_set_on_queue(port_id, queue_id, on);
2921         }
2922         else if (!strcmp(res->what, "filter"))
2923                 rx_vlan_filter_set(port_id, on);
2924         else
2925                 vlan_extend_set(port_id, on);
2926
2927         return;
2928 }
2929
2930 cmdline_parse_token_string_t cmd_vlan_offload_vlan =
2931         TOKEN_STRING_INITIALIZER(struct cmd_vlan_offload_result,
2932                                  vlan, "vlan");
2933 cmdline_parse_token_string_t cmd_vlan_offload_set =
2934         TOKEN_STRING_INITIALIZER(struct cmd_vlan_offload_result,
2935                                  set, "set");
2936 cmdline_parse_token_string_t cmd_vlan_offload_what =
2937         TOKEN_STRING_INITIALIZER(struct cmd_vlan_offload_result,
2938                                  what, "strip#filter#qinq#stripq");
2939 cmdline_parse_token_string_t cmd_vlan_offload_on =
2940         TOKEN_STRING_INITIALIZER(struct cmd_vlan_offload_result,
2941                               on, "on#off");
2942 cmdline_parse_token_string_t cmd_vlan_offload_portid =
2943         TOKEN_STRING_INITIALIZER(struct cmd_vlan_offload_result,
2944                               port_id, NULL);
2945
2946 cmdline_parse_inst_t cmd_vlan_offload = {
2947         .f = cmd_vlan_offload_parsed,
2948         .data = NULL,
2949         .help_str = "set strip|filter|qinq|stripq on|off port_id[,queue_id], filter/strip for rx side"
2950         " qinq(extended) for both rx/tx sides ",
2951         .tokens = {
2952                 (void *)&cmd_vlan_offload_vlan,
2953                 (void *)&cmd_vlan_offload_set,
2954                 (void *)&cmd_vlan_offload_what,
2955                 (void *)&cmd_vlan_offload_on,
2956                 (void *)&cmd_vlan_offload_portid,
2957                 NULL,
2958         },
2959 };
2960
2961 /* *** VLAN TPID SET ON A PORT *** */
2962 struct cmd_vlan_tpid_result {
2963         cmdline_fixed_string_t vlan;
2964         cmdline_fixed_string_t set;
2965         cmdline_fixed_string_t vlan_type;
2966         cmdline_fixed_string_t what;
2967         uint16_t tp_id;
2968         uint8_t port_id;
2969 };
2970
2971 static void
2972 cmd_vlan_tpid_parsed(void *parsed_result,
2973                           __attribute__((unused)) struct cmdline *cl,
2974                           __attribute__((unused)) void *data)
2975 {
2976         struct cmd_vlan_tpid_result *res = parsed_result;
2977         enum rte_vlan_type vlan_type;
2978
2979         if (!strcmp(res->vlan_type, "inner"))
2980                 vlan_type = ETH_VLAN_TYPE_INNER;
2981         else if (!strcmp(res->vlan_type, "outer"))
2982                 vlan_type = ETH_VLAN_TYPE_OUTER;
2983         else {
2984                 printf("Unknown vlan type\n");
2985                 return;
2986         }
2987         vlan_tpid_set(res->port_id, vlan_type, res->tp_id);
2988 }
2989
2990 cmdline_parse_token_string_t cmd_vlan_tpid_vlan =
2991         TOKEN_STRING_INITIALIZER(struct cmd_vlan_tpid_result,
2992                                  vlan, "vlan");
2993 cmdline_parse_token_string_t cmd_vlan_tpid_set =
2994         TOKEN_STRING_INITIALIZER(struct cmd_vlan_tpid_result,
2995                                  set, "set");
2996 cmdline_parse_token_string_t cmd_vlan_type =
2997         TOKEN_STRING_INITIALIZER(struct cmd_vlan_tpid_result,
2998                                  vlan_type, "inner#outer");
2999 cmdline_parse_token_string_t cmd_vlan_tpid_what =
3000         TOKEN_STRING_INITIALIZER(struct cmd_vlan_tpid_result,
3001                                  what, "tpid");
3002 cmdline_parse_token_num_t cmd_vlan_tpid_tpid =
3003         TOKEN_NUM_INITIALIZER(struct cmd_vlan_tpid_result,
3004                               tp_id, UINT16);
3005 cmdline_parse_token_num_t cmd_vlan_tpid_portid =
3006         TOKEN_NUM_INITIALIZER(struct cmd_vlan_tpid_result,
3007                               port_id, UINT8);
3008
3009 cmdline_parse_inst_t cmd_vlan_tpid = {
3010         .f = cmd_vlan_tpid_parsed,
3011         .data = NULL,
3012         .help_str = "set inner|outer tpid tp_id port_id, set the VLAN "
3013                     "Ether type",
3014         .tokens = {
3015                 (void *)&cmd_vlan_tpid_vlan,
3016                 (void *)&cmd_vlan_tpid_set,
3017                 (void *)&cmd_vlan_type,
3018                 (void *)&cmd_vlan_tpid_what,
3019                 (void *)&cmd_vlan_tpid_tpid,
3020                 (void *)&cmd_vlan_tpid_portid,
3021                 NULL,
3022         },
3023 };
3024
3025 /* *** ADD/REMOVE A VLAN IDENTIFIER TO/FROM A PORT VLAN RX FILTER *** */
3026 struct cmd_rx_vlan_filter_result {
3027         cmdline_fixed_string_t rx_vlan;
3028         cmdline_fixed_string_t what;
3029         uint16_t vlan_id;
3030         uint8_t port_id;
3031 };
3032
3033 static void
3034 cmd_rx_vlan_filter_parsed(void *parsed_result,
3035                           __attribute__((unused)) struct cmdline *cl,
3036                           __attribute__((unused)) void *data)
3037 {
3038         struct cmd_rx_vlan_filter_result *res = parsed_result;
3039
3040         if (!strcmp(res->what, "add"))
3041                 rx_vft_set(res->port_id, res->vlan_id, 1);
3042         else
3043                 rx_vft_set(res->port_id, res->vlan_id, 0);
3044 }
3045
3046 cmdline_parse_token_string_t cmd_rx_vlan_filter_rx_vlan =
3047         TOKEN_STRING_INITIALIZER(struct cmd_rx_vlan_filter_result,
3048                                  rx_vlan, "rx_vlan");
3049 cmdline_parse_token_string_t cmd_rx_vlan_filter_what =
3050         TOKEN_STRING_INITIALIZER(struct cmd_rx_vlan_filter_result,
3051                                  what, "add#rm");
3052 cmdline_parse_token_num_t cmd_rx_vlan_filter_vlanid =
3053         TOKEN_NUM_INITIALIZER(struct cmd_rx_vlan_filter_result,
3054                               vlan_id, UINT16);
3055 cmdline_parse_token_num_t cmd_rx_vlan_filter_portid =
3056         TOKEN_NUM_INITIALIZER(struct cmd_rx_vlan_filter_result,
3057                               port_id, UINT8);
3058
3059 cmdline_parse_inst_t cmd_rx_vlan_filter = {
3060         .f = cmd_rx_vlan_filter_parsed,
3061         .data = NULL,
3062         .help_str = "add/remove a VLAN identifier to/from the set of VLAN "
3063         "Identifiers filtered by a port",
3064         .tokens = {
3065                 (void *)&cmd_rx_vlan_filter_rx_vlan,
3066                 (void *)&cmd_rx_vlan_filter_what,
3067                 (void *)&cmd_rx_vlan_filter_vlanid,
3068                 (void *)&cmd_rx_vlan_filter_portid,
3069                 NULL,
3070         },
3071 };
3072
3073 /* *** ENABLE HARDWARE INSERTION OF VLAN HEADER IN TX PACKETS *** */
3074 struct cmd_tx_vlan_set_result {
3075         cmdline_fixed_string_t tx_vlan;
3076         cmdline_fixed_string_t set;
3077         uint8_t port_id;
3078         uint16_t vlan_id;
3079 };
3080
3081 static void
3082 cmd_tx_vlan_set_parsed(void *parsed_result,
3083                        __attribute__((unused)) struct cmdline *cl,
3084                        __attribute__((unused)) void *data)
3085 {
3086         struct cmd_tx_vlan_set_result *res = parsed_result;
3087
3088         tx_vlan_set(res->port_id, res->vlan_id);
3089 }
3090
3091 cmdline_parse_token_string_t cmd_tx_vlan_set_tx_vlan =
3092         TOKEN_STRING_INITIALIZER(struct cmd_tx_vlan_set_result,
3093                                  tx_vlan, "tx_vlan");
3094 cmdline_parse_token_string_t cmd_tx_vlan_set_set =
3095         TOKEN_STRING_INITIALIZER(struct cmd_tx_vlan_set_result,
3096                                  set, "set");
3097 cmdline_parse_token_num_t cmd_tx_vlan_set_portid =
3098         TOKEN_NUM_INITIALIZER(struct cmd_tx_vlan_set_result,
3099                               port_id, UINT8);
3100 cmdline_parse_token_num_t cmd_tx_vlan_set_vlanid =
3101         TOKEN_NUM_INITIALIZER(struct cmd_tx_vlan_set_result,
3102                               vlan_id, UINT16);
3103
3104 cmdline_parse_inst_t cmd_tx_vlan_set = {
3105         .f = cmd_tx_vlan_set_parsed,
3106         .data = NULL,
3107         .help_str = "enable hardware insertion of a single VLAN header "
3108                 "with a given TAG Identifier in packets sent on a port",
3109         .tokens = {
3110                 (void *)&cmd_tx_vlan_set_tx_vlan,
3111                 (void *)&cmd_tx_vlan_set_set,
3112                 (void *)&cmd_tx_vlan_set_portid,
3113                 (void *)&cmd_tx_vlan_set_vlanid,
3114                 NULL,
3115         },
3116 };
3117
3118 /* *** ENABLE HARDWARE INSERTION OF Double VLAN HEADER IN TX PACKETS *** */
3119 struct cmd_tx_vlan_set_qinq_result {
3120         cmdline_fixed_string_t tx_vlan;
3121         cmdline_fixed_string_t set;
3122         uint8_t port_id;
3123         uint16_t vlan_id;
3124         uint16_t vlan_id_outer;
3125 };
3126
3127 static void
3128 cmd_tx_vlan_set_qinq_parsed(void *parsed_result,
3129                             __attribute__((unused)) struct cmdline *cl,
3130                             __attribute__((unused)) void *data)
3131 {
3132         struct cmd_tx_vlan_set_qinq_result *res = parsed_result;
3133
3134         tx_qinq_set(res->port_id, res->vlan_id, res->vlan_id_outer);
3135 }
3136
3137 cmdline_parse_token_string_t cmd_tx_vlan_set_qinq_tx_vlan =
3138         TOKEN_STRING_INITIALIZER(struct cmd_tx_vlan_set_qinq_result,
3139                 tx_vlan, "tx_vlan");
3140 cmdline_parse_token_string_t cmd_tx_vlan_set_qinq_set =
3141         TOKEN_STRING_INITIALIZER(struct cmd_tx_vlan_set_qinq_result,
3142                 set, "set");
3143 cmdline_parse_token_num_t cmd_tx_vlan_set_qinq_portid =
3144         TOKEN_NUM_INITIALIZER(struct cmd_tx_vlan_set_qinq_result,
3145                 port_id, UINT8);
3146 cmdline_parse_token_num_t cmd_tx_vlan_set_qinq_vlanid =
3147         TOKEN_NUM_INITIALIZER(struct cmd_tx_vlan_set_qinq_result,
3148                 vlan_id, UINT16);
3149 cmdline_parse_token_num_t cmd_tx_vlan_set_qinq_vlanid_outer =
3150         TOKEN_NUM_INITIALIZER(struct cmd_tx_vlan_set_qinq_result,
3151                 vlan_id_outer, UINT16);
3152
3153 cmdline_parse_inst_t cmd_tx_vlan_set_qinq = {
3154         .f = cmd_tx_vlan_set_qinq_parsed,
3155         .data = NULL,
3156         .help_str = "enable hardware insertion of double VLAN header "
3157                 "with given TAG Identifiers in packets sent on a port",
3158         .tokens = {
3159                 (void *)&cmd_tx_vlan_set_qinq_tx_vlan,
3160                 (void *)&cmd_tx_vlan_set_qinq_set,
3161                 (void *)&cmd_tx_vlan_set_qinq_portid,
3162                 (void *)&cmd_tx_vlan_set_qinq_vlanid,
3163                 (void *)&cmd_tx_vlan_set_qinq_vlanid_outer,
3164                 NULL,
3165         },
3166 };
3167
3168 /* *** ENABLE/DISABLE PORT BASED TX VLAN INSERTION *** */
3169 struct cmd_tx_vlan_set_pvid_result {
3170         cmdline_fixed_string_t tx_vlan;
3171         cmdline_fixed_string_t set;
3172         cmdline_fixed_string_t pvid;
3173         uint8_t port_id;
3174         uint16_t vlan_id;
3175         cmdline_fixed_string_t mode;
3176 };
3177
3178 static void
3179 cmd_tx_vlan_set_pvid_parsed(void *parsed_result,
3180                             __attribute__((unused)) struct cmdline *cl,
3181                             __attribute__((unused)) void *data)
3182 {
3183         struct cmd_tx_vlan_set_pvid_result *res = parsed_result;
3184
3185         if (strcmp(res->mode, "on") == 0)
3186                 tx_vlan_pvid_set(res->port_id, res->vlan_id, 1);
3187         else
3188                 tx_vlan_pvid_set(res->port_id, res->vlan_id, 0);
3189 }
3190
3191 cmdline_parse_token_string_t cmd_tx_vlan_set_pvid_tx_vlan =
3192         TOKEN_STRING_INITIALIZER(struct cmd_tx_vlan_set_pvid_result,
3193                                  tx_vlan, "tx_vlan");
3194 cmdline_parse_token_string_t cmd_tx_vlan_set_pvid_set =
3195         TOKEN_STRING_INITIALIZER(struct cmd_tx_vlan_set_pvid_result,
3196                                  set, "set");
3197 cmdline_parse_token_string_t cmd_tx_vlan_set_pvid_pvid =
3198         TOKEN_STRING_INITIALIZER(struct cmd_tx_vlan_set_pvid_result,
3199                                  pvid, "pvid");
3200 cmdline_parse_token_num_t cmd_tx_vlan_set_pvid_port_id =
3201         TOKEN_NUM_INITIALIZER(struct cmd_tx_vlan_set_pvid_result,
3202                              port_id, UINT8);
3203 cmdline_parse_token_num_t cmd_tx_vlan_set_pvid_vlan_id =
3204         TOKEN_NUM_INITIALIZER(struct cmd_tx_vlan_set_pvid_result,
3205                               vlan_id, UINT16);
3206 cmdline_parse_token_string_t cmd_tx_vlan_set_pvid_mode =
3207         TOKEN_STRING_INITIALIZER(struct cmd_tx_vlan_set_pvid_result,
3208                                  mode, "on#off");
3209
3210 cmdline_parse_inst_t cmd_tx_vlan_set_pvid = {
3211         .f = cmd_tx_vlan_set_pvid_parsed,
3212         .data = NULL,
3213         .help_str = "tx_vlan set pvid port_id vlan_id (on|off)",
3214         .tokens = {
3215                 (void *)&cmd_tx_vlan_set_pvid_tx_vlan,
3216                 (void *)&cmd_tx_vlan_set_pvid_set,
3217                 (void *)&cmd_tx_vlan_set_pvid_pvid,
3218                 (void *)&cmd_tx_vlan_set_pvid_port_id,
3219                 (void *)&cmd_tx_vlan_set_pvid_vlan_id,
3220                 (void *)&cmd_tx_vlan_set_pvid_mode,
3221                 NULL,
3222         },
3223 };
3224
3225 /* *** DISABLE HARDWARE INSERTION OF VLAN HEADER IN TX PACKETS *** */
3226 struct cmd_tx_vlan_reset_result {
3227         cmdline_fixed_string_t tx_vlan;
3228         cmdline_fixed_string_t reset;
3229         uint8_t port_id;
3230 };
3231
3232 static void
3233 cmd_tx_vlan_reset_parsed(void *parsed_result,
3234                          __attribute__((unused)) struct cmdline *cl,
3235                          __attribute__((unused)) void *data)
3236 {
3237         struct cmd_tx_vlan_reset_result *res = parsed_result;
3238
3239         tx_vlan_reset(res->port_id);
3240 }
3241
3242 cmdline_parse_token_string_t cmd_tx_vlan_reset_tx_vlan =
3243         TOKEN_STRING_INITIALIZER(struct cmd_tx_vlan_reset_result,
3244                                  tx_vlan, "tx_vlan");
3245 cmdline_parse_token_string_t cmd_tx_vlan_reset_reset =
3246         TOKEN_STRING_INITIALIZER(struct cmd_tx_vlan_reset_result,
3247                                  reset, "reset");
3248 cmdline_parse_token_num_t cmd_tx_vlan_reset_portid =
3249         TOKEN_NUM_INITIALIZER(struct cmd_tx_vlan_reset_result,
3250                               port_id, UINT8);
3251
3252 cmdline_parse_inst_t cmd_tx_vlan_reset = {
3253         .f = cmd_tx_vlan_reset_parsed,
3254         .data = NULL,
3255         .help_str = "disable hardware insertion of a VLAN header in packets "
3256         "sent on a port",
3257         .tokens = {
3258                 (void *)&cmd_tx_vlan_reset_tx_vlan,
3259                 (void *)&cmd_tx_vlan_reset_reset,
3260                 (void *)&cmd_tx_vlan_reset_portid,
3261                 NULL,
3262         },
3263 };
3264
3265
3266 /* *** ENABLE HARDWARE INSERTION OF CHECKSUM IN TX PACKETS *** */
3267 struct cmd_csum_result {
3268         cmdline_fixed_string_t csum;
3269         cmdline_fixed_string_t mode;
3270         cmdline_fixed_string_t proto;
3271         cmdline_fixed_string_t hwsw;
3272         uint8_t port_id;
3273 };
3274
3275 static void
3276 csum_show(int port_id)
3277 {
3278         struct rte_eth_dev_info dev_info;
3279         uint16_t ol_flags;
3280
3281         ol_flags = ports[port_id].tx_ol_flags;
3282         printf("Parse tunnel is %s\n",
3283                 (ol_flags & TESTPMD_TX_OFFLOAD_PARSE_TUNNEL) ? "on" : "off");
3284         printf("IP checksum offload is %s\n",
3285                 (ol_flags & TESTPMD_TX_OFFLOAD_IP_CKSUM) ? "hw" : "sw");
3286         printf("UDP checksum offload is %s\n",
3287                 (ol_flags & TESTPMD_TX_OFFLOAD_UDP_CKSUM) ? "hw" : "sw");
3288         printf("TCP checksum offload is %s\n",
3289                 (ol_flags & TESTPMD_TX_OFFLOAD_TCP_CKSUM) ? "hw" : "sw");
3290         printf("SCTP checksum offload is %s\n",
3291                 (ol_flags & TESTPMD_TX_OFFLOAD_SCTP_CKSUM) ? "hw" : "sw");
3292         printf("Outer-Ip checksum offload is %s\n",
3293                 (ol_flags & TESTPMD_TX_OFFLOAD_OUTER_IP_CKSUM) ? "hw" : "sw");
3294
3295         /* display warnings if configuration is not supported by the NIC */
3296         rte_eth_dev_info_get(port_id, &dev_info);
3297         if ((ol_flags & TESTPMD_TX_OFFLOAD_IP_CKSUM) &&
3298                 (dev_info.tx_offload_capa & DEV_TX_OFFLOAD_IPV4_CKSUM) == 0) {
3299                 printf("Warning: hardware IP checksum enabled but not "
3300                         "supported by port %d\n", port_id);
3301         }
3302         if ((ol_flags & TESTPMD_TX_OFFLOAD_UDP_CKSUM) &&
3303                 (dev_info.tx_offload_capa & DEV_TX_OFFLOAD_UDP_CKSUM) == 0) {
3304                 printf("Warning: hardware UDP checksum enabled but not "
3305                         "supported by port %d\n", port_id);
3306         }
3307         if ((ol_flags & TESTPMD_TX_OFFLOAD_TCP_CKSUM) &&
3308                 (dev_info.tx_offload_capa & DEV_TX_OFFLOAD_TCP_CKSUM) == 0) {
3309                 printf("Warning: hardware TCP checksum enabled but not "
3310                         "supported by port %d\n", port_id);
3311         }
3312         if ((ol_flags & TESTPMD_TX_OFFLOAD_SCTP_CKSUM) &&
3313                 (dev_info.tx_offload_capa & DEV_TX_OFFLOAD_SCTP_CKSUM) == 0) {
3314                 printf("Warning: hardware SCTP checksum enabled but not "
3315                         "supported by port %d\n", port_id);
3316         }
3317         if ((ol_flags & TESTPMD_TX_OFFLOAD_OUTER_IP_CKSUM) &&
3318                 (dev_info.tx_offload_capa & DEV_TX_OFFLOAD_OUTER_IPV4_CKSUM) == 0) {
3319                 printf("Warning: hardware outer IP checksum enabled but not "
3320                         "supported by port %d\n", port_id);
3321         }
3322 }
3323
3324 static void
3325 cmd_csum_parsed(void *parsed_result,
3326                        __attribute__((unused)) struct cmdline *cl,
3327                        __attribute__((unused)) void *data)
3328 {
3329         struct cmd_csum_result *res = parsed_result;
3330         int hw = 0;
3331         uint16_t mask = 0;
3332
3333         if (port_id_is_invalid(res->port_id, ENABLED_WARN)) {
3334                 printf("invalid port %d\n", res->port_id);
3335                 return;
3336         }
3337
3338         if (!strcmp(res->mode, "set")) {
3339
3340                 if (!strcmp(res->hwsw, "hw"))
3341                         hw = 1;
3342
3343                 if (!strcmp(res->proto, "ip")) {
3344                         mask = TESTPMD_TX_OFFLOAD_IP_CKSUM;
3345                 } else if (!strcmp(res->proto, "udp")) {
3346                         mask = TESTPMD_TX_OFFLOAD_UDP_CKSUM;
3347                 } else if (!strcmp(res->proto, "tcp")) {
3348                         mask = TESTPMD_TX_OFFLOAD_TCP_CKSUM;
3349                 } else if (!strcmp(res->proto, "sctp")) {
3350                         mask = TESTPMD_TX_OFFLOAD_SCTP_CKSUM;
3351                 } else if (!strcmp(res->proto, "outer-ip")) {
3352                         mask = TESTPMD_TX_OFFLOAD_OUTER_IP_CKSUM;
3353                 }
3354
3355                 if (hw)
3356                         ports[res->port_id].tx_ol_flags |= mask;
3357                 else
3358                         ports[res->port_id].tx_ol_flags &= (~mask);
3359         }
3360         csum_show(res->port_id);
3361 }
3362
3363 cmdline_parse_token_string_t cmd_csum_csum =
3364         TOKEN_STRING_INITIALIZER(struct cmd_csum_result,
3365                                 csum, "csum");
3366 cmdline_parse_token_string_t cmd_csum_mode =
3367         TOKEN_STRING_INITIALIZER(struct cmd_csum_result,
3368                                 mode, "set");
3369 cmdline_parse_token_string_t cmd_csum_proto =
3370         TOKEN_STRING_INITIALIZER(struct cmd_csum_result,
3371                                 proto, "ip#tcp#udp#sctp#outer-ip");
3372 cmdline_parse_token_string_t cmd_csum_hwsw =
3373         TOKEN_STRING_INITIALIZER(struct cmd_csum_result,
3374                                 hwsw, "hw#sw");
3375 cmdline_parse_token_num_t cmd_csum_portid =
3376         TOKEN_NUM_INITIALIZER(struct cmd_csum_result,
3377                                 port_id, UINT8);
3378
3379 cmdline_parse_inst_t cmd_csum_set = {
3380         .f = cmd_csum_parsed,
3381         .data = NULL,
3382         .help_str = "enable/disable hardware calculation of L3/L4 checksum when "
3383                 "using csum forward engine: csum set ip|tcp|udp|sctp|outer-ip hw|sw <port>",
3384         .tokens = {
3385                 (void *)&cmd_csum_csum,
3386                 (void *)&cmd_csum_mode,
3387                 (void *)&cmd_csum_proto,
3388                 (void *)&cmd_csum_hwsw,
3389                 (void *)&cmd_csum_portid,
3390                 NULL,
3391         },
3392 };
3393
3394 cmdline_parse_token_string_t cmd_csum_mode_show =
3395         TOKEN_STRING_INITIALIZER(struct cmd_csum_result,
3396                                 mode, "show");
3397
3398 cmdline_parse_inst_t cmd_csum_show = {
3399         .f = cmd_csum_parsed,
3400         .data = NULL,
3401         .help_str = "show checksum offload configuration: csum show <port>",
3402         .tokens = {
3403                 (void *)&cmd_csum_csum,
3404                 (void *)&cmd_csum_mode_show,
3405                 (void *)&cmd_csum_portid,
3406                 NULL,
3407         },
3408 };
3409
3410 /* Enable/disable tunnel parsing */
3411 struct cmd_csum_tunnel_result {
3412         cmdline_fixed_string_t csum;
3413         cmdline_fixed_string_t parse;
3414         cmdline_fixed_string_t onoff;
3415         uint8_t port_id;
3416 };
3417
3418 static void
3419 cmd_csum_tunnel_parsed(void *parsed_result,
3420                        __attribute__((unused)) struct cmdline *cl,
3421                        __attribute__((unused)) void *data)
3422 {
3423         struct cmd_csum_tunnel_result *res = parsed_result;
3424
3425         if (port_id_is_invalid(res->port_id, ENABLED_WARN))
3426                 return;
3427
3428         if (!strcmp(res->onoff, "on"))
3429                 ports[res->port_id].tx_ol_flags |=
3430                         TESTPMD_TX_OFFLOAD_PARSE_TUNNEL;
3431         else
3432                 ports[res->port_id].tx_ol_flags &=
3433                         (~TESTPMD_TX_OFFLOAD_PARSE_TUNNEL);
3434
3435         csum_show(res->port_id);
3436 }
3437
3438 cmdline_parse_token_string_t cmd_csum_tunnel_csum =
3439         TOKEN_STRING_INITIALIZER(struct cmd_csum_tunnel_result,
3440                                 csum, "csum");
3441 cmdline_parse_token_string_t cmd_csum_tunnel_parse =
3442         TOKEN_STRING_INITIALIZER(struct cmd_csum_tunnel_result,
3443                                 parse, "parse_tunnel");
3444 cmdline_parse_token_string_t cmd_csum_tunnel_onoff =
3445         TOKEN_STRING_INITIALIZER(struct cmd_csum_tunnel_result,
3446                                 onoff, "on#off");
3447 cmdline_parse_token_num_t cmd_csum_tunnel_portid =
3448         TOKEN_NUM_INITIALIZER(struct cmd_csum_tunnel_result,
3449                                 port_id, UINT8);
3450
3451 cmdline_parse_inst_t cmd_csum_tunnel = {
3452         .f = cmd_csum_tunnel_parsed,
3453         .data = NULL,
3454         .help_str = "enable/disable parsing of tunnels for csum engine: "
3455         "csum parse_tunnel on|off <tx-port>",
3456         .tokens = {
3457                 (void *)&cmd_csum_tunnel_csum,
3458                 (void *)&cmd_csum_tunnel_parse,
3459                 (void *)&cmd_csum_tunnel_onoff,
3460                 (void *)&cmd_csum_tunnel_portid,
3461                 NULL,
3462         },
3463 };
3464
3465 /* *** ENABLE HARDWARE SEGMENTATION IN TX PACKETS *** */
3466 struct cmd_tso_set_result {
3467         cmdline_fixed_string_t tso;
3468         cmdline_fixed_string_t mode;
3469         uint16_t tso_segsz;
3470         uint8_t port_id;
3471 };
3472
3473 static void
3474 cmd_tso_set_parsed(void *parsed_result,
3475                        __attribute__((unused)) struct cmdline *cl,
3476                        __attribute__((unused)) void *data)
3477 {
3478         struct cmd_tso_set_result *res = parsed_result;
3479         struct rte_eth_dev_info dev_info;
3480
3481         if (port_id_is_invalid(res->port_id, ENABLED_WARN))
3482                 return;
3483
3484         if (!strcmp(res->mode, "set"))
3485                 ports[res->port_id].tso_segsz = res->tso_segsz;
3486
3487         if (ports[res->port_id].tso_segsz == 0)
3488                 printf("TSO is disabled\n");
3489         else
3490                 printf("TSO segment size is %d\n",
3491                         ports[res->port_id].tso_segsz);
3492
3493         /* display warnings if configuration is not supported by the NIC */
3494         rte_eth_dev_info_get(res->port_id, &dev_info);
3495         if ((ports[res->port_id].tso_segsz != 0) &&
3496                 (dev_info.tx_offload_capa & DEV_TX_OFFLOAD_TCP_TSO) == 0) {
3497                 printf("Warning: TSO enabled but not "
3498                         "supported by port %d\n", res->port_id);
3499         }
3500 }
3501
3502 cmdline_parse_token_string_t cmd_tso_set_tso =
3503         TOKEN_STRING_INITIALIZER(struct cmd_tso_set_result,
3504                                 tso, "tso");
3505 cmdline_parse_token_string_t cmd_tso_set_mode =
3506         TOKEN_STRING_INITIALIZER(struct cmd_tso_set_result,
3507                                 mode, "set");
3508 cmdline_parse_token_num_t cmd_tso_set_tso_segsz =
3509         TOKEN_NUM_INITIALIZER(struct cmd_tso_set_result,
3510                                 tso_segsz, UINT16);
3511 cmdline_parse_token_num_t cmd_tso_set_portid =
3512         TOKEN_NUM_INITIALIZER(struct cmd_tso_set_result,
3513                                 port_id, UINT8);
3514
3515 cmdline_parse_inst_t cmd_tso_set = {
3516         .f = cmd_tso_set_parsed,
3517         .data = NULL,
3518         .help_str = "Set TSO segment size for csum engine (0 to disable): "
3519         "tso set <tso_segsz> <port>",
3520         .tokens = {
3521                 (void *)&cmd_tso_set_tso,
3522                 (void *)&cmd_tso_set_mode,
3523                 (void *)&cmd_tso_set_tso_segsz,
3524                 (void *)&cmd_tso_set_portid,
3525                 NULL,
3526         },
3527 };
3528
3529 cmdline_parse_token_string_t cmd_tso_show_mode =
3530         TOKEN_STRING_INITIALIZER(struct cmd_tso_set_result,
3531                                 mode, "show");
3532
3533
3534 cmdline_parse_inst_t cmd_tso_show = {
3535         .f = cmd_tso_set_parsed,
3536         .data = NULL,
3537         .help_str = "Show TSO segment size for csum engine: "
3538         "tso show <port>",
3539         .tokens = {
3540                 (void *)&cmd_tso_set_tso,
3541                 (void *)&cmd_tso_show_mode,
3542                 (void *)&cmd_tso_set_portid,
3543                 NULL,
3544         },
3545 };
3546
3547 /* *** ENABLE/DISABLE FLUSH ON RX STREAMS *** */
3548 struct cmd_set_flush_rx {
3549         cmdline_fixed_string_t set;
3550         cmdline_fixed_string_t flush_rx;
3551         cmdline_fixed_string_t mode;
3552 };
3553
3554 static void
3555 cmd_set_flush_rx_parsed(void *parsed_result,
3556                 __attribute__((unused)) struct cmdline *cl,
3557                 __attribute__((unused)) void *data)
3558 {
3559         struct cmd_set_flush_rx *res = parsed_result;
3560         no_flush_rx = (uint8_t)((strcmp(res->mode, "on") == 0) ? 0 : 1);
3561 }
3562
3563 cmdline_parse_token_string_t cmd_setflushrx_set =
3564         TOKEN_STRING_INITIALIZER(struct cmd_set_flush_rx,
3565                         set, "set");
3566 cmdline_parse_token_string_t cmd_setflushrx_flush_rx =
3567         TOKEN_STRING_INITIALIZER(struct cmd_set_flush_rx,
3568                         flush_rx, "flush_rx");
3569 cmdline_parse_token_string_t cmd_setflushrx_mode =
3570         TOKEN_STRING_INITIALIZER(struct cmd_set_flush_rx,
3571                         mode, "on#off");
3572
3573
3574 cmdline_parse_inst_t cmd_set_flush_rx = {
3575         .f = cmd_set_flush_rx_parsed,
3576         .help_str = "set flush_rx on|off: enable/disable flush on rx streams",
3577         .data = NULL,
3578         .tokens = {
3579                 (void *)&cmd_setflushrx_set,
3580                 (void *)&cmd_setflushrx_flush_rx,
3581                 (void *)&cmd_setflushrx_mode,
3582                 NULL,
3583         },
3584 };
3585
3586 /* *** ENABLE/DISABLE LINK STATUS CHECK *** */
3587 struct cmd_set_link_check {
3588         cmdline_fixed_string_t set;
3589         cmdline_fixed_string_t link_check;
3590         cmdline_fixed_string_t mode;
3591 };
3592
3593 static void
3594 cmd_set_link_check_parsed(void *parsed_result,
3595                 __attribute__((unused)) struct cmdline *cl,
3596                 __attribute__((unused)) void *data)
3597 {
3598         struct cmd_set_link_check *res = parsed_result;
3599         no_link_check = (uint8_t)((strcmp(res->mode, "on") == 0) ? 0 : 1);
3600 }
3601
3602 cmdline_parse_token_string_t cmd_setlinkcheck_set =
3603         TOKEN_STRING_INITIALIZER(struct cmd_set_link_check,
3604                         set, "set");
3605 cmdline_parse_token_string_t cmd_setlinkcheck_link_check =
3606         TOKEN_STRING_INITIALIZER(struct cmd_set_link_check,
3607                         link_check, "link_check");
3608 cmdline_parse_token_string_t cmd_setlinkcheck_mode =
3609         TOKEN_STRING_INITIALIZER(struct cmd_set_link_check,
3610                         mode, "on#off");
3611
3612
3613 cmdline_parse_inst_t cmd_set_link_check = {
3614         .f = cmd_set_link_check_parsed,
3615         .help_str = "set link_check on|off: enable/disable link status check "
3616                     "when starting/stopping a port",
3617         .data = NULL,
3618         .tokens = {
3619                 (void *)&cmd_setlinkcheck_set,
3620                 (void *)&cmd_setlinkcheck_link_check,
3621                 (void *)&cmd_setlinkcheck_mode,
3622                 NULL,
3623         },
3624 };
3625
3626 #ifdef RTE_NIC_BYPASS
3627 /* *** SET NIC BYPASS MODE *** */
3628 struct cmd_set_bypass_mode_result {
3629         cmdline_fixed_string_t set;
3630         cmdline_fixed_string_t bypass;
3631         cmdline_fixed_string_t mode;
3632         cmdline_fixed_string_t value;
3633         uint8_t port_id;
3634 };
3635
3636 static void
3637 cmd_set_bypass_mode_parsed(void *parsed_result,
3638                 __attribute__((unused)) struct cmdline *cl,
3639                 __attribute__((unused)) void *data)
3640 {
3641         struct cmd_set_bypass_mode_result *res = parsed_result;
3642         portid_t port_id = res->port_id;
3643         uint32_t bypass_mode = RTE_BYPASS_MODE_NORMAL;
3644
3645         if (!bypass_is_supported(port_id))
3646                 return;
3647
3648         if (!strcmp(res->value, "bypass"))
3649                 bypass_mode = RTE_BYPASS_MODE_BYPASS;
3650         else if (!strcmp(res->value, "isolate"))
3651                 bypass_mode = RTE_BYPASS_MODE_ISOLATE;
3652         else
3653                 bypass_mode = RTE_BYPASS_MODE_NORMAL;
3654
3655         /* Set the bypass mode for the relevant port. */
3656         if (0 != rte_eth_dev_bypass_state_set(port_id, &bypass_mode)) {
3657                 printf("\t Failed to set bypass mode for port = %d.\n", port_id);
3658         }
3659 }
3660
3661 cmdline_parse_token_string_t cmd_setbypass_mode_set =
3662         TOKEN_STRING_INITIALIZER(struct cmd_set_bypass_mode_result,
3663                         set, "set");
3664 cmdline_parse_token_string_t cmd_setbypass_mode_bypass =
3665         TOKEN_STRING_INITIALIZER(struct cmd_set_bypass_mode_result,
3666                         bypass, "bypass");
3667 cmdline_parse_token_string_t cmd_setbypass_mode_mode =
3668         TOKEN_STRING_INITIALIZER(struct cmd_set_bypass_mode_result,
3669                         mode, "mode");
3670 cmdline_parse_token_string_t cmd_setbypass_mode_value =
3671         TOKEN_STRING_INITIALIZER(struct cmd_set_bypass_mode_result,
3672                         value, "normal#bypass#isolate");
3673 cmdline_parse_token_num_t cmd_setbypass_mode_port =
3674         TOKEN_NUM_INITIALIZER(struct cmd_set_bypass_mode_result,
3675                                 port_id, UINT8);
3676
3677 cmdline_parse_inst_t cmd_set_bypass_mode = {
3678         .f = cmd_set_bypass_mode_parsed,
3679         .help_str = "set bypass mode (normal|bypass|isolate) (port_id): "
3680                     "Set the NIC bypass mode for port_id",
3681         .data = NULL,
3682         .tokens = {
3683                 (void *)&cmd_setbypass_mode_set,
3684                 (void *)&cmd_setbypass_mode_bypass,
3685                 (void *)&cmd_setbypass_mode_mode,
3686                 (void *)&cmd_setbypass_mode_value,
3687                 (void *)&cmd_setbypass_mode_port,
3688                 NULL,
3689         },
3690 };
3691
3692 /* *** SET NIC BYPASS EVENT *** */
3693 struct cmd_set_bypass_event_result {
3694         cmdline_fixed_string_t set;
3695         cmdline_fixed_string_t bypass;
3696         cmdline_fixed_string_t event;
3697         cmdline_fixed_string_t event_value;
3698         cmdline_fixed_string_t mode;
3699         cmdline_fixed_string_t mode_value;
3700         uint8_t port_id;
3701 };
3702
3703 static void
3704 cmd_set_bypass_event_parsed(void *parsed_result,
3705                 __attribute__((unused)) struct cmdline *cl,
3706                 __attribute__((unused)) void *data)
3707 {
3708         int32_t rc;
3709         struct cmd_set_bypass_event_result *res = parsed_result;
3710         portid_t port_id = res->port_id;
3711         uint32_t bypass_event = RTE_BYPASS_EVENT_NONE;
3712         uint32_t bypass_mode = RTE_BYPASS_MODE_NORMAL;
3713
3714         if (!bypass_is_supported(port_id))
3715                 return;
3716
3717         if (!strcmp(res->event_value, "timeout"))
3718                 bypass_event = RTE_BYPASS_EVENT_TIMEOUT;
3719         else if (!strcmp(res->event_value, "os_on"))
3720                 bypass_event = RTE_BYPASS_EVENT_OS_ON;
3721         else if (!strcmp(res->event_value, "os_off"))
3722                 bypass_event = RTE_BYPASS_EVENT_OS_OFF;
3723         else if (!strcmp(res->event_value, "power_on"))
3724                 bypass_event = RTE_BYPASS_EVENT_POWER_ON;
3725         else if (!strcmp(res->event_value, "power_off"))
3726                 bypass_event = RTE_BYPASS_EVENT_POWER_OFF;
3727         else
3728                 bypass_event = RTE_BYPASS_EVENT_NONE;
3729
3730         if (!strcmp(res->mode_value, "bypass"))
3731                 bypass_mode = RTE_BYPASS_MODE_BYPASS;
3732         else if (!strcmp(res->mode_value, "isolate"))
3733                 bypass_mode = RTE_BYPASS_MODE_ISOLATE;
3734         else
3735                 bypass_mode = RTE_BYPASS_MODE_NORMAL;
3736
3737         /* Set the watchdog timeout. */
3738         if (bypass_event == RTE_BYPASS_EVENT_TIMEOUT) {
3739
3740                 rc = -EINVAL;
3741                 if (!RTE_BYPASS_TMT_VALID(bypass_timeout) ||
3742                                 (rc = rte_eth_dev_wd_timeout_store(port_id,
3743                                 bypass_timeout)) != 0) {
3744                         printf("Failed to set timeout value %u "
3745                                 "for port %d, errto code: %d.\n",
3746                                 bypass_timeout, port_id, rc);
3747                 }
3748         }
3749
3750         /* Set the bypass event to transition to bypass mode. */
3751         if (0 != rte_eth_dev_bypass_event_store(port_id,
3752                         bypass_event, bypass_mode)) {
3753                 printf("\t Failed to set bypass event for port = %d.\n", port_id);
3754         }
3755
3756 }
3757
3758 cmdline_parse_token_string_t cmd_setbypass_event_set =
3759         TOKEN_STRING_INITIALIZER(struct cmd_set_bypass_event_result,
3760                         set, "set");
3761 cmdline_parse_token_string_t cmd_setbypass_event_bypass =
3762         TOKEN_STRING_INITIALIZER(struct cmd_set_bypass_event_result,
3763                         bypass, "bypass");
3764 cmdline_parse_token_string_t cmd_setbypass_event_event =
3765         TOKEN_STRING_INITIALIZER(struct cmd_set_bypass_event_result,
3766                         event, "event");
3767 cmdline_parse_token_string_t cmd_setbypass_event_event_value =
3768         TOKEN_STRING_INITIALIZER(struct cmd_set_bypass_event_result,
3769                         event_value, "none#timeout#os_off#os_on#power_on#power_off");
3770 cmdline_parse_token_string_t cmd_setbypass_event_mode =
3771         TOKEN_STRING_INITIALIZER(struct cmd_set_bypass_event_result,
3772                         mode, "mode");
3773 cmdline_parse_token_string_t cmd_setbypass_event_mode_value =
3774         TOKEN_STRING_INITIALIZER(struct cmd_set_bypass_event_result,
3775                         mode_value, "normal#bypass#isolate");
3776 cmdline_parse_token_num_t cmd_setbypass_event_port =
3777         TOKEN_NUM_INITIALIZER(struct cmd_set_bypass_event_result,
3778                                 port_id, UINT8);
3779
3780 cmdline_parse_inst_t cmd_set_bypass_event = {
3781         .f = cmd_set_bypass_event_parsed,
3782         .help_str = "set bypass event (timeout|os_on|os_off|power_on|power_off) "
3783                     "mode (normal|bypass|isolate) (port_id): "
3784                     "Set the NIC bypass event mode for port_id",
3785         .data = NULL,
3786         .tokens = {
3787                 (void *)&cmd_setbypass_event_set,
3788                 (void *)&cmd_setbypass_event_bypass,
3789                 (void *)&cmd_setbypass_event_event,
3790                 (void *)&cmd_setbypass_event_event_value,
3791                 (void *)&cmd_setbypass_event_mode,
3792                 (void *)&cmd_setbypass_event_mode_value,
3793                 (void *)&cmd_setbypass_event_port,
3794                 NULL,
3795         },
3796 };
3797
3798
3799 /* *** SET NIC BYPASS TIMEOUT *** */
3800 struct cmd_set_bypass_timeout_result {
3801         cmdline_fixed_string_t set;
3802         cmdline_fixed_string_t bypass;
3803         cmdline_fixed_string_t timeout;
3804         cmdline_fixed_string_t value;
3805 };
3806
3807 static void
3808 cmd_set_bypass_timeout_parsed(void *parsed_result,
3809                 __attribute__((unused)) struct cmdline *cl,
3810                 __attribute__((unused)) void *data)
3811 {
3812         struct cmd_set_bypass_timeout_result *res = parsed_result;
3813
3814         if (!strcmp(res->value, "1.5"))
3815                 bypass_timeout = RTE_BYPASS_TMT_1_5_SEC;
3816         else if (!strcmp(res->value, "2"))
3817                 bypass_timeout = RTE_BYPASS_TMT_2_SEC;
3818         else if (!strcmp(res->value, "3"))
3819                 bypass_timeout = RTE_BYPASS_TMT_3_SEC;
3820         else if (!strcmp(res->value, "4"))
3821                 bypass_timeout = RTE_BYPASS_TMT_4_SEC;
3822         else if (!strcmp(res->value, "8"))
3823                 bypass_timeout = RTE_BYPASS_TMT_8_SEC;
3824         else if (!strcmp(res->value, "16"))
3825                 bypass_timeout = RTE_BYPASS_TMT_16_SEC;
3826         else if (!strcmp(res->value, "32"))
3827                 bypass_timeout = RTE_BYPASS_TMT_32_SEC;
3828         else
3829                 bypass_timeout = RTE_BYPASS_TMT_OFF;
3830 }
3831
3832 cmdline_parse_token_string_t cmd_setbypass_timeout_set =
3833         TOKEN_STRING_INITIALIZER(struct cmd_set_bypass_timeout_result,
3834                         set, "set");
3835 cmdline_parse_token_string_t cmd_setbypass_timeout_bypass =
3836         TOKEN_STRING_INITIALIZER(struct cmd_set_bypass_timeout_result,
3837                         bypass, "bypass");
3838 cmdline_parse_token_string_t cmd_setbypass_timeout_timeout =
3839         TOKEN_STRING_INITIALIZER(struct cmd_set_bypass_timeout_result,
3840                         timeout, "timeout");
3841 cmdline_parse_token_string_t cmd_setbypass_timeout_value =
3842         TOKEN_STRING_INITIALIZER(struct cmd_set_bypass_timeout_result,
3843                         value, "0#1.5#2#3#4#8#16#32");
3844
3845 cmdline_parse_inst_t cmd_set_bypass_timeout = {
3846         .f = cmd_set_bypass_timeout_parsed,
3847         .help_str = "set bypass timeout (0|1.5|2|3|4|8|16|32) seconds: "
3848                     "Set the NIC bypass watchdog timeout",
3849         .data = NULL,
3850         .tokens = {
3851                 (void *)&cmd_setbypass_timeout_set,
3852                 (void *)&cmd_setbypass_timeout_bypass,
3853                 (void *)&cmd_setbypass_timeout_timeout,
3854                 (void *)&cmd_setbypass_timeout_value,
3855                 NULL,
3856         },
3857 };
3858
3859 /* *** SHOW NIC BYPASS MODE *** */
3860 struct cmd_show_bypass_config_result {
3861         cmdline_fixed_string_t show;
3862         cmdline_fixed_string_t bypass;
3863         cmdline_fixed_string_t config;
3864         uint8_t port_id;
3865 };
3866
3867 static void
3868 cmd_show_bypass_config_parsed(void *parsed_result,
3869                 __attribute__((unused)) struct cmdline *cl,
3870                 __attribute__((unused)) void *data)
3871 {
3872         struct cmd_show_bypass_config_result *res = parsed_result;
3873         uint32_t event_mode;
3874         uint32_t bypass_mode;
3875         portid_t port_id = res->port_id;
3876         uint32_t timeout = bypass_timeout;
3877         int i;
3878
3879         static const char * const timeouts[RTE_BYPASS_TMT_NUM] =
3880                 {"off", "1.5", "2", "3", "4", "8", "16", "32"};
3881         static const char * const modes[RTE_BYPASS_MODE_NUM] =
3882                 {"UNKNOWN", "normal", "bypass", "isolate"};
3883         static const char * const events[RTE_BYPASS_EVENT_NUM] = {
3884                 "NONE",
3885                 "OS/board on",
3886                 "power supply on",
3887                 "OS/board off",
3888                 "power supply off",
3889                 "timeout"};
3890         int num_events = (sizeof events) / (sizeof events[0]);
3891
3892         if (!bypass_is_supported(port_id))
3893                 return;
3894
3895         /* Display the bypass mode.*/
3896         if (0 != rte_eth_dev_bypass_state_show(port_id, &bypass_mode)) {
3897                 printf("\tFailed to get bypass mode for port = %d\n", port_id);
3898                 return;
3899         }
3900         else {
3901                 if (!RTE_BYPASS_MODE_VALID(bypass_mode))
3902                         bypass_mode = RTE_BYPASS_MODE_NONE;
3903
3904                 printf("\tbypass mode    = %s\n",  modes[bypass_mode]);
3905         }
3906
3907         /* Display the bypass timeout.*/
3908         if (!RTE_BYPASS_TMT_VALID(timeout))
3909                 timeout = RTE_BYPASS_TMT_OFF;
3910
3911         printf("\tbypass timeout = %s\n", timeouts[timeout]);
3912
3913         /* Display the bypass events and associated modes. */
3914         for (i = RTE_BYPASS_EVENT_START; i < num_events; i++) {
3915
3916                 if (0 != rte_eth_dev_bypass_event_show(port_id, i, &event_mode)) {
3917                         printf("\tFailed to get bypass mode for event = %s\n",
3918                                 events[i]);
3919                 } else {
3920                         if (!RTE_BYPASS_MODE_VALID(event_mode))
3921                                 event_mode = RTE_BYPASS_MODE_NONE;
3922
3923                         printf("\tbypass event: %-16s = %s\n", events[i],
3924                                 modes[event_mode]);
3925                 }
3926         }
3927 }
3928
3929 cmdline_parse_token_string_t cmd_showbypass_config_show =
3930         TOKEN_STRING_INITIALIZER(struct cmd_show_bypass_config_result,
3931                         show, "show");
3932 cmdline_parse_token_string_t cmd_showbypass_config_bypass =
3933         TOKEN_STRING_INITIALIZER(struct cmd_show_bypass_config_result,
3934                         bypass, "bypass");
3935 cmdline_parse_token_string_t cmd_showbypass_config_config =
3936         TOKEN_STRING_INITIALIZER(struct cmd_show_bypass_config_result,
3937                         config, "config");
3938 cmdline_parse_token_num_t cmd_showbypass_config_port =
3939         TOKEN_NUM_INITIALIZER(struct cmd_show_bypass_config_result,
3940                                 port_id, UINT8);
3941
3942 cmdline_parse_inst_t cmd_show_bypass_config = {
3943         .f = cmd_show_bypass_config_parsed,
3944         .help_str = "show bypass config (port_id): "
3945                     "Show the NIC bypass config for port_id",
3946         .data = NULL,
3947         .tokens = {
3948                 (void *)&cmd_showbypass_config_show,
3949                 (void *)&cmd_showbypass_config_bypass,
3950                 (void *)&cmd_showbypass_config_config,
3951                 (void *)&cmd_showbypass_config_port,
3952                 NULL,
3953         },
3954 };
3955 #endif
3956
3957 #ifdef RTE_LIBRTE_PMD_BOND
3958 /* *** SET BONDING MODE *** */
3959 struct cmd_set_bonding_mode_result {
3960         cmdline_fixed_string_t set;
3961         cmdline_fixed_string_t bonding;
3962         cmdline_fixed_string_t mode;
3963         uint8_t value;
3964         uint8_t port_id;
3965 };
3966
3967 static void cmd_set_bonding_mode_parsed(void *parsed_result,
3968                 __attribute__((unused))  struct cmdline *cl,
3969                 __attribute__((unused)) void *data)
3970 {
3971         struct cmd_set_bonding_mode_result *res = parsed_result;
3972         portid_t port_id = res->port_id;
3973
3974         /* Set the bonding mode for the relevant port. */
3975         if (0 != rte_eth_bond_mode_set(port_id, res->value))
3976                 printf("\t Failed to set bonding mode for port = %d.\n", port_id);
3977 }
3978
3979 cmdline_parse_token_string_t cmd_setbonding_mode_set =
3980 TOKEN_STRING_INITIALIZER(struct cmd_set_bonding_mode_result,
3981                 set, "set");
3982 cmdline_parse_token_string_t cmd_setbonding_mode_bonding =
3983 TOKEN_STRING_INITIALIZER(struct cmd_set_bonding_mode_result,
3984                 bonding, "bonding");
3985 cmdline_parse_token_string_t cmd_setbonding_mode_mode =
3986 TOKEN_STRING_INITIALIZER(struct cmd_set_bonding_mode_result,
3987                 mode, "mode");
3988 cmdline_parse_token_num_t cmd_setbonding_mode_value =
3989 TOKEN_NUM_INITIALIZER(struct cmd_set_bonding_mode_result,
3990                 value, UINT8);
3991 cmdline_parse_token_num_t cmd_setbonding_mode_port =
3992 TOKEN_NUM_INITIALIZER(struct cmd_set_bonding_mode_result,
3993                 port_id, UINT8);
3994
3995 cmdline_parse_inst_t cmd_set_bonding_mode = {
3996                 .f = cmd_set_bonding_mode_parsed,
3997                 .help_str = "set bonding mode (mode_value) (port_id): Set the bonding mode for port_id",
3998                 .data = NULL,
3999                 .tokens = {
4000                                 (void *) &cmd_setbonding_mode_set,
4001                                 (void *) &cmd_setbonding_mode_bonding,
4002                                 (void *) &cmd_setbonding_mode_mode,
4003                                 (void *) &cmd_setbonding_mode_value,
4004                                 (void *) &cmd_setbonding_mode_port,
4005                                 NULL
4006                 }
4007 };
4008
4009 /* *** SET BALANCE XMIT POLICY *** */
4010 struct cmd_set_bonding_balance_xmit_policy_result {
4011         cmdline_fixed_string_t set;
4012         cmdline_fixed_string_t bonding;
4013         cmdline_fixed_string_t balance_xmit_policy;
4014         uint8_t port_id;
4015         cmdline_fixed_string_t policy;
4016 };
4017
4018 static void cmd_set_bonding_balance_xmit_policy_parsed(void *parsed_result,
4019                 __attribute__((unused))  struct cmdline *cl,
4020                 __attribute__((unused)) void *data)
4021 {
4022         struct cmd_set_bonding_balance_xmit_policy_result *res = parsed_result;
4023         portid_t port_id = res->port_id;
4024         uint8_t policy;
4025
4026         if (!strcmp(res->policy, "l2")) {
4027                 policy = BALANCE_XMIT_POLICY_LAYER2;
4028         } else if (!strcmp(res->policy, "l23")) {
4029                 policy = BALANCE_XMIT_POLICY_LAYER23;
4030         } else if (!strcmp(res->policy, "l34")) {
4031                 policy = BALANCE_XMIT_POLICY_LAYER34;
4032         } else {
4033                 printf("\t Invalid xmit policy selection");
4034                 return;
4035         }
4036
4037         /* Set the bonding mode for the relevant port. */
4038         if (0 != rte_eth_bond_xmit_policy_set(port_id, policy)) {
4039                 printf("\t Failed to set bonding balance xmit policy for port = %d.\n",
4040                                 port_id);
4041         }
4042 }
4043
4044 cmdline_parse_token_string_t cmd_setbonding_balance_xmit_policy_set =
4045 TOKEN_STRING_INITIALIZER(struct cmd_set_bonding_balance_xmit_policy_result,
4046                 set, "set");
4047 cmdline_parse_token_string_t cmd_setbonding_balance_xmit_policy_bonding =
4048 TOKEN_STRING_INITIALIZER(struct cmd_set_bonding_balance_xmit_policy_result,
4049                 bonding, "bonding");
4050 cmdline_parse_token_string_t cmd_setbonding_balance_xmit_policy_balance_xmit_policy =
4051 TOKEN_STRING_INITIALIZER(struct cmd_set_bonding_balance_xmit_policy_result,
4052                 balance_xmit_policy, "balance_xmit_policy");
4053 cmdline_parse_token_num_t cmd_setbonding_balance_xmit_policy_port =
4054 TOKEN_NUM_INITIALIZER(struct cmd_set_bonding_balance_xmit_policy_result,
4055                 port_id, UINT8);
4056 cmdline_parse_token_string_t cmd_setbonding_balance_xmit_policy_policy =
4057 TOKEN_STRING_INITIALIZER(struct cmd_set_bonding_balance_xmit_policy_result,
4058                 policy, "l2#l23#l34");
4059
4060 cmdline_parse_inst_t cmd_set_balance_xmit_policy = {
4061                 .f = cmd_set_bonding_balance_xmit_policy_parsed,
4062                 .help_str = "set bonding balance_xmit_policy (port_id) (policy_value): Set the bonding balance_xmit_policy for port_id",
4063                 .data = NULL,
4064                 .tokens = {
4065                                 (void *)&cmd_setbonding_balance_xmit_policy_set,
4066                                 (void *)&cmd_setbonding_balance_xmit_policy_bonding,
4067                                 (void *)&cmd_setbonding_balance_xmit_policy_balance_xmit_policy,
4068                                 (void *)&cmd_setbonding_balance_xmit_policy_port,
4069                                 (void *)&cmd_setbonding_balance_xmit_policy_policy,
4070                                 NULL
4071                 }
4072 };
4073
4074 /* *** SHOW NIC BONDING CONFIGURATION *** */
4075 struct cmd_show_bonding_config_result {
4076         cmdline_fixed_string_t show;
4077         cmdline_fixed_string_t bonding;
4078         cmdline_fixed_string_t config;
4079         uint8_t port_id;
4080 };
4081
4082 static void cmd_show_bonding_config_parsed(void *parsed_result,
4083                 __attribute__((unused))  struct cmdline *cl,
4084                 __attribute__((unused)) void *data)
4085 {
4086         struct cmd_show_bonding_config_result *res = parsed_result;
4087         int bonding_mode;
4088         uint8_t slaves[RTE_MAX_ETHPORTS];
4089         int num_slaves, num_active_slaves;
4090         int primary_id;
4091         int i;
4092         portid_t port_id = res->port_id;
4093
4094         /* Display the bonding mode.*/
4095         bonding_mode = rte_eth_bond_mode_get(port_id);
4096         if (bonding_mode < 0) {
4097                 printf("\tFailed to get bonding mode for port = %d\n", port_id);
4098                 return;
4099         } else
4100                 printf("\tBonding mode: %d\n", bonding_mode);
4101
4102         if (bonding_mode == BONDING_MODE_BALANCE) {
4103                 int balance_xmit_policy;
4104
4105                 balance_xmit_policy = rte_eth_bond_xmit_policy_get(port_id);
4106                 if (balance_xmit_policy < 0) {
4107                         printf("\tFailed to get balance xmit policy for port = %d\n",
4108                                         port_id);
4109                         return;
4110                 } else {
4111                         printf("\tBalance Xmit Policy: ");
4112
4113                         switch (balance_xmit_policy) {
4114                         case BALANCE_XMIT_POLICY_LAYER2:
4115                                 printf("BALANCE_XMIT_POLICY_LAYER2");
4116                                 break;
4117                         case BALANCE_XMIT_POLICY_LAYER23:
4118                                 printf("BALANCE_XMIT_POLICY_LAYER23");
4119                                 break;
4120                         case BALANCE_XMIT_POLICY_LAYER34:
4121                                 printf("BALANCE_XMIT_POLICY_LAYER34");
4122                                 break;
4123                         }
4124                         printf("\n");
4125                 }
4126         }
4127
4128         num_slaves = rte_eth_bond_slaves_get(port_id, slaves, RTE_MAX_ETHPORTS);
4129
4130         if (num_slaves < 0) {
4131                 printf("\tFailed to get slave list for port = %d\n", port_id);
4132                 return;
4133         }
4134         if (num_slaves > 0) {
4135                 printf("\tSlaves (%d): [", num_slaves);
4136                 for (i = 0; i < num_slaves - 1; i++)
4137                         printf("%d ", slaves[i]);
4138
4139                 printf("%d]\n", slaves[num_slaves - 1]);
4140         } else {
4141                 printf("\tSlaves: []\n");
4142
4143         }
4144
4145         num_active_slaves = rte_eth_bond_active_slaves_get(port_id, slaves,
4146                         RTE_MAX_ETHPORTS);
4147
4148         if (num_active_slaves < 0) {
4149                 printf("\tFailed to get active slave list for port = %d\n", port_id);
4150                 return;
4151         }
4152         if (num_active_slaves > 0) {
4153                 printf("\tActive Slaves (%d): [", num_active_slaves);
4154                 for (i = 0; i < num_active_slaves - 1; i++)
4155                         printf("%d ", slaves[i]);
4156
4157                 printf("%d]\n", slaves[num_active_slaves - 1]);
4158
4159         } else {
4160                 printf("\tActive Slaves: []\n");
4161
4162         }
4163
4164         primary_id = rte_eth_bond_primary_get(port_id);
4165         if (primary_id < 0) {
4166                 printf("\tFailed to get primary slave for port = %d\n", port_id);
4167                 return;
4168         } else
4169                 printf("\tPrimary: [%d]\n", primary_id);
4170
4171 }
4172
4173 cmdline_parse_token_string_t cmd_showbonding_config_show =
4174 TOKEN_STRING_INITIALIZER(struct cmd_show_bonding_config_result,
4175                 show, "show");
4176 cmdline_parse_token_string_t cmd_showbonding_config_bonding =
4177 TOKEN_STRING_INITIALIZER(struct cmd_show_bonding_config_result,
4178                 bonding, "bonding");
4179 cmdline_parse_token_string_t cmd_showbonding_config_config =
4180 TOKEN_STRING_INITIALIZER(struct cmd_show_bonding_config_result,
4181                 config, "config");
4182 cmdline_parse_token_num_t cmd_showbonding_config_port =
4183 TOKEN_NUM_INITIALIZER(struct cmd_show_bonding_config_result,
4184                 port_id, UINT8);
4185
4186 cmdline_parse_inst_t cmd_show_bonding_config = {
4187                 .f = cmd_show_bonding_config_parsed,
4188                 .help_str =     "show bonding config (port_id): Show the bonding config for port_id",
4189                 .data = NULL,
4190                 .tokens = {
4191                                 (void *)&cmd_showbonding_config_show,
4192                                 (void *)&cmd_showbonding_config_bonding,
4193                                 (void *)&cmd_showbonding_config_config,
4194                                 (void *)&cmd_showbonding_config_port,
4195                                 NULL
4196                 }
4197 };
4198
4199 /* *** SET BONDING PRIMARY *** */
4200 struct cmd_set_bonding_primary_result {
4201         cmdline_fixed_string_t set;
4202         cmdline_fixed_string_t bonding;
4203         cmdline_fixed_string_t primary;
4204         uint8_t slave_id;
4205         uint8_t port_id;
4206 };
4207
4208 static void cmd_set_bonding_primary_parsed(void *parsed_result,
4209                 __attribute__((unused))  struct cmdline *cl,
4210                 __attribute__((unused)) void *data)
4211 {
4212         struct cmd_set_bonding_primary_result *res = parsed_result;
4213         portid_t master_port_id = res->port_id;
4214         portid_t slave_port_id = res->slave_id;
4215
4216         /* Set the primary slave for a bonded device. */
4217         if (0 != rte_eth_bond_primary_set(master_port_id, slave_port_id)) {
4218                 printf("\t Failed to set primary slave for port = %d.\n",
4219                                 master_port_id);
4220                 return;
4221         }
4222         init_port_config();
4223 }
4224
4225 cmdline_parse_token_string_t cmd_setbonding_primary_set =
4226 TOKEN_STRING_INITIALIZER(struct cmd_set_bonding_primary_result,
4227                 set, "set");
4228 cmdline_parse_token_string_t cmd_setbonding_primary_bonding =
4229 TOKEN_STRING_INITIALIZER(struct cmd_set_bonding_primary_result,
4230                 bonding, "bonding");
4231 cmdline_parse_token_string_t cmd_setbonding_primary_primary =
4232 TOKEN_STRING_INITIALIZER(struct cmd_set_bonding_primary_result,
4233                 primary, "primary");
4234 cmdline_parse_token_num_t cmd_setbonding_primary_slave =
4235 TOKEN_NUM_INITIALIZER(struct cmd_set_bonding_primary_result,
4236                 slave_id, UINT8);
4237 cmdline_parse_token_num_t cmd_setbonding_primary_port =
4238 TOKEN_NUM_INITIALIZER(struct cmd_set_bonding_primary_result,
4239                 port_id, UINT8);
4240
4241 cmdline_parse_inst_t cmd_set_bonding_primary = {
4242                 .f = cmd_set_bonding_primary_parsed,
4243                 .help_str = "set bonding primary (slave_id) (port_id): Set the primary slave for port_id",
4244                 .data = NULL,
4245                 .tokens = {
4246                                 (void *)&cmd_setbonding_primary_set,
4247                                 (void *)&cmd_setbonding_primary_bonding,
4248                                 (void *)&cmd_setbonding_primary_primary,
4249                                 (void *)&cmd_setbonding_primary_slave,
4250                                 (void *)&cmd_setbonding_primary_port,
4251                                 NULL
4252                 }
4253 };
4254
4255 /* *** ADD SLAVE *** */
4256 struct cmd_add_bonding_slave_result {
4257         cmdline_fixed_string_t add;
4258         cmdline_fixed_string_t bonding;
4259         cmdline_fixed_string_t slave;
4260         uint8_t slave_id;
4261         uint8_t port_id;
4262 };
4263
4264 static void cmd_add_bonding_slave_parsed(void *parsed_result,
4265                 __attribute__((unused))  struct cmdline *cl,
4266                 __attribute__((unused)) void *data)
4267 {
4268         struct cmd_add_bonding_slave_result *res = parsed_result;
4269         portid_t master_port_id = res->port_id;
4270         portid_t slave_port_id = res->slave_id;
4271
4272         /* Set the primary slave for a bonded device. */
4273         if (0 != rte_eth_bond_slave_add(master_port_id, slave_port_id)) {
4274                 printf("\t Failed to add slave %d to master port = %d.\n",
4275                                 slave_port_id, master_port_id);
4276                 return;
4277         }
4278         init_port_config();
4279         set_port_slave_flag(slave_port_id);
4280 }
4281
4282 cmdline_parse_token_string_t cmd_addbonding_slave_add =
4283 TOKEN_STRING_INITIALIZER(struct cmd_add_bonding_slave_result,
4284                 add, "add");
4285 cmdline_parse_token_string_t cmd_addbonding_slave_bonding =
4286 TOKEN_STRING_INITIALIZER(struct cmd_add_bonding_slave_result,
4287                 bonding, "bonding");
4288 cmdline_parse_token_string_t cmd_addbonding_slave_slave =
4289 TOKEN_STRING_INITIALIZER(struct cmd_add_bonding_slave_result,
4290                 slave, "slave");
4291 cmdline_parse_token_num_t cmd_addbonding_slave_slaveid =
4292 TOKEN_NUM_INITIALIZER(struct cmd_add_bonding_slave_result,
4293                 slave_id, UINT8);
4294 cmdline_parse_token_num_t cmd_addbonding_slave_port =
4295 TOKEN_NUM_INITIALIZER(struct cmd_add_bonding_slave_result,
4296                 port_id, UINT8);
4297
4298 cmdline_parse_inst_t cmd_add_bonding_slave = {
4299                 .f = cmd_add_bonding_slave_parsed,
4300                 .help_str = "add bonding slave (slave_id) (port_id): Add a slave device to a bonded device",
4301                 .data = NULL,
4302                 .tokens = {
4303                                 (void *)&cmd_addbonding_slave_add,
4304                                 (void *)&cmd_addbonding_slave_bonding,
4305                                 (void *)&cmd_addbonding_slave_slave,
4306                                 (void *)&cmd_addbonding_slave_slaveid,
4307                                 (void *)&cmd_addbonding_slave_port,
4308                                 NULL
4309                 }
4310 };
4311
4312 /* *** REMOVE SLAVE *** */
4313 struct cmd_remove_bonding_slave_result {
4314         cmdline_fixed_string_t remove;
4315         cmdline_fixed_string_t bonding;
4316         cmdline_fixed_string_t slave;
4317         uint8_t slave_id;
4318         uint8_t port_id;
4319 };
4320
4321 static void cmd_remove_bonding_slave_parsed(void *parsed_result,
4322                 __attribute__((unused))  struct cmdline *cl,
4323                 __attribute__((unused)) void *data)
4324 {
4325         struct cmd_remove_bonding_slave_result *res = parsed_result;
4326         portid_t master_port_id = res->port_id;
4327         portid_t slave_port_id = res->slave_id;
4328
4329         /* Set the primary slave for a bonded device. */
4330         if (0 != rte_eth_bond_slave_remove(master_port_id, slave_port_id)) {
4331                 printf("\t Failed to remove slave %d from master port = %d.\n",
4332                                 slave_port_id, master_port_id);
4333                 return;
4334         }
4335         init_port_config();
4336         clear_port_slave_flag(slave_port_id);
4337 }
4338
4339 cmdline_parse_token_string_t cmd_removebonding_slave_remove =
4340                 TOKEN_STRING_INITIALIZER(struct cmd_remove_bonding_slave_result,
4341                                 remove, "remove");
4342 cmdline_parse_token_string_t cmd_removebonding_slave_bonding =
4343                 TOKEN_STRING_INITIALIZER(struct cmd_remove_bonding_slave_result,
4344                                 bonding, "bonding");
4345 cmdline_parse_token_string_t cmd_removebonding_slave_slave =
4346                 TOKEN_STRING_INITIALIZER(struct cmd_remove_bonding_slave_result,
4347                                 slave, "slave");
4348 cmdline_parse_token_num_t cmd_removebonding_slave_slaveid =
4349                 TOKEN_NUM_INITIALIZER(struct cmd_remove_bonding_slave_result,
4350                                 slave_id, UINT8);
4351 cmdline_parse_token_num_t cmd_removebonding_slave_port =
4352                 TOKEN_NUM_INITIALIZER(struct cmd_remove_bonding_slave_result,
4353                                 port_id, UINT8);
4354
4355 cmdline_parse_inst_t cmd_remove_bonding_slave = {
4356                 .f = cmd_remove_bonding_slave_parsed,
4357                 .help_str = "remove bonding slave (slave_id) (port_id): Remove a slave device from a bonded device",
4358                 .data = NULL,
4359                 .tokens = {
4360                                 (void *)&cmd_removebonding_slave_remove,
4361                                 (void *)&cmd_removebonding_slave_bonding,
4362                                 (void *)&cmd_removebonding_slave_slave,
4363                                 (void *)&cmd_removebonding_slave_slaveid,
4364                                 (void *)&cmd_removebonding_slave_port,
4365                                 NULL
4366                 }
4367 };
4368
4369 /* *** CREATE BONDED DEVICE *** */
4370 struct cmd_create_bonded_device_result {
4371         cmdline_fixed_string_t create;
4372         cmdline_fixed_string_t bonded;
4373         cmdline_fixed_string_t device;
4374         uint8_t mode;
4375         uint8_t socket;
4376 };
4377
4378 static int bond_dev_num = 0;
4379
4380 static void cmd_create_bonded_device_parsed(void *parsed_result,
4381                 __attribute__((unused))  struct cmdline *cl,
4382                 __attribute__((unused)) void *data)
4383 {
4384         struct cmd_create_bonded_device_result *res = parsed_result;
4385         char ethdev_name[RTE_ETH_NAME_MAX_LEN];
4386         int port_id;
4387
4388         if (test_done == 0) {
4389                 printf("Please stop forwarding first\n");
4390                 return;
4391         }
4392
4393         snprintf(ethdev_name, RTE_ETH_NAME_MAX_LEN, "eth_bond_testpmd_%d",
4394                         bond_dev_num++);
4395
4396         /* Create a new bonded device. */
4397         port_id = rte_eth_bond_create(ethdev_name, res->mode, res->socket);
4398         if (port_id < 0) {
4399                 printf("\t Failed to create bonded device.\n");
4400                 return;
4401         } else {
4402                 printf("Created new bonded device %s on (port %d).\n", ethdev_name,
4403                                 port_id);
4404
4405                 /* Update number of ports */
4406                 nb_ports = rte_eth_dev_count();
4407                 reconfig(port_id, res->socket);
4408                 rte_eth_promiscuous_enable(port_id);
4409                 ports[port_id].enabled = 1;
4410         }
4411
4412 }
4413
4414 cmdline_parse_token_string_t cmd_createbonded_device_create =
4415                 TOKEN_STRING_INITIALIZER(struct cmd_create_bonded_device_result,
4416                                 create, "create");
4417 cmdline_parse_token_string_t cmd_createbonded_device_bonded =
4418                 TOKEN_STRING_INITIALIZER(struct cmd_create_bonded_device_result,
4419                                 bonded, "bonded");
4420 cmdline_parse_token_string_t cmd_createbonded_device_device =
4421                 TOKEN_STRING_INITIALIZER(struct cmd_create_bonded_device_result,
4422                                 device, "device");
4423 cmdline_parse_token_num_t cmd_createbonded_device_mode =
4424                 TOKEN_NUM_INITIALIZER(struct cmd_create_bonded_device_result,
4425                                 mode, UINT8);
4426 cmdline_parse_token_num_t cmd_createbonded_device_socket =
4427                 TOKEN_NUM_INITIALIZER(struct cmd_create_bonded_device_result,
4428                                 socket, UINT8);
4429
4430 cmdline_parse_inst_t cmd_create_bonded_device = {
4431                 .f = cmd_create_bonded_device_parsed,
4432                 .help_str = "create bonded device (mode) (socket): Create a new bonded device with specific bonding mode and socket",
4433                 .data = NULL,
4434                 .tokens = {
4435                                 (void *)&cmd_createbonded_device_create,
4436                                 (void *)&cmd_createbonded_device_bonded,
4437                                 (void *)&cmd_createbonded_device_device,
4438                                 (void *)&cmd_createbonded_device_mode,
4439                                 (void *)&cmd_createbonded_device_socket,
4440                                 NULL
4441                 }
4442 };
4443
4444 /* *** SET MAC ADDRESS IN BONDED DEVICE *** */
4445 struct cmd_set_bond_mac_addr_result {
4446         cmdline_fixed_string_t set;
4447         cmdline_fixed_string_t bonding;
4448         cmdline_fixed_string_t mac_addr;
4449         uint8_t port_num;
4450         struct ether_addr address;
4451 };
4452
4453 static void cmd_set_bond_mac_addr_parsed(void *parsed_result,
4454                 __attribute__((unused))  struct cmdline *cl,
4455                 __attribute__((unused)) void *data)
4456 {
4457         struct cmd_set_bond_mac_addr_result *res = parsed_result;
4458         int ret;
4459
4460         if (port_id_is_invalid(res->port_num, ENABLED_WARN))
4461                 return;
4462
4463         ret = rte_eth_bond_mac_address_set(res->port_num, &res->address);
4464
4465         /* check the return value and print it if is < 0 */
4466         if (ret < 0)
4467                 printf("set_bond_mac_addr error: (%s)\n", strerror(-ret));
4468 }
4469
4470 cmdline_parse_token_string_t cmd_set_bond_mac_addr_set =
4471                 TOKEN_STRING_INITIALIZER(struct cmd_set_bond_mac_addr_result, set, "set");
4472 cmdline_parse_token_string_t cmd_set_bond_mac_addr_bonding =
4473                 TOKEN_STRING_INITIALIZER(struct cmd_set_bond_mac_addr_result, bonding,
4474                                 "bonding");
4475 cmdline_parse_token_string_t cmd_set_bond_mac_addr_mac =
4476                 TOKEN_STRING_INITIALIZER(struct cmd_set_bond_mac_addr_result, mac_addr,
4477                                 "mac_addr");
4478 cmdline_parse_token_num_t cmd_set_bond_mac_addr_portnum =
4479                 TOKEN_NUM_INITIALIZER(struct cmd_set_bond_mac_addr_result, port_num, UINT8);
4480 cmdline_parse_token_etheraddr_t cmd_set_bond_mac_addr_addr =
4481                 TOKEN_ETHERADDR_INITIALIZER(struct cmd_set_bond_mac_addr_result, address);
4482
4483 cmdline_parse_inst_t cmd_set_bond_mac_addr = {
4484                 .f = cmd_set_bond_mac_addr_parsed,
4485                 .data = (void *) 0,
4486                 .help_str = "set bonding mac_addr (port_id) (address): ",
4487                 .tokens = {
4488                                 (void *)&cmd_set_bond_mac_addr_set,
4489                                 (void *)&cmd_set_bond_mac_addr_bonding,
4490                                 (void *)&cmd_set_bond_mac_addr_mac,
4491                                 (void *)&cmd_set_bond_mac_addr_portnum,
4492                                 (void *)&cmd_set_bond_mac_addr_addr,
4493                                 NULL
4494                 }
4495 };
4496
4497
4498 /* *** SET LINK STATUS MONITORING POLLING PERIOD ON BONDED DEVICE *** */
4499 struct cmd_set_bond_mon_period_result {
4500         cmdline_fixed_string_t set;
4501         cmdline_fixed_string_t bonding;
4502         cmdline_fixed_string_t mon_period;
4503         uint8_t port_num;
4504         uint32_t period_ms;
4505 };
4506
4507 static void cmd_set_bond_mon_period_parsed(void *parsed_result,
4508                 __attribute__((unused))  struct cmdline *cl,
4509                 __attribute__((unused)) void *data)
4510 {
4511         struct cmd_set_bond_mon_period_result *res = parsed_result;
4512         int ret;
4513
4514         if (res->port_num >= nb_ports) {
4515                 printf("Port id %d must be less than %d\n", res->port_num, nb_ports);
4516                 return;
4517         }
4518
4519         ret = rte_eth_bond_link_monitoring_set(res->port_num, res->period_ms);
4520
4521         /* check the return value and print it if is < 0 */
4522         if (ret < 0)
4523                 printf("set_bond_mac_addr error: (%s)\n", strerror(-ret));
4524 }
4525
4526 cmdline_parse_token_string_t cmd_set_bond_mon_period_set =
4527                 TOKEN_STRING_INITIALIZER(struct cmd_set_bond_mon_period_result,
4528                                 set, "set");
4529 cmdline_parse_token_string_t cmd_set_bond_mon_period_bonding =
4530                 TOKEN_STRING_INITIALIZER(struct cmd_set_bond_mon_period_result,
4531                                 bonding, "bonding");
4532 cmdline_parse_token_string_t cmd_set_bond_mon_period_mon_period =
4533                 TOKEN_STRING_INITIALIZER(struct cmd_set_bond_mon_period_result,
4534                                 mon_period,     "mon_period");
4535 cmdline_parse_token_num_t cmd_set_bond_mon_period_portnum =
4536                 TOKEN_NUM_INITIALIZER(struct cmd_set_bond_mon_period_result,
4537                                 port_num, UINT8);
4538 cmdline_parse_token_num_t cmd_set_bond_mon_period_period_ms =
4539                 TOKEN_NUM_INITIALIZER(struct cmd_set_bond_mon_period_result,
4540                                 period_ms, UINT32);
4541
4542 cmdline_parse_inst_t cmd_set_bond_mon_period = {
4543                 .f = cmd_set_bond_mon_period_parsed,
4544                 .data = (void *) 0,
4545                 .help_str = "set bonding mon_period (port_id) (period_ms): ",
4546                 .tokens = {
4547                                 (void *)&cmd_set_bond_mon_period_set,
4548                                 (void *)&cmd_set_bond_mon_period_bonding,
4549                                 (void *)&cmd_set_bond_mon_period_mon_period,
4550                                 (void *)&cmd_set_bond_mon_period_portnum,
4551                                 (void *)&cmd_set_bond_mon_period_period_ms,
4552                                 NULL
4553                 }
4554 };
4555
4556 #endif /* RTE_LIBRTE_PMD_BOND */
4557
4558 /* *** SET FORWARDING MODE *** */
4559 struct cmd_set_fwd_mode_result {
4560         cmdline_fixed_string_t set;
4561         cmdline_fixed_string_t fwd;
4562         cmdline_fixed_string_t mode;
4563 };
4564
4565 static void cmd_set_fwd_mode_parsed(void *parsed_result,
4566                                     __attribute__((unused)) struct cmdline *cl,
4567                                     __attribute__((unused)) void *data)
4568 {
4569         struct cmd_set_fwd_mode_result *res = parsed_result;
4570
4571         set_pkt_forwarding_mode(res->mode);
4572 }
4573
4574 cmdline_parse_token_string_t cmd_setfwd_set =
4575         TOKEN_STRING_INITIALIZER(struct cmd_set_fwd_mode_result, set, "set");
4576 cmdline_parse_token_string_t cmd_setfwd_fwd =
4577         TOKEN_STRING_INITIALIZER(struct cmd_set_fwd_mode_result, fwd, "fwd");
4578 cmdline_parse_token_string_t cmd_setfwd_mode =
4579         TOKEN_STRING_INITIALIZER(struct cmd_set_fwd_mode_result, mode,
4580                 "" /* defined at init */);
4581
4582 cmdline_parse_inst_t cmd_set_fwd_mode = {
4583         .f = cmd_set_fwd_mode_parsed,
4584         .data = NULL,
4585         .help_str = NULL, /* defined at init */
4586         .tokens = {
4587                 (void *)&cmd_setfwd_set,
4588                 (void *)&cmd_setfwd_fwd,
4589                 (void *)&cmd_setfwd_mode,
4590                 NULL,
4591         },
4592 };
4593
4594 static void cmd_set_fwd_mode_init(void)
4595 {
4596         char *modes, *c;
4597         static char token[128];
4598         static char help[256];
4599         cmdline_parse_token_string_t *token_struct;
4600
4601         modes = list_pkt_forwarding_modes();
4602         snprintf(help, sizeof help, "set fwd %s - "
4603                 "set packet forwarding mode", modes);
4604         cmd_set_fwd_mode.help_str = help;
4605
4606         /* string token separator is # */
4607         for (c = token; *modes != '\0'; modes++)
4608                 if (*modes == '|')
4609                         *c++ = '#';
4610                 else
4611                         *c++ = *modes;
4612         token_struct = (cmdline_parse_token_string_t*)cmd_set_fwd_mode.tokens[2];
4613         token_struct->string_data.str = token;
4614 }
4615
4616 /* *** SET BURST TX DELAY TIME RETRY NUMBER *** */
4617 struct cmd_set_burst_tx_retry_result {
4618         cmdline_fixed_string_t set;
4619         cmdline_fixed_string_t burst;
4620         cmdline_fixed_string_t tx;
4621         cmdline_fixed_string_t delay;
4622         uint32_t time;
4623         cmdline_fixed_string_t retry;
4624         uint32_t retry_num;
4625 };
4626
4627 static void cmd_set_burst_tx_retry_parsed(void *parsed_result,
4628                                         __attribute__((unused)) struct cmdline *cl,
4629                                         __attribute__((unused)) void *data)
4630 {
4631         struct cmd_set_burst_tx_retry_result *res = parsed_result;
4632
4633         if (!strcmp(res->set, "set") && !strcmp(res->burst, "burst")
4634                 && !strcmp(res->tx, "tx")) {
4635                 if (!strcmp(res->delay, "delay"))
4636                         burst_tx_delay_time = res->time;
4637                 if (!strcmp(res->retry, "retry"))
4638                         burst_tx_retry_num = res->retry_num;
4639         }
4640
4641 }
4642
4643 cmdline_parse_token_string_t cmd_set_burst_tx_retry_set =
4644         TOKEN_STRING_INITIALIZER(struct cmd_set_burst_tx_retry_result, set, "set");
4645 cmdline_parse_token_string_t cmd_set_burst_tx_retry_burst =
4646         TOKEN_STRING_INITIALIZER(struct cmd_set_burst_tx_retry_result, burst,
4647                                  "burst");
4648 cmdline_parse_token_string_t cmd_set_burst_tx_retry_tx =
4649         TOKEN_STRING_INITIALIZER(struct cmd_set_burst_tx_retry_result, tx, "tx");
4650 cmdline_parse_token_string_t cmd_set_burst_tx_retry_delay =
4651         TOKEN_STRING_INITIALIZER(struct cmd_set_burst_tx_retry_result, delay, "delay");
4652 cmdline_parse_token_num_t cmd_set_burst_tx_retry_time =
4653         TOKEN_NUM_INITIALIZER(struct cmd_set_burst_tx_retry_result, time, UINT32);
4654 cmdline_parse_token_string_t cmd_set_burst_tx_retry_retry =
4655         TOKEN_STRING_INITIALIZER(struct cmd_set_burst_tx_retry_result, retry, "retry");
4656 cmdline_parse_token_num_t cmd_set_burst_tx_retry_retry_num =
4657         TOKEN_NUM_INITIALIZER(struct cmd_set_burst_tx_retry_result, retry_num, UINT32);
4658
4659 cmdline_parse_inst_t cmd_set_burst_tx_retry = {
4660         .f = cmd_set_burst_tx_retry_parsed,
4661         .help_str = "set burst tx delay (time_by_useconds) retry (retry_num)",
4662         .tokens = {
4663                 (void *)&cmd_set_burst_tx_retry_set,
4664                 (void *)&cmd_set_burst_tx_retry_burst,
4665                 (void *)&cmd_set_burst_tx_retry_tx,
4666                 (void *)&cmd_set_burst_tx_retry_delay,
4667                 (void *)&cmd_set_burst_tx_retry_time,
4668                 (void *)&cmd_set_burst_tx_retry_retry,
4669                 (void *)&cmd_set_burst_tx_retry_retry_num,
4670                 NULL,
4671         },
4672 };
4673
4674 /* *** SET PROMISC MODE *** */
4675 struct cmd_set_promisc_mode_result {
4676         cmdline_fixed_string_t set;
4677         cmdline_fixed_string_t promisc;
4678         cmdline_fixed_string_t port_all; /* valid if "allports" argument == 1 */
4679         uint8_t port_num;                /* valid if "allports" argument == 0 */
4680         cmdline_fixed_string_t mode;
4681 };
4682
4683 static void cmd_set_promisc_mode_parsed(void *parsed_result,
4684                                         __attribute__((unused)) struct cmdline *cl,
4685                                         void *allports)
4686 {
4687         struct cmd_set_promisc_mode_result *res = parsed_result;
4688         int enable;
4689         portid_t i;
4690
4691         if (!strcmp(res->mode, "on"))
4692                 enable = 1;
4693         else
4694                 enable = 0;
4695
4696         /* all ports */
4697         if (allports) {
4698                 FOREACH_PORT(i, ports) {
4699                         if (enable)
4700                                 rte_eth_promiscuous_enable(i);
4701                         else
4702                                 rte_eth_promiscuous_disable(i);
4703                 }
4704         }
4705         else {
4706                 if (enable)
4707                         rte_eth_promiscuous_enable(res->port_num);
4708                 else
4709                         rte_eth_promiscuous_disable(res->port_num);
4710         }
4711 }
4712
4713 cmdline_parse_token_string_t cmd_setpromisc_set =
4714         TOKEN_STRING_INITIALIZER(struct cmd_set_promisc_mode_result, set, "set");
4715 cmdline_parse_token_string_t cmd_setpromisc_promisc =
4716         TOKEN_STRING_INITIALIZER(struct cmd_set_promisc_mode_result, promisc,
4717                                  "promisc");
4718 cmdline_parse_token_string_t cmd_setpromisc_portall =
4719         TOKEN_STRING_INITIALIZER(struct cmd_set_promisc_mode_result, port_all,
4720                                  "all");
4721 cmdline_parse_token_num_t cmd_setpromisc_portnum =
4722         TOKEN_NUM_INITIALIZER(struct cmd_set_promisc_mode_result, port_num,
4723                               UINT8);
4724 cmdline_parse_token_string_t cmd_setpromisc_mode =
4725         TOKEN_STRING_INITIALIZER(struct cmd_set_promisc_mode_result, mode,
4726                                  "on#off");
4727
4728 cmdline_parse_inst_t cmd_set_promisc_mode_all = {
4729         .f = cmd_set_promisc_mode_parsed,
4730         .data = (void *)1,
4731         .help_str = "set promisc all on|off: set promisc mode for all ports",
4732         .tokens = {
4733                 (void *)&cmd_setpromisc_set,
4734                 (void *)&cmd_setpromisc_promisc,
4735                 (void *)&cmd_setpromisc_portall,
4736                 (void *)&cmd_setpromisc_mode,
4737                 NULL,
4738         },
4739 };
4740
4741 cmdline_parse_inst_t cmd_set_promisc_mode_one = {
4742         .f = cmd_set_promisc_mode_parsed,
4743         .data = (void *)0,
4744         .help_str = "set promisc X on|off: set promisc mode on port X",
4745         .tokens = {
4746                 (void *)&cmd_setpromisc_set,
4747                 (void *)&cmd_setpromisc_promisc,
4748                 (void *)&cmd_setpromisc_portnum,
4749                 (void *)&cmd_setpromisc_mode,
4750                 NULL,
4751         },
4752 };
4753
4754 /* *** SET ALLMULTI MODE *** */
4755 struct cmd_set_allmulti_mode_result {
4756         cmdline_fixed_string_t set;
4757         cmdline_fixed_string_t allmulti;
4758         cmdline_fixed_string_t port_all; /* valid if "allports" argument == 1 */
4759         uint8_t port_num;                /* valid if "allports" argument == 0 */
4760         cmdline_fixed_string_t mode;
4761 };
4762
4763 static void cmd_set_allmulti_mode_parsed(void *parsed_result,
4764                                         __attribute__((unused)) struct cmdline *cl,
4765                                         void *allports)
4766 {
4767         struct cmd_set_allmulti_mode_result *res = parsed_result;
4768         int enable;
4769         portid_t i;
4770
4771         if (!strcmp(res->mode, "on"))
4772                 enable = 1;
4773         else
4774                 enable = 0;
4775
4776         /* all ports */
4777         if (allports) {
4778                 FOREACH_PORT(i, ports) {
4779                         if (enable)
4780                                 rte_eth_allmulticast_enable(i);
4781                         else
4782                                 rte_eth_allmulticast_disable(i);
4783                 }
4784         }
4785         else {
4786                 if (enable)
4787                         rte_eth_allmulticast_enable(res->port_num);
4788                 else
4789                         rte_eth_allmulticast_disable(res->port_num);
4790         }
4791 }
4792
4793 cmdline_parse_token_string_t cmd_setallmulti_set =
4794         TOKEN_STRING_INITIALIZER(struct cmd_set_allmulti_mode_result, set, "set");
4795 cmdline_parse_token_string_t cmd_setallmulti_allmulti =
4796         TOKEN_STRING_INITIALIZER(struct cmd_set_allmulti_mode_result, allmulti,
4797                                  "allmulti");
4798 cmdline_parse_token_string_t cmd_setallmulti_portall =
4799         TOKEN_STRING_INITIALIZER(struct cmd_set_allmulti_mode_result, port_all,
4800                                  "all");
4801 cmdline_parse_token_num_t cmd_setallmulti_portnum =
4802         TOKEN_NUM_INITIALIZER(struct cmd_set_allmulti_mode_result, port_num,
4803                               UINT8);
4804 cmdline_parse_token_string_t cmd_setallmulti_mode =
4805         TOKEN_STRING_INITIALIZER(struct cmd_set_allmulti_mode_result, mode,
4806                                  "on#off");
4807
4808 cmdline_parse_inst_t cmd_set_allmulti_mode_all = {
4809         .f = cmd_set_allmulti_mode_parsed,
4810         .data = (void *)1,
4811         .help_str = "set allmulti all on|off: set allmulti mode for all ports",
4812         .tokens = {
4813                 (void *)&cmd_setallmulti_set,
4814                 (void *)&cmd_setallmulti_allmulti,
4815                 (void *)&cmd_setallmulti_portall,
4816                 (void *)&cmd_setallmulti_mode,
4817                 NULL,
4818         },
4819 };
4820
4821 cmdline_parse_inst_t cmd_set_allmulti_mode_one = {
4822         .f = cmd_set_allmulti_mode_parsed,
4823         .data = (void *)0,
4824         .help_str = "set allmulti X on|off: set allmulti mode on port X",
4825         .tokens = {
4826                 (void *)&cmd_setallmulti_set,
4827                 (void *)&cmd_setallmulti_allmulti,
4828                 (void *)&cmd_setallmulti_portnum,
4829                 (void *)&cmd_setallmulti_mode,
4830                 NULL,
4831         },
4832 };
4833
4834 /* *** SETUP ETHERNET LINK FLOW CONTROL *** */
4835 struct cmd_link_flow_ctrl_set_result {
4836         cmdline_fixed_string_t set;
4837         cmdline_fixed_string_t flow_ctrl;
4838         cmdline_fixed_string_t rx;
4839         cmdline_fixed_string_t rx_lfc_mode;
4840         cmdline_fixed_string_t tx;
4841         cmdline_fixed_string_t tx_lfc_mode;
4842         cmdline_fixed_string_t mac_ctrl_frame_fwd;
4843         cmdline_fixed_string_t mac_ctrl_frame_fwd_mode;
4844         cmdline_fixed_string_t autoneg_str;
4845         cmdline_fixed_string_t autoneg;
4846         cmdline_fixed_string_t hw_str;
4847         uint32_t high_water;
4848         cmdline_fixed_string_t lw_str;
4849         uint32_t low_water;
4850         cmdline_fixed_string_t pt_str;
4851         uint16_t pause_time;
4852         cmdline_fixed_string_t xon_str;
4853         uint16_t send_xon;
4854         uint8_t  port_id;
4855 };
4856
4857 cmdline_parse_token_string_t cmd_lfc_set_set =
4858         TOKEN_STRING_INITIALIZER(struct cmd_link_flow_ctrl_set_result,
4859                                 set, "set");
4860 cmdline_parse_token_string_t cmd_lfc_set_flow_ctrl =
4861         TOKEN_STRING_INITIALIZER(struct cmd_link_flow_ctrl_set_result,
4862                                 flow_ctrl, "flow_ctrl");
4863 cmdline_parse_token_string_t cmd_lfc_set_rx =
4864         TOKEN_STRING_INITIALIZER(struct cmd_link_flow_ctrl_set_result,
4865                                 rx, "rx");
4866 cmdline_parse_token_string_t cmd_lfc_set_rx_mode =
4867         TOKEN_STRING_INITIALIZER(struct cmd_link_flow_ctrl_set_result,
4868                                 rx_lfc_mode, "on#off");
4869 cmdline_parse_token_string_t cmd_lfc_set_tx =
4870         TOKEN_STRING_INITIALIZER(struct cmd_link_flow_ctrl_set_result,
4871                                 tx, "tx");
4872 cmdline_parse_token_string_t cmd_lfc_set_tx_mode =
4873         TOKEN_STRING_INITIALIZER(struct cmd_link_flow_ctrl_set_result,
4874                                 tx_lfc_mode, "on#off");
4875 cmdline_parse_token_string_t cmd_lfc_set_high_water_str =
4876         TOKEN_STRING_INITIALIZER(struct cmd_link_flow_ctrl_set_result,
4877                                 hw_str, "high_water");
4878 cmdline_parse_token_num_t cmd_lfc_set_high_water =
4879         TOKEN_NUM_INITIALIZER(struct cmd_link_flow_ctrl_set_result,
4880                                 high_water, UINT32);
4881 cmdline_parse_token_string_t cmd_lfc_set_low_water_str =
4882         TOKEN_STRING_INITIALIZER(struct cmd_link_flow_ctrl_set_result,
4883                                 lw_str, "low_water");
4884 cmdline_parse_token_num_t cmd_lfc_set_low_water =
4885         TOKEN_NUM_INITIALIZER(struct cmd_link_flow_ctrl_set_result,
4886                                 low_water, UINT32);
4887 cmdline_parse_token_string_t cmd_lfc_set_pause_time_str =
4888         TOKEN_STRING_INITIALIZER(struct cmd_link_flow_ctrl_set_result,
4889                                 pt_str, "pause_time");
4890 cmdline_parse_token_num_t cmd_lfc_set_pause_time =
4891         TOKEN_NUM_INITIALIZER(struct cmd_link_flow_ctrl_set_result,
4892                                 pause_time, UINT16);
4893 cmdline_parse_token_string_t cmd_lfc_set_send_xon_str =
4894         TOKEN_STRING_INITIALIZER(struct cmd_link_flow_ctrl_set_result,
4895                                 xon_str, "send_xon");
4896 cmdline_parse_token_num_t cmd_lfc_set_send_xon =
4897         TOKEN_NUM_INITIALIZER(struct cmd_link_flow_ctrl_set_result,
4898                                 send_xon, UINT16);
4899 cmdline_parse_token_string_t cmd_lfc_set_mac_ctrl_frame_fwd_mode =
4900         TOKEN_STRING_INITIALIZER(struct cmd_link_flow_ctrl_set_result,
4901                                 mac_ctrl_frame_fwd, "mac_ctrl_frame_fwd");
4902 cmdline_parse_token_string_t cmd_lfc_set_mac_ctrl_frame_fwd =
4903         TOKEN_STRING_INITIALIZER(struct cmd_link_flow_ctrl_set_result,
4904                                 mac_ctrl_frame_fwd_mode, "on#off");
4905 cmdline_parse_token_string_t cmd_lfc_set_autoneg_str =
4906         TOKEN_STRING_INITIALIZER(struct cmd_link_flow_ctrl_set_result,
4907                                 autoneg_str, "autoneg");
4908 cmdline_parse_token_string_t cmd_lfc_set_autoneg =
4909         TOKEN_STRING_INITIALIZER(struct cmd_link_flow_ctrl_set_result,
4910                                 autoneg, "on#off");
4911 cmdline_parse_token_num_t cmd_lfc_set_portid =
4912         TOKEN_NUM_INITIALIZER(struct cmd_link_flow_ctrl_set_result,
4913                                 port_id, UINT8);
4914
4915 /* forward declaration */
4916 static void
4917 cmd_link_flow_ctrl_set_parsed(void *parsed_result, struct cmdline *cl,
4918                               void *data);
4919
4920 cmdline_parse_inst_t cmd_link_flow_control_set = {
4921         .f = cmd_link_flow_ctrl_set_parsed,
4922         .data = NULL,
4923         .help_str = "Configure the Ethernet flow control: set flow_ctrl rx on|off \
4924 tx on|off high_water low_water pause_time send_xon mac_ctrl_frame_fwd on|off \
4925 autoneg on|off port_id",
4926         .tokens = {
4927                 (void *)&cmd_lfc_set_set,
4928                 (void *)&cmd_lfc_set_flow_ctrl,
4929                 (void *)&cmd_lfc_set_rx,
4930                 (void *)&cmd_lfc_set_rx_mode,
4931                 (void *)&cmd_lfc_set_tx,
4932                 (void *)&cmd_lfc_set_tx_mode,
4933                 (void *)&cmd_lfc_set_high_water,
4934                 (void *)&cmd_lfc_set_low_water,
4935                 (void *)&cmd_lfc_set_pause_time,
4936                 (void *)&cmd_lfc_set_send_xon,
4937                 (void *)&cmd_lfc_set_mac_ctrl_frame_fwd_mode,
4938                 (void *)&cmd_lfc_set_mac_ctrl_frame_fwd,
4939                 (void *)&cmd_lfc_set_autoneg_str,
4940                 (void *)&cmd_lfc_set_autoneg,
4941                 (void *)&cmd_lfc_set_portid,
4942                 NULL,
4943         },
4944 };
4945
4946 cmdline_parse_inst_t cmd_link_flow_control_set_rx = {
4947         .f = cmd_link_flow_ctrl_set_parsed,
4948         .data = (void *)&cmd_link_flow_control_set_rx,
4949         .help_str = "Change rx flow control parameter: set flow_ctrl "
4950                     "rx on|off port_id",
4951         .tokens = {
4952                 (void *)&cmd_lfc_set_set,
4953                 (void *)&cmd_lfc_set_flow_ctrl,
4954                 (void *)&cmd_lfc_set_rx,
4955                 (void *)&cmd_lfc_set_rx_mode,
4956                 (void *)&cmd_lfc_set_portid,
4957                 NULL,
4958         },
4959 };
4960
4961 cmdline_parse_inst_t cmd_link_flow_control_set_tx = {
4962         .f = cmd_link_flow_ctrl_set_parsed,
4963         .data = (void *)&cmd_link_flow_control_set_tx,
4964         .help_str = "Change tx flow control parameter: set flow_ctrl "
4965                     "tx on|off port_id",
4966         .tokens = {
4967                 (void *)&cmd_lfc_set_set,
4968                 (void *)&cmd_lfc_set_flow_ctrl,
4969                 (void *)&cmd_lfc_set_tx,
4970                 (void *)&cmd_lfc_set_tx_mode,
4971                 (void *)&cmd_lfc_set_portid,
4972                 NULL,
4973         },
4974 };
4975
4976 cmdline_parse_inst_t cmd_link_flow_control_set_hw = {
4977         .f = cmd_link_flow_ctrl_set_parsed,
4978         .data = (void *)&cmd_link_flow_control_set_hw,
4979         .help_str = "Change high water flow control parameter: set flow_ctrl "
4980                     "high_water value port_id",
4981         .tokens = {
4982                 (void *)&cmd_lfc_set_set,
4983                 (void *)&cmd_lfc_set_flow_ctrl,
4984                 (void *)&cmd_lfc_set_high_water_str,
4985                 (void *)&cmd_lfc_set_high_water,
4986                 (void *)&cmd_lfc_set_portid,
4987                 NULL,
4988         },
4989 };
4990
4991 cmdline_parse_inst_t cmd_link_flow_control_set_lw = {
4992         .f = cmd_link_flow_ctrl_set_parsed,
4993         .data = (void *)&cmd_link_flow_control_set_lw,
4994         .help_str = "Change low water flow control parameter: set flow_ctrl "
4995                     "low_water value port_id",
4996         .tokens = {
4997                 (void *)&cmd_lfc_set_set,
4998                 (void *)&cmd_lfc_set_flow_ctrl,
4999                 (void *)&cmd_lfc_set_low_water_str,
5000                 (void *)&cmd_lfc_set_low_water,
5001                 (void *)&cmd_lfc_set_portid,
5002                 NULL,
5003         },
5004 };
5005
5006 cmdline_parse_inst_t cmd_link_flow_control_set_pt = {
5007         .f = cmd_link_flow_ctrl_set_parsed,
5008         .data = (void *)&cmd_link_flow_control_set_pt,
5009         .help_str = "Change pause time flow control parameter: set flow_ctrl "
5010                     "pause_time value port_id",
5011         .tokens = {
5012                 (void *)&cmd_lfc_set_set,
5013                 (void *)&cmd_lfc_set_flow_ctrl,
5014                 (void *)&cmd_lfc_set_pause_time_str,
5015                 (void *)&cmd_lfc_set_pause_time,
5016                 (void *)&cmd_lfc_set_portid,
5017                 NULL,
5018         },
5019 };
5020
5021 cmdline_parse_inst_t cmd_link_flow_control_set_xon = {
5022         .f = cmd_link_flow_ctrl_set_parsed,
5023         .data = (void *)&cmd_link_flow_control_set_xon,
5024         .help_str = "Change send_xon flow control parameter: set flow_ctrl "
5025                     "send_xon value port_id",
5026         .tokens = {
5027                 (void *)&cmd_lfc_set_set,
5028                 (void *)&cmd_lfc_set_flow_ctrl,
5029                 (void *)&cmd_lfc_set_send_xon_str,
5030                 (void *)&cmd_lfc_set_send_xon,
5031                 (void *)&cmd_lfc_set_portid,
5032                 NULL,
5033         },
5034 };
5035
5036 cmdline_parse_inst_t cmd_link_flow_control_set_macfwd = {
5037         .f = cmd_link_flow_ctrl_set_parsed,
5038         .data = (void *)&cmd_link_flow_control_set_macfwd,
5039         .help_str = "Change mac ctrl fwd flow control parameter: set flow_ctrl "
5040                     "mac_ctrl_frame_fwd on|off port_id",
5041         .tokens = {
5042                 (void *)&cmd_lfc_set_set,
5043                 (void *)&cmd_lfc_set_flow_ctrl,
5044                 (void *)&cmd_lfc_set_mac_ctrl_frame_fwd_mode,
5045                 (void *)&cmd_lfc_set_mac_ctrl_frame_fwd,
5046                 (void *)&cmd_lfc_set_portid,
5047                 NULL,
5048         },
5049 };
5050
5051 cmdline_parse_inst_t cmd_link_flow_control_set_autoneg = {
5052         .f = cmd_link_flow_ctrl_set_parsed,
5053         .data = (void *)&cmd_link_flow_control_set_autoneg,
5054         .help_str = "Change autoneg flow control parameter: set flow_ctrl "
5055                     "autoneg on|off port_id",
5056         .tokens = {
5057                 (void *)&cmd_lfc_set_set,
5058                 (void *)&cmd_lfc_set_flow_ctrl,
5059                 (void *)&cmd_lfc_set_autoneg_str,
5060                 (void *)&cmd_lfc_set_autoneg,
5061                 (void *)&cmd_lfc_set_portid,
5062                 NULL,
5063         },
5064 };
5065
5066 static void
5067 cmd_link_flow_ctrl_set_parsed(void *parsed_result,
5068                               __attribute__((unused)) struct cmdline *cl,
5069                               void *data)
5070 {
5071         struct cmd_link_flow_ctrl_set_result *res = parsed_result;
5072         cmdline_parse_inst_t *cmd = data;
5073         struct rte_eth_fc_conf fc_conf;
5074         int rx_fc_en = 0;
5075         int tx_fc_en = 0;
5076         int ret;
5077
5078         /*
5079          * Rx on/off, flow control is enabled/disabled on RX side. This can indicate
5080          * the RTE_FC_TX_PAUSE, Transmit pause frame at the Rx side.
5081          * Tx on/off, flow control is enabled/disabled on TX side. This can indicate
5082          * the RTE_FC_RX_PAUSE, Respond to the pause frame at the Tx side.
5083          */
5084         static enum rte_eth_fc_mode rx_tx_onoff_2_lfc_mode[2][2] = {
5085                         {RTE_FC_NONE, RTE_FC_TX_PAUSE}, {RTE_FC_RX_PAUSE, RTE_FC_FULL}
5086         };
5087
5088         /* Partial command line, retrieve current configuration */
5089         if (cmd) {
5090                 ret = rte_eth_dev_flow_ctrl_get(res->port_id, &fc_conf);
5091                 if (ret != 0) {
5092                         printf("cannot get current flow ctrl parameters, return"
5093                                "code = %d\n", ret);
5094                         return;
5095                 }
5096
5097                 if ((fc_conf.mode == RTE_FC_RX_PAUSE) ||
5098                     (fc_conf.mode == RTE_FC_FULL))
5099                         rx_fc_en = 1;
5100                 if ((fc_conf.mode == RTE_FC_TX_PAUSE) ||
5101                     (fc_conf.mode == RTE_FC_FULL))
5102                         tx_fc_en = 1;
5103         }
5104
5105         if (!cmd || cmd == &cmd_link_flow_control_set_rx)
5106                 rx_fc_en = (!strcmp(res->rx_lfc_mode, "on")) ? 1 : 0;
5107
5108         if (!cmd || cmd == &cmd_link_flow_control_set_tx)
5109                 tx_fc_en = (!strcmp(res->tx_lfc_mode, "on")) ? 1 : 0;
5110
5111         fc_conf.mode = rx_tx_onoff_2_lfc_mode[rx_fc_en][tx_fc_en];
5112
5113         if (!cmd || cmd == &cmd_link_flow_control_set_hw)
5114                 fc_conf.high_water = res->high_water;
5115
5116         if (!cmd || cmd == &cmd_link_flow_control_set_lw)
5117                 fc_conf.low_water = res->low_water;
5118
5119         if (!cmd || cmd == &cmd_link_flow_control_set_pt)
5120                 fc_conf.pause_time = res->pause_time;
5121
5122         if (!cmd || cmd == &cmd_link_flow_control_set_xon)
5123                 fc_conf.send_xon = res->send_xon;
5124
5125         if (!cmd || cmd == &cmd_link_flow_control_set_macfwd) {
5126                 if (!strcmp(res->mac_ctrl_frame_fwd_mode, "on"))
5127                         fc_conf.mac_ctrl_frame_fwd = 1;
5128                 else
5129                         fc_conf.mac_ctrl_frame_fwd = 0;
5130         }
5131
5132         if (!cmd || cmd == &cmd_link_flow_control_set_autoneg)
5133                 fc_conf.autoneg = (!strcmp(res->autoneg, "on")) ? 1 : 0;
5134
5135         ret = rte_eth_dev_flow_ctrl_set(res->port_id, &fc_conf);
5136         if (ret != 0)
5137                 printf("bad flow contrl parameter, return code = %d \n", ret);
5138 }
5139
5140 /* *** SETUP ETHERNET PIRORITY FLOW CONTROL *** */
5141 struct cmd_priority_flow_ctrl_set_result {
5142         cmdline_fixed_string_t set;
5143         cmdline_fixed_string_t pfc_ctrl;
5144         cmdline_fixed_string_t rx;
5145         cmdline_fixed_string_t rx_pfc_mode;
5146         cmdline_fixed_string_t tx;
5147         cmdline_fixed_string_t tx_pfc_mode;
5148         uint32_t high_water;
5149         uint32_t low_water;
5150         uint16_t pause_time;
5151         uint8_t  priority;
5152         uint8_t  port_id;
5153 };
5154
5155 static void
5156 cmd_priority_flow_ctrl_set_parsed(void *parsed_result,
5157                        __attribute__((unused)) struct cmdline *cl,
5158                        __attribute__((unused)) void *data)
5159 {
5160         struct cmd_priority_flow_ctrl_set_result *res = parsed_result;
5161         struct rte_eth_pfc_conf pfc_conf;
5162         int rx_fc_enable, tx_fc_enable;
5163         int ret;
5164
5165         /*
5166          * Rx on/off, flow control is enabled/disabled on RX side. This can indicate
5167          * the RTE_FC_TX_PAUSE, Transmit pause frame at the Rx side.
5168          * Tx on/off, flow control is enabled/disabled on TX side. This can indicate
5169          * the RTE_FC_RX_PAUSE, Respond to the pause frame at the Tx side.
5170          */
5171         static enum rte_eth_fc_mode rx_tx_onoff_2_pfc_mode[2][2] = {
5172                         {RTE_FC_NONE, RTE_FC_RX_PAUSE}, {RTE_FC_TX_PAUSE, RTE_FC_FULL}
5173         };
5174
5175         rx_fc_enable = (!strncmp(res->rx_pfc_mode, "on",2)) ? 1 : 0;
5176         tx_fc_enable = (!strncmp(res->tx_pfc_mode, "on",2)) ? 1 : 0;
5177         pfc_conf.fc.mode       = rx_tx_onoff_2_pfc_mode[rx_fc_enable][tx_fc_enable];
5178         pfc_conf.fc.high_water = res->high_water;
5179         pfc_conf.fc.low_water  = res->low_water;
5180         pfc_conf.fc.pause_time = res->pause_time;
5181         pfc_conf.priority      = res->priority;
5182
5183         ret = rte_eth_dev_priority_flow_ctrl_set(res->port_id, &pfc_conf);
5184         if (ret != 0)
5185                 printf("bad priority flow contrl parameter, return code = %d \n", ret);
5186 }
5187
5188 cmdline_parse_token_string_t cmd_pfc_set_set =
5189         TOKEN_STRING_INITIALIZER(struct cmd_priority_flow_ctrl_set_result,
5190                                 set, "set");
5191 cmdline_parse_token_string_t cmd_pfc_set_flow_ctrl =
5192         TOKEN_STRING_INITIALIZER(struct cmd_priority_flow_ctrl_set_result,
5193                                 pfc_ctrl, "pfc_ctrl");
5194 cmdline_parse_token_string_t cmd_pfc_set_rx =
5195         TOKEN_STRING_INITIALIZER(struct cmd_priority_flow_ctrl_set_result,
5196                                 rx, "rx");
5197 cmdline_parse_token_string_t cmd_pfc_set_rx_mode =
5198         TOKEN_STRING_INITIALIZER(struct cmd_priority_flow_ctrl_set_result,
5199                                 rx_pfc_mode, "on#off");
5200 cmdline_parse_token_string_t cmd_pfc_set_tx =
5201         TOKEN_STRING_INITIALIZER(struct cmd_priority_flow_ctrl_set_result,
5202                                 tx, "tx");
5203 cmdline_parse_token_string_t cmd_pfc_set_tx_mode =
5204         TOKEN_STRING_INITIALIZER(struct cmd_priority_flow_ctrl_set_result,
5205                                 tx_pfc_mode, "on#off");
5206 cmdline_parse_token_num_t cmd_pfc_set_high_water =
5207         TOKEN_NUM_INITIALIZER(struct cmd_priority_flow_ctrl_set_result,
5208                                 high_water, UINT32);
5209 cmdline_parse_token_num_t cmd_pfc_set_low_water =
5210         TOKEN_NUM_INITIALIZER(struct cmd_priority_flow_ctrl_set_result,
5211                                 low_water, UINT32);
5212 cmdline_parse_token_num_t cmd_pfc_set_pause_time =
5213         TOKEN_NUM_INITIALIZER(struct cmd_priority_flow_ctrl_set_result,
5214                                 pause_time, UINT16);
5215 cmdline_parse_token_num_t cmd_pfc_set_priority =
5216         TOKEN_NUM_INITIALIZER(struct cmd_priority_flow_ctrl_set_result,
5217                                 priority, UINT8);
5218 cmdline_parse_token_num_t cmd_pfc_set_portid =
5219         TOKEN_NUM_INITIALIZER(struct cmd_priority_flow_ctrl_set_result,
5220                                 port_id, UINT8);
5221
5222 cmdline_parse_inst_t cmd_priority_flow_control_set = {
5223         .f = cmd_priority_flow_ctrl_set_parsed,
5224         .data = NULL,
5225         .help_str = "Configure the Ethernet priority flow control: set pfc_ctrl rx on|off\n\
5226                         tx on|off high_water low_water pause_time priority port_id",
5227         .tokens = {
5228                 (void *)&cmd_pfc_set_set,
5229                 (void *)&cmd_pfc_set_flow_ctrl,
5230                 (void *)&cmd_pfc_set_rx,
5231                 (void *)&cmd_pfc_set_rx_mode,
5232                 (void *)&cmd_pfc_set_tx,
5233                 (void *)&cmd_pfc_set_tx_mode,
5234                 (void *)&cmd_pfc_set_high_water,
5235                 (void *)&cmd_pfc_set_low_water,
5236                 (void *)&cmd_pfc_set_pause_time,
5237                 (void *)&cmd_pfc_set_priority,
5238                 (void *)&cmd_pfc_set_portid,
5239                 NULL,
5240         },
5241 };
5242
5243 /* *** RESET CONFIGURATION *** */
5244 struct cmd_reset_result {
5245         cmdline_fixed_string_t reset;
5246         cmdline_fixed_string_t def;
5247 };
5248
5249 static void cmd_reset_parsed(__attribute__((unused)) void *parsed_result,
5250                              struct cmdline *cl,
5251                              __attribute__((unused)) void *data)
5252 {
5253         cmdline_printf(cl, "Reset to default forwarding configuration...\n");
5254         set_def_fwd_config();
5255 }
5256
5257 cmdline_parse_token_string_t cmd_reset_set =
5258         TOKEN_STRING_INITIALIZER(struct cmd_reset_result, reset, "set");
5259 cmdline_parse_token_string_t cmd_reset_def =
5260         TOKEN_STRING_INITIALIZER(struct cmd_reset_result, def,
5261                                  "default");
5262
5263 cmdline_parse_inst_t cmd_reset = {
5264         .f = cmd_reset_parsed,
5265         .data = NULL,
5266         .help_str = "set default: reset default forwarding configuration",
5267         .tokens = {
5268                 (void *)&cmd_reset_set,
5269                 (void *)&cmd_reset_def,
5270                 NULL,
5271         },
5272 };
5273
5274 /* *** START FORWARDING *** */
5275 struct cmd_start_result {
5276         cmdline_fixed_string_t start;
5277 };
5278
5279 cmdline_parse_token_string_t cmd_start_start =
5280         TOKEN_STRING_INITIALIZER(struct cmd_start_result, start, "start");
5281
5282 static void cmd_start_parsed(__attribute__((unused)) void *parsed_result,
5283                              __attribute__((unused)) struct cmdline *cl,
5284                              __attribute__((unused)) void *data)
5285 {
5286         start_packet_forwarding(0);
5287 }
5288
5289 cmdline_parse_inst_t cmd_start = {
5290         .f = cmd_start_parsed,
5291         .data = NULL,
5292         .help_str = "start packet forwarding",
5293         .tokens = {
5294                 (void *)&cmd_start_start,
5295                 NULL,
5296         },
5297 };
5298
5299 /* *** START FORWARDING WITH ONE TX BURST FIRST *** */
5300 struct cmd_start_tx_first_result {
5301         cmdline_fixed_string_t start;
5302         cmdline_fixed_string_t tx_first;
5303 };
5304
5305 static void
5306 cmd_start_tx_first_parsed(__attribute__((unused)) void *parsed_result,
5307                           __attribute__((unused)) struct cmdline *cl,
5308                           __attribute__((unused)) void *data)
5309 {
5310         start_packet_forwarding(1);
5311 }
5312
5313 cmdline_parse_token_string_t cmd_start_tx_first_start =
5314         TOKEN_STRING_INITIALIZER(struct cmd_start_tx_first_result, start,
5315                                  "start");
5316 cmdline_parse_token_string_t cmd_start_tx_first_tx_first =
5317         TOKEN_STRING_INITIALIZER(struct cmd_start_tx_first_result,
5318                                  tx_first, "tx_first");
5319
5320 cmdline_parse_inst_t cmd_start_tx_first = {
5321         .f = cmd_start_tx_first_parsed,
5322         .data = NULL,
5323         .help_str = "start packet forwarding, after sending 1 burst of packets",
5324         .tokens = {
5325                 (void *)&cmd_start_tx_first_start,
5326                 (void *)&cmd_start_tx_first_tx_first,
5327                 NULL,
5328         },
5329 };
5330
5331 /* *** SET LINK UP *** */
5332 struct cmd_set_link_up_result {
5333         cmdline_fixed_string_t set;
5334         cmdline_fixed_string_t link_up;
5335         cmdline_fixed_string_t port;
5336         uint8_t port_id;
5337 };
5338
5339 cmdline_parse_token_string_t cmd_set_link_up_set =
5340         TOKEN_STRING_INITIALIZER(struct cmd_set_link_up_result, set, "set");
5341 cmdline_parse_token_string_t cmd_set_link_up_link_up =
5342         TOKEN_STRING_INITIALIZER(struct cmd_set_link_up_result, link_up,
5343                                 "link-up");
5344 cmdline_parse_token_string_t cmd_set_link_up_port =
5345         TOKEN_STRING_INITIALIZER(struct cmd_set_link_up_result, port, "port");
5346 cmdline_parse_token_num_t cmd_set_link_up_port_id =
5347         TOKEN_NUM_INITIALIZER(struct cmd_set_link_up_result, port_id, UINT8);
5348
5349 static void cmd_set_link_up_parsed(__attribute__((unused)) void *parsed_result,
5350                              __attribute__((unused)) struct cmdline *cl,
5351                              __attribute__((unused)) void *data)
5352 {
5353         struct cmd_set_link_up_result *res = parsed_result;
5354         dev_set_link_up(res->port_id);
5355 }
5356
5357 cmdline_parse_inst_t cmd_set_link_up = {
5358         .f = cmd_set_link_up_parsed,
5359         .data = NULL,
5360         .help_str = "set link-up port (port id)",
5361         .tokens = {
5362                 (void *)&cmd_set_link_up_set,
5363                 (void *)&cmd_set_link_up_link_up,
5364                 (void *)&cmd_set_link_up_port,
5365                 (void *)&cmd_set_link_up_port_id,
5366                 NULL,
5367         },
5368 };
5369
5370 /* *** SET LINK DOWN *** */
5371 struct cmd_set_link_down_result {
5372         cmdline_fixed_string_t set;
5373         cmdline_fixed_string_t link_down;
5374         cmdline_fixed_string_t port;
5375         uint8_t port_id;
5376 };
5377
5378 cmdline_parse_token_string_t cmd_set_link_down_set =
5379         TOKEN_STRING_INITIALIZER(struct cmd_set_link_down_result, set, "set");
5380 cmdline_parse_token_string_t cmd_set_link_down_link_down =
5381         TOKEN_STRING_INITIALIZER(struct cmd_set_link_down_result, link_down,
5382                                 "link-down");
5383 cmdline_parse_token_string_t cmd_set_link_down_port =
5384         TOKEN_STRING_INITIALIZER(struct cmd_set_link_down_result, port, "port");
5385 cmdline_parse_token_num_t cmd_set_link_down_port_id =
5386         TOKEN_NUM_INITIALIZER(struct cmd_set_link_down_result, port_id, UINT8);
5387
5388 static void cmd_set_link_down_parsed(
5389                                 __attribute__((unused)) void *parsed_result,
5390                                 __attribute__((unused)) struct cmdline *cl,
5391                                 __attribute__((unused)) void *data)
5392 {
5393         struct cmd_set_link_down_result *res = parsed_result;
5394         dev_set_link_down(res->port_id);
5395 }
5396
5397 cmdline_parse_inst_t cmd_set_link_down = {
5398         .f = cmd_set_link_down_parsed,
5399         .data = NULL,
5400         .help_str = "set link-down port (port id)",
5401         .tokens = {
5402                 (void *)&cmd_set_link_down_set,
5403                 (void *)&cmd_set_link_down_link_down,
5404                 (void *)&cmd_set_link_down_port,
5405                 (void *)&cmd_set_link_down_port_id,
5406                 NULL,
5407         },
5408 };
5409
5410 /* *** SHOW CFG *** */
5411 struct cmd_showcfg_result {
5412         cmdline_fixed_string_t show;
5413         cmdline_fixed_string_t cfg;
5414         cmdline_fixed_string_t what;
5415 };
5416
5417 static void cmd_showcfg_parsed(void *parsed_result,
5418                                __attribute__((unused)) struct cmdline *cl,
5419                                __attribute__((unused)) void *data)
5420 {
5421         struct cmd_showcfg_result *res = parsed_result;
5422         if (!strcmp(res->what, "rxtx"))
5423                 rxtx_config_display();
5424         else if (!strcmp(res->what, "cores"))
5425                 fwd_lcores_config_display();
5426         else if (!strcmp(res->what, "fwd"))
5427                 pkt_fwd_config_display(&cur_fwd_config);
5428         else if (!strcmp(res->what, "txpkts"))
5429                 show_tx_pkt_segments();
5430 }
5431
5432 cmdline_parse_token_string_t cmd_showcfg_show =
5433         TOKEN_STRING_INITIALIZER(struct cmd_showcfg_result, show, "show");
5434 cmdline_parse_token_string_t cmd_showcfg_port =
5435         TOKEN_STRING_INITIALIZER(struct cmd_showcfg_result, cfg, "config");
5436 cmdline_parse_token_string_t cmd_showcfg_what =
5437         TOKEN_STRING_INITIALIZER(struct cmd_showcfg_result, what,
5438                                  "rxtx#cores#fwd#txpkts");
5439
5440 cmdline_parse_inst_t cmd_showcfg = {
5441         .f = cmd_showcfg_parsed,
5442         .data = NULL,
5443         .help_str = "show config rxtx|cores|fwd|txpkts",
5444         .tokens = {
5445                 (void *)&cmd_showcfg_show,
5446                 (void *)&cmd_showcfg_port,
5447                 (void *)&cmd_showcfg_what,
5448                 NULL,
5449         },
5450 };
5451
5452 /* *** SHOW ALL PORT INFO *** */
5453 struct cmd_showportall_result {
5454         cmdline_fixed_string_t show;
5455         cmdline_fixed_string_t port;
5456         cmdline_fixed_string_t what;
5457         cmdline_fixed_string_t all;
5458 };
5459
5460 static void cmd_showportall_parsed(void *parsed_result,
5461                                 __attribute__((unused)) struct cmdline *cl,
5462                                 __attribute__((unused)) void *data)
5463 {
5464         portid_t i;
5465
5466         struct cmd_showportall_result *res = parsed_result;
5467         if (!strcmp(res->show, "clear")) {
5468                 if (!strcmp(res->what, "stats"))
5469                         FOREACH_PORT(i, ports)
5470                                 nic_stats_clear(i);
5471                 else if (!strcmp(res->what, "xstats"))
5472                         FOREACH_PORT(i, ports)
5473                                 nic_xstats_clear(i);
5474         } else if (!strcmp(res->what, "info"))
5475                 FOREACH_PORT(i, ports)
5476                         port_infos_display(i);
5477         else if (!strcmp(res->what, "stats"))
5478                 FOREACH_PORT(i, ports)
5479                         nic_stats_display(i);
5480         else if (!strcmp(res->what, "xstats"))
5481                 FOREACH_PORT(i, ports)
5482                         nic_xstats_display(i);
5483         else if (!strcmp(res->what, "fdir"))
5484                 FOREACH_PORT(i, ports)
5485                         fdir_get_infos(i);
5486         else if (!strcmp(res->what, "stat_qmap"))
5487                 FOREACH_PORT(i, ports)
5488                         nic_stats_mapping_display(i);
5489         else if (!strcmp(res->what, "dcb_tc"))
5490                 FOREACH_PORT(i, ports)
5491                         port_dcb_info_display(i);
5492 }
5493
5494 cmdline_parse_token_string_t cmd_showportall_show =
5495         TOKEN_STRING_INITIALIZER(struct cmd_showportall_result, show,
5496                                  "show#clear");
5497 cmdline_parse_token_string_t cmd_showportall_port =
5498         TOKEN_STRING_INITIALIZER(struct cmd_showportall_result, port, "port");
5499 cmdline_parse_token_string_t cmd_showportall_what =
5500         TOKEN_STRING_INITIALIZER(struct cmd_showportall_result, what,
5501                                  "info#stats#xstats#fdir#stat_qmap#dcb_tc");
5502 cmdline_parse_token_string_t cmd_showportall_all =
5503         TOKEN_STRING_INITIALIZER(struct cmd_showportall_result, all, "all");
5504 cmdline_parse_inst_t cmd_showportall = {
5505         .f = cmd_showportall_parsed,
5506         .data = NULL,
5507         .help_str = "show|clear port info|stats|xstats|fdir|stat_qmap|dcb_tc all",
5508         .tokens = {
5509                 (void *)&cmd_showportall_show,
5510                 (void *)&cmd_showportall_port,
5511                 (void *)&cmd_showportall_what,
5512                 (void *)&cmd_showportall_all,
5513                 NULL,
5514         },
5515 };
5516
5517 /* *** SHOW PORT INFO *** */
5518 struct cmd_showport_result {
5519         cmdline_fixed_string_t show;
5520         cmdline_fixed_string_t port;
5521         cmdline_fixed_string_t what;
5522         uint8_t portnum;
5523 };
5524
5525 static void cmd_showport_parsed(void *parsed_result,
5526                                 __attribute__((unused)) struct cmdline *cl,
5527                                 __attribute__((unused)) void *data)
5528 {
5529         struct cmd_showport_result *res = parsed_result;
5530         if (!strcmp(res->show, "clear")) {
5531                 if (!strcmp(res->what, "stats"))
5532                         nic_stats_clear(res->portnum);
5533                 else if (!strcmp(res->what, "xstats"))
5534                         nic_xstats_clear(res->portnum);
5535         } else if (!strcmp(res->what, "info"))
5536                 port_infos_display(res->portnum);
5537         else if (!strcmp(res->what, "stats"))
5538                 nic_stats_display(res->portnum);
5539         else if (!strcmp(res->what, "xstats"))
5540                 nic_xstats_display(res->portnum);
5541         else if (!strcmp(res->what, "fdir"))
5542                  fdir_get_infos(res->portnum);
5543         else if (!strcmp(res->what, "stat_qmap"))
5544                 nic_stats_mapping_display(res->portnum);
5545         else if (!strcmp(res->what, "dcb_tc"))
5546                 port_dcb_info_display(res->portnum);
5547 }
5548
5549 cmdline_parse_token_string_t cmd_showport_show =
5550         TOKEN_STRING_INITIALIZER(struct cmd_showport_result, show,
5551                                  "show#clear");
5552 cmdline_parse_token_string_t cmd_showport_port =
5553         TOKEN_STRING_INITIALIZER(struct cmd_showport_result, port, "port");
5554 cmdline_parse_token_string_t cmd_showport_what =
5555         TOKEN_STRING_INITIALIZER(struct cmd_showport_result, what,
5556                                  "info#stats#xstats#fdir#stat_qmap#dcb_tc");
5557 cmdline_parse_token_num_t cmd_showport_portnum =
5558         TOKEN_NUM_INITIALIZER(struct cmd_showport_result, portnum, UINT8);
5559
5560 cmdline_parse_inst_t cmd_showport = {
5561         .f = cmd_showport_parsed,
5562         .data = NULL,
5563         .help_str = "show|clear port info|stats|xstats|fdir|stat_qmap|dcb_tc X (X = port number)",
5564         .tokens = {
5565                 (void *)&cmd_showport_show,
5566                 (void *)&cmd_showport_port,
5567                 (void *)&cmd_showport_what,
5568                 (void *)&cmd_showport_portnum,
5569                 NULL,
5570         },
5571 };
5572
5573 /* *** SHOW QUEUE INFO *** */
5574 struct cmd_showqueue_result {
5575         cmdline_fixed_string_t show;
5576         cmdline_fixed_string_t type;
5577         cmdline_fixed_string_t what;
5578         uint8_t portnum;
5579         uint16_t queuenum;
5580 };
5581
5582 static void
5583 cmd_showqueue_parsed(void *parsed_result,
5584         __attribute__((unused)) struct cmdline *cl,
5585         __attribute__((unused)) void *data)
5586 {
5587         struct cmd_showqueue_result *res = parsed_result;
5588
5589         if (!strcmp(res->type, "rxq"))
5590                 rx_queue_infos_display(res->portnum, res->queuenum);
5591         else if (!strcmp(res->type, "txq"))
5592                 tx_queue_infos_display(res->portnum, res->queuenum);
5593 }
5594
5595 cmdline_parse_token_string_t cmd_showqueue_show =
5596         TOKEN_STRING_INITIALIZER(struct cmd_showqueue_result, show, "show");
5597 cmdline_parse_token_string_t cmd_showqueue_type =
5598         TOKEN_STRING_INITIALIZER(struct cmd_showqueue_result, type, "rxq#txq");
5599 cmdline_parse_token_string_t cmd_showqueue_what =
5600         TOKEN_STRING_INITIALIZER(struct cmd_showqueue_result, what, "info");
5601 cmdline_parse_token_num_t cmd_showqueue_portnum =
5602         TOKEN_NUM_INITIALIZER(struct cmd_showqueue_result, portnum, UINT8);
5603 cmdline_parse_token_num_t cmd_showqueue_queuenum =
5604         TOKEN_NUM_INITIALIZER(struct cmd_showqueue_result, queuenum, UINT16);
5605
5606 cmdline_parse_inst_t cmd_showqueue = {
5607         .f = cmd_showqueue_parsed,
5608         .data = NULL,
5609         .help_str = "show rxq|txq info <port number> <queue_number>",
5610         .tokens = {
5611                 (void *)&cmd_showqueue_show,
5612                 (void *)&cmd_showqueue_type,
5613                 (void *)&cmd_showqueue_what,
5614                 (void *)&cmd_showqueue_portnum,
5615                 (void *)&cmd_showqueue_queuenum,
5616                 NULL,
5617         },
5618 };
5619
5620 /* *** READ PORT REGISTER *** */
5621 struct cmd_read_reg_result {
5622         cmdline_fixed_string_t read;
5623         cmdline_fixed_string_t reg;
5624         uint8_t port_id;
5625         uint32_t reg_off;
5626 };
5627
5628 static void
5629 cmd_read_reg_parsed(void *parsed_result,
5630                     __attribute__((unused)) struct cmdline *cl,
5631                     __attribute__((unused)) void *data)
5632 {
5633         struct cmd_read_reg_result *res = parsed_result;
5634         port_reg_display(res->port_id, res->reg_off);
5635 }
5636
5637 cmdline_parse_token_string_t cmd_read_reg_read =
5638         TOKEN_STRING_INITIALIZER(struct cmd_read_reg_result, read, "read");
5639 cmdline_parse_token_string_t cmd_read_reg_reg =
5640         TOKEN_STRING_INITIALIZER(struct cmd_read_reg_result, reg, "reg");
5641 cmdline_parse_token_num_t cmd_read_reg_port_id =
5642         TOKEN_NUM_INITIALIZER(struct cmd_read_reg_result, port_id, UINT8);
5643 cmdline_parse_token_num_t cmd_read_reg_reg_off =
5644         TOKEN_NUM_INITIALIZER(struct cmd_read_reg_result, reg_off, UINT32);
5645
5646 cmdline_parse_inst_t cmd_read_reg = {
5647         .f = cmd_read_reg_parsed,
5648         .data = NULL,
5649         .help_str = "read reg port_id reg_off",
5650         .tokens = {
5651                 (void *)&cmd_read_reg_read,
5652                 (void *)&cmd_read_reg_reg,
5653                 (void *)&cmd_read_reg_port_id,
5654                 (void *)&cmd_read_reg_reg_off,
5655                 NULL,
5656         },
5657 };
5658
5659 /* *** READ PORT REGISTER BIT FIELD *** */
5660 struct cmd_read_reg_bit_field_result {
5661         cmdline_fixed_string_t read;
5662         cmdline_fixed_string_t regfield;
5663         uint8_t port_id;
5664         uint32_t reg_off;
5665         uint8_t bit1_pos;
5666         uint8_t bit2_pos;
5667 };
5668
5669 static void
5670 cmd_read_reg_bit_field_parsed(void *parsed_result,
5671                               __attribute__((unused)) struct cmdline *cl,
5672                               __attribute__((unused)) void *data)
5673 {
5674         struct cmd_read_reg_bit_field_result *res = parsed_result;
5675         port_reg_bit_field_display(res->port_id, res->reg_off,
5676                                    res->bit1_pos, res->bit2_pos);
5677 }
5678
5679 cmdline_parse_token_string_t cmd_read_reg_bit_field_read =
5680         TOKEN_STRING_INITIALIZER(struct cmd_read_reg_bit_field_result, read,
5681                                  "read");
5682 cmdline_parse_token_string_t cmd_read_reg_bit_field_regfield =
5683         TOKEN_STRING_INITIALIZER(struct cmd_read_reg_bit_field_result,
5684                                  regfield, "regfield");
5685 cmdline_parse_token_num_t cmd_read_reg_bit_field_port_id =
5686         TOKEN_NUM_INITIALIZER(struct cmd_read_reg_bit_field_result, port_id,
5687                               UINT8);
5688 cmdline_parse_token_num_t cmd_read_reg_bit_field_reg_off =
5689         TOKEN_NUM_INITIALIZER(struct cmd_read_reg_bit_field_result, reg_off,
5690                               UINT32);
5691 cmdline_parse_token_num_t cmd_read_reg_bit_field_bit1_pos =
5692         TOKEN_NUM_INITIALIZER(struct cmd_read_reg_bit_field_result, bit1_pos,
5693                               UINT8);
5694 cmdline_parse_token_num_t cmd_read_reg_bit_field_bit2_pos =
5695         TOKEN_NUM_INITIALIZER(struct cmd_read_reg_bit_field_result, bit2_pos,
5696                               UINT8);
5697
5698 cmdline_parse_inst_t cmd_read_reg_bit_field = {
5699         .f = cmd_read_reg_bit_field_parsed,
5700         .data = NULL,
5701         .help_str = "read regfield port_id reg_off bit_x bit_y "
5702         "(read register bit field between bit_x and bit_y included)",
5703         .tokens = {
5704                 (void *)&cmd_read_reg_bit_field_read,
5705                 (void *)&cmd_read_reg_bit_field_regfield,
5706                 (void *)&cmd_read_reg_bit_field_port_id,
5707                 (void *)&cmd_read_reg_bit_field_reg_off,
5708                 (void *)&cmd_read_reg_bit_field_bit1_pos,
5709                 (void *)&cmd_read_reg_bit_field_bit2_pos,
5710                 NULL,
5711         },
5712 };
5713
5714 /* *** READ PORT REGISTER BIT *** */
5715 struct cmd_read_reg_bit_result {
5716         cmdline_fixed_string_t read;
5717         cmdline_fixed_string_t regbit;
5718         uint8_t port_id;
5719         uint32_t reg_off;
5720         uint8_t bit_pos;
5721 };
5722
5723 static void
5724 cmd_read_reg_bit_parsed(void *parsed_result,
5725                         __attribute__((unused)) struct cmdline *cl,
5726                         __attribute__((unused)) void *data)
5727 {
5728         struct cmd_read_reg_bit_result *res = parsed_result;
5729         port_reg_bit_display(res->port_id, res->reg_off, res->bit_pos);
5730 }
5731
5732 cmdline_parse_token_string_t cmd_read_reg_bit_read =
5733         TOKEN_STRING_INITIALIZER(struct cmd_read_reg_bit_result, read, "read");
5734 cmdline_parse_token_string_t cmd_read_reg_bit_regbit =
5735         TOKEN_STRING_INITIALIZER(struct cmd_read_reg_bit_result,
5736                                  regbit, "regbit");
5737 cmdline_parse_token_num_t cmd_read_reg_bit_port_id =
5738         TOKEN_NUM_INITIALIZER(struct cmd_read_reg_bit_result, port_id, UINT8);
5739 cmdline_parse_token_num_t cmd_read_reg_bit_reg_off =
5740         TOKEN_NUM_INITIALIZER(struct cmd_read_reg_bit_result, reg_off, UINT32);
5741 cmdline_parse_token_num_t cmd_read_reg_bit_bit_pos =
5742         TOKEN_NUM_INITIALIZER(struct cmd_read_reg_bit_result, bit_pos, UINT8);
5743
5744 cmdline_parse_inst_t cmd_read_reg_bit = {
5745         .f = cmd_read_reg_bit_parsed,
5746         .data = NULL,
5747         .help_str = "read regbit port_id reg_off bit_x (0 <= bit_x <= 31)",
5748         .tokens = {
5749                 (void *)&cmd_read_reg_bit_read,
5750                 (void *)&cmd_read_reg_bit_regbit,
5751                 (void *)&cmd_read_reg_bit_port_id,
5752                 (void *)&cmd_read_reg_bit_reg_off,
5753                 (void *)&cmd_read_reg_bit_bit_pos,
5754                 NULL,
5755         },
5756 };
5757
5758 /* *** WRITE PORT REGISTER *** */
5759 struct cmd_write_reg_result {
5760         cmdline_fixed_string_t write;
5761         cmdline_fixed_string_t reg;
5762         uint8_t port_id;
5763         uint32_t reg_off;
5764         uint32_t value;
5765 };
5766
5767 static void
5768 cmd_write_reg_parsed(void *parsed_result,
5769                      __attribute__((unused)) struct cmdline *cl,
5770                      __attribute__((unused)) void *data)
5771 {
5772         struct cmd_write_reg_result *res = parsed_result;
5773         port_reg_set(res->port_id, res->reg_off, res->value);
5774 }
5775
5776 cmdline_parse_token_string_t cmd_write_reg_write =
5777         TOKEN_STRING_INITIALIZER(struct cmd_write_reg_result, write, "write");
5778 cmdline_parse_token_string_t cmd_write_reg_reg =
5779         TOKEN_STRING_INITIALIZER(struct cmd_write_reg_result, reg, "reg");
5780 cmdline_parse_token_num_t cmd_write_reg_port_id =
5781         TOKEN_NUM_INITIALIZER(struct cmd_write_reg_result, port_id, UINT8);
5782 cmdline_parse_token_num_t cmd_write_reg_reg_off =
5783         TOKEN_NUM_INITIALIZER(struct cmd_write_reg_result, reg_off, UINT32);
5784 cmdline_parse_token_num_t cmd_write_reg_value =
5785         TOKEN_NUM_INITIALIZER(struct cmd_write_reg_result, value, UINT32);
5786
5787 cmdline_parse_inst_t cmd_write_reg = {
5788         .f = cmd_write_reg_parsed,
5789         .data = NULL,
5790         .help_str = "write reg port_id reg_off reg_value",
5791         .tokens = {
5792                 (void *)&cmd_write_reg_write,
5793                 (void *)&cmd_write_reg_reg,
5794                 (void *)&cmd_write_reg_port_id,
5795                 (void *)&cmd_write_reg_reg_off,
5796                 (void *)&cmd_write_reg_value,
5797                 NULL,
5798         },
5799 };
5800
5801 /* *** WRITE PORT REGISTER BIT FIELD *** */
5802 struct cmd_write_reg_bit_field_result {
5803         cmdline_fixed_string_t write;
5804         cmdline_fixed_string_t regfield;
5805         uint8_t port_id;
5806         uint32_t reg_off;
5807         uint8_t bit1_pos;
5808         uint8_t bit2_pos;
5809         uint32_t value;
5810 };
5811
5812 static void
5813 cmd_write_reg_bit_field_parsed(void *parsed_result,
5814                                __attribute__((unused)) struct cmdline *cl,
5815                                __attribute__((unused)) void *data)
5816 {
5817         struct cmd_write_reg_bit_field_result *res = parsed_result;
5818         port_reg_bit_field_set(res->port_id, res->reg_off,
5819                           res->bit1_pos, res->bit2_pos, res->value);
5820 }
5821
5822 cmdline_parse_token_string_t cmd_write_reg_bit_field_write =
5823         TOKEN_STRING_INITIALIZER(struct cmd_write_reg_bit_field_result, write,
5824                                  "write");
5825 cmdline_parse_token_string_t cmd_write_reg_bit_field_regfield =
5826         TOKEN_STRING_INITIALIZER(struct cmd_write_reg_bit_field_result,
5827                                  regfield, "regfield");
5828 cmdline_parse_token_num_t cmd_write_reg_bit_field_port_id =
5829         TOKEN_NUM_INITIALIZER(struct cmd_write_reg_bit_field_result, port_id,
5830                               UINT8);
5831 cmdline_parse_token_num_t cmd_write_reg_bit_field_reg_off =
5832         TOKEN_NUM_INITIALIZER(struct cmd_write_reg_bit_field_result, reg_off,
5833                               UINT32);
5834 cmdline_parse_token_num_t cmd_write_reg_bit_field_bit1_pos =
5835         TOKEN_NUM_INITIALIZER(struct cmd_write_reg_bit_field_result, bit1_pos,
5836                               UINT8);
5837 cmdline_parse_token_num_t cmd_write_reg_bit_field_bit2_pos =
5838         TOKEN_NUM_INITIALIZER(struct cmd_write_reg_bit_field_result, bit2_pos,
5839                               UINT8);
5840 cmdline_parse_token_num_t cmd_write_reg_bit_field_value =
5841         TOKEN_NUM_INITIALIZER(struct cmd_write_reg_bit_field_result, value,
5842                               UINT32);
5843
5844 cmdline_parse_inst_t cmd_write_reg_bit_field = {
5845         .f = cmd_write_reg_bit_field_parsed,
5846         .data = NULL,
5847         .help_str = "write regfield port_id reg_off bit_x bit_y reg_value"
5848         "(set register bit field between bit_x and bit_y included)",
5849         .tokens = {
5850                 (void *)&cmd_write_reg_bit_field_write,
5851                 (void *)&cmd_write_reg_bit_field_regfield,
5852                 (void *)&cmd_write_reg_bit_field_port_id,
5853                 (void *)&cmd_write_reg_bit_field_reg_off,
5854                 (void *)&cmd_write_reg_bit_field_bit1_pos,
5855                 (void *)&cmd_write_reg_bit_field_bit2_pos,
5856                 (void *)&cmd_write_reg_bit_field_value,
5857                 NULL,
5858         },
5859 };
5860
5861 /* *** WRITE PORT REGISTER BIT *** */
5862 struct cmd_write_reg_bit_result {
5863         cmdline_fixed_string_t write;
5864         cmdline_fixed_string_t regbit;
5865         uint8_t port_id;
5866         uint32_t reg_off;
5867         uint8_t bit_pos;
5868         uint8_t value;
5869 };
5870
5871 static void
5872 cmd_write_reg_bit_parsed(void *parsed_result,
5873                          __attribute__((unused)) struct cmdline *cl,
5874                          __attribute__((unused)) void *data)
5875 {
5876         struct cmd_write_reg_bit_result *res = parsed_result;
5877         port_reg_bit_set(res->port_id, res->reg_off, res->bit_pos, res->value);
5878 }
5879
5880 cmdline_parse_token_string_t cmd_write_reg_bit_write =
5881         TOKEN_STRING_INITIALIZER(struct cmd_write_reg_bit_result, write,
5882                                  "write");
5883 cmdline_parse_token_string_t cmd_write_reg_bit_regbit =
5884         TOKEN_STRING_INITIALIZER(struct cmd_write_reg_bit_result,
5885                                  regbit, "regbit");
5886 cmdline_parse_token_num_t cmd_write_reg_bit_port_id =
5887         TOKEN_NUM_INITIALIZER(struct cmd_write_reg_bit_result, port_id, UINT8);
5888 cmdline_parse_token_num_t cmd_write_reg_bit_reg_off =
5889         TOKEN_NUM_INITIALIZER(struct cmd_write_reg_bit_result, reg_off, UINT32);
5890 cmdline_parse_token_num_t cmd_write_reg_bit_bit_pos =
5891         TOKEN_NUM_INITIALIZER(struct cmd_write_reg_bit_result, bit_pos, UINT8);
5892 cmdline_parse_token_num_t cmd_write_reg_bit_value =
5893         TOKEN_NUM_INITIALIZER(struct cmd_write_reg_bit_result, value, UINT8);
5894
5895 cmdline_parse_inst_t cmd_write_reg_bit = {
5896         .f = cmd_write_reg_bit_parsed,
5897         .data = NULL,
5898         .help_str = "write regbit port_id reg_off bit_x 0/1 (0 <= bit_x <= 31)",
5899         .tokens = {
5900                 (void *)&cmd_write_reg_bit_write,
5901                 (void *)&cmd_write_reg_bit_regbit,
5902                 (void *)&cmd_write_reg_bit_port_id,
5903                 (void *)&cmd_write_reg_bit_reg_off,
5904                 (void *)&cmd_write_reg_bit_bit_pos,
5905                 (void *)&cmd_write_reg_bit_value,
5906                 NULL,
5907         },
5908 };
5909
5910 /* *** READ A RING DESCRIPTOR OF A PORT RX/TX QUEUE *** */
5911 struct cmd_read_rxd_txd_result {
5912         cmdline_fixed_string_t read;
5913         cmdline_fixed_string_t rxd_txd;
5914         uint8_t port_id;
5915         uint16_t queue_id;
5916         uint16_t desc_id;
5917 };
5918
5919 static void
5920 cmd_read_rxd_txd_parsed(void *parsed_result,
5921                         __attribute__((unused)) struct cmdline *cl,
5922                         __attribute__((unused)) void *data)
5923 {
5924         struct cmd_read_rxd_txd_result *res = parsed_result;
5925
5926         if (!strcmp(res->rxd_txd, "rxd"))
5927                 rx_ring_desc_display(res->port_id, res->queue_id, res->desc_id);
5928         else if (!strcmp(res->rxd_txd, "txd"))
5929                 tx_ring_desc_display(res->port_id, res->queue_id, res->desc_id);
5930 }
5931
5932 cmdline_parse_token_string_t cmd_read_rxd_txd_read =
5933         TOKEN_STRING_INITIALIZER(struct cmd_read_rxd_txd_result, read, "read");
5934 cmdline_parse_token_string_t cmd_read_rxd_txd_rxd_txd =
5935         TOKEN_STRING_INITIALIZER(struct cmd_read_rxd_txd_result, rxd_txd,
5936                                  "rxd#txd");
5937 cmdline_parse_token_num_t cmd_read_rxd_txd_port_id =
5938         TOKEN_NUM_INITIALIZER(struct cmd_read_rxd_txd_result, port_id, UINT8);
5939 cmdline_parse_token_num_t cmd_read_rxd_txd_queue_id =
5940         TOKEN_NUM_INITIALIZER(struct cmd_read_rxd_txd_result, queue_id, UINT16);
5941 cmdline_parse_token_num_t cmd_read_rxd_txd_desc_id =
5942         TOKEN_NUM_INITIALIZER(struct cmd_read_rxd_txd_result, desc_id, UINT16);
5943
5944 cmdline_parse_inst_t cmd_read_rxd_txd = {
5945         .f = cmd_read_rxd_txd_parsed,
5946         .data = NULL,
5947         .help_str = "read rxd|txd port_id queue_id rxd_id",
5948         .tokens = {
5949                 (void *)&cmd_read_rxd_txd_read,
5950                 (void *)&cmd_read_rxd_txd_rxd_txd,
5951                 (void *)&cmd_read_rxd_txd_port_id,
5952                 (void *)&cmd_read_rxd_txd_queue_id,
5953                 (void *)&cmd_read_rxd_txd_desc_id,
5954                 NULL,
5955         },
5956 };
5957
5958 /* *** QUIT *** */
5959 struct cmd_quit_result {
5960         cmdline_fixed_string_t quit;
5961 };
5962
5963 static void cmd_quit_parsed(__attribute__((unused)) void *parsed_result,
5964                             struct cmdline *cl,
5965                             __attribute__((unused)) void *data)
5966 {
5967         pmd_test_exit();
5968         cmdline_quit(cl);
5969 }
5970
5971 cmdline_parse_token_string_t cmd_quit_quit =
5972         TOKEN_STRING_INITIALIZER(struct cmd_quit_result, quit, "quit");
5973
5974 cmdline_parse_inst_t cmd_quit = {
5975         .f = cmd_quit_parsed,
5976         .data = NULL,
5977         .help_str = "exit application",
5978         .tokens = {
5979                 (void *)&cmd_quit_quit,
5980                 NULL,
5981         },
5982 };
5983
5984 /* *** ADD/REMOVE MAC ADDRESS FROM A PORT *** */
5985 struct cmd_mac_addr_result {
5986         cmdline_fixed_string_t mac_addr_cmd;
5987         cmdline_fixed_string_t what;
5988         uint8_t port_num;
5989         struct ether_addr address;
5990 };
5991
5992 static void cmd_mac_addr_parsed(void *parsed_result,
5993                 __attribute__((unused)) struct cmdline *cl,
5994                 __attribute__((unused)) void *data)
5995 {
5996         struct cmd_mac_addr_result *res = parsed_result;
5997         int ret;
5998
5999         if (strcmp(res->what, "add") == 0)
6000                 ret = rte_eth_dev_mac_addr_add(res->port_num, &res->address, 0);
6001         else
6002                 ret = rte_eth_dev_mac_addr_remove(res->port_num, &res->address);
6003
6004         /* check the return value and print it if is < 0 */
6005         if(ret < 0)
6006                 printf("mac_addr_cmd error: (%s)\n", strerror(-ret));
6007
6008 }
6009
6010 cmdline_parse_token_string_t cmd_mac_addr_cmd =
6011         TOKEN_STRING_INITIALIZER(struct cmd_mac_addr_result, mac_addr_cmd,
6012                                 "mac_addr");
6013 cmdline_parse_token_string_t cmd_mac_addr_what =
6014         TOKEN_STRING_INITIALIZER(struct cmd_mac_addr_result, what,
6015                                 "add#remove");
6016 cmdline_parse_token_num_t cmd_mac_addr_portnum =
6017                 TOKEN_NUM_INITIALIZER(struct cmd_mac_addr_result, port_num, UINT8);
6018 cmdline_parse_token_etheraddr_t cmd_mac_addr_addr =
6019                 TOKEN_ETHERADDR_INITIALIZER(struct cmd_mac_addr_result, address);
6020
6021 cmdline_parse_inst_t cmd_mac_addr = {
6022         .f = cmd_mac_addr_parsed,
6023         .data = (void *)0,
6024         .help_str = "mac_addr add|remove X <address>: "
6025                         "add/remove MAC address on port X",
6026         .tokens = {
6027                 (void *)&cmd_mac_addr_cmd,
6028                 (void *)&cmd_mac_addr_what,
6029                 (void *)&cmd_mac_addr_portnum,
6030                 (void *)&cmd_mac_addr_addr,
6031                 NULL,
6032         },
6033 };
6034
6035
6036 /* *** CONFIGURE QUEUE STATS COUNTER MAPPINGS *** */
6037 struct cmd_set_qmap_result {
6038         cmdline_fixed_string_t set;
6039         cmdline_fixed_string_t qmap;
6040         cmdline_fixed_string_t what;
6041         uint8_t port_id;
6042         uint16_t queue_id;
6043         uint8_t map_value;
6044 };
6045
6046 static void
6047 cmd_set_qmap_parsed(void *parsed_result,
6048                        __attribute__((unused)) struct cmdline *cl,
6049                        __attribute__((unused)) void *data)
6050 {
6051         struct cmd_set_qmap_result *res = parsed_result;
6052         int is_rx = (strcmp(res->what, "tx") == 0) ? 0 : 1;
6053
6054         set_qmap(res->port_id, (uint8_t)is_rx, res->queue_id, res->map_value);
6055 }
6056
6057 cmdline_parse_token_string_t cmd_setqmap_set =
6058         TOKEN_STRING_INITIALIZER(struct cmd_set_qmap_result,
6059                                  set, "set");
6060 cmdline_parse_token_string_t cmd_setqmap_qmap =
6061         TOKEN_STRING_INITIALIZER(struct cmd_set_qmap_result,
6062                                  qmap, "stat_qmap");
6063 cmdline_parse_token_string_t cmd_setqmap_what =
6064         TOKEN_STRING_INITIALIZER(struct cmd_set_qmap_result,
6065                                  what, "tx#rx");
6066 cmdline_parse_token_num_t cmd_setqmap_portid =
6067         TOKEN_NUM_INITIALIZER(struct cmd_set_qmap_result,
6068                               port_id, UINT8);
6069 cmdline_parse_token_num_t cmd_setqmap_queueid =
6070         TOKEN_NUM_INITIALIZER(struct cmd_set_qmap_result,
6071                               queue_id, UINT16);
6072 cmdline_parse_token_num_t cmd_setqmap_mapvalue =
6073         TOKEN_NUM_INITIALIZER(struct cmd_set_qmap_result,
6074                               map_value, UINT8);
6075
6076 cmdline_parse_inst_t cmd_set_qmap = {
6077         .f = cmd_set_qmap_parsed,
6078         .data = NULL,
6079         .help_str = "Set statistics mapping value on tx|rx queue_id of port_id",
6080         .tokens = {
6081                 (void *)&cmd_setqmap_set,
6082                 (void *)&cmd_setqmap_qmap,
6083                 (void *)&cmd_setqmap_what,
6084                 (void *)&cmd_setqmap_portid,
6085                 (void *)&cmd_setqmap_queueid,
6086                 (void *)&cmd_setqmap_mapvalue,
6087                 NULL,
6088         },
6089 };
6090
6091 /* *** CONFIGURE UNICAST HASH TABLE *** */
6092 struct cmd_set_uc_hash_table {
6093         cmdline_fixed_string_t set;
6094         cmdline_fixed_string_t port;
6095         uint8_t port_id;
6096         cmdline_fixed_string_t what;
6097         struct ether_addr address;
6098         cmdline_fixed_string_t mode;
6099 };
6100
6101 static void
6102 cmd_set_uc_hash_parsed(void *parsed_result,
6103                        __attribute__((unused)) struct cmdline *cl,
6104                        __attribute__((unused)) void *data)
6105 {
6106         int ret=0;
6107         struct cmd_set_uc_hash_table *res = parsed_result;
6108
6109         int is_on = (strcmp(res->mode, "on") == 0) ? 1 : 0;
6110
6111         if (strcmp(res->what, "uta") == 0)
6112                 ret = rte_eth_dev_uc_hash_table_set(res->port_id,
6113                                                 &res->address,(uint8_t)is_on);
6114         if (ret < 0)
6115                 printf("bad unicast hash table parameter, return code = %d \n", ret);
6116
6117 }
6118
6119 cmdline_parse_token_string_t cmd_set_uc_hash_set =
6120         TOKEN_STRING_INITIALIZER(struct cmd_set_uc_hash_table,
6121                                  set, "set");
6122 cmdline_parse_token_string_t cmd_set_uc_hash_port =
6123         TOKEN_STRING_INITIALIZER(struct cmd_set_uc_hash_table,
6124                                  port, "port");
6125 cmdline_parse_token_num_t cmd_set_uc_hash_portid =
6126         TOKEN_NUM_INITIALIZER(struct cmd_set_uc_hash_table,
6127                               port_id, UINT8);
6128 cmdline_parse_token_string_t cmd_set_uc_hash_what =
6129         TOKEN_STRING_INITIALIZER(struct cmd_set_uc_hash_table,
6130                                  what, "uta");
6131 cmdline_parse_token_etheraddr_t cmd_set_uc_hash_mac =
6132         TOKEN_ETHERADDR_INITIALIZER(struct cmd_set_uc_hash_table,
6133                                 address);
6134 cmdline_parse_token_string_t cmd_set_uc_hash_mode =
6135         TOKEN_STRING_INITIALIZER(struct cmd_set_uc_hash_table,
6136                                  mode, "on#off");
6137
6138 cmdline_parse_inst_t cmd_set_uc_hash_filter = {
6139         .f = cmd_set_uc_hash_parsed,
6140         .data = NULL,
6141         .help_str = "set port X uta Y on|off(X = port number,Y = MAC address)",
6142         .tokens = {
6143                 (void *)&cmd_set_uc_hash_set,
6144                 (void *)&cmd_set_uc_hash_port,
6145                 (void *)&cmd_set_uc_hash_portid,
6146                 (void *)&cmd_set_uc_hash_what,
6147                 (void *)&cmd_set_uc_hash_mac,
6148                 (void *)&cmd_set_uc_hash_mode,
6149                 NULL,
6150         },
6151 };
6152
6153 struct cmd_set_uc_all_hash_table {
6154         cmdline_fixed_string_t set;
6155         cmdline_fixed_string_t port;
6156         uint8_t port_id;
6157         cmdline_fixed_string_t what;
6158         cmdline_fixed_string_t value;
6159         cmdline_fixed_string_t mode;
6160 };
6161
6162 static void
6163 cmd_set_uc_all_hash_parsed(void *parsed_result,
6164                        __attribute__((unused)) struct cmdline *cl,
6165                        __attribute__((unused)) void *data)
6166 {
6167         int ret=0;
6168         struct cmd_set_uc_all_hash_table *res = parsed_result;
6169
6170         int is_on = (strcmp(res->mode, "on") == 0) ? 1 : 0;
6171
6172         if ((strcmp(res->what, "uta") == 0) &&
6173                 (strcmp(res->value, "all") == 0))
6174                 ret = rte_eth_dev_uc_all_hash_table_set(res->port_id,(uint8_t) is_on);
6175         if (ret < 0)
6176                 printf("bad unicast hash table parameter,"
6177                         "return code = %d \n", ret);
6178 }
6179
6180 cmdline_parse_token_string_t cmd_set_uc_all_hash_set =
6181         TOKEN_STRING_INITIALIZER(struct cmd_set_uc_all_hash_table,
6182                                  set, "set");
6183 cmdline_parse_token_string_t cmd_set_uc_all_hash_port =
6184         TOKEN_STRING_INITIALIZER(struct cmd_set_uc_all_hash_table,
6185                                  port, "port");
6186 cmdline_parse_token_num_t cmd_set_uc_all_hash_portid =
6187         TOKEN_NUM_INITIALIZER(struct cmd_set_uc_all_hash_table,
6188                               port_id, UINT8);
6189 cmdline_parse_token_string_t cmd_set_uc_all_hash_what =
6190         TOKEN_STRING_INITIALIZER(struct cmd_set_uc_all_hash_table,
6191                                  what, "uta");
6192 cmdline_parse_token_string_t cmd_set_uc_all_hash_value =
6193         TOKEN_STRING_INITIALIZER(struct cmd_set_uc_all_hash_table,
6194                                 value,"all");
6195 cmdline_parse_token_string_t cmd_set_uc_all_hash_mode =
6196         TOKEN_STRING_INITIALIZER(struct cmd_set_uc_all_hash_table,
6197                                  mode, "on#off");
6198
6199 cmdline_parse_inst_t cmd_set_uc_all_hash_filter = {
6200         .f = cmd_set_uc_all_hash_parsed,
6201         .data = NULL,
6202         .help_str = "set port X uta all on|off (X = port number)",
6203         .tokens = {
6204                 (void *)&cmd_set_uc_all_hash_set,
6205                 (void *)&cmd_set_uc_all_hash_port,
6206                 (void *)&cmd_set_uc_all_hash_portid,
6207                 (void *)&cmd_set_uc_all_hash_what,
6208                 (void *)&cmd_set_uc_all_hash_value,
6209                 (void *)&cmd_set_uc_all_hash_mode,
6210                 NULL,
6211         },
6212 };
6213
6214 /* *** CONFIGURE MACVLAN FILTER FOR VF(s) *** */
6215 struct cmd_set_vf_macvlan_filter {
6216         cmdline_fixed_string_t set;
6217         cmdline_fixed_string_t port;
6218         uint8_t port_id;
6219         cmdline_fixed_string_t vf;
6220         uint8_t vf_id;
6221         struct ether_addr address;
6222         cmdline_fixed_string_t filter_type;
6223         cmdline_fixed_string_t mode;
6224 };
6225
6226 static void
6227 cmd_set_vf_macvlan_parsed(void *parsed_result,
6228                        __attribute__((unused)) struct cmdline *cl,
6229                        __attribute__((unused)) void *data)
6230 {
6231         int is_on, ret = 0;
6232         struct cmd_set_vf_macvlan_filter *res = parsed_result;
6233         struct rte_eth_mac_filter filter;
6234
6235         memset(&filter, 0, sizeof(struct rte_eth_mac_filter));
6236
6237         (void)rte_memcpy(&filter.mac_addr, &res->address, ETHER_ADDR_LEN);
6238
6239         /* set VF MAC filter */
6240         filter.is_vf = 1;
6241
6242         /* set VF ID */
6243         filter.dst_id = res->vf_id;
6244
6245         if (!strcmp(res->filter_type, "exact-mac"))
6246                 filter.filter_type = RTE_MAC_PERFECT_MATCH;
6247         else if (!strcmp(res->filter_type, "exact-mac-vlan"))
6248                 filter.filter_type = RTE_MACVLAN_PERFECT_MATCH;
6249         else if (!strcmp(res->filter_type, "hashmac"))
6250                 filter.filter_type = RTE_MAC_HASH_MATCH;
6251         else if (!strcmp(res->filter_type, "hashmac-vlan"))
6252                 filter.filter_type = RTE_MACVLAN_HASH_MATCH;
6253
6254         is_on = (strcmp(res->mode, "on") == 0) ? 1 : 0;
6255
6256         if (is_on)
6257                 ret = rte_eth_dev_filter_ctrl(res->port_id,
6258                                         RTE_ETH_FILTER_MACVLAN,
6259                                         RTE_ETH_FILTER_ADD,
6260                                          &filter);
6261         else
6262                 ret = rte_eth_dev_filter_ctrl(res->port_id,
6263                                         RTE_ETH_FILTER_MACVLAN,
6264                                         RTE_ETH_FILTER_DELETE,
6265                                         &filter);
6266
6267         if (ret < 0)
6268                 printf("bad set MAC hash parameter, return code = %d\n", ret);
6269
6270 }
6271
6272 cmdline_parse_token_string_t cmd_set_vf_macvlan_set =
6273         TOKEN_STRING_INITIALIZER(struct cmd_set_vf_macvlan_filter,
6274                                  set, "set");
6275 cmdline_parse_token_string_t cmd_set_vf_macvlan_port =
6276         TOKEN_STRING_INITIALIZER(struct cmd_set_vf_macvlan_filter,
6277                                  port, "port");
6278 cmdline_parse_token_num_t cmd_set_vf_macvlan_portid =
6279         TOKEN_NUM_INITIALIZER(struct cmd_set_vf_macvlan_filter,
6280                               port_id, UINT8);
6281 cmdline_parse_token_string_t cmd_set_vf_macvlan_vf =
6282         TOKEN_STRING_INITIALIZER(struct cmd_set_vf_macvlan_filter,
6283                                  vf, "vf");
6284 cmdline_parse_token_num_t cmd_set_vf_macvlan_vf_id =
6285         TOKEN_NUM_INITIALIZER(struct cmd_set_vf_macvlan_filter,
6286                                 vf_id, UINT8);
6287 cmdline_parse_token_etheraddr_t cmd_set_vf_macvlan_mac =
6288         TOKEN_ETHERADDR_INITIALIZER(struct cmd_set_vf_macvlan_filter,
6289                                 address);
6290 cmdline_parse_token_string_t cmd_set_vf_macvlan_filter_type =
6291         TOKEN_STRING_INITIALIZER(struct cmd_set_vf_macvlan_filter,
6292                                 filter_type, "exact-mac#exact-mac-vlan"
6293                                 "#hashmac#hashmac-vlan");
6294 cmdline_parse_token_string_t cmd_set_vf_macvlan_mode =
6295         TOKEN_STRING_INITIALIZER(struct cmd_set_vf_macvlan_filter,
6296                                  mode, "on#off");
6297
6298 cmdline_parse_inst_t cmd_set_vf_macvlan_filter = {
6299         .f = cmd_set_vf_macvlan_parsed,
6300         .data = NULL,
6301         .help_str = "set port (portid) vf (vfid) (mac-addr) "
6302                         "(exact-mac|exact-mac-vlan|hashmac|hashmac-vlan) "
6303                         "on|off\n"
6304                         "exact match rule:exact match of MAC or MAC and VLAN; "
6305                         "hash match rule: hash match of MAC and exact match "
6306                         "of VLAN",
6307         .tokens = {
6308                 (void *)&cmd_set_vf_macvlan_set,
6309                 (void *)&cmd_set_vf_macvlan_port,
6310                 (void *)&cmd_set_vf_macvlan_portid,
6311                 (void *)&cmd_set_vf_macvlan_vf,
6312                 (void *)&cmd_set_vf_macvlan_vf_id,
6313                 (void *)&cmd_set_vf_macvlan_mac,
6314                 (void *)&cmd_set_vf_macvlan_filter_type,
6315                 (void *)&cmd_set_vf_macvlan_mode,
6316                 NULL,
6317         },
6318 };
6319
6320 /* *** CONFIGURE VF TRAFFIC CONTROL *** */
6321 struct cmd_set_vf_traffic {
6322         cmdline_fixed_string_t set;
6323         cmdline_fixed_string_t port;
6324         uint8_t port_id;
6325         cmdline_fixed_string_t vf;
6326         uint8_t vf_id;
6327         cmdline_fixed_string_t what;
6328         cmdline_fixed_string_t mode;
6329 };
6330
6331 static void
6332 cmd_set_vf_traffic_parsed(void *parsed_result,
6333                        __attribute__((unused)) struct cmdline *cl,
6334                        __attribute__((unused)) void *data)
6335 {
6336         struct cmd_set_vf_traffic *res = parsed_result;
6337         int is_rx = (strcmp(res->what, "rx") == 0) ? 1 : 0;
6338         int is_on = (strcmp(res->mode, "on") == 0) ? 1 : 0;
6339
6340         set_vf_traffic(res->port_id, (uint8_t)is_rx, res->vf_id,(uint8_t) is_on);
6341 }
6342
6343 cmdline_parse_token_string_t cmd_setvf_traffic_set =
6344         TOKEN_STRING_INITIALIZER(struct cmd_set_vf_traffic,
6345                                  set, "set");
6346 cmdline_parse_token_string_t cmd_setvf_traffic_port =
6347         TOKEN_STRING_INITIALIZER(struct cmd_set_vf_traffic,
6348                                  port, "port");
6349 cmdline_parse_token_num_t cmd_setvf_traffic_portid =
6350         TOKEN_NUM_INITIALIZER(struct cmd_set_vf_traffic,
6351                               port_id, UINT8);
6352 cmdline_parse_token_string_t cmd_setvf_traffic_vf =
6353         TOKEN_STRING_INITIALIZER(struct cmd_set_vf_traffic,
6354                                  vf, "vf");
6355 cmdline_parse_token_num_t cmd_setvf_traffic_vfid =
6356         TOKEN_NUM_INITIALIZER(struct cmd_set_vf_traffic,
6357                               vf_id, UINT8);
6358 cmdline_parse_token_string_t cmd_setvf_traffic_what =
6359         TOKEN_STRING_INITIALIZER(struct cmd_set_vf_traffic,
6360                                  what, "tx#rx");
6361 cmdline_parse_token_string_t cmd_setvf_traffic_mode =
6362         TOKEN_STRING_INITIALIZER(struct cmd_set_vf_traffic,
6363                                  mode, "on#off");
6364
6365 cmdline_parse_inst_t cmd_set_vf_traffic = {
6366         .f = cmd_set_vf_traffic_parsed,
6367         .data = NULL,
6368         .help_str = "set port X vf Y rx|tx on|off"
6369                         "(X = port number,Y = vf id)",
6370         .tokens = {
6371                 (void *)&cmd_setvf_traffic_set,
6372                 (void *)&cmd_setvf_traffic_port,
6373                 (void *)&cmd_setvf_traffic_portid,
6374                 (void *)&cmd_setvf_traffic_vf,
6375                 (void *)&cmd_setvf_traffic_vfid,
6376                 (void *)&cmd_setvf_traffic_what,
6377                 (void *)&cmd_setvf_traffic_mode,
6378                 NULL,
6379         },
6380 };
6381
6382 /* *** CONFIGURE VF RECEIVE MODE *** */
6383 struct cmd_set_vf_rxmode {
6384         cmdline_fixed_string_t set;
6385         cmdline_fixed_string_t port;
6386         uint8_t port_id;
6387         cmdline_fixed_string_t vf;
6388         uint8_t vf_id;
6389         cmdline_fixed_string_t what;
6390         cmdline_fixed_string_t mode;
6391         cmdline_fixed_string_t on;
6392 };
6393
6394 static void
6395 cmd_set_vf_rxmode_parsed(void *parsed_result,
6396                        __attribute__((unused)) struct cmdline *cl,
6397                        __attribute__((unused)) void *data)
6398 {
6399         int ret;
6400         uint16_t rx_mode = 0;
6401         struct cmd_set_vf_rxmode *res = parsed_result;
6402
6403         int is_on = (strcmp(res->on, "on") == 0) ? 1 : 0;
6404         if (!strcmp(res->what,"rxmode")) {
6405                 if (!strcmp(res->mode, "AUPE"))
6406                         rx_mode |= ETH_VMDQ_ACCEPT_UNTAG;
6407                 else if (!strcmp(res->mode, "ROPE"))
6408                         rx_mode |= ETH_VMDQ_ACCEPT_HASH_UC;
6409                 else if (!strcmp(res->mode, "BAM"))
6410                         rx_mode |= ETH_VMDQ_ACCEPT_BROADCAST;
6411                 else if (!strncmp(res->mode, "MPE",3))
6412                         rx_mode |= ETH_VMDQ_ACCEPT_MULTICAST;
6413         }
6414
6415         ret = rte_eth_dev_set_vf_rxmode(res->port_id,res->vf_id,rx_mode,(uint8_t)is_on);
6416         if (ret < 0)
6417                 printf("bad VF receive mode parameter, return code = %d \n",
6418                 ret);
6419 }
6420
6421 cmdline_parse_token_string_t cmd_set_vf_rxmode_set =
6422         TOKEN_STRING_INITIALIZER(struct cmd_set_vf_rxmode,
6423                                  set, "set");
6424 cmdline_parse_token_string_t cmd_set_vf_rxmode_port =
6425         TOKEN_STRING_INITIALIZER(struct cmd_set_vf_rxmode,
6426                                  port, "port");
6427 cmdline_parse_token_num_t cmd_set_vf_rxmode_portid =
6428         TOKEN_NUM_INITIALIZER(struct cmd_set_vf_rxmode,
6429                               port_id, UINT8);
6430 cmdline_parse_token_string_t cmd_set_vf_rxmode_vf =
6431         TOKEN_STRING_INITIALIZER(struct cmd_set_vf_rxmode,
6432                                  vf, "vf");
6433 cmdline_parse_token_num_t cmd_set_vf_rxmode_vfid =
6434         TOKEN_NUM_INITIALIZER(struct cmd_set_vf_rxmode,
6435                               vf_id, UINT8);
6436 cmdline_parse_token_string_t cmd_set_vf_rxmode_what =
6437         TOKEN_STRING_INITIALIZER(struct cmd_set_vf_rxmode,
6438                                  what, "rxmode");
6439 cmdline_parse_token_string_t cmd_set_vf_rxmode_mode =
6440         TOKEN_STRING_INITIALIZER(struct cmd_set_vf_rxmode,
6441                                  mode, "AUPE#ROPE#BAM#MPE");
6442 cmdline_parse_token_string_t cmd_set_vf_rxmode_on =
6443         TOKEN_STRING_INITIALIZER(struct cmd_set_vf_rxmode,
6444                                  on, "on#off");
6445
6446 cmdline_parse_inst_t cmd_set_vf_rxmode = {
6447         .f = cmd_set_vf_rxmode_parsed,
6448         .data = NULL,
6449         .help_str = "set port X vf Y rxmode AUPE|ROPE|BAM|MPE on|off",
6450         .tokens = {
6451                 (void *)&cmd_set_vf_rxmode_set,
6452                 (void *)&cmd_set_vf_rxmode_port,
6453                 (void *)&cmd_set_vf_rxmode_portid,
6454                 (void *)&cmd_set_vf_rxmode_vf,
6455                 (void *)&cmd_set_vf_rxmode_vfid,
6456                 (void *)&cmd_set_vf_rxmode_what,
6457                 (void *)&cmd_set_vf_rxmode_mode,
6458                 (void *)&cmd_set_vf_rxmode_on,
6459                 NULL,
6460         },
6461 };
6462
6463 /* *** ADD MAC ADDRESS FILTER FOR A VF OF A PORT *** */
6464 struct cmd_vf_mac_addr_result {
6465         cmdline_fixed_string_t mac_addr_cmd;
6466         cmdline_fixed_string_t what;
6467         cmdline_fixed_string_t port;
6468         uint8_t port_num;
6469         cmdline_fixed_string_t vf;
6470         uint8_t vf_num;
6471         struct ether_addr address;
6472 };
6473
6474 static void cmd_vf_mac_addr_parsed(void *parsed_result,
6475                 __attribute__((unused)) struct cmdline *cl,
6476                 __attribute__((unused)) void *data)
6477 {
6478         struct cmd_vf_mac_addr_result *res = parsed_result;
6479         int ret = 0;
6480
6481         if (strcmp(res->what, "add") == 0)
6482                 ret = rte_eth_dev_mac_addr_add(res->port_num,
6483                                         &res->address, res->vf_num);
6484         if(ret < 0)
6485                 printf("vf_mac_addr_cmd error: (%s)\n", strerror(-ret));
6486
6487 }
6488
6489 cmdline_parse_token_string_t cmd_vf_mac_addr_cmd =
6490         TOKEN_STRING_INITIALIZER(struct cmd_vf_mac_addr_result,
6491                                 mac_addr_cmd,"mac_addr");
6492 cmdline_parse_token_string_t cmd_vf_mac_addr_what =
6493         TOKEN_STRING_INITIALIZER(struct cmd_vf_mac_addr_result,
6494                                 what,"add");
6495 cmdline_parse_token_string_t cmd_vf_mac_addr_port =
6496         TOKEN_STRING_INITIALIZER(struct cmd_vf_mac_addr_result,
6497                                 port,"port");
6498 cmdline_parse_token_num_t cmd_vf_mac_addr_portnum =
6499         TOKEN_NUM_INITIALIZER(struct cmd_vf_mac_addr_result,
6500                                 port_num, UINT8);
6501 cmdline_parse_token_string_t cmd_vf_mac_addr_vf =
6502         TOKEN_STRING_INITIALIZER(struct cmd_vf_mac_addr_result,
6503                                 vf,"vf");
6504 cmdline_parse_token_num_t cmd_vf_mac_addr_vfnum =
6505         TOKEN_NUM_INITIALIZER(struct cmd_vf_mac_addr_result,
6506                                 vf_num, UINT8);
6507 cmdline_parse_token_etheraddr_t cmd_vf_mac_addr_addr =
6508         TOKEN_ETHERADDR_INITIALIZER(struct cmd_vf_mac_addr_result,
6509                                 address);
6510
6511 cmdline_parse_inst_t cmd_vf_mac_addr_filter = {
6512         .f = cmd_vf_mac_addr_parsed,
6513         .data = (void *)0,
6514         .help_str = "mac_addr add port X vf Y ethaddr:(X = port number,"
6515         "Y = VF number)add MAC address filtering for a VF on port X",
6516         .tokens = {
6517                 (void *)&cmd_vf_mac_addr_cmd,
6518                 (void *)&cmd_vf_mac_addr_what,
6519                 (void *)&cmd_vf_mac_addr_port,
6520                 (void *)&cmd_vf_mac_addr_portnum,
6521                 (void *)&cmd_vf_mac_addr_vf,
6522                 (void *)&cmd_vf_mac_addr_vfnum,
6523                 (void *)&cmd_vf_mac_addr_addr,
6524                 NULL,
6525         },
6526 };
6527
6528 /* *** ADD/REMOVE A VLAN IDENTIFIER TO/FROM A PORT VLAN RX FILTER *** */
6529 struct cmd_vf_rx_vlan_filter {
6530         cmdline_fixed_string_t rx_vlan;
6531         cmdline_fixed_string_t what;
6532         uint16_t vlan_id;
6533         cmdline_fixed_string_t port;
6534         uint8_t port_id;
6535         cmdline_fixed_string_t vf;
6536         uint64_t vf_mask;
6537 };
6538
6539 static void
6540 cmd_vf_rx_vlan_filter_parsed(void *parsed_result,
6541                           __attribute__((unused)) struct cmdline *cl,
6542                           __attribute__((unused)) void *data)
6543 {
6544         struct cmd_vf_rx_vlan_filter *res = parsed_result;
6545
6546         if (!strcmp(res->what, "add"))
6547                 set_vf_rx_vlan(res->port_id, res->vlan_id,res->vf_mask, 1);
6548         else
6549                 set_vf_rx_vlan(res->port_id, res->vlan_id,res->vf_mask, 0);
6550 }
6551
6552 cmdline_parse_token_string_t cmd_vf_rx_vlan_filter_rx_vlan =
6553         TOKEN_STRING_INITIALIZER(struct cmd_vf_rx_vlan_filter,
6554                                  rx_vlan, "rx_vlan");
6555 cmdline_parse_token_string_t cmd_vf_rx_vlan_filter_what =
6556         TOKEN_STRING_INITIALIZER(struct cmd_vf_rx_vlan_filter,
6557                                  what, "add#rm");
6558 cmdline_parse_token_num_t cmd_vf_rx_vlan_filter_vlanid =
6559         TOKEN_NUM_INITIALIZER(struct cmd_vf_rx_vlan_filter,
6560                               vlan_id, UINT16);
6561 cmdline_parse_token_string_t cmd_vf_rx_vlan_filter_port =
6562         TOKEN_STRING_INITIALIZER(struct cmd_vf_rx_vlan_filter,
6563                                  port, "port");
6564 cmdline_parse_token_num_t cmd_vf_rx_vlan_filter_portid =
6565         TOKEN_NUM_INITIALIZER(struct cmd_vf_rx_vlan_filter,
6566                               port_id, UINT8);
6567 cmdline_parse_token_string_t cmd_vf_rx_vlan_filter_vf =
6568         TOKEN_STRING_INITIALIZER(struct cmd_vf_rx_vlan_filter,
6569                                  vf, "vf");
6570 cmdline_parse_token_num_t cmd_vf_rx_vlan_filter_vf_mask =
6571         TOKEN_NUM_INITIALIZER(struct cmd_vf_rx_vlan_filter,
6572                               vf_mask, UINT64);
6573
6574 cmdline_parse_inst_t cmd_vf_rxvlan_filter = {
6575         .f = cmd_vf_rx_vlan_filter_parsed,
6576         .data = NULL,
6577         .help_str = "rx_vlan add|rm X port Y vf Z (X = VLAN ID,"
6578                 "Y = port number,Z = hexadecimal VF mask)",
6579         .tokens = {
6580                 (void *)&cmd_vf_rx_vlan_filter_rx_vlan,
6581                 (void *)&cmd_vf_rx_vlan_filter_what,
6582                 (void *)&cmd_vf_rx_vlan_filter_vlanid,
6583                 (void *)&cmd_vf_rx_vlan_filter_port,
6584                 (void *)&cmd_vf_rx_vlan_filter_portid,
6585                 (void *)&cmd_vf_rx_vlan_filter_vf,
6586                 (void *)&cmd_vf_rx_vlan_filter_vf_mask,
6587                 NULL,
6588         },
6589 };
6590
6591 /* *** SET RATE LIMIT FOR A QUEUE OF A PORT *** */
6592 struct cmd_queue_rate_limit_result {
6593         cmdline_fixed_string_t set;
6594         cmdline_fixed_string_t port;
6595         uint8_t port_num;
6596         cmdline_fixed_string_t queue;
6597         uint8_t queue_num;
6598         cmdline_fixed_string_t rate;
6599         uint16_t rate_num;
6600 };
6601
6602 static void cmd_queue_rate_limit_parsed(void *parsed_result,
6603                 __attribute__((unused)) struct cmdline *cl,
6604                 __attribute__((unused)) void *data)
6605 {
6606         struct cmd_queue_rate_limit_result *res = parsed_result;
6607         int ret = 0;
6608
6609         if ((strcmp(res->set, "set") == 0) && (strcmp(res->port, "port") == 0)
6610                 && (strcmp(res->queue, "queue") == 0)
6611                 && (strcmp(res->rate, "rate") == 0))
6612                 ret = set_queue_rate_limit(res->port_num, res->queue_num,
6613                                         res->rate_num);
6614         if (ret < 0)
6615                 printf("queue_rate_limit_cmd error: (%s)\n", strerror(-ret));
6616
6617 }
6618
6619 cmdline_parse_token_string_t cmd_queue_rate_limit_set =
6620         TOKEN_STRING_INITIALIZER(struct cmd_queue_rate_limit_result,
6621                                 set, "set");
6622 cmdline_parse_token_string_t cmd_queue_rate_limit_port =
6623         TOKEN_STRING_INITIALIZER(struct cmd_queue_rate_limit_result,
6624                                 port, "port");
6625 cmdline_parse_token_num_t cmd_queue_rate_limit_portnum =
6626         TOKEN_NUM_INITIALIZER(struct cmd_queue_rate_limit_result,
6627                                 port_num, UINT8);
6628 cmdline_parse_token_string_t cmd_queue_rate_limit_queue =
6629         TOKEN_STRING_INITIALIZER(struct cmd_queue_rate_limit_result,
6630                                 queue, "queue");
6631 cmdline_parse_token_num_t cmd_queue_rate_limit_queuenum =
6632         TOKEN_NUM_INITIALIZER(struct cmd_queue_rate_limit_result,
6633                                 queue_num, UINT8);
6634 cmdline_parse_token_string_t cmd_queue_rate_limit_rate =
6635         TOKEN_STRING_INITIALIZER(struct cmd_queue_rate_limit_result,
6636                                 rate, "rate");
6637 cmdline_parse_token_num_t cmd_queue_rate_limit_ratenum =
6638         TOKEN_NUM_INITIALIZER(struct cmd_queue_rate_limit_result,
6639                                 rate_num, UINT16);
6640
6641 cmdline_parse_inst_t cmd_queue_rate_limit = {
6642         .f = cmd_queue_rate_limit_parsed,
6643         .data = (void *)0,
6644         .help_str = "set port X queue Y rate Z:(X = port number,"
6645         "Y = queue number,Z = rate number)set rate limit for a queue on port X",
6646         .tokens = {
6647                 (void *)&cmd_queue_rate_limit_set,
6648                 (void *)&cmd_queue_rate_limit_port,
6649                 (void *)&cmd_queue_rate_limit_portnum,
6650                 (void *)&cmd_queue_rate_limit_queue,
6651                 (void *)&cmd_queue_rate_limit_queuenum,
6652                 (void *)&cmd_queue_rate_limit_rate,
6653                 (void *)&cmd_queue_rate_limit_ratenum,
6654                 NULL,
6655         },
6656 };
6657
6658 /* *** SET RATE LIMIT FOR A VF OF A PORT *** */
6659 struct cmd_vf_rate_limit_result {
6660         cmdline_fixed_string_t set;
6661         cmdline_fixed_string_t port;
6662         uint8_t port_num;
6663         cmdline_fixed_string_t vf;
6664         uint8_t vf_num;
6665         cmdline_fixed_string_t rate;
6666         uint16_t rate_num;
6667         cmdline_fixed_string_t q_msk;
6668         uint64_t q_msk_val;
6669 };
6670
6671 static void cmd_vf_rate_limit_parsed(void *parsed_result,
6672                 __attribute__((unused)) struct cmdline *cl,
6673                 __attribute__((unused)) void *data)
6674 {
6675         struct cmd_vf_rate_limit_result *res = parsed_result;
6676         int ret = 0;
6677
6678         if ((strcmp(res->set, "set") == 0) && (strcmp(res->port, "port") == 0)
6679                 && (strcmp(res->vf, "vf") == 0)
6680                 && (strcmp(res->rate, "rate") == 0)
6681                 && (strcmp(res->q_msk, "queue_mask") == 0))
6682                 ret = set_vf_rate_limit(res->port_num, res->vf_num,
6683                                         res->rate_num, res->q_msk_val);
6684         if (ret < 0)
6685                 printf("vf_rate_limit_cmd error: (%s)\n", strerror(-ret));
6686
6687 }
6688
6689 cmdline_parse_token_string_t cmd_vf_rate_limit_set =
6690         TOKEN_STRING_INITIALIZER(struct cmd_vf_rate_limit_result,
6691                                 set, "set");
6692 cmdline_parse_token_string_t cmd_vf_rate_limit_port =
6693         TOKEN_STRING_INITIALIZER(struct cmd_vf_rate_limit_result,
6694                                 port, "port");
6695 cmdline_parse_token_num_t cmd_vf_rate_limit_portnum =
6696         TOKEN_NUM_INITIALIZER(struct cmd_vf_rate_limit_result,
6697                                 port_num, UINT8);
6698 cmdline_parse_token_string_t cmd_vf_rate_limit_vf =
6699         TOKEN_STRING_INITIALIZER(struct cmd_vf_rate_limit_result,
6700                                 vf, "vf");
6701 cmdline_parse_token_num_t cmd_vf_rate_limit_vfnum =
6702         TOKEN_NUM_INITIALIZER(struct cmd_vf_rate_limit_result,
6703                                 vf_num, UINT8);
6704 cmdline_parse_token_string_t cmd_vf_rate_limit_rate =
6705         TOKEN_STRING_INITIALIZER(struct cmd_vf_rate_limit_result,
6706                                 rate, "rate");
6707 cmdline_parse_token_num_t cmd_vf_rate_limit_ratenum =
6708         TOKEN_NUM_INITIALIZER(struct cmd_vf_rate_limit_result,
6709                                 rate_num, UINT16);
6710 cmdline_parse_token_string_t cmd_vf_rate_limit_q_msk =
6711         TOKEN_STRING_INITIALIZER(struct cmd_vf_rate_limit_result,
6712                                 q_msk, "queue_mask");
6713 cmdline_parse_token_num_t cmd_vf_rate_limit_q_msk_val =
6714         TOKEN_NUM_INITIALIZER(struct cmd_vf_rate_limit_result,
6715                                 q_msk_val, UINT64);
6716
6717 cmdline_parse_inst_t cmd_vf_rate_limit = {
6718         .f = cmd_vf_rate_limit_parsed,
6719         .data = (void *)0,
6720         .help_str = "set port X vf Y rate Z queue_mask V:(X = port number,"
6721         "Y = VF number,Z = rate number, V = queue mask value)set rate limit "
6722         "for queues of VF on port X",
6723         .tokens = {
6724                 (void *)&cmd_vf_rate_limit_set,
6725                 (void *)&cmd_vf_rate_limit_port,
6726                 (void *)&cmd_vf_rate_limit_portnum,
6727                 (void *)&cmd_vf_rate_limit_vf,
6728                 (void *)&cmd_vf_rate_limit_vfnum,
6729                 (void *)&cmd_vf_rate_limit_rate,
6730                 (void *)&cmd_vf_rate_limit_ratenum,
6731                 (void *)&cmd_vf_rate_limit_q_msk,
6732                 (void *)&cmd_vf_rate_limit_q_msk_val,
6733                 NULL,
6734         },
6735 };
6736
6737 /* *** ADD TUNNEL FILTER OF A PORT *** */
6738 struct cmd_tunnel_filter_result {
6739         cmdline_fixed_string_t cmd;
6740         cmdline_fixed_string_t what;
6741         uint8_t port_id;
6742         struct ether_addr outer_mac;
6743         struct ether_addr inner_mac;
6744         cmdline_ipaddr_t ip_value;
6745         uint16_t inner_vlan;
6746         cmdline_fixed_string_t tunnel_type;
6747         cmdline_fixed_string_t filter_type;
6748         uint32_t tenant_id;
6749         uint16_t queue_num;
6750 };
6751
6752 static void
6753 cmd_tunnel_filter_parsed(void *parsed_result,
6754                           __attribute__((unused)) struct cmdline *cl,
6755                           __attribute__((unused)) void *data)
6756 {
6757         struct cmd_tunnel_filter_result *res = parsed_result;
6758         struct rte_eth_tunnel_filter_conf tunnel_filter_conf;
6759         int ret = 0;
6760
6761         memset(&tunnel_filter_conf, 0, sizeof(tunnel_filter_conf));
6762
6763         ether_addr_copy(&res->outer_mac, &tunnel_filter_conf.outer_mac);
6764         ether_addr_copy(&res->inner_mac, &tunnel_filter_conf.inner_mac);
6765         tunnel_filter_conf.inner_vlan = res->inner_vlan;
6766
6767         if (res->ip_value.family == AF_INET) {
6768                 tunnel_filter_conf.ip_addr.ipv4_addr =
6769                         res->ip_value.addr.ipv4.s_addr;
6770                 tunnel_filter_conf.ip_type = RTE_TUNNEL_IPTYPE_IPV4;
6771         } else {
6772                 memcpy(&(tunnel_filter_conf.ip_addr.ipv6_addr),
6773                         &(res->ip_value.addr.ipv6),
6774                         sizeof(struct in6_addr));
6775                 tunnel_filter_conf.ip_type = RTE_TUNNEL_IPTYPE_IPV6;
6776         }
6777
6778         if (!strcmp(res->filter_type, "imac-ivlan"))
6779                 tunnel_filter_conf.filter_type = RTE_TUNNEL_FILTER_IMAC_IVLAN;
6780         else if (!strcmp(res->filter_type, "imac-ivlan-tenid"))
6781                 tunnel_filter_conf.filter_type =
6782                         RTE_TUNNEL_FILTER_IMAC_IVLAN_TENID;
6783         else if (!strcmp(res->filter_type, "imac-tenid"))
6784                 tunnel_filter_conf.filter_type = RTE_TUNNEL_FILTER_IMAC_TENID;
6785         else if (!strcmp(res->filter_type, "imac"))
6786                 tunnel_filter_conf.filter_type = ETH_TUNNEL_FILTER_IMAC;
6787         else if (!strcmp(res->filter_type, "omac-imac-tenid"))
6788                 tunnel_filter_conf.filter_type =
6789                         RTE_TUNNEL_FILTER_OMAC_TENID_IMAC;
6790         else if (!strcmp(res->filter_type, "oip"))
6791                 tunnel_filter_conf.filter_type = ETH_TUNNEL_FILTER_OIP;
6792         else if (!strcmp(res->filter_type, "iip"))
6793                 tunnel_filter_conf.filter_type = ETH_TUNNEL_FILTER_IIP;
6794         else {
6795                 printf("The filter type is not supported");
6796                 return;
6797         }
6798
6799         if (!strcmp(res->tunnel_type, "vxlan"))
6800                 tunnel_filter_conf.tunnel_type = RTE_TUNNEL_TYPE_VXLAN;
6801         else if (!strcmp(res->tunnel_type, "nvgre"))
6802                 tunnel_filter_conf.tunnel_type = RTE_TUNNEL_TYPE_NVGRE;
6803         else if (!strcmp(res->tunnel_type, "ipingre"))
6804                 tunnel_filter_conf.tunnel_type = RTE_TUNNEL_TYPE_IP_IN_GRE;
6805         else {
6806                 printf("The tunnel type %s not supported.\n", res->tunnel_type);
6807                 return;
6808         }
6809
6810         tunnel_filter_conf.tenant_id = res->tenant_id;
6811         tunnel_filter_conf.queue_id = res->queue_num;
6812         if (!strcmp(res->what, "add"))
6813                 ret = rte_eth_dev_filter_ctrl(res->port_id,
6814                                         RTE_ETH_FILTER_TUNNEL,
6815                                         RTE_ETH_FILTER_ADD,
6816                                         &tunnel_filter_conf);
6817         else
6818                 ret = rte_eth_dev_filter_ctrl(res->port_id,
6819                                         RTE_ETH_FILTER_TUNNEL,
6820                                         RTE_ETH_FILTER_DELETE,
6821                                         &tunnel_filter_conf);
6822         if (ret < 0)
6823                 printf("cmd_tunnel_filter_parsed error: (%s)\n",
6824                                 strerror(-ret));
6825
6826 }
6827 cmdline_parse_token_string_t cmd_tunnel_filter_cmd =
6828         TOKEN_STRING_INITIALIZER(struct cmd_tunnel_filter_result,
6829         cmd, "tunnel_filter");
6830 cmdline_parse_token_string_t cmd_tunnel_filter_what =
6831         TOKEN_STRING_INITIALIZER(struct cmd_tunnel_filter_result,
6832         what, "add#rm");
6833 cmdline_parse_token_num_t cmd_tunnel_filter_port_id =
6834         TOKEN_NUM_INITIALIZER(struct cmd_tunnel_filter_result,
6835         port_id, UINT8);
6836 cmdline_parse_token_etheraddr_t cmd_tunnel_filter_outer_mac =
6837         TOKEN_ETHERADDR_INITIALIZER(struct cmd_tunnel_filter_result,
6838         outer_mac);
6839 cmdline_parse_token_etheraddr_t cmd_tunnel_filter_inner_mac =
6840         TOKEN_ETHERADDR_INITIALIZER(struct cmd_tunnel_filter_result,
6841         inner_mac);
6842 cmdline_parse_token_num_t cmd_tunnel_filter_innner_vlan =
6843         TOKEN_NUM_INITIALIZER(struct cmd_tunnel_filter_result,
6844         inner_vlan, UINT16);
6845 cmdline_parse_token_ipaddr_t cmd_tunnel_filter_ip_value =
6846         TOKEN_IPADDR_INITIALIZER(struct cmd_tunnel_filter_result,
6847         ip_value);
6848 cmdline_parse_token_string_t cmd_tunnel_filter_tunnel_type =
6849         TOKEN_STRING_INITIALIZER(struct cmd_tunnel_filter_result,
6850         tunnel_type, "vxlan#nvgre#ipingre");
6851
6852 cmdline_parse_token_string_t cmd_tunnel_filter_filter_type =
6853         TOKEN_STRING_INITIALIZER(struct cmd_tunnel_filter_result,
6854         filter_type, "oip#iip#imac-ivlan#imac-ivlan-tenid#imac-tenid#"
6855                 "imac#omac-imac-tenid");
6856 cmdline_parse_token_num_t cmd_tunnel_filter_tenant_id =
6857         TOKEN_NUM_INITIALIZER(struct cmd_tunnel_filter_result,
6858         tenant_id, UINT32);
6859 cmdline_parse_token_num_t cmd_tunnel_filter_queue_num =
6860         TOKEN_NUM_INITIALIZER(struct cmd_tunnel_filter_result,
6861         queue_num, UINT16);
6862
6863 cmdline_parse_inst_t cmd_tunnel_filter = {
6864         .f = cmd_tunnel_filter_parsed,
6865         .data = (void *)0,
6866         .help_str = "add/rm tunnel filter of a port: "
6867                         "tunnel_filter add port_id outer_mac inner_mac ip "
6868                         "inner_vlan tunnel_type(vxlan|nvgre|ipingre) filter_type "
6869                         "(oip|iip|imac-ivlan|imac-ivlan-tenid|imac-tenid|"
6870                         "imac|omac-imac-tenid) "
6871                         "tenant_id queue_num",
6872         .tokens = {
6873                 (void *)&cmd_tunnel_filter_cmd,
6874                 (void *)&cmd_tunnel_filter_what,
6875                 (void *)&cmd_tunnel_filter_port_id,
6876                 (void *)&cmd_tunnel_filter_outer_mac,
6877                 (void *)&cmd_tunnel_filter_inner_mac,
6878                 (void *)&cmd_tunnel_filter_ip_value,
6879                 (void *)&cmd_tunnel_filter_innner_vlan,
6880                 (void *)&cmd_tunnel_filter_tunnel_type,
6881                 (void *)&cmd_tunnel_filter_filter_type,
6882                 (void *)&cmd_tunnel_filter_tenant_id,
6883                 (void *)&cmd_tunnel_filter_queue_num,
6884                 NULL,
6885         },
6886 };
6887
6888 /* *** CONFIGURE TUNNEL UDP PORT *** */
6889 struct cmd_tunnel_udp_config {
6890         cmdline_fixed_string_t cmd;
6891         cmdline_fixed_string_t what;
6892         uint16_t udp_port;
6893         uint8_t port_id;
6894 };
6895
6896 static void
6897 cmd_tunnel_udp_config_parsed(void *parsed_result,
6898                           __attribute__((unused)) struct cmdline *cl,
6899                           __attribute__((unused)) void *data)
6900 {
6901         struct cmd_tunnel_udp_config *res = parsed_result;
6902         struct rte_eth_udp_tunnel tunnel_udp;
6903         int ret;
6904
6905         tunnel_udp.udp_port = res->udp_port;
6906
6907         if (!strcmp(res->cmd, "rx_vxlan_port"))
6908                 tunnel_udp.prot_type = RTE_TUNNEL_TYPE_VXLAN;
6909
6910         if (!strcmp(res->what, "add"))
6911                 ret = rte_eth_dev_udp_tunnel_port_add(res->port_id,
6912                                                       &tunnel_udp);
6913         else
6914                 ret = rte_eth_dev_udp_tunnel_port_delete(res->port_id,
6915                                                          &tunnel_udp);
6916
6917         if (ret < 0)
6918                 printf("udp tunneling add error: (%s)\n", strerror(-ret));
6919 }
6920
6921 cmdline_parse_token_string_t cmd_tunnel_udp_config_cmd =
6922         TOKEN_STRING_INITIALIZER(struct cmd_tunnel_udp_config,
6923                                 cmd, "rx_vxlan_port");
6924 cmdline_parse_token_string_t cmd_tunnel_udp_config_what =
6925         TOKEN_STRING_INITIALIZER(struct cmd_tunnel_udp_config,
6926                                 what, "add#rm");
6927 cmdline_parse_token_num_t cmd_tunnel_udp_config_udp_port =
6928         TOKEN_NUM_INITIALIZER(struct cmd_tunnel_udp_config,
6929                                 udp_port, UINT16);
6930 cmdline_parse_token_num_t cmd_tunnel_udp_config_port_id =
6931         TOKEN_NUM_INITIALIZER(struct cmd_tunnel_udp_config,
6932                                 port_id, UINT8);
6933
6934 cmdline_parse_inst_t cmd_tunnel_udp_config = {
6935         .f = cmd_tunnel_udp_config_parsed,
6936         .data = (void *)0,
6937         .help_str = "add/rm an tunneling UDP port filter: "
6938                         "rx_vxlan_port add udp_port port_id",
6939         .tokens = {
6940                 (void *)&cmd_tunnel_udp_config_cmd,
6941                 (void *)&cmd_tunnel_udp_config_what,
6942                 (void *)&cmd_tunnel_udp_config_udp_port,
6943                 (void *)&cmd_tunnel_udp_config_port_id,
6944                 NULL,
6945         },
6946 };
6947
6948 /* *** GLOBAL CONFIG *** */
6949 struct cmd_global_config_result {
6950         cmdline_fixed_string_t cmd;
6951         uint8_t port_id;
6952         cmdline_fixed_string_t cfg_type;
6953         uint8_t len;
6954 };
6955
6956 static void
6957 cmd_global_config_parsed(void *parsed_result,
6958                          __attribute__((unused)) struct cmdline *cl,
6959                          __attribute__((unused)) void *data)
6960 {
6961         struct cmd_global_config_result *res = parsed_result;
6962         struct rte_eth_global_cfg conf;
6963         int ret;
6964
6965         memset(&conf, 0, sizeof(conf));
6966         conf.cfg_type = RTE_ETH_GLOBAL_CFG_TYPE_GRE_KEY_LEN;
6967         conf.cfg.gre_key_len = res->len;
6968         ret = rte_eth_dev_filter_ctrl(res->port_id, RTE_ETH_FILTER_NONE,
6969                                       RTE_ETH_FILTER_SET, &conf);
6970         if (ret != 0)
6971                 printf("Global config error\n");
6972 }
6973
6974 cmdline_parse_token_string_t cmd_global_config_cmd =
6975         TOKEN_STRING_INITIALIZER(struct cmd_global_config_result, cmd,
6976                 "global_config");
6977 cmdline_parse_token_num_t cmd_global_config_port_id =
6978         TOKEN_NUM_INITIALIZER(struct cmd_global_config_result, port_id, UINT8);
6979 cmdline_parse_token_string_t cmd_global_config_type =
6980         TOKEN_STRING_INITIALIZER(struct cmd_global_config_result,
6981                 cfg_type, "gre-key-len");
6982 cmdline_parse_token_num_t cmd_global_config_gre_key_len =
6983         TOKEN_NUM_INITIALIZER(struct cmd_global_config_result,
6984                 len, UINT8);
6985
6986 cmdline_parse_inst_t cmd_global_config = {
6987         .f = cmd_global_config_parsed,
6988         .data = (void *)NULL,
6989         .help_str = "global_config <port_id> gre-key-len <number>",
6990         .tokens = {
6991                 (void *)&cmd_global_config_cmd,
6992                 (void *)&cmd_global_config_port_id,
6993                 (void *)&cmd_global_config_type,
6994                 (void *)&cmd_global_config_gre_key_len,
6995                 NULL,
6996         },
6997 };
6998
6999 /* *** CONFIGURE VM MIRROR VLAN/POOL RULE *** */
7000 struct cmd_set_mirror_mask_result {
7001         cmdline_fixed_string_t set;
7002         cmdline_fixed_string_t port;
7003         uint8_t port_id;
7004         cmdline_fixed_string_t mirror;
7005         uint8_t rule_id;
7006         cmdline_fixed_string_t what;
7007         cmdline_fixed_string_t value;
7008         cmdline_fixed_string_t dstpool;
7009         uint8_t dstpool_id;
7010         cmdline_fixed_string_t on;
7011 };
7012
7013 cmdline_parse_token_string_t cmd_mirror_mask_set =
7014         TOKEN_STRING_INITIALIZER(struct cmd_set_mirror_mask_result,
7015                                 set, "set");
7016 cmdline_parse_token_string_t cmd_mirror_mask_port =
7017         TOKEN_STRING_INITIALIZER(struct cmd_set_mirror_mask_result,
7018                                 port, "port");
7019 cmdline_parse_token_num_t cmd_mirror_mask_portid =
7020         TOKEN_NUM_INITIALIZER(struct cmd_set_mirror_mask_result,
7021                                 port_id, UINT8);
7022 cmdline_parse_token_string_t cmd_mirror_mask_mirror =
7023         TOKEN_STRING_INITIALIZER(struct cmd_set_mirror_mask_result,
7024                                 mirror, "mirror-rule");
7025 cmdline_parse_token_num_t cmd_mirror_mask_ruleid =
7026         TOKEN_NUM_INITIALIZER(struct cmd_set_mirror_mask_result,
7027                                 rule_id, UINT8);
7028 cmdline_parse_token_string_t cmd_mirror_mask_what =
7029         TOKEN_STRING_INITIALIZER(struct cmd_set_mirror_mask_result,
7030                                 what, "pool-mirror-up#pool-mirror-down"
7031                                       "#vlan-mirror");
7032 cmdline_parse_token_string_t cmd_mirror_mask_value =
7033         TOKEN_STRING_INITIALIZER(struct cmd_set_mirror_mask_result,
7034                                 value, NULL);
7035 cmdline_parse_token_string_t cmd_mirror_mask_dstpool =
7036         TOKEN_STRING_INITIALIZER(struct cmd_set_mirror_mask_result,
7037                                 dstpool, "dst-pool");
7038 cmdline_parse_token_num_t cmd_mirror_mask_poolid =
7039         TOKEN_NUM_INITIALIZER(struct cmd_set_mirror_mask_result,
7040                                 dstpool_id, UINT8);
7041 cmdline_parse_token_string_t cmd_mirror_mask_on =
7042         TOKEN_STRING_INITIALIZER(struct cmd_set_mirror_mask_result,
7043                                 on, "on#off");
7044
7045 static void
7046 cmd_set_mirror_mask_parsed(void *parsed_result,
7047                        __attribute__((unused)) struct cmdline *cl,
7048                        __attribute__((unused)) void *data)
7049 {
7050         int ret,nb_item,i;
7051         struct cmd_set_mirror_mask_result *res = parsed_result;
7052         struct rte_eth_mirror_conf mr_conf;
7053
7054         memset(&mr_conf, 0, sizeof(struct rte_eth_mirror_conf));
7055
7056         unsigned int vlan_list[ETH_MIRROR_MAX_VLANS];
7057
7058         mr_conf.dst_pool = res->dstpool_id;
7059
7060         if (!strcmp(res->what, "pool-mirror-up")) {
7061                 mr_conf.pool_mask = strtoull(res->value, NULL, 16);
7062                 mr_conf.rule_type = ETH_MIRROR_VIRTUAL_POOL_UP;
7063         } else if (!strcmp(res->what, "pool-mirror-down")) {
7064                 mr_conf.pool_mask = strtoull(res->value, NULL, 16);
7065                 mr_conf.rule_type = ETH_MIRROR_VIRTUAL_POOL_DOWN;
7066         } else if (!strcmp(res->what, "vlan-mirror")) {
7067                 mr_conf.rule_type = ETH_MIRROR_VLAN;
7068                 nb_item = parse_item_list(res->value, "vlan",
7069                                 ETH_MIRROR_MAX_VLANS, vlan_list, 1);
7070                 if (nb_item <= 0)
7071                         return;
7072
7073                 for (i = 0; i < nb_item; i++) {
7074                         if (vlan_list[i] > ETHER_MAX_VLAN_ID) {
7075                                 printf("Invalid vlan_id: must be < 4096\n");
7076                                 return;
7077                         }
7078
7079                         mr_conf.vlan.vlan_id[i] = (uint16_t)vlan_list[i];
7080                         mr_conf.vlan.vlan_mask |= 1ULL << i;
7081                 }
7082         }
7083
7084         if (!strcmp(res->on, "on"))
7085                 ret = rte_eth_mirror_rule_set(res->port_id, &mr_conf,
7086                                                 res->rule_id, 1);
7087         else
7088                 ret = rte_eth_mirror_rule_set(res->port_id, &mr_conf,
7089                                                 res->rule_id, 0);
7090         if (ret < 0)
7091                 printf("mirror rule add error: (%s)\n", strerror(-ret));
7092 }
7093
7094 cmdline_parse_inst_t cmd_set_mirror_mask = {
7095                 .f = cmd_set_mirror_mask_parsed,
7096                 .data = NULL,
7097                 .help_str = "set port X mirror-rule Y pool-mirror-up|pool-mirror-down|vlan-mirror"
7098                             " pool_mask|vlan_id[,vlan_id]* dst-pool Z on|off",
7099                 .tokens = {
7100                         (void *)&cmd_mirror_mask_set,
7101                         (void *)&cmd_mirror_mask_port,
7102                         (void *)&cmd_mirror_mask_portid,
7103                         (void *)&cmd_mirror_mask_mirror,
7104                         (void *)&cmd_mirror_mask_ruleid,
7105                         (void *)&cmd_mirror_mask_what,
7106                         (void *)&cmd_mirror_mask_value,
7107                         (void *)&cmd_mirror_mask_dstpool,
7108                         (void *)&cmd_mirror_mask_poolid,
7109                         (void *)&cmd_mirror_mask_on,
7110                         NULL,
7111                 },
7112 };
7113
7114 /* *** CONFIGURE VM MIRROR UDLINK/DOWNLINK RULE *** */
7115 struct cmd_set_mirror_link_result {
7116         cmdline_fixed_string_t set;
7117         cmdline_fixed_string_t port;
7118         uint8_t port_id;
7119         cmdline_fixed_string_t mirror;
7120         uint8_t rule_id;
7121         cmdline_fixed_string_t what;
7122         cmdline_fixed_string_t dstpool;
7123         uint8_t dstpool_id;
7124         cmdline_fixed_string_t on;
7125 };
7126
7127 cmdline_parse_token_string_t cmd_mirror_link_set =
7128         TOKEN_STRING_INITIALIZER(struct cmd_set_mirror_link_result,
7129                                  set, "set");
7130 cmdline_parse_token_string_t cmd_mirror_link_port =
7131         TOKEN_STRING_INITIALIZER(struct cmd_set_mirror_link_result,
7132                                 port, "port");
7133 cmdline_parse_token_num_t cmd_mirror_link_portid =
7134         TOKEN_NUM_INITIALIZER(struct cmd_set_mirror_link_result,
7135                                 port_id, UINT8);
7136 cmdline_parse_token_string_t cmd_mirror_link_mirror =
7137         TOKEN_STRING_INITIALIZER(struct cmd_set_mirror_link_result,
7138                                 mirror, "mirror-rule");
7139 cmdline_parse_token_num_t cmd_mirror_link_ruleid =
7140         TOKEN_NUM_INITIALIZER(struct cmd_set_mirror_link_result,
7141                             rule_id, UINT8);
7142 cmdline_parse_token_string_t cmd_mirror_link_what =
7143         TOKEN_STRING_INITIALIZER(struct cmd_set_mirror_link_result,
7144                                 what, "uplink-mirror#downlink-mirror");
7145 cmdline_parse_token_string_t cmd_mirror_link_dstpool =
7146         TOKEN_STRING_INITIALIZER(struct cmd_set_mirror_link_result,
7147                                 dstpool, "dst-pool");
7148 cmdline_parse_token_num_t cmd_mirror_link_poolid =
7149         TOKEN_NUM_INITIALIZER(struct cmd_set_mirror_link_result,
7150                                 dstpool_id, UINT8);
7151 cmdline_parse_token_string_t cmd_mirror_link_on =
7152         TOKEN_STRING_INITIALIZER(struct cmd_set_mirror_link_result,
7153                                 on, "on#off");
7154
7155 static void
7156 cmd_set_mirror_link_parsed(void *parsed_result,
7157                        __attribute__((unused)) struct cmdline *cl,
7158                        __attribute__((unused)) void *data)
7159 {
7160         int ret;
7161         struct cmd_set_mirror_link_result *res = parsed_result;
7162         struct rte_eth_mirror_conf mr_conf;
7163
7164         memset(&mr_conf, 0, sizeof(struct rte_eth_mirror_conf));
7165         if (!strcmp(res->what, "uplink-mirror"))
7166                 mr_conf.rule_type = ETH_MIRROR_UPLINK_PORT;
7167         else
7168                 mr_conf.rule_type = ETH_MIRROR_DOWNLINK_PORT;
7169
7170         mr_conf.dst_pool = res->dstpool_id;
7171
7172         if (!strcmp(res->on, "on"))
7173                 ret = rte_eth_mirror_rule_set(res->port_id, &mr_conf,
7174                                                 res->rule_id, 1);
7175         else
7176                 ret = rte_eth_mirror_rule_set(res->port_id, &mr_conf,
7177                                                 res->rule_id, 0);
7178
7179         /* check the return value and print it if is < 0 */
7180         if (ret < 0)
7181                 printf("mirror rule add error: (%s)\n", strerror(-ret));
7182
7183 }
7184
7185 cmdline_parse_inst_t cmd_set_mirror_link = {
7186                 .f = cmd_set_mirror_link_parsed,
7187                 .data = NULL,
7188                 .help_str = "set port X mirror-rule Y uplink-mirror|"
7189                         "downlink-mirror dst-pool Z on|off",
7190                 .tokens = {
7191                         (void *)&cmd_mirror_link_set,
7192                         (void *)&cmd_mirror_link_port,
7193                         (void *)&cmd_mirror_link_portid,
7194                         (void *)&cmd_mirror_link_mirror,
7195                         (void *)&cmd_mirror_link_ruleid,
7196                         (void *)&cmd_mirror_link_what,
7197                         (void *)&cmd_mirror_link_dstpool,
7198                         (void *)&cmd_mirror_link_poolid,
7199                         (void *)&cmd_mirror_link_on,
7200                         NULL,
7201                 },
7202 };
7203
7204 /* *** RESET VM MIRROR RULE *** */
7205 struct cmd_rm_mirror_rule_result {
7206         cmdline_fixed_string_t reset;
7207         cmdline_fixed_string_t port;
7208         uint8_t port_id;
7209         cmdline_fixed_string_t mirror;
7210         uint8_t rule_id;
7211 };
7212
7213 cmdline_parse_token_string_t cmd_rm_mirror_rule_reset =
7214         TOKEN_STRING_INITIALIZER(struct cmd_rm_mirror_rule_result,
7215                                  reset, "reset");
7216 cmdline_parse_token_string_t cmd_rm_mirror_rule_port =
7217         TOKEN_STRING_INITIALIZER(struct cmd_rm_mirror_rule_result,
7218                                 port, "port");
7219 cmdline_parse_token_num_t cmd_rm_mirror_rule_portid =
7220         TOKEN_NUM_INITIALIZER(struct cmd_rm_mirror_rule_result,
7221                                 port_id, UINT8);
7222 cmdline_parse_token_string_t cmd_rm_mirror_rule_mirror =
7223         TOKEN_STRING_INITIALIZER(struct cmd_rm_mirror_rule_result,
7224                                 mirror, "mirror-rule");
7225 cmdline_parse_token_num_t cmd_rm_mirror_rule_ruleid =
7226         TOKEN_NUM_INITIALIZER(struct cmd_rm_mirror_rule_result,
7227                                 rule_id, UINT8);
7228
7229 static void
7230 cmd_reset_mirror_rule_parsed(void *parsed_result,
7231                        __attribute__((unused)) struct cmdline *cl,
7232                        __attribute__((unused)) void *data)
7233 {
7234         int ret;
7235         struct cmd_set_mirror_link_result *res = parsed_result;
7236         /* check rule_id */
7237         ret = rte_eth_mirror_rule_reset(res->port_id,res->rule_id);
7238         if(ret < 0)
7239                 printf("mirror rule remove error: (%s)\n", strerror(-ret));
7240 }
7241
7242 cmdline_parse_inst_t cmd_reset_mirror_rule = {
7243                 .f = cmd_reset_mirror_rule_parsed,
7244                 .data = NULL,
7245                 .help_str = "reset port X mirror-rule Y",
7246                 .tokens = {
7247                         (void *)&cmd_rm_mirror_rule_reset,
7248                         (void *)&cmd_rm_mirror_rule_port,
7249                         (void *)&cmd_rm_mirror_rule_portid,
7250                         (void *)&cmd_rm_mirror_rule_mirror,
7251                         (void *)&cmd_rm_mirror_rule_ruleid,
7252                         NULL,
7253                 },
7254 };
7255
7256 /* ******************************************************************************** */
7257
7258 struct cmd_dump_result {
7259         cmdline_fixed_string_t dump;
7260 };
7261
7262 static void
7263 dump_struct_sizes(void)
7264 {
7265 #define DUMP_SIZE(t) printf("sizeof(" #t ") = %u\n", (unsigned)sizeof(t));
7266         DUMP_SIZE(struct rte_mbuf);
7267         DUMP_SIZE(struct rte_mempool);
7268         DUMP_SIZE(struct rte_ring);
7269 #undef DUMP_SIZE
7270 }
7271
7272 static void cmd_dump_parsed(void *parsed_result,
7273                             __attribute__((unused)) struct cmdline *cl,
7274                             __attribute__((unused)) void *data)
7275 {
7276         struct cmd_dump_result *res = parsed_result;
7277
7278         if (!strcmp(res->dump, "dump_physmem"))
7279                 rte_dump_physmem_layout(stdout);
7280         else if (!strcmp(res->dump, "dump_memzone"))
7281                 rte_memzone_dump(stdout);
7282         else if (!strcmp(res->dump, "dump_struct_sizes"))
7283                 dump_struct_sizes();
7284         else if (!strcmp(res->dump, "dump_ring"))
7285                 rte_ring_list_dump(stdout);
7286         else if (!strcmp(res->dump, "dump_mempool"))
7287                 rte_mempool_list_dump(stdout);
7288         else if (!strcmp(res->dump, "dump_devargs"))
7289                 rte_eal_devargs_dump(stdout);
7290 }
7291
7292 cmdline_parse_token_string_t cmd_dump_dump =
7293         TOKEN_STRING_INITIALIZER(struct cmd_dump_result, dump,
7294                 "dump_physmem#"
7295                 "dump_memzone#"
7296                 "dump_struct_sizes#"
7297                 "dump_ring#"
7298                 "dump_mempool#"
7299                 "dump_devargs");
7300
7301 cmdline_parse_inst_t cmd_dump = {
7302         .f = cmd_dump_parsed,  /* function to call */
7303         .data = NULL,      /* 2nd arg of func */
7304         .help_str = "dump status",
7305         .tokens = {        /* token list, NULL terminated */
7306                 (void *)&cmd_dump_dump,
7307                 NULL,
7308         },
7309 };
7310
7311 /* ******************************************************************************** */
7312
7313 struct cmd_dump_one_result {
7314         cmdline_fixed_string_t dump;
7315         cmdline_fixed_string_t name;
7316 };
7317
7318 static void cmd_dump_one_parsed(void *parsed_result, struct cmdline *cl,
7319                                 __attribute__((unused)) void *data)
7320 {
7321         struct cmd_dump_one_result *res = parsed_result;
7322
7323         if (!strcmp(res->dump, "dump_ring")) {
7324                 struct rte_ring *r;
7325                 r = rte_ring_lookup(res->name);
7326                 if (r == NULL) {
7327                         cmdline_printf(cl, "Cannot find ring\n");
7328                         return;
7329                 }
7330                 rte_ring_dump(stdout, r);
7331         } else if (!strcmp(res->dump, "dump_mempool")) {
7332                 struct rte_mempool *mp;
7333                 mp = rte_mempool_lookup(res->name);
7334                 if (mp == NULL) {
7335                         cmdline_printf(cl, "Cannot find mempool\n");
7336                         return;
7337                 }
7338                 rte_mempool_dump(stdout, mp);
7339         }
7340 }
7341
7342 cmdline_parse_token_string_t cmd_dump_one_dump =
7343         TOKEN_STRING_INITIALIZER(struct cmd_dump_one_result, dump,
7344                                  "dump_ring#dump_mempool");
7345
7346 cmdline_parse_token_string_t cmd_dump_one_name =
7347         TOKEN_STRING_INITIALIZER(struct cmd_dump_one_result, name, NULL);
7348
7349 cmdline_parse_inst_t cmd_dump_one = {
7350         .f = cmd_dump_one_parsed,  /* function to call */
7351         .data = NULL,      /* 2nd arg of func */
7352         .help_str = "dump one ring/mempool: dump_ring|dump_mempool <name>",
7353         .tokens = {        /* token list, NULL terminated */
7354                 (void *)&cmd_dump_one_dump,
7355                 (void *)&cmd_dump_one_name,
7356                 NULL,
7357         },
7358 };
7359
7360 /* *** Add/Del syn filter *** */
7361 struct cmd_syn_filter_result {
7362         cmdline_fixed_string_t filter;
7363         uint8_t port_id;
7364         cmdline_fixed_string_t ops;
7365         cmdline_fixed_string_t priority;
7366         cmdline_fixed_string_t high;
7367         cmdline_fixed_string_t queue;
7368         uint16_t queue_id;
7369 };
7370
7371 static void
7372 cmd_syn_filter_parsed(void *parsed_result,
7373                         __attribute__((unused)) struct cmdline *cl,
7374                         __attribute__((unused)) void *data)
7375 {
7376         struct cmd_syn_filter_result *res = parsed_result;
7377         struct rte_eth_syn_filter syn_filter;
7378         int ret = 0;
7379
7380         ret = rte_eth_dev_filter_supported(res->port_id,
7381                                         RTE_ETH_FILTER_SYN);
7382         if (ret < 0) {
7383                 printf("syn filter is not supported on port %u.\n",
7384                                 res->port_id);
7385                 return;
7386         }
7387
7388         memset(&syn_filter, 0, sizeof(syn_filter));
7389
7390         if (!strcmp(res->ops, "add")) {
7391                 if (!strcmp(res->high, "high"))
7392                         syn_filter.hig_pri = 1;
7393                 else
7394                         syn_filter.hig_pri = 0;
7395
7396                 syn_filter.queue = res->queue_id;
7397                 ret = rte_eth_dev_filter_ctrl(res->port_id,
7398                                                 RTE_ETH_FILTER_SYN,
7399                                                 RTE_ETH_FILTER_ADD,
7400                                                 &syn_filter);
7401         } else
7402                 ret = rte_eth_dev_filter_ctrl(res->port_id,
7403                                                 RTE_ETH_FILTER_SYN,
7404                                                 RTE_ETH_FILTER_DELETE,
7405                                                 &syn_filter);
7406
7407         if (ret < 0)
7408                 printf("syn filter programming error: (%s)\n",
7409                                 strerror(-ret));
7410 }
7411
7412 cmdline_parse_token_string_t cmd_syn_filter_filter =
7413         TOKEN_STRING_INITIALIZER(struct cmd_syn_filter_result,
7414         filter, "syn_filter");
7415 cmdline_parse_token_num_t cmd_syn_filter_port_id =
7416         TOKEN_NUM_INITIALIZER(struct cmd_syn_filter_result,
7417         port_id, UINT8);
7418 cmdline_parse_token_string_t cmd_syn_filter_ops =
7419         TOKEN_STRING_INITIALIZER(struct cmd_syn_filter_result,
7420         ops, "add#del");
7421 cmdline_parse_token_string_t cmd_syn_filter_priority =
7422         TOKEN_STRING_INITIALIZER(struct cmd_syn_filter_result,
7423                                 priority, "priority");
7424 cmdline_parse_token_string_t cmd_syn_filter_high =
7425         TOKEN_STRING_INITIALIZER(struct cmd_syn_filter_result,
7426                                 high, "high#low");
7427 cmdline_parse_token_string_t cmd_syn_filter_queue =
7428         TOKEN_STRING_INITIALIZER(struct cmd_syn_filter_result,
7429                                 queue, "queue");
7430 cmdline_parse_token_num_t cmd_syn_filter_queue_id =
7431         TOKEN_NUM_INITIALIZER(struct cmd_syn_filter_result,
7432                                 queue_id, UINT16);
7433
7434 cmdline_parse_inst_t cmd_syn_filter = {
7435         .f = cmd_syn_filter_parsed,
7436         .data = NULL,
7437         .help_str = "add/delete syn filter",
7438         .tokens = {
7439                 (void *)&cmd_syn_filter_filter,
7440                 (void *)&cmd_syn_filter_port_id,
7441                 (void *)&cmd_syn_filter_ops,
7442                 (void *)&cmd_syn_filter_priority,
7443                 (void *)&cmd_syn_filter_high,
7444                 (void *)&cmd_syn_filter_queue,
7445                 (void *)&cmd_syn_filter_queue_id,
7446                 NULL,
7447         },
7448 };
7449
7450 /* *** ADD/REMOVE A 2tuple FILTER *** */
7451 struct cmd_2tuple_filter_result {
7452         cmdline_fixed_string_t filter;
7453         uint8_t  port_id;
7454         cmdline_fixed_string_t ops;
7455         cmdline_fixed_string_t dst_port;
7456         uint16_t dst_port_value;
7457         cmdline_fixed_string_t protocol;
7458         uint8_t protocol_value;
7459         cmdline_fixed_string_t mask;
7460         uint8_t  mask_value;
7461         cmdline_fixed_string_t tcp_flags;
7462         uint8_t tcp_flags_value;
7463         cmdline_fixed_string_t priority;
7464         uint8_t  priority_value;
7465         cmdline_fixed_string_t queue;
7466         uint16_t  queue_id;
7467 };
7468
7469 static void
7470 cmd_2tuple_filter_parsed(void *parsed_result,
7471                         __attribute__((unused)) struct cmdline *cl,
7472                         __attribute__((unused)) void *data)
7473 {
7474         struct rte_eth_ntuple_filter filter;
7475         struct cmd_2tuple_filter_result *res = parsed_result;
7476         int ret = 0;
7477
7478         ret = rte_eth_dev_filter_supported(res->port_id, RTE_ETH_FILTER_NTUPLE);
7479         if (ret < 0) {
7480                 printf("ntuple filter is not supported on port %u.\n",
7481                         res->port_id);
7482                 return;
7483         }
7484
7485         memset(&filter, 0, sizeof(struct rte_eth_ntuple_filter));
7486
7487         filter.flags = RTE_2TUPLE_FLAGS;
7488         filter.dst_port_mask = (res->mask_value & 0x02) ? UINT16_MAX : 0;
7489         filter.proto_mask = (res->mask_value & 0x01) ? UINT8_MAX : 0;
7490         filter.proto = res->protocol_value;
7491         filter.priority = res->priority_value;
7492         if (res->tcp_flags_value != 0 && filter.proto != IPPROTO_TCP) {
7493                 printf("nonzero tcp_flags is only meaningful"
7494                         " when protocol is TCP.\n");
7495                 return;
7496         }
7497         if (res->tcp_flags_value > TCP_FLAG_ALL) {
7498                 printf("invalid TCP flags.\n");
7499                 return;
7500         }
7501
7502         if (res->tcp_flags_value != 0) {
7503                 filter.flags |= RTE_NTUPLE_FLAGS_TCP_FLAG;
7504                 filter.tcp_flags = res->tcp_flags_value;
7505         }
7506
7507         /* need convert to big endian. */
7508         filter.dst_port = rte_cpu_to_be_16(res->dst_port_value);
7509         filter.queue = res->queue_id;
7510
7511         if (!strcmp(res->ops, "add"))
7512                 ret = rte_eth_dev_filter_ctrl(res->port_id,
7513                                 RTE_ETH_FILTER_NTUPLE,
7514                                 RTE_ETH_FILTER_ADD,
7515                                 &filter);
7516         else
7517                 ret = rte_eth_dev_filter_ctrl(res->port_id,
7518                                 RTE_ETH_FILTER_NTUPLE,
7519                                 RTE_ETH_FILTER_DELETE,
7520                                 &filter);
7521         if (ret < 0)
7522                 printf("2tuple filter programming error: (%s)\n",
7523                         strerror(-ret));
7524
7525 }
7526
7527 cmdline_parse_token_string_t cmd_2tuple_filter_filter =
7528         TOKEN_STRING_INITIALIZER(struct cmd_2tuple_filter_result,
7529                                  filter, "2tuple_filter");
7530 cmdline_parse_token_num_t cmd_2tuple_filter_port_id =
7531         TOKEN_NUM_INITIALIZER(struct cmd_2tuple_filter_result,
7532                                 port_id, UINT8);
7533 cmdline_parse_token_string_t cmd_2tuple_filter_ops =
7534         TOKEN_STRING_INITIALIZER(struct cmd_2tuple_filter_result,
7535                                  ops, "add#del");
7536 cmdline_parse_token_string_t cmd_2tuple_filter_dst_port =
7537         TOKEN_STRING_INITIALIZER(struct cmd_2tuple_filter_result,
7538                                 dst_port, "dst_port");
7539 cmdline_parse_token_num_t cmd_2tuple_filter_dst_port_value =
7540         TOKEN_NUM_INITIALIZER(struct cmd_2tuple_filter_result,
7541                                 dst_port_value, UINT16);
7542 cmdline_parse_token_string_t cmd_2tuple_filter_protocol =
7543         TOKEN_STRING_INITIALIZER(struct cmd_2tuple_filter_result,
7544                                 protocol, "protocol");
7545 cmdline_parse_token_num_t cmd_2tuple_filter_protocol_value =
7546         TOKEN_NUM_INITIALIZER(struct cmd_2tuple_filter_result,
7547                                 protocol_value, UINT8);
7548 cmdline_parse_token_string_t cmd_2tuple_filter_mask =
7549         TOKEN_STRING_INITIALIZER(struct cmd_2tuple_filter_result,
7550                                 mask, "mask");
7551 cmdline_parse_token_num_t cmd_2tuple_filter_mask_value =
7552         TOKEN_NUM_INITIALIZER(struct cmd_2tuple_filter_result,
7553                                 mask_value, INT8);
7554 cmdline_parse_token_string_t cmd_2tuple_filter_tcp_flags =
7555         TOKEN_STRING_INITIALIZER(struct cmd_2tuple_filter_result,
7556                                 tcp_flags, "tcp_flags");
7557 cmdline_parse_token_num_t cmd_2tuple_filter_tcp_flags_value =
7558         TOKEN_NUM_INITIALIZER(struct cmd_2tuple_filter_result,
7559                                 tcp_flags_value, UINT8);
7560 cmdline_parse_token_string_t cmd_2tuple_filter_priority =
7561         TOKEN_STRING_INITIALIZER(struct cmd_2tuple_filter_result,
7562                                 priority, "priority");
7563 cmdline_parse_token_num_t cmd_2tuple_filter_priority_value =
7564         TOKEN_NUM_INITIALIZER(struct cmd_2tuple_filter_result,
7565                                 priority_value, UINT8);
7566 cmdline_parse_token_string_t cmd_2tuple_filter_queue =
7567         TOKEN_STRING_INITIALIZER(struct cmd_2tuple_filter_result,
7568                                 queue, "queue");
7569 cmdline_parse_token_num_t cmd_2tuple_filter_queue_id =
7570         TOKEN_NUM_INITIALIZER(struct cmd_2tuple_filter_result,
7571                                 queue_id, UINT16);
7572
7573 cmdline_parse_inst_t cmd_2tuple_filter = {
7574         .f = cmd_2tuple_filter_parsed,
7575         .data = NULL,
7576         .help_str = "add a 2tuple filter",
7577         .tokens = {
7578                 (void *)&cmd_2tuple_filter_filter,
7579                 (void *)&cmd_2tuple_filter_port_id,
7580                 (void *)&cmd_2tuple_filter_ops,
7581                 (void *)&cmd_2tuple_filter_dst_port,
7582                 (void *)&cmd_2tuple_filter_dst_port_value,
7583                 (void *)&cmd_2tuple_filter_protocol,
7584                 (void *)&cmd_2tuple_filter_protocol_value,
7585                 (void *)&cmd_2tuple_filter_mask,
7586                 (void *)&cmd_2tuple_filter_mask_value,
7587                 (void *)&cmd_2tuple_filter_tcp_flags,
7588                 (void *)&cmd_2tuple_filter_tcp_flags_value,
7589                 (void *)&cmd_2tuple_filter_priority,
7590                 (void *)&cmd_2tuple_filter_priority_value,
7591                 (void *)&cmd_2tuple_filter_queue,
7592                 (void *)&cmd_2tuple_filter_queue_id,
7593                 NULL,
7594         },
7595 };
7596
7597 /* *** ADD/REMOVE A 5tuple FILTER *** */
7598 struct cmd_5tuple_filter_result {
7599         cmdline_fixed_string_t filter;
7600         uint8_t  port_id;
7601         cmdline_fixed_string_t ops;
7602         cmdline_fixed_string_t dst_ip;
7603         cmdline_ipaddr_t dst_ip_value;
7604         cmdline_fixed_string_t src_ip;
7605         cmdline_ipaddr_t src_ip_value;
7606         cmdline_fixed_string_t dst_port;
7607         uint16_t dst_port_value;
7608         cmdline_fixed_string_t src_port;
7609         uint16_t src_port_value;
7610         cmdline_fixed_string_t protocol;
7611         uint8_t protocol_value;
7612         cmdline_fixed_string_t mask;
7613         uint8_t  mask_value;
7614         cmdline_fixed_string_t tcp_flags;
7615         uint8_t tcp_flags_value;
7616         cmdline_fixed_string_t priority;
7617         uint8_t  priority_value;
7618         cmdline_fixed_string_t queue;
7619         uint16_t  queue_id;
7620 };
7621
7622 static void
7623 cmd_5tuple_filter_parsed(void *parsed_result,
7624                         __attribute__((unused)) struct cmdline *cl,
7625                         __attribute__((unused)) void *data)
7626 {
7627         struct rte_eth_ntuple_filter filter;
7628         struct cmd_5tuple_filter_result *res = parsed_result;
7629         int ret = 0;
7630
7631         ret = rte_eth_dev_filter_supported(res->port_id, RTE_ETH_FILTER_NTUPLE);
7632         if (ret < 0) {
7633                 printf("ntuple filter is not supported on port %u.\n",
7634                         res->port_id);
7635                 return;
7636         }
7637
7638         memset(&filter, 0, sizeof(struct rte_eth_ntuple_filter));
7639
7640         filter.flags = RTE_5TUPLE_FLAGS;
7641         filter.dst_ip_mask = (res->mask_value & 0x10) ? UINT32_MAX : 0;
7642         filter.src_ip_mask = (res->mask_value & 0x08) ? UINT32_MAX : 0;
7643         filter.dst_port_mask = (res->mask_value & 0x04) ? UINT16_MAX : 0;
7644         filter.src_port_mask = (res->mask_value & 0x02) ? UINT16_MAX : 0;
7645         filter.proto_mask = (res->mask_value & 0x01) ? UINT8_MAX : 0;
7646         filter.proto = res->protocol_value;
7647         filter.priority = res->priority_value;
7648         if (res->tcp_flags_value != 0 && filter.proto != IPPROTO_TCP) {
7649                 printf("nonzero tcp_flags is only meaningful"
7650                         " when protocol is TCP.\n");
7651                 return;
7652         }
7653         if (res->tcp_flags_value > TCP_FLAG_ALL) {
7654                 printf("invalid TCP flags.\n");
7655                 return;
7656         }
7657
7658         if (res->tcp_flags_value != 0) {
7659                 filter.flags |= RTE_NTUPLE_FLAGS_TCP_FLAG;
7660                 filter.tcp_flags = res->tcp_flags_value;
7661         }
7662
7663         if (res->dst_ip_value.family == AF_INET)
7664                 /* no need to convert, already big endian. */
7665                 filter.dst_ip = res->dst_ip_value.addr.ipv4.s_addr;
7666         else {
7667                 if (filter.dst_ip_mask == 0) {
7668                         printf("can not support ipv6 involved compare.\n");
7669                         return;
7670                 }
7671                 filter.dst_ip = 0;
7672         }
7673
7674         if (res->src_ip_value.family == AF_INET)
7675                 /* no need to convert, already big endian. */
7676                 filter.src_ip = res->src_ip_value.addr.ipv4.s_addr;
7677         else {
7678                 if (filter.src_ip_mask == 0) {
7679                         printf("can not support ipv6 involved compare.\n");
7680                         return;
7681                 }
7682                 filter.src_ip = 0;
7683         }
7684         /* need convert to big endian. */
7685         filter.dst_port = rte_cpu_to_be_16(res->dst_port_value);
7686         filter.src_port = rte_cpu_to_be_16(res->src_port_value);
7687         filter.queue = res->queue_id;
7688
7689         if (!strcmp(res->ops, "add"))
7690                 ret = rte_eth_dev_filter_ctrl(res->port_id,
7691                                 RTE_ETH_FILTER_NTUPLE,
7692                                 RTE_ETH_FILTER_ADD,
7693                                 &filter);
7694         else
7695                 ret = rte_eth_dev_filter_ctrl(res->port_id,
7696                                 RTE_ETH_FILTER_NTUPLE,
7697                                 RTE_ETH_FILTER_DELETE,
7698                                 &filter);
7699         if (ret < 0)
7700                 printf("5tuple filter programming error: (%s)\n",
7701                         strerror(-ret));
7702 }
7703
7704 cmdline_parse_token_string_t cmd_5tuple_filter_filter =
7705         TOKEN_STRING_INITIALIZER(struct cmd_5tuple_filter_result,
7706                                  filter, "5tuple_filter");
7707 cmdline_parse_token_num_t cmd_5tuple_filter_port_id =
7708         TOKEN_NUM_INITIALIZER(struct cmd_5tuple_filter_result,
7709                                 port_id, UINT8);
7710 cmdline_parse_token_string_t cmd_5tuple_filter_ops =
7711         TOKEN_STRING_INITIALIZER(struct cmd_5tuple_filter_result,
7712                                  ops, "add#del");
7713 cmdline_parse_token_string_t cmd_5tuple_filter_dst_ip =
7714         TOKEN_STRING_INITIALIZER(struct cmd_5tuple_filter_result,
7715                                 dst_ip, "dst_ip");
7716 cmdline_parse_token_ipaddr_t cmd_5tuple_filter_dst_ip_value =
7717         TOKEN_IPADDR_INITIALIZER(struct cmd_5tuple_filter_result,
7718                                 dst_ip_value);
7719 cmdline_parse_token_string_t cmd_5tuple_filter_src_ip =
7720         TOKEN_STRING_INITIALIZER(struct cmd_5tuple_filter_result,
7721                                 src_ip, "src_ip");
7722 cmdline_parse_token_ipaddr_t cmd_5tuple_filter_src_ip_value =
7723         TOKEN_IPADDR_INITIALIZER(struct cmd_5tuple_filter_result,
7724                                 src_ip_value);
7725 cmdline_parse_token_string_t cmd_5tuple_filter_dst_port =
7726         TOKEN_STRING_INITIALIZER(struct cmd_5tuple_filter_result,
7727                                 dst_port, "dst_port");
7728 cmdline_parse_token_num_t cmd_5tuple_filter_dst_port_value =
7729         TOKEN_NUM_INITIALIZER(struct cmd_5tuple_filter_result,
7730                                 dst_port_value, UINT16);
7731 cmdline_parse_token_string_t cmd_5tuple_filter_src_port =
7732         TOKEN_STRING_INITIALIZER(struct cmd_5tuple_filter_result,
7733                                 src_port, "src_port");
7734 cmdline_parse_token_num_t cmd_5tuple_filter_src_port_value =
7735         TOKEN_NUM_INITIALIZER(struct cmd_5tuple_filter_result,
7736                                 src_port_value, UINT16);
7737 cmdline_parse_token_string_t cmd_5tuple_filter_protocol =
7738         TOKEN_STRING_INITIALIZER(struct cmd_5tuple_filter_result,
7739                                 protocol, "protocol");
7740 cmdline_parse_token_num_t cmd_5tuple_filter_protocol_value =
7741         TOKEN_NUM_INITIALIZER(struct cmd_5tuple_filter_result,
7742                                 protocol_value, UINT8);
7743 cmdline_parse_token_string_t cmd_5tuple_filter_mask =
7744         TOKEN_STRING_INITIALIZER(struct cmd_5tuple_filter_result,
7745                                 mask, "mask");
7746 cmdline_parse_token_num_t cmd_5tuple_filter_mask_value =
7747         TOKEN_NUM_INITIALIZER(struct cmd_5tuple_filter_result,
7748                                 mask_value, INT8);
7749 cmdline_parse_token_string_t cmd_5tuple_filter_tcp_flags =
7750         TOKEN_STRING_INITIALIZER(struct cmd_5tuple_filter_result,
7751                                 tcp_flags, "tcp_flags");
7752 cmdline_parse_token_num_t cmd_5tuple_filter_tcp_flags_value =
7753         TOKEN_NUM_INITIALIZER(struct cmd_5tuple_filter_result,
7754                                 tcp_flags_value, UINT8);
7755 cmdline_parse_token_string_t cmd_5tuple_filter_priority =
7756         TOKEN_STRING_INITIALIZER(struct cmd_5tuple_filter_result,
7757                                 priority, "priority");
7758 cmdline_parse_token_num_t cmd_5tuple_filter_priority_value =
7759         TOKEN_NUM_INITIALIZER(struct cmd_5tuple_filter_result,
7760                                 priority_value, UINT8);
7761 cmdline_parse_token_string_t cmd_5tuple_filter_queue =
7762         TOKEN_STRING_INITIALIZER(struct cmd_5tuple_filter_result,
7763                                 queue, "queue");
7764 cmdline_parse_token_num_t cmd_5tuple_filter_queue_id =
7765         TOKEN_NUM_INITIALIZER(struct cmd_5tuple_filter_result,
7766                                 queue_id, UINT16);
7767
7768 cmdline_parse_inst_t cmd_5tuple_filter = {
7769         .f = cmd_5tuple_filter_parsed,
7770         .data = NULL,
7771         .help_str = "add/del a 5tuple filter",
7772         .tokens = {
7773                 (void *)&cmd_5tuple_filter_filter,
7774                 (void *)&cmd_5tuple_filter_port_id,
7775                 (void *)&cmd_5tuple_filter_ops,
7776                 (void *)&cmd_5tuple_filter_dst_ip,
7777                 (void *)&cmd_5tuple_filter_dst_ip_value,
7778                 (void *)&cmd_5tuple_filter_src_ip,
7779                 (void *)&cmd_5tuple_filter_src_ip_value,
7780                 (void *)&cmd_5tuple_filter_dst_port,
7781                 (void *)&cmd_5tuple_filter_dst_port_value,
7782                 (void *)&cmd_5tuple_filter_src_port,
7783                 (void *)&cmd_5tuple_filter_src_port_value,
7784                 (void *)&cmd_5tuple_filter_protocol,
7785                 (void *)&cmd_5tuple_filter_protocol_value,
7786                 (void *)&cmd_5tuple_filter_mask,
7787                 (void *)&cmd_5tuple_filter_mask_value,
7788                 (void *)&cmd_5tuple_filter_tcp_flags,
7789                 (void *)&cmd_5tuple_filter_tcp_flags_value,
7790                 (void *)&cmd_5tuple_filter_priority,
7791                 (void *)&cmd_5tuple_filter_priority_value,
7792                 (void *)&cmd_5tuple_filter_queue,
7793                 (void *)&cmd_5tuple_filter_queue_id,
7794                 NULL,
7795         },
7796 };
7797
7798 /* *** ADD/REMOVE A flex FILTER *** */
7799 struct cmd_flex_filter_result {
7800         cmdline_fixed_string_t filter;
7801         cmdline_fixed_string_t ops;
7802         uint8_t port_id;
7803         cmdline_fixed_string_t len;
7804         uint8_t len_value;
7805         cmdline_fixed_string_t bytes;
7806         cmdline_fixed_string_t bytes_value;
7807         cmdline_fixed_string_t mask;
7808         cmdline_fixed_string_t mask_value;
7809         cmdline_fixed_string_t priority;
7810         uint8_t priority_value;
7811         cmdline_fixed_string_t queue;
7812         uint16_t queue_id;
7813 };
7814
7815 static int xdigit2val(unsigned char c)
7816 {
7817         int val;
7818         if (isdigit(c))
7819                 val = c - '0';
7820         else if (isupper(c))
7821                 val = c - 'A' + 10;
7822         else
7823                 val = c - 'a' + 10;
7824         return val;
7825 }
7826
7827 static void
7828 cmd_flex_filter_parsed(void *parsed_result,
7829                           __attribute__((unused)) struct cmdline *cl,
7830                           __attribute__((unused)) void *data)
7831 {
7832         int ret = 0;
7833         struct rte_eth_flex_filter filter;
7834         struct cmd_flex_filter_result *res = parsed_result;
7835         char *bytes_ptr, *mask_ptr;
7836         uint16_t len, i, j = 0;
7837         char c;
7838         int val;
7839         uint8_t byte = 0;
7840
7841         if (res->len_value > RTE_FLEX_FILTER_MAXLEN) {
7842                 printf("the len exceed the max length 128\n");
7843                 return;
7844         }
7845         memset(&filter, 0, sizeof(struct rte_eth_flex_filter));
7846         filter.len = res->len_value;
7847         filter.priority = res->priority_value;
7848         filter.queue = res->queue_id;
7849         bytes_ptr = res->bytes_value;
7850         mask_ptr = res->mask_value;
7851
7852          /* translate bytes string to array. */
7853         if (bytes_ptr[0] == '0' && ((bytes_ptr[1] == 'x') ||
7854                 (bytes_ptr[1] == 'X')))
7855                 bytes_ptr += 2;
7856         len = strnlen(bytes_ptr, res->len_value * 2);
7857         if (len == 0 || (len % 8 != 0)) {
7858                 printf("please check len and bytes input\n");
7859                 return;
7860         }
7861         for (i = 0; i < len; i++) {
7862                 c = bytes_ptr[i];
7863                 if (isxdigit(c) == 0) {
7864                         /* invalid characters. */
7865                         printf("invalid input\n");
7866                         return;
7867                 }
7868                 val = xdigit2val(c);
7869                 if (i % 2) {
7870                         byte |= val;
7871                         filter.bytes[j] = byte;
7872                         printf("bytes[%d]:%02x ", j, filter.bytes[j]);
7873                         j++;
7874                         byte = 0;
7875                 } else
7876                         byte |= val << 4;
7877         }
7878         printf("\n");
7879          /* translate mask string to uint8_t array. */
7880         if (mask_ptr[0] == '0' && ((mask_ptr[1] == 'x') ||
7881                 (mask_ptr[1] == 'X')))
7882                 mask_ptr += 2;
7883         len = strnlen(mask_ptr, (res->len_value + 3) / 4);
7884         if (len == 0) {
7885                 printf("invalid input\n");
7886                 return;
7887         }
7888         j = 0;
7889         byte = 0;
7890         for (i = 0; i < len; i++) {
7891                 c = mask_ptr[i];
7892                 if (isxdigit(c) == 0) {
7893                         /* invalid characters. */
7894                         printf("invalid input\n");
7895                         return;
7896                 }
7897                 val = xdigit2val(c);
7898                 if (i % 2) {
7899                         byte |= val;
7900                         filter.mask[j] = byte;
7901                         printf("mask[%d]:%02x ", j, filter.mask[j]);
7902                         j++;
7903                         byte = 0;
7904                 } else
7905                         byte |= val << 4;
7906         }
7907         printf("\n");
7908
7909         if (!strcmp(res->ops, "add"))
7910                 ret = rte_eth_dev_filter_ctrl(res->port_id,
7911                                 RTE_ETH_FILTER_FLEXIBLE,
7912                                 RTE_ETH_FILTER_ADD,
7913                                 &filter);
7914         else
7915                 ret = rte_eth_dev_filter_ctrl(res->port_id,
7916                                 RTE_ETH_FILTER_FLEXIBLE,
7917                                 RTE_ETH_FILTER_DELETE,
7918                                 &filter);
7919
7920         if (ret < 0)
7921                 printf("flex filter setting error: (%s)\n", strerror(-ret));
7922 }
7923
7924 cmdline_parse_token_string_t cmd_flex_filter_filter =
7925         TOKEN_STRING_INITIALIZER(struct cmd_flex_filter_result,
7926                                 filter, "flex_filter");
7927 cmdline_parse_token_num_t cmd_flex_filter_port_id =
7928         TOKEN_NUM_INITIALIZER(struct cmd_flex_filter_result,
7929                                 port_id, UINT8);
7930 cmdline_parse_token_string_t cmd_flex_filter_ops =
7931         TOKEN_STRING_INITIALIZER(struct cmd_flex_filter_result,
7932                                 ops, "add#del");
7933 cmdline_parse_token_string_t cmd_flex_filter_len =
7934         TOKEN_STRING_INITIALIZER(struct cmd_flex_filter_result,
7935                                 len, "len");
7936 cmdline_parse_token_num_t cmd_flex_filter_len_value =
7937         TOKEN_NUM_INITIALIZER(struct cmd_flex_filter_result,
7938                                 len_value, UINT8);
7939 cmdline_parse_token_string_t cmd_flex_filter_bytes =
7940         TOKEN_STRING_INITIALIZER(struct cmd_flex_filter_result,
7941                                 bytes, "bytes");
7942 cmdline_parse_token_string_t cmd_flex_filter_bytes_value =
7943         TOKEN_STRING_INITIALIZER(struct cmd_flex_filter_result,
7944                                 bytes_value, NULL);
7945 cmdline_parse_token_string_t cmd_flex_filter_mask =
7946         TOKEN_STRING_INITIALIZER(struct cmd_flex_filter_result,
7947                                 mask, "mask");
7948 cmdline_parse_token_string_t cmd_flex_filter_mask_value =
7949         TOKEN_STRING_INITIALIZER(struct cmd_flex_filter_result,
7950                                 mask_value, NULL);
7951 cmdline_parse_token_string_t cmd_flex_filter_priority =
7952         TOKEN_STRING_INITIALIZER(struct cmd_flex_filter_result,
7953                                 priority, "priority");
7954 cmdline_parse_token_num_t cmd_flex_filter_priority_value =
7955         TOKEN_NUM_INITIALIZER(struct cmd_flex_filter_result,
7956                                 priority_value, UINT8);
7957 cmdline_parse_token_string_t cmd_flex_filter_queue =
7958         TOKEN_STRING_INITIALIZER(struct cmd_flex_filter_result,
7959                                 queue, "queue");
7960 cmdline_parse_token_num_t cmd_flex_filter_queue_id =
7961         TOKEN_NUM_INITIALIZER(struct cmd_flex_filter_result,
7962                                 queue_id, UINT16);
7963 cmdline_parse_inst_t cmd_flex_filter = {
7964         .f = cmd_flex_filter_parsed,
7965         .data = NULL,
7966         .help_str = "add/del a flex filter",
7967         .tokens = {
7968                 (void *)&cmd_flex_filter_filter,
7969                 (void *)&cmd_flex_filter_port_id,
7970                 (void *)&cmd_flex_filter_ops,
7971                 (void *)&cmd_flex_filter_len,
7972                 (void *)&cmd_flex_filter_len_value,
7973                 (void *)&cmd_flex_filter_bytes,
7974                 (void *)&cmd_flex_filter_bytes_value,
7975                 (void *)&cmd_flex_filter_mask,
7976                 (void *)&cmd_flex_filter_mask_value,
7977                 (void *)&cmd_flex_filter_priority,
7978                 (void *)&cmd_flex_filter_priority_value,
7979                 (void *)&cmd_flex_filter_queue,
7980                 (void *)&cmd_flex_filter_queue_id,
7981                 NULL,
7982         },
7983 };
7984
7985 /* *** Filters Control *** */
7986
7987 /* *** deal with ethertype filter *** */
7988 struct cmd_ethertype_filter_result {
7989         cmdline_fixed_string_t filter;
7990         uint8_t port_id;
7991         cmdline_fixed_string_t ops;
7992         cmdline_fixed_string_t mac;
7993         struct ether_addr mac_addr;
7994         cmdline_fixed_string_t ethertype;
7995         uint16_t ethertype_value;
7996         cmdline_fixed_string_t drop;
7997         cmdline_fixed_string_t queue;
7998         uint16_t  queue_id;
7999 };
8000
8001 cmdline_parse_token_string_t cmd_ethertype_filter_filter =
8002         TOKEN_STRING_INITIALIZER(struct cmd_ethertype_filter_result,
8003                                  filter, "ethertype_filter");
8004 cmdline_parse_token_num_t cmd_ethertype_filter_port_id =
8005         TOKEN_NUM_INITIALIZER(struct cmd_ethertype_filter_result,
8006                               port_id, UINT8);
8007 cmdline_parse_token_string_t cmd_ethertype_filter_ops =
8008         TOKEN_STRING_INITIALIZER(struct cmd_ethertype_filter_result,
8009                                  ops, "add#del");
8010 cmdline_parse_token_string_t cmd_ethertype_filter_mac =
8011         TOKEN_STRING_INITIALIZER(struct cmd_ethertype_filter_result,
8012                                  mac, "mac_addr#mac_ignr");
8013 cmdline_parse_token_etheraddr_t cmd_ethertype_filter_mac_addr =
8014         TOKEN_ETHERADDR_INITIALIZER(struct cmd_ethertype_filter_result,
8015                                      mac_addr);
8016 cmdline_parse_token_string_t cmd_ethertype_filter_ethertype =
8017         TOKEN_STRING_INITIALIZER(struct cmd_ethertype_filter_result,
8018                                  ethertype, "ethertype");
8019 cmdline_parse_token_num_t cmd_ethertype_filter_ethertype_value =
8020         TOKEN_NUM_INITIALIZER(struct cmd_ethertype_filter_result,
8021                               ethertype_value, UINT16);
8022 cmdline_parse_token_string_t cmd_ethertype_filter_drop =
8023         TOKEN_STRING_INITIALIZER(struct cmd_ethertype_filter_result,
8024                                  drop, "drop#fwd");
8025 cmdline_parse_token_string_t cmd_ethertype_filter_queue =
8026         TOKEN_STRING_INITIALIZER(struct cmd_ethertype_filter_result,
8027                                  queue, "queue");
8028 cmdline_parse_token_num_t cmd_ethertype_filter_queue_id =
8029         TOKEN_NUM_INITIALIZER(struct cmd_ethertype_filter_result,
8030                               queue_id, UINT16);
8031
8032 static void
8033 cmd_ethertype_filter_parsed(void *parsed_result,
8034                           __attribute__((unused)) struct cmdline *cl,
8035                           __attribute__((unused)) void *data)
8036 {
8037         struct cmd_ethertype_filter_result *res = parsed_result;
8038         struct rte_eth_ethertype_filter filter;
8039         int ret = 0;
8040
8041         ret = rte_eth_dev_filter_supported(res->port_id,
8042                         RTE_ETH_FILTER_ETHERTYPE);
8043         if (ret < 0) {
8044                 printf("ethertype filter is not supported on port %u.\n",
8045                         res->port_id);
8046                 return;
8047         }
8048
8049         memset(&filter, 0, sizeof(filter));
8050         if (!strcmp(res->mac, "mac_addr")) {
8051                 filter.flags |= RTE_ETHTYPE_FLAGS_MAC;
8052                 (void)rte_memcpy(&filter.mac_addr, &res->mac_addr,
8053                         sizeof(struct ether_addr));
8054         }
8055         if (!strcmp(res->drop, "drop"))
8056                 filter.flags |= RTE_ETHTYPE_FLAGS_DROP;
8057         filter.ether_type = res->ethertype_value;
8058         filter.queue = res->queue_id;
8059
8060         if (!strcmp(res->ops, "add"))
8061                 ret = rte_eth_dev_filter_ctrl(res->port_id,
8062                                 RTE_ETH_FILTER_ETHERTYPE,
8063                                 RTE_ETH_FILTER_ADD,
8064                                 &filter);
8065         else
8066                 ret = rte_eth_dev_filter_ctrl(res->port_id,
8067                                 RTE_ETH_FILTER_ETHERTYPE,
8068                                 RTE_ETH_FILTER_DELETE,
8069                                 &filter);
8070         if (ret < 0)
8071                 printf("ethertype filter programming error: (%s)\n",
8072                         strerror(-ret));
8073 }
8074
8075 cmdline_parse_inst_t cmd_ethertype_filter = {
8076         .f = cmd_ethertype_filter_parsed,
8077         .data = NULL,
8078         .help_str = "add or delete an ethertype filter entry",
8079         .tokens = {
8080                 (void *)&cmd_ethertype_filter_filter,
8081                 (void *)&cmd_ethertype_filter_port_id,
8082                 (void *)&cmd_ethertype_filter_ops,
8083                 (void *)&cmd_ethertype_filter_mac,
8084                 (void *)&cmd_ethertype_filter_mac_addr,
8085                 (void *)&cmd_ethertype_filter_ethertype,
8086                 (void *)&cmd_ethertype_filter_ethertype_value,
8087                 (void *)&cmd_ethertype_filter_drop,
8088                 (void *)&cmd_ethertype_filter_queue,
8089                 (void *)&cmd_ethertype_filter_queue_id,
8090                 NULL,
8091         },
8092 };
8093
8094 /* *** deal with flow director filter *** */
8095 struct cmd_flow_director_result {
8096         cmdline_fixed_string_t flow_director_filter;
8097         uint8_t port_id;
8098         cmdline_fixed_string_t mode;
8099         cmdline_fixed_string_t mode_value;
8100         cmdline_fixed_string_t ops;
8101         cmdline_fixed_string_t flow;
8102         cmdline_fixed_string_t flow_type;
8103         cmdline_fixed_string_t ether;
8104         uint16_t ether_type;
8105         cmdline_fixed_string_t src;
8106         cmdline_ipaddr_t ip_src;
8107         uint16_t port_src;
8108         cmdline_fixed_string_t dst;
8109         cmdline_ipaddr_t ip_dst;
8110         uint16_t port_dst;
8111         cmdline_fixed_string_t verify_tag;
8112         uint32_t verify_tag_value;
8113         cmdline_ipaddr_t tos;
8114         uint8_t tos_value;
8115         cmdline_ipaddr_t proto;
8116         uint8_t proto_value;
8117         cmdline_ipaddr_t ttl;
8118         uint8_t ttl_value;
8119         cmdline_fixed_string_t vlan;
8120         uint16_t vlan_value;
8121         cmdline_fixed_string_t flexbytes;
8122         cmdline_fixed_string_t flexbytes_value;
8123         cmdline_fixed_string_t pf_vf;
8124         cmdline_fixed_string_t drop;
8125         cmdline_fixed_string_t queue;
8126         uint16_t  queue_id;
8127         cmdline_fixed_string_t fd_id;
8128         uint32_t  fd_id_value;
8129         cmdline_fixed_string_t mac;
8130         struct ether_addr mac_addr;
8131         cmdline_fixed_string_t tunnel;
8132         cmdline_fixed_string_t tunnel_type;
8133         cmdline_fixed_string_t tunnel_id;
8134         uint32_t tunnel_id_value;
8135 };
8136
8137 static inline int
8138 parse_flexbytes(const char *q_arg, uint8_t *flexbytes, uint16_t max_num)
8139 {
8140         char s[256];
8141         const char *p, *p0 = q_arg;
8142         char *end;
8143         unsigned long int_fld;
8144         char *str_fld[max_num];
8145         int i;
8146         unsigned size;
8147         int ret = -1;
8148
8149         p = strchr(p0, '(');
8150         if (p == NULL)
8151                 return -1;
8152         ++p;
8153         p0 = strchr(p, ')');
8154         if (p0 == NULL)
8155                 return -1;
8156
8157         size = p0 - p;
8158         if (size >= sizeof(s))
8159                 return -1;
8160
8161         snprintf(s, sizeof(s), "%.*s", size, p);
8162         ret = rte_strsplit(s, sizeof(s), str_fld, max_num, ',');
8163         if (ret < 0 || ret > max_num)
8164                 return -1;
8165         for (i = 0; i < ret; i++) {
8166                 errno = 0;
8167                 int_fld = strtoul(str_fld[i], &end, 0);
8168                 if (errno != 0 || *end != '\0' || int_fld > UINT8_MAX)
8169                         return -1;
8170                 flexbytes[i] = (uint8_t)int_fld;
8171         }
8172         return ret;
8173 }
8174
8175 static uint16_t
8176 str2flowtype(char *string)
8177 {
8178         uint8_t i = 0;
8179         static const struct {
8180                 char str[32];
8181                 uint16_t type;
8182         } flowtype_str[] = {
8183                 {"raw", RTE_ETH_FLOW_RAW},
8184                 {"ipv4", RTE_ETH_FLOW_IPV4},
8185                 {"ipv4-frag", RTE_ETH_FLOW_FRAG_IPV4},
8186                 {"ipv4-tcp", RTE_ETH_FLOW_NONFRAG_IPV4_TCP},
8187                 {"ipv4-udp", RTE_ETH_FLOW_NONFRAG_IPV4_UDP},
8188                 {"ipv4-sctp", RTE_ETH_FLOW_NONFRAG_IPV4_SCTP},
8189                 {"ipv4-other", RTE_ETH_FLOW_NONFRAG_IPV4_OTHER},
8190                 {"ipv6", RTE_ETH_FLOW_IPV6},
8191                 {"ipv6-frag", RTE_ETH_FLOW_FRAG_IPV6},
8192                 {"ipv6-tcp", RTE_ETH_FLOW_NONFRAG_IPV6_TCP},
8193                 {"ipv6-udp", RTE_ETH_FLOW_NONFRAG_IPV6_UDP},
8194                 {"ipv6-sctp", RTE_ETH_FLOW_NONFRAG_IPV6_SCTP},
8195                 {"ipv6-other", RTE_ETH_FLOW_NONFRAG_IPV6_OTHER},
8196                 {"l2_payload", RTE_ETH_FLOW_L2_PAYLOAD},
8197         };
8198
8199         for (i = 0; i < RTE_DIM(flowtype_str); i++) {
8200                 if (!strcmp(flowtype_str[i].str, string))
8201                         return flowtype_str[i].type;
8202         }
8203         return RTE_ETH_FLOW_UNKNOWN;
8204 }
8205
8206 static enum rte_eth_fdir_tunnel_type
8207 str2fdir_tunneltype(char *string)
8208 {
8209         uint8_t i = 0;
8210
8211         static const struct {
8212                 char str[32];
8213                 enum rte_eth_fdir_tunnel_type type;
8214         } tunneltype_str[] = {
8215                 {"NVGRE", RTE_FDIR_TUNNEL_TYPE_NVGRE},
8216                 {"VxLAN", RTE_FDIR_TUNNEL_TYPE_VXLAN},
8217         };
8218
8219         for (i = 0; i < RTE_DIM(tunneltype_str); i++) {
8220                 if (!strcmp(tunneltype_str[i].str, string))
8221                         return tunneltype_str[i].type;
8222         }
8223         return RTE_FDIR_TUNNEL_TYPE_UNKNOWN;
8224 }
8225
8226 #define IPV4_ADDR_TO_UINT(ip_addr, ip) \
8227 do { \
8228         if ((ip_addr).family == AF_INET) \
8229                 (ip) = (ip_addr).addr.ipv4.s_addr; \
8230         else { \
8231                 printf("invalid parameter.\n"); \
8232                 return; \
8233         } \
8234 } while (0)
8235
8236 #define IPV6_ADDR_TO_ARRAY(ip_addr, ip) \
8237 do { \
8238         if ((ip_addr).family == AF_INET6) \
8239                 (void)rte_memcpy(&(ip), \
8240                                  &((ip_addr).addr.ipv6), \
8241                                  sizeof(struct in6_addr)); \
8242         else { \
8243                 printf("invalid parameter.\n"); \
8244                 return; \
8245         } \
8246 } while (0)
8247
8248 static void
8249 cmd_flow_director_filter_parsed(void *parsed_result,
8250                           __attribute__((unused)) struct cmdline *cl,
8251                           __attribute__((unused)) void *data)
8252 {
8253         struct cmd_flow_director_result *res = parsed_result;
8254         struct rte_eth_fdir_filter entry;
8255         uint8_t flexbytes[RTE_ETH_FDIR_MAX_FLEXLEN];
8256         char *end;
8257         unsigned long vf_id;
8258         int ret = 0;
8259
8260         ret = rte_eth_dev_filter_supported(res->port_id, RTE_ETH_FILTER_FDIR);
8261         if (ret < 0) {
8262                 printf("flow director is not supported on port %u.\n",
8263                         res->port_id);
8264                 return;
8265         }
8266         memset(flexbytes, 0, sizeof(flexbytes));
8267         memset(&entry, 0, sizeof(struct rte_eth_fdir_filter));
8268
8269         if (fdir_conf.mode ==  RTE_FDIR_MODE_PERFECT_MAC_VLAN) {
8270                 if (strcmp(res->mode_value, "MAC-VLAN")) {
8271                         printf("Please set mode to MAC-VLAN.\n");
8272                         return;
8273                 }
8274         } else if (fdir_conf.mode ==  RTE_FDIR_MODE_PERFECT_TUNNEL) {
8275                 if (strcmp(res->mode_value, "Tunnel")) {
8276                         printf("Please set mode to Tunnel.\n");
8277                         return;
8278                 }
8279         } else {
8280                 if (strcmp(res->mode_value, "IP")) {
8281                         printf("Please set mode to IP.\n");
8282                         return;
8283                 }
8284                 entry.input.flow_type = str2flowtype(res->flow_type);
8285         }
8286
8287         ret = parse_flexbytes(res->flexbytes_value,
8288                                         flexbytes,
8289                                         RTE_ETH_FDIR_MAX_FLEXLEN);
8290         if (ret < 0) {
8291                 printf("error: Cannot parse flexbytes input.\n");
8292                 return;
8293         }
8294
8295         switch (entry.input.flow_type) {
8296         case RTE_ETH_FLOW_FRAG_IPV4:
8297         case RTE_ETH_FLOW_NONFRAG_IPV4_OTHER:
8298                 entry.input.flow.ip4_flow.proto = res->proto_value;
8299         case RTE_ETH_FLOW_NONFRAG_IPV4_UDP:
8300         case RTE_ETH_FLOW_NONFRAG_IPV4_TCP:
8301                 IPV4_ADDR_TO_UINT(res->ip_dst,
8302                         entry.input.flow.ip4_flow.dst_ip);
8303                 IPV4_ADDR_TO_UINT(res->ip_src,
8304                         entry.input.flow.ip4_flow.src_ip);
8305                 entry.input.flow.ip4_flow.tos = res->tos_value;
8306                 entry.input.flow.ip4_flow.ttl = res->ttl_value;
8307                 /* need convert to big endian. */
8308                 entry.input.flow.udp4_flow.dst_port =
8309                                 rte_cpu_to_be_16(res->port_dst);
8310                 entry.input.flow.udp4_flow.src_port =
8311                                 rte_cpu_to_be_16(res->port_src);
8312                 break;
8313         case RTE_ETH_FLOW_NONFRAG_IPV4_SCTP:
8314                 IPV4_ADDR_TO_UINT(res->ip_dst,
8315                         entry.input.flow.sctp4_flow.ip.dst_ip);
8316                 IPV4_ADDR_TO_UINT(res->ip_src,
8317                         entry.input.flow.sctp4_flow.ip.src_ip);
8318                 entry.input.flow.ip4_flow.tos = res->tos_value;
8319                 entry.input.flow.ip4_flow.ttl = res->ttl_value;
8320                 /* need convert to big endian. */
8321                 entry.input.flow.sctp4_flow.dst_port =
8322                                 rte_cpu_to_be_16(res->port_dst);
8323                 entry.input.flow.sctp4_flow.src_port =
8324                                 rte_cpu_to_be_16(res->port_src);
8325                 entry.input.flow.sctp4_flow.verify_tag =
8326                                 rte_cpu_to_be_32(res->verify_tag_value);
8327                 break;
8328         case RTE_ETH_FLOW_FRAG_IPV6:
8329         case RTE_ETH_FLOW_NONFRAG_IPV6_OTHER:
8330                 entry.input.flow.ipv6_flow.proto = res->proto_value;
8331         case RTE_ETH_FLOW_NONFRAG_IPV6_UDP:
8332         case RTE_ETH_FLOW_NONFRAG_IPV6_TCP:
8333                 IPV6_ADDR_TO_ARRAY(res->ip_dst,
8334                         entry.input.flow.ipv6_flow.dst_ip);
8335                 IPV6_ADDR_TO_ARRAY(res->ip_src,
8336                         entry.input.flow.ipv6_flow.src_ip);
8337                 entry.input.flow.ipv6_flow.tc = res->tos_value;
8338                 entry.input.flow.ipv6_flow.hop_limits = res->ttl_value;
8339                 /* need convert to big endian. */
8340                 entry.input.flow.udp6_flow.dst_port =
8341                                 rte_cpu_to_be_16(res->port_dst);
8342                 entry.input.flow.udp6_flow.src_port =
8343                                 rte_cpu_to_be_16(res->port_src);
8344                 break;
8345         case RTE_ETH_FLOW_NONFRAG_IPV6_SCTP:
8346                 IPV6_ADDR_TO_ARRAY(res->ip_dst,
8347                         entry.input.flow.sctp6_flow.ip.dst_ip);
8348                 IPV6_ADDR_TO_ARRAY(res->ip_src,
8349                         entry.input.flow.sctp6_flow.ip.src_ip);
8350                 entry.input.flow.ipv6_flow.tc = res->tos_value;
8351                 entry.input.flow.ipv6_flow.hop_limits = res->ttl_value;
8352                 /* need convert to big endian. */
8353                 entry.input.flow.sctp6_flow.dst_port =
8354                                 rte_cpu_to_be_16(res->port_dst);
8355                 entry.input.flow.sctp6_flow.src_port =
8356                                 rte_cpu_to_be_16(res->port_src);
8357                 entry.input.flow.sctp6_flow.verify_tag =
8358                                 rte_cpu_to_be_32(res->verify_tag_value);
8359                 break;
8360         case RTE_ETH_FLOW_L2_PAYLOAD:
8361                 entry.input.flow.l2_flow.ether_type =
8362                         rte_cpu_to_be_16(res->ether_type);
8363                 break;
8364         default:
8365                 break;
8366         }
8367
8368         if (fdir_conf.mode ==  RTE_FDIR_MODE_PERFECT_MAC_VLAN)
8369                 (void)rte_memcpy(&entry.input.flow.mac_vlan_flow.mac_addr,
8370                                  &res->mac_addr,
8371                                  sizeof(struct ether_addr));
8372
8373         if (fdir_conf.mode ==  RTE_FDIR_MODE_PERFECT_TUNNEL) {
8374                 (void)rte_memcpy(&entry.input.flow.tunnel_flow.mac_addr,
8375                                  &res->mac_addr,
8376                                  sizeof(struct ether_addr));
8377                 entry.input.flow.tunnel_flow.tunnel_type =
8378                         str2fdir_tunneltype(res->tunnel_type);
8379                 entry.input.flow.tunnel_flow.tunnel_id =
8380                         rte_cpu_to_be_32(res->tunnel_id_value);
8381         }
8382
8383         (void)rte_memcpy(entry.input.flow_ext.flexbytes,
8384                    flexbytes,
8385                    RTE_ETH_FDIR_MAX_FLEXLEN);
8386
8387         entry.input.flow_ext.vlan_tci = rte_cpu_to_be_16(res->vlan_value);
8388
8389         entry.action.flex_off = 0;  /*use 0 by default */
8390         if (!strcmp(res->drop, "drop"))
8391                 entry.action.behavior = RTE_ETH_FDIR_REJECT;
8392         else
8393                 entry.action.behavior = RTE_ETH_FDIR_ACCEPT;
8394
8395         if (!strcmp(res->pf_vf, "pf"))
8396                 entry.input.flow_ext.is_vf = 0;
8397         else if (!strncmp(res->pf_vf, "vf", 2)) {
8398                 struct rte_eth_dev_info dev_info;
8399
8400                 memset(&dev_info, 0, sizeof(dev_info));
8401                 rte_eth_dev_info_get(res->port_id, &dev_info);
8402                 errno = 0;
8403                 vf_id = strtoul(res->pf_vf + 2, &end, 10);
8404                 if (errno != 0 || *end != '\0' || vf_id >= dev_info.max_vfs) {
8405                         printf("invalid parameter %s.\n", res->pf_vf);
8406                         return;
8407                 }
8408                 entry.input.flow_ext.is_vf = 1;
8409                 entry.input.flow_ext.dst_id = (uint16_t)vf_id;
8410         } else {
8411                 printf("invalid parameter %s.\n", res->pf_vf);
8412                 return;
8413         }
8414
8415         /* set to report FD ID by default */
8416         entry.action.report_status = RTE_ETH_FDIR_REPORT_ID;
8417         entry.action.rx_queue = res->queue_id;
8418         entry.soft_id = res->fd_id_value;
8419         if (!strcmp(res->ops, "add"))
8420                 ret = rte_eth_dev_filter_ctrl(res->port_id, RTE_ETH_FILTER_FDIR,
8421                                              RTE_ETH_FILTER_ADD, &entry);
8422         else if (!strcmp(res->ops, "del"))
8423                 ret = rte_eth_dev_filter_ctrl(res->port_id, RTE_ETH_FILTER_FDIR,
8424                                              RTE_ETH_FILTER_DELETE, &entry);
8425         else
8426                 ret = rte_eth_dev_filter_ctrl(res->port_id, RTE_ETH_FILTER_FDIR,
8427                                              RTE_ETH_FILTER_UPDATE, &entry);
8428         if (ret < 0)
8429                 printf("flow director programming error: (%s)\n",
8430                         strerror(-ret));
8431 }
8432
8433 cmdline_parse_token_string_t cmd_flow_director_filter =
8434         TOKEN_STRING_INITIALIZER(struct cmd_flow_director_result,
8435                                  flow_director_filter, "flow_director_filter");
8436 cmdline_parse_token_num_t cmd_flow_director_port_id =
8437         TOKEN_NUM_INITIALIZER(struct cmd_flow_director_result,
8438                               port_id, UINT8);
8439 cmdline_parse_token_string_t cmd_flow_director_ops =
8440         TOKEN_STRING_INITIALIZER(struct cmd_flow_director_result,
8441                                  ops, "add#del#update");
8442 cmdline_parse_token_string_t cmd_flow_director_flow =
8443         TOKEN_STRING_INITIALIZER(struct cmd_flow_director_result,
8444                                  flow, "flow");
8445 cmdline_parse_token_string_t cmd_flow_director_flow_type =
8446         TOKEN_STRING_INITIALIZER(struct cmd_flow_director_result,
8447                 flow_type, "ipv4-other#ipv4-frag#ipv4-tcp#ipv4-udp#ipv4-sctp#"
8448                 "ipv6-other#ipv6-frag#ipv6-tcp#ipv6-udp#ipv6-sctp#l2_payload");
8449 cmdline_parse_token_string_t cmd_flow_director_ether =
8450         TOKEN_STRING_INITIALIZER(struct cmd_flow_director_result,
8451                                  ether, "ether");
8452 cmdline_parse_token_num_t cmd_flow_director_ether_type =
8453         TOKEN_NUM_INITIALIZER(struct cmd_flow_director_result,
8454                               ether_type, UINT16);
8455 cmdline_parse_token_string_t cmd_flow_director_src =
8456         TOKEN_STRING_INITIALIZER(struct cmd_flow_director_result,
8457                                  src, "src");
8458 cmdline_parse_token_ipaddr_t cmd_flow_director_ip_src =
8459         TOKEN_IPADDR_INITIALIZER(struct cmd_flow_director_result,
8460                                  ip_src);
8461 cmdline_parse_token_num_t cmd_flow_director_port_src =
8462         TOKEN_NUM_INITIALIZER(struct cmd_flow_director_result,
8463                               port_src, UINT16);
8464 cmdline_parse_token_string_t cmd_flow_director_dst =
8465         TOKEN_STRING_INITIALIZER(struct cmd_flow_director_result,
8466                                  dst, "dst");
8467 cmdline_parse_token_ipaddr_t cmd_flow_director_ip_dst =
8468         TOKEN_IPADDR_INITIALIZER(struct cmd_flow_director_result,
8469                                  ip_dst);
8470 cmdline_parse_token_num_t cmd_flow_director_port_dst =
8471         TOKEN_NUM_INITIALIZER(struct cmd_flow_director_result,
8472                               port_dst, UINT16);
8473 cmdline_parse_token_string_t cmd_flow_director_verify_tag =
8474         TOKEN_STRING_INITIALIZER(struct cmd_flow_director_result,
8475                                   verify_tag, "verify_tag");
8476 cmdline_parse_token_num_t cmd_flow_director_verify_tag_value =
8477         TOKEN_NUM_INITIALIZER(struct cmd_flow_director_result,
8478                               verify_tag_value, UINT32);
8479 cmdline_parse_token_string_t cmd_flow_director_tos =
8480         TOKEN_STRING_INITIALIZER(struct cmd_flow_director_result,
8481                                  tos, "tos");
8482 cmdline_parse_token_num_t cmd_flow_director_tos_value =
8483         TOKEN_NUM_INITIALIZER(struct cmd_flow_director_result,
8484                               tos_value, UINT8);
8485 cmdline_parse_token_string_t cmd_flow_director_proto =
8486         TOKEN_STRING_INITIALIZER(struct cmd_flow_director_result,
8487                                  proto, "proto");
8488 cmdline_parse_token_num_t cmd_flow_director_proto_value =
8489         TOKEN_NUM_INITIALIZER(struct cmd_flow_director_result,
8490                               proto_value, UINT8);
8491 cmdline_parse_token_string_t cmd_flow_director_ttl =
8492         TOKEN_STRING_INITIALIZER(struct cmd_flow_director_result,
8493                                  ttl, "ttl");
8494 cmdline_parse_token_num_t cmd_flow_director_ttl_value =
8495         TOKEN_NUM_INITIALIZER(struct cmd_flow_director_result,
8496                               ttl_value, UINT8);
8497 cmdline_parse_token_string_t cmd_flow_director_vlan =
8498         TOKEN_STRING_INITIALIZER(struct cmd_flow_director_result,
8499                                  vlan, "vlan");
8500 cmdline_parse_token_num_t cmd_flow_director_vlan_value =
8501         TOKEN_NUM_INITIALIZER(struct cmd_flow_director_result,
8502                               vlan_value, UINT16);
8503 cmdline_parse_token_string_t cmd_flow_director_flexbytes =
8504         TOKEN_STRING_INITIALIZER(struct cmd_flow_director_result,
8505                                  flexbytes, "flexbytes");
8506 cmdline_parse_token_string_t cmd_flow_director_flexbytes_value =
8507         TOKEN_STRING_INITIALIZER(struct cmd_flow_director_result,
8508                               flexbytes_value, NULL);
8509 cmdline_parse_token_string_t cmd_flow_director_drop =
8510         TOKEN_STRING_INITIALIZER(struct cmd_flow_director_result,
8511                                  drop, "drop#fwd");
8512 cmdline_parse_token_string_t cmd_flow_director_pf_vf =
8513         TOKEN_STRING_INITIALIZER(struct cmd_flow_director_result,
8514                               pf_vf, NULL);
8515 cmdline_parse_token_string_t cmd_flow_director_queue =
8516         TOKEN_STRING_INITIALIZER(struct cmd_flow_director_result,
8517                                  queue, "queue");
8518 cmdline_parse_token_num_t cmd_flow_director_queue_id =
8519         TOKEN_NUM_INITIALIZER(struct cmd_flow_director_result,
8520                               queue_id, UINT16);
8521 cmdline_parse_token_string_t cmd_flow_director_fd_id =
8522         TOKEN_STRING_INITIALIZER(struct cmd_flow_director_result,
8523                                  fd_id, "fd_id");
8524 cmdline_parse_token_num_t cmd_flow_director_fd_id_value =
8525         TOKEN_NUM_INITIALIZER(struct cmd_flow_director_result,
8526                               fd_id_value, UINT32);
8527
8528 cmdline_parse_token_string_t cmd_flow_director_mode =
8529         TOKEN_STRING_INITIALIZER(struct cmd_flow_director_result,
8530                                  mode, "mode");
8531 cmdline_parse_token_string_t cmd_flow_director_mode_ip =
8532         TOKEN_STRING_INITIALIZER(struct cmd_flow_director_result,
8533                                  mode_value, "IP");
8534 cmdline_parse_token_string_t cmd_flow_director_mode_mac_vlan =
8535         TOKEN_STRING_INITIALIZER(struct cmd_flow_director_result,
8536                                  mode_value, "MAC-VLAN");
8537 cmdline_parse_token_string_t cmd_flow_director_mode_tunnel =
8538         TOKEN_STRING_INITIALIZER(struct cmd_flow_director_result,
8539                                  mode_value, "Tunnel");
8540 cmdline_parse_token_string_t cmd_flow_director_mac =
8541         TOKEN_STRING_INITIALIZER(struct cmd_flow_director_result,
8542                                  mac, "mac");
8543 cmdline_parse_token_etheraddr_t cmd_flow_director_mac_addr =
8544         TOKEN_ETHERADDR_INITIALIZER(struct cmd_flow_director_result,
8545                                     mac_addr);
8546 cmdline_parse_token_string_t cmd_flow_director_tunnel =
8547         TOKEN_STRING_INITIALIZER(struct cmd_flow_director_result,
8548                                  tunnel, "tunnel");
8549 cmdline_parse_token_string_t cmd_flow_director_tunnel_type =
8550         TOKEN_STRING_INITIALIZER(struct cmd_flow_director_result,
8551                                  tunnel_type, "NVGRE#VxLAN");
8552 cmdline_parse_token_string_t cmd_flow_director_tunnel_id =
8553         TOKEN_STRING_INITIALIZER(struct cmd_flow_director_result,
8554                                  tunnel_id, "tunnel-id");
8555 cmdline_parse_token_num_t cmd_flow_director_tunnel_id_value =
8556         TOKEN_NUM_INITIALIZER(struct cmd_flow_director_result,
8557                               tunnel_id_value, UINT32);
8558
8559 cmdline_parse_inst_t cmd_add_del_ip_flow_director = {
8560         .f = cmd_flow_director_filter_parsed,
8561         .data = NULL,
8562         .help_str = "add or delete an ip flow director entry on NIC",
8563         .tokens = {
8564                 (void *)&cmd_flow_director_filter,
8565                 (void *)&cmd_flow_director_port_id,
8566                 (void *)&cmd_flow_director_mode,
8567                 (void *)&cmd_flow_director_mode_ip,
8568                 (void *)&cmd_flow_director_ops,
8569                 (void *)&cmd_flow_director_flow,
8570                 (void *)&cmd_flow_director_flow_type,
8571                 (void *)&cmd_flow_director_src,
8572                 (void *)&cmd_flow_director_ip_src,
8573                 (void *)&cmd_flow_director_dst,
8574                 (void *)&cmd_flow_director_ip_dst,
8575                 (void *)&cmd_flow_director_tos,
8576                 (void *)&cmd_flow_director_tos_value,
8577                 (void *)&cmd_flow_director_proto,
8578                 (void *)&cmd_flow_director_proto_value,
8579                 (void *)&cmd_flow_director_ttl,
8580                 (void *)&cmd_flow_director_ttl_value,
8581                 (void *)&cmd_flow_director_vlan,
8582                 (void *)&cmd_flow_director_vlan_value,
8583                 (void *)&cmd_flow_director_flexbytes,
8584                 (void *)&cmd_flow_director_flexbytes_value,
8585                 (void *)&cmd_flow_director_drop,
8586                 (void *)&cmd_flow_director_pf_vf,
8587                 (void *)&cmd_flow_director_queue,
8588                 (void *)&cmd_flow_director_queue_id,
8589                 (void *)&cmd_flow_director_fd_id,
8590                 (void *)&cmd_flow_director_fd_id_value,
8591                 NULL,
8592         },
8593 };
8594
8595 cmdline_parse_inst_t cmd_add_del_udp_flow_director = {
8596         .f = cmd_flow_director_filter_parsed,
8597         .data = NULL,
8598         .help_str = "add or delete an udp/tcp flow director entry on NIC",
8599         .tokens = {
8600                 (void *)&cmd_flow_director_filter,
8601                 (void *)&cmd_flow_director_port_id,
8602                 (void *)&cmd_flow_director_mode,
8603                 (void *)&cmd_flow_director_mode_ip,
8604                 (void *)&cmd_flow_director_ops,
8605                 (void *)&cmd_flow_director_flow,
8606                 (void *)&cmd_flow_director_flow_type,
8607                 (void *)&cmd_flow_director_src,
8608                 (void *)&cmd_flow_director_ip_src,
8609                 (void *)&cmd_flow_director_port_src,
8610                 (void *)&cmd_flow_director_dst,
8611                 (void *)&cmd_flow_director_ip_dst,
8612                 (void *)&cmd_flow_director_port_dst,
8613                 (void *)&cmd_flow_director_tos,
8614                 (void *)&cmd_flow_director_tos_value,
8615                 (void *)&cmd_flow_director_ttl,
8616                 (void *)&cmd_flow_director_ttl_value,
8617                 (void *)&cmd_flow_director_vlan,
8618                 (void *)&cmd_flow_director_vlan_value,
8619                 (void *)&cmd_flow_director_flexbytes,
8620                 (void *)&cmd_flow_director_flexbytes_value,
8621                 (void *)&cmd_flow_director_drop,
8622                 (void *)&cmd_flow_director_pf_vf,
8623                 (void *)&cmd_flow_director_queue,
8624                 (void *)&cmd_flow_director_queue_id,
8625                 (void *)&cmd_flow_director_fd_id,
8626                 (void *)&cmd_flow_director_fd_id_value,
8627                 NULL,
8628         },
8629 };
8630
8631 cmdline_parse_inst_t cmd_add_del_sctp_flow_director = {
8632         .f = cmd_flow_director_filter_parsed,
8633         .data = NULL,
8634         .help_str = "add or delete a sctp flow director entry on NIC",
8635         .tokens = {
8636                 (void *)&cmd_flow_director_filter,
8637                 (void *)&cmd_flow_director_port_id,
8638                 (void *)&cmd_flow_director_mode,
8639                 (void *)&cmd_flow_director_mode_ip,
8640                 (void *)&cmd_flow_director_ops,
8641                 (void *)&cmd_flow_director_flow,
8642                 (void *)&cmd_flow_director_flow_type,
8643                 (void *)&cmd_flow_director_src,
8644                 (void *)&cmd_flow_director_ip_src,
8645                 (void *)&cmd_flow_director_port_dst,
8646                 (void *)&cmd_flow_director_dst,
8647                 (void *)&cmd_flow_director_ip_dst,
8648                 (void *)&cmd_flow_director_port_dst,
8649                 (void *)&cmd_flow_director_verify_tag,
8650                 (void *)&cmd_flow_director_verify_tag_value,
8651                 (void *)&cmd_flow_director_tos,
8652                 (void *)&cmd_flow_director_tos_value,
8653                 (void *)&cmd_flow_director_ttl,
8654                 (void *)&cmd_flow_director_ttl_value,
8655                 (void *)&cmd_flow_director_vlan,
8656                 (void *)&cmd_flow_director_vlan_value,
8657                 (void *)&cmd_flow_director_flexbytes,
8658                 (void *)&cmd_flow_director_flexbytes_value,
8659                 (void *)&cmd_flow_director_drop,
8660                 (void *)&cmd_flow_director_pf_vf,
8661                 (void *)&cmd_flow_director_queue,
8662                 (void *)&cmd_flow_director_queue_id,
8663                 (void *)&cmd_flow_director_fd_id,
8664                 (void *)&cmd_flow_director_fd_id_value,
8665                 NULL,
8666         },
8667 };
8668
8669 cmdline_parse_inst_t cmd_add_del_l2_flow_director = {
8670         .f = cmd_flow_director_filter_parsed,
8671         .data = NULL,
8672         .help_str = "add or delete a L2 flow director entry on NIC",
8673         .tokens = {
8674                 (void *)&cmd_flow_director_filter,
8675                 (void *)&cmd_flow_director_port_id,
8676                 (void *)&cmd_flow_director_mode,
8677                 (void *)&cmd_flow_director_mode_ip,
8678                 (void *)&cmd_flow_director_ops,
8679                 (void *)&cmd_flow_director_flow,
8680                 (void *)&cmd_flow_director_flow_type,
8681                 (void *)&cmd_flow_director_ether,
8682                 (void *)&cmd_flow_director_ether_type,
8683                 (void *)&cmd_flow_director_flexbytes,
8684                 (void *)&cmd_flow_director_flexbytes_value,
8685                 (void *)&cmd_flow_director_drop,
8686                 (void *)&cmd_flow_director_pf_vf,
8687                 (void *)&cmd_flow_director_queue,
8688                 (void *)&cmd_flow_director_queue_id,
8689                 (void *)&cmd_flow_director_fd_id,
8690                 (void *)&cmd_flow_director_fd_id_value,
8691                 NULL,
8692         },
8693 };
8694
8695 cmdline_parse_inst_t cmd_add_del_mac_vlan_flow_director = {
8696         .f = cmd_flow_director_filter_parsed,
8697         .data = NULL,
8698         .help_str = "add or delete a MAC VLAN flow director entry on NIC",
8699         .tokens = {
8700                 (void *)&cmd_flow_director_filter,
8701                 (void *)&cmd_flow_director_port_id,
8702                 (void *)&cmd_flow_director_mode,
8703                 (void *)&cmd_flow_director_mode_mac_vlan,
8704                 (void *)&cmd_flow_director_ops,
8705                 (void *)&cmd_flow_director_mac,
8706                 (void *)&cmd_flow_director_mac_addr,
8707                 (void *)&cmd_flow_director_vlan,
8708                 (void *)&cmd_flow_director_vlan_value,
8709                 (void *)&cmd_flow_director_flexbytes,
8710                 (void *)&cmd_flow_director_flexbytes_value,
8711                 (void *)&cmd_flow_director_drop,
8712                 (void *)&cmd_flow_director_queue,
8713                 (void *)&cmd_flow_director_queue_id,
8714                 (void *)&cmd_flow_director_fd_id,
8715                 (void *)&cmd_flow_director_fd_id_value,
8716                 NULL,
8717         },
8718 };
8719
8720 cmdline_parse_inst_t cmd_add_del_tunnel_flow_director = {
8721         .f = cmd_flow_director_filter_parsed,
8722         .data = NULL,
8723         .help_str = "add or delete a tunnel flow director entry on NIC",
8724         .tokens = {
8725                 (void *)&cmd_flow_director_filter,
8726                 (void *)&cmd_flow_director_port_id,
8727                 (void *)&cmd_flow_director_mode,
8728                 (void *)&cmd_flow_director_mode_tunnel,
8729                 (void *)&cmd_flow_director_ops,
8730                 (void *)&cmd_flow_director_mac,
8731                 (void *)&cmd_flow_director_mac_addr,
8732                 (void *)&cmd_flow_director_vlan,
8733                 (void *)&cmd_flow_director_vlan_value,
8734                 (void *)&cmd_flow_director_tunnel,
8735                 (void *)&cmd_flow_director_tunnel_type,
8736                 (void *)&cmd_flow_director_tunnel_id,
8737                 (void *)&cmd_flow_director_tunnel_id_value,
8738                 (void *)&cmd_flow_director_flexbytes,
8739                 (void *)&cmd_flow_director_flexbytes_value,
8740                 (void *)&cmd_flow_director_drop,
8741                 (void *)&cmd_flow_director_queue,
8742                 (void *)&cmd_flow_director_queue_id,
8743                 (void *)&cmd_flow_director_fd_id,
8744                 (void *)&cmd_flow_director_fd_id_value,
8745                 NULL,
8746         },
8747 };
8748
8749 struct cmd_flush_flow_director_result {
8750         cmdline_fixed_string_t flush_flow_director;
8751         uint8_t port_id;
8752 };
8753
8754 cmdline_parse_token_string_t cmd_flush_flow_director_flush =
8755         TOKEN_STRING_INITIALIZER(struct cmd_flush_flow_director_result,
8756                                  flush_flow_director, "flush_flow_director");
8757 cmdline_parse_token_num_t cmd_flush_flow_director_port_id =
8758         TOKEN_NUM_INITIALIZER(struct cmd_flush_flow_director_result,
8759                               port_id, UINT8);
8760
8761 static void
8762 cmd_flush_flow_director_parsed(void *parsed_result,
8763                           __attribute__((unused)) struct cmdline *cl,
8764                           __attribute__((unused)) void *data)
8765 {
8766         struct cmd_flow_director_result *res = parsed_result;
8767         int ret = 0;
8768
8769         ret = rte_eth_dev_filter_supported(res->port_id, RTE_ETH_FILTER_FDIR);
8770         if (ret < 0) {
8771                 printf("flow director is not supported on port %u.\n",
8772                         res->port_id);
8773                 return;
8774         }
8775
8776         ret = rte_eth_dev_filter_ctrl(res->port_id, RTE_ETH_FILTER_FDIR,
8777                         RTE_ETH_FILTER_FLUSH, NULL);
8778         if (ret < 0)
8779                 printf("flow director table flushing error: (%s)\n",
8780                         strerror(-ret));
8781 }
8782
8783 cmdline_parse_inst_t cmd_flush_flow_director = {
8784         .f = cmd_flush_flow_director_parsed,
8785         .data = NULL,
8786         .help_str = "flush all flow director entries of a device on NIC",
8787         .tokens = {
8788                 (void *)&cmd_flush_flow_director_flush,
8789                 (void *)&cmd_flush_flow_director_port_id,
8790                 NULL,
8791         },
8792 };
8793
8794 /* *** deal with flow director mask *** */
8795 struct cmd_flow_director_mask_result {
8796         cmdline_fixed_string_t flow_director_mask;
8797         uint8_t port_id;
8798         cmdline_fixed_string_t mode;
8799         cmdline_fixed_string_t mode_value;
8800         cmdline_fixed_string_t vlan;
8801         uint16_t vlan_mask;
8802         cmdline_fixed_string_t src_mask;
8803         cmdline_ipaddr_t ipv4_src;
8804         cmdline_ipaddr_t ipv6_src;
8805         uint16_t port_src;
8806         cmdline_fixed_string_t dst_mask;
8807         cmdline_ipaddr_t ipv4_dst;
8808         cmdline_ipaddr_t ipv6_dst;
8809         uint16_t port_dst;
8810         cmdline_fixed_string_t mac;
8811         uint8_t mac_addr_byte_mask;
8812         cmdline_fixed_string_t tunnel_id;
8813         uint32_t tunnel_id_mask;
8814         cmdline_fixed_string_t tunnel_type;
8815         uint8_t tunnel_type_mask;
8816 };
8817
8818 static void
8819 cmd_flow_director_mask_parsed(void *parsed_result,
8820                           __attribute__((unused)) struct cmdline *cl,
8821                           __attribute__((unused)) void *data)
8822 {
8823         struct cmd_flow_director_mask_result *res = parsed_result;
8824         struct rte_eth_fdir_masks *mask;
8825         struct rte_port *port;
8826
8827         if (res->port_id > nb_ports) {
8828                 printf("Invalid port, range is [0, %d]\n", nb_ports - 1);
8829                 return;
8830         }
8831
8832         port = &ports[res->port_id];
8833         /** Check if the port is not started **/
8834         if (port->port_status != RTE_PORT_STOPPED) {
8835                 printf("Please stop port %d first\n", res->port_id);
8836                 return;
8837         }
8838
8839         mask = &port->dev_conf.fdir_conf.mask;
8840
8841         if (fdir_conf.mode ==  RTE_FDIR_MODE_PERFECT_MAC_VLAN) {
8842                 if (strcmp(res->mode_value, "MAC-VLAN")) {
8843                         printf("Please set mode to MAC-VLAN.\n");
8844                         return;
8845                 }
8846
8847                 mask->vlan_tci_mask = res->vlan_mask;
8848                 mask->mac_addr_byte_mask = res->mac_addr_byte_mask;
8849         } else if (fdir_conf.mode ==  RTE_FDIR_MODE_PERFECT_TUNNEL) {
8850                 if (strcmp(res->mode_value, "Tunnel")) {
8851                         printf("Please set mode to Tunnel.\n");
8852                         return;
8853                 }
8854
8855                 mask->vlan_tci_mask = res->vlan_mask;
8856                 mask->mac_addr_byte_mask = res->mac_addr_byte_mask;
8857                 mask->tunnel_id_mask = res->tunnel_id_mask;
8858                 mask->tunnel_type_mask = res->tunnel_type_mask;
8859         } else {
8860                 if (strcmp(res->mode_value, "IP")) {
8861                         printf("Please set mode to IP.\n");
8862                         return;
8863                 }
8864
8865                 mask->vlan_tci_mask = rte_cpu_to_be_16(res->vlan_mask);
8866                 IPV4_ADDR_TO_UINT(res->ipv4_src, mask->ipv4_mask.src_ip);
8867                 IPV4_ADDR_TO_UINT(res->ipv4_dst, mask->ipv4_mask.dst_ip);
8868                 IPV6_ADDR_TO_ARRAY(res->ipv6_src, mask->ipv6_mask.src_ip);
8869                 IPV6_ADDR_TO_ARRAY(res->ipv6_dst, mask->ipv6_mask.dst_ip);
8870                 mask->src_port_mask = rte_cpu_to_be_16(res->port_src);
8871                 mask->dst_port_mask = rte_cpu_to_be_16(res->port_dst);
8872         }
8873
8874         cmd_reconfig_device_queue(res->port_id, 1, 1);
8875 }
8876
8877 cmdline_parse_token_string_t cmd_flow_director_mask =
8878         TOKEN_STRING_INITIALIZER(struct cmd_flow_director_mask_result,
8879                                  flow_director_mask, "flow_director_mask");
8880 cmdline_parse_token_num_t cmd_flow_director_mask_port_id =
8881         TOKEN_NUM_INITIALIZER(struct cmd_flow_director_mask_result,
8882                               port_id, UINT8);
8883 cmdline_parse_token_string_t cmd_flow_director_mask_vlan =
8884         TOKEN_STRING_INITIALIZER(struct cmd_flow_director_mask_result,
8885                                  vlan, "vlan");
8886 cmdline_parse_token_num_t cmd_flow_director_mask_vlan_value =
8887         TOKEN_NUM_INITIALIZER(struct cmd_flow_director_mask_result,
8888                               vlan_mask, UINT16);
8889 cmdline_parse_token_string_t cmd_flow_director_mask_src =
8890         TOKEN_STRING_INITIALIZER(struct cmd_flow_director_mask_result,
8891                                  src_mask, "src_mask");
8892 cmdline_parse_token_ipaddr_t cmd_flow_director_mask_ipv4_src =
8893         TOKEN_IPADDR_INITIALIZER(struct cmd_flow_director_mask_result,
8894                                  ipv4_src);
8895 cmdline_parse_token_ipaddr_t cmd_flow_director_mask_ipv6_src =
8896         TOKEN_IPADDR_INITIALIZER(struct cmd_flow_director_mask_result,
8897                                  ipv6_src);
8898 cmdline_parse_token_num_t cmd_flow_director_mask_port_src =
8899         TOKEN_NUM_INITIALIZER(struct cmd_flow_director_mask_result,
8900                               port_src, UINT16);
8901 cmdline_parse_token_string_t cmd_flow_director_mask_dst =
8902         TOKEN_STRING_INITIALIZER(struct cmd_flow_director_mask_result,
8903                                  dst_mask, "dst_mask");
8904 cmdline_parse_token_ipaddr_t cmd_flow_director_mask_ipv4_dst =
8905         TOKEN_IPADDR_INITIALIZER(struct cmd_flow_director_mask_result,
8906                                  ipv4_dst);
8907 cmdline_parse_token_ipaddr_t cmd_flow_director_mask_ipv6_dst =
8908         TOKEN_IPADDR_INITIALIZER(struct cmd_flow_director_mask_result,
8909                                  ipv6_dst);
8910 cmdline_parse_token_num_t cmd_flow_director_mask_port_dst =
8911         TOKEN_NUM_INITIALIZER(struct cmd_flow_director_mask_result,
8912                               port_dst, UINT16);
8913
8914 cmdline_parse_token_string_t cmd_flow_director_mask_mode =
8915         TOKEN_STRING_INITIALIZER(struct cmd_flow_director_mask_result,
8916                                  mode, "mode");
8917 cmdline_parse_token_string_t cmd_flow_director_mask_mode_ip =
8918         TOKEN_STRING_INITIALIZER(struct cmd_flow_director_mask_result,
8919                                  mode_value, "IP");
8920 cmdline_parse_token_string_t cmd_flow_director_mask_mode_mac_vlan =
8921         TOKEN_STRING_INITIALIZER(struct cmd_flow_director_mask_result,
8922                                  mode_value, "MAC-VLAN");
8923 cmdline_parse_token_string_t cmd_flow_director_mask_mode_tunnel =
8924         TOKEN_STRING_INITIALIZER(struct cmd_flow_director_mask_result,
8925                                  mode_value, "Tunnel");
8926 cmdline_parse_token_string_t cmd_flow_director_mask_mac =
8927         TOKEN_STRING_INITIALIZER(struct cmd_flow_director_mask_result,
8928                                  mac, "mac");
8929 cmdline_parse_token_num_t cmd_flow_director_mask_mac_value =
8930         TOKEN_NUM_INITIALIZER(struct cmd_flow_director_mask_result,
8931                               mac_addr_byte_mask, UINT8);
8932 cmdline_parse_token_string_t cmd_flow_director_mask_tunnel_type =
8933         TOKEN_STRING_INITIALIZER(struct cmd_flow_director_mask_result,
8934                                  tunnel_type, "tunnel-type");
8935 cmdline_parse_token_num_t cmd_flow_director_mask_tunnel_type_value =
8936         TOKEN_NUM_INITIALIZER(struct cmd_flow_director_mask_result,
8937                               tunnel_type_mask, UINT8);
8938 cmdline_parse_token_string_t cmd_flow_director_mask_tunnel_id =
8939         TOKEN_STRING_INITIALIZER(struct cmd_flow_director_mask_result,
8940                                  tunnel_id, "tunnel-id");
8941 cmdline_parse_token_num_t cmd_flow_director_mask_tunnel_id_value =
8942         TOKEN_NUM_INITIALIZER(struct cmd_flow_director_mask_result,
8943                               tunnel_id_mask, UINT32);
8944
8945 cmdline_parse_inst_t cmd_set_flow_director_ip_mask = {
8946         .f = cmd_flow_director_mask_parsed,
8947         .data = NULL,
8948         .help_str = "set IP mode flow director's mask on NIC",
8949         .tokens = {
8950                 (void *)&cmd_flow_director_mask,
8951                 (void *)&cmd_flow_director_mask_port_id,
8952                 (void *)&cmd_flow_director_mask_mode,
8953                 (void *)&cmd_flow_director_mask_mode_ip,
8954                 (void *)&cmd_flow_director_mask_vlan,
8955                 (void *)&cmd_flow_director_mask_vlan_value,
8956                 (void *)&cmd_flow_director_mask_src,
8957                 (void *)&cmd_flow_director_mask_ipv4_src,
8958                 (void *)&cmd_flow_director_mask_ipv6_src,
8959                 (void *)&cmd_flow_director_mask_port_src,
8960                 (void *)&cmd_flow_director_mask_dst,
8961                 (void *)&cmd_flow_director_mask_ipv4_dst,
8962                 (void *)&cmd_flow_director_mask_ipv6_dst,
8963                 (void *)&cmd_flow_director_mask_port_dst,
8964                 NULL,
8965         },
8966 };
8967
8968 cmdline_parse_inst_t cmd_set_flow_director_mac_vlan_mask = {
8969         .f = cmd_flow_director_mask_parsed,
8970         .data = NULL,
8971         .help_str = "set MAC VLAN mode flow director's mask on NIC",
8972         .tokens = {
8973                 (void *)&cmd_flow_director_mask,
8974                 (void *)&cmd_flow_director_mask_port_id,
8975                 (void *)&cmd_flow_director_mask_mode,
8976                 (void *)&cmd_flow_director_mask_mode_mac_vlan,
8977                 (void *)&cmd_flow_director_mask_vlan,
8978                 (void *)&cmd_flow_director_mask_vlan_value,
8979                 (void *)&cmd_flow_director_mask_mac,
8980                 (void *)&cmd_flow_director_mask_mac_value,
8981                 NULL,
8982         },
8983 };
8984
8985 cmdline_parse_inst_t cmd_set_flow_director_tunnel_mask = {
8986         .f = cmd_flow_director_mask_parsed,
8987         .data = NULL,
8988         .help_str = "set tunnel mode flow director's mask on NIC",
8989         .tokens = {
8990                 (void *)&cmd_flow_director_mask,
8991                 (void *)&cmd_flow_director_mask_port_id,
8992                 (void *)&cmd_flow_director_mask_mode,
8993                 (void *)&cmd_flow_director_mask_mode_tunnel,
8994                 (void *)&cmd_flow_director_mask_vlan,
8995                 (void *)&cmd_flow_director_mask_vlan_value,
8996                 (void *)&cmd_flow_director_mask_mac,
8997                 (void *)&cmd_flow_director_mask_mac_value,
8998                 (void *)&cmd_flow_director_mask_tunnel_type,
8999                 (void *)&cmd_flow_director_mask_tunnel_type_value,
9000                 (void *)&cmd_flow_director_mask_tunnel_id,
9001                 (void *)&cmd_flow_director_mask_tunnel_id_value,
9002                 NULL,
9003         },
9004 };
9005
9006 /* *** deal with flow director mask on flexible payload *** */
9007 struct cmd_flow_director_flex_mask_result {
9008         cmdline_fixed_string_t flow_director_flexmask;
9009         uint8_t port_id;
9010         cmdline_fixed_string_t flow;
9011         cmdline_fixed_string_t flow_type;
9012         cmdline_fixed_string_t mask;
9013 };
9014
9015 static void
9016 cmd_flow_director_flex_mask_parsed(void *parsed_result,
9017                           __attribute__((unused)) struct cmdline *cl,
9018                           __attribute__((unused)) void *data)
9019 {
9020         struct cmd_flow_director_flex_mask_result *res = parsed_result;
9021         struct rte_eth_fdir_info fdir_info;
9022         struct rte_eth_fdir_flex_mask flex_mask;
9023         struct rte_port *port;
9024         uint32_t flow_type_mask;
9025         uint16_t i;
9026         int ret;
9027
9028         if (res->port_id > nb_ports) {
9029                 printf("Invalid port, range is [0, %d]\n", nb_ports - 1);
9030                 return;
9031         }
9032
9033         port = &ports[res->port_id];
9034         /** Check if the port is not started **/
9035         if (port->port_status != RTE_PORT_STOPPED) {
9036                 printf("Please stop port %d first\n", res->port_id);
9037                 return;
9038         }
9039
9040         memset(&flex_mask, 0, sizeof(struct rte_eth_fdir_flex_mask));
9041         ret = parse_flexbytes(res->mask,
9042                         flex_mask.mask,
9043                         RTE_ETH_FDIR_MAX_FLEXLEN);
9044         if (ret < 0) {
9045                 printf("error: Cannot parse mask input.\n");
9046                 return;
9047         }
9048
9049         memset(&fdir_info, 0, sizeof(fdir_info));
9050         ret = rte_eth_dev_filter_ctrl(res->port_id, RTE_ETH_FILTER_FDIR,
9051                                 RTE_ETH_FILTER_INFO, &fdir_info);
9052         if (ret < 0) {
9053                 printf("Cannot get FDir filter info\n");
9054                 return;
9055         }
9056
9057         if (!strcmp(res->flow_type, "none")) {
9058                 /* means don't specify the flow type */
9059                 flex_mask.flow_type = RTE_ETH_FLOW_UNKNOWN;
9060                 for (i = 0; i < RTE_ETH_FLOW_MAX; i++)
9061                         memset(&port->dev_conf.fdir_conf.flex_conf.flex_mask[i],
9062                                0, sizeof(struct rte_eth_fdir_flex_mask));
9063                 port->dev_conf.fdir_conf.flex_conf.nb_flexmasks = 1;
9064                 (void)rte_memcpy(&port->dev_conf.fdir_conf.flex_conf.flex_mask[0],
9065                                  &flex_mask,
9066                                  sizeof(struct rte_eth_fdir_flex_mask));
9067                 cmd_reconfig_device_queue(res->port_id, 1, 1);
9068                 return;
9069         }
9070         flow_type_mask = fdir_info.flow_types_mask[0];
9071         if (!strcmp(res->flow_type, "all")) {
9072                 if (!flow_type_mask) {
9073                         printf("No flow type supported\n");
9074                         return;
9075                 }
9076                 for (i = RTE_ETH_FLOW_UNKNOWN; i < RTE_ETH_FLOW_MAX; i++) {
9077                         if (flow_type_mask & (1 << i)) {
9078                                 flex_mask.flow_type = i;
9079                                 fdir_set_flex_mask(res->port_id, &flex_mask);
9080                         }
9081                 }
9082                 cmd_reconfig_device_queue(res->port_id, 1, 1);
9083                 return;
9084         }
9085         flex_mask.flow_type = str2flowtype(res->flow_type);
9086         if (!(flow_type_mask & (1 << flex_mask.flow_type))) {
9087                 printf("Flow type %s not supported on port %d\n",
9088                                 res->flow_type, res->port_id);
9089                 return;
9090         }
9091         fdir_set_flex_mask(res->port_id, &flex_mask);
9092         cmd_reconfig_device_queue(res->port_id, 1, 1);
9093 }
9094
9095 cmdline_parse_token_string_t cmd_flow_director_flexmask =
9096         TOKEN_STRING_INITIALIZER(struct cmd_flow_director_flex_mask_result,
9097                                  flow_director_flexmask,
9098                                  "flow_director_flex_mask");
9099 cmdline_parse_token_num_t cmd_flow_director_flexmask_port_id =
9100         TOKEN_NUM_INITIALIZER(struct cmd_flow_director_flex_mask_result,
9101                               port_id, UINT8);
9102 cmdline_parse_token_string_t cmd_flow_director_flexmask_flow =
9103         TOKEN_STRING_INITIALIZER(struct cmd_flow_director_flex_mask_result,
9104                                  flow, "flow");
9105 cmdline_parse_token_string_t cmd_flow_director_flexmask_flow_type =
9106         TOKEN_STRING_INITIALIZER(struct cmd_flow_director_flex_mask_result,
9107                 flow_type, "none#ipv4-other#ipv4-frag#ipv4-tcp#ipv4-udp#ipv4-sctp#"
9108                 "ipv6-other#ipv6-frag#ipv6-tcp#ipv6-udp#ipv6-sctp#l2_payload#all");
9109 cmdline_parse_token_string_t cmd_flow_director_flexmask_mask =
9110         TOKEN_STRING_INITIALIZER(struct cmd_flow_director_flex_mask_result,
9111                                  mask, NULL);
9112
9113 cmdline_parse_inst_t cmd_set_flow_director_flex_mask = {
9114         .f = cmd_flow_director_flex_mask_parsed,
9115         .data = NULL,
9116         .help_str = "set flow director's flex mask on NIC",
9117         .tokens = {
9118                 (void *)&cmd_flow_director_flexmask,
9119                 (void *)&cmd_flow_director_flexmask_port_id,
9120                 (void *)&cmd_flow_director_flexmask_flow,
9121                 (void *)&cmd_flow_director_flexmask_flow_type,
9122                 (void *)&cmd_flow_director_flexmask_mask,
9123                 NULL,
9124         },
9125 };
9126
9127 /* *** deal with flow director flexible payload configuration *** */
9128 struct cmd_flow_director_flexpayload_result {
9129         cmdline_fixed_string_t flow_director_flexpayload;
9130         uint8_t port_id;
9131         cmdline_fixed_string_t payload_layer;
9132         cmdline_fixed_string_t payload_cfg;
9133 };
9134
9135 static inline int
9136 parse_offsets(const char *q_arg, uint16_t *offsets, uint16_t max_num)
9137 {
9138         char s[256];
9139         const char *p, *p0 = q_arg;
9140         char *end;
9141         unsigned long int_fld;
9142         char *str_fld[max_num];
9143         int i;
9144         unsigned size;
9145         int ret = -1;
9146
9147         p = strchr(p0, '(');
9148         if (p == NULL)
9149                 return -1;
9150         ++p;
9151         p0 = strchr(p, ')');
9152         if (p0 == NULL)
9153                 return -1;
9154
9155         size = p0 - p;
9156         if (size >= sizeof(s))
9157                 return -1;
9158
9159         snprintf(s, sizeof(s), "%.*s", size, p);
9160         ret = rte_strsplit(s, sizeof(s), str_fld, max_num, ',');
9161         if (ret < 0 || ret > max_num)
9162                 return -1;
9163         for (i = 0; i < ret; i++) {
9164                 errno = 0;
9165                 int_fld = strtoul(str_fld[i], &end, 0);
9166                 if (errno != 0 || *end != '\0' || int_fld > UINT16_MAX)
9167                         return -1;
9168                 offsets[i] = (uint16_t)int_fld;
9169         }
9170         return ret;
9171 }
9172
9173 static void
9174 cmd_flow_director_flxpld_parsed(void *parsed_result,
9175                           __attribute__((unused)) struct cmdline *cl,
9176                           __attribute__((unused)) void *data)
9177 {
9178         struct cmd_flow_director_flexpayload_result *res = parsed_result;
9179         struct rte_eth_flex_payload_cfg flex_cfg;
9180         struct rte_port *port;
9181         int ret = 0;
9182
9183         if (res->port_id > nb_ports) {
9184                 printf("Invalid port, range is [0, %d]\n", nb_ports - 1);
9185                 return;
9186         }
9187
9188         port = &ports[res->port_id];
9189         /** Check if the port is not started **/
9190         if (port->port_status != RTE_PORT_STOPPED) {
9191                 printf("Please stop port %d first\n", res->port_id);
9192                 return;
9193         }
9194
9195         memset(&flex_cfg, 0, sizeof(struct rte_eth_flex_payload_cfg));
9196
9197         if (!strcmp(res->payload_layer, "raw"))
9198                 flex_cfg.type = RTE_ETH_RAW_PAYLOAD;
9199         else if (!strcmp(res->payload_layer, "l2"))
9200                 flex_cfg.type = RTE_ETH_L2_PAYLOAD;
9201         else if (!strcmp(res->payload_layer, "l3"))
9202                 flex_cfg.type = RTE_ETH_L3_PAYLOAD;
9203         else if (!strcmp(res->payload_layer, "l4"))
9204                 flex_cfg.type = RTE_ETH_L4_PAYLOAD;
9205
9206         ret = parse_offsets(res->payload_cfg, flex_cfg.src_offset,
9207                             RTE_ETH_FDIR_MAX_FLEXLEN);
9208         if (ret < 0) {
9209                 printf("error: Cannot parse flex payload input.\n");
9210                 return;
9211         }
9212
9213         fdir_set_flex_payload(res->port_id, &flex_cfg);
9214         cmd_reconfig_device_queue(res->port_id, 1, 1);
9215 }
9216
9217 cmdline_parse_token_string_t cmd_flow_director_flexpayload =
9218         TOKEN_STRING_INITIALIZER(struct cmd_flow_director_flexpayload_result,
9219                                  flow_director_flexpayload,
9220                                  "flow_director_flex_payload");
9221 cmdline_parse_token_num_t cmd_flow_director_flexpayload_port_id =
9222         TOKEN_NUM_INITIALIZER(struct cmd_flow_director_flexpayload_result,
9223                               port_id, UINT8);
9224 cmdline_parse_token_string_t cmd_flow_director_flexpayload_payload_layer =
9225         TOKEN_STRING_INITIALIZER(struct cmd_flow_director_flexpayload_result,
9226                                  payload_layer, "raw#l2#l3#l4");
9227 cmdline_parse_token_string_t cmd_flow_director_flexpayload_payload_cfg =
9228         TOKEN_STRING_INITIALIZER(struct cmd_flow_director_flexpayload_result,
9229                                  payload_cfg, NULL);
9230
9231 cmdline_parse_inst_t cmd_set_flow_director_flex_payload = {
9232         .f = cmd_flow_director_flxpld_parsed,
9233         .data = NULL,
9234         .help_str = "set flow director's flex payload on NIC",
9235         .tokens = {
9236                 (void *)&cmd_flow_director_flexpayload,
9237                 (void *)&cmd_flow_director_flexpayload_port_id,
9238                 (void *)&cmd_flow_director_flexpayload_payload_layer,
9239                 (void *)&cmd_flow_director_flexpayload_payload_cfg,
9240                 NULL,
9241         },
9242 };
9243
9244 /* *** Classification Filters Control *** */
9245 /* *** Get symmetric hash enable per port *** */
9246 struct cmd_get_sym_hash_ena_per_port_result {
9247         cmdline_fixed_string_t get_sym_hash_ena_per_port;
9248         uint8_t port_id;
9249 };
9250
9251 static void
9252 cmd_get_sym_hash_per_port_parsed(void *parsed_result,
9253                                  __rte_unused struct cmdline *cl,
9254                                  __rte_unused void *data)
9255 {
9256         struct cmd_get_sym_hash_ena_per_port_result *res = parsed_result;
9257         struct rte_eth_hash_filter_info info;
9258         int ret;
9259
9260         if (rte_eth_dev_filter_supported(res->port_id,
9261                                 RTE_ETH_FILTER_HASH) < 0) {
9262                 printf("RTE_ETH_FILTER_HASH not supported on port: %d\n",
9263                                                         res->port_id);
9264                 return;
9265         }
9266
9267         memset(&info, 0, sizeof(info));
9268         info.info_type = RTE_ETH_HASH_FILTER_SYM_HASH_ENA_PER_PORT;
9269         ret = rte_eth_dev_filter_ctrl(res->port_id, RTE_ETH_FILTER_HASH,
9270                                                 RTE_ETH_FILTER_GET, &info);
9271
9272         if (ret < 0) {
9273                 printf("Cannot get symmetric hash enable per port "
9274                                         "on port %u\n", res->port_id);
9275                 return;
9276         }
9277
9278         printf("Symmetric hash is %s on port %u\n", info.info.enable ?
9279                                 "enabled" : "disabled", res->port_id);
9280 }
9281
9282 cmdline_parse_token_string_t cmd_get_sym_hash_ena_per_port_all =
9283         TOKEN_STRING_INITIALIZER(struct cmd_get_sym_hash_ena_per_port_result,
9284                 get_sym_hash_ena_per_port, "get_sym_hash_ena_per_port");
9285 cmdline_parse_token_num_t cmd_get_sym_hash_ena_per_port_port_id =
9286         TOKEN_NUM_INITIALIZER(struct cmd_get_sym_hash_ena_per_port_result,
9287                 port_id, UINT8);
9288
9289 cmdline_parse_inst_t cmd_get_sym_hash_ena_per_port = {
9290         .f = cmd_get_sym_hash_per_port_parsed,
9291         .data = NULL,
9292         .help_str = "get_sym_hash_ena_per_port port_id",
9293         .tokens = {
9294                 (void *)&cmd_get_sym_hash_ena_per_port_all,
9295                 (void *)&cmd_get_sym_hash_ena_per_port_port_id,
9296                 NULL,
9297         },
9298 };
9299
9300 /* *** Set symmetric hash enable per port *** */
9301 struct cmd_set_sym_hash_ena_per_port_result {
9302         cmdline_fixed_string_t set_sym_hash_ena_per_port;
9303         cmdline_fixed_string_t enable;
9304         uint8_t port_id;
9305 };
9306
9307 static void
9308 cmd_set_sym_hash_per_port_parsed(void *parsed_result,
9309                                  __rte_unused struct cmdline *cl,
9310                                  __rte_unused void *data)
9311 {
9312         struct cmd_set_sym_hash_ena_per_port_result *res = parsed_result;
9313         struct rte_eth_hash_filter_info info;
9314         int ret;
9315
9316         if (rte_eth_dev_filter_supported(res->port_id,
9317                                 RTE_ETH_FILTER_HASH) < 0) {
9318                 printf("RTE_ETH_FILTER_HASH not supported on port: %d\n",
9319                                                         res->port_id);
9320                 return;
9321         }
9322
9323         memset(&info, 0, sizeof(info));
9324         info.info_type = RTE_ETH_HASH_FILTER_SYM_HASH_ENA_PER_PORT;
9325         if (!strcmp(res->enable, "enable"))
9326                 info.info.enable = 1;
9327         ret = rte_eth_dev_filter_ctrl(res->port_id, RTE_ETH_FILTER_HASH,
9328                                         RTE_ETH_FILTER_SET, &info);
9329         if (ret < 0) {
9330                 printf("Cannot set symmetric hash enable per port on "
9331                                         "port %u\n", res->port_id);
9332                 return;
9333         }
9334         printf("Symmetric hash has been set to %s on port %u\n",
9335                                         res->enable, res->port_id);
9336 }
9337
9338 cmdline_parse_token_string_t cmd_set_sym_hash_ena_per_port_all =
9339         TOKEN_STRING_INITIALIZER(struct cmd_set_sym_hash_ena_per_port_result,
9340                 set_sym_hash_ena_per_port, "set_sym_hash_ena_per_port");
9341 cmdline_parse_token_num_t cmd_set_sym_hash_ena_per_port_port_id =
9342         TOKEN_NUM_INITIALIZER(struct cmd_set_sym_hash_ena_per_port_result,
9343                 port_id, UINT8);
9344 cmdline_parse_token_string_t cmd_set_sym_hash_ena_per_port_enable =
9345         TOKEN_STRING_INITIALIZER(struct cmd_set_sym_hash_ena_per_port_result,
9346                 enable, "enable#disable");
9347
9348 cmdline_parse_inst_t cmd_set_sym_hash_ena_per_port = {
9349         .f = cmd_set_sym_hash_per_port_parsed,
9350         .data = NULL,
9351         .help_str = "set_sym_hash_ena_per_port port_id enable|disable",
9352         .tokens = {
9353                 (void *)&cmd_set_sym_hash_ena_per_port_all,
9354                 (void *)&cmd_set_sym_hash_ena_per_port_port_id,
9355                 (void *)&cmd_set_sym_hash_ena_per_port_enable,
9356                 NULL,
9357         },
9358 };
9359
9360 /* Get global config of hash function */
9361 struct cmd_get_hash_global_config_result {
9362         cmdline_fixed_string_t get_hash_global_config;
9363         uint8_t port_id;
9364 };
9365
9366 static char *
9367 flowtype_to_str(uint16_t ftype)
9368 {
9369         uint16_t i;
9370         static struct {
9371                 char str[16];
9372                 uint16_t ftype;
9373         } ftype_table[] = {
9374                 {"ipv4", RTE_ETH_FLOW_IPV4},
9375                 {"ipv4-frag", RTE_ETH_FLOW_FRAG_IPV4},
9376                 {"ipv4-tcp", RTE_ETH_FLOW_NONFRAG_IPV4_TCP},
9377                 {"ipv4-udp", RTE_ETH_FLOW_NONFRAG_IPV4_UDP},
9378                 {"ipv4-sctp", RTE_ETH_FLOW_NONFRAG_IPV4_SCTP},
9379                 {"ipv4-other", RTE_ETH_FLOW_NONFRAG_IPV4_OTHER},
9380                 {"ipv6", RTE_ETH_FLOW_IPV6},
9381                 {"ipv6-frag", RTE_ETH_FLOW_FRAG_IPV6},
9382                 {"ipv6-tcp", RTE_ETH_FLOW_NONFRAG_IPV6_TCP},
9383                 {"ipv6-udp", RTE_ETH_FLOW_NONFRAG_IPV6_UDP},
9384                 {"ipv6-sctp", RTE_ETH_FLOW_NONFRAG_IPV6_SCTP},
9385                 {"ipv6-other", RTE_ETH_FLOW_NONFRAG_IPV6_OTHER},
9386                 {"l2_payload", RTE_ETH_FLOW_L2_PAYLOAD},
9387         };
9388
9389         for (i = 0; i < RTE_DIM(ftype_table); i++) {
9390                 if (ftype_table[i].ftype == ftype)
9391                         return ftype_table[i].str;
9392         }
9393
9394         return NULL;
9395 }
9396
9397 static void
9398 cmd_get_hash_global_config_parsed(void *parsed_result,
9399                                   __rte_unused struct cmdline *cl,
9400                                   __rte_unused void *data)
9401 {
9402         struct cmd_get_hash_global_config_result *res = parsed_result;
9403         struct rte_eth_hash_filter_info info;
9404         uint32_t idx, offset;
9405         uint16_t i;
9406         char *str;
9407         int ret;
9408
9409         if (rte_eth_dev_filter_supported(res->port_id,
9410                         RTE_ETH_FILTER_HASH) < 0) {
9411                 printf("RTE_ETH_FILTER_HASH not supported on port %d\n",
9412                                                         res->port_id);
9413                 return;
9414         }
9415
9416         memset(&info, 0, sizeof(info));
9417         info.info_type = RTE_ETH_HASH_FILTER_GLOBAL_CONFIG;
9418         ret = rte_eth_dev_filter_ctrl(res->port_id, RTE_ETH_FILTER_HASH,
9419                                         RTE_ETH_FILTER_GET, &info);
9420         if (ret < 0) {
9421                 printf("Cannot get hash global configurations by port %d\n",
9422                                                         res->port_id);
9423                 return;
9424         }
9425
9426         switch (info.info.global_conf.hash_func) {
9427         case RTE_ETH_HASH_FUNCTION_TOEPLITZ:
9428                 printf("Hash function is Toeplitz\n");
9429                 break;
9430         case RTE_ETH_HASH_FUNCTION_SIMPLE_XOR:
9431                 printf("Hash function is Simple XOR\n");
9432                 break;
9433         default:
9434                 printf("Unknown hash function\n");
9435                 break;
9436         }
9437
9438         for (i = 0; i < RTE_ETH_FLOW_MAX; i++) {
9439                 idx = i / UINT32_BIT;
9440                 offset = i % UINT32_BIT;
9441                 if (!(info.info.global_conf.valid_bit_mask[idx] &
9442                                                 (1UL << offset)))
9443                         continue;
9444                 str = flowtype_to_str(i);
9445                 if (!str)
9446                         continue;
9447                 printf("Symmetric hash is %s globally for flow type %s "
9448                                                         "by port %d\n",
9449                         ((info.info.global_conf.sym_hash_enable_mask[idx] &
9450                         (1UL << offset)) ? "enabled" : "disabled"), str,
9451                                                         res->port_id);
9452         }
9453 }
9454
9455 cmdline_parse_token_string_t cmd_get_hash_global_config_all =
9456         TOKEN_STRING_INITIALIZER(struct cmd_get_hash_global_config_result,
9457                 get_hash_global_config, "get_hash_global_config");
9458 cmdline_parse_token_num_t cmd_get_hash_global_config_port_id =
9459         TOKEN_NUM_INITIALIZER(struct cmd_get_hash_global_config_result,
9460                 port_id, UINT8);
9461
9462 cmdline_parse_inst_t cmd_get_hash_global_config = {
9463         .f = cmd_get_hash_global_config_parsed,
9464         .data = NULL,
9465         .help_str = "get_hash_global_config port_id",
9466         .tokens = {
9467                 (void *)&cmd_get_hash_global_config_all,
9468                 (void *)&cmd_get_hash_global_config_port_id,
9469                 NULL,
9470         },
9471 };
9472
9473 /* Set global config of hash function */
9474 struct cmd_set_hash_global_config_result {
9475         cmdline_fixed_string_t set_hash_global_config;
9476         uint8_t port_id;
9477         cmdline_fixed_string_t hash_func;
9478         cmdline_fixed_string_t flow_type;
9479         cmdline_fixed_string_t enable;
9480 };
9481
9482 static void
9483 cmd_set_hash_global_config_parsed(void *parsed_result,
9484                                   __rte_unused struct cmdline *cl,
9485                                   __rte_unused void *data)
9486 {
9487         struct cmd_set_hash_global_config_result *res = parsed_result;
9488         struct rte_eth_hash_filter_info info;
9489         uint32_t ftype, idx, offset;
9490         int ret;
9491
9492         if (rte_eth_dev_filter_supported(res->port_id,
9493                                 RTE_ETH_FILTER_HASH) < 0) {
9494                 printf("RTE_ETH_FILTER_HASH not supported on port %d\n",
9495                                                         res->port_id);
9496                 return;
9497         }
9498         memset(&info, 0, sizeof(info));
9499         info.info_type = RTE_ETH_HASH_FILTER_GLOBAL_CONFIG;
9500         if (!strcmp(res->hash_func, "toeplitz"))
9501                 info.info.global_conf.hash_func =
9502                         RTE_ETH_HASH_FUNCTION_TOEPLITZ;
9503         else if (!strcmp(res->hash_func, "simple_xor"))
9504                 info.info.global_conf.hash_func =
9505                         RTE_ETH_HASH_FUNCTION_SIMPLE_XOR;
9506         else if (!strcmp(res->hash_func, "default"))
9507                 info.info.global_conf.hash_func =
9508                         RTE_ETH_HASH_FUNCTION_DEFAULT;
9509
9510         ftype = str2flowtype(res->flow_type);
9511         idx = ftype / (CHAR_BIT * sizeof(uint32_t));
9512         offset = ftype % (CHAR_BIT * sizeof(uint32_t));
9513         info.info.global_conf.valid_bit_mask[idx] |= (1UL << offset);
9514         if (!strcmp(res->enable, "enable"))
9515                 info.info.global_conf.sym_hash_enable_mask[idx] |=
9516                                                 (1UL << offset);
9517         ret = rte_eth_dev_filter_ctrl(res->port_id, RTE_ETH_FILTER_HASH,
9518                                         RTE_ETH_FILTER_SET, &info);
9519         if (ret < 0)
9520                 printf("Cannot set global hash configurations by port %d\n",
9521                                                         res->port_id);
9522         else
9523                 printf("Global hash configurations have been set "
9524                         "succcessfully by port %d\n", res->port_id);
9525 }
9526
9527 cmdline_parse_token_string_t cmd_set_hash_global_config_all =
9528         TOKEN_STRING_INITIALIZER(struct cmd_set_hash_global_config_result,
9529                 set_hash_global_config, "set_hash_global_config");
9530 cmdline_parse_token_num_t cmd_set_hash_global_config_port_id =
9531         TOKEN_NUM_INITIALIZER(struct cmd_set_hash_global_config_result,
9532                 port_id, UINT8);
9533 cmdline_parse_token_string_t cmd_set_hash_global_config_hash_func =
9534         TOKEN_STRING_INITIALIZER(struct cmd_set_hash_global_config_result,
9535                 hash_func, "toeplitz#simple_xor#default");
9536 cmdline_parse_token_string_t cmd_set_hash_global_config_flow_type =
9537         TOKEN_STRING_INITIALIZER(struct cmd_set_hash_global_config_result,
9538                 flow_type,
9539                 "ipv4#ipv4-frag#ipv4-tcp#ipv4-udp#ipv4-sctp#ipv4-other#ipv6#"
9540                 "ipv6-frag#ipv6-tcp#ipv6-udp#ipv6-sctp#ipv6-other#l2_payload");
9541 cmdline_parse_token_string_t cmd_set_hash_global_config_enable =
9542         TOKEN_STRING_INITIALIZER(struct cmd_set_hash_global_config_result,
9543                 enable, "enable#disable");
9544
9545 cmdline_parse_inst_t cmd_set_hash_global_config = {
9546         .f = cmd_set_hash_global_config_parsed,
9547         .data = NULL,
9548         .help_str = "set_hash_global_config port_id "
9549                 "toeplitz|simple_xor|default "
9550                 "ipv4|ipv4-frag|ipv4-tcp|ipv4-udp|ipv4-sctp|ipv4-other|ipv6|"
9551                 "ipv6-frag|ipv6-tcp|ipv6-udp|ipv6-sctp|ipv6-other|l2_payload "
9552                 "enable|disable",
9553         .tokens = {
9554                 (void *)&cmd_set_hash_global_config_all,
9555                 (void *)&cmd_set_hash_global_config_port_id,
9556                 (void *)&cmd_set_hash_global_config_hash_func,
9557                 (void *)&cmd_set_hash_global_config_flow_type,
9558                 (void *)&cmd_set_hash_global_config_enable,
9559                 NULL,
9560         },
9561 };
9562
9563 /* Set hash input set */
9564 struct cmd_set_hash_input_set_result {
9565         cmdline_fixed_string_t set_hash_input_set;
9566         uint8_t port_id;
9567         cmdline_fixed_string_t flow_type;
9568         cmdline_fixed_string_t inset_field;
9569         cmdline_fixed_string_t select;
9570 };
9571
9572 static enum rte_eth_input_set_field
9573 str2inset(char *string)
9574 {
9575         uint16_t i;
9576
9577         static const struct {
9578                 char str[32];
9579                 enum rte_eth_input_set_field inset;
9580         } inset_table[] = {
9581                 {"ethertype", RTE_ETH_INPUT_SET_L2_ETHERTYPE},
9582                 {"ovlan", RTE_ETH_INPUT_SET_L2_OUTER_VLAN},
9583                 {"ivlan", RTE_ETH_INPUT_SET_L2_INNER_VLAN},
9584                 {"src-ipv4", RTE_ETH_INPUT_SET_L3_SRC_IP4},
9585                 {"dst-ipv4", RTE_ETH_INPUT_SET_L3_DST_IP4},
9586                 {"ipv4-tos", RTE_ETH_INPUT_SET_L3_IP4_TOS},
9587                 {"ipv4-proto", RTE_ETH_INPUT_SET_L3_IP4_PROTO},
9588                 {"ipv4-ttl", RTE_ETH_INPUT_SET_L3_IP4_TTL},
9589                 {"src-ipv6", RTE_ETH_INPUT_SET_L3_SRC_IP6},
9590                 {"dst-ipv6", RTE_ETH_INPUT_SET_L3_DST_IP6},
9591                 {"ipv6-tc", RTE_ETH_INPUT_SET_L3_IP6_TC},
9592                 {"ipv6-next-header", RTE_ETH_INPUT_SET_L3_IP6_NEXT_HEADER},
9593                 {"ipv6-hop-limits", RTE_ETH_INPUT_SET_L3_IP6_HOP_LIMITS},
9594                 {"udp-src-port", RTE_ETH_INPUT_SET_L4_UDP_SRC_PORT},
9595                 {"udp-dst-port", RTE_ETH_INPUT_SET_L4_UDP_DST_PORT},
9596                 {"tcp-src-port", RTE_ETH_INPUT_SET_L4_TCP_SRC_PORT},
9597                 {"tcp-dst-port", RTE_ETH_INPUT_SET_L4_TCP_DST_PORT},
9598                 {"sctp-src-port", RTE_ETH_INPUT_SET_L4_SCTP_SRC_PORT},
9599                 {"sctp-dst-port", RTE_ETH_INPUT_SET_L4_SCTP_DST_PORT},
9600                 {"sctp-veri-tag", RTE_ETH_INPUT_SET_L4_SCTP_VERIFICATION_TAG},
9601                 {"udp-key", RTE_ETH_INPUT_SET_TUNNEL_L4_UDP_KEY},
9602                 {"gre-key", RTE_ETH_INPUT_SET_TUNNEL_GRE_KEY},
9603                 {"fld-1st", RTE_ETH_INPUT_SET_FLEX_PAYLOAD_1ST_WORD},
9604                 {"fld-2nd", RTE_ETH_INPUT_SET_FLEX_PAYLOAD_2ND_WORD},
9605                 {"fld-3rd", RTE_ETH_INPUT_SET_FLEX_PAYLOAD_3RD_WORD},
9606                 {"fld-4th", RTE_ETH_INPUT_SET_FLEX_PAYLOAD_4TH_WORD},
9607                 {"fld-5th", RTE_ETH_INPUT_SET_FLEX_PAYLOAD_5TH_WORD},
9608                 {"fld-6th", RTE_ETH_INPUT_SET_FLEX_PAYLOAD_6TH_WORD},
9609                 {"fld-7th", RTE_ETH_INPUT_SET_FLEX_PAYLOAD_7TH_WORD},
9610                 {"fld-8th", RTE_ETH_INPUT_SET_FLEX_PAYLOAD_8TH_WORD},
9611                 {"none", RTE_ETH_INPUT_SET_NONE},
9612         };
9613
9614         for (i = 0; i < RTE_DIM(inset_table); i++) {
9615                 if (!strcmp(string, inset_table[i].str))
9616                         return inset_table[i].inset;
9617         }
9618
9619         return RTE_ETH_INPUT_SET_UNKNOWN;
9620 }
9621
9622 static void
9623 cmd_set_hash_input_set_parsed(void *parsed_result,
9624                               __rte_unused struct cmdline *cl,
9625                               __rte_unused void *data)
9626 {
9627         struct cmd_set_hash_input_set_result *res = parsed_result;
9628         struct rte_eth_hash_filter_info info;
9629
9630         memset(&info, 0, sizeof(info));
9631         info.info_type = RTE_ETH_HASH_FILTER_INPUT_SET_SELECT;
9632         info.info.input_set_conf.flow_type = str2flowtype(res->flow_type);
9633         info.info.input_set_conf.field[0] = str2inset(res->inset_field);
9634         info.info.input_set_conf.inset_size = 1;
9635         if (!strcmp(res->select, "select"))
9636                 info.info.input_set_conf.op = RTE_ETH_INPUT_SET_SELECT;
9637         else if (!strcmp(res->select, "add"))
9638                 info.info.input_set_conf.op = RTE_ETH_INPUT_SET_ADD;
9639         rte_eth_dev_filter_ctrl(res->port_id, RTE_ETH_FILTER_HASH,
9640                                 RTE_ETH_FILTER_SET, &info);
9641 }
9642
9643 cmdline_parse_token_string_t cmd_set_hash_input_set_cmd =
9644         TOKEN_STRING_INITIALIZER(struct cmd_set_hash_input_set_result,
9645                 set_hash_input_set, "set_hash_input_set");
9646 cmdline_parse_token_num_t cmd_set_hash_input_set_port_id =
9647         TOKEN_NUM_INITIALIZER(struct cmd_set_hash_input_set_result,
9648                 port_id, UINT8);
9649 cmdline_parse_token_string_t cmd_set_hash_input_set_flow_type =
9650         TOKEN_STRING_INITIALIZER(struct cmd_set_hash_input_set_result,
9651                 flow_type,
9652                 "ipv4-frag#ipv4-tcp#ipv4-udp#ipv4-sctp#ipv4-other#"
9653                 "ipv6-frag#ipv6-tcp#ipv6-udp#ipv6-sctp#ipv6-other#l2_payload");
9654 cmdline_parse_token_string_t cmd_set_hash_input_set_field =
9655         TOKEN_STRING_INITIALIZER(struct cmd_set_hash_input_set_result,
9656                 inset_field,
9657                 "ovlan#ivlan#src-ipv4#dst-ipv4#src-ipv6#dst-ipv6#"
9658                 "ipv4-tos#ipv4-proto#ipv6-tc#ipv6-next-header#udp-src-port#"
9659                 "udp-dst-port#tcp-src-port#tcp-dst-port#sctp-src-port#"
9660                 "sctp-dst-port#sctp-veri-tag#udp-key#gre-key#fld-1st#"
9661                 "fld-2nd#fld-3rd#fld-4th#fld-5th#fld-6th#fld-7th#"
9662                 "fld-8th#none");
9663 cmdline_parse_token_string_t cmd_set_hash_input_set_select =
9664         TOKEN_STRING_INITIALIZER(struct cmd_set_hash_input_set_result,
9665                 select, "select#add");
9666
9667 cmdline_parse_inst_t cmd_set_hash_input_set = {
9668         .f = cmd_set_hash_input_set_parsed,
9669         .data = NULL,
9670         .help_str = "set_hash_input_set <port_id> "
9671         "ipv4-frag|ipv4-tcp|ipv4-udp|ipv4-sctp|ipv4-other|"
9672         "ipv6-frag|ipv6-tcp|ipv6-udp|ipv6-sctp|ipv6-other|l2_payload "
9673         "ovlan|ivlan|src-ipv4|dst-ipv4|src-ipv6|dst-ipv6|ipv4-tos|ipv4-proto|"
9674         "ipv6-tc|ipv6-next-header|udp-src-port|udp-dst-port|tcp-src-port|"
9675         "tcp-dst-port|sctp-src-port|sctp-dst-port|sctp-veri-tag|udp-key|"
9676         "gre-key|fld-1st|fld-2nd|fld-3rd|fld-4th|fld-5th|fld-6th|"
9677         "fld-7th|fld-8th|none select|add",
9678         .tokens = {
9679                 (void *)&cmd_set_hash_input_set_cmd,
9680                 (void *)&cmd_set_hash_input_set_port_id,
9681                 (void *)&cmd_set_hash_input_set_flow_type,
9682                 (void *)&cmd_set_hash_input_set_field,
9683                 (void *)&cmd_set_hash_input_set_select,
9684                 NULL,
9685         },
9686 };
9687
9688 /* Set flow director input set */
9689 struct cmd_set_fdir_input_set_result {
9690         cmdline_fixed_string_t set_fdir_input_set;
9691         uint8_t port_id;
9692         cmdline_fixed_string_t flow_type;
9693         cmdline_fixed_string_t inset_field;
9694         cmdline_fixed_string_t select;
9695 };
9696
9697 static void
9698 cmd_set_fdir_input_set_parsed(void *parsed_result,
9699         __rte_unused struct cmdline *cl,
9700         __rte_unused void *data)
9701 {
9702         struct cmd_set_fdir_input_set_result *res = parsed_result;
9703         struct rte_eth_fdir_filter_info info;
9704
9705         memset(&info, 0, sizeof(info));
9706         info.info_type = RTE_ETH_FDIR_FILTER_INPUT_SET_SELECT;
9707         info.info.input_set_conf.flow_type = str2flowtype(res->flow_type);
9708         info.info.input_set_conf.field[0] = str2inset(res->inset_field);
9709         info.info.input_set_conf.inset_size = 1;
9710         if (!strcmp(res->select, "select"))
9711                 info.info.input_set_conf.op = RTE_ETH_INPUT_SET_SELECT;
9712         else if (!strcmp(res->select, "add"))
9713                 info.info.input_set_conf.op = RTE_ETH_INPUT_SET_ADD;
9714         rte_eth_dev_filter_ctrl(res->port_id, RTE_ETH_FILTER_FDIR,
9715                 RTE_ETH_FILTER_SET, &info);
9716 }
9717
9718 cmdline_parse_token_string_t cmd_set_fdir_input_set_cmd =
9719         TOKEN_STRING_INITIALIZER(struct cmd_set_fdir_input_set_result,
9720         set_fdir_input_set, "set_fdir_input_set");
9721 cmdline_parse_token_num_t cmd_set_fdir_input_set_port_id =
9722         TOKEN_NUM_INITIALIZER(struct cmd_set_fdir_input_set_result,
9723         port_id, UINT8);
9724 cmdline_parse_token_string_t cmd_set_fdir_input_set_flow_type =
9725         TOKEN_STRING_INITIALIZER(struct cmd_set_fdir_input_set_result,
9726         flow_type,
9727         "ipv4-frag#ipv4-tcp#ipv4-udp#ipv4-sctp#ipv4-other#"
9728         "ipv6-frag#ipv6-tcp#ipv6-udp#ipv6-sctp#ipv6-other#l2_payload");
9729 cmdline_parse_token_string_t cmd_set_fdir_input_set_field =
9730         TOKEN_STRING_INITIALIZER(struct cmd_set_fdir_input_set_result,
9731         inset_field,
9732         "ivlan#ethertype#src-ipv4#dst-ipv4#src-ipv6#dst-ipv6#"
9733         "ipv4-tos#ipv4-proto#ipv4-ttl#ipv6-tc#ipv6-next-header#"
9734         "ipv6-hop-limits#udp-src-port#udp-dst-port#"
9735         "tcp-src-port#tcp-dst-port#sctp-src-port#sctp-dst-port#"
9736         "sctp-veri-tag#none");
9737 cmdline_parse_token_string_t cmd_set_fdir_input_set_select =
9738         TOKEN_STRING_INITIALIZER(struct cmd_set_fdir_input_set_result,
9739         select, "select#add");
9740
9741 cmdline_parse_inst_t cmd_set_fdir_input_set = {
9742         .f = cmd_set_fdir_input_set_parsed,
9743         .data = NULL,
9744         .help_str = "set_fdir_input_set <port_id> "
9745         "ipv4-frag|ipv4-tcp|ipv4-udp|ipv4-sctp|ipv4-other|"
9746         "ipv6-frag|ipv6-tcp|ipv6-udp|ipv6-sctp|ipv6-other|l2_payload "
9747         "ivlan|ethertype|src-ipv4|dst-ipv4|src-ipv6|dst-ipv6|"
9748         "ipv4-tos|ipv4-proto|ipv4-ttl|ipv6-tc|ipv6-next-header|"
9749         "ipv6-hop-limits|udp-src-port|udp-dst-port|"
9750         "tcp-src-port|tcp-dst-port|sctp-src-port|sctp-dst-port|"
9751         "sctp-veri-tag|none select|add",
9752         .tokens = {
9753                 (void *)&cmd_set_fdir_input_set_cmd,
9754                 (void *)&cmd_set_fdir_input_set_port_id,
9755                 (void *)&cmd_set_fdir_input_set_flow_type,
9756                 (void *)&cmd_set_fdir_input_set_field,
9757                 (void *)&cmd_set_fdir_input_set_select,
9758                 NULL,
9759         },
9760 };
9761
9762 /* *** ADD/REMOVE A MULTICAST MAC ADDRESS TO/FROM A PORT *** */
9763 struct cmd_mcast_addr_result {
9764         cmdline_fixed_string_t mcast_addr_cmd;
9765         cmdline_fixed_string_t what;
9766         uint8_t port_num;
9767         struct ether_addr mc_addr;
9768 };
9769
9770 static void cmd_mcast_addr_parsed(void *parsed_result,
9771                 __attribute__((unused)) struct cmdline *cl,
9772                 __attribute__((unused)) void *data)
9773 {
9774         struct cmd_mcast_addr_result *res = parsed_result;
9775
9776         if (!is_multicast_ether_addr(&res->mc_addr)) {
9777                 printf("Invalid multicast addr %02X:%02X:%02X:%02X:%02X:%02X\n",
9778                        res->mc_addr.addr_bytes[0], res->mc_addr.addr_bytes[1],
9779                        res->mc_addr.addr_bytes[2], res->mc_addr.addr_bytes[3],
9780                        res->mc_addr.addr_bytes[4], res->mc_addr.addr_bytes[5]);
9781                 return;
9782         }
9783         if (strcmp(res->what, "add") == 0)
9784                 mcast_addr_add(res->port_num, &res->mc_addr);
9785         else
9786                 mcast_addr_remove(res->port_num, &res->mc_addr);
9787 }
9788
9789 cmdline_parse_token_string_t cmd_mcast_addr_cmd =
9790         TOKEN_STRING_INITIALIZER(struct cmd_mcast_addr_result,
9791                                  mcast_addr_cmd, "mcast_addr");
9792 cmdline_parse_token_string_t cmd_mcast_addr_what =
9793         TOKEN_STRING_INITIALIZER(struct cmd_mcast_addr_result, what,
9794                                  "add#remove");
9795 cmdline_parse_token_num_t cmd_mcast_addr_portnum =
9796         TOKEN_NUM_INITIALIZER(struct cmd_mcast_addr_result, port_num, UINT8);
9797 cmdline_parse_token_etheraddr_t cmd_mcast_addr_addr =
9798         TOKEN_ETHERADDR_INITIALIZER(struct cmd_mac_addr_result, address);
9799
9800 cmdline_parse_inst_t cmd_mcast_addr = {
9801         .f = cmd_mcast_addr_parsed,
9802         .data = (void *)0,
9803         .help_str = "mcast_addr add|remove X <mcast_addr>: add/remove multicast MAC address on port X",
9804         .tokens = {
9805                 (void *)&cmd_mcast_addr_cmd,
9806                 (void *)&cmd_mcast_addr_what,
9807                 (void *)&cmd_mcast_addr_portnum,
9808                 (void *)&cmd_mcast_addr_addr,
9809                 NULL,
9810         },
9811 };
9812
9813 /* l2 tunnel config
9814  * only support E-tag now.
9815  */
9816
9817 /* Ether type config */
9818 struct cmd_config_l2_tunnel_eth_type_result {
9819         cmdline_fixed_string_t port;
9820         cmdline_fixed_string_t config;
9821         cmdline_fixed_string_t all;
9822         uint8_t id;
9823         cmdline_fixed_string_t l2_tunnel;
9824         cmdline_fixed_string_t l2_tunnel_type;
9825         cmdline_fixed_string_t eth_type;
9826         uint16_t eth_type_val;
9827 };
9828
9829 cmdline_parse_token_string_t cmd_config_l2_tunnel_eth_type_port =
9830         TOKEN_STRING_INITIALIZER
9831                 (struct cmd_config_l2_tunnel_eth_type_result,
9832                  port, "port");
9833 cmdline_parse_token_string_t cmd_config_l2_tunnel_eth_type_config =
9834         TOKEN_STRING_INITIALIZER
9835                 (struct cmd_config_l2_tunnel_eth_type_result,
9836                  config, "config");
9837 cmdline_parse_token_string_t cmd_config_l2_tunnel_eth_type_all_str =
9838         TOKEN_STRING_INITIALIZER
9839                 (struct cmd_config_l2_tunnel_eth_type_result,
9840                  all, "all");
9841 cmdline_parse_token_num_t cmd_config_l2_tunnel_eth_type_id =
9842         TOKEN_NUM_INITIALIZER
9843                 (struct cmd_config_l2_tunnel_eth_type_result,
9844                  id, UINT8);
9845 cmdline_parse_token_string_t cmd_config_l2_tunnel_eth_type_l2_tunnel =
9846         TOKEN_STRING_INITIALIZER
9847                 (struct cmd_config_l2_tunnel_eth_type_result,
9848                  l2_tunnel, "l2-tunnel");
9849 cmdline_parse_token_string_t cmd_config_l2_tunnel_eth_type_l2_tunnel_type =
9850         TOKEN_STRING_INITIALIZER
9851                 (struct cmd_config_l2_tunnel_eth_type_result,
9852                  l2_tunnel_type, "E-tag");
9853 cmdline_parse_token_string_t cmd_config_l2_tunnel_eth_type_eth_type =
9854         TOKEN_STRING_INITIALIZER
9855                 (struct cmd_config_l2_tunnel_eth_type_result,
9856                  eth_type, "ether-type");
9857 cmdline_parse_token_num_t cmd_config_l2_tunnel_eth_type_eth_type_val =
9858         TOKEN_NUM_INITIALIZER
9859                 (struct cmd_config_l2_tunnel_eth_type_result,
9860                  eth_type_val, UINT16);
9861
9862 static enum rte_eth_tunnel_type
9863 str2fdir_l2_tunnel_type(char *string)
9864 {
9865         uint32_t i = 0;
9866
9867         static const struct {
9868                 char str[32];
9869                 enum rte_eth_tunnel_type type;
9870         } l2_tunnel_type_str[] = {
9871                 {"E-tag", RTE_L2_TUNNEL_TYPE_E_TAG},
9872         };
9873
9874         for (i = 0; i < RTE_DIM(l2_tunnel_type_str); i++) {
9875                 if (!strcmp(l2_tunnel_type_str[i].str, string))
9876                         return l2_tunnel_type_str[i].type;
9877         }
9878         return RTE_TUNNEL_TYPE_NONE;
9879 }
9880
9881 /* ether type config for all ports */
9882 static void
9883 cmd_config_l2_tunnel_eth_type_all_parsed
9884         (void *parsed_result,
9885          __attribute__((unused)) struct cmdline *cl,
9886          __attribute__((unused)) void *data)
9887 {
9888         struct cmd_config_l2_tunnel_eth_type_result *res = parsed_result;
9889         struct rte_eth_l2_tunnel_conf entry;
9890         portid_t pid;
9891
9892         entry.l2_tunnel_type = str2fdir_l2_tunnel_type(res->l2_tunnel_type);
9893         entry.ether_type = res->eth_type_val;
9894
9895         FOREACH_PORT(pid, ports) {
9896                 rte_eth_dev_l2_tunnel_eth_type_conf(pid, &entry);
9897         }
9898 }
9899
9900 cmdline_parse_inst_t cmd_config_l2_tunnel_eth_type_all = {
9901         .f = cmd_config_l2_tunnel_eth_type_all_parsed,
9902         .data = NULL,
9903         .help_str = "port config all l2-tunnel ether-type",
9904         .tokens = {
9905                 (void *)&cmd_config_l2_tunnel_eth_type_port,
9906                 (void *)&cmd_config_l2_tunnel_eth_type_config,
9907                 (void *)&cmd_config_l2_tunnel_eth_type_all_str,
9908                 (void *)&cmd_config_l2_tunnel_eth_type_l2_tunnel,
9909                 (void *)&cmd_config_l2_tunnel_eth_type_l2_tunnel_type,
9910                 (void *)&cmd_config_l2_tunnel_eth_type_eth_type,
9911                 (void *)&cmd_config_l2_tunnel_eth_type_eth_type_val,
9912                 NULL,
9913         },
9914 };
9915
9916 /* ether type config for a specific port */
9917 static void
9918 cmd_config_l2_tunnel_eth_type_specific_parsed(
9919         void *parsed_result,
9920         __attribute__((unused)) struct cmdline *cl,
9921         __attribute__((unused)) void *data)
9922 {
9923         struct cmd_config_l2_tunnel_eth_type_result *res =
9924                  parsed_result;
9925         struct rte_eth_l2_tunnel_conf entry;
9926
9927         if (port_id_is_invalid(res->id, ENABLED_WARN))
9928                 return;
9929
9930         entry.l2_tunnel_type = str2fdir_l2_tunnel_type(res->l2_tunnel_type);
9931         entry.ether_type = res->eth_type_val;
9932
9933         rte_eth_dev_l2_tunnel_eth_type_conf(res->id, &entry);
9934 }
9935
9936 cmdline_parse_inst_t cmd_config_l2_tunnel_eth_type_specific = {
9937         .f = cmd_config_l2_tunnel_eth_type_specific_parsed,
9938         .data = NULL,
9939         .help_str = "port config l2-tunnel ether-type",
9940         .tokens = {
9941                 (void *)&cmd_config_l2_tunnel_eth_type_port,
9942                 (void *)&cmd_config_l2_tunnel_eth_type_config,
9943                 (void *)&cmd_config_l2_tunnel_eth_type_id,
9944                 (void *)&cmd_config_l2_tunnel_eth_type_l2_tunnel,
9945                 (void *)&cmd_config_l2_tunnel_eth_type_l2_tunnel_type,
9946                 (void *)&cmd_config_l2_tunnel_eth_type_eth_type,
9947                 (void *)&cmd_config_l2_tunnel_eth_type_eth_type_val,
9948                 NULL,
9949         },
9950 };
9951
9952 /* Enable/disable l2 tunnel */
9953 struct cmd_config_l2_tunnel_en_dis_result {
9954         cmdline_fixed_string_t port;
9955         cmdline_fixed_string_t config;
9956         cmdline_fixed_string_t all;
9957         uint8_t id;
9958         cmdline_fixed_string_t l2_tunnel;
9959         cmdline_fixed_string_t l2_tunnel_type;
9960         cmdline_fixed_string_t en_dis;
9961 };
9962
9963 cmdline_parse_token_string_t cmd_config_l2_tunnel_en_dis_port =
9964         TOKEN_STRING_INITIALIZER
9965                 (struct cmd_config_l2_tunnel_en_dis_result,
9966                  port, "port");
9967 cmdline_parse_token_string_t cmd_config_l2_tunnel_en_dis_config =
9968         TOKEN_STRING_INITIALIZER
9969                 (struct cmd_config_l2_tunnel_en_dis_result,
9970                  config, "config");
9971 cmdline_parse_token_string_t cmd_config_l2_tunnel_en_dis_all_str =
9972         TOKEN_STRING_INITIALIZER
9973                 (struct cmd_config_l2_tunnel_en_dis_result,
9974                  all, "all");
9975 cmdline_parse_token_num_t cmd_config_l2_tunnel_en_dis_id =
9976         TOKEN_NUM_INITIALIZER
9977                 (struct cmd_config_l2_tunnel_en_dis_result,
9978                  id, UINT8);
9979 cmdline_parse_token_string_t cmd_config_l2_tunnel_en_dis_l2_tunnel =
9980         TOKEN_STRING_INITIALIZER
9981                 (struct cmd_config_l2_tunnel_en_dis_result,
9982                  l2_tunnel, "l2-tunnel");
9983 cmdline_parse_token_string_t cmd_config_l2_tunnel_en_dis_l2_tunnel_type =
9984         TOKEN_STRING_INITIALIZER
9985                 (struct cmd_config_l2_tunnel_en_dis_result,
9986                  l2_tunnel_type, "E-tag");
9987 cmdline_parse_token_string_t cmd_config_l2_tunnel_en_dis_en_dis =
9988         TOKEN_STRING_INITIALIZER
9989                 (struct cmd_config_l2_tunnel_en_dis_result,
9990                  en_dis, "enable#disable");
9991
9992 /* enable/disable l2 tunnel for all ports */
9993 static void
9994 cmd_config_l2_tunnel_en_dis_all_parsed(
9995         void *parsed_result,
9996         __attribute__((unused)) struct cmdline *cl,
9997         __attribute__((unused)) void *data)
9998 {
9999         struct cmd_config_l2_tunnel_en_dis_result *res = parsed_result;
10000         struct rte_eth_l2_tunnel_conf entry;
10001         portid_t pid;
10002         uint8_t en;
10003
10004         entry.l2_tunnel_type = str2fdir_l2_tunnel_type(res->l2_tunnel_type);
10005
10006         if (!strcmp("enable", res->en_dis))
10007                 en = 1;
10008         else
10009                 en = 0;
10010
10011         FOREACH_PORT(pid, ports) {
10012                 rte_eth_dev_l2_tunnel_offload_set(pid,
10013                                                   &entry,
10014                                                   ETH_L2_TUNNEL_ENABLE_MASK,
10015                                                   en);
10016         }
10017 }
10018
10019 cmdline_parse_inst_t cmd_config_l2_tunnel_en_dis_all = {
10020         .f = cmd_config_l2_tunnel_en_dis_all_parsed,
10021         .data = NULL,
10022         .help_str = "port config all l2-tunnel enable/disable",
10023         .tokens = {
10024                 (void *)&cmd_config_l2_tunnel_en_dis_port,
10025                 (void *)&cmd_config_l2_tunnel_en_dis_config,
10026                 (void *)&cmd_config_l2_tunnel_en_dis_all_str,
10027                 (void *)&cmd_config_l2_tunnel_en_dis_l2_tunnel,
10028                 (void *)&cmd_config_l2_tunnel_en_dis_l2_tunnel_type,
10029                 (void *)&cmd_config_l2_tunnel_en_dis_en_dis,
10030                 NULL,
10031         },
10032 };
10033
10034 /* enable/disable l2 tunnel for a port */
10035 static void
10036 cmd_config_l2_tunnel_en_dis_specific_parsed(
10037         void *parsed_result,
10038         __attribute__((unused)) struct cmdline *cl,
10039         __attribute__((unused)) void *data)
10040 {
10041         struct cmd_config_l2_tunnel_en_dis_result *res =
10042                 parsed_result;
10043         struct rte_eth_l2_tunnel_conf entry;
10044
10045         if (port_id_is_invalid(res->id, ENABLED_WARN))
10046                 return;
10047
10048         entry.l2_tunnel_type = str2fdir_l2_tunnel_type(res->l2_tunnel_type);
10049
10050         if (!strcmp("enable", res->en_dis))
10051                 rte_eth_dev_l2_tunnel_offload_set(res->id,
10052                                                   &entry,
10053                                                   ETH_L2_TUNNEL_ENABLE_MASK,
10054                                                   1);
10055         else
10056                 rte_eth_dev_l2_tunnel_offload_set(res->id,
10057                                                   &entry,
10058                                                   ETH_L2_TUNNEL_ENABLE_MASK,
10059                                                   0);
10060 }
10061
10062 cmdline_parse_inst_t cmd_config_l2_tunnel_en_dis_specific = {
10063         .f = cmd_config_l2_tunnel_en_dis_specific_parsed,
10064         .data = NULL,
10065         .help_str = "port config l2-tunnel enable/disable",
10066         .tokens = {
10067                 (void *)&cmd_config_l2_tunnel_en_dis_port,
10068                 (void *)&cmd_config_l2_tunnel_en_dis_config,
10069                 (void *)&cmd_config_l2_tunnel_en_dis_id,
10070                 (void *)&cmd_config_l2_tunnel_en_dis_l2_tunnel,
10071                 (void *)&cmd_config_l2_tunnel_en_dis_l2_tunnel_type,
10072                 (void *)&cmd_config_l2_tunnel_en_dis_en_dis,
10073                 NULL,
10074         },
10075 };
10076
10077 /* E-tag configuration */
10078
10079 /* Common result structure for all E-tag configuration */
10080 struct cmd_config_e_tag_result {
10081         cmdline_fixed_string_t e_tag;
10082         cmdline_fixed_string_t set;
10083         cmdline_fixed_string_t insertion;
10084         cmdline_fixed_string_t stripping;
10085         cmdline_fixed_string_t forwarding;
10086         cmdline_fixed_string_t filter;
10087         cmdline_fixed_string_t add;
10088         cmdline_fixed_string_t del;
10089         cmdline_fixed_string_t on;
10090         cmdline_fixed_string_t off;
10091         cmdline_fixed_string_t on_off;
10092         cmdline_fixed_string_t port_tag_id;
10093         uint32_t port_tag_id_val;
10094         cmdline_fixed_string_t e_tag_id;
10095         uint16_t e_tag_id_val;
10096         cmdline_fixed_string_t dst_pool;
10097         uint8_t dst_pool_val;
10098         cmdline_fixed_string_t port;
10099         uint8_t port_id;
10100         cmdline_fixed_string_t vf;
10101         uint8_t vf_id;
10102 };
10103
10104 /* Common CLI fields for all E-tag configuration */
10105 cmdline_parse_token_string_t cmd_config_e_tag_e_tag =
10106         TOKEN_STRING_INITIALIZER
10107                 (struct cmd_config_e_tag_result,
10108                  e_tag, "E-tag");
10109 cmdline_parse_token_string_t cmd_config_e_tag_set =
10110         TOKEN_STRING_INITIALIZER
10111                 (struct cmd_config_e_tag_result,
10112                  set, "set");
10113 cmdline_parse_token_string_t cmd_config_e_tag_insertion =
10114         TOKEN_STRING_INITIALIZER
10115                 (struct cmd_config_e_tag_result,
10116                  insertion, "insertion");
10117 cmdline_parse_token_string_t cmd_config_e_tag_stripping =
10118         TOKEN_STRING_INITIALIZER
10119                 (struct cmd_config_e_tag_result,
10120                  stripping, "stripping");
10121 cmdline_parse_token_string_t cmd_config_e_tag_forwarding =
10122         TOKEN_STRING_INITIALIZER
10123                 (struct cmd_config_e_tag_result,
10124                  forwarding, "forwarding");
10125 cmdline_parse_token_string_t cmd_config_e_tag_filter =
10126         TOKEN_STRING_INITIALIZER
10127                 (struct cmd_config_e_tag_result,
10128                  filter, "filter");
10129 cmdline_parse_token_string_t cmd_config_e_tag_add =
10130         TOKEN_STRING_INITIALIZER
10131                 (struct cmd_config_e_tag_result,
10132                  add, "add");
10133 cmdline_parse_token_string_t cmd_config_e_tag_del =
10134         TOKEN_STRING_INITIALIZER
10135                 (struct cmd_config_e_tag_result,
10136                  del, "del");
10137 cmdline_parse_token_string_t cmd_config_e_tag_on =
10138         TOKEN_STRING_INITIALIZER
10139                 (struct cmd_config_e_tag_result,
10140                  on, "on");
10141 cmdline_parse_token_string_t cmd_config_e_tag_off =
10142         TOKEN_STRING_INITIALIZER
10143                 (struct cmd_config_e_tag_result,
10144                  off, "off");
10145 cmdline_parse_token_string_t cmd_config_e_tag_on_off =
10146         TOKEN_STRING_INITIALIZER
10147                 (struct cmd_config_e_tag_result,
10148                  on_off, "on#off");
10149 cmdline_parse_token_string_t cmd_config_e_tag_port_tag_id =
10150         TOKEN_STRING_INITIALIZER
10151                 (struct cmd_config_e_tag_result,
10152                  port_tag_id, "port-tag-id");
10153 cmdline_parse_token_num_t cmd_config_e_tag_port_tag_id_val =
10154         TOKEN_NUM_INITIALIZER
10155                 (struct cmd_config_e_tag_result,
10156                  port_tag_id_val, UINT32);
10157 cmdline_parse_token_string_t cmd_config_e_tag_e_tag_id =
10158         TOKEN_STRING_INITIALIZER
10159                 (struct cmd_config_e_tag_result,
10160                  e_tag_id, "e-tag-id");
10161 cmdline_parse_token_num_t cmd_config_e_tag_e_tag_id_val =
10162         TOKEN_NUM_INITIALIZER
10163                 (struct cmd_config_e_tag_result,
10164                  e_tag_id_val, UINT16);
10165 cmdline_parse_token_string_t cmd_config_e_tag_dst_pool =
10166         TOKEN_STRING_INITIALIZER
10167                 (struct cmd_config_e_tag_result,
10168                  dst_pool, "dst-pool");
10169 cmdline_parse_token_num_t cmd_config_e_tag_dst_pool_val =
10170         TOKEN_NUM_INITIALIZER
10171                 (struct cmd_config_e_tag_result,
10172                  dst_pool_val, UINT8);
10173 cmdline_parse_token_string_t cmd_config_e_tag_port =
10174         TOKEN_STRING_INITIALIZER
10175                 (struct cmd_config_e_tag_result,
10176                  port, "port");
10177 cmdline_parse_token_num_t cmd_config_e_tag_port_id =
10178         TOKEN_NUM_INITIALIZER
10179                 (struct cmd_config_e_tag_result,
10180                  port_id, UINT8);
10181 cmdline_parse_token_string_t cmd_config_e_tag_vf =
10182         TOKEN_STRING_INITIALIZER
10183                 (struct cmd_config_e_tag_result,
10184                  vf, "vf");
10185 cmdline_parse_token_num_t cmd_config_e_tag_vf_id =
10186         TOKEN_NUM_INITIALIZER
10187                 (struct cmd_config_e_tag_result,
10188                  vf_id, UINT8);
10189
10190 /* E-tag insertion configuration */
10191 static void
10192 cmd_config_e_tag_insertion_en_parsed(
10193         void *parsed_result,
10194         __attribute__((unused)) struct cmdline *cl,
10195         __attribute__((unused)) void *data)
10196 {
10197         struct cmd_config_e_tag_result *res =
10198                 parsed_result;
10199         struct rte_eth_l2_tunnel_conf entry;
10200
10201         if (port_id_is_invalid(res->port_id, ENABLED_WARN))
10202                 return;
10203
10204         entry.l2_tunnel_type = RTE_L2_TUNNEL_TYPE_E_TAG;
10205         entry.tunnel_id = res->port_tag_id_val;
10206         entry.vf_id = res->vf_id;
10207         rte_eth_dev_l2_tunnel_offload_set(res->port_id,
10208                                           &entry,
10209                                           ETH_L2_TUNNEL_INSERTION_MASK,
10210                                           1);
10211 }
10212
10213 static void
10214 cmd_config_e_tag_insertion_dis_parsed(
10215         void *parsed_result,
10216         __attribute__((unused)) struct cmdline *cl,
10217         __attribute__((unused)) void *data)
10218 {
10219         struct cmd_config_e_tag_result *res =
10220                 parsed_result;
10221         struct rte_eth_l2_tunnel_conf entry;
10222
10223         if (port_id_is_invalid(res->port_id, ENABLED_WARN))
10224                 return;
10225
10226         entry.l2_tunnel_type = RTE_L2_TUNNEL_TYPE_E_TAG;
10227         entry.vf_id = res->vf_id;
10228
10229         rte_eth_dev_l2_tunnel_offload_set(res->port_id,
10230                                           &entry,
10231                                           ETH_L2_TUNNEL_INSERTION_MASK,
10232                                           0);
10233 }
10234
10235 cmdline_parse_inst_t cmd_config_e_tag_insertion_en = {
10236         .f = cmd_config_e_tag_insertion_en_parsed,
10237         .data = NULL,
10238         .help_str = "E-tag insertion enable",
10239         .tokens = {
10240                 (void *)&cmd_config_e_tag_e_tag,
10241                 (void *)&cmd_config_e_tag_set,
10242                 (void *)&cmd_config_e_tag_insertion,
10243                 (void *)&cmd_config_e_tag_on,
10244                 (void *)&cmd_config_e_tag_port_tag_id,
10245                 (void *)&cmd_config_e_tag_port_tag_id_val,
10246                 (void *)&cmd_config_e_tag_port,
10247                 (void *)&cmd_config_e_tag_port_id,
10248                 (void *)&cmd_config_e_tag_vf,
10249                 (void *)&cmd_config_e_tag_vf_id,
10250                 NULL,
10251         },
10252 };
10253
10254 cmdline_parse_inst_t cmd_config_e_tag_insertion_dis = {
10255         .f = cmd_config_e_tag_insertion_dis_parsed,
10256         .data = NULL,
10257         .help_str = "E-tag insertion disable",
10258         .tokens = {
10259                 (void *)&cmd_config_e_tag_e_tag,
10260                 (void *)&cmd_config_e_tag_set,
10261                 (void *)&cmd_config_e_tag_insertion,
10262                 (void *)&cmd_config_e_tag_off,
10263                 (void *)&cmd_config_e_tag_port,
10264                 (void *)&cmd_config_e_tag_port_id,
10265                 (void *)&cmd_config_e_tag_vf,
10266                 (void *)&cmd_config_e_tag_vf_id,
10267                 NULL,
10268         },
10269 };
10270
10271 /* E-tag stripping configuration */
10272 static void
10273 cmd_config_e_tag_stripping_parsed(
10274         void *parsed_result,
10275         __attribute__((unused)) struct cmdline *cl,
10276         __attribute__((unused)) void *data)
10277 {
10278         struct cmd_config_e_tag_result *res =
10279                 parsed_result;
10280         struct rte_eth_l2_tunnel_conf entry;
10281
10282         if (port_id_is_invalid(res->port_id, ENABLED_WARN))
10283                 return;
10284
10285         entry.l2_tunnel_type = RTE_L2_TUNNEL_TYPE_E_TAG;
10286
10287         if (!strcmp(res->on_off, "on"))
10288                 rte_eth_dev_l2_tunnel_offload_set
10289                         (res->port_id,
10290                          &entry,
10291                          ETH_L2_TUNNEL_STRIPPING_MASK,
10292                          1);
10293         else
10294                 rte_eth_dev_l2_tunnel_offload_set
10295                         (res->port_id,
10296                          &entry,
10297                          ETH_L2_TUNNEL_STRIPPING_MASK,
10298                          0);
10299 }
10300
10301 cmdline_parse_inst_t cmd_config_e_tag_stripping_en_dis = {
10302         .f = cmd_config_e_tag_stripping_parsed,
10303         .data = NULL,
10304         .help_str = "E-tag stripping enable/disable",
10305         .tokens = {
10306                 (void *)&cmd_config_e_tag_e_tag,
10307                 (void *)&cmd_config_e_tag_set,
10308                 (void *)&cmd_config_e_tag_stripping,
10309                 (void *)&cmd_config_e_tag_on_off,
10310                 (void *)&cmd_config_e_tag_port,
10311                 (void *)&cmd_config_e_tag_port_id,
10312                 NULL,
10313         },
10314 };
10315
10316 /* E-tag forwarding configuration */
10317 static void
10318 cmd_config_e_tag_forwarding_parsed(
10319         void *parsed_result,
10320         __attribute__((unused)) struct cmdline *cl,
10321         __attribute__((unused)) void *data)
10322 {
10323         struct cmd_config_e_tag_result *res = parsed_result;
10324         struct rte_eth_l2_tunnel_conf entry;
10325
10326         if (port_id_is_invalid(res->port_id, ENABLED_WARN))
10327                 return;
10328
10329         entry.l2_tunnel_type = RTE_L2_TUNNEL_TYPE_E_TAG;
10330
10331         if (!strcmp(res->on_off, "on"))
10332                 rte_eth_dev_l2_tunnel_offload_set
10333                         (res->port_id,
10334                          &entry,
10335                          ETH_L2_TUNNEL_FORWARDING_MASK,
10336                          1);
10337         else
10338                 rte_eth_dev_l2_tunnel_offload_set
10339                         (res->port_id,
10340                          &entry,
10341                          ETH_L2_TUNNEL_FORWARDING_MASK,
10342                          0);
10343 }
10344
10345 cmdline_parse_inst_t cmd_config_e_tag_forwarding_en_dis = {
10346         .f = cmd_config_e_tag_forwarding_parsed,
10347         .data = NULL,
10348         .help_str = "E-tag forwarding enable/disable",
10349         .tokens = {
10350                 (void *)&cmd_config_e_tag_e_tag,
10351                 (void *)&cmd_config_e_tag_set,
10352                 (void *)&cmd_config_e_tag_forwarding,
10353                 (void *)&cmd_config_e_tag_on_off,
10354                 (void *)&cmd_config_e_tag_port,
10355                 (void *)&cmd_config_e_tag_port_id,
10356                 NULL,
10357         },
10358 };
10359
10360 /* E-tag filter configuration */
10361 static void
10362 cmd_config_e_tag_filter_add_parsed(
10363         void *parsed_result,
10364         __attribute__((unused)) struct cmdline *cl,
10365         __attribute__((unused)) void *data)
10366 {
10367         struct cmd_config_e_tag_result *res = parsed_result;
10368         struct rte_eth_l2_tunnel_conf entry;
10369         int ret = 0;
10370
10371         if (port_id_is_invalid(res->port_id, ENABLED_WARN))
10372                 return;
10373
10374         if (res->e_tag_id_val > 0x3fff) {
10375                 printf("e-tag-id must be equal or less than 0x3fff.\n");
10376                 return;
10377         }
10378
10379         ret = rte_eth_dev_filter_supported(res->port_id,
10380                                            RTE_ETH_FILTER_L2_TUNNEL);
10381         if (ret < 0) {
10382                 printf("E-tag filter is not supported on port %u.\n",
10383                        res->port_id);
10384                 return;
10385         }
10386
10387         entry.l2_tunnel_type = RTE_L2_TUNNEL_TYPE_E_TAG;
10388         entry.tunnel_id = res->e_tag_id_val;
10389         entry.pool = res->dst_pool_val;
10390
10391         ret = rte_eth_dev_filter_ctrl(res->port_id,
10392                                       RTE_ETH_FILTER_L2_TUNNEL,
10393                                       RTE_ETH_FILTER_ADD,
10394                                       &entry);
10395         if (ret < 0)
10396                 printf("E-tag filter programming error: (%s)\n",
10397                        strerror(-ret));
10398 }
10399
10400 cmdline_parse_inst_t cmd_config_e_tag_filter_add = {
10401         .f = cmd_config_e_tag_filter_add_parsed,
10402         .data = NULL,
10403         .help_str = "E-tag filter add",
10404         .tokens = {
10405                 (void *)&cmd_config_e_tag_e_tag,
10406                 (void *)&cmd_config_e_tag_set,
10407                 (void *)&cmd_config_e_tag_filter,
10408                 (void *)&cmd_config_e_tag_add,
10409                 (void *)&cmd_config_e_tag_e_tag_id,
10410                 (void *)&cmd_config_e_tag_e_tag_id_val,
10411                 (void *)&cmd_config_e_tag_dst_pool,
10412                 (void *)&cmd_config_e_tag_dst_pool_val,
10413                 (void *)&cmd_config_e_tag_port,
10414                 (void *)&cmd_config_e_tag_port_id,
10415                 NULL,
10416         },
10417 };
10418
10419 static void
10420 cmd_config_e_tag_filter_del_parsed(
10421         void *parsed_result,
10422         __attribute__((unused)) struct cmdline *cl,
10423         __attribute__((unused)) void *data)
10424 {
10425         struct cmd_config_e_tag_result *res = parsed_result;
10426         struct rte_eth_l2_tunnel_conf entry;
10427         int ret = 0;
10428
10429         if (port_id_is_invalid(res->port_id, ENABLED_WARN))
10430                 return;
10431
10432         if (res->e_tag_id_val > 0x3fff) {
10433                 printf("e-tag-id must be less than 0x3fff.\n");
10434                 return;
10435         }
10436
10437         ret = rte_eth_dev_filter_supported(res->port_id,
10438                                            RTE_ETH_FILTER_L2_TUNNEL);
10439         if (ret < 0) {
10440                 printf("E-tag filter is not supported on port %u.\n",
10441                        res->port_id);
10442                 return;
10443         }
10444
10445         entry.l2_tunnel_type = RTE_L2_TUNNEL_TYPE_E_TAG;
10446         entry.tunnel_id = res->e_tag_id_val;
10447
10448         ret = rte_eth_dev_filter_ctrl(res->port_id,
10449                                       RTE_ETH_FILTER_L2_TUNNEL,
10450                                       RTE_ETH_FILTER_DELETE,
10451                                       &entry);
10452         if (ret < 0)
10453                 printf("E-tag filter programming error: (%s)\n",
10454                        strerror(-ret));
10455 }
10456
10457 cmdline_parse_inst_t cmd_config_e_tag_filter_del = {
10458         .f = cmd_config_e_tag_filter_del_parsed,
10459         .data = NULL,
10460         .help_str = "E-tag filter delete",
10461         .tokens = {
10462                 (void *)&cmd_config_e_tag_e_tag,
10463                 (void *)&cmd_config_e_tag_set,
10464                 (void *)&cmd_config_e_tag_filter,
10465                 (void *)&cmd_config_e_tag_del,
10466                 (void *)&cmd_config_e_tag_e_tag_id,
10467                 (void *)&cmd_config_e_tag_e_tag_id_val,
10468                 (void *)&cmd_config_e_tag_port,
10469                 (void *)&cmd_config_e_tag_port_id,
10470                 NULL,
10471         },
10472 };
10473
10474 /* ******************************************************************************** */
10475
10476 /* list of instructions */
10477 cmdline_parse_ctx_t main_ctx[] = {
10478         (cmdline_parse_inst_t *)&cmd_help_brief,
10479         (cmdline_parse_inst_t *)&cmd_help_long,
10480         (cmdline_parse_inst_t *)&cmd_quit,
10481         (cmdline_parse_inst_t *)&cmd_showport,
10482         (cmdline_parse_inst_t *)&cmd_showqueue,
10483         (cmdline_parse_inst_t *)&cmd_showportall,
10484         (cmdline_parse_inst_t *)&cmd_showcfg,
10485         (cmdline_parse_inst_t *)&cmd_start,
10486         (cmdline_parse_inst_t *)&cmd_start_tx_first,
10487         (cmdline_parse_inst_t *)&cmd_set_link_up,
10488         (cmdline_parse_inst_t *)&cmd_set_link_down,
10489         (cmdline_parse_inst_t *)&cmd_reset,
10490         (cmdline_parse_inst_t *)&cmd_set_numbers,
10491         (cmdline_parse_inst_t *)&cmd_set_txpkts,
10492         (cmdline_parse_inst_t *)&cmd_set_txsplit,
10493         (cmdline_parse_inst_t *)&cmd_set_fwd_list,
10494         (cmdline_parse_inst_t *)&cmd_set_fwd_mask,
10495         (cmdline_parse_inst_t *)&cmd_set_fwd_mode,
10496         (cmdline_parse_inst_t *)&cmd_set_burst_tx_retry,
10497         (cmdline_parse_inst_t *)&cmd_set_promisc_mode_one,
10498         (cmdline_parse_inst_t *)&cmd_set_promisc_mode_all,
10499         (cmdline_parse_inst_t *)&cmd_set_allmulti_mode_one,
10500         (cmdline_parse_inst_t *)&cmd_set_allmulti_mode_all,
10501         (cmdline_parse_inst_t *)&cmd_set_flush_rx,
10502         (cmdline_parse_inst_t *)&cmd_set_link_check,
10503 #ifdef RTE_NIC_BYPASS
10504         (cmdline_parse_inst_t *)&cmd_set_bypass_mode,
10505         (cmdline_parse_inst_t *)&cmd_set_bypass_event,
10506         (cmdline_parse_inst_t *)&cmd_set_bypass_timeout,
10507         (cmdline_parse_inst_t *)&cmd_show_bypass_config,
10508 #endif
10509 #ifdef RTE_LIBRTE_PMD_BOND
10510         (cmdline_parse_inst_t *) &cmd_set_bonding_mode,
10511         (cmdline_parse_inst_t *) &cmd_show_bonding_config,
10512         (cmdline_parse_inst_t *) &cmd_set_bonding_primary,
10513         (cmdline_parse_inst_t *) &cmd_add_bonding_slave,
10514         (cmdline_parse_inst_t *) &cmd_remove_bonding_slave,
10515         (cmdline_parse_inst_t *) &cmd_create_bonded_device,
10516         (cmdline_parse_inst_t *) &cmd_set_bond_mac_addr,
10517         (cmdline_parse_inst_t *) &cmd_set_balance_xmit_policy,
10518         (cmdline_parse_inst_t *) &cmd_set_bond_mon_period,
10519 #endif
10520         (cmdline_parse_inst_t *)&cmd_vlan_offload,
10521         (cmdline_parse_inst_t *)&cmd_vlan_tpid,
10522         (cmdline_parse_inst_t *)&cmd_rx_vlan_filter_all,
10523         (cmdline_parse_inst_t *)&cmd_rx_vlan_filter,
10524         (cmdline_parse_inst_t *)&cmd_tx_vlan_set,
10525         (cmdline_parse_inst_t *)&cmd_tx_vlan_set_qinq,
10526         (cmdline_parse_inst_t *)&cmd_tx_vlan_reset,
10527         (cmdline_parse_inst_t *)&cmd_tx_vlan_set_pvid,
10528         (cmdline_parse_inst_t *)&cmd_csum_set,
10529         (cmdline_parse_inst_t *)&cmd_csum_show,
10530         (cmdline_parse_inst_t *)&cmd_csum_tunnel,
10531         (cmdline_parse_inst_t *)&cmd_tso_set,
10532         (cmdline_parse_inst_t *)&cmd_tso_show,
10533         (cmdline_parse_inst_t *)&cmd_link_flow_control_set,
10534         (cmdline_parse_inst_t *)&cmd_link_flow_control_set_rx,
10535         (cmdline_parse_inst_t *)&cmd_link_flow_control_set_tx,
10536         (cmdline_parse_inst_t *)&cmd_link_flow_control_set_hw,
10537         (cmdline_parse_inst_t *)&cmd_link_flow_control_set_lw,
10538         (cmdline_parse_inst_t *)&cmd_link_flow_control_set_pt,
10539         (cmdline_parse_inst_t *)&cmd_link_flow_control_set_xon,
10540         (cmdline_parse_inst_t *)&cmd_link_flow_control_set_macfwd,
10541         (cmdline_parse_inst_t *)&cmd_link_flow_control_set_autoneg,
10542         (cmdline_parse_inst_t *)&cmd_priority_flow_control_set,
10543         (cmdline_parse_inst_t *)&cmd_config_dcb,
10544         (cmdline_parse_inst_t *)&cmd_read_reg,
10545         (cmdline_parse_inst_t *)&cmd_read_reg_bit_field,
10546         (cmdline_parse_inst_t *)&cmd_read_reg_bit,
10547         (cmdline_parse_inst_t *)&cmd_write_reg,
10548         (cmdline_parse_inst_t *)&cmd_write_reg_bit_field,
10549         (cmdline_parse_inst_t *)&cmd_write_reg_bit,
10550         (cmdline_parse_inst_t *)&cmd_read_rxd_txd,
10551         (cmdline_parse_inst_t *)&cmd_stop,
10552         (cmdline_parse_inst_t *)&cmd_mac_addr,
10553         (cmdline_parse_inst_t *)&cmd_set_qmap,
10554         (cmdline_parse_inst_t *)&cmd_operate_port,
10555         (cmdline_parse_inst_t *)&cmd_operate_specific_port,
10556         (cmdline_parse_inst_t *)&cmd_operate_attach_port,
10557         (cmdline_parse_inst_t *)&cmd_operate_detach_port,
10558         (cmdline_parse_inst_t *)&cmd_config_speed_all,
10559         (cmdline_parse_inst_t *)&cmd_config_speed_specific,
10560         (cmdline_parse_inst_t *)&cmd_config_rx_tx,
10561         (cmdline_parse_inst_t *)&cmd_config_mtu,
10562         (cmdline_parse_inst_t *)&cmd_config_max_pkt_len,
10563         (cmdline_parse_inst_t *)&cmd_config_rx_mode_flag,
10564         (cmdline_parse_inst_t *)&cmd_config_rss,
10565         (cmdline_parse_inst_t *)&cmd_config_rxtx_queue,
10566         (cmdline_parse_inst_t *)&cmd_config_txqflags,
10567         (cmdline_parse_inst_t *)&cmd_config_rss_reta,
10568         (cmdline_parse_inst_t *)&cmd_showport_reta,
10569         (cmdline_parse_inst_t *)&cmd_config_burst,
10570         (cmdline_parse_inst_t *)&cmd_config_thresh,
10571         (cmdline_parse_inst_t *)&cmd_config_threshold,
10572         (cmdline_parse_inst_t *)&cmd_set_vf_rxmode,
10573         (cmdline_parse_inst_t *)&cmd_set_uc_hash_filter,
10574         (cmdline_parse_inst_t *)&cmd_set_uc_all_hash_filter,
10575         (cmdline_parse_inst_t *)&cmd_vf_mac_addr_filter,
10576         (cmdline_parse_inst_t *)&cmd_set_vf_macvlan_filter,
10577         (cmdline_parse_inst_t *)&cmd_set_vf_traffic,
10578         (cmdline_parse_inst_t *)&cmd_vf_rxvlan_filter,
10579         (cmdline_parse_inst_t *)&cmd_queue_rate_limit,
10580         (cmdline_parse_inst_t *)&cmd_vf_rate_limit,
10581         (cmdline_parse_inst_t *)&cmd_tunnel_filter,
10582         (cmdline_parse_inst_t *)&cmd_tunnel_udp_config,
10583         (cmdline_parse_inst_t *)&cmd_global_config,
10584         (cmdline_parse_inst_t *)&cmd_set_mirror_mask,
10585         (cmdline_parse_inst_t *)&cmd_set_mirror_link,
10586         (cmdline_parse_inst_t *)&cmd_reset_mirror_rule,
10587         (cmdline_parse_inst_t *)&cmd_showport_rss_hash,
10588         (cmdline_parse_inst_t *)&cmd_showport_rss_hash_key,
10589         (cmdline_parse_inst_t *)&cmd_config_rss_hash_key,
10590         (cmdline_parse_inst_t *)&cmd_dump,
10591         (cmdline_parse_inst_t *)&cmd_dump_one,
10592         (cmdline_parse_inst_t *)&cmd_ethertype_filter,
10593         (cmdline_parse_inst_t *)&cmd_syn_filter,
10594         (cmdline_parse_inst_t *)&cmd_2tuple_filter,
10595         (cmdline_parse_inst_t *)&cmd_5tuple_filter,
10596         (cmdline_parse_inst_t *)&cmd_flex_filter,
10597         (cmdline_parse_inst_t *)&cmd_add_del_ip_flow_director,
10598         (cmdline_parse_inst_t *)&cmd_add_del_udp_flow_director,
10599         (cmdline_parse_inst_t *)&cmd_add_del_sctp_flow_director,
10600         (cmdline_parse_inst_t *)&cmd_add_del_l2_flow_director,
10601         (cmdline_parse_inst_t *)&cmd_add_del_mac_vlan_flow_director,
10602         (cmdline_parse_inst_t *)&cmd_add_del_tunnel_flow_director,
10603         (cmdline_parse_inst_t *)&cmd_flush_flow_director,
10604         (cmdline_parse_inst_t *)&cmd_set_flow_director_ip_mask,
10605         (cmdline_parse_inst_t *)&cmd_set_flow_director_mac_vlan_mask,
10606         (cmdline_parse_inst_t *)&cmd_set_flow_director_tunnel_mask,
10607         (cmdline_parse_inst_t *)&cmd_set_flow_director_flex_mask,
10608         (cmdline_parse_inst_t *)&cmd_set_flow_director_flex_payload,
10609         (cmdline_parse_inst_t *)&cmd_get_sym_hash_ena_per_port,
10610         (cmdline_parse_inst_t *)&cmd_set_sym_hash_ena_per_port,
10611         (cmdline_parse_inst_t *)&cmd_get_hash_global_config,
10612         (cmdline_parse_inst_t *)&cmd_set_hash_global_config,
10613         (cmdline_parse_inst_t *)&cmd_set_hash_input_set,
10614         (cmdline_parse_inst_t *)&cmd_set_fdir_input_set,
10615         (cmdline_parse_inst_t *)&cmd_mcast_addr,
10616         (cmdline_parse_inst_t *)&cmd_config_l2_tunnel_eth_type_all,
10617         (cmdline_parse_inst_t *)&cmd_config_l2_tunnel_eth_type_specific,
10618         (cmdline_parse_inst_t *)&cmd_config_l2_tunnel_en_dis_all,
10619         (cmdline_parse_inst_t *)&cmd_config_l2_tunnel_en_dis_specific,
10620         (cmdline_parse_inst_t *)&cmd_config_e_tag_insertion_en,
10621         (cmdline_parse_inst_t *)&cmd_config_e_tag_insertion_dis,
10622         (cmdline_parse_inst_t *)&cmd_config_e_tag_stripping_en_dis,
10623         (cmdline_parse_inst_t *)&cmd_config_e_tag_forwarding_en_dis,
10624         (cmdline_parse_inst_t *)&cmd_config_e_tag_filter_add,
10625         (cmdline_parse_inst_t *)&cmd_config_e_tag_filter_del,
10626         NULL,
10627 };
10628
10629 /* prompt function, called from main on MASTER lcore */
10630 void
10631 prompt(void)
10632 {
10633         /* initialize non-constant commands */
10634         cmd_set_fwd_mode_init();
10635
10636         testpmd_cl = cmdline_stdin_new(main_ctx, "testpmd> ");
10637         if (testpmd_cl == NULL)
10638                 return;
10639         cmdline_interact(testpmd_cl);
10640         cmdline_stdin_exit(testpmd_cl);
10641 }
10642
10643 void
10644 prompt_exit(void)
10645 {
10646         if (testpmd_cl != NULL)
10647                 cmdline_quit(testpmd_cl);
10648 }
10649
10650 static void
10651 cmd_reconfig_device_queue(portid_t id, uint8_t dev, uint8_t queue)
10652 {
10653         if (id == (portid_t)RTE_PORT_ALL) {
10654                 portid_t pid;
10655
10656                 FOREACH_PORT(pid, ports) {
10657                         /* check if need_reconfig has been set to 1 */
10658                         if (ports[pid].need_reconfig == 0)
10659                                 ports[pid].need_reconfig = dev;
10660                         /* check if need_reconfig_queues has been set to 1 */
10661                         if (ports[pid].need_reconfig_queues == 0)
10662                                 ports[pid].need_reconfig_queues = queue;
10663                 }
10664         } else if (!port_id_is_invalid(id, DISABLED_WARN)) {
10665                 /* check if need_reconfig has been set to 1 */
10666                 if (ports[id].need_reconfig == 0)
10667                         ports[id].need_reconfig = dev;
10668                 /* check if need_reconfig_queues has been set to 1 */
10669                 if (ports[id].need_reconfig_queues == 0)
10670                         ports[id].need_reconfig_queues = queue;
10671         }
10672 }
10673
10674 #ifdef RTE_NIC_BYPASS
10675 #include <rte_pci_dev_ids.h>
10676 uint8_t
10677 bypass_is_supported(portid_t port_id)
10678 {
10679         struct rte_port   *port;
10680         struct rte_pci_id *pci_id;
10681
10682         if (port_id_is_invalid(port_id, ENABLED_WARN))
10683                 return 0;
10684
10685         /* Get the device id. */
10686         port    = &ports[port_id];
10687         pci_id = &port->dev_info.pci_dev->id;
10688
10689         /* Check if NIC supports bypass. */
10690         if (pci_id->device_id == IXGBE_DEV_ID_82599_BYPASS) {
10691                 return 1;
10692         }
10693         else {
10694                 printf("\tBypass not supported for port_id = %d.\n", port_id);
10695                 return 0;
10696         }
10697 }
10698 #endif