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