1 /* SPDX-License-Identifier: BSD-3-Clause 2 * Copyright(c) 2010-2016 Intel Corporation. 3 * Copyright(c) 2014 6WIND S.A. 4 */ 5 6 #include <stdarg.h> 7 #include <errno.h> 8 #include <stdio.h> 9 #include <stdint.h> 10 #include <string.h> 11 #include <termios.h> 12 #include <unistd.h> 13 #include <inttypes.h> 14 #ifndef __linux__ 15 #ifndef __FreeBSD__ 16 #include <net/socket.h> 17 #else 18 #include <sys/socket.h> 19 #endif 20 #endif 21 #include <netinet/in.h> 22 23 #include <sys/queue.h> 24 25 #include <rte_common.h> 26 #include <rte_byteorder.h> 27 #include <rte_log.h> 28 #include <rte_debug.h> 29 #include <rte_cycles.h> 30 #include <rte_memory.h> 31 #include <rte_memzone.h> 32 #include <rte_malloc.h> 33 #include <rte_launch.h> 34 #include <rte_eal.h> 35 #include <rte_per_lcore.h> 36 #include <rte_lcore.h> 37 #include <rte_atomic.h> 38 #include <rte_branch_prediction.h> 39 #include <rte_ring.h> 40 #include <rte_mempool.h> 41 #include <rte_interrupts.h> 42 #include <rte_pci.h> 43 #include <rte_ether.h> 44 #include <rte_ethdev.h> 45 #include <rte_string_fns.h> 46 #include <rte_devargs.h> 47 #include <rte_eth_ctrl.h> 48 #include <rte_flow.h> 49 #include <rte_gro.h> 50 51 #include <cmdline_rdline.h> 52 #include <cmdline_parse.h> 53 #include <cmdline_parse_num.h> 54 #include <cmdline_parse_string.h> 55 #include <cmdline_parse_ipaddr.h> 56 #include <cmdline_parse_etheraddr.h> 57 #include <cmdline_socket.h> 58 #include <cmdline.h> 59 #ifdef RTE_LIBRTE_PMD_BOND 60 #include <rte_eth_bond.h> 61 #include <rte_eth_bond_8023ad.h> 62 #endif 63 #if defined RTE_LIBRTE_DPAA_BUS && defined RTE_LIBRTE_DPAA_PMD 64 #include <rte_pmd_dpaa.h> 65 #endif 66 #ifdef RTE_LIBRTE_IXGBE_PMD 67 #include <rte_pmd_ixgbe.h> 68 #endif 69 #ifdef RTE_LIBRTE_I40E_PMD 70 #include <rte_pmd_i40e.h> 71 #endif 72 #ifdef RTE_LIBRTE_BNXT_PMD 73 #include <rte_pmd_bnxt.h> 74 #endif 75 #include "testpmd.h" 76 #include "cmdline_mtr.h" 77 #include "cmdline_tm.h" 78 #include "bpf_cmd.h" 79 80 static struct cmdline *testpmd_cl; 81 82 static void cmd_reconfig_device_queue(portid_t id, uint8_t dev, uint8_t queue); 83 84 /* *** Help command with introduction. *** */ 85 struct cmd_help_brief_result { 86 cmdline_fixed_string_t help; 87 }; 88 89 static void cmd_help_brief_parsed(__attribute__((unused)) void *parsed_result, 90 struct cmdline *cl, 91 __attribute__((unused)) void *data) 92 { 93 cmdline_printf( 94 cl, 95 "\n" 96 "Help is available for the following sections:\n\n" 97 " help control : Start and stop forwarding.\n" 98 " help display : Displaying port, stats and config " 99 "information.\n" 100 " help config : Configuration information.\n" 101 " help ports : Configuring ports.\n" 102 " help registers : Reading and setting port registers.\n" 103 " help filters : Filters configuration help.\n" 104 " help all : All of the above sections.\n\n" 105 ); 106 107 } 108 109 cmdline_parse_token_string_t cmd_help_brief_help = 110 TOKEN_STRING_INITIALIZER(struct cmd_help_brief_result, help, "help"); 111 112 cmdline_parse_inst_t cmd_help_brief = { 113 .f = cmd_help_brief_parsed, 114 .data = NULL, 115 .help_str = "help: Show help", 116 .tokens = { 117 (void *)&cmd_help_brief_help, 118 NULL, 119 }, 120 }; 121 122 /* *** Help command with help sections. *** */ 123 struct cmd_help_long_result { 124 cmdline_fixed_string_t help; 125 cmdline_fixed_string_t section; 126 }; 127 128 static void cmd_help_long_parsed(void *parsed_result, 129 struct cmdline *cl, 130 __attribute__((unused)) void *data) 131 { 132 int show_all = 0; 133 struct cmd_help_long_result *res = parsed_result; 134 135 if (!strcmp(res->section, "all")) 136 show_all = 1; 137 138 if (show_all || !strcmp(res->section, "control")) { 139 140 cmdline_printf( 141 cl, 142 "\n" 143 "Control forwarding:\n" 144 "-------------------\n\n" 145 146 "start\n" 147 " Start packet forwarding with current configuration.\n\n" 148 149 "start tx_first\n" 150 " Start packet forwarding with current config" 151 " after sending one burst of packets.\n\n" 152 153 "stop\n" 154 " Stop packet forwarding, and display accumulated" 155 " statistics.\n\n" 156 157 "quit\n" 158 " Quit to prompt.\n\n" 159 ); 160 } 161 162 if (show_all || !strcmp(res->section, "display")) { 163 164 cmdline_printf( 165 cl, 166 "\n" 167 "Display:\n" 168 "--------\n\n" 169 170 "show port (info|stats|summary|xstats|fdir|stat_qmap|dcb_tc|cap) (port_id|all)\n" 171 " Display information for port_id, or all.\n\n" 172 173 "show port X rss reta (size) (mask0,mask1,...)\n" 174 " Display the rss redirection table entry indicated" 175 " by masks on port X. size is used to indicate the" 176 " hardware supported reta size\n\n" 177 178 "show port (port_id) rss-hash [key]\n" 179 " Display the RSS hash functions and RSS hash key of port\n\n" 180 181 "clear port (info|stats|xstats|fdir|stat_qmap) (port_id|all)\n" 182 " Clear information for port_id, or all.\n\n" 183 184 "show (rxq|txq) info (port_id) (queue_id)\n" 185 " Display information for configured RX/TX queue.\n\n" 186 187 "show config (rxtx|cores|fwd|txpkts)\n" 188 " Display the given configuration.\n\n" 189 190 "read rxd (port_id) (queue_id) (rxd_id)\n" 191 " Display an RX descriptor of a port RX queue.\n\n" 192 193 "read txd (port_id) (queue_id) (txd_id)\n" 194 " Display a TX descriptor of a port TX queue.\n\n" 195 196 "ddp get list (port_id)\n" 197 " Get ddp profile info list\n\n" 198 199 "ddp get info (profile_path)\n" 200 " Get ddp profile information.\n\n" 201 202 "show vf stats (port_id) (vf_id)\n" 203 " Display a VF's statistics.\n\n" 204 205 "clear vf stats (port_id) (vf_id)\n" 206 " Reset a VF's statistics.\n\n" 207 208 "show port (port_id) pctype mapping\n" 209 " Get flow ptype to pctype mapping on a port\n\n" 210 211 "show port meter stats (port_id) (meter_id) (clear)\n" 212 " Get meter stats on a port\n\n" 213 "show port tm cap (port_id)\n" 214 " Display the port TM capability.\n\n" 215 216 "show port tm level cap (port_id) (level_id)\n" 217 " Display the port TM hierarchical level capability.\n\n" 218 219 "show port tm node cap (port_id) (node_id)\n" 220 " Display the port TM node capability.\n\n" 221 222 "show port tm node type (port_id) (node_id)\n" 223 " Display the port TM node type.\n\n" 224 225 "show port tm node stats (port_id) (node_id) (clear)\n" 226 " Display the port TM node stats.\n\n" 227 228 ); 229 } 230 231 if (show_all || !strcmp(res->section, "config")) { 232 cmdline_printf( 233 cl, 234 "\n" 235 "Configuration:\n" 236 "--------------\n" 237 "Configuration changes only become active when" 238 " forwarding is started/restarted.\n\n" 239 240 "set default\n" 241 " Reset forwarding to the default configuration.\n\n" 242 243 "set verbose (level)\n" 244 " Set the debug verbosity level X.\n\n" 245 246 "set log global|(type) (level)\n" 247 " Set the log level.\n\n" 248 249 "set nbport (num)\n" 250 " Set number of ports.\n\n" 251 252 "set nbcore (num)\n" 253 " Set number of cores.\n\n" 254 255 "set coremask (mask)\n" 256 " Set the forwarding cores hexadecimal mask.\n\n" 257 258 "set portmask (mask)\n" 259 " Set the forwarding ports hexadecimal mask.\n\n" 260 261 "set burst (num)\n" 262 " Set number of packets per burst.\n\n" 263 264 "set burst tx delay (microseconds) retry (num)\n" 265 " Set the transmit delay time and number of retries," 266 " effective when retry is enabled.\n\n" 267 268 "set txpkts (x[,y]*)\n" 269 " Set the length of each segment of TXONLY" 270 " and optionally CSUM packets.\n\n" 271 272 "set txsplit (off|on|rand)\n" 273 " Set the split policy for the TX packets." 274 " Right now only applicable for CSUM and TXONLY" 275 " modes\n\n" 276 277 "set corelist (x[,y]*)\n" 278 " Set the list of forwarding cores.\n\n" 279 280 "set portlist (x[,y]*)\n" 281 " Set the list of forwarding ports.\n\n" 282 283 "set tx loopback (port_id) (on|off)\n" 284 " Enable or disable tx loopback.\n\n" 285 286 "set all queues drop (port_id) (on|off)\n" 287 " Set drop enable bit for all queues.\n\n" 288 289 "set vf split drop (port_id) (vf_id) (on|off)\n" 290 " Set split drop enable bit for a VF from the PF.\n\n" 291 292 "set vf mac antispoof (port_id) (vf_id) (on|off).\n" 293 " Set MAC antispoof for a VF from the PF.\n\n" 294 295 "set macsec offload (port_id) on encrypt (on|off) replay-protect (on|off)\n" 296 " Enable MACsec offload.\n\n" 297 298 "set macsec offload (port_id) off\n" 299 " Disable MACsec offload.\n\n" 300 301 "set macsec sc (tx|rx) (port_id) (mac) (pi)\n" 302 " Configure MACsec secure connection (SC).\n\n" 303 304 "set macsec sa (tx|rx) (port_id) (idx) (an) (pn) (key)\n" 305 " Configure MACsec secure association (SA).\n\n" 306 307 "set vf broadcast (port_id) (vf_id) (on|off)\n" 308 " Set VF broadcast for a VF from the PF.\n\n" 309 310 "vlan set strip (on|off) (port_id)\n" 311 " Set the VLAN strip on a port.\n\n" 312 313 "vlan set stripq (on|off) (port_id,queue_id)\n" 314 " Set the VLAN strip for a queue on a port.\n\n" 315 316 "set vf vlan stripq (port_id) (vf_id) (on|off)\n" 317 " Set the VLAN strip for all queues in a pool for a VF from the PF.\n\n" 318 319 "set vf vlan insert (port_id) (vf_id) (vlan_id)\n" 320 " Set VLAN insert for a VF from the PF.\n\n" 321 322 "set vf vlan antispoof (port_id) (vf_id) (on|off)\n" 323 " Set VLAN antispoof for a VF from the PF.\n\n" 324 325 "set vf vlan tag (port_id) (vf_id) (on|off)\n" 326 " Set VLAN tag for a VF from the PF.\n\n" 327 328 "set vf tx max-bandwidth (port_id) (vf_id) (bandwidth)\n" 329 " Set a VF's max bandwidth(Mbps).\n\n" 330 331 "set vf tc tx min-bandwidth (port_id) (vf_id) (bw1, bw2, ...)\n" 332 " Set all TCs' min bandwidth(%%) on a VF.\n\n" 333 334 "set vf tc tx max-bandwidth (port_id) (vf_id) (tc_no) (bandwidth)\n" 335 " Set a TC's max bandwidth(Mbps) on a VF.\n\n" 336 337 "set tx strict-link-priority (port_id) (tc_bitmap)\n" 338 " Set some TCs' strict link priority mode on a physical port.\n\n" 339 340 "set tc tx min-bandwidth (port_id) (bw1, bw2, ...)\n" 341 " Set all TCs' min bandwidth(%%) for all PF and VFs.\n\n" 342 343 "vlan set filter (on|off) (port_id)\n" 344 " Set the VLAN filter on a port.\n\n" 345 346 "vlan set qinq (on|off) (port_id)\n" 347 " Set the VLAN QinQ (extended queue in queue)" 348 " on a port.\n\n" 349 350 "vlan set (inner|outer) tpid (value) (port_id)\n" 351 " Set the VLAN TPID for Packet Filtering on" 352 " a port\n\n" 353 354 "rx_vlan add (vlan_id|all) (port_id)\n" 355 " Add a vlan_id, or all identifiers, to the set" 356 " of VLAN identifiers filtered by port_id.\n\n" 357 358 "rx_vlan rm (vlan_id|all) (port_id)\n" 359 " Remove a vlan_id, or all identifiers, from the set" 360 " of VLAN identifiers filtered by port_id.\n\n" 361 362 "rx_vlan add (vlan_id) port (port_id) vf (vf_mask)\n" 363 " Add a vlan_id, to the set of VLAN identifiers" 364 "filtered for VF(s) from port_id.\n\n" 365 366 "rx_vlan rm (vlan_id) port (port_id) vf (vf_mask)\n" 367 " Remove a vlan_id, to the set of VLAN identifiers" 368 "filtered for VF(s) from port_id.\n\n" 369 370 "tunnel_filter add (port_id) (outer_mac) (inner_mac) (ip_addr) " 371 "(inner_vlan) (vxlan|nvgre|ipingre) (imac-ivlan|imac-ivlan-tenid|" 372 "imac-tenid|imac|omac-imac-tenid|oip|iip) (tenant_id) (queue_id)\n" 373 " add a tunnel filter of a port.\n\n" 374 375 "tunnel_filter rm (port_id) (outer_mac) (inner_mac) (ip_addr) " 376 "(inner_vlan) (vxlan|nvgre|ipingre) (imac-ivlan|imac-ivlan-tenid|" 377 "imac-tenid|imac|omac-imac-tenid|oip|iip) (tenant_id) (queue_id)\n" 378 " remove a tunnel filter of a port.\n\n" 379 380 "rx_vxlan_port add (udp_port) (port_id)\n" 381 " Add an UDP port for VXLAN packet filter on a port\n\n" 382 383 "rx_vxlan_port rm (udp_port) (port_id)\n" 384 " Remove an UDP port for VXLAN packet filter on a port\n\n" 385 386 "tx_vlan set (port_id) vlan_id[, vlan_id_outer]\n" 387 " Set hardware insertion of VLAN IDs (single or double VLAN " 388 "depends on the number of VLAN IDs) in packets sent on a port.\n\n" 389 390 "tx_vlan set pvid port_id vlan_id (on|off)\n" 391 " Set port based TX VLAN insertion.\n\n" 392 393 "tx_vlan reset (port_id)\n" 394 " Disable hardware insertion of a VLAN header in" 395 " packets sent on a port.\n\n" 396 397 "csum set (ip|udp|tcp|sctp|outer-ip|outer-udp) (hw|sw) (port_id)\n" 398 " Select hardware or software calculation of the" 399 " checksum when transmitting a packet using the" 400 " csum forward engine.\n" 401 " ip|udp|tcp|sctp always concern the inner layer.\n" 402 " outer-ip concerns the outer IP layer in" 403 " outer-udp concerns the outer UDP layer in" 404 " case the packet is recognized as a tunnel packet by" 405 " the forward engine (vxlan, gre and ipip are supported)\n" 406 " Please check the NIC datasheet for HW limits.\n\n" 407 408 "csum parse-tunnel (on|off) (tx_port_id)\n" 409 " If disabled, treat tunnel packets as non-tunneled" 410 " packets (treat inner headers as payload). The port\n" 411 " argument is the port used for TX in csum forward" 412 " engine.\n\n" 413 414 "csum show (port_id)\n" 415 " Display tx checksum offload configuration\n\n" 416 417 "tso set (segsize) (portid)\n" 418 " Enable TCP Segmentation Offload in csum forward" 419 " engine.\n" 420 " Please check the NIC datasheet for HW limits.\n\n" 421 422 "tso show (portid)" 423 " Display the status of TCP Segmentation Offload.\n\n" 424 425 "set port (port_id) gro on|off\n" 426 " Enable or disable Generic Receive Offload in" 427 " csum forwarding engine.\n\n" 428 429 "show port (port_id) gro\n" 430 " Display GRO configuration.\n\n" 431 432 "set gro flush (cycles)\n" 433 " Set the cycle to flush GROed packets from" 434 " reassembly tables.\n\n" 435 436 "set port (port_id) gso (on|off)" 437 " Enable or disable Generic Segmentation Offload in" 438 " csum forwarding engine.\n\n" 439 440 "set gso segsz (length)\n" 441 " Set max packet length for output GSO segments," 442 " including packet header and payload.\n\n" 443 444 "show port (port_id) gso\n" 445 " Show GSO configuration.\n\n" 446 447 "set fwd (%s)\n" 448 " Set packet forwarding mode.\n\n" 449 450 "mac_addr add (port_id) (XX:XX:XX:XX:XX:XX)\n" 451 " Add a MAC address on port_id.\n\n" 452 453 "mac_addr remove (port_id) (XX:XX:XX:XX:XX:XX)\n" 454 " Remove a MAC address from port_id.\n\n" 455 456 "mac_addr set (port_id) (XX:XX:XX:XX:XX:XX)\n" 457 " Set the default MAC address for port_id.\n\n" 458 459 "mac_addr add port (port_id) vf (vf_id) (mac_address)\n" 460 " Add a MAC address for a VF on the port.\n\n" 461 462 "set vf mac addr (port_id) (vf_id) (XX:XX:XX:XX:XX:XX)\n" 463 " Set the MAC address for a VF from the PF.\n\n" 464 465 "set eth-peer (port_id) (peer_addr)\n" 466 " set the peer address for certain port.\n\n" 467 468 "set port (port_id) uta (mac_address|all) (on|off)\n" 469 " Add/Remove a or all unicast hash filter(s)" 470 "from port X.\n\n" 471 472 "set promisc (port_id|all) (on|off)\n" 473 " Set the promiscuous mode on port_id, or all.\n\n" 474 475 "set allmulti (port_id|all) (on|off)\n" 476 " Set the allmulti mode on port_id, or all.\n\n" 477 478 "set vf promisc (port_id) (vf_id) (on|off)\n" 479 " Set unicast promiscuous mode for a VF from the PF.\n\n" 480 481 "set vf allmulti (port_id) (vf_id) (on|off)\n" 482 " Set multicast promiscuous mode for a VF from the PF.\n\n" 483 484 "set flow_ctrl rx (on|off) tx (on|off) (high_water)" 485 " (low_water) (pause_time) (send_xon) mac_ctrl_frame_fwd" 486 " (on|off) autoneg (on|off) (port_id)\n" 487 "set flow_ctrl rx (on|off) (portid)\n" 488 "set flow_ctrl tx (on|off) (portid)\n" 489 "set flow_ctrl high_water (high_water) (portid)\n" 490 "set flow_ctrl low_water (low_water) (portid)\n" 491 "set flow_ctrl pause_time (pause_time) (portid)\n" 492 "set flow_ctrl send_xon (send_xon) (portid)\n" 493 "set flow_ctrl mac_ctrl_frame_fwd (on|off) (portid)\n" 494 "set flow_ctrl autoneg (on|off) (port_id)\n" 495 " Set the link flow control parameter on a port.\n\n" 496 497 "set pfc_ctrl rx (on|off) tx (on|off) (high_water)" 498 " (low_water) (pause_time) (priority) (port_id)\n" 499 " Set the priority flow control parameter on a" 500 " port.\n\n" 501 502 "set stat_qmap (tx|rx) (port_id) (queue_id) (qmapping)\n" 503 " Set statistics mapping (qmapping 0..15) for RX/TX" 504 " queue on port.\n" 505 " e.g., 'set stat_qmap rx 0 2 5' sets rx queue 2" 506 " on port 0 to mapping 5.\n\n" 507 508 "set xstats-hide-zero on|off\n" 509 " Set the option to hide the zero values" 510 " for xstats display.\n" 511 512 "set port (port_id) vf (vf_id) rx|tx on|off\n" 513 " Enable/Disable a VF receive/tranmit from a port\n\n" 514 515 "set port (port_id) vf (vf_id) (mac_addr)" 516 " (exact-mac#exact-mac-vlan#hashmac|hashmac-vlan) on|off\n" 517 " Add/Remove unicast or multicast MAC addr filter" 518 " for a VF.\n\n" 519 520 "set port (port_id) vf (vf_id) rxmode (AUPE|ROPE|BAM" 521 "|MPE) (on|off)\n" 522 " AUPE:accepts untagged VLAN;" 523 "ROPE:accept unicast hash\n\n" 524 " BAM:accepts broadcast packets;" 525 "MPE:accepts all multicast packets\n\n" 526 " Enable/Disable a VF receive mode of a port\n\n" 527 528 "set port (port_id) queue (queue_id) rate (rate_num)\n" 529 " Set rate limit for a queue of a port\n\n" 530 531 "set port (port_id) vf (vf_id) rate (rate_num) " 532 "queue_mask (queue_mask_value)\n" 533 " Set rate limit for queues in VF of a port\n\n" 534 535 "set port (port_id) mirror-rule (rule_id)" 536 " (pool-mirror-up|pool-mirror-down|vlan-mirror)" 537 " (poolmask|vlanid[,vlanid]*) dst-pool (pool_id) (on|off)\n" 538 " Set pool or vlan type mirror rule on a port.\n" 539 " e.g., 'set port 0 mirror-rule 0 vlan-mirror 0,1" 540 " dst-pool 0 on' enable mirror traffic with vlan 0,1" 541 " to pool 0.\n\n" 542 543 "set port (port_id) mirror-rule (rule_id)" 544 " (uplink-mirror|downlink-mirror) dst-pool" 545 " (pool_id) (on|off)\n" 546 " Set uplink or downlink type mirror rule on a port.\n" 547 " e.g., 'set port 0 mirror-rule 0 uplink-mirror dst-pool" 548 " 0 on' enable mirror income traffic to pool 0.\n\n" 549 550 "reset port (port_id) mirror-rule (rule_id)\n" 551 " Reset a mirror rule.\n\n" 552 553 "set flush_rx (on|off)\n" 554 " Flush (default) or don't flush RX streams before" 555 " forwarding. Mainly used with PCAP drivers.\n\n" 556 557 "set bypass mode (normal|bypass|isolate) (port_id)\n" 558 " Set the bypass mode for the lowest port on bypass enabled" 559 " NIC.\n\n" 560 561 "set bypass event (timeout|os_on|os_off|power_on|power_off) " 562 "mode (normal|bypass|isolate) (port_id)\n" 563 " Set the event required to initiate specified bypass mode for" 564 " the lowest port on a bypass enabled NIC where:\n" 565 " timeout = enable bypass after watchdog timeout.\n" 566 " os_on = enable bypass when OS/board is powered on.\n" 567 " os_off = enable bypass when OS/board is powered off.\n" 568 " power_on = enable bypass when power supply is turned on.\n" 569 " power_off = enable bypass when power supply is turned off." 570 "\n\n" 571 572 "set bypass timeout (0|1.5|2|3|4|8|16|32)\n" 573 " Set the bypass watchdog timeout to 'n' seconds" 574 " where 0 = instant.\n\n" 575 576 "show bypass config (port_id)\n" 577 " Show the bypass configuration for a bypass enabled NIC" 578 " using the lowest port on the NIC.\n\n" 579 580 #ifdef RTE_LIBRTE_PMD_BOND 581 "create bonded device (mode) (socket)\n" 582 " Create a new bonded device with specific bonding mode and socket.\n\n" 583 584 "add bonding slave (slave_id) (port_id)\n" 585 " Add a slave device to a bonded device.\n\n" 586 587 "remove bonding slave (slave_id) (port_id)\n" 588 " Remove a slave device from a bonded device.\n\n" 589 590 "set bonding mode (value) (port_id)\n" 591 " Set the bonding mode on a bonded device.\n\n" 592 593 "set bonding primary (slave_id) (port_id)\n" 594 " Set the primary slave for a bonded device.\n\n" 595 596 "show bonding config (port_id)\n" 597 " Show the bonding config for port_id.\n\n" 598 599 "set bonding mac_addr (port_id) (address)\n" 600 " Set the MAC address of a bonded device.\n\n" 601 602 "set bonding mode IEEE802.3AD aggregator policy (port_id) (agg_name)" 603 " Set Aggregation mode for IEEE802.3AD (mode 4)" 604 605 "set bonding xmit_balance_policy (port_id) (l2|l23|l34)\n" 606 " Set the transmit balance policy for bonded device running in balance mode.\n\n" 607 608 "set bonding mon_period (port_id) (value)\n" 609 " Set the bonding link status monitoring polling period in ms.\n\n" 610 611 "set bonding lacp dedicated_queues <port_id> (enable|disable)\n" 612 " Enable/disable dedicated queues for LACP control traffic.\n\n" 613 614 #endif 615 "set link-up port (port_id)\n" 616 " Set link up for a port.\n\n" 617 618 "set link-down port (port_id)\n" 619 " Set link down for a port.\n\n" 620 621 "E-tag set insertion on port-tag-id (value)" 622 " port (port_id) vf (vf_id)\n" 623 " Enable E-tag insertion for a VF on a port\n\n" 624 625 "E-tag set insertion off port (port_id) vf (vf_id)\n" 626 " Disable E-tag insertion for a VF on a port\n\n" 627 628 "E-tag set stripping (on|off) port (port_id)\n" 629 " Enable/disable E-tag stripping on a port\n\n" 630 631 "E-tag set forwarding (on|off) port (port_id)\n" 632 " Enable/disable E-tag based forwarding" 633 " on a port\n\n" 634 635 "E-tag set filter add e-tag-id (value) dst-pool" 636 " (pool_id) port (port_id)\n" 637 " Add an E-tag forwarding filter on a port\n\n" 638 639 "E-tag set filter del e-tag-id (value) port (port_id)\n" 640 " Delete an E-tag forwarding filter on a port\n\n" 641 642 #if defined RTE_LIBRTE_PMD_SOFTNIC && defined RTE_LIBRTE_SCHED 643 "set port tm hierarchy default (port_id)\n" 644 " Set default traffic Management hierarchy on a port\n\n" 645 646 #endif 647 "ddp add (port_id) (profile_path[,backup_profile_path])\n" 648 " Load a profile package on a port\n\n" 649 650 "ddp del (port_id) (backup_profile_path)\n" 651 " Delete a profile package from a port\n\n" 652 653 "ptype mapping get (port_id) (valid_only)\n" 654 " Get ptype mapping on a port\n\n" 655 656 "ptype mapping replace (port_id) (target) (mask) (pky_type)\n" 657 " Replace target with the pkt_type in ptype mapping\n\n" 658 659 "ptype mapping reset (port_id)\n" 660 " Reset ptype mapping on a port\n\n" 661 662 "ptype mapping update (port_id) (hw_ptype) (sw_ptype)\n" 663 " Update a ptype mapping item on a port\n\n" 664 665 "set port (port_id) queue-region region_id (value) " 666 "queue_start_index (value) queue_num (value)\n" 667 " Set a queue region on a port\n\n" 668 669 "set port (port_id) queue-region region_id (value) " 670 "flowtype (value)\n" 671 " Set a flowtype region index on a port\n\n" 672 673 "set port (port_id) queue-region UP (value) region_id (value)\n" 674 " Set the mapping of User Priority to " 675 "queue region on a port\n\n" 676 677 "set port (port_id) queue-region flush (on|off)\n" 678 " flush all queue region related configuration\n\n" 679 680 "show port meter cap (port_id)\n" 681 " Show port meter capability information\n\n" 682 683 "add port meter profile srtcm_rfc2697 (port_id) (profile_id) (cir) (cbs) (ebs)\n" 684 " meter profile add - srtcm rfc 2697\n\n" 685 686 "add port meter profile trtcm_rfc2698 (port_id) (profile_id) (cir) (pir) (cbs) (pbs)\n" 687 " meter profile add - trtcm rfc 2698\n\n" 688 689 "add port meter profile trtcm_rfc4115 (port_id) (profile_id) (cir) (eir) (cbs) (ebs)\n" 690 " meter profile add - trtcm rfc 4115\n\n" 691 692 "del port meter profile (port_id) (profile_id)\n" 693 " meter profile delete\n\n" 694 695 "create port meter (port_id) (mtr_id) (profile_id) (meter_enable)\n" 696 "(g_action) (y_action) (r_action) (stats_mask) (shared)\n" 697 "(use_pre_meter_color) [(dscp_tbl_entry0) (dscp_tbl_entry1)...\n" 698 "(dscp_tbl_entry63)]\n" 699 " meter create\n\n" 700 701 "enable port meter (port_id) (mtr_id)\n" 702 " meter enable\n\n" 703 704 "disable port meter (port_id) (mtr_id)\n" 705 " meter disable\n\n" 706 707 "del port meter (port_id) (mtr_id)\n" 708 " meter delete\n\n" 709 710 "set port meter profile (port_id) (mtr_id) (profile_id)\n" 711 " meter update meter profile\n\n" 712 713 "set port meter dscp table (port_id) (mtr_id) [(dscp_tbl_entry0)\n" 714 "(dscp_tbl_entry1)...(dscp_tbl_entry63)]\n" 715 " update meter dscp table entries\n\n" 716 717 "set port meter policer action (port_id) (mtr_id) (action_mask)\n" 718 "(action0) [(action1) (action2)]\n" 719 " meter update policer action\n\n" 720 721 "set port meter stats mask (port_id) (mtr_id) (stats_mask)\n" 722 " meter update stats\n\n" 723 724 "show port (port_id) queue-region\n" 725 " show all queue region related configuration info\n\n" 726 727 "add port tm node shaper profile (port_id) (shaper_profile_id)" 728 " (tb_rate) (tb_size) (packet_length_adjust)\n" 729 " Add port tm node private shaper profile.\n\n" 730 731 "del port tm node shaper profile (port_id) (shaper_profile_id)\n" 732 " Delete port tm node private shaper profile.\n\n" 733 734 "add port tm node shared shaper (port_id) (shared_shaper_id)" 735 " (shaper_profile_id)\n" 736 " Add/update port tm node shared shaper.\n\n" 737 738 "del port tm node shared shaper (port_id) (shared_shaper_id)\n" 739 " Delete port tm node shared shaper.\n\n" 740 741 "set port tm node shaper profile (port_id) (node_id)" 742 " (shaper_profile_id)\n" 743 " Set port tm node shaper profile.\n\n" 744 745 "add port tm node wred profile (port_id) (wred_profile_id)" 746 " (color_g) (min_th_g) (max_th_g) (maxp_inv_g) (wq_log2_g)" 747 " (color_y) (min_th_y) (max_th_y) (maxp_inv_y) (wq_log2_y)" 748 " (color_r) (min_th_r) (max_th_r) (maxp_inv_r) (wq_log2_r)\n" 749 " Add port tm node wred profile.\n\n" 750 751 "del port tm node wred profile (port_id) (wred_profile_id)\n" 752 " Delete port tm node wred profile.\n\n" 753 754 "add port tm nonleaf node (port_id) (node_id) (parent_node_id)" 755 " (priority) (weight) (level_id) (shaper_profile_id)" 756 " (n_sp_priorities) (stats_mask) (n_shared_shapers)" 757 " [(shared_shaper_id_0) (shared_shaper_id_1)...]\n" 758 " Add port tm nonleaf node.\n\n" 759 760 "add port tm leaf node (port_id) (node_id) (parent_node_id)" 761 " (priority) (weight) (level_id) (shaper_profile_id)" 762 " (cman_mode) (wred_profile_id) (stats_mask) (n_shared_shapers)" 763 " [(shared_shaper_id_0) (shared_shaper_id_1)...]\n" 764 " Add port tm leaf node.\n\n" 765 766 "del port tm node (port_id) (node_id)\n" 767 " Delete port tm node.\n\n" 768 769 "set port tm node parent (port_id) (node_id) (parent_node_id)" 770 " (priority) (weight)\n" 771 " Set port tm node parent.\n\n" 772 773 "suspend port tm node (port_id) (node_id)" 774 " Suspend tm node.\n\n" 775 776 "resume port tm node (port_id) (node_id)" 777 " Resume tm node.\n\n" 778 779 "port tm hierarchy commit (port_id) (clean_on_fail)\n" 780 " Commit tm hierarchy.\n\n" 781 782 "vxlan ip-version (ipv4|ipv6) vni (vni) udp-src" 783 " (udp-src) udp-dst (udp-dst) ip-src (ip-src) ip-dst" 784 " (ip-dst) eth-src (eth-src) eth-dst (eth-dst)\n" 785 " Configure the VXLAN encapsulation for flows.\n\n" 786 787 "vxlan-with-vlan ip-version (ipv4|ipv6) vni (vni)" 788 " udp-src (udp-src) udp-dst (udp-dst) ip-src (ip-src)" 789 " ip-dst (ip-dst) vlan-tci (vlan-tci) eth-src (eth-src)" 790 " eth-dst (eth-dst)\n" 791 " Configure the VXLAN encapsulation for flows.\n\n" 792 793 "nvgre ip-version (ipv4|ipv6) tni (tni) ip-src" 794 " (ip-src) ip-dst (ip-dst) eth-src (eth-src) eth-dst" 795 " (eth-dst)\n" 796 " Configure the NVGRE encapsulation for flows.\n\n" 797 798 "nvgre-with-vlan ip-version (ipv4|ipv6) tni (tni)" 799 " ip-src (ip-src) ip-dst (ip-dst) vlan-tci (vlan-tci)" 800 " eth-src (eth-src) eth-dst (eth-dst)\n" 801 " Configure the NVGRE encapsulation for flows.\n\n" 802 803 , list_pkt_forwarding_modes() 804 ); 805 } 806 807 if (show_all || !strcmp(res->section, "ports")) { 808 809 cmdline_printf( 810 cl, 811 "\n" 812 "Port Operations:\n" 813 "----------------\n\n" 814 815 "port start (port_id|all)\n" 816 " Start all ports or port_id.\n\n" 817 818 "port stop (port_id|all)\n" 819 " Stop all ports or port_id.\n\n" 820 821 "port close (port_id|all)\n" 822 " Close all ports or port_id.\n\n" 823 824 "port attach (ident)\n" 825 " Attach physical or virtual dev by pci address or virtual device name\n\n" 826 827 "port detach (port_id)\n" 828 " Detach physical or virtual dev by port_id\n\n" 829 830 "port config (port_id|all)" 831 " speed (10|100|1000|10000|25000|40000|50000|100000|auto)" 832 " duplex (half|full|auto)\n" 833 " Set speed and duplex for all ports or port_id\n\n" 834 835 "port config (port_id|all) loopback (mode)\n" 836 " Set loopback mode for all ports or port_id\n\n" 837 838 "port config all (rxq|txq|rxd|txd) (value)\n" 839 " Set number for rxq/txq/rxd/txd.\n\n" 840 841 "port config all max-pkt-len (value)\n" 842 " Set the max packet length.\n\n" 843 844 "port config all (crc-strip|scatter|rx-cksum|rx-timestamp|hw-vlan|hw-vlan-filter|" 845 "hw-vlan-strip|hw-vlan-extend|drop-en)" 846 " (on|off)\n" 847 " Set crc-strip/scatter/rx-checksum/hardware-vlan/drop_en" 848 " for ports.\n\n" 849 850 "port config all rss (all|default|ip|tcp|udp|sctp|" 851 "ether|port|vxlan|geneve|nvgre|none|<flowtype_id>)\n" 852 " Set the RSS mode.\n\n" 853 854 "port config port-id rss reta (hash,queue)[,(hash,queue)]\n" 855 " Set the RSS redirection table.\n\n" 856 857 "port config (port_id) dcb vt (on|off) (traffic_class)" 858 " pfc (on|off)\n" 859 " Set the DCB mode.\n\n" 860 861 "port config all burst (value)\n" 862 " Set the number of packets per burst.\n\n" 863 864 "port config all (txpt|txht|txwt|rxpt|rxht|rxwt)" 865 " (value)\n" 866 " Set the ring prefetch/host/writeback threshold" 867 " for tx/rx queue.\n\n" 868 869 "port config all (txfreet|txrst|rxfreet) (value)\n" 870 " Set free threshold for rx/tx, or set" 871 " tx rs bit threshold.\n\n" 872 "port config mtu X value\n" 873 " Set the MTU of port X to a given value\n\n" 874 875 "port config (port_id) (rxq|txq) (queue_id) ring_size (value)\n" 876 " Set a rx/tx queue's ring size configuration, the new" 877 " value will take effect after command that (re-)start the port" 878 " or command that setup the specific queue\n\n" 879 880 "port (port_id) (rxq|txq) (queue_id) (start|stop)\n" 881 " Start/stop a rx/tx queue of port X. Only take effect" 882 " when port X is started\n\n" 883 884 "port (port_id) (rxq|txq) (queue_id) deferred_start (on|off)\n" 885 " Switch on/off a deferred start of port X rx/tx queue. Only" 886 " take effect when port X is stopped.\n\n" 887 888 "port (port_id) (rxq|txq) (queue_id) setup\n" 889 " Setup a rx/tx queue of port X.\n\n" 890 891 "port config (port_id|all) l2-tunnel E-tag ether-type" 892 " (value)\n" 893 " Set the value of E-tag ether-type.\n\n" 894 895 "port config (port_id|all) l2-tunnel E-tag" 896 " (enable|disable)\n" 897 " Enable/disable the E-tag support.\n\n" 898 899 "port config (port_id) pctype mapping reset\n" 900 " Reset flow type to pctype mapping on a port\n\n" 901 902 "port config (port_id) pctype mapping update" 903 " (pctype_id_0[,pctype_id_1]*) (flow_type_id)\n" 904 " Update a flow type to pctype mapping item on a port\n\n" 905 906 "port config (port_id) pctype (pctype_id) hash_inset|" 907 "fdir_inset|fdir_flx_inset get|set|clear field\n" 908 " (field_idx)\n" 909 " Configure RSS|FDIR|FDIR_FLX input set for some pctype\n\n" 910 911 "port config (port_id) pctype (pctype_id) hash_inset|" 912 "fdir_inset|fdir_flx_inset clear all" 913 " Clear RSS|FDIR|FDIR_FLX input set completely for some pctype\n\n" 914 915 "port config (port_id) udp_tunnel_port add|rm vxlan|geneve (udp_port)\n\n" 916 " Add/remove UDP tunnel port for tunneling offload\n\n" 917 ); 918 } 919 920 if (show_all || !strcmp(res->section, "registers")) { 921 922 cmdline_printf( 923 cl, 924 "\n" 925 "Registers:\n" 926 "----------\n\n" 927 928 "read reg (port_id) (address)\n" 929 " Display value of a port register.\n\n" 930 931 "read regfield (port_id) (address) (bit_x) (bit_y)\n" 932 " Display a port register bit field.\n\n" 933 934 "read regbit (port_id) (address) (bit_x)\n" 935 " Display a single port register bit.\n\n" 936 937 "write reg (port_id) (address) (value)\n" 938 " Set value of a port register.\n\n" 939 940 "write regfield (port_id) (address) (bit_x) (bit_y)" 941 " (value)\n" 942 " Set bit field of a port register.\n\n" 943 944 "write regbit (port_id) (address) (bit_x) (value)\n" 945 " Set single bit value of a port register.\n\n" 946 ); 947 } 948 if (show_all || !strcmp(res->section, "filters")) { 949 950 cmdline_printf( 951 cl, 952 "\n" 953 "filters:\n" 954 "--------\n\n" 955 956 "ethertype_filter (port_id) (add|del)" 957 " (mac_addr|mac_ignr) (mac_address) ethertype" 958 " (ether_type) (drop|fwd) queue (queue_id)\n" 959 " Add/Del an ethertype filter.\n\n" 960 961 "2tuple_filter (port_id) (add|del)" 962 " dst_port (dst_port_value) protocol (protocol_value)" 963 " mask (mask_value) tcp_flags (tcp_flags_value)" 964 " priority (prio_value) queue (queue_id)\n" 965 " Add/Del a 2tuple filter.\n\n" 966 967 "5tuple_filter (port_id) (add|del)" 968 " dst_ip (dst_address) src_ip (src_address)" 969 " dst_port (dst_port_value) src_port (src_port_value)" 970 " protocol (protocol_value)" 971 " mask (mask_value) tcp_flags (tcp_flags_value)" 972 " priority (prio_value) queue (queue_id)\n" 973 " Add/Del a 5tuple filter.\n\n" 974 975 "syn_filter (port_id) (add|del) priority (high|low) queue (queue_id)" 976 " Add/Del syn filter.\n\n" 977 978 "flex_filter (port_id) (add|del) len (len_value)" 979 " bytes (bytes_value) mask (mask_value)" 980 " priority (prio_value) queue (queue_id)\n" 981 " Add/Del a flex filter.\n\n" 982 983 "flow_director_filter (port_id) mode IP (add|del|update)" 984 " flow (ipv4-other|ipv4-frag|ipv6-other|ipv6-frag)" 985 " src (src_ip_address) dst (dst_ip_address)" 986 " tos (tos_value) proto (proto_value) ttl (ttl_value)" 987 " vlan (vlan_value) flexbytes (flexbytes_value)" 988 " (drop|fwd) pf|vf(vf_id) queue (queue_id)" 989 " fd_id (fd_id_value)\n" 990 " Add/Del an IP type flow director filter.\n\n" 991 992 "flow_director_filter (port_id) mode IP (add|del|update)" 993 " flow (ipv4-tcp|ipv4-udp|ipv6-tcp|ipv6-udp)" 994 " src (src_ip_address) (src_port)" 995 " dst (dst_ip_address) (dst_port)" 996 " tos (tos_value) ttl (ttl_value)" 997 " vlan (vlan_value) flexbytes (flexbytes_value)" 998 " (drop|fwd) pf|vf(vf_id) queue (queue_id)" 999 " fd_id (fd_id_value)\n" 1000 " Add/Del an UDP/TCP type flow director filter.\n\n" 1001 1002 "flow_director_filter (port_id) mode IP (add|del|update)" 1003 " flow (ipv4-sctp|ipv6-sctp)" 1004 " src (src_ip_address) (src_port)" 1005 " dst (dst_ip_address) (dst_port)" 1006 " tag (verification_tag) " 1007 " tos (tos_value) ttl (ttl_value)" 1008 " vlan (vlan_value)" 1009 " flexbytes (flexbytes_value) (drop|fwd)" 1010 " pf|vf(vf_id) queue (queue_id) fd_id (fd_id_value)\n" 1011 " Add/Del a SCTP type flow director filter.\n\n" 1012 1013 "flow_director_filter (port_id) mode IP (add|del|update)" 1014 " flow l2_payload ether (ethertype)" 1015 " flexbytes (flexbytes_value) (drop|fwd)" 1016 " pf|vf(vf_id) queue (queue_id) fd_id (fd_id_value)\n" 1017 " Add/Del a l2 payload type flow director filter.\n\n" 1018 1019 "flow_director_filter (port_id) mode MAC-VLAN (add|del|update)" 1020 " mac (mac_address) vlan (vlan_value)" 1021 " flexbytes (flexbytes_value) (drop|fwd)" 1022 " queue (queue_id) fd_id (fd_id_value)\n" 1023 " Add/Del a MAC-VLAN flow director filter.\n\n" 1024 1025 "flow_director_filter (port_id) mode Tunnel (add|del|update)" 1026 " mac (mac_address) vlan (vlan_value)" 1027 " tunnel (NVGRE|VxLAN) tunnel-id (tunnel_id_value)" 1028 " flexbytes (flexbytes_value) (drop|fwd)" 1029 " queue (queue_id) fd_id (fd_id_value)\n" 1030 " Add/Del a Tunnel flow director filter.\n\n" 1031 1032 "flow_director_filter (port_id) mode raw (add|del|update)" 1033 " flow (flow_id) (drop|fwd) queue (queue_id)" 1034 " fd_id (fd_id_value) packet (packet file name)\n" 1035 " Add/Del a raw type flow director filter.\n\n" 1036 1037 "flush_flow_director (port_id)\n" 1038 " Flush all flow director entries of a device.\n\n" 1039 1040 "flow_director_mask (port_id) mode IP vlan (vlan_value)" 1041 " src_mask (ipv4_src) (ipv6_src) (src_port)" 1042 " dst_mask (ipv4_dst) (ipv6_dst) (dst_port)\n" 1043 " Set flow director IP mask.\n\n" 1044 1045 "flow_director_mask (port_id) mode MAC-VLAN" 1046 " vlan (vlan_value)\n" 1047 " Set flow director MAC-VLAN mask.\n\n" 1048 1049 "flow_director_mask (port_id) mode Tunnel" 1050 " vlan (vlan_value) mac (mac_value)" 1051 " tunnel-type (tunnel_type_value)" 1052 " tunnel-id (tunnel_id_value)\n" 1053 " Set flow director Tunnel mask.\n\n" 1054 1055 "flow_director_flex_mask (port_id)" 1056 " flow (none|ipv4-other|ipv4-frag|ipv4-tcp|ipv4-udp|ipv4-sctp|" 1057 "ipv6-other|ipv6-frag|ipv6-tcp|ipv6-udp|ipv6-sctp|l2_payload|all)" 1058 " (mask)\n" 1059 " Configure mask of flex payload.\n\n" 1060 1061 "flow_director_flex_payload (port_id)" 1062 " (raw|l2|l3|l4) (config)\n" 1063 " Configure flex payload selection.\n\n" 1064 1065 "get_sym_hash_ena_per_port (port_id)\n" 1066 " get symmetric hash enable configuration per port.\n\n" 1067 1068 "set_sym_hash_ena_per_port (port_id) (enable|disable)\n" 1069 " set symmetric hash enable configuration per port" 1070 " to enable or disable.\n\n" 1071 1072 "get_hash_global_config (port_id)\n" 1073 " Get the global configurations of hash filters.\n\n" 1074 1075 "set_hash_global_config (port_id) (toeplitz|simple_xor|default)" 1076 " (ipv4|ipv4-frag|ipv4-tcp|ipv4-udp|ipv4-sctp|ipv4-other|ipv6|" 1077 "ipv6-frag|ipv6-tcp|ipv6-udp|ipv6-sctp|ipv6-other|l2_payload)" 1078 " (enable|disable)\n" 1079 " Set the global configurations of hash filters.\n\n" 1080 1081 "set_hash_input_set (port_id) (ipv4|ipv4-frag|" 1082 "ipv4-tcp|ipv4-udp|ipv4-sctp|ipv4-other|ipv6|" 1083 "ipv6-frag|ipv6-tcp|ipv6-udp|ipv6-sctp|ipv6-other|" 1084 "l2_payload|<flowtype_id>) (ovlan|ivlan|src-ipv4|dst-ipv4|" 1085 "src-ipv6|dst-ipv6|ipv4-tos|ipv4-proto|ipv6-tc|" 1086 "ipv6-next-header|udp-src-port|udp-dst-port|" 1087 "tcp-src-port|tcp-dst-port|sctp-src-port|" 1088 "sctp-dst-port|sctp-veri-tag|udp-key|gre-key|fld-1st|" 1089 "fld-2nd|fld-3rd|fld-4th|fld-5th|fld-6th|fld-7th|" 1090 "fld-8th|none) (select|add)\n" 1091 " Set the input set for hash.\n\n" 1092 1093 "set_fdir_input_set (port_id) " 1094 "(ipv4-frag|ipv4-tcp|ipv4-udp|ipv4-sctp|ipv4-other|" 1095 "ipv6-frag|ipv6-tcp|ipv6-udp|ipv6-sctp|ipv6-other|" 1096 "l2_payload) (ivlan|ethertype|src-ipv4|dst-ipv4|src-ipv6|" 1097 "dst-ipv6|ipv4-tos|ipv4-proto|ipv4-ttl|ipv6-tc|" 1098 "ipv6-next-header|ipv6-hop-limits|udp-src-port|" 1099 "udp-dst-port|tcp-src-port|tcp-dst-port|" 1100 "sctp-src-port|sctp-dst-port|sctp-veri-tag|none)" 1101 " (select|add)\n" 1102 " Set the input set for FDir.\n\n" 1103 1104 "flow validate {port_id}" 1105 " [group {group_id}] [priority {level}]" 1106 " [ingress] [egress]" 1107 " pattern {item} [/ {item} [...]] / end" 1108 " actions {action} [/ {action} [...]] / end\n" 1109 " Check whether a flow rule can be created.\n\n" 1110 1111 "flow create {port_id}" 1112 " [group {group_id}] [priority {level}]" 1113 " [ingress] [egress]" 1114 " pattern {item} [/ {item} [...]] / end" 1115 " actions {action} [/ {action} [...]] / end\n" 1116 " Create a flow rule.\n\n" 1117 1118 "flow destroy {port_id} rule {rule_id} [...]\n" 1119 " Destroy specific flow rules.\n\n" 1120 1121 "flow flush {port_id}\n" 1122 " Destroy all flow rules.\n\n" 1123 1124 "flow query {port_id} {rule_id} {action}\n" 1125 " Query an existing flow rule.\n\n" 1126 1127 "flow list {port_id} [group {group_id}] [...]\n" 1128 " List existing flow rules sorted by priority," 1129 " filtered by group identifiers.\n\n" 1130 1131 "flow isolate {port_id} {boolean}\n" 1132 " Restrict ingress traffic to the defined" 1133 " flow rules\n\n" 1134 ); 1135 } 1136 } 1137 1138 cmdline_parse_token_string_t cmd_help_long_help = 1139 TOKEN_STRING_INITIALIZER(struct cmd_help_long_result, help, "help"); 1140 1141 cmdline_parse_token_string_t cmd_help_long_section = 1142 TOKEN_STRING_INITIALIZER(struct cmd_help_long_result, section, 1143 "all#control#display#config#" 1144 "ports#registers#filters"); 1145 1146 cmdline_parse_inst_t cmd_help_long = { 1147 .f = cmd_help_long_parsed, 1148 .data = NULL, 1149 .help_str = "help all|control|display|config|ports|register|filters: " 1150 "Show help", 1151 .tokens = { 1152 (void *)&cmd_help_long_help, 1153 (void *)&cmd_help_long_section, 1154 NULL, 1155 }, 1156 }; 1157 1158 1159 /* *** start/stop/close all ports *** */ 1160 struct cmd_operate_port_result { 1161 cmdline_fixed_string_t keyword; 1162 cmdline_fixed_string_t name; 1163 cmdline_fixed_string_t value; 1164 }; 1165 1166 static void cmd_operate_port_parsed(void *parsed_result, 1167 __attribute__((unused)) struct cmdline *cl, 1168 __attribute__((unused)) void *data) 1169 { 1170 struct cmd_operate_port_result *res = parsed_result; 1171 1172 if (!strcmp(res->name, "start")) 1173 start_port(RTE_PORT_ALL); 1174 else if (!strcmp(res->name, "stop")) 1175 stop_port(RTE_PORT_ALL); 1176 else if (!strcmp(res->name, "close")) 1177 close_port(RTE_PORT_ALL); 1178 else if (!strcmp(res->name, "reset")) 1179 reset_port(RTE_PORT_ALL); 1180 else 1181 printf("Unknown parameter\n"); 1182 } 1183 1184 cmdline_parse_token_string_t cmd_operate_port_all_cmd = 1185 TOKEN_STRING_INITIALIZER(struct cmd_operate_port_result, keyword, 1186 "port"); 1187 cmdline_parse_token_string_t cmd_operate_port_all_port = 1188 TOKEN_STRING_INITIALIZER(struct cmd_operate_port_result, name, 1189 "start#stop#close#reset"); 1190 cmdline_parse_token_string_t cmd_operate_port_all_all = 1191 TOKEN_STRING_INITIALIZER(struct cmd_operate_port_result, value, "all"); 1192 1193 cmdline_parse_inst_t cmd_operate_port = { 1194 .f = cmd_operate_port_parsed, 1195 .data = NULL, 1196 .help_str = "port start|stop|close all: Start/Stop/Close/Reset all ports", 1197 .tokens = { 1198 (void *)&cmd_operate_port_all_cmd, 1199 (void *)&cmd_operate_port_all_port, 1200 (void *)&cmd_operate_port_all_all, 1201 NULL, 1202 }, 1203 }; 1204 1205 /* *** start/stop/close specific port *** */ 1206 struct cmd_operate_specific_port_result { 1207 cmdline_fixed_string_t keyword; 1208 cmdline_fixed_string_t name; 1209 uint8_t value; 1210 }; 1211 1212 static void cmd_operate_specific_port_parsed(void *parsed_result, 1213 __attribute__((unused)) struct cmdline *cl, 1214 __attribute__((unused)) void *data) 1215 { 1216 struct cmd_operate_specific_port_result *res = parsed_result; 1217 1218 if (!strcmp(res->name, "start")) 1219 start_port(res->value); 1220 else if (!strcmp(res->name, "stop")) 1221 stop_port(res->value); 1222 else if (!strcmp(res->name, "close")) 1223 close_port(res->value); 1224 else if (!strcmp(res->name, "reset")) 1225 reset_port(res->value); 1226 else 1227 printf("Unknown parameter\n"); 1228 } 1229 1230 cmdline_parse_token_string_t cmd_operate_specific_port_cmd = 1231 TOKEN_STRING_INITIALIZER(struct cmd_operate_specific_port_result, 1232 keyword, "port"); 1233 cmdline_parse_token_string_t cmd_operate_specific_port_port = 1234 TOKEN_STRING_INITIALIZER(struct cmd_operate_specific_port_result, 1235 name, "start#stop#close#reset"); 1236 cmdline_parse_token_num_t cmd_operate_specific_port_id = 1237 TOKEN_NUM_INITIALIZER(struct cmd_operate_specific_port_result, 1238 value, UINT8); 1239 1240 cmdline_parse_inst_t cmd_operate_specific_port = { 1241 .f = cmd_operate_specific_port_parsed, 1242 .data = NULL, 1243 .help_str = "port start|stop|close <port_id>: Start/Stop/Close/Reset port_id", 1244 .tokens = { 1245 (void *)&cmd_operate_specific_port_cmd, 1246 (void *)&cmd_operate_specific_port_port, 1247 (void *)&cmd_operate_specific_port_id, 1248 NULL, 1249 }, 1250 }; 1251 1252 /* *** attach a specified port *** */ 1253 struct cmd_operate_attach_port_result { 1254 cmdline_fixed_string_t port; 1255 cmdline_fixed_string_t keyword; 1256 cmdline_fixed_string_t identifier; 1257 }; 1258 1259 static void cmd_operate_attach_port_parsed(void *parsed_result, 1260 __attribute__((unused)) struct cmdline *cl, 1261 __attribute__((unused)) void *data) 1262 { 1263 struct cmd_operate_attach_port_result *res = parsed_result; 1264 1265 if (!strcmp(res->keyword, "attach")) 1266 attach_port(res->identifier); 1267 else 1268 printf("Unknown parameter\n"); 1269 } 1270 1271 cmdline_parse_token_string_t cmd_operate_attach_port_port = 1272 TOKEN_STRING_INITIALIZER(struct cmd_operate_attach_port_result, 1273 port, "port"); 1274 cmdline_parse_token_string_t cmd_operate_attach_port_keyword = 1275 TOKEN_STRING_INITIALIZER(struct cmd_operate_attach_port_result, 1276 keyword, "attach"); 1277 cmdline_parse_token_string_t cmd_operate_attach_port_identifier = 1278 TOKEN_STRING_INITIALIZER(struct cmd_operate_attach_port_result, 1279 identifier, NULL); 1280 1281 cmdline_parse_inst_t cmd_operate_attach_port = { 1282 .f = cmd_operate_attach_port_parsed, 1283 .data = NULL, 1284 .help_str = "port attach <identifier>: " 1285 "(identifier: pci address or virtual dev name)", 1286 .tokens = { 1287 (void *)&cmd_operate_attach_port_port, 1288 (void *)&cmd_operate_attach_port_keyword, 1289 (void *)&cmd_operate_attach_port_identifier, 1290 NULL, 1291 }, 1292 }; 1293 1294 /* *** detach a specified port *** */ 1295 struct cmd_operate_detach_port_result { 1296 cmdline_fixed_string_t port; 1297 cmdline_fixed_string_t keyword; 1298 portid_t port_id; 1299 }; 1300 1301 static void cmd_operate_detach_port_parsed(void *parsed_result, 1302 __attribute__((unused)) struct cmdline *cl, 1303 __attribute__((unused)) void *data) 1304 { 1305 struct cmd_operate_detach_port_result *res = parsed_result; 1306 1307 if (!strcmp(res->keyword, "detach")) 1308 detach_port(res->port_id); 1309 else 1310 printf("Unknown parameter\n"); 1311 } 1312 1313 cmdline_parse_token_string_t cmd_operate_detach_port_port = 1314 TOKEN_STRING_INITIALIZER(struct cmd_operate_detach_port_result, 1315 port, "port"); 1316 cmdline_parse_token_string_t cmd_operate_detach_port_keyword = 1317 TOKEN_STRING_INITIALIZER(struct cmd_operate_detach_port_result, 1318 keyword, "detach"); 1319 cmdline_parse_token_num_t cmd_operate_detach_port_port_id = 1320 TOKEN_NUM_INITIALIZER(struct cmd_operate_detach_port_result, 1321 port_id, UINT16); 1322 1323 cmdline_parse_inst_t cmd_operate_detach_port = { 1324 .f = cmd_operate_detach_port_parsed, 1325 .data = NULL, 1326 .help_str = "port detach <port_id>", 1327 .tokens = { 1328 (void *)&cmd_operate_detach_port_port, 1329 (void *)&cmd_operate_detach_port_keyword, 1330 (void *)&cmd_operate_detach_port_port_id, 1331 NULL, 1332 }, 1333 }; 1334 1335 /* *** configure speed for all ports *** */ 1336 struct cmd_config_speed_all { 1337 cmdline_fixed_string_t port; 1338 cmdline_fixed_string_t keyword; 1339 cmdline_fixed_string_t all; 1340 cmdline_fixed_string_t item1; 1341 cmdline_fixed_string_t item2; 1342 cmdline_fixed_string_t value1; 1343 cmdline_fixed_string_t value2; 1344 }; 1345 1346 static int 1347 parse_and_check_speed_duplex(char *speedstr, char *duplexstr, uint32_t *speed) 1348 { 1349 1350 int duplex; 1351 1352 if (!strcmp(duplexstr, "half")) { 1353 duplex = ETH_LINK_HALF_DUPLEX; 1354 } else if (!strcmp(duplexstr, "full")) { 1355 duplex = ETH_LINK_FULL_DUPLEX; 1356 } else if (!strcmp(duplexstr, "auto")) { 1357 duplex = ETH_LINK_FULL_DUPLEX; 1358 } else { 1359 printf("Unknown duplex parameter\n"); 1360 return -1; 1361 } 1362 1363 if (!strcmp(speedstr, "10")) { 1364 *speed = (duplex == ETH_LINK_HALF_DUPLEX) ? 1365 ETH_LINK_SPEED_10M_HD : ETH_LINK_SPEED_10M; 1366 } else if (!strcmp(speedstr, "100")) { 1367 *speed = (duplex == ETH_LINK_HALF_DUPLEX) ? 1368 ETH_LINK_SPEED_100M_HD : ETH_LINK_SPEED_100M; 1369 } else { 1370 if (duplex != ETH_LINK_FULL_DUPLEX) { 1371 printf("Invalid speed/duplex parameters\n"); 1372 return -1; 1373 } 1374 if (!strcmp(speedstr, "1000")) { 1375 *speed = ETH_LINK_SPEED_1G; 1376 } else if (!strcmp(speedstr, "10000")) { 1377 *speed = ETH_LINK_SPEED_10G; 1378 } else if (!strcmp(speedstr, "25000")) { 1379 *speed = ETH_LINK_SPEED_25G; 1380 } else if (!strcmp(speedstr, "40000")) { 1381 *speed = ETH_LINK_SPEED_40G; 1382 } else if (!strcmp(speedstr, "50000")) { 1383 *speed = ETH_LINK_SPEED_50G; 1384 } else if (!strcmp(speedstr, "100000")) { 1385 *speed = ETH_LINK_SPEED_100G; 1386 } else if (!strcmp(speedstr, "auto")) { 1387 *speed = ETH_LINK_SPEED_AUTONEG; 1388 } else { 1389 printf("Unknown speed parameter\n"); 1390 return -1; 1391 } 1392 } 1393 1394 return 0; 1395 } 1396 1397 static void 1398 cmd_config_speed_all_parsed(void *parsed_result, 1399 __attribute__((unused)) struct cmdline *cl, 1400 __attribute__((unused)) void *data) 1401 { 1402 struct cmd_config_speed_all *res = parsed_result; 1403 uint32_t link_speed; 1404 portid_t pid; 1405 1406 if (!all_ports_stopped()) { 1407 printf("Please stop all ports first\n"); 1408 return; 1409 } 1410 1411 if (parse_and_check_speed_duplex(res->value1, res->value2, 1412 &link_speed) < 0) 1413 return; 1414 1415 RTE_ETH_FOREACH_DEV(pid) { 1416 ports[pid].dev_conf.link_speeds = link_speed; 1417 } 1418 1419 cmd_reconfig_device_queue(RTE_PORT_ALL, 1, 1); 1420 } 1421 1422 cmdline_parse_token_string_t cmd_config_speed_all_port = 1423 TOKEN_STRING_INITIALIZER(struct cmd_config_speed_all, port, "port"); 1424 cmdline_parse_token_string_t cmd_config_speed_all_keyword = 1425 TOKEN_STRING_INITIALIZER(struct cmd_config_speed_all, keyword, 1426 "config"); 1427 cmdline_parse_token_string_t cmd_config_speed_all_all = 1428 TOKEN_STRING_INITIALIZER(struct cmd_config_speed_all, all, "all"); 1429 cmdline_parse_token_string_t cmd_config_speed_all_item1 = 1430 TOKEN_STRING_INITIALIZER(struct cmd_config_speed_all, item1, "speed"); 1431 cmdline_parse_token_string_t cmd_config_speed_all_value1 = 1432 TOKEN_STRING_INITIALIZER(struct cmd_config_speed_all, value1, 1433 "10#100#1000#10000#25000#40000#50000#100000#auto"); 1434 cmdline_parse_token_string_t cmd_config_speed_all_item2 = 1435 TOKEN_STRING_INITIALIZER(struct cmd_config_speed_all, item2, "duplex"); 1436 cmdline_parse_token_string_t cmd_config_speed_all_value2 = 1437 TOKEN_STRING_INITIALIZER(struct cmd_config_speed_all, value2, 1438 "half#full#auto"); 1439 1440 cmdline_parse_inst_t cmd_config_speed_all = { 1441 .f = cmd_config_speed_all_parsed, 1442 .data = NULL, 1443 .help_str = "port config all speed " 1444 "10|100|1000|10000|25000|40000|50000|100000|auto duplex " 1445 "half|full|auto", 1446 .tokens = { 1447 (void *)&cmd_config_speed_all_port, 1448 (void *)&cmd_config_speed_all_keyword, 1449 (void *)&cmd_config_speed_all_all, 1450 (void *)&cmd_config_speed_all_item1, 1451 (void *)&cmd_config_speed_all_value1, 1452 (void *)&cmd_config_speed_all_item2, 1453 (void *)&cmd_config_speed_all_value2, 1454 NULL, 1455 }, 1456 }; 1457 1458 /* *** configure speed for specific port *** */ 1459 struct cmd_config_speed_specific { 1460 cmdline_fixed_string_t port; 1461 cmdline_fixed_string_t keyword; 1462 portid_t id; 1463 cmdline_fixed_string_t item1; 1464 cmdline_fixed_string_t item2; 1465 cmdline_fixed_string_t value1; 1466 cmdline_fixed_string_t value2; 1467 }; 1468 1469 static void 1470 cmd_config_speed_specific_parsed(void *parsed_result, 1471 __attribute__((unused)) struct cmdline *cl, 1472 __attribute__((unused)) void *data) 1473 { 1474 struct cmd_config_speed_specific *res = parsed_result; 1475 uint32_t link_speed; 1476 1477 if (!all_ports_stopped()) { 1478 printf("Please stop all ports first\n"); 1479 return; 1480 } 1481 1482 if (port_id_is_invalid(res->id, ENABLED_WARN)) 1483 return; 1484 1485 if (parse_and_check_speed_duplex(res->value1, res->value2, 1486 &link_speed) < 0) 1487 return; 1488 1489 ports[res->id].dev_conf.link_speeds = link_speed; 1490 1491 cmd_reconfig_device_queue(RTE_PORT_ALL, 1, 1); 1492 } 1493 1494 1495 cmdline_parse_token_string_t cmd_config_speed_specific_port = 1496 TOKEN_STRING_INITIALIZER(struct cmd_config_speed_specific, port, 1497 "port"); 1498 cmdline_parse_token_string_t cmd_config_speed_specific_keyword = 1499 TOKEN_STRING_INITIALIZER(struct cmd_config_speed_specific, keyword, 1500 "config"); 1501 cmdline_parse_token_num_t cmd_config_speed_specific_id = 1502 TOKEN_NUM_INITIALIZER(struct cmd_config_speed_specific, id, UINT16); 1503 cmdline_parse_token_string_t cmd_config_speed_specific_item1 = 1504 TOKEN_STRING_INITIALIZER(struct cmd_config_speed_specific, item1, 1505 "speed"); 1506 cmdline_parse_token_string_t cmd_config_speed_specific_value1 = 1507 TOKEN_STRING_INITIALIZER(struct cmd_config_speed_specific, value1, 1508 "10#100#1000#10000#25000#40000#50000#100000#auto"); 1509 cmdline_parse_token_string_t cmd_config_speed_specific_item2 = 1510 TOKEN_STRING_INITIALIZER(struct cmd_config_speed_specific, item2, 1511 "duplex"); 1512 cmdline_parse_token_string_t cmd_config_speed_specific_value2 = 1513 TOKEN_STRING_INITIALIZER(struct cmd_config_speed_specific, value2, 1514 "half#full#auto"); 1515 1516 cmdline_parse_inst_t cmd_config_speed_specific = { 1517 .f = cmd_config_speed_specific_parsed, 1518 .data = NULL, 1519 .help_str = "port config <port_id> speed " 1520 "10|100|1000|10000|25000|40000|50000|100000|auto duplex " 1521 "half|full|auto", 1522 .tokens = { 1523 (void *)&cmd_config_speed_specific_port, 1524 (void *)&cmd_config_speed_specific_keyword, 1525 (void *)&cmd_config_speed_specific_id, 1526 (void *)&cmd_config_speed_specific_item1, 1527 (void *)&cmd_config_speed_specific_value1, 1528 (void *)&cmd_config_speed_specific_item2, 1529 (void *)&cmd_config_speed_specific_value2, 1530 NULL, 1531 }, 1532 }; 1533 1534 /* *** configure loopback for all ports *** */ 1535 struct cmd_config_loopback_all { 1536 cmdline_fixed_string_t port; 1537 cmdline_fixed_string_t keyword; 1538 cmdline_fixed_string_t all; 1539 cmdline_fixed_string_t item; 1540 uint32_t mode; 1541 }; 1542 1543 static void 1544 cmd_config_loopback_all_parsed(void *parsed_result, 1545 __attribute__((unused)) struct cmdline *cl, 1546 __attribute__((unused)) void *data) 1547 { 1548 struct cmd_config_loopback_all *res = parsed_result; 1549 portid_t pid; 1550 1551 if (!all_ports_stopped()) { 1552 printf("Please stop all ports first\n"); 1553 return; 1554 } 1555 1556 RTE_ETH_FOREACH_DEV(pid) { 1557 ports[pid].dev_conf.lpbk_mode = res->mode; 1558 } 1559 1560 cmd_reconfig_device_queue(RTE_PORT_ALL, 1, 1); 1561 } 1562 1563 cmdline_parse_token_string_t cmd_config_loopback_all_port = 1564 TOKEN_STRING_INITIALIZER(struct cmd_config_loopback_all, port, "port"); 1565 cmdline_parse_token_string_t cmd_config_loopback_all_keyword = 1566 TOKEN_STRING_INITIALIZER(struct cmd_config_loopback_all, keyword, 1567 "config"); 1568 cmdline_parse_token_string_t cmd_config_loopback_all_all = 1569 TOKEN_STRING_INITIALIZER(struct cmd_config_loopback_all, all, "all"); 1570 cmdline_parse_token_string_t cmd_config_loopback_all_item = 1571 TOKEN_STRING_INITIALIZER(struct cmd_config_loopback_all, item, 1572 "loopback"); 1573 cmdline_parse_token_num_t cmd_config_loopback_all_mode = 1574 TOKEN_NUM_INITIALIZER(struct cmd_config_loopback_all, mode, UINT32); 1575 1576 cmdline_parse_inst_t cmd_config_loopback_all = { 1577 .f = cmd_config_loopback_all_parsed, 1578 .data = NULL, 1579 .help_str = "port config all loopback <mode>", 1580 .tokens = { 1581 (void *)&cmd_config_loopback_all_port, 1582 (void *)&cmd_config_loopback_all_keyword, 1583 (void *)&cmd_config_loopback_all_all, 1584 (void *)&cmd_config_loopback_all_item, 1585 (void *)&cmd_config_loopback_all_mode, 1586 NULL, 1587 }, 1588 }; 1589 1590 /* *** configure loopback for specific port *** */ 1591 struct cmd_config_loopback_specific { 1592 cmdline_fixed_string_t port; 1593 cmdline_fixed_string_t keyword; 1594 uint16_t port_id; 1595 cmdline_fixed_string_t item; 1596 uint32_t mode; 1597 }; 1598 1599 static void 1600 cmd_config_loopback_specific_parsed(void *parsed_result, 1601 __attribute__((unused)) struct cmdline *cl, 1602 __attribute__((unused)) void *data) 1603 { 1604 struct cmd_config_loopback_specific *res = parsed_result; 1605 1606 if (port_id_is_invalid(res->port_id, ENABLED_WARN)) 1607 return; 1608 1609 if (!port_is_stopped(res->port_id)) { 1610 printf("Please stop port %u first\n", res->port_id); 1611 return; 1612 } 1613 1614 ports[res->port_id].dev_conf.lpbk_mode = res->mode; 1615 1616 cmd_reconfig_device_queue(res->port_id, 1, 1); 1617 } 1618 1619 1620 cmdline_parse_token_string_t cmd_config_loopback_specific_port = 1621 TOKEN_STRING_INITIALIZER(struct cmd_config_loopback_specific, port, 1622 "port"); 1623 cmdline_parse_token_string_t cmd_config_loopback_specific_keyword = 1624 TOKEN_STRING_INITIALIZER(struct cmd_config_loopback_specific, keyword, 1625 "config"); 1626 cmdline_parse_token_num_t cmd_config_loopback_specific_id = 1627 TOKEN_NUM_INITIALIZER(struct cmd_config_loopback_specific, port_id, 1628 UINT16); 1629 cmdline_parse_token_string_t cmd_config_loopback_specific_item = 1630 TOKEN_STRING_INITIALIZER(struct cmd_config_loopback_specific, item, 1631 "loopback"); 1632 cmdline_parse_token_num_t cmd_config_loopback_specific_mode = 1633 TOKEN_NUM_INITIALIZER(struct cmd_config_loopback_specific, mode, 1634 UINT32); 1635 1636 cmdline_parse_inst_t cmd_config_loopback_specific = { 1637 .f = cmd_config_loopback_specific_parsed, 1638 .data = NULL, 1639 .help_str = "port config <port_id> loopback <mode>", 1640 .tokens = { 1641 (void *)&cmd_config_loopback_specific_port, 1642 (void *)&cmd_config_loopback_specific_keyword, 1643 (void *)&cmd_config_loopback_specific_id, 1644 (void *)&cmd_config_loopback_specific_item, 1645 (void *)&cmd_config_loopback_specific_mode, 1646 NULL, 1647 }, 1648 }; 1649 1650 /* *** configure txq/rxq, txd/rxd *** */ 1651 struct cmd_config_rx_tx { 1652 cmdline_fixed_string_t port; 1653 cmdline_fixed_string_t keyword; 1654 cmdline_fixed_string_t all; 1655 cmdline_fixed_string_t name; 1656 uint16_t value; 1657 }; 1658 1659 static void 1660 cmd_config_rx_tx_parsed(void *parsed_result, 1661 __attribute__((unused)) struct cmdline *cl, 1662 __attribute__((unused)) void *data) 1663 { 1664 struct cmd_config_rx_tx *res = parsed_result; 1665 1666 if (!all_ports_stopped()) { 1667 printf("Please stop all ports first\n"); 1668 return; 1669 } 1670 if (!strcmp(res->name, "rxq")) { 1671 if (!res->value && !nb_txq) { 1672 printf("Warning: Either rx or tx queues should be non zero\n"); 1673 return; 1674 } 1675 if (check_nb_rxq(res->value) != 0) 1676 return; 1677 nb_rxq = res->value; 1678 } 1679 else if (!strcmp(res->name, "txq")) { 1680 if (!res->value && !nb_rxq) { 1681 printf("Warning: Either rx or tx queues should be non zero\n"); 1682 return; 1683 } 1684 if (check_nb_txq(res->value) != 0) 1685 return; 1686 nb_txq = res->value; 1687 } 1688 else if (!strcmp(res->name, "rxd")) { 1689 if (res->value <= 0 || res->value > RTE_TEST_RX_DESC_MAX) { 1690 printf("rxd %d invalid - must be > 0 && <= %d\n", 1691 res->value, RTE_TEST_RX_DESC_MAX); 1692 return; 1693 } 1694 nb_rxd = res->value; 1695 } else if (!strcmp(res->name, "txd")) { 1696 if (res->value <= 0 || res->value > RTE_TEST_TX_DESC_MAX) { 1697 printf("txd %d invalid - must be > 0 && <= %d\n", 1698 res->value, RTE_TEST_TX_DESC_MAX); 1699 return; 1700 } 1701 nb_txd = res->value; 1702 } else { 1703 printf("Unknown parameter\n"); 1704 return; 1705 } 1706 1707 fwd_config_setup(); 1708 1709 init_port_config(); 1710 1711 cmd_reconfig_device_queue(RTE_PORT_ALL, 1, 1); 1712 } 1713 1714 cmdline_parse_token_string_t cmd_config_rx_tx_port = 1715 TOKEN_STRING_INITIALIZER(struct cmd_config_rx_tx, port, "port"); 1716 cmdline_parse_token_string_t cmd_config_rx_tx_keyword = 1717 TOKEN_STRING_INITIALIZER(struct cmd_config_rx_tx, keyword, "config"); 1718 cmdline_parse_token_string_t cmd_config_rx_tx_all = 1719 TOKEN_STRING_INITIALIZER(struct cmd_config_rx_tx, all, "all"); 1720 cmdline_parse_token_string_t cmd_config_rx_tx_name = 1721 TOKEN_STRING_INITIALIZER(struct cmd_config_rx_tx, name, 1722 "rxq#txq#rxd#txd"); 1723 cmdline_parse_token_num_t cmd_config_rx_tx_value = 1724 TOKEN_NUM_INITIALIZER(struct cmd_config_rx_tx, value, UINT16); 1725 1726 cmdline_parse_inst_t cmd_config_rx_tx = { 1727 .f = cmd_config_rx_tx_parsed, 1728 .data = NULL, 1729 .help_str = "port config all rxq|txq|rxd|txd <value>", 1730 .tokens = { 1731 (void *)&cmd_config_rx_tx_port, 1732 (void *)&cmd_config_rx_tx_keyword, 1733 (void *)&cmd_config_rx_tx_all, 1734 (void *)&cmd_config_rx_tx_name, 1735 (void *)&cmd_config_rx_tx_value, 1736 NULL, 1737 }, 1738 }; 1739 1740 /* *** config max packet length *** */ 1741 struct cmd_config_max_pkt_len_result { 1742 cmdline_fixed_string_t port; 1743 cmdline_fixed_string_t keyword; 1744 cmdline_fixed_string_t all; 1745 cmdline_fixed_string_t name; 1746 uint32_t value; 1747 }; 1748 1749 static void 1750 cmd_config_max_pkt_len_parsed(void *parsed_result, 1751 __attribute__((unused)) struct cmdline *cl, 1752 __attribute__((unused)) void *data) 1753 { 1754 struct cmd_config_max_pkt_len_result *res = parsed_result; 1755 portid_t pid; 1756 1757 if (!all_ports_stopped()) { 1758 printf("Please stop all ports first\n"); 1759 return; 1760 } 1761 1762 RTE_ETH_FOREACH_DEV(pid) { 1763 struct rte_port *port = &ports[pid]; 1764 uint64_t rx_offloads = port->dev_conf.rxmode.offloads; 1765 1766 if (!strcmp(res->name, "max-pkt-len")) { 1767 if (res->value < ETHER_MIN_LEN) { 1768 printf("max-pkt-len can not be less than %d\n", 1769 ETHER_MIN_LEN); 1770 return; 1771 } 1772 if (res->value == port->dev_conf.rxmode.max_rx_pkt_len) 1773 return; 1774 1775 port->dev_conf.rxmode.max_rx_pkt_len = res->value; 1776 if (res->value > ETHER_MAX_LEN) 1777 rx_offloads |= DEV_RX_OFFLOAD_JUMBO_FRAME; 1778 else 1779 rx_offloads &= ~DEV_RX_OFFLOAD_JUMBO_FRAME; 1780 port->dev_conf.rxmode.offloads = rx_offloads; 1781 } else { 1782 printf("Unknown parameter\n"); 1783 return; 1784 } 1785 } 1786 1787 init_port_config(); 1788 1789 cmd_reconfig_device_queue(RTE_PORT_ALL, 1, 1); 1790 } 1791 1792 cmdline_parse_token_string_t cmd_config_max_pkt_len_port = 1793 TOKEN_STRING_INITIALIZER(struct cmd_config_max_pkt_len_result, port, 1794 "port"); 1795 cmdline_parse_token_string_t cmd_config_max_pkt_len_keyword = 1796 TOKEN_STRING_INITIALIZER(struct cmd_config_max_pkt_len_result, keyword, 1797 "config"); 1798 cmdline_parse_token_string_t cmd_config_max_pkt_len_all = 1799 TOKEN_STRING_INITIALIZER(struct cmd_config_max_pkt_len_result, all, 1800 "all"); 1801 cmdline_parse_token_string_t cmd_config_max_pkt_len_name = 1802 TOKEN_STRING_INITIALIZER(struct cmd_config_max_pkt_len_result, name, 1803 "max-pkt-len"); 1804 cmdline_parse_token_num_t cmd_config_max_pkt_len_value = 1805 TOKEN_NUM_INITIALIZER(struct cmd_config_max_pkt_len_result, value, 1806 UINT32); 1807 1808 cmdline_parse_inst_t cmd_config_max_pkt_len = { 1809 .f = cmd_config_max_pkt_len_parsed, 1810 .data = NULL, 1811 .help_str = "port config all max-pkt-len <value>", 1812 .tokens = { 1813 (void *)&cmd_config_max_pkt_len_port, 1814 (void *)&cmd_config_max_pkt_len_keyword, 1815 (void *)&cmd_config_max_pkt_len_all, 1816 (void *)&cmd_config_max_pkt_len_name, 1817 (void *)&cmd_config_max_pkt_len_value, 1818 NULL, 1819 }, 1820 }; 1821 1822 /* *** configure port MTU *** */ 1823 struct cmd_config_mtu_result { 1824 cmdline_fixed_string_t port; 1825 cmdline_fixed_string_t keyword; 1826 cmdline_fixed_string_t mtu; 1827 portid_t port_id; 1828 uint16_t value; 1829 }; 1830 1831 static void 1832 cmd_config_mtu_parsed(void *parsed_result, 1833 __attribute__((unused)) struct cmdline *cl, 1834 __attribute__((unused)) void *data) 1835 { 1836 struct cmd_config_mtu_result *res = parsed_result; 1837 1838 if (res->value < ETHER_MIN_LEN) { 1839 printf("mtu cannot be less than %d\n", ETHER_MIN_LEN); 1840 return; 1841 } 1842 port_mtu_set(res->port_id, res->value); 1843 } 1844 1845 cmdline_parse_token_string_t cmd_config_mtu_port = 1846 TOKEN_STRING_INITIALIZER(struct cmd_config_mtu_result, port, 1847 "port"); 1848 cmdline_parse_token_string_t cmd_config_mtu_keyword = 1849 TOKEN_STRING_INITIALIZER(struct cmd_config_mtu_result, keyword, 1850 "config"); 1851 cmdline_parse_token_string_t cmd_config_mtu_mtu = 1852 TOKEN_STRING_INITIALIZER(struct cmd_config_mtu_result, keyword, 1853 "mtu"); 1854 cmdline_parse_token_num_t cmd_config_mtu_port_id = 1855 TOKEN_NUM_INITIALIZER(struct cmd_config_mtu_result, port_id, UINT16); 1856 cmdline_parse_token_num_t cmd_config_mtu_value = 1857 TOKEN_NUM_INITIALIZER(struct cmd_config_mtu_result, value, UINT16); 1858 1859 cmdline_parse_inst_t cmd_config_mtu = { 1860 .f = cmd_config_mtu_parsed, 1861 .data = NULL, 1862 .help_str = "port config mtu <port_id> <value>", 1863 .tokens = { 1864 (void *)&cmd_config_mtu_port, 1865 (void *)&cmd_config_mtu_keyword, 1866 (void *)&cmd_config_mtu_mtu, 1867 (void *)&cmd_config_mtu_port_id, 1868 (void *)&cmd_config_mtu_value, 1869 NULL, 1870 }, 1871 }; 1872 1873 /* *** configure rx mode *** */ 1874 struct cmd_config_rx_mode_flag { 1875 cmdline_fixed_string_t port; 1876 cmdline_fixed_string_t keyword; 1877 cmdline_fixed_string_t all; 1878 cmdline_fixed_string_t name; 1879 cmdline_fixed_string_t value; 1880 }; 1881 1882 static void 1883 cmd_config_rx_mode_flag_parsed(void *parsed_result, 1884 __attribute__((unused)) struct cmdline *cl, 1885 __attribute__((unused)) void *data) 1886 { 1887 struct cmd_config_rx_mode_flag *res = parsed_result; 1888 portid_t pid; 1889 1890 if (!all_ports_stopped()) { 1891 printf("Please stop all ports first\n"); 1892 return; 1893 } 1894 1895 RTE_ETH_FOREACH_DEV(pid) { 1896 struct rte_port *port; 1897 uint64_t rx_offloads; 1898 1899 port = &ports[pid]; 1900 rx_offloads = port->dev_conf.rxmode.offloads; 1901 if (!strcmp(res->name, "crc-strip")) { 1902 if (!strcmp(res->value, "on")) { 1903 rx_offloads &= ~DEV_RX_OFFLOAD_KEEP_CRC; 1904 } else if (!strcmp(res->value, "off")) { 1905 rx_offloads |= DEV_RX_OFFLOAD_KEEP_CRC; 1906 } else { 1907 printf("Unknown parameter\n"); 1908 return; 1909 } 1910 } else if (!strcmp(res->name, "scatter")) { 1911 if (!strcmp(res->value, "on")) { 1912 rx_offloads |= DEV_RX_OFFLOAD_SCATTER; 1913 } else if (!strcmp(res->value, "off")) { 1914 rx_offloads &= ~DEV_RX_OFFLOAD_SCATTER; 1915 } else { 1916 printf("Unknown parameter\n"); 1917 return; 1918 } 1919 } else if (!strcmp(res->name, "rx-cksum")) { 1920 if (!strcmp(res->value, "on")) 1921 rx_offloads |= DEV_RX_OFFLOAD_CHECKSUM; 1922 else if (!strcmp(res->value, "off")) 1923 rx_offloads &= ~DEV_RX_OFFLOAD_CHECKSUM; 1924 else { 1925 printf("Unknown parameter\n"); 1926 return; 1927 } 1928 } else if (!strcmp(res->name, "rx-timestamp")) { 1929 if (!strcmp(res->value, "on")) 1930 rx_offloads |= DEV_RX_OFFLOAD_TIMESTAMP; 1931 else if (!strcmp(res->value, "off")) 1932 rx_offloads &= ~DEV_RX_OFFLOAD_TIMESTAMP; 1933 else { 1934 printf("Unknown parameter\n"); 1935 return; 1936 } 1937 } else if (!strcmp(res->name, "hw-vlan")) { 1938 if (!strcmp(res->value, "on")) { 1939 rx_offloads |= (DEV_RX_OFFLOAD_VLAN_FILTER | 1940 DEV_RX_OFFLOAD_VLAN_STRIP); 1941 } else if (!strcmp(res->value, "off")) { 1942 rx_offloads &= ~(DEV_RX_OFFLOAD_VLAN_FILTER | 1943 DEV_RX_OFFLOAD_VLAN_STRIP); 1944 } else { 1945 printf("Unknown parameter\n"); 1946 return; 1947 } 1948 } else if (!strcmp(res->name, "hw-vlan-filter")) { 1949 if (!strcmp(res->value, "on")) 1950 rx_offloads |= DEV_RX_OFFLOAD_VLAN_FILTER; 1951 else if (!strcmp(res->value, "off")) 1952 rx_offloads &= ~DEV_RX_OFFLOAD_VLAN_FILTER; 1953 else { 1954 printf("Unknown parameter\n"); 1955 return; 1956 } 1957 } else if (!strcmp(res->name, "hw-vlan-strip")) { 1958 if (!strcmp(res->value, "on")) 1959 rx_offloads |= DEV_RX_OFFLOAD_VLAN_STRIP; 1960 else if (!strcmp(res->value, "off")) 1961 rx_offloads &= ~DEV_RX_OFFLOAD_VLAN_STRIP; 1962 else { 1963 printf("Unknown parameter\n"); 1964 return; 1965 } 1966 } else if (!strcmp(res->name, "hw-vlan-extend")) { 1967 if (!strcmp(res->value, "on")) 1968 rx_offloads |= DEV_RX_OFFLOAD_VLAN_EXTEND; 1969 else if (!strcmp(res->value, "off")) 1970 rx_offloads &= ~DEV_RX_OFFLOAD_VLAN_EXTEND; 1971 else { 1972 printf("Unknown parameter\n"); 1973 return; 1974 } 1975 } else if (!strcmp(res->name, "drop-en")) { 1976 if (!strcmp(res->value, "on")) 1977 rx_drop_en = 1; 1978 else if (!strcmp(res->value, "off")) 1979 rx_drop_en = 0; 1980 else { 1981 printf("Unknown parameter\n"); 1982 return; 1983 } 1984 } else { 1985 printf("Unknown parameter\n"); 1986 return; 1987 } 1988 port->dev_conf.rxmode.offloads = rx_offloads; 1989 } 1990 1991 init_port_config(); 1992 1993 cmd_reconfig_device_queue(RTE_PORT_ALL, 1, 1); 1994 } 1995 1996 cmdline_parse_token_string_t cmd_config_rx_mode_flag_port = 1997 TOKEN_STRING_INITIALIZER(struct cmd_config_rx_mode_flag, port, "port"); 1998 cmdline_parse_token_string_t cmd_config_rx_mode_flag_keyword = 1999 TOKEN_STRING_INITIALIZER(struct cmd_config_rx_mode_flag, keyword, 2000 "config"); 2001 cmdline_parse_token_string_t cmd_config_rx_mode_flag_all = 2002 TOKEN_STRING_INITIALIZER(struct cmd_config_rx_mode_flag, all, "all"); 2003 cmdline_parse_token_string_t cmd_config_rx_mode_flag_name = 2004 TOKEN_STRING_INITIALIZER(struct cmd_config_rx_mode_flag, name, 2005 "crc-strip#scatter#rx-cksum#rx-timestamp#hw-vlan#" 2006 "hw-vlan-filter#hw-vlan-strip#hw-vlan-extend"); 2007 cmdline_parse_token_string_t cmd_config_rx_mode_flag_value = 2008 TOKEN_STRING_INITIALIZER(struct cmd_config_rx_mode_flag, value, 2009 "on#off"); 2010 2011 cmdline_parse_inst_t cmd_config_rx_mode_flag = { 2012 .f = cmd_config_rx_mode_flag_parsed, 2013 .data = NULL, 2014 .help_str = "port config all crc-strip|scatter|rx-cksum|rx-timestamp|hw-vlan|" 2015 "hw-vlan-filter|hw-vlan-strip|hw-vlan-extend on|off", 2016 .tokens = { 2017 (void *)&cmd_config_rx_mode_flag_port, 2018 (void *)&cmd_config_rx_mode_flag_keyword, 2019 (void *)&cmd_config_rx_mode_flag_all, 2020 (void *)&cmd_config_rx_mode_flag_name, 2021 (void *)&cmd_config_rx_mode_flag_value, 2022 NULL, 2023 }, 2024 }; 2025 2026 /* *** configure rss *** */ 2027 struct cmd_config_rss { 2028 cmdline_fixed_string_t port; 2029 cmdline_fixed_string_t keyword; 2030 cmdline_fixed_string_t all; 2031 cmdline_fixed_string_t name; 2032 cmdline_fixed_string_t value; 2033 }; 2034 2035 static void 2036 cmd_config_rss_parsed(void *parsed_result, 2037 __attribute__((unused)) struct cmdline *cl, 2038 __attribute__((unused)) void *data) 2039 { 2040 struct cmd_config_rss *res = parsed_result; 2041 struct rte_eth_rss_conf rss_conf = { .rss_key_len = 0, }; 2042 struct rte_eth_dev_info dev_info = { .flow_type_rss_offloads = 0, }; 2043 int use_default = 0; 2044 int all_updated = 1; 2045 int diag; 2046 uint16_t i; 2047 2048 if (!strcmp(res->value, "all")) 2049 rss_conf.rss_hf = ETH_RSS_IP | ETH_RSS_TCP | 2050 ETH_RSS_UDP | ETH_RSS_SCTP | 2051 ETH_RSS_L2_PAYLOAD; 2052 else if (!strcmp(res->value, "ip")) 2053 rss_conf.rss_hf = ETH_RSS_IP; 2054 else if (!strcmp(res->value, "udp")) 2055 rss_conf.rss_hf = ETH_RSS_UDP; 2056 else if (!strcmp(res->value, "tcp")) 2057 rss_conf.rss_hf = ETH_RSS_TCP; 2058 else if (!strcmp(res->value, "sctp")) 2059 rss_conf.rss_hf = ETH_RSS_SCTP; 2060 else if (!strcmp(res->value, "ether")) 2061 rss_conf.rss_hf = ETH_RSS_L2_PAYLOAD; 2062 else if (!strcmp(res->value, "port")) 2063 rss_conf.rss_hf = ETH_RSS_PORT; 2064 else if (!strcmp(res->value, "vxlan")) 2065 rss_conf.rss_hf = ETH_RSS_VXLAN; 2066 else if (!strcmp(res->value, "geneve")) 2067 rss_conf.rss_hf = ETH_RSS_GENEVE; 2068 else if (!strcmp(res->value, "nvgre")) 2069 rss_conf.rss_hf = ETH_RSS_NVGRE; 2070 else if (!strcmp(res->value, "none")) 2071 rss_conf.rss_hf = 0; 2072 else if (!strcmp(res->value, "default")) 2073 use_default = 1; 2074 else if (isdigit(res->value[0]) && atoi(res->value) > 0 && 2075 atoi(res->value) < 64) 2076 rss_conf.rss_hf = 1ULL << atoi(res->value); 2077 else { 2078 printf("Unknown parameter\n"); 2079 return; 2080 } 2081 rss_conf.rss_key = NULL; 2082 /* Update global configuration for RSS types. */ 2083 RTE_ETH_FOREACH_DEV(i) { 2084 struct rte_eth_rss_conf local_rss_conf; 2085 2086 rte_eth_dev_info_get(i, &dev_info); 2087 if (use_default) 2088 rss_conf.rss_hf = dev_info.flow_type_rss_offloads; 2089 2090 local_rss_conf = rss_conf; 2091 local_rss_conf.rss_hf = rss_conf.rss_hf & 2092 dev_info.flow_type_rss_offloads; 2093 if (local_rss_conf.rss_hf != rss_conf.rss_hf) { 2094 printf("Port %u modified RSS hash function based on hardware support," 2095 "requested:%#"PRIx64" configured:%#"PRIx64"\n", 2096 i, rss_conf.rss_hf, local_rss_conf.rss_hf); 2097 } 2098 diag = rte_eth_dev_rss_hash_update(i, &local_rss_conf); 2099 if (diag < 0) { 2100 all_updated = 0; 2101 printf("Configuration of RSS hash at ethernet port %d " 2102 "failed with error (%d): %s.\n", 2103 i, -diag, strerror(-diag)); 2104 } 2105 } 2106 if (all_updated && !use_default) 2107 rss_hf = rss_conf.rss_hf; 2108 } 2109 2110 cmdline_parse_token_string_t cmd_config_rss_port = 2111 TOKEN_STRING_INITIALIZER(struct cmd_config_rss, port, "port"); 2112 cmdline_parse_token_string_t cmd_config_rss_keyword = 2113 TOKEN_STRING_INITIALIZER(struct cmd_config_rss, keyword, "config"); 2114 cmdline_parse_token_string_t cmd_config_rss_all = 2115 TOKEN_STRING_INITIALIZER(struct cmd_config_rss, all, "all"); 2116 cmdline_parse_token_string_t cmd_config_rss_name = 2117 TOKEN_STRING_INITIALIZER(struct cmd_config_rss, name, "rss"); 2118 cmdline_parse_token_string_t cmd_config_rss_value = 2119 TOKEN_STRING_INITIALIZER(struct cmd_config_rss, value, NULL); 2120 2121 cmdline_parse_inst_t cmd_config_rss = { 2122 .f = cmd_config_rss_parsed, 2123 .data = NULL, 2124 .help_str = "port config all rss " 2125 "all|default|ip|tcp|udp|sctp|ether|port|vxlan|geneve|nvgre|none|<flowtype_id>", 2126 .tokens = { 2127 (void *)&cmd_config_rss_port, 2128 (void *)&cmd_config_rss_keyword, 2129 (void *)&cmd_config_rss_all, 2130 (void *)&cmd_config_rss_name, 2131 (void *)&cmd_config_rss_value, 2132 NULL, 2133 }, 2134 }; 2135 2136 /* *** configure rss hash key *** */ 2137 struct cmd_config_rss_hash_key { 2138 cmdline_fixed_string_t port; 2139 cmdline_fixed_string_t config; 2140 portid_t port_id; 2141 cmdline_fixed_string_t rss_hash_key; 2142 cmdline_fixed_string_t rss_type; 2143 cmdline_fixed_string_t key; 2144 }; 2145 2146 static uint8_t 2147 hexa_digit_to_value(char hexa_digit) 2148 { 2149 if ((hexa_digit >= '0') && (hexa_digit <= '9')) 2150 return (uint8_t) (hexa_digit - '0'); 2151 if ((hexa_digit >= 'a') && (hexa_digit <= 'f')) 2152 return (uint8_t) ((hexa_digit - 'a') + 10); 2153 if ((hexa_digit >= 'A') && (hexa_digit <= 'F')) 2154 return (uint8_t) ((hexa_digit - 'A') + 10); 2155 /* Invalid hexa digit */ 2156 return 0xFF; 2157 } 2158 2159 static uint8_t 2160 parse_and_check_key_hexa_digit(char *key, int idx) 2161 { 2162 uint8_t hexa_v; 2163 2164 hexa_v = hexa_digit_to_value(key[idx]); 2165 if (hexa_v == 0xFF) 2166 printf("invalid key: character %c at position %d is not a " 2167 "valid hexa digit\n", key[idx], idx); 2168 return hexa_v; 2169 } 2170 2171 static void 2172 cmd_config_rss_hash_key_parsed(void *parsed_result, 2173 __attribute__((unused)) struct cmdline *cl, 2174 __attribute__((unused)) void *data) 2175 { 2176 struct cmd_config_rss_hash_key *res = parsed_result; 2177 uint8_t hash_key[RSS_HASH_KEY_LENGTH]; 2178 uint8_t xdgt0; 2179 uint8_t xdgt1; 2180 int i; 2181 struct rte_eth_dev_info dev_info; 2182 uint8_t hash_key_size; 2183 uint32_t key_len; 2184 2185 memset(&dev_info, 0, sizeof(dev_info)); 2186 rte_eth_dev_info_get(res->port_id, &dev_info); 2187 if (dev_info.hash_key_size > 0 && 2188 dev_info.hash_key_size <= sizeof(hash_key)) 2189 hash_key_size = dev_info.hash_key_size; 2190 else { 2191 printf("dev_info did not provide a valid hash key size\n"); 2192 return; 2193 } 2194 /* Check the length of the RSS hash key */ 2195 key_len = strlen(res->key); 2196 if (key_len != (hash_key_size * 2)) { 2197 printf("key length: %d invalid - key must be a string of %d" 2198 " hexa-decimal numbers\n", 2199 (int) key_len, hash_key_size * 2); 2200 return; 2201 } 2202 /* Translate RSS hash key into binary representation */ 2203 for (i = 0; i < hash_key_size; i++) { 2204 xdgt0 = parse_and_check_key_hexa_digit(res->key, (i * 2)); 2205 if (xdgt0 == 0xFF) 2206 return; 2207 xdgt1 = parse_and_check_key_hexa_digit(res->key, (i * 2) + 1); 2208 if (xdgt1 == 0xFF) 2209 return; 2210 hash_key[i] = (uint8_t) ((xdgt0 * 16) + xdgt1); 2211 } 2212 port_rss_hash_key_update(res->port_id, res->rss_type, hash_key, 2213 hash_key_size); 2214 } 2215 2216 cmdline_parse_token_string_t cmd_config_rss_hash_key_port = 2217 TOKEN_STRING_INITIALIZER(struct cmd_config_rss_hash_key, port, "port"); 2218 cmdline_parse_token_string_t cmd_config_rss_hash_key_config = 2219 TOKEN_STRING_INITIALIZER(struct cmd_config_rss_hash_key, config, 2220 "config"); 2221 cmdline_parse_token_num_t cmd_config_rss_hash_key_port_id = 2222 TOKEN_NUM_INITIALIZER(struct cmd_config_rss_hash_key, port_id, UINT16); 2223 cmdline_parse_token_string_t cmd_config_rss_hash_key_rss_hash_key = 2224 TOKEN_STRING_INITIALIZER(struct cmd_config_rss_hash_key, 2225 rss_hash_key, "rss-hash-key"); 2226 cmdline_parse_token_string_t cmd_config_rss_hash_key_rss_type = 2227 TOKEN_STRING_INITIALIZER(struct cmd_config_rss_hash_key, rss_type, 2228 "ipv4#ipv4-frag#ipv4-tcp#ipv4-udp#ipv4-sctp#" 2229 "ipv4-other#ipv6#ipv6-frag#ipv6-tcp#ipv6-udp#" 2230 "ipv6-sctp#ipv6-other#l2-payload#ipv6-ex#" 2231 "ipv6-tcp-ex#ipv6-udp-ex"); 2232 cmdline_parse_token_string_t cmd_config_rss_hash_key_value = 2233 TOKEN_STRING_INITIALIZER(struct cmd_config_rss_hash_key, key, NULL); 2234 2235 cmdline_parse_inst_t cmd_config_rss_hash_key = { 2236 .f = cmd_config_rss_hash_key_parsed, 2237 .data = NULL, 2238 .help_str = "port config <port_id> rss-hash-key " 2239 "ipv4|ipv4-frag|ipv4-tcp|ipv4-udp|ipv4-sctp|ipv4-other|" 2240 "ipv6|ipv6-frag|ipv6-tcp|ipv6-udp|ipv6-sctp|ipv6-other|" 2241 "l2-payload|ipv6-ex|ipv6-tcp-ex|ipv6-udp-ex " 2242 "<string of hex digits (variable length, NIC dependent)>", 2243 .tokens = { 2244 (void *)&cmd_config_rss_hash_key_port, 2245 (void *)&cmd_config_rss_hash_key_config, 2246 (void *)&cmd_config_rss_hash_key_port_id, 2247 (void *)&cmd_config_rss_hash_key_rss_hash_key, 2248 (void *)&cmd_config_rss_hash_key_rss_type, 2249 (void *)&cmd_config_rss_hash_key_value, 2250 NULL, 2251 }, 2252 }; 2253 2254 /* *** configure port rxq/txq ring size *** */ 2255 struct cmd_config_rxtx_ring_size { 2256 cmdline_fixed_string_t port; 2257 cmdline_fixed_string_t config; 2258 portid_t portid; 2259 cmdline_fixed_string_t rxtxq; 2260 uint16_t qid; 2261 cmdline_fixed_string_t rsize; 2262 uint16_t size; 2263 }; 2264 2265 static void 2266 cmd_config_rxtx_ring_size_parsed(void *parsed_result, 2267 __attribute__((unused)) struct cmdline *cl, 2268 __attribute__((unused)) void *data) 2269 { 2270 struct cmd_config_rxtx_ring_size *res = parsed_result; 2271 struct rte_port *port; 2272 uint8_t isrx; 2273 2274 if (port_id_is_invalid(res->portid, ENABLED_WARN)) 2275 return; 2276 2277 if (res->portid == (portid_t)RTE_PORT_ALL) { 2278 printf("Invalid port id\n"); 2279 return; 2280 } 2281 2282 port = &ports[res->portid]; 2283 2284 if (!strcmp(res->rxtxq, "rxq")) 2285 isrx = 1; 2286 else if (!strcmp(res->rxtxq, "txq")) 2287 isrx = 0; 2288 else { 2289 printf("Unknown parameter\n"); 2290 return; 2291 } 2292 2293 if (isrx && rx_queue_id_is_invalid(res->qid)) 2294 return; 2295 else if (!isrx && tx_queue_id_is_invalid(res->qid)) 2296 return; 2297 2298 if (isrx && res->size != 0 && res->size <= rx_free_thresh) { 2299 printf("Invalid rx ring_size, must > rx_free_thresh: %d\n", 2300 rx_free_thresh); 2301 return; 2302 } 2303 2304 if (isrx) 2305 port->nb_rx_desc[res->qid] = res->size; 2306 else 2307 port->nb_tx_desc[res->qid] = res->size; 2308 2309 cmd_reconfig_device_queue(res->portid, 0, 1); 2310 } 2311 2312 cmdline_parse_token_string_t cmd_config_rxtx_ring_size_port = 2313 TOKEN_STRING_INITIALIZER(struct cmd_config_rxtx_ring_size, 2314 port, "port"); 2315 cmdline_parse_token_string_t cmd_config_rxtx_ring_size_config = 2316 TOKEN_STRING_INITIALIZER(struct cmd_config_rxtx_ring_size, 2317 config, "config"); 2318 cmdline_parse_token_num_t cmd_config_rxtx_ring_size_portid = 2319 TOKEN_NUM_INITIALIZER(struct cmd_config_rxtx_ring_size, 2320 portid, UINT16); 2321 cmdline_parse_token_string_t cmd_config_rxtx_ring_size_rxtxq = 2322 TOKEN_STRING_INITIALIZER(struct cmd_config_rxtx_ring_size, 2323 rxtxq, "rxq#txq"); 2324 cmdline_parse_token_num_t cmd_config_rxtx_ring_size_qid = 2325 TOKEN_NUM_INITIALIZER(struct cmd_config_rxtx_ring_size, 2326 qid, UINT16); 2327 cmdline_parse_token_string_t cmd_config_rxtx_ring_size_rsize = 2328 TOKEN_STRING_INITIALIZER(struct cmd_config_rxtx_ring_size, 2329 rsize, "ring_size"); 2330 cmdline_parse_token_num_t cmd_config_rxtx_ring_size_size = 2331 TOKEN_NUM_INITIALIZER(struct cmd_config_rxtx_ring_size, 2332 size, UINT16); 2333 2334 cmdline_parse_inst_t cmd_config_rxtx_ring_size = { 2335 .f = cmd_config_rxtx_ring_size_parsed, 2336 .data = NULL, 2337 .help_str = "port config <port_id> rxq|txq <queue_id> ring_size <value>", 2338 .tokens = { 2339 (void *)&cmd_config_rxtx_ring_size_port, 2340 (void *)&cmd_config_rxtx_ring_size_config, 2341 (void *)&cmd_config_rxtx_ring_size_portid, 2342 (void *)&cmd_config_rxtx_ring_size_rxtxq, 2343 (void *)&cmd_config_rxtx_ring_size_qid, 2344 (void *)&cmd_config_rxtx_ring_size_rsize, 2345 (void *)&cmd_config_rxtx_ring_size_size, 2346 NULL, 2347 }, 2348 }; 2349 2350 /* *** configure port rxq/txq start/stop *** */ 2351 struct cmd_config_rxtx_queue { 2352 cmdline_fixed_string_t port; 2353 portid_t portid; 2354 cmdline_fixed_string_t rxtxq; 2355 uint16_t qid; 2356 cmdline_fixed_string_t opname; 2357 }; 2358 2359 static void 2360 cmd_config_rxtx_queue_parsed(void *parsed_result, 2361 __attribute__((unused)) struct cmdline *cl, 2362 __attribute__((unused)) void *data) 2363 { 2364 struct cmd_config_rxtx_queue *res = parsed_result; 2365 uint8_t isrx; 2366 uint8_t isstart; 2367 int ret = 0; 2368 2369 if (test_done == 0) { 2370 printf("Please stop forwarding first\n"); 2371 return; 2372 } 2373 2374 if (port_id_is_invalid(res->portid, ENABLED_WARN)) 2375 return; 2376 2377 if (port_is_started(res->portid) != 1) { 2378 printf("Please start port %u first\n", res->portid); 2379 return; 2380 } 2381 2382 if (!strcmp(res->rxtxq, "rxq")) 2383 isrx = 1; 2384 else if (!strcmp(res->rxtxq, "txq")) 2385 isrx = 0; 2386 else { 2387 printf("Unknown parameter\n"); 2388 return; 2389 } 2390 2391 if (isrx && rx_queue_id_is_invalid(res->qid)) 2392 return; 2393 else if (!isrx && tx_queue_id_is_invalid(res->qid)) 2394 return; 2395 2396 if (!strcmp(res->opname, "start")) 2397 isstart = 1; 2398 else if (!strcmp(res->opname, "stop")) 2399 isstart = 0; 2400 else { 2401 printf("Unknown parameter\n"); 2402 return; 2403 } 2404 2405 if (isstart && isrx) 2406 ret = rte_eth_dev_rx_queue_start(res->portid, res->qid); 2407 else if (!isstart && isrx) 2408 ret = rte_eth_dev_rx_queue_stop(res->portid, res->qid); 2409 else if (isstart && !isrx) 2410 ret = rte_eth_dev_tx_queue_start(res->portid, res->qid); 2411 else 2412 ret = rte_eth_dev_tx_queue_stop(res->portid, res->qid); 2413 2414 if (ret == -ENOTSUP) 2415 printf("Function not supported in PMD driver\n"); 2416 } 2417 2418 cmdline_parse_token_string_t cmd_config_rxtx_queue_port = 2419 TOKEN_STRING_INITIALIZER(struct cmd_config_rxtx_queue, port, "port"); 2420 cmdline_parse_token_num_t cmd_config_rxtx_queue_portid = 2421 TOKEN_NUM_INITIALIZER(struct cmd_config_rxtx_queue, portid, UINT16); 2422 cmdline_parse_token_string_t cmd_config_rxtx_queue_rxtxq = 2423 TOKEN_STRING_INITIALIZER(struct cmd_config_rxtx_queue, rxtxq, "rxq#txq"); 2424 cmdline_parse_token_num_t cmd_config_rxtx_queue_qid = 2425 TOKEN_NUM_INITIALIZER(struct cmd_config_rxtx_queue, qid, UINT16); 2426 cmdline_parse_token_string_t cmd_config_rxtx_queue_opname = 2427 TOKEN_STRING_INITIALIZER(struct cmd_config_rxtx_queue, opname, 2428 "start#stop"); 2429 2430 cmdline_parse_inst_t cmd_config_rxtx_queue = { 2431 .f = cmd_config_rxtx_queue_parsed, 2432 .data = NULL, 2433 .help_str = "port <port_id> rxq|txq <queue_id> start|stop", 2434 .tokens = { 2435 (void *)&cmd_config_rxtx_queue_port, 2436 (void *)&cmd_config_rxtx_queue_portid, 2437 (void *)&cmd_config_rxtx_queue_rxtxq, 2438 (void *)&cmd_config_rxtx_queue_qid, 2439 (void *)&cmd_config_rxtx_queue_opname, 2440 NULL, 2441 }, 2442 }; 2443 2444 /* *** configure port rxq/txq deferred start on/off *** */ 2445 struct cmd_config_deferred_start_rxtx_queue { 2446 cmdline_fixed_string_t port; 2447 portid_t port_id; 2448 cmdline_fixed_string_t rxtxq; 2449 uint16_t qid; 2450 cmdline_fixed_string_t opname; 2451 cmdline_fixed_string_t state; 2452 }; 2453 2454 static void 2455 cmd_config_deferred_start_rxtx_queue_parsed(void *parsed_result, 2456 __attribute__((unused)) struct cmdline *cl, 2457 __attribute__((unused)) void *data) 2458 { 2459 struct cmd_config_deferred_start_rxtx_queue *res = parsed_result; 2460 struct rte_port *port; 2461 uint8_t isrx; 2462 uint8_t ison; 2463 uint8_t needreconfig = 0; 2464 2465 if (port_id_is_invalid(res->port_id, ENABLED_WARN)) 2466 return; 2467 2468 if (port_is_started(res->port_id) != 0) { 2469 printf("Please stop port %u first\n", res->port_id); 2470 return; 2471 } 2472 2473 port = &ports[res->port_id]; 2474 2475 isrx = !strcmp(res->rxtxq, "rxq"); 2476 2477 if (isrx && rx_queue_id_is_invalid(res->qid)) 2478 return; 2479 else if (!isrx && tx_queue_id_is_invalid(res->qid)) 2480 return; 2481 2482 ison = !strcmp(res->state, "on"); 2483 2484 if (isrx && port->rx_conf[res->qid].rx_deferred_start != ison) { 2485 port->rx_conf[res->qid].rx_deferred_start = ison; 2486 needreconfig = 1; 2487 } else if (!isrx && port->tx_conf[res->qid].tx_deferred_start != ison) { 2488 port->tx_conf[res->qid].tx_deferred_start = ison; 2489 needreconfig = 1; 2490 } 2491 2492 if (needreconfig) 2493 cmd_reconfig_device_queue(res->port_id, 0, 1); 2494 } 2495 2496 cmdline_parse_token_string_t cmd_config_deferred_start_rxtx_queue_port = 2497 TOKEN_STRING_INITIALIZER(struct cmd_config_deferred_start_rxtx_queue, 2498 port, "port"); 2499 cmdline_parse_token_num_t cmd_config_deferred_start_rxtx_queue_port_id = 2500 TOKEN_NUM_INITIALIZER(struct cmd_config_deferred_start_rxtx_queue, 2501 port_id, UINT16); 2502 cmdline_parse_token_string_t cmd_config_deferred_start_rxtx_queue_rxtxq = 2503 TOKEN_STRING_INITIALIZER(struct cmd_config_deferred_start_rxtx_queue, 2504 rxtxq, "rxq#txq"); 2505 cmdline_parse_token_num_t cmd_config_deferred_start_rxtx_queue_qid = 2506 TOKEN_NUM_INITIALIZER(struct cmd_config_deferred_start_rxtx_queue, 2507 qid, UINT16); 2508 cmdline_parse_token_string_t cmd_config_deferred_start_rxtx_queue_opname = 2509 TOKEN_STRING_INITIALIZER(struct cmd_config_deferred_start_rxtx_queue, 2510 opname, "deferred_start"); 2511 cmdline_parse_token_string_t cmd_config_deferred_start_rxtx_queue_state = 2512 TOKEN_STRING_INITIALIZER(struct cmd_config_deferred_start_rxtx_queue, 2513 state, "on#off"); 2514 2515 cmdline_parse_inst_t cmd_config_deferred_start_rxtx_queue = { 2516 .f = cmd_config_deferred_start_rxtx_queue_parsed, 2517 .data = NULL, 2518 .help_str = "port <port_id> rxq|txq <queue_id> deferred_start on|off", 2519 .tokens = { 2520 (void *)&cmd_config_deferred_start_rxtx_queue_port, 2521 (void *)&cmd_config_deferred_start_rxtx_queue_port_id, 2522 (void *)&cmd_config_deferred_start_rxtx_queue_rxtxq, 2523 (void *)&cmd_config_deferred_start_rxtx_queue_qid, 2524 (void *)&cmd_config_deferred_start_rxtx_queue_opname, 2525 (void *)&cmd_config_deferred_start_rxtx_queue_state, 2526 NULL, 2527 }, 2528 }; 2529 2530 /* *** configure port rxq/txq setup *** */ 2531 struct cmd_setup_rxtx_queue { 2532 cmdline_fixed_string_t port; 2533 portid_t portid; 2534 cmdline_fixed_string_t rxtxq; 2535 uint16_t qid; 2536 cmdline_fixed_string_t setup; 2537 }; 2538 2539 /* Common CLI fields for queue setup */ 2540 cmdline_parse_token_string_t cmd_setup_rxtx_queue_port = 2541 TOKEN_STRING_INITIALIZER(struct cmd_setup_rxtx_queue, port, "port"); 2542 cmdline_parse_token_num_t cmd_setup_rxtx_queue_portid = 2543 TOKEN_NUM_INITIALIZER(struct cmd_setup_rxtx_queue, portid, UINT16); 2544 cmdline_parse_token_string_t cmd_setup_rxtx_queue_rxtxq = 2545 TOKEN_STRING_INITIALIZER(struct cmd_setup_rxtx_queue, rxtxq, "rxq#txq"); 2546 cmdline_parse_token_num_t cmd_setup_rxtx_queue_qid = 2547 TOKEN_NUM_INITIALIZER(struct cmd_setup_rxtx_queue, qid, UINT16); 2548 cmdline_parse_token_string_t cmd_setup_rxtx_queue_setup = 2549 TOKEN_STRING_INITIALIZER(struct cmd_setup_rxtx_queue, setup, "setup"); 2550 2551 static void 2552 cmd_setup_rxtx_queue_parsed( 2553 void *parsed_result, 2554 __attribute__((unused)) struct cmdline *cl, 2555 __attribute__((unused)) void *data) 2556 { 2557 struct cmd_setup_rxtx_queue *res = parsed_result; 2558 struct rte_port *port; 2559 struct rte_mempool *mp; 2560 unsigned int socket_id; 2561 uint8_t isrx = 0; 2562 int ret; 2563 2564 if (port_id_is_invalid(res->portid, ENABLED_WARN)) 2565 return; 2566 2567 if (res->portid == (portid_t)RTE_PORT_ALL) { 2568 printf("Invalid port id\n"); 2569 return; 2570 } 2571 2572 if (!strcmp(res->rxtxq, "rxq")) 2573 isrx = 1; 2574 else if (!strcmp(res->rxtxq, "txq")) 2575 isrx = 0; 2576 else { 2577 printf("Unknown parameter\n"); 2578 return; 2579 } 2580 2581 if (isrx && rx_queue_id_is_invalid(res->qid)) { 2582 printf("Invalid rx queue\n"); 2583 return; 2584 } else if (!isrx && tx_queue_id_is_invalid(res->qid)) { 2585 printf("Invalid tx queue\n"); 2586 return; 2587 } 2588 2589 port = &ports[res->portid]; 2590 if (isrx) { 2591 socket_id = rxring_numa[res->portid]; 2592 if (!numa_support || socket_id == NUMA_NO_CONFIG) 2593 socket_id = port->socket_id; 2594 2595 mp = mbuf_pool_find(socket_id); 2596 if (mp == NULL) { 2597 printf("Failed to setup RX queue: " 2598 "No mempool allocation" 2599 " on the socket %d\n", 2600 rxring_numa[res->portid]); 2601 return; 2602 } 2603 ret = rte_eth_rx_queue_setup(res->portid, 2604 res->qid, 2605 port->nb_rx_desc[res->qid], 2606 socket_id, 2607 &port->rx_conf[res->qid], 2608 mp); 2609 if (ret) 2610 printf("Failed to setup RX queue\n"); 2611 } else { 2612 socket_id = txring_numa[res->portid]; 2613 if (!numa_support || socket_id == NUMA_NO_CONFIG) 2614 socket_id = port->socket_id; 2615 2616 ret = rte_eth_tx_queue_setup(res->portid, 2617 res->qid, 2618 port->nb_tx_desc[res->qid], 2619 socket_id, 2620 &port->tx_conf[res->qid]); 2621 if (ret) 2622 printf("Failed to setup TX queue\n"); 2623 } 2624 } 2625 2626 cmdline_parse_inst_t cmd_setup_rxtx_queue = { 2627 .f = cmd_setup_rxtx_queue_parsed, 2628 .data = NULL, 2629 .help_str = "port <port_id> rxq|txq <queue_idx> setup", 2630 .tokens = { 2631 (void *)&cmd_setup_rxtx_queue_port, 2632 (void *)&cmd_setup_rxtx_queue_portid, 2633 (void *)&cmd_setup_rxtx_queue_rxtxq, 2634 (void *)&cmd_setup_rxtx_queue_qid, 2635 (void *)&cmd_setup_rxtx_queue_setup, 2636 NULL, 2637 }, 2638 }; 2639 2640 2641 /* *** Configure RSS RETA *** */ 2642 struct cmd_config_rss_reta { 2643 cmdline_fixed_string_t port; 2644 cmdline_fixed_string_t keyword; 2645 portid_t port_id; 2646 cmdline_fixed_string_t name; 2647 cmdline_fixed_string_t list_name; 2648 cmdline_fixed_string_t list_of_items; 2649 }; 2650 2651 static int 2652 parse_reta_config(const char *str, 2653 struct rte_eth_rss_reta_entry64 *reta_conf, 2654 uint16_t nb_entries) 2655 { 2656 int i; 2657 unsigned size; 2658 uint16_t hash_index, idx, shift; 2659 uint16_t nb_queue; 2660 char s[256]; 2661 const char *p, *p0 = str; 2662 char *end; 2663 enum fieldnames { 2664 FLD_HASH_INDEX = 0, 2665 FLD_QUEUE, 2666 _NUM_FLD 2667 }; 2668 unsigned long int_fld[_NUM_FLD]; 2669 char *str_fld[_NUM_FLD]; 2670 2671 while ((p = strchr(p0,'(')) != NULL) { 2672 ++p; 2673 if((p0 = strchr(p,')')) == NULL) 2674 return -1; 2675 2676 size = p0 - p; 2677 if(size >= sizeof(s)) 2678 return -1; 2679 2680 snprintf(s, sizeof(s), "%.*s", size, p); 2681 if (rte_strsplit(s, sizeof(s), str_fld, _NUM_FLD, ',') != _NUM_FLD) 2682 return -1; 2683 for (i = 0; i < _NUM_FLD; i++) { 2684 errno = 0; 2685 int_fld[i] = strtoul(str_fld[i], &end, 0); 2686 if (errno != 0 || end == str_fld[i] || 2687 int_fld[i] > 65535) 2688 return -1; 2689 } 2690 2691 hash_index = (uint16_t)int_fld[FLD_HASH_INDEX]; 2692 nb_queue = (uint16_t)int_fld[FLD_QUEUE]; 2693 2694 if (hash_index >= nb_entries) { 2695 printf("Invalid RETA hash index=%d\n", hash_index); 2696 return -1; 2697 } 2698 2699 idx = hash_index / RTE_RETA_GROUP_SIZE; 2700 shift = hash_index % RTE_RETA_GROUP_SIZE; 2701 reta_conf[idx].mask |= (1ULL << shift); 2702 reta_conf[idx].reta[shift] = nb_queue; 2703 } 2704 2705 return 0; 2706 } 2707 2708 static void 2709 cmd_set_rss_reta_parsed(void *parsed_result, 2710 __attribute__((unused)) struct cmdline *cl, 2711 __attribute__((unused)) void *data) 2712 { 2713 int ret; 2714 struct rte_eth_dev_info dev_info; 2715 struct rte_eth_rss_reta_entry64 reta_conf[8]; 2716 struct cmd_config_rss_reta *res = parsed_result; 2717 2718 memset(&dev_info, 0, sizeof(dev_info)); 2719 rte_eth_dev_info_get(res->port_id, &dev_info); 2720 if (dev_info.reta_size == 0) { 2721 printf("Redirection table size is 0 which is " 2722 "invalid for RSS\n"); 2723 return; 2724 } else 2725 printf("The reta size of port %d is %u\n", 2726 res->port_id, dev_info.reta_size); 2727 if (dev_info.reta_size > ETH_RSS_RETA_SIZE_512) { 2728 printf("Currently do not support more than %u entries of " 2729 "redirection table\n", ETH_RSS_RETA_SIZE_512); 2730 return; 2731 } 2732 2733 memset(reta_conf, 0, sizeof(reta_conf)); 2734 if (!strcmp(res->list_name, "reta")) { 2735 if (parse_reta_config(res->list_of_items, reta_conf, 2736 dev_info.reta_size)) { 2737 printf("Invalid RSS Redirection Table " 2738 "config entered\n"); 2739 return; 2740 } 2741 ret = rte_eth_dev_rss_reta_update(res->port_id, 2742 reta_conf, dev_info.reta_size); 2743 if (ret != 0) 2744 printf("Bad redirection table parameter, " 2745 "return code = %d \n", ret); 2746 } 2747 } 2748 2749 cmdline_parse_token_string_t cmd_config_rss_reta_port = 2750 TOKEN_STRING_INITIALIZER(struct cmd_config_rss_reta, port, "port"); 2751 cmdline_parse_token_string_t cmd_config_rss_reta_keyword = 2752 TOKEN_STRING_INITIALIZER(struct cmd_config_rss_reta, keyword, "config"); 2753 cmdline_parse_token_num_t cmd_config_rss_reta_port_id = 2754 TOKEN_NUM_INITIALIZER(struct cmd_config_rss_reta, port_id, UINT16); 2755 cmdline_parse_token_string_t cmd_config_rss_reta_name = 2756 TOKEN_STRING_INITIALIZER(struct cmd_config_rss_reta, name, "rss"); 2757 cmdline_parse_token_string_t cmd_config_rss_reta_list_name = 2758 TOKEN_STRING_INITIALIZER(struct cmd_config_rss_reta, list_name, "reta"); 2759 cmdline_parse_token_string_t cmd_config_rss_reta_list_of_items = 2760 TOKEN_STRING_INITIALIZER(struct cmd_config_rss_reta, list_of_items, 2761 NULL); 2762 cmdline_parse_inst_t cmd_config_rss_reta = { 2763 .f = cmd_set_rss_reta_parsed, 2764 .data = NULL, 2765 .help_str = "port config <port_id> rss reta <hash,queue[,hash,queue]*>", 2766 .tokens = { 2767 (void *)&cmd_config_rss_reta_port, 2768 (void *)&cmd_config_rss_reta_keyword, 2769 (void *)&cmd_config_rss_reta_port_id, 2770 (void *)&cmd_config_rss_reta_name, 2771 (void *)&cmd_config_rss_reta_list_name, 2772 (void *)&cmd_config_rss_reta_list_of_items, 2773 NULL, 2774 }, 2775 }; 2776 2777 /* *** SHOW PORT RETA INFO *** */ 2778 struct cmd_showport_reta { 2779 cmdline_fixed_string_t show; 2780 cmdline_fixed_string_t port; 2781 portid_t port_id; 2782 cmdline_fixed_string_t rss; 2783 cmdline_fixed_string_t reta; 2784 uint16_t size; 2785 cmdline_fixed_string_t list_of_items; 2786 }; 2787 2788 static int 2789 showport_parse_reta_config(struct rte_eth_rss_reta_entry64 *conf, 2790 uint16_t nb_entries, 2791 char *str) 2792 { 2793 uint32_t size; 2794 const char *p, *p0 = str; 2795 char s[256]; 2796 char *end; 2797 char *str_fld[8]; 2798 uint16_t i; 2799 uint16_t num = (nb_entries + RTE_RETA_GROUP_SIZE - 1) / 2800 RTE_RETA_GROUP_SIZE; 2801 int ret; 2802 2803 p = strchr(p0, '('); 2804 if (p == NULL) 2805 return -1; 2806 p++; 2807 p0 = strchr(p, ')'); 2808 if (p0 == NULL) 2809 return -1; 2810 size = p0 - p; 2811 if (size >= sizeof(s)) { 2812 printf("The string size exceeds the internal buffer size\n"); 2813 return -1; 2814 } 2815 snprintf(s, sizeof(s), "%.*s", size, p); 2816 ret = rte_strsplit(s, sizeof(s), str_fld, num, ','); 2817 if (ret <= 0 || ret != num) { 2818 printf("The bits of masks do not match the number of " 2819 "reta entries: %u\n", num); 2820 return -1; 2821 } 2822 for (i = 0; i < ret; i++) 2823 conf[i].mask = (uint64_t)strtoul(str_fld[i], &end, 0); 2824 2825 return 0; 2826 } 2827 2828 static void 2829 cmd_showport_reta_parsed(void *parsed_result, 2830 __attribute__((unused)) struct cmdline *cl, 2831 __attribute__((unused)) void *data) 2832 { 2833 struct cmd_showport_reta *res = parsed_result; 2834 struct rte_eth_rss_reta_entry64 reta_conf[8]; 2835 struct rte_eth_dev_info dev_info; 2836 uint16_t max_reta_size; 2837 2838 memset(&dev_info, 0, sizeof(dev_info)); 2839 rte_eth_dev_info_get(res->port_id, &dev_info); 2840 max_reta_size = RTE_MIN(dev_info.reta_size, ETH_RSS_RETA_SIZE_512); 2841 if (res->size == 0 || res->size > max_reta_size) { 2842 printf("Invalid redirection table size: %u (1-%u)\n", 2843 res->size, max_reta_size); 2844 return; 2845 } 2846 2847 memset(reta_conf, 0, sizeof(reta_conf)); 2848 if (showport_parse_reta_config(reta_conf, res->size, 2849 res->list_of_items) < 0) { 2850 printf("Invalid string: %s for reta masks\n", 2851 res->list_of_items); 2852 return; 2853 } 2854 port_rss_reta_info(res->port_id, reta_conf, res->size); 2855 } 2856 2857 cmdline_parse_token_string_t cmd_showport_reta_show = 2858 TOKEN_STRING_INITIALIZER(struct cmd_showport_reta, show, "show"); 2859 cmdline_parse_token_string_t cmd_showport_reta_port = 2860 TOKEN_STRING_INITIALIZER(struct cmd_showport_reta, port, "port"); 2861 cmdline_parse_token_num_t cmd_showport_reta_port_id = 2862 TOKEN_NUM_INITIALIZER(struct cmd_showport_reta, port_id, UINT16); 2863 cmdline_parse_token_string_t cmd_showport_reta_rss = 2864 TOKEN_STRING_INITIALIZER(struct cmd_showport_reta, rss, "rss"); 2865 cmdline_parse_token_string_t cmd_showport_reta_reta = 2866 TOKEN_STRING_INITIALIZER(struct cmd_showport_reta, reta, "reta"); 2867 cmdline_parse_token_num_t cmd_showport_reta_size = 2868 TOKEN_NUM_INITIALIZER(struct cmd_showport_reta, size, UINT16); 2869 cmdline_parse_token_string_t cmd_showport_reta_list_of_items = 2870 TOKEN_STRING_INITIALIZER(struct cmd_showport_reta, 2871 list_of_items, NULL); 2872 2873 cmdline_parse_inst_t cmd_showport_reta = { 2874 .f = cmd_showport_reta_parsed, 2875 .data = NULL, 2876 .help_str = "show port <port_id> rss reta <size> <mask0[,mask1]*>", 2877 .tokens = { 2878 (void *)&cmd_showport_reta_show, 2879 (void *)&cmd_showport_reta_port, 2880 (void *)&cmd_showport_reta_port_id, 2881 (void *)&cmd_showport_reta_rss, 2882 (void *)&cmd_showport_reta_reta, 2883 (void *)&cmd_showport_reta_size, 2884 (void *)&cmd_showport_reta_list_of_items, 2885 NULL, 2886 }, 2887 }; 2888 2889 /* *** Show RSS hash configuration *** */ 2890 struct cmd_showport_rss_hash { 2891 cmdline_fixed_string_t show; 2892 cmdline_fixed_string_t port; 2893 portid_t port_id; 2894 cmdline_fixed_string_t rss_hash; 2895 cmdline_fixed_string_t rss_type; 2896 cmdline_fixed_string_t key; /* optional argument */ 2897 }; 2898 2899 static void cmd_showport_rss_hash_parsed(void *parsed_result, 2900 __attribute__((unused)) struct cmdline *cl, 2901 void *show_rss_key) 2902 { 2903 struct cmd_showport_rss_hash *res = parsed_result; 2904 2905 port_rss_hash_conf_show(res->port_id, show_rss_key != NULL); 2906 } 2907 2908 cmdline_parse_token_string_t cmd_showport_rss_hash_show = 2909 TOKEN_STRING_INITIALIZER(struct cmd_showport_rss_hash, show, "show"); 2910 cmdline_parse_token_string_t cmd_showport_rss_hash_port = 2911 TOKEN_STRING_INITIALIZER(struct cmd_showport_rss_hash, port, "port"); 2912 cmdline_parse_token_num_t cmd_showport_rss_hash_port_id = 2913 TOKEN_NUM_INITIALIZER(struct cmd_showport_rss_hash, port_id, UINT16); 2914 cmdline_parse_token_string_t cmd_showport_rss_hash_rss_hash = 2915 TOKEN_STRING_INITIALIZER(struct cmd_showport_rss_hash, rss_hash, 2916 "rss-hash"); 2917 cmdline_parse_token_string_t cmd_showport_rss_hash_rss_key = 2918 TOKEN_STRING_INITIALIZER(struct cmd_showport_rss_hash, key, "key"); 2919 2920 cmdline_parse_inst_t cmd_showport_rss_hash = { 2921 .f = cmd_showport_rss_hash_parsed, 2922 .data = NULL, 2923 .help_str = "show port <port_id> rss-hash", 2924 .tokens = { 2925 (void *)&cmd_showport_rss_hash_show, 2926 (void *)&cmd_showport_rss_hash_port, 2927 (void *)&cmd_showport_rss_hash_port_id, 2928 (void *)&cmd_showport_rss_hash_rss_hash, 2929 NULL, 2930 }, 2931 }; 2932 2933 cmdline_parse_inst_t cmd_showport_rss_hash_key = { 2934 .f = cmd_showport_rss_hash_parsed, 2935 .data = (void *)1, 2936 .help_str = "show port <port_id> rss-hash key", 2937 .tokens = { 2938 (void *)&cmd_showport_rss_hash_show, 2939 (void *)&cmd_showport_rss_hash_port, 2940 (void *)&cmd_showport_rss_hash_port_id, 2941 (void *)&cmd_showport_rss_hash_rss_hash, 2942 (void *)&cmd_showport_rss_hash_rss_key, 2943 NULL, 2944 }, 2945 }; 2946 2947 /* *** Configure DCB *** */ 2948 struct cmd_config_dcb { 2949 cmdline_fixed_string_t port; 2950 cmdline_fixed_string_t config; 2951 portid_t port_id; 2952 cmdline_fixed_string_t dcb; 2953 cmdline_fixed_string_t vt; 2954 cmdline_fixed_string_t vt_en; 2955 uint8_t num_tcs; 2956 cmdline_fixed_string_t pfc; 2957 cmdline_fixed_string_t pfc_en; 2958 }; 2959 2960 static void 2961 cmd_config_dcb_parsed(void *parsed_result, 2962 __attribute__((unused)) struct cmdline *cl, 2963 __attribute__((unused)) void *data) 2964 { 2965 struct cmd_config_dcb *res = parsed_result; 2966 portid_t port_id = res->port_id; 2967 struct rte_port *port; 2968 uint8_t pfc_en; 2969 int ret; 2970 2971 port = &ports[port_id]; 2972 /** Check if the port is not started **/ 2973 if (port->port_status != RTE_PORT_STOPPED) { 2974 printf("Please stop port %d first\n", port_id); 2975 return; 2976 } 2977 2978 if ((res->num_tcs != ETH_4_TCS) && (res->num_tcs != ETH_8_TCS)) { 2979 printf("The invalid number of traffic class," 2980 " only 4 or 8 allowed.\n"); 2981 return; 2982 } 2983 2984 if (nb_fwd_lcores < res->num_tcs) { 2985 printf("nb_cores shouldn't be less than number of TCs.\n"); 2986 return; 2987 } 2988 if (!strncmp(res->pfc_en, "on", 2)) 2989 pfc_en = 1; 2990 else 2991 pfc_en = 0; 2992 2993 /* DCB in VT mode */ 2994 if (!strncmp(res->vt_en, "on", 2)) 2995 ret = init_port_dcb_config(port_id, DCB_VT_ENABLED, 2996 (enum rte_eth_nb_tcs)res->num_tcs, 2997 pfc_en); 2998 else 2999 ret = init_port_dcb_config(port_id, DCB_ENABLED, 3000 (enum rte_eth_nb_tcs)res->num_tcs, 3001 pfc_en); 3002 3003 3004 if (ret != 0) { 3005 printf("Cannot initialize network ports.\n"); 3006 return; 3007 } 3008 3009 cmd_reconfig_device_queue(port_id, 1, 1); 3010 } 3011 3012 cmdline_parse_token_string_t cmd_config_dcb_port = 3013 TOKEN_STRING_INITIALIZER(struct cmd_config_dcb, port, "port"); 3014 cmdline_parse_token_string_t cmd_config_dcb_config = 3015 TOKEN_STRING_INITIALIZER(struct cmd_config_dcb, config, "config"); 3016 cmdline_parse_token_num_t cmd_config_dcb_port_id = 3017 TOKEN_NUM_INITIALIZER(struct cmd_config_dcb, port_id, UINT16); 3018 cmdline_parse_token_string_t cmd_config_dcb_dcb = 3019 TOKEN_STRING_INITIALIZER(struct cmd_config_dcb, dcb, "dcb"); 3020 cmdline_parse_token_string_t cmd_config_dcb_vt = 3021 TOKEN_STRING_INITIALIZER(struct cmd_config_dcb, vt, "vt"); 3022 cmdline_parse_token_string_t cmd_config_dcb_vt_en = 3023 TOKEN_STRING_INITIALIZER(struct cmd_config_dcb, vt_en, "on#off"); 3024 cmdline_parse_token_num_t cmd_config_dcb_num_tcs = 3025 TOKEN_NUM_INITIALIZER(struct cmd_config_dcb, num_tcs, UINT8); 3026 cmdline_parse_token_string_t cmd_config_dcb_pfc= 3027 TOKEN_STRING_INITIALIZER(struct cmd_config_dcb, pfc, "pfc"); 3028 cmdline_parse_token_string_t cmd_config_dcb_pfc_en = 3029 TOKEN_STRING_INITIALIZER(struct cmd_config_dcb, pfc_en, "on#off"); 3030 3031 cmdline_parse_inst_t cmd_config_dcb = { 3032 .f = cmd_config_dcb_parsed, 3033 .data = NULL, 3034 .help_str = "port config <port-id> dcb vt on|off <num_tcs> pfc on|off", 3035 .tokens = { 3036 (void *)&cmd_config_dcb_port, 3037 (void *)&cmd_config_dcb_config, 3038 (void *)&cmd_config_dcb_port_id, 3039 (void *)&cmd_config_dcb_dcb, 3040 (void *)&cmd_config_dcb_vt, 3041 (void *)&cmd_config_dcb_vt_en, 3042 (void *)&cmd_config_dcb_num_tcs, 3043 (void *)&cmd_config_dcb_pfc, 3044 (void *)&cmd_config_dcb_pfc_en, 3045 NULL, 3046 }, 3047 }; 3048 3049 /* *** configure number of packets per burst *** */ 3050 struct cmd_config_burst { 3051 cmdline_fixed_string_t port; 3052 cmdline_fixed_string_t keyword; 3053 cmdline_fixed_string_t all; 3054 cmdline_fixed_string_t name; 3055 uint16_t value; 3056 }; 3057 3058 static void 3059 cmd_config_burst_parsed(void *parsed_result, 3060 __attribute__((unused)) struct cmdline *cl, 3061 __attribute__((unused)) void *data) 3062 { 3063 struct cmd_config_burst *res = parsed_result; 3064 struct rte_eth_dev_info dev_info; 3065 uint16_t rec_nb_pkts; 3066 3067 if (!all_ports_stopped()) { 3068 printf("Please stop all ports first\n"); 3069 return; 3070 } 3071 3072 if (!strcmp(res->name, "burst")) { 3073 if (res->value == 0) { 3074 /* If user gives a value of zero, query the PMD for 3075 * its recommended Rx burst size. Testpmd uses a single 3076 * size for all ports, so assume all ports are the same 3077 * NIC model and use the values from Port 0. 3078 */ 3079 rte_eth_dev_info_get(0, &dev_info); 3080 rec_nb_pkts = dev_info.default_rxportconf.burst_size; 3081 3082 if (rec_nb_pkts == 0) { 3083 printf("PMD does not recommend a burst size.\n" 3084 "User provided value must be between" 3085 " 1 and %d\n", MAX_PKT_BURST); 3086 return; 3087 } else if (rec_nb_pkts > MAX_PKT_BURST) { 3088 printf("PMD recommended burst size of %d" 3089 " exceeds maximum value of %d\n", 3090 rec_nb_pkts, MAX_PKT_BURST); 3091 return; 3092 } 3093 printf("Using PMD-provided burst value of %d\n", 3094 rec_nb_pkts); 3095 nb_pkt_per_burst = rec_nb_pkts; 3096 } else if (res->value > MAX_PKT_BURST) { 3097 printf("burst must be >= 1 && <= %d\n", MAX_PKT_BURST); 3098 return; 3099 } else 3100 nb_pkt_per_burst = res->value; 3101 } else { 3102 printf("Unknown parameter\n"); 3103 return; 3104 } 3105 3106 init_port_config(); 3107 3108 cmd_reconfig_device_queue(RTE_PORT_ALL, 1, 1); 3109 } 3110 3111 cmdline_parse_token_string_t cmd_config_burst_port = 3112 TOKEN_STRING_INITIALIZER(struct cmd_config_burst, port, "port"); 3113 cmdline_parse_token_string_t cmd_config_burst_keyword = 3114 TOKEN_STRING_INITIALIZER(struct cmd_config_burst, keyword, "config"); 3115 cmdline_parse_token_string_t cmd_config_burst_all = 3116 TOKEN_STRING_INITIALIZER(struct cmd_config_burst, all, "all"); 3117 cmdline_parse_token_string_t cmd_config_burst_name = 3118 TOKEN_STRING_INITIALIZER(struct cmd_config_burst, name, "burst"); 3119 cmdline_parse_token_num_t cmd_config_burst_value = 3120 TOKEN_NUM_INITIALIZER(struct cmd_config_burst, value, UINT16); 3121 3122 cmdline_parse_inst_t cmd_config_burst = { 3123 .f = cmd_config_burst_parsed, 3124 .data = NULL, 3125 .help_str = "port config all burst <value>", 3126 .tokens = { 3127 (void *)&cmd_config_burst_port, 3128 (void *)&cmd_config_burst_keyword, 3129 (void *)&cmd_config_burst_all, 3130 (void *)&cmd_config_burst_name, 3131 (void *)&cmd_config_burst_value, 3132 NULL, 3133 }, 3134 }; 3135 3136 /* *** configure rx/tx queues *** */ 3137 struct cmd_config_thresh { 3138 cmdline_fixed_string_t port; 3139 cmdline_fixed_string_t keyword; 3140 cmdline_fixed_string_t all; 3141 cmdline_fixed_string_t name; 3142 uint8_t value; 3143 }; 3144 3145 static void 3146 cmd_config_thresh_parsed(void *parsed_result, 3147 __attribute__((unused)) struct cmdline *cl, 3148 __attribute__((unused)) void *data) 3149 { 3150 struct cmd_config_thresh *res = parsed_result; 3151 3152 if (!all_ports_stopped()) { 3153 printf("Please stop all ports first\n"); 3154 return; 3155 } 3156 3157 if (!strcmp(res->name, "txpt")) 3158 tx_pthresh = res->value; 3159 else if(!strcmp(res->name, "txht")) 3160 tx_hthresh = res->value; 3161 else if(!strcmp(res->name, "txwt")) 3162 tx_wthresh = res->value; 3163 else if(!strcmp(res->name, "rxpt")) 3164 rx_pthresh = res->value; 3165 else if(!strcmp(res->name, "rxht")) 3166 rx_hthresh = res->value; 3167 else if(!strcmp(res->name, "rxwt")) 3168 rx_wthresh = res->value; 3169 else { 3170 printf("Unknown parameter\n"); 3171 return; 3172 } 3173 3174 init_port_config(); 3175 3176 cmd_reconfig_device_queue(RTE_PORT_ALL, 1, 1); 3177 } 3178 3179 cmdline_parse_token_string_t cmd_config_thresh_port = 3180 TOKEN_STRING_INITIALIZER(struct cmd_config_thresh, port, "port"); 3181 cmdline_parse_token_string_t cmd_config_thresh_keyword = 3182 TOKEN_STRING_INITIALIZER(struct cmd_config_thresh, keyword, "config"); 3183 cmdline_parse_token_string_t cmd_config_thresh_all = 3184 TOKEN_STRING_INITIALIZER(struct cmd_config_thresh, all, "all"); 3185 cmdline_parse_token_string_t cmd_config_thresh_name = 3186 TOKEN_STRING_INITIALIZER(struct cmd_config_thresh, name, 3187 "txpt#txht#txwt#rxpt#rxht#rxwt"); 3188 cmdline_parse_token_num_t cmd_config_thresh_value = 3189 TOKEN_NUM_INITIALIZER(struct cmd_config_thresh, value, UINT8); 3190 3191 cmdline_parse_inst_t cmd_config_thresh = { 3192 .f = cmd_config_thresh_parsed, 3193 .data = NULL, 3194 .help_str = "port config all txpt|txht|txwt|rxpt|rxht|rxwt <value>", 3195 .tokens = { 3196 (void *)&cmd_config_thresh_port, 3197 (void *)&cmd_config_thresh_keyword, 3198 (void *)&cmd_config_thresh_all, 3199 (void *)&cmd_config_thresh_name, 3200 (void *)&cmd_config_thresh_value, 3201 NULL, 3202 }, 3203 }; 3204 3205 /* *** configure free/rs threshold *** */ 3206 struct cmd_config_threshold { 3207 cmdline_fixed_string_t port; 3208 cmdline_fixed_string_t keyword; 3209 cmdline_fixed_string_t all; 3210 cmdline_fixed_string_t name; 3211 uint16_t value; 3212 }; 3213 3214 static void 3215 cmd_config_threshold_parsed(void *parsed_result, 3216 __attribute__((unused)) struct cmdline *cl, 3217 __attribute__((unused)) void *data) 3218 { 3219 struct cmd_config_threshold *res = parsed_result; 3220 3221 if (!all_ports_stopped()) { 3222 printf("Please stop all ports first\n"); 3223 return; 3224 } 3225 3226 if (!strcmp(res->name, "txfreet")) 3227 tx_free_thresh = res->value; 3228 else if (!strcmp(res->name, "txrst")) 3229 tx_rs_thresh = res->value; 3230 else if (!strcmp(res->name, "rxfreet")) 3231 rx_free_thresh = res->value; 3232 else { 3233 printf("Unknown parameter\n"); 3234 return; 3235 } 3236 3237 init_port_config(); 3238 3239 cmd_reconfig_device_queue(RTE_PORT_ALL, 1, 1); 3240 } 3241 3242 cmdline_parse_token_string_t cmd_config_threshold_port = 3243 TOKEN_STRING_INITIALIZER(struct cmd_config_threshold, port, "port"); 3244 cmdline_parse_token_string_t cmd_config_threshold_keyword = 3245 TOKEN_STRING_INITIALIZER(struct cmd_config_threshold, keyword, 3246 "config"); 3247 cmdline_parse_token_string_t cmd_config_threshold_all = 3248 TOKEN_STRING_INITIALIZER(struct cmd_config_threshold, all, "all"); 3249 cmdline_parse_token_string_t cmd_config_threshold_name = 3250 TOKEN_STRING_INITIALIZER(struct cmd_config_threshold, name, 3251 "txfreet#txrst#rxfreet"); 3252 cmdline_parse_token_num_t cmd_config_threshold_value = 3253 TOKEN_NUM_INITIALIZER(struct cmd_config_threshold, value, UINT16); 3254 3255 cmdline_parse_inst_t cmd_config_threshold = { 3256 .f = cmd_config_threshold_parsed, 3257 .data = NULL, 3258 .help_str = "port config all txfreet|txrst|rxfreet <value>", 3259 .tokens = { 3260 (void *)&cmd_config_threshold_port, 3261 (void *)&cmd_config_threshold_keyword, 3262 (void *)&cmd_config_threshold_all, 3263 (void *)&cmd_config_threshold_name, 3264 (void *)&cmd_config_threshold_value, 3265 NULL, 3266 }, 3267 }; 3268 3269 /* *** stop *** */ 3270 struct cmd_stop_result { 3271 cmdline_fixed_string_t stop; 3272 }; 3273 3274 static void cmd_stop_parsed(__attribute__((unused)) void *parsed_result, 3275 __attribute__((unused)) struct cmdline *cl, 3276 __attribute__((unused)) void *data) 3277 { 3278 stop_packet_forwarding(); 3279 } 3280 3281 cmdline_parse_token_string_t cmd_stop_stop = 3282 TOKEN_STRING_INITIALIZER(struct cmd_stop_result, stop, "stop"); 3283 3284 cmdline_parse_inst_t cmd_stop = { 3285 .f = cmd_stop_parsed, 3286 .data = NULL, 3287 .help_str = "stop: Stop packet forwarding", 3288 .tokens = { 3289 (void *)&cmd_stop_stop, 3290 NULL, 3291 }, 3292 }; 3293 3294 /* *** SET CORELIST and PORTLIST CONFIGURATION *** */ 3295 3296 unsigned int 3297 parse_item_list(char* str, const char* item_name, unsigned int max_items, 3298 unsigned int *parsed_items, int check_unique_values) 3299 { 3300 unsigned int nb_item; 3301 unsigned int value; 3302 unsigned int i; 3303 unsigned int j; 3304 int value_ok; 3305 char c; 3306 3307 /* 3308 * First parse all items in the list and store their value. 3309 */ 3310 value = 0; 3311 nb_item = 0; 3312 value_ok = 0; 3313 for (i = 0; i < strnlen(str, STR_TOKEN_SIZE); i++) { 3314 c = str[i]; 3315 if ((c >= '0') && (c <= '9')) { 3316 value = (unsigned int) (value * 10 + (c - '0')); 3317 value_ok = 1; 3318 continue; 3319 } 3320 if (c != ',') { 3321 printf("character %c is not a decimal digit\n", c); 3322 return 0; 3323 } 3324 if (! value_ok) { 3325 printf("No valid value before comma\n"); 3326 return 0; 3327 } 3328 if (nb_item < max_items) { 3329 parsed_items[nb_item] = value; 3330 value_ok = 0; 3331 value = 0; 3332 } 3333 nb_item++; 3334 } 3335 if (nb_item >= max_items) { 3336 printf("Number of %s = %u > %u (maximum items)\n", 3337 item_name, nb_item + 1, max_items); 3338 return 0; 3339 } 3340 parsed_items[nb_item++] = value; 3341 if (! check_unique_values) 3342 return nb_item; 3343 3344 /* 3345 * Then, check that all values in the list are differents. 3346 * No optimization here... 3347 */ 3348 for (i = 0; i < nb_item; i++) { 3349 for (j = i + 1; j < nb_item; j++) { 3350 if (parsed_items[j] == parsed_items[i]) { 3351 printf("duplicated %s %u at index %u and %u\n", 3352 item_name, parsed_items[i], i, j); 3353 return 0; 3354 } 3355 } 3356 } 3357 return nb_item; 3358 } 3359 3360 struct cmd_set_list_result { 3361 cmdline_fixed_string_t cmd_keyword; 3362 cmdline_fixed_string_t list_name; 3363 cmdline_fixed_string_t list_of_items; 3364 }; 3365 3366 static void cmd_set_list_parsed(void *parsed_result, 3367 __attribute__((unused)) struct cmdline *cl, 3368 __attribute__((unused)) void *data) 3369 { 3370 struct cmd_set_list_result *res; 3371 union { 3372 unsigned int lcorelist[RTE_MAX_LCORE]; 3373 unsigned int portlist[RTE_MAX_ETHPORTS]; 3374 } parsed_items; 3375 unsigned int nb_item; 3376 3377 if (test_done == 0) { 3378 printf("Please stop forwarding first\n"); 3379 return; 3380 } 3381 3382 res = parsed_result; 3383 if (!strcmp(res->list_name, "corelist")) { 3384 nb_item = parse_item_list(res->list_of_items, "core", 3385 RTE_MAX_LCORE, 3386 parsed_items.lcorelist, 1); 3387 if (nb_item > 0) { 3388 set_fwd_lcores_list(parsed_items.lcorelist, nb_item); 3389 fwd_config_setup(); 3390 } 3391 return; 3392 } 3393 if (!strcmp(res->list_name, "portlist")) { 3394 nb_item = parse_item_list(res->list_of_items, "port", 3395 RTE_MAX_ETHPORTS, 3396 parsed_items.portlist, 1); 3397 if (nb_item > 0) { 3398 set_fwd_ports_list(parsed_items.portlist, nb_item); 3399 fwd_config_setup(); 3400 } 3401 } 3402 } 3403 3404 cmdline_parse_token_string_t cmd_set_list_keyword = 3405 TOKEN_STRING_INITIALIZER(struct cmd_set_list_result, cmd_keyword, 3406 "set"); 3407 cmdline_parse_token_string_t cmd_set_list_name = 3408 TOKEN_STRING_INITIALIZER(struct cmd_set_list_result, list_name, 3409 "corelist#portlist"); 3410 cmdline_parse_token_string_t cmd_set_list_of_items = 3411 TOKEN_STRING_INITIALIZER(struct cmd_set_list_result, list_of_items, 3412 NULL); 3413 3414 cmdline_parse_inst_t cmd_set_fwd_list = { 3415 .f = cmd_set_list_parsed, 3416 .data = NULL, 3417 .help_str = "set corelist|portlist <list0[,list1]*>", 3418 .tokens = { 3419 (void *)&cmd_set_list_keyword, 3420 (void *)&cmd_set_list_name, 3421 (void *)&cmd_set_list_of_items, 3422 NULL, 3423 }, 3424 }; 3425 3426 /* *** SET COREMASK and PORTMASK CONFIGURATION *** */ 3427 3428 struct cmd_setmask_result { 3429 cmdline_fixed_string_t set; 3430 cmdline_fixed_string_t mask; 3431 uint64_t hexavalue; 3432 }; 3433 3434 static void cmd_set_mask_parsed(void *parsed_result, 3435 __attribute__((unused)) struct cmdline *cl, 3436 __attribute__((unused)) void *data) 3437 { 3438 struct cmd_setmask_result *res = parsed_result; 3439 3440 if (test_done == 0) { 3441 printf("Please stop forwarding first\n"); 3442 return; 3443 } 3444 if (!strcmp(res->mask, "coremask")) { 3445 set_fwd_lcores_mask(res->hexavalue); 3446 fwd_config_setup(); 3447 } else if (!strcmp(res->mask, "portmask")) { 3448 set_fwd_ports_mask(res->hexavalue); 3449 fwd_config_setup(); 3450 } 3451 } 3452 3453 cmdline_parse_token_string_t cmd_setmask_set = 3454 TOKEN_STRING_INITIALIZER(struct cmd_setmask_result, set, "set"); 3455 cmdline_parse_token_string_t cmd_setmask_mask = 3456 TOKEN_STRING_INITIALIZER(struct cmd_setmask_result, mask, 3457 "coremask#portmask"); 3458 cmdline_parse_token_num_t cmd_setmask_value = 3459 TOKEN_NUM_INITIALIZER(struct cmd_setmask_result, hexavalue, UINT64); 3460 3461 cmdline_parse_inst_t cmd_set_fwd_mask = { 3462 .f = cmd_set_mask_parsed, 3463 .data = NULL, 3464 .help_str = "set coremask|portmask <hexadecimal value>", 3465 .tokens = { 3466 (void *)&cmd_setmask_set, 3467 (void *)&cmd_setmask_mask, 3468 (void *)&cmd_setmask_value, 3469 NULL, 3470 }, 3471 }; 3472 3473 /* 3474 * SET NBPORT, NBCORE, PACKET BURST, and VERBOSE LEVEL CONFIGURATION 3475 */ 3476 struct cmd_set_result { 3477 cmdline_fixed_string_t set; 3478 cmdline_fixed_string_t what; 3479 uint16_t value; 3480 }; 3481 3482 static void cmd_set_parsed(void *parsed_result, 3483 __attribute__((unused)) struct cmdline *cl, 3484 __attribute__((unused)) void *data) 3485 { 3486 struct cmd_set_result *res = parsed_result; 3487 if (!strcmp(res->what, "nbport")) { 3488 set_fwd_ports_number(res->value); 3489 fwd_config_setup(); 3490 } else if (!strcmp(res->what, "nbcore")) { 3491 set_fwd_lcores_number(res->value); 3492 fwd_config_setup(); 3493 } else if (!strcmp(res->what, "burst")) 3494 set_nb_pkt_per_burst(res->value); 3495 else if (!strcmp(res->what, "verbose")) 3496 set_verbose_level(res->value); 3497 } 3498 3499 cmdline_parse_token_string_t cmd_set_set = 3500 TOKEN_STRING_INITIALIZER(struct cmd_set_result, set, "set"); 3501 cmdline_parse_token_string_t cmd_set_what = 3502 TOKEN_STRING_INITIALIZER(struct cmd_set_result, what, 3503 "nbport#nbcore#burst#verbose"); 3504 cmdline_parse_token_num_t cmd_set_value = 3505 TOKEN_NUM_INITIALIZER(struct cmd_set_result, value, UINT16); 3506 3507 cmdline_parse_inst_t cmd_set_numbers = { 3508 .f = cmd_set_parsed, 3509 .data = NULL, 3510 .help_str = "set nbport|nbcore|burst|verbose <value>", 3511 .tokens = { 3512 (void *)&cmd_set_set, 3513 (void *)&cmd_set_what, 3514 (void *)&cmd_set_value, 3515 NULL, 3516 }, 3517 }; 3518 3519 /* *** SET LOG LEVEL CONFIGURATION *** */ 3520 3521 struct cmd_set_log_result { 3522 cmdline_fixed_string_t set; 3523 cmdline_fixed_string_t log; 3524 cmdline_fixed_string_t type; 3525 uint32_t level; 3526 }; 3527 3528 static void 3529 cmd_set_log_parsed(void *parsed_result, 3530 __attribute__((unused)) struct cmdline *cl, 3531 __attribute__((unused)) void *data) 3532 { 3533 struct cmd_set_log_result *res; 3534 int ret; 3535 3536 res = parsed_result; 3537 if (!strcmp(res->type, "global")) 3538 rte_log_set_global_level(res->level); 3539 else { 3540 ret = rte_log_set_level_regexp(res->type, res->level); 3541 if (ret < 0) 3542 printf("Unable to set log level\n"); 3543 } 3544 } 3545 3546 cmdline_parse_token_string_t cmd_set_log_set = 3547 TOKEN_STRING_INITIALIZER(struct cmd_set_log_result, set, "set"); 3548 cmdline_parse_token_string_t cmd_set_log_log = 3549 TOKEN_STRING_INITIALIZER(struct cmd_set_log_result, log, "log"); 3550 cmdline_parse_token_string_t cmd_set_log_type = 3551 TOKEN_STRING_INITIALIZER(struct cmd_set_log_result, type, NULL); 3552 cmdline_parse_token_num_t cmd_set_log_level = 3553 TOKEN_NUM_INITIALIZER(struct cmd_set_log_result, level, UINT32); 3554 3555 cmdline_parse_inst_t cmd_set_log = { 3556 .f = cmd_set_log_parsed, 3557 .data = NULL, 3558 .help_str = "set log global|<type> <level>", 3559 .tokens = { 3560 (void *)&cmd_set_log_set, 3561 (void *)&cmd_set_log_log, 3562 (void *)&cmd_set_log_type, 3563 (void *)&cmd_set_log_level, 3564 NULL, 3565 }, 3566 }; 3567 3568 /* *** SET SEGMENT LENGTHS OF TXONLY PACKETS *** */ 3569 3570 struct cmd_set_txpkts_result { 3571 cmdline_fixed_string_t cmd_keyword; 3572 cmdline_fixed_string_t txpkts; 3573 cmdline_fixed_string_t seg_lengths; 3574 }; 3575 3576 static void 3577 cmd_set_txpkts_parsed(void *parsed_result, 3578 __attribute__((unused)) struct cmdline *cl, 3579 __attribute__((unused)) void *data) 3580 { 3581 struct cmd_set_txpkts_result *res; 3582 unsigned seg_lengths[RTE_MAX_SEGS_PER_PKT]; 3583 unsigned int nb_segs; 3584 3585 res = parsed_result; 3586 nb_segs = parse_item_list(res->seg_lengths, "segment lengths", 3587 RTE_MAX_SEGS_PER_PKT, seg_lengths, 0); 3588 if (nb_segs > 0) 3589 set_tx_pkt_segments(seg_lengths, nb_segs); 3590 } 3591 3592 cmdline_parse_token_string_t cmd_set_txpkts_keyword = 3593 TOKEN_STRING_INITIALIZER(struct cmd_set_txpkts_result, 3594 cmd_keyword, "set"); 3595 cmdline_parse_token_string_t cmd_set_txpkts_name = 3596 TOKEN_STRING_INITIALIZER(struct cmd_set_txpkts_result, 3597 txpkts, "txpkts"); 3598 cmdline_parse_token_string_t cmd_set_txpkts_lengths = 3599 TOKEN_STRING_INITIALIZER(struct cmd_set_txpkts_result, 3600 seg_lengths, NULL); 3601 3602 cmdline_parse_inst_t cmd_set_txpkts = { 3603 .f = cmd_set_txpkts_parsed, 3604 .data = NULL, 3605 .help_str = "set txpkts <len0[,len1]*>", 3606 .tokens = { 3607 (void *)&cmd_set_txpkts_keyword, 3608 (void *)&cmd_set_txpkts_name, 3609 (void *)&cmd_set_txpkts_lengths, 3610 NULL, 3611 }, 3612 }; 3613 3614 /* *** SET COPY AND SPLIT POLICY ON TX PACKETS *** */ 3615 3616 struct cmd_set_txsplit_result { 3617 cmdline_fixed_string_t cmd_keyword; 3618 cmdline_fixed_string_t txsplit; 3619 cmdline_fixed_string_t mode; 3620 }; 3621 3622 static void 3623 cmd_set_txsplit_parsed(void *parsed_result, 3624 __attribute__((unused)) struct cmdline *cl, 3625 __attribute__((unused)) void *data) 3626 { 3627 struct cmd_set_txsplit_result *res; 3628 3629 res = parsed_result; 3630 set_tx_pkt_split(res->mode); 3631 } 3632 3633 cmdline_parse_token_string_t cmd_set_txsplit_keyword = 3634 TOKEN_STRING_INITIALIZER(struct cmd_set_txsplit_result, 3635 cmd_keyword, "set"); 3636 cmdline_parse_token_string_t cmd_set_txsplit_name = 3637 TOKEN_STRING_INITIALIZER(struct cmd_set_txsplit_result, 3638 txsplit, "txsplit"); 3639 cmdline_parse_token_string_t cmd_set_txsplit_mode = 3640 TOKEN_STRING_INITIALIZER(struct cmd_set_txsplit_result, 3641 mode, NULL); 3642 3643 cmdline_parse_inst_t cmd_set_txsplit = { 3644 .f = cmd_set_txsplit_parsed, 3645 .data = NULL, 3646 .help_str = "set txsplit on|off|rand", 3647 .tokens = { 3648 (void *)&cmd_set_txsplit_keyword, 3649 (void *)&cmd_set_txsplit_name, 3650 (void *)&cmd_set_txsplit_mode, 3651 NULL, 3652 }, 3653 }; 3654 3655 /* *** ADD/REMOVE ALL VLAN IDENTIFIERS TO/FROM A PORT VLAN RX FILTER *** */ 3656 struct cmd_rx_vlan_filter_all_result { 3657 cmdline_fixed_string_t rx_vlan; 3658 cmdline_fixed_string_t what; 3659 cmdline_fixed_string_t all; 3660 portid_t port_id; 3661 }; 3662 3663 static void 3664 cmd_rx_vlan_filter_all_parsed(void *parsed_result, 3665 __attribute__((unused)) struct cmdline *cl, 3666 __attribute__((unused)) void *data) 3667 { 3668 struct cmd_rx_vlan_filter_all_result *res = parsed_result; 3669 3670 if (!strcmp(res->what, "add")) 3671 rx_vlan_all_filter_set(res->port_id, 1); 3672 else 3673 rx_vlan_all_filter_set(res->port_id, 0); 3674 } 3675 3676 cmdline_parse_token_string_t cmd_rx_vlan_filter_all_rx_vlan = 3677 TOKEN_STRING_INITIALIZER(struct cmd_rx_vlan_filter_all_result, 3678 rx_vlan, "rx_vlan"); 3679 cmdline_parse_token_string_t cmd_rx_vlan_filter_all_what = 3680 TOKEN_STRING_INITIALIZER(struct cmd_rx_vlan_filter_all_result, 3681 what, "add#rm"); 3682 cmdline_parse_token_string_t cmd_rx_vlan_filter_all_all = 3683 TOKEN_STRING_INITIALIZER(struct cmd_rx_vlan_filter_all_result, 3684 all, "all"); 3685 cmdline_parse_token_num_t cmd_rx_vlan_filter_all_portid = 3686 TOKEN_NUM_INITIALIZER(struct cmd_rx_vlan_filter_all_result, 3687 port_id, UINT16); 3688 3689 cmdline_parse_inst_t cmd_rx_vlan_filter_all = { 3690 .f = cmd_rx_vlan_filter_all_parsed, 3691 .data = NULL, 3692 .help_str = "rx_vlan add|rm all <port_id>: " 3693 "Add/Remove all identifiers to/from the set of VLAN " 3694 "identifiers filtered by a port", 3695 .tokens = { 3696 (void *)&cmd_rx_vlan_filter_all_rx_vlan, 3697 (void *)&cmd_rx_vlan_filter_all_what, 3698 (void *)&cmd_rx_vlan_filter_all_all, 3699 (void *)&cmd_rx_vlan_filter_all_portid, 3700 NULL, 3701 }, 3702 }; 3703 3704 /* *** VLAN OFFLOAD SET ON A PORT *** */ 3705 struct cmd_vlan_offload_result { 3706 cmdline_fixed_string_t vlan; 3707 cmdline_fixed_string_t set; 3708 cmdline_fixed_string_t vlan_type; 3709 cmdline_fixed_string_t what; 3710 cmdline_fixed_string_t on; 3711 cmdline_fixed_string_t port_id; 3712 }; 3713 3714 static void 3715 cmd_vlan_offload_parsed(void *parsed_result, 3716 __attribute__((unused)) struct cmdline *cl, 3717 __attribute__((unused)) void *data) 3718 { 3719 int on; 3720 struct cmd_vlan_offload_result *res = parsed_result; 3721 char *str; 3722 int i, len = 0; 3723 portid_t port_id = 0; 3724 unsigned int tmp; 3725 3726 str = res->port_id; 3727 len = strnlen(str, STR_TOKEN_SIZE); 3728 i = 0; 3729 /* Get port_id first */ 3730 while(i < len){ 3731 if(str[i] == ',') 3732 break; 3733 3734 i++; 3735 } 3736 str[i]='\0'; 3737 tmp = strtoul(str, NULL, 0); 3738 /* If port_id greater that what portid_t can represent, return */ 3739 if(tmp >= RTE_MAX_ETHPORTS) 3740 return; 3741 port_id = (portid_t)tmp; 3742 3743 if (!strcmp(res->on, "on")) 3744 on = 1; 3745 else 3746 on = 0; 3747 3748 if (!strcmp(res->what, "strip")) 3749 rx_vlan_strip_set(port_id, on); 3750 else if(!strcmp(res->what, "stripq")){ 3751 uint16_t queue_id = 0; 3752 3753 /* No queue_id, return */ 3754 if(i + 1 >= len) { 3755 printf("must specify (port,queue_id)\n"); 3756 return; 3757 } 3758 tmp = strtoul(str + i + 1, NULL, 0); 3759 /* If queue_id greater that what 16-bits can represent, return */ 3760 if(tmp > 0xffff) 3761 return; 3762 3763 queue_id = (uint16_t)tmp; 3764 rx_vlan_strip_set_on_queue(port_id, queue_id, on); 3765 } 3766 else if (!strcmp(res->what, "filter")) 3767 rx_vlan_filter_set(port_id, on); 3768 else 3769 vlan_extend_set(port_id, on); 3770 3771 return; 3772 } 3773 3774 cmdline_parse_token_string_t cmd_vlan_offload_vlan = 3775 TOKEN_STRING_INITIALIZER(struct cmd_vlan_offload_result, 3776 vlan, "vlan"); 3777 cmdline_parse_token_string_t cmd_vlan_offload_set = 3778 TOKEN_STRING_INITIALIZER(struct cmd_vlan_offload_result, 3779 set, "set"); 3780 cmdline_parse_token_string_t cmd_vlan_offload_what = 3781 TOKEN_STRING_INITIALIZER(struct cmd_vlan_offload_result, 3782 what, "strip#filter#qinq#stripq"); 3783 cmdline_parse_token_string_t cmd_vlan_offload_on = 3784 TOKEN_STRING_INITIALIZER(struct cmd_vlan_offload_result, 3785 on, "on#off"); 3786 cmdline_parse_token_string_t cmd_vlan_offload_portid = 3787 TOKEN_STRING_INITIALIZER(struct cmd_vlan_offload_result, 3788 port_id, NULL); 3789 3790 cmdline_parse_inst_t cmd_vlan_offload = { 3791 .f = cmd_vlan_offload_parsed, 3792 .data = NULL, 3793 .help_str = "vlan set strip|filter|qinq|stripq on|off " 3794 "<port_id[,queue_id]>: " 3795 "Filter/Strip for rx side qinq(extended) for both rx/tx sides", 3796 .tokens = { 3797 (void *)&cmd_vlan_offload_vlan, 3798 (void *)&cmd_vlan_offload_set, 3799 (void *)&cmd_vlan_offload_what, 3800 (void *)&cmd_vlan_offload_on, 3801 (void *)&cmd_vlan_offload_portid, 3802 NULL, 3803 }, 3804 }; 3805 3806 /* *** VLAN TPID SET ON A PORT *** */ 3807 struct cmd_vlan_tpid_result { 3808 cmdline_fixed_string_t vlan; 3809 cmdline_fixed_string_t set; 3810 cmdline_fixed_string_t vlan_type; 3811 cmdline_fixed_string_t what; 3812 uint16_t tp_id; 3813 portid_t port_id; 3814 }; 3815 3816 static void 3817 cmd_vlan_tpid_parsed(void *parsed_result, 3818 __attribute__((unused)) struct cmdline *cl, 3819 __attribute__((unused)) void *data) 3820 { 3821 struct cmd_vlan_tpid_result *res = parsed_result; 3822 enum rte_vlan_type vlan_type; 3823 3824 if (!strcmp(res->vlan_type, "inner")) 3825 vlan_type = ETH_VLAN_TYPE_INNER; 3826 else if (!strcmp(res->vlan_type, "outer")) 3827 vlan_type = ETH_VLAN_TYPE_OUTER; 3828 else { 3829 printf("Unknown vlan type\n"); 3830 return; 3831 } 3832 vlan_tpid_set(res->port_id, vlan_type, res->tp_id); 3833 } 3834 3835 cmdline_parse_token_string_t cmd_vlan_tpid_vlan = 3836 TOKEN_STRING_INITIALIZER(struct cmd_vlan_tpid_result, 3837 vlan, "vlan"); 3838 cmdline_parse_token_string_t cmd_vlan_tpid_set = 3839 TOKEN_STRING_INITIALIZER(struct cmd_vlan_tpid_result, 3840 set, "set"); 3841 cmdline_parse_token_string_t cmd_vlan_type = 3842 TOKEN_STRING_INITIALIZER(struct cmd_vlan_tpid_result, 3843 vlan_type, "inner#outer"); 3844 cmdline_parse_token_string_t cmd_vlan_tpid_what = 3845 TOKEN_STRING_INITIALIZER(struct cmd_vlan_tpid_result, 3846 what, "tpid"); 3847 cmdline_parse_token_num_t cmd_vlan_tpid_tpid = 3848 TOKEN_NUM_INITIALIZER(struct cmd_vlan_tpid_result, 3849 tp_id, UINT16); 3850 cmdline_parse_token_num_t cmd_vlan_tpid_portid = 3851 TOKEN_NUM_INITIALIZER(struct cmd_vlan_tpid_result, 3852 port_id, UINT16); 3853 3854 cmdline_parse_inst_t cmd_vlan_tpid = { 3855 .f = cmd_vlan_tpid_parsed, 3856 .data = NULL, 3857 .help_str = "vlan set inner|outer tpid <tp_id> <port_id>: " 3858 "Set the VLAN Ether type", 3859 .tokens = { 3860 (void *)&cmd_vlan_tpid_vlan, 3861 (void *)&cmd_vlan_tpid_set, 3862 (void *)&cmd_vlan_type, 3863 (void *)&cmd_vlan_tpid_what, 3864 (void *)&cmd_vlan_tpid_tpid, 3865 (void *)&cmd_vlan_tpid_portid, 3866 NULL, 3867 }, 3868 }; 3869 3870 /* *** ADD/REMOVE A VLAN IDENTIFIER TO/FROM A PORT VLAN RX FILTER *** */ 3871 struct cmd_rx_vlan_filter_result { 3872 cmdline_fixed_string_t rx_vlan; 3873 cmdline_fixed_string_t what; 3874 uint16_t vlan_id; 3875 portid_t port_id; 3876 }; 3877 3878 static void 3879 cmd_rx_vlan_filter_parsed(void *parsed_result, 3880 __attribute__((unused)) struct cmdline *cl, 3881 __attribute__((unused)) void *data) 3882 { 3883 struct cmd_rx_vlan_filter_result *res = parsed_result; 3884 3885 if (!strcmp(res->what, "add")) 3886 rx_vft_set(res->port_id, res->vlan_id, 1); 3887 else 3888 rx_vft_set(res->port_id, res->vlan_id, 0); 3889 } 3890 3891 cmdline_parse_token_string_t cmd_rx_vlan_filter_rx_vlan = 3892 TOKEN_STRING_INITIALIZER(struct cmd_rx_vlan_filter_result, 3893 rx_vlan, "rx_vlan"); 3894 cmdline_parse_token_string_t cmd_rx_vlan_filter_what = 3895 TOKEN_STRING_INITIALIZER(struct cmd_rx_vlan_filter_result, 3896 what, "add#rm"); 3897 cmdline_parse_token_num_t cmd_rx_vlan_filter_vlanid = 3898 TOKEN_NUM_INITIALIZER(struct cmd_rx_vlan_filter_result, 3899 vlan_id, UINT16); 3900 cmdline_parse_token_num_t cmd_rx_vlan_filter_portid = 3901 TOKEN_NUM_INITIALIZER(struct cmd_rx_vlan_filter_result, 3902 port_id, UINT16); 3903 3904 cmdline_parse_inst_t cmd_rx_vlan_filter = { 3905 .f = cmd_rx_vlan_filter_parsed, 3906 .data = NULL, 3907 .help_str = "rx_vlan add|rm <vlan_id> <port_id>: " 3908 "Add/Remove a VLAN identifier to/from the set of VLAN " 3909 "identifiers filtered by a port", 3910 .tokens = { 3911 (void *)&cmd_rx_vlan_filter_rx_vlan, 3912 (void *)&cmd_rx_vlan_filter_what, 3913 (void *)&cmd_rx_vlan_filter_vlanid, 3914 (void *)&cmd_rx_vlan_filter_portid, 3915 NULL, 3916 }, 3917 }; 3918 3919 /* *** ENABLE HARDWARE INSERTION OF VLAN HEADER IN TX PACKETS *** */ 3920 struct cmd_tx_vlan_set_result { 3921 cmdline_fixed_string_t tx_vlan; 3922 cmdline_fixed_string_t set; 3923 portid_t port_id; 3924 uint16_t vlan_id; 3925 }; 3926 3927 static void 3928 cmd_tx_vlan_set_parsed(void *parsed_result, 3929 __attribute__((unused)) struct cmdline *cl, 3930 __attribute__((unused)) void *data) 3931 { 3932 struct cmd_tx_vlan_set_result *res = parsed_result; 3933 3934 if (!port_is_stopped(res->port_id)) { 3935 printf("Please stop port %d first\n", res->port_id); 3936 return; 3937 } 3938 3939 tx_vlan_set(res->port_id, res->vlan_id); 3940 3941 cmd_reconfig_device_queue(res->port_id, 1, 1); 3942 } 3943 3944 cmdline_parse_token_string_t cmd_tx_vlan_set_tx_vlan = 3945 TOKEN_STRING_INITIALIZER(struct cmd_tx_vlan_set_result, 3946 tx_vlan, "tx_vlan"); 3947 cmdline_parse_token_string_t cmd_tx_vlan_set_set = 3948 TOKEN_STRING_INITIALIZER(struct cmd_tx_vlan_set_result, 3949 set, "set"); 3950 cmdline_parse_token_num_t cmd_tx_vlan_set_portid = 3951 TOKEN_NUM_INITIALIZER(struct cmd_tx_vlan_set_result, 3952 port_id, UINT16); 3953 cmdline_parse_token_num_t cmd_tx_vlan_set_vlanid = 3954 TOKEN_NUM_INITIALIZER(struct cmd_tx_vlan_set_result, 3955 vlan_id, UINT16); 3956 3957 cmdline_parse_inst_t cmd_tx_vlan_set = { 3958 .f = cmd_tx_vlan_set_parsed, 3959 .data = NULL, 3960 .help_str = "tx_vlan set <port_id> <vlan_id>: " 3961 "Enable hardware insertion of a single VLAN header " 3962 "with a given TAG Identifier in packets sent on a port", 3963 .tokens = { 3964 (void *)&cmd_tx_vlan_set_tx_vlan, 3965 (void *)&cmd_tx_vlan_set_set, 3966 (void *)&cmd_tx_vlan_set_portid, 3967 (void *)&cmd_tx_vlan_set_vlanid, 3968 NULL, 3969 }, 3970 }; 3971 3972 /* *** ENABLE HARDWARE INSERTION OF Double VLAN HEADER IN TX PACKETS *** */ 3973 struct cmd_tx_vlan_set_qinq_result { 3974 cmdline_fixed_string_t tx_vlan; 3975 cmdline_fixed_string_t set; 3976 portid_t port_id; 3977 uint16_t vlan_id; 3978 uint16_t vlan_id_outer; 3979 }; 3980 3981 static void 3982 cmd_tx_vlan_set_qinq_parsed(void *parsed_result, 3983 __attribute__((unused)) struct cmdline *cl, 3984 __attribute__((unused)) void *data) 3985 { 3986 struct cmd_tx_vlan_set_qinq_result *res = parsed_result; 3987 3988 if (!port_is_stopped(res->port_id)) { 3989 printf("Please stop port %d first\n", res->port_id); 3990 return; 3991 } 3992 3993 tx_qinq_set(res->port_id, res->vlan_id, res->vlan_id_outer); 3994 3995 cmd_reconfig_device_queue(res->port_id, 1, 1); 3996 } 3997 3998 cmdline_parse_token_string_t cmd_tx_vlan_set_qinq_tx_vlan = 3999 TOKEN_STRING_INITIALIZER(struct cmd_tx_vlan_set_qinq_result, 4000 tx_vlan, "tx_vlan"); 4001 cmdline_parse_token_string_t cmd_tx_vlan_set_qinq_set = 4002 TOKEN_STRING_INITIALIZER(struct cmd_tx_vlan_set_qinq_result, 4003 set, "set"); 4004 cmdline_parse_token_num_t cmd_tx_vlan_set_qinq_portid = 4005 TOKEN_NUM_INITIALIZER(struct cmd_tx_vlan_set_qinq_result, 4006 port_id, UINT16); 4007 cmdline_parse_token_num_t cmd_tx_vlan_set_qinq_vlanid = 4008 TOKEN_NUM_INITIALIZER(struct cmd_tx_vlan_set_qinq_result, 4009 vlan_id, UINT16); 4010 cmdline_parse_token_num_t cmd_tx_vlan_set_qinq_vlanid_outer = 4011 TOKEN_NUM_INITIALIZER(struct cmd_tx_vlan_set_qinq_result, 4012 vlan_id_outer, UINT16); 4013 4014 cmdline_parse_inst_t cmd_tx_vlan_set_qinq = { 4015 .f = cmd_tx_vlan_set_qinq_parsed, 4016 .data = NULL, 4017 .help_str = "tx_vlan set <port_id> <vlan_id> <outer_vlan_id>: " 4018 "Enable hardware insertion of double VLAN header " 4019 "with given TAG Identifiers in packets sent on a port", 4020 .tokens = { 4021 (void *)&cmd_tx_vlan_set_qinq_tx_vlan, 4022 (void *)&cmd_tx_vlan_set_qinq_set, 4023 (void *)&cmd_tx_vlan_set_qinq_portid, 4024 (void *)&cmd_tx_vlan_set_qinq_vlanid, 4025 (void *)&cmd_tx_vlan_set_qinq_vlanid_outer, 4026 NULL, 4027 }, 4028 }; 4029 4030 /* *** ENABLE/DISABLE PORT BASED TX VLAN INSERTION *** */ 4031 struct cmd_tx_vlan_set_pvid_result { 4032 cmdline_fixed_string_t tx_vlan; 4033 cmdline_fixed_string_t set; 4034 cmdline_fixed_string_t pvid; 4035 portid_t port_id; 4036 uint16_t vlan_id; 4037 cmdline_fixed_string_t mode; 4038 }; 4039 4040 static void 4041 cmd_tx_vlan_set_pvid_parsed(void *parsed_result, 4042 __attribute__((unused)) struct cmdline *cl, 4043 __attribute__((unused)) void *data) 4044 { 4045 struct cmd_tx_vlan_set_pvid_result *res = parsed_result; 4046 4047 if (strcmp(res->mode, "on") == 0) 4048 tx_vlan_pvid_set(res->port_id, res->vlan_id, 1); 4049 else 4050 tx_vlan_pvid_set(res->port_id, res->vlan_id, 0); 4051 } 4052 4053 cmdline_parse_token_string_t cmd_tx_vlan_set_pvid_tx_vlan = 4054 TOKEN_STRING_INITIALIZER(struct cmd_tx_vlan_set_pvid_result, 4055 tx_vlan, "tx_vlan"); 4056 cmdline_parse_token_string_t cmd_tx_vlan_set_pvid_set = 4057 TOKEN_STRING_INITIALIZER(struct cmd_tx_vlan_set_pvid_result, 4058 set, "set"); 4059 cmdline_parse_token_string_t cmd_tx_vlan_set_pvid_pvid = 4060 TOKEN_STRING_INITIALIZER(struct cmd_tx_vlan_set_pvid_result, 4061 pvid, "pvid"); 4062 cmdline_parse_token_num_t cmd_tx_vlan_set_pvid_port_id = 4063 TOKEN_NUM_INITIALIZER(struct cmd_tx_vlan_set_pvid_result, 4064 port_id, UINT16); 4065 cmdline_parse_token_num_t cmd_tx_vlan_set_pvid_vlan_id = 4066 TOKEN_NUM_INITIALIZER(struct cmd_tx_vlan_set_pvid_result, 4067 vlan_id, UINT16); 4068 cmdline_parse_token_string_t cmd_tx_vlan_set_pvid_mode = 4069 TOKEN_STRING_INITIALIZER(struct cmd_tx_vlan_set_pvid_result, 4070 mode, "on#off"); 4071 4072 cmdline_parse_inst_t cmd_tx_vlan_set_pvid = { 4073 .f = cmd_tx_vlan_set_pvid_parsed, 4074 .data = NULL, 4075 .help_str = "tx_vlan set pvid <port_id> <vlan_id> on|off", 4076 .tokens = { 4077 (void *)&cmd_tx_vlan_set_pvid_tx_vlan, 4078 (void *)&cmd_tx_vlan_set_pvid_set, 4079 (void *)&cmd_tx_vlan_set_pvid_pvid, 4080 (void *)&cmd_tx_vlan_set_pvid_port_id, 4081 (void *)&cmd_tx_vlan_set_pvid_vlan_id, 4082 (void *)&cmd_tx_vlan_set_pvid_mode, 4083 NULL, 4084 }, 4085 }; 4086 4087 /* *** DISABLE HARDWARE INSERTION OF VLAN HEADER IN TX PACKETS *** */ 4088 struct cmd_tx_vlan_reset_result { 4089 cmdline_fixed_string_t tx_vlan; 4090 cmdline_fixed_string_t reset; 4091 portid_t port_id; 4092 }; 4093 4094 static void 4095 cmd_tx_vlan_reset_parsed(void *parsed_result, 4096 __attribute__((unused)) struct cmdline *cl, 4097 __attribute__((unused)) void *data) 4098 { 4099 struct cmd_tx_vlan_reset_result *res = parsed_result; 4100 4101 if (!port_is_stopped(res->port_id)) { 4102 printf("Please stop port %d first\n", res->port_id); 4103 return; 4104 } 4105 4106 tx_vlan_reset(res->port_id); 4107 4108 cmd_reconfig_device_queue(res->port_id, 1, 1); 4109 } 4110 4111 cmdline_parse_token_string_t cmd_tx_vlan_reset_tx_vlan = 4112 TOKEN_STRING_INITIALIZER(struct cmd_tx_vlan_reset_result, 4113 tx_vlan, "tx_vlan"); 4114 cmdline_parse_token_string_t cmd_tx_vlan_reset_reset = 4115 TOKEN_STRING_INITIALIZER(struct cmd_tx_vlan_reset_result, 4116 reset, "reset"); 4117 cmdline_parse_token_num_t cmd_tx_vlan_reset_portid = 4118 TOKEN_NUM_INITIALIZER(struct cmd_tx_vlan_reset_result, 4119 port_id, UINT16); 4120 4121 cmdline_parse_inst_t cmd_tx_vlan_reset = { 4122 .f = cmd_tx_vlan_reset_parsed, 4123 .data = NULL, 4124 .help_str = "tx_vlan reset <port_id>: Disable hardware insertion of a " 4125 "VLAN header in packets sent on a port", 4126 .tokens = { 4127 (void *)&cmd_tx_vlan_reset_tx_vlan, 4128 (void *)&cmd_tx_vlan_reset_reset, 4129 (void *)&cmd_tx_vlan_reset_portid, 4130 NULL, 4131 }, 4132 }; 4133 4134 4135 /* *** ENABLE HARDWARE INSERTION OF CHECKSUM IN TX PACKETS *** */ 4136 struct cmd_csum_result { 4137 cmdline_fixed_string_t csum; 4138 cmdline_fixed_string_t mode; 4139 cmdline_fixed_string_t proto; 4140 cmdline_fixed_string_t hwsw; 4141 portid_t port_id; 4142 }; 4143 4144 static void 4145 csum_show(int port_id) 4146 { 4147 struct rte_eth_dev_info dev_info; 4148 uint64_t tx_offloads; 4149 4150 tx_offloads = ports[port_id].dev_conf.txmode.offloads; 4151 printf("Parse tunnel is %s\n", 4152 (ports[port_id].parse_tunnel) ? "on" : "off"); 4153 printf("IP checksum offload is %s\n", 4154 (tx_offloads & DEV_TX_OFFLOAD_IPV4_CKSUM) ? "hw" : "sw"); 4155 printf("UDP checksum offload is %s\n", 4156 (tx_offloads & DEV_TX_OFFLOAD_UDP_CKSUM) ? "hw" : "sw"); 4157 printf("TCP checksum offload is %s\n", 4158 (tx_offloads & DEV_TX_OFFLOAD_TCP_CKSUM) ? "hw" : "sw"); 4159 printf("SCTP checksum offload is %s\n", 4160 (tx_offloads & DEV_TX_OFFLOAD_SCTP_CKSUM) ? "hw" : "sw"); 4161 printf("Outer-Ip checksum offload is %s\n", 4162 (tx_offloads & DEV_TX_OFFLOAD_OUTER_IPV4_CKSUM) ? "hw" : "sw"); 4163 printf("Outer-Udp checksum offload is %s\n", 4164 (tx_offloads & DEV_TX_OFFLOAD_OUTER_UDP_CKSUM) ? "hw" : "sw"); 4165 4166 /* display warnings if configuration is not supported by the NIC */ 4167 rte_eth_dev_info_get(port_id, &dev_info); 4168 if ((tx_offloads & DEV_TX_OFFLOAD_IPV4_CKSUM) && 4169 (dev_info.tx_offload_capa & DEV_TX_OFFLOAD_IPV4_CKSUM) == 0) { 4170 printf("Warning: hardware IP checksum enabled but not " 4171 "supported by port %d\n", port_id); 4172 } 4173 if ((tx_offloads & DEV_TX_OFFLOAD_UDP_CKSUM) && 4174 (dev_info.tx_offload_capa & DEV_TX_OFFLOAD_UDP_CKSUM) == 0) { 4175 printf("Warning: hardware UDP checksum enabled but not " 4176 "supported by port %d\n", port_id); 4177 } 4178 if ((tx_offloads & DEV_TX_OFFLOAD_TCP_CKSUM) && 4179 (dev_info.tx_offload_capa & DEV_TX_OFFLOAD_TCP_CKSUM) == 0) { 4180 printf("Warning: hardware TCP checksum enabled but not " 4181 "supported by port %d\n", port_id); 4182 } 4183 if ((tx_offloads & DEV_TX_OFFLOAD_SCTP_CKSUM) && 4184 (dev_info.tx_offload_capa & DEV_TX_OFFLOAD_SCTP_CKSUM) == 0) { 4185 printf("Warning: hardware SCTP checksum enabled but not " 4186 "supported by port %d\n", port_id); 4187 } 4188 if ((tx_offloads & DEV_TX_OFFLOAD_OUTER_IPV4_CKSUM) && 4189 (dev_info.tx_offload_capa & DEV_TX_OFFLOAD_OUTER_IPV4_CKSUM) == 0) { 4190 printf("Warning: hardware outer IP checksum enabled but not " 4191 "supported by port %d\n", port_id); 4192 } 4193 if ((tx_offloads & DEV_TX_OFFLOAD_OUTER_UDP_CKSUM) && 4194 (dev_info.tx_offload_capa & DEV_TX_OFFLOAD_OUTER_UDP_CKSUM) 4195 == 0) { 4196 printf("Warning: hardware outer UDP checksum enabled but not " 4197 "supported by port %d\n", port_id); 4198 } 4199 } 4200 4201 static void 4202 cmd_csum_parsed(void *parsed_result, 4203 __attribute__((unused)) struct cmdline *cl, 4204 __attribute__((unused)) void *data) 4205 { 4206 struct cmd_csum_result *res = parsed_result; 4207 int hw = 0; 4208 uint64_t csum_offloads = 0; 4209 struct rte_eth_dev_info dev_info; 4210 4211 if (port_id_is_invalid(res->port_id, ENABLED_WARN)) { 4212 printf("invalid port %d\n", res->port_id); 4213 return; 4214 } 4215 if (!port_is_stopped(res->port_id)) { 4216 printf("Please stop port %d first\n", res->port_id); 4217 return; 4218 } 4219 4220 rte_eth_dev_info_get(res->port_id, &dev_info); 4221 if (!strcmp(res->mode, "set")) { 4222 4223 if (!strcmp(res->hwsw, "hw")) 4224 hw = 1; 4225 4226 if (!strcmp(res->proto, "ip")) { 4227 if (hw == 0 || (dev_info.tx_offload_capa & 4228 DEV_TX_OFFLOAD_IPV4_CKSUM)) { 4229 csum_offloads |= DEV_TX_OFFLOAD_IPV4_CKSUM; 4230 } else { 4231 printf("IP checksum offload is not supported " 4232 "by port %u\n", res->port_id); 4233 } 4234 } else if (!strcmp(res->proto, "udp")) { 4235 if (hw == 0 || (dev_info.tx_offload_capa & 4236 DEV_TX_OFFLOAD_UDP_CKSUM)) { 4237 csum_offloads |= DEV_TX_OFFLOAD_UDP_CKSUM; 4238 } else { 4239 printf("UDP checksum offload is not supported " 4240 "by port %u\n", res->port_id); 4241 } 4242 } else if (!strcmp(res->proto, "tcp")) { 4243 if (hw == 0 || (dev_info.tx_offload_capa & 4244 DEV_TX_OFFLOAD_TCP_CKSUM)) { 4245 csum_offloads |= DEV_TX_OFFLOAD_TCP_CKSUM; 4246 } else { 4247 printf("TCP checksum offload is not supported " 4248 "by port %u\n", res->port_id); 4249 } 4250 } else if (!strcmp(res->proto, "sctp")) { 4251 if (hw == 0 || (dev_info.tx_offload_capa & 4252 DEV_TX_OFFLOAD_SCTP_CKSUM)) { 4253 csum_offloads |= DEV_TX_OFFLOAD_SCTP_CKSUM; 4254 } else { 4255 printf("SCTP checksum offload is not supported " 4256 "by port %u\n", res->port_id); 4257 } 4258 } else if (!strcmp(res->proto, "outer-ip")) { 4259 if (hw == 0 || (dev_info.tx_offload_capa & 4260 DEV_TX_OFFLOAD_OUTER_IPV4_CKSUM)) { 4261 csum_offloads |= 4262 DEV_TX_OFFLOAD_OUTER_IPV4_CKSUM; 4263 } else { 4264 printf("Outer IP checksum offload is not " 4265 "supported by port %u\n", res->port_id); 4266 } 4267 } else if (!strcmp(res->proto, "outer-udp")) { 4268 if (hw == 0 || (dev_info.tx_offload_capa & 4269 DEV_TX_OFFLOAD_OUTER_UDP_CKSUM)) { 4270 csum_offloads |= 4271 DEV_TX_OFFLOAD_OUTER_UDP_CKSUM; 4272 } else { 4273 printf("Outer UDP checksum offload is not " 4274 "supported by port %u\n", res->port_id); 4275 } 4276 } 4277 4278 if (hw) { 4279 ports[res->port_id].dev_conf.txmode.offloads |= 4280 csum_offloads; 4281 } else { 4282 ports[res->port_id].dev_conf.txmode.offloads &= 4283 (~csum_offloads); 4284 } 4285 } 4286 csum_show(res->port_id); 4287 4288 cmd_reconfig_device_queue(res->port_id, 1, 1); 4289 } 4290 4291 cmdline_parse_token_string_t cmd_csum_csum = 4292 TOKEN_STRING_INITIALIZER(struct cmd_csum_result, 4293 csum, "csum"); 4294 cmdline_parse_token_string_t cmd_csum_mode = 4295 TOKEN_STRING_INITIALIZER(struct cmd_csum_result, 4296 mode, "set"); 4297 cmdline_parse_token_string_t cmd_csum_proto = 4298 TOKEN_STRING_INITIALIZER(struct cmd_csum_result, 4299 proto, "ip#tcp#udp#sctp#outer-ip#outer-udp"); 4300 cmdline_parse_token_string_t cmd_csum_hwsw = 4301 TOKEN_STRING_INITIALIZER(struct cmd_csum_result, 4302 hwsw, "hw#sw"); 4303 cmdline_parse_token_num_t cmd_csum_portid = 4304 TOKEN_NUM_INITIALIZER(struct cmd_csum_result, 4305 port_id, UINT16); 4306 4307 cmdline_parse_inst_t cmd_csum_set = { 4308 .f = cmd_csum_parsed, 4309 .data = NULL, 4310 .help_str = "csum set ip|tcp|udp|sctp|outer-ip|outer-udp hw|sw <port_id>: " 4311 "Enable/Disable hardware calculation of L3/L4 checksum when " 4312 "using csum forward engine", 4313 .tokens = { 4314 (void *)&cmd_csum_csum, 4315 (void *)&cmd_csum_mode, 4316 (void *)&cmd_csum_proto, 4317 (void *)&cmd_csum_hwsw, 4318 (void *)&cmd_csum_portid, 4319 NULL, 4320 }, 4321 }; 4322 4323 cmdline_parse_token_string_t cmd_csum_mode_show = 4324 TOKEN_STRING_INITIALIZER(struct cmd_csum_result, 4325 mode, "show"); 4326 4327 cmdline_parse_inst_t cmd_csum_show = { 4328 .f = cmd_csum_parsed, 4329 .data = NULL, 4330 .help_str = "csum show <port_id>: Show checksum offload configuration", 4331 .tokens = { 4332 (void *)&cmd_csum_csum, 4333 (void *)&cmd_csum_mode_show, 4334 (void *)&cmd_csum_portid, 4335 NULL, 4336 }, 4337 }; 4338 4339 /* Enable/disable tunnel parsing */ 4340 struct cmd_csum_tunnel_result { 4341 cmdline_fixed_string_t csum; 4342 cmdline_fixed_string_t parse; 4343 cmdline_fixed_string_t onoff; 4344 portid_t port_id; 4345 }; 4346 4347 static void 4348 cmd_csum_tunnel_parsed(void *parsed_result, 4349 __attribute__((unused)) struct cmdline *cl, 4350 __attribute__((unused)) void *data) 4351 { 4352 struct cmd_csum_tunnel_result *res = parsed_result; 4353 4354 if (port_id_is_invalid(res->port_id, ENABLED_WARN)) 4355 return; 4356 4357 if (!strcmp(res->onoff, "on")) 4358 ports[res->port_id].parse_tunnel = 1; 4359 else 4360 ports[res->port_id].parse_tunnel = 0; 4361 4362 csum_show(res->port_id); 4363 } 4364 4365 cmdline_parse_token_string_t cmd_csum_tunnel_csum = 4366 TOKEN_STRING_INITIALIZER(struct cmd_csum_tunnel_result, 4367 csum, "csum"); 4368 cmdline_parse_token_string_t cmd_csum_tunnel_parse = 4369 TOKEN_STRING_INITIALIZER(struct cmd_csum_tunnel_result, 4370 parse, "parse-tunnel"); 4371 cmdline_parse_token_string_t cmd_csum_tunnel_onoff = 4372 TOKEN_STRING_INITIALIZER(struct cmd_csum_tunnel_result, 4373 onoff, "on#off"); 4374 cmdline_parse_token_num_t cmd_csum_tunnel_portid = 4375 TOKEN_NUM_INITIALIZER(struct cmd_csum_tunnel_result, 4376 port_id, UINT16); 4377 4378 cmdline_parse_inst_t cmd_csum_tunnel = { 4379 .f = cmd_csum_tunnel_parsed, 4380 .data = NULL, 4381 .help_str = "csum parse-tunnel on|off <port_id>: " 4382 "Enable/Disable parsing of tunnels for csum engine", 4383 .tokens = { 4384 (void *)&cmd_csum_tunnel_csum, 4385 (void *)&cmd_csum_tunnel_parse, 4386 (void *)&cmd_csum_tunnel_onoff, 4387 (void *)&cmd_csum_tunnel_portid, 4388 NULL, 4389 }, 4390 }; 4391 4392 /* *** ENABLE HARDWARE SEGMENTATION IN TX NON-TUNNELED PACKETS *** */ 4393 struct cmd_tso_set_result { 4394 cmdline_fixed_string_t tso; 4395 cmdline_fixed_string_t mode; 4396 uint16_t tso_segsz; 4397 portid_t port_id; 4398 }; 4399 4400 static void 4401 cmd_tso_set_parsed(void *parsed_result, 4402 __attribute__((unused)) struct cmdline *cl, 4403 __attribute__((unused)) void *data) 4404 { 4405 struct cmd_tso_set_result *res = parsed_result; 4406 struct rte_eth_dev_info dev_info; 4407 4408 if (port_id_is_invalid(res->port_id, ENABLED_WARN)) 4409 return; 4410 if (!port_is_stopped(res->port_id)) { 4411 printf("Please stop port %d first\n", res->port_id); 4412 return; 4413 } 4414 4415 if (!strcmp(res->mode, "set")) 4416 ports[res->port_id].tso_segsz = res->tso_segsz; 4417 4418 rte_eth_dev_info_get(res->port_id, &dev_info); 4419 if ((ports[res->port_id].tso_segsz != 0) && 4420 (dev_info.tx_offload_capa & DEV_TX_OFFLOAD_TCP_TSO) == 0) { 4421 printf("Error: TSO is not supported by port %d\n", 4422 res->port_id); 4423 return; 4424 } 4425 4426 if (ports[res->port_id].tso_segsz == 0) { 4427 ports[res->port_id].dev_conf.txmode.offloads &= 4428 ~DEV_TX_OFFLOAD_TCP_TSO; 4429 printf("TSO for non-tunneled packets is disabled\n"); 4430 } else { 4431 ports[res->port_id].dev_conf.txmode.offloads |= 4432 DEV_TX_OFFLOAD_TCP_TSO; 4433 printf("TSO segment size for non-tunneled packets is %d\n", 4434 ports[res->port_id].tso_segsz); 4435 } 4436 4437 /* display warnings if configuration is not supported by the NIC */ 4438 rte_eth_dev_info_get(res->port_id, &dev_info); 4439 if ((ports[res->port_id].tso_segsz != 0) && 4440 (dev_info.tx_offload_capa & DEV_TX_OFFLOAD_TCP_TSO) == 0) { 4441 printf("Warning: TSO enabled but not " 4442 "supported by port %d\n", res->port_id); 4443 } 4444 4445 cmd_reconfig_device_queue(res->port_id, 1, 1); 4446 } 4447 4448 cmdline_parse_token_string_t cmd_tso_set_tso = 4449 TOKEN_STRING_INITIALIZER(struct cmd_tso_set_result, 4450 tso, "tso"); 4451 cmdline_parse_token_string_t cmd_tso_set_mode = 4452 TOKEN_STRING_INITIALIZER(struct cmd_tso_set_result, 4453 mode, "set"); 4454 cmdline_parse_token_num_t cmd_tso_set_tso_segsz = 4455 TOKEN_NUM_INITIALIZER(struct cmd_tso_set_result, 4456 tso_segsz, UINT16); 4457 cmdline_parse_token_num_t cmd_tso_set_portid = 4458 TOKEN_NUM_INITIALIZER(struct cmd_tso_set_result, 4459 port_id, UINT16); 4460 4461 cmdline_parse_inst_t cmd_tso_set = { 4462 .f = cmd_tso_set_parsed, 4463 .data = NULL, 4464 .help_str = "tso set <tso_segsz> <port_id>: " 4465 "Set TSO segment size of non-tunneled packets for csum engine " 4466 "(0 to disable)", 4467 .tokens = { 4468 (void *)&cmd_tso_set_tso, 4469 (void *)&cmd_tso_set_mode, 4470 (void *)&cmd_tso_set_tso_segsz, 4471 (void *)&cmd_tso_set_portid, 4472 NULL, 4473 }, 4474 }; 4475 4476 cmdline_parse_token_string_t cmd_tso_show_mode = 4477 TOKEN_STRING_INITIALIZER(struct cmd_tso_set_result, 4478 mode, "show"); 4479 4480 4481 cmdline_parse_inst_t cmd_tso_show = { 4482 .f = cmd_tso_set_parsed, 4483 .data = NULL, 4484 .help_str = "tso show <port_id>: " 4485 "Show TSO segment size of non-tunneled packets for csum engine", 4486 .tokens = { 4487 (void *)&cmd_tso_set_tso, 4488 (void *)&cmd_tso_show_mode, 4489 (void *)&cmd_tso_set_portid, 4490 NULL, 4491 }, 4492 }; 4493 4494 /* *** ENABLE HARDWARE SEGMENTATION IN TX TUNNELED PACKETS *** */ 4495 struct cmd_tunnel_tso_set_result { 4496 cmdline_fixed_string_t tso; 4497 cmdline_fixed_string_t mode; 4498 uint16_t tso_segsz; 4499 portid_t port_id; 4500 }; 4501 4502 static struct rte_eth_dev_info 4503 check_tunnel_tso_nic_support(portid_t port_id) 4504 { 4505 struct rte_eth_dev_info dev_info; 4506 4507 rte_eth_dev_info_get(port_id, &dev_info); 4508 if (!(dev_info.tx_offload_capa & DEV_TX_OFFLOAD_VXLAN_TNL_TSO)) 4509 printf("Warning: VXLAN TUNNEL TSO not supported therefore " 4510 "not enabled for port %d\n", port_id); 4511 if (!(dev_info.tx_offload_capa & DEV_TX_OFFLOAD_GRE_TNL_TSO)) 4512 printf("Warning: GRE TUNNEL TSO not supported therefore " 4513 "not enabled for port %d\n", port_id); 4514 if (!(dev_info.tx_offload_capa & DEV_TX_OFFLOAD_IPIP_TNL_TSO)) 4515 printf("Warning: IPIP TUNNEL TSO not supported therefore " 4516 "not enabled for port %d\n", port_id); 4517 if (!(dev_info.tx_offload_capa & DEV_TX_OFFLOAD_GENEVE_TNL_TSO)) 4518 printf("Warning: GENEVE TUNNEL TSO not supported therefore " 4519 "not enabled for port %d\n", port_id); 4520 if (!(dev_info.tx_offload_capa & DEV_TX_OFFLOAD_IP_TNL_TSO)) 4521 printf("Warning: IP TUNNEL TSO not supported therefore " 4522 "not enabled for port %d\n", port_id); 4523 if (!(dev_info.tx_offload_capa & DEV_TX_OFFLOAD_UDP_TNL_TSO)) 4524 printf("Warning: UDP TUNNEL TSO not supported therefore " 4525 "not enabled for port %d\n", port_id); 4526 return dev_info; 4527 } 4528 4529 static void 4530 cmd_tunnel_tso_set_parsed(void *parsed_result, 4531 __attribute__((unused)) struct cmdline *cl, 4532 __attribute__((unused)) void *data) 4533 { 4534 struct cmd_tunnel_tso_set_result *res = parsed_result; 4535 struct rte_eth_dev_info dev_info; 4536 4537 if (port_id_is_invalid(res->port_id, ENABLED_WARN)) 4538 return; 4539 if (!port_is_stopped(res->port_id)) { 4540 printf("Please stop port %d first\n", res->port_id); 4541 return; 4542 } 4543 4544 if (!strcmp(res->mode, "set")) 4545 ports[res->port_id].tunnel_tso_segsz = res->tso_segsz; 4546 4547 dev_info = check_tunnel_tso_nic_support(res->port_id); 4548 if (ports[res->port_id].tunnel_tso_segsz == 0) { 4549 ports[res->port_id].dev_conf.txmode.offloads &= 4550 ~(DEV_TX_OFFLOAD_VXLAN_TNL_TSO | 4551 DEV_TX_OFFLOAD_GRE_TNL_TSO | 4552 DEV_TX_OFFLOAD_IPIP_TNL_TSO | 4553 DEV_TX_OFFLOAD_GENEVE_TNL_TSO | 4554 DEV_TX_OFFLOAD_IP_TNL_TSO | 4555 DEV_TX_OFFLOAD_UDP_TNL_TSO); 4556 printf("TSO for tunneled packets is disabled\n"); 4557 } else { 4558 uint64_t tso_offloads = (DEV_TX_OFFLOAD_VXLAN_TNL_TSO | 4559 DEV_TX_OFFLOAD_GRE_TNL_TSO | 4560 DEV_TX_OFFLOAD_IPIP_TNL_TSO | 4561 DEV_TX_OFFLOAD_GENEVE_TNL_TSO | 4562 DEV_TX_OFFLOAD_IP_TNL_TSO | 4563 DEV_TX_OFFLOAD_UDP_TNL_TSO); 4564 4565 ports[res->port_id].dev_conf.txmode.offloads |= 4566 (tso_offloads & dev_info.tx_offload_capa); 4567 printf("TSO segment size for tunneled packets is %d\n", 4568 ports[res->port_id].tunnel_tso_segsz); 4569 4570 /* Below conditions are needed to make it work: 4571 * (1) tunnel TSO is supported by the NIC; 4572 * (2) "csum parse_tunnel" must be set so that tunneled pkts 4573 * are recognized; 4574 * (3) for tunneled pkts with outer L3 of IPv4, 4575 * "csum set outer-ip" must be set to hw, because after tso, 4576 * total_len of outer IP header is changed, and the checksum 4577 * of outer IP header calculated by sw should be wrong; that 4578 * is not necessary for IPv6 tunneled pkts because there's no 4579 * checksum in IP header anymore. 4580 */ 4581 4582 if (!ports[res->port_id].parse_tunnel) 4583 printf("Warning: csum parse_tunnel must be set " 4584 "so that tunneled packets are recognized\n"); 4585 if (!(ports[res->port_id].dev_conf.txmode.offloads & 4586 DEV_TX_OFFLOAD_OUTER_IPV4_CKSUM)) 4587 printf("Warning: csum set outer-ip must be set to hw " 4588 "if outer L3 is IPv4; not necessary for IPv6\n"); 4589 } 4590 4591 cmd_reconfig_device_queue(res->port_id, 1, 1); 4592 } 4593 4594 cmdline_parse_token_string_t cmd_tunnel_tso_set_tso = 4595 TOKEN_STRING_INITIALIZER(struct cmd_tunnel_tso_set_result, 4596 tso, "tunnel_tso"); 4597 cmdline_parse_token_string_t cmd_tunnel_tso_set_mode = 4598 TOKEN_STRING_INITIALIZER(struct cmd_tunnel_tso_set_result, 4599 mode, "set"); 4600 cmdline_parse_token_num_t cmd_tunnel_tso_set_tso_segsz = 4601 TOKEN_NUM_INITIALIZER(struct cmd_tunnel_tso_set_result, 4602 tso_segsz, UINT16); 4603 cmdline_parse_token_num_t cmd_tunnel_tso_set_portid = 4604 TOKEN_NUM_INITIALIZER(struct cmd_tunnel_tso_set_result, 4605 port_id, UINT16); 4606 4607 cmdline_parse_inst_t cmd_tunnel_tso_set = { 4608 .f = cmd_tunnel_tso_set_parsed, 4609 .data = NULL, 4610 .help_str = "tunnel_tso set <tso_segsz> <port_id>: " 4611 "Set TSO segment size of tunneled packets for csum engine " 4612 "(0 to disable)", 4613 .tokens = { 4614 (void *)&cmd_tunnel_tso_set_tso, 4615 (void *)&cmd_tunnel_tso_set_mode, 4616 (void *)&cmd_tunnel_tso_set_tso_segsz, 4617 (void *)&cmd_tunnel_tso_set_portid, 4618 NULL, 4619 }, 4620 }; 4621 4622 cmdline_parse_token_string_t cmd_tunnel_tso_show_mode = 4623 TOKEN_STRING_INITIALIZER(struct cmd_tunnel_tso_set_result, 4624 mode, "show"); 4625 4626 4627 cmdline_parse_inst_t cmd_tunnel_tso_show = { 4628 .f = cmd_tunnel_tso_set_parsed, 4629 .data = NULL, 4630 .help_str = "tunnel_tso show <port_id> " 4631 "Show TSO segment size of tunneled packets for csum engine", 4632 .tokens = { 4633 (void *)&cmd_tunnel_tso_set_tso, 4634 (void *)&cmd_tunnel_tso_show_mode, 4635 (void *)&cmd_tunnel_tso_set_portid, 4636 NULL, 4637 }, 4638 }; 4639 4640 /* *** SET GRO FOR A PORT *** */ 4641 struct cmd_gro_enable_result { 4642 cmdline_fixed_string_t cmd_set; 4643 cmdline_fixed_string_t cmd_port; 4644 cmdline_fixed_string_t cmd_keyword; 4645 cmdline_fixed_string_t cmd_onoff; 4646 portid_t cmd_pid; 4647 }; 4648 4649 static void 4650 cmd_gro_enable_parsed(void *parsed_result, 4651 __attribute__((unused)) struct cmdline *cl, 4652 __attribute__((unused)) void *data) 4653 { 4654 struct cmd_gro_enable_result *res; 4655 4656 res = parsed_result; 4657 if (!strcmp(res->cmd_keyword, "gro")) 4658 setup_gro(res->cmd_onoff, res->cmd_pid); 4659 } 4660 4661 cmdline_parse_token_string_t cmd_gro_enable_set = 4662 TOKEN_STRING_INITIALIZER(struct cmd_gro_enable_result, 4663 cmd_set, "set"); 4664 cmdline_parse_token_string_t cmd_gro_enable_port = 4665 TOKEN_STRING_INITIALIZER(struct cmd_gro_enable_result, 4666 cmd_keyword, "port"); 4667 cmdline_parse_token_num_t cmd_gro_enable_pid = 4668 TOKEN_NUM_INITIALIZER(struct cmd_gro_enable_result, 4669 cmd_pid, UINT16); 4670 cmdline_parse_token_string_t cmd_gro_enable_keyword = 4671 TOKEN_STRING_INITIALIZER(struct cmd_gro_enable_result, 4672 cmd_keyword, "gro"); 4673 cmdline_parse_token_string_t cmd_gro_enable_onoff = 4674 TOKEN_STRING_INITIALIZER(struct cmd_gro_enable_result, 4675 cmd_onoff, "on#off"); 4676 4677 cmdline_parse_inst_t cmd_gro_enable = { 4678 .f = cmd_gro_enable_parsed, 4679 .data = NULL, 4680 .help_str = "set port <port_id> gro on|off", 4681 .tokens = { 4682 (void *)&cmd_gro_enable_set, 4683 (void *)&cmd_gro_enable_port, 4684 (void *)&cmd_gro_enable_pid, 4685 (void *)&cmd_gro_enable_keyword, 4686 (void *)&cmd_gro_enable_onoff, 4687 NULL, 4688 }, 4689 }; 4690 4691 /* *** DISPLAY GRO CONFIGURATION *** */ 4692 struct cmd_gro_show_result { 4693 cmdline_fixed_string_t cmd_show; 4694 cmdline_fixed_string_t cmd_port; 4695 cmdline_fixed_string_t cmd_keyword; 4696 portid_t cmd_pid; 4697 }; 4698 4699 static void 4700 cmd_gro_show_parsed(void *parsed_result, 4701 __attribute__((unused)) struct cmdline *cl, 4702 __attribute__((unused)) void *data) 4703 { 4704 struct cmd_gro_show_result *res; 4705 4706 res = parsed_result; 4707 if (!strcmp(res->cmd_keyword, "gro")) 4708 show_gro(res->cmd_pid); 4709 } 4710 4711 cmdline_parse_token_string_t cmd_gro_show_show = 4712 TOKEN_STRING_INITIALIZER(struct cmd_gro_show_result, 4713 cmd_show, "show"); 4714 cmdline_parse_token_string_t cmd_gro_show_port = 4715 TOKEN_STRING_INITIALIZER(struct cmd_gro_show_result, 4716 cmd_port, "port"); 4717 cmdline_parse_token_num_t cmd_gro_show_pid = 4718 TOKEN_NUM_INITIALIZER(struct cmd_gro_show_result, 4719 cmd_pid, UINT16); 4720 cmdline_parse_token_string_t cmd_gro_show_keyword = 4721 TOKEN_STRING_INITIALIZER(struct cmd_gro_show_result, 4722 cmd_keyword, "gro"); 4723 4724 cmdline_parse_inst_t cmd_gro_show = { 4725 .f = cmd_gro_show_parsed, 4726 .data = NULL, 4727 .help_str = "show port <port_id> gro", 4728 .tokens = { 4729 (void *)&cmd_gro_show_show, 4730 (void *)&cmd_gro_show_port, 4731 (void *)&cmd_gro_show_pid, 4732 (void *)&cmd_gro_show_keyword, 4733 NULL, 4734 }, 4735 }; 4736 4737 /* *** SET FLUSH CYCLES FOR GRO *** */ 4738 struct cmd_gro_flush_result { 4739 cmdline_fixed_string_t cmd_set; 4740 cmdline_fixed_string_t cmd_keyword; 4741 cmdline_fixed_string_t cmd_flush; 4742 uint8_t cmd_cycles; 4743 }; 4744 4745 static void 4746 cmd_gro_flush_parsed(void *parsed_result, 4747 __attribute__((unused)) struct cmdline *cl, 4748 __attribute__((unused)) void *data) 4749 { 4750 struct cmd_gro_flush_result *res; 4751 4752 res = parsed_result; 4753 if ((!strcmp(res->cmd_keyword, "gro")) && 4754 (!strcmp(res->cmd_flush, "flush"))) 4755 setup_gro_flush_cycles(res->cmd_cycles); 4756 } 4757 4758 cmdline_parse_token_string_t cmd_gro_flush_set = 4759 TOKEN_STRING_INITIALIZER(struct cmd_gro_flush_result, 4760 cmd_set, "set"); 4761 cmdline_parse_token_string_t cmd_gro_flush_keyword = 4762 TOKEN_STRING_INITIALIZER(struct cmd_gro_flush_result, 4763 cmd_keyword, "gro"); 4764 cmdline_parse_token_string_t cmd_gro_flush_flush = 4765 TOKEN_STRING_INITIALIZER(struct cmd_gro_flush_result, 4766 cmd_flush, "flush"); 4767 cmdline_parse_token_num_t cmd_gro_flush_cycles = 4768 TOKEN_NUM_INITIALIZER(struct cmd_gro_flush_result, 4769 cmd_cycles, UINT8); 4770 4771 cmdline_parse_inst_t cmd_gro_flush = { 4772 .f = cmd_gro_flush_parsed, 4773 .data = NULL, 4774 .help_str = "set gro flush <cycles>", 4775 .tokens = { 4776 (void *)&cmd_gro_flush_set, 4777 (void *)&cmd_gro_flush_keyword, 4778 (void *)&cmd_gro_flush_flush, 4779 (void *)&cmd_gro_flush_cycles, 4780 NULL, 4781 }, 4782 }; 4783 4784 /* *** ENABLE/DISABLE GSO *** */ 4785 struct cmd_gso_enable_result { 4786 cmdline_fixed_string_t cmd_set; 4787 cmdline_fixed_string_t cmd_port; 4788 cmdline_fixed_string_t cmd_keyword; 4789 cmdline_fixed_string_t cmd_mode; 4790 portid_t cmd_pid; 4791 }; 4792 4793 static void 4794 cmd_gso_enable_parsed(void *parsed_result, 4795 __attribute__((unused)) struct cmdline *cl, 4796 __attribute__((unused)) void *data) 4797 { 4798 struct cmd_gso_enable_result *res; 4799 4800 res = parsed_result; 4801 if (!strcmp(res->cmd_keyword, "gso")) 4802 setup_gso(res->cmd_mode, res->cmd_pid); 4803 } 4804 4805 cmdline_parse_token_string_t cmd_gso_enable_set = 4806 TOKEN_STRING_INITIALIZER(struct cmd_gso_enable_result, 4807 cmd_set, "set"); 4808 cmdline_parse_token_string_t cmd_gso_enable_port = 4809 TOKEN_STRING_INITIALIZER(struct cmd_gso_enable_result, 4810 cmd_port, "port"); 4811 cmdline_parse_token_string_t cmd_gso_enable_keyword = 4812 TOKEN_STRING_INITIALIZER(struct cmd_gso_enable_result, 4813 cmd_keyword, "gso"); 4814 cmdline_parse_token_string_t cmd_gso_enable_mode = 4815 TOKEN_STRING_INITIALIZER(struct cmd_gso_enable_result, 4816 cmd_mode, "on#off"); 4817 cmdline_parse_token_num_t cmd_gso_enable_pid = 4818 TOKEN_NUM_INITIALIZER(struct cmd_gso_enable_result, 4819 cmd_pid, UINT16); 4820 4821 cmdline_parse_inst_t cmd_gso_enable = { 4822 .f = cmd_gso_enable_parsed, 4823 .data = NULL, 4824 .help_str = "set port <port_id> gso on|off", 4825 .tokens = { 4826 (void *)&cmd_gso_enable_set, 4827 (void *)&cmd_gso_enable_port, 4828 (void *)&cmd_gso_enable_pid, 4829 (void *)&cmd_gso_enable_keyword, 4830 (void *)&cmd_gso_enable_mode, 4831 NULL, 4832 }, 4833 }; 4834 4835 /* *** SET MAX PACKET LENGTH FOR GSO SEGMENTS *** */ 4836 struct cmd_gso_size_result { 4837 cmdline_fixed_string_t cmd_set; 4838 cmdline_fixed_string_t cmd_keyword; 4839 cmdline_fixed_string_t cmd_segsz; 4840 uint16_t cmd_size; 4841 }; 4842 4843 static void 4844 cmd_gso_size_parsed(void *parsed_result, 4845 __attribute__((unused)) struct cmdline *cl, 4846 __attribute__((unused)) void *data) 4847 { 4848 struct cmd_gso_size_result *res = parsed_result; 4849 4850 if (test_done == 0) { 4851 printf("Before setting GSO segsz, please first" 4852 " stop fowarding\n"); 4853 return; 4854 } 4855 4856 if (!strcmp(res->cmd_keyword, "gso") && 4857 !strcmp(res->cmd_segsz, "segsz")) { 4858 if (res->cmd_size < RTE_GSO_SEG_SIZE_MIN) 4859 printf("gso_size should be larger than %zu." 4860 " Please input a legal value\n", 4861 RTE_GSO_SEG_SIZE_MIN); 4862 else 4863 gso_max_segment_size = res->cmd_size; 4864 } 4865 } 4866 4867 cmdline_parse_token_string_t cmd_gso_size_set = 4868 TOKEN_STRING_INITIALIZER(struct cmd_gso_size_result, 4869 cmd_set, "set"); 4870 cmdline_parse_token_string_t cmd_gso_size_keyword = 4871 TOKEN_STRING_INITIALIZER(struct cmd_gso_size_result, 4872 cmd_keyword, "gso"); 4873 cmdline_parse_token_string_t cmd_gso_size_segsz = 4874 TOKEN_STRING_INITIALIZER(struct cmd_gso_size_result, 4875 cmd_segsz, "segsz"); 4876 cmdline_parse_token_num_t cmd_gso_size_size = 4877 TOKEN_NUM_INITIALIZER(struct cmd_gso_size_result, 4878 cmd_size, UINT16); 4879 4880 cmdline_parse_inst_t cmd_gso_size = { 4881 .f = cmd_gso_size_parsed, 4882 .data = NULL, 4883 .help_str = "set gso segsz <length>", 4884 .tokens = { 4885 (void *)&cmd_gso_size_set, 4886 (void *)&cmd_gso_size_keyword, 4887 (void *)&cmd_gso_size_segsz, 4888 (void *)&cmd_gso_size_size, 4889 NULL, 4890 }, 4891 }; 4892 4893 /* *** SHOW GSO CONFIGURATION *** */ 4894 struct cmd_gso_show_result { 4895 cmdline_fixed_string_t cmd_show; 4896 cmdline_fixed_string_t cmd_port; 4897 cmdline_fixed_string_t cmd_keyword; 4898 portid_t cmd_pid; 4899 }; 4900 4901 static void 4902 cmd_gso_show_parsed(void *parsed_result, 4903 __attribute__((unused)) struct cmdline *cl, 4904 __attribute__((unused)) void *data) 4905 { 4906 struct cmd_gso_show_result *res = parsed_result; 4907 4908 if (!rte_eth_dev_is_valid_port(res->cmd_pid)) { 4909 printf("invalid port id %u\n", res->cmd_pid); 4910 return; 4911 } 4912 if (!strcmp(res->cmd_keyword, "gso")) { 4913 if (gso_ports[res->cmd_pid].enable) { 4914 printf("Max GSO'd packet size: %uB\n" 4915 "Supported GSO types: TCP/IPv4, " 4916 "UDP/IPv4, VxLAN with inner " 4917 "TCP/IPv4 packet, GRE with inner " 4918 "TCP/IPv4 packet\n", 4919 gso_max_segment_size); 4920 } else 4921 printf("GSO is not enabled on Port %u\n", res->cmd_pid); 4922 } 4923 } 4924 4925 cmdline_parse_token_string_t cmd_gso_show_show = 4926 TOKEN_STRING_INITIALIZER(struct cmd_gso_show_result, 4927 cmd_show, "show"); 4928 cmdline_parse_token_string_t cmd_gso_show_port = 4929 TOKEN_STRING_INITIALIZER(struct cmd_gso_show_result, 4930 cmd_port, "port"); 4931 cmdline_parse_token_string_t cmd_gso_show_keyword = 4932 TOKEN_STRING_INITIALIZER(struct cmd_gso_show_result, 4933 cmd_keyword, "gso"); 4934 cmdline_parse_token_num_t cmd_gso_show_pid = 4935 TOKEN_NUM_INITIALIZER(struct cmd_gso_show_result, 4936 cmd_pid, UINT16); 4937 4938 cmdline_parse_inst_t cmd_gso_show = { 4939 .f = cmd_gso_show_parsed, 4940 .data = NULL, 4941 .help_str = "show port <port_id> gso", 4942 .tokens = { 4943 (void *)&cmd_gso_show_show, 4944 (void *)&cmd_gso_show_port, 4945 (void *)&cmd_gso_show_pid, 4946 (void *)&cmd_gso_show_keyword, 4947 NULL, 4948 }, 4949 }; 4950 4951 /* *** ENABLE/DISABLE FLUSH ON RX STREAMS *** */ 4952 struct cmd_set_flush_rx { 4953 cmdline_fixed_string_t set; 4954 cmdline_fixed_string_t flush_rx; 4955 cmdline_fixed_string_t mode; 4956 }; 4957 4958 static void 4959 cmd_set_flush_rx_parsed(void *parsed_result, 4960 __attribute__((unused)) struct cmdline *cl, 4961 __attribute__((unused)) void *data) 4962 { 4963 struct cmd_set_flush_rx *res = parsed_result; 4964 no_flush_rx = (uint8_t)((strcmp(res->mode, "on") == 0) ? 0 : 1); 4965 } 4966 4967 cmdline_parse_token_string_t cmd_setflushrx_set = 4968 TOKEN_STRING_INITIALIZER(struct cmd_set_flush_rx, 4969 set, "set"); 4970 cmdline_parse_token_string_t cmd_setflushrx_flush_rx = 4971 TOKEN_STRING_INITIALIZER(struct cmd_set_flush_rx, 4972 flush_rx, "flush_rx"); 4973 cmdline_parse_token_string_t cmd_setflushrx_mode = 4974 TOKEN_STRING_INITIALIZER(struct cmd_set_flush_rx, 4975 mode, "on#off"); 4976 4977 4978 cmdline_parse_inst_t cmd_set_flush_rx = { 4979 .f = cmd_set_flush_rx_parsed, 4980 .help_str = "set flush_rx on|off: Enable/Disable flush on rx streams", 4981 .data = NULL, 4982 .tokens = { 4983 (void *)&cmd_setflushrx_set, 4984 (void *)&cmd_setflushrx_flush_rx, 4985 (void *)&cmd_setflushrx_mode, 4986 NULL, 4987 }, 4988 }; 4989 4990 /* *** ENABLE/DISABLE LINK STATUS CHECK *** */ 4991 struct cmd_set_link_check { 4992 cmdline_fixed_string_t set; 4993 cmdline_fixed_string_t link_check; 4994 cmdline_fixed_string_t mode; 4995 }; 4996 4997 static void 4998 cmd_set_link_check_parsed(void *parsed_result, 4999 __attribute__((unused)) struct cmdline *cl, 5000 __attribute__((unused)) void *data) 5001 { 5002 struct cmd_set_link_check *res = parsed_result; 5003 no_link_check = (uint8_t)((strcmp(res->mode, "on") == 0) ? 0 : 1); 5004 } 5005 5006 cmdline_parse_token_string_t cmd_setlinkcheck_set = 5007 TOKEN_STRING_INITIALIZER(struct cmd_set_link_check, 5008 set, "set"); 5009 cmdline_parse_token_string_t cmd_setlinkcheck_link_check = 5010 TOKEN_STRING_INITIALIZER(struct cmd_set_link_check, 5011 link_check, "link_check"); 5012 cmdline_parse_token_string_t cmd_setlinkcheck_mode = 5013 TOKEN_STRING_INITIALIZER(struct cmd_set_link_check, 5014 mode, "on#off"); 5015 5016 5017 cmdline_parse_inst_t cmd_set_link_check = { 5018 .f = cmd_set_link_check_parsed, 5019 .help_str = "set link_check on|off: Enable/Disable link status check " 5020 "when starting/stopping a port", 5021 .data = NULL, 5022 .tokens = { 5023 (void *)&cmd_setlinkcheck_set, 5024 (void *)&cmd_setlinkcheck_link_check, 5025 (void *)&cmd_setlinkcheck_mode, 5026 NULL, 5027 }, 5028 }; 5029 5030 /* *** SET NIC BYPASS MODE *** */ 5031 struct cmd_set_bypass_mode_result { 5032 cmdline_fixed_string_t set; 5033 cmdline_fixed_string_t bypass; 5034 cmdline_fixed_string_t mode; 5035 cmdline_fixed_string_t value; 5036 portid_t port_id; 5037 }; 5038 5039 static void 5040 cmd_set_bypass_mode_parsed(void *parsed_result, 5041 __attribute__((unused)) struct cmdline *cl, 5042 __attribute__((unused)) void *data) 5043 { 5044 struct cmd_set_bypass_mode_result *res = parsed_result; 5045 portid_t port_id = res->port_id; 5046 int32_t rc = -EINVAL; 5047 5048 #if defined RTE_LIBRTE_IXGBE_PMD && defined RTE_LIBRTE_IXGBE_BYPASS 5049 uint32_t bypass_mode = RTE_PMD_IXGBE_BYPASS_MODE_NORMAL; 5050 5051 if (!strcmp(res->value, "bypass")) 5052 bypass_mode = RTE_PMD_IXGBE_BYPASS_MODE_BYPASS; 5053 else if (!strcmp(res->value, "isolate")) 5054 bypass_mode = RTE_PMD_IXGBE_BYPASS_MODE_ISOLATE; 5055 else 5056 bypass_mode = RTE_PMD_IXGBE_BYPASS_MODE_NORMAL; 5057 5058 /* Set the bypass mode for the relevant port. */ 5059 rc = rte_pmd_ixgbe_bypass_state_set(port_id, &bypass_mode); 5060 #endif 5061 if (rc != 0) 5062 printf("\t Failed to set bypass mode for port = %d.\n", port_id); 5063 } 5064 5065 cmdline_parse_token_string_t cmd_setbypass_mode_set = 5066 TOKEN_STRING_INITIALIZER(struct cmd_set_bypass_mode_result, 5067 set, "set"); 5068 cmdline_parse_token_string_t cmd_setbypass_mode_bypass = 5069 TOKEN_STRING_INITIALIZER(struct cmd_set_bypass_mode_result, 5070 bypass, "bypass"); 5071 cmdline_parse_token_string_t cmd_setbypass_mode_mode = 5072 TOKEN_STRING_INITIALIZER(struct cmd_set_bypass_mode_result, 5073 mode, "mode"); 5074 cmdline_parse_token_string_t cmd_setbypass_mode_value = 5075 TOKEN_STRING_INITIALIZER(struct cmd_set_bypass_mode_result, 5076 value, "normal#bypass#isolate"); 5077 cmdline_parse_token_num_t cmd_setbypass_mode_port = 5078 TOKEN_NUM_INITIALIZER(struct cmd_set_bypass_mode_result, 5079 port_id, UINT16); 5080 5081 cmdline_parse_inst_t cmd_set_bypass_mode = { 5082 .f = cmd_set_bypass_mode_parsed, 5083 .help_str = "set bypass mode normal|bypass|isolate <port_id>: " 5084 "Set the NIC bypass mode for port_id", 5085 .data = NULL, 5086 .tokens = { 5087 (void *)&cmd_setbypass_mode_set, 5088 (void *)&cmd_setbypass_mode_bypass, 5089 (void *)&cmd_setbypass_mode_mode, 5090 (void *)&cmd_setbypass_mode_value, 5091 (void *)&cmd_setbypass_mode_port, 5092 NULL, 5093 }, 5094 }; 5095 5096 /* *** SET NIC BYPASS EVENT *** */ 5097 struct cmd_set_bypass_event_result { 5098 cmdline_fixed_string_t set; 5099 cmdline_fixed_string_t bypass; 5100 cmdline_fixed_string_t event; 5101 cmdline_fixed_string_t event_value; 5102 cmdline_fixed_string_t mode; 5103 cmdline_fixed_string_t mode_value; 5104 portid_t port_id; 5105 }; 5106 5107 static void 5108 cmd_set_bypass_event_parsed(void *parsed_result, 5109 __attribute__((unused)) struct cmdline *cl, 5110 __attribute__((unused)) void *data) 5111 { 5112 int32_t rc = -EINVAL; 5113 struct cmd_set_bypass_event_result *res = parsed_result; 5114 portid_t port_id = res->port_id; 5115 5116 #if defined RTE_LIBRTE_IXGBE_PMD && defined RTE_LIBRTE_IXGBE_BYPASS 5117 uint32_t bypass_event = RTE_PMD_IXGBE_BYPASS_EVENT_NONE; 5118 uint32_t bypass_mode = RTE_PMD_IXGBE_BYPASS_MODE_NORMAL; 5119 5120 if (!strcmp(res->event_value, "timeout")) 5121 bypass_event = RTE_PMD_IXGBE_BYPASS_EVENT_TIMEOUT; 5122 else if (!strcmp(res->event_value, "os_on")) 5123 bypass_event = RTE_PMD_IXGBE_BYPASS_EVENT_OS_ON; 5124 else if (!strcmp(res->event_value, "os_off")) 5125 bypass_event = RTE_PMD_IXGBE_BYPASS_EVENT_OS_OFF; 5126 else if (!strcmp(res->event_value, "power_on")) 5127 bypass_event = RTE_PMD_IXGBE_BYPASS_EVENT_POWER_ON; 5128 else if (!strcmp(res->event_value, "power_off")) 5129 bypass_event = RTE_PMD_IXGBE_BYPASS_EVENT_POWER_OFF; 5130 else 5131 bypass_event = RTE_PMD_IXGBE_BYPASS_EVENT_NONE; 5132 5133 if (!strcmp(res->mode_value, "bypass")) 5134 bypass_mode = RTE_PMD_IXGBE_BYPASS_MODE_BYPASS; 5135 else if (!strcmp(res->mode_value, "isolate")) 5136 bypass_mode = RTE_PMD_IXGBE_BYPASS_MODE_ISOLATE; 5137 else 5138 bypass_mode = RTE_PMD_IXGBE_BYPASS_MODE_NORMAL; 5139 5140 /* Set the watchdog timeout. */ 5141 if (bypass_event == RTE_PMD_IXGBE_BYPASS_EVENT_TIMEOUT) { 5142 5143 rc = -EINVAL; 5144 if (RTE_PMD_IXGBE_BYPASS_TMT_VALID(bypass_timeout)) { 5145 rc = rte_pmd_ixgbe_bypass_wd_timeout_store(port_id, 5146 bypass_timeout); 5147 } 5148 if (rc != 0) { 5149 printf("Failed to set timeout value %u " 5150 "for port %d, errto code: %d.\n", 5151 bypass_timeout, port_id, rc); 5152 } 5153 } 5154 5155 /* Set the bypass event to transition to bypass mode. */ 5156 rc = rte_pmd_ixgbe_bypass_event_store(port_id, bypass_event, 5157 bypass_mode); 5158 #endif 5159 5160 if (rc != 0) 5161 printf("\t Failed to set bypass event for port = %d.\n", 5162 port_id); 5163 } 5164 5165 cmdline_parse_token_string_t cmd_setbypass_event_set = 5166 TOKEN_STRING_INITIALIZER(struct cmd_set_bypass_event_result, 5167 set, "set"); 5168 cmdline_parse_token_string_t cmd_setbypass_event_bypass = 5169 TOKEN_STRING_INITIALIZER(struct cmd_set_bypass_event_result, 5170 bypass, "bypass"); 5171 cmdline_parse_token_string_t cmd_setbypass_event_event = 5172 TOKEN_STRING_INITIALIZER(struct cmd_set_bypass_event_result, 5173 event, "event"); 5174 cmdline_parse_token_string_t cmd_setbypass_event_event_value = 5175 TOKEN_STRING_INITIALIZER(struct cmd_set_bypass_event_result, 5176 event_value, "none#timeout#os_off#os_on#power_on#power_off"); 5177 cmdline_parse_token_string_t cmd_setbypass_event_mode = 5178 TOKEN_STRING_INITIALIZER(struct cmd_set_bypass_event_result, 5179 mode, "mode"); 5180 cmdline_parse_token_string_t cmd_setbypass_event_mode_value = 5181 TOKEN_STRING_INITIALIZER(struct cmd_set_bypass_event_result, 5182 mode_value, "normal#bypass#isolate"); 5183 cmdline_parse_token_num_t cmd_setbypass_event_port = 5184 TOKEN_NUM_INITIALIZER(struct cmd_set_bypass_event_result, 5185 port_id, UINT16); 5186 5187 cmdline_parse_inst_t cmd_set_bypass_event = { 5188 .f = cmd_set_bypass_event_parsed, 5189 .help_str = "set bypass event none|timeout|os_on|os_off|power_on|" 5190 "power_off mode normal|bypass|isolate <port_id>: " 5191 "Set the NIC bypass event mode for port_id", 5192 .data = NULL, 5193 .tokens = { 5194 (void *)&cmd_setbypass_event_set, 5195 (void *)&cmd_setbypass_event_bypass, 5196 (void *)&cmd_setbypass_event_event, 5197 (void *)&cmd_setbypass_event_event_value, 5198 (void *)&cmd_setbypass_event_mode, 5199 (void *)&cmd_setbypass_event_mode_value, 5200 (void *)&cmd_setbypass_event_port, 5201 NULL, 5202 }, 5203 }; 5204 5205 5206 /* *** SET NIC BYPASS TIMEOUT *** */ 5207 struct cmd_set_bypass_timeout_result { 5208 cmdline_fixed_string_t set; 5209 cmdline_fixed_string_t bypass; 5210 cmdline_fixed_string_t timeout; 5211 cmdline_fixed_string_t value; 5212 }; 5213 5214 static void 5215 cmd_set_bypass_timeout_parsed(void *parsed_result, 5216 __attribute__((unused)) struct cmdline *cl, 5217 __attribute__((unused)) void *data) 5218 { 5219 __rte_unused struct cmd_set_bypass_timeout_result *res = parsed_result; 5220 5221 #if defined RTE_LIBRTE_IXGBE_PMD && defined RTE_LIBRTE_IXGBE_BYPASS 5222 if (!strcmp(res->value, "1.5")) 5223 bypass_timeout = RTE_PMD_IXGBE_BYPASS_TMT_1_5_SEC; 5224 else if (!strcmp(res->value, "2")) 5225 bypass_timeout = RTE_PMD_IXGBE_BYPASS_TMT_2_SEC; 5226 else if (!strcmp(res->value, "3")) 5227 bypass_timeout = RTE_PMD_IXGBE_BYPASS_TMT_3_SEC; 5228 else if (!strcmp(res->value, "4")) 5229 bypass_timeout = RTE_PMD_IXGBE_BYPASS_TMT_4_SEC; 5230 else if (!strcmp(res->value, "8")) 5231 bypass_timeout = RTE_PMD_IXGBE_BYPASS_TMT_8_SEC; 5232 else if (!strcmp(res->value, "16")) 5233 bypass_timeout = RTE_PMD_IXGBE_BYPASS_TMT_16_SEC; 5234 else if (!strcmp(res->value, "32")) 5235 bypass_timeout = RTE_PMD_IXGBE_BYPASS_TMT_32_SEC; 5236 else 5237 bypass_timeout = RTE_PMD_IXGBE_BYPASS_TMT_OFF; 5238 #endif 5239 } 5240 5241 cmdline_parse_token_string_t cmd_setbypass_timeout_set = 5242 TOKEN_STRING_INITIALIZER(struct cmd_set_bypass_timeout_result, 5243 set, "set"); 5244 cmdline_parse_token_string_t cmd_setbypass_timeout_bypass = 5245 TOKEN_STRING_INITIALIZER(struct cmd_set_bypass_timeout_result, 5246 bypass, "bypass"); 5247 cmdline_parse_token_string_t cmd_setbypass_timeout_timeout = 5248 TOKEN_STRING_INITIALIZER(struct cmd_set_bypass_timeout_result, 5249 timeout, "timeout"); 5250 cmdline_parse_token_string_t cmd_setbypass_timeout_value = 5251 TOKEN_STRING_INITIALIZER(struct cmd_set_bypass_timeout_result, 5252 value, "0#1.5#2#3#4#8#16#32"); 5253 5254 cmdline_parse_inst_t cmd_set_bypass_timeout = { 5255 .f = cmd_set_bypass_timeout_parsed, 5256 .help_str = "set bypass timeout 0|1.5|2|3|4|8|16|32: " 5257 "Set the NIC bypass watchdog timeout in seconds", 5258 .data = NULL, 5259 .tokens = { 5260 (void *)&cmd_setbypass_timeout_set, 5261 (void *)&cmd_setbypass_timeout_bypass, 5262 (void *)&cmd_setbypass_timeout_timeout, 5263 (void *)&cmd_setbypass_timeout_value, 5264 NULL, 5265 }, 5266 }; 5267 5268 /* *** SHOW NIC BYPASS MODE *** */ 5269 struct cmd_show_bypass_config_result { 5270 cmdline_fixed_string_t show; 5271 cmdline_fixed_string_t bypass; 5272 cmdline_fixed_string_t config; 5273 portid_t port_id; 5274 }; 5275 5276 static void 5277 cmd_show_bypass_config_parsed(void *parsed_result, 5278 __attribute__((unused)) struct cmdline *cl, 5279 __attribute__((unused)) void *data) 5280 { 5281 struct cmd_show_bypass_config_result *res = parsed_result; 5282 portid_t port_id = res->port_id; 5283 int rc = -EINVAL; 5284 #if defined RTE_LIBRTE_IXGBE_PMD && defined RTE_LIBRTE_IXGBE_BYPASS 5285 uint32_t event_mode; 5286 uint32_t bypass_mode; 5287 uint32_t timeout = bypass_timeout; 5288 int i; 5289 5290 static const char * const timeouts[RTE_PMD_IXGBE_BYPASS_TMT_NUM] = 5291 {"off", "1.5", "2", "3", "4", "8", "16", "32"}; 5292 static const char * const modes[RTE_PMD_IXGBE_BYPASS_MODE_NUM] = 5293 {"UNKNOWN", "normal", "bypass", "isolate"}; 5294 static const char * const events[RTE_PMD_IXGBE_BYPASS_EVENT_NUM] = { 5295 "NONE", 5296 "OS/board on", 5297 "power supply on", 5298 "OS/board off", 5299 "power supply off", 5300 "timeout"}; 5301 int num_events = (sizeof events) / (sizeof events[0]); 5302 5303 /* Display the bypass mode.*/ 5304 if (rte_pmd_ixgbe_bypass_state_show(port_id, &bypass_mode) != 0) { 5305 printf("\tFailed to get bypass mode for port = %d\n", port_id); 5306 return; 5307 } 5308 else { 5309 if (!RTE_PMD_IXGBE_BYPASS_MODE_VALID(bypass_mode)) 5310 bypass_mode = RTE_PMD_IXGBE_BYPASS_MODE_NONE; 5311 5312 printf("\tbypass mode = %s\n", modes[bypass_mode]); 5313 } 5314 5315 /* Display the bypass timeout.*/ 5316 if (!RTE_PMD_IXGBE_BYPASS_TMT_VALID(timeout)) 5317 timeout = RTE_PMD_IXGBE_BYPASS_TMT_OFF; 5318 5319 printf("\tbypass timeout = %s\n", timeouts[timeout]); 5320 5321 /* Display the bypass events and associated modes. */ 5322 for (i = RTE_PMD_IXGBE_BYPASS_EVENT_START; i < num_events; i++) { 5323 5324 if (rte_pmd_ixgbe_bypass_event_show(port_id, i, &event_mode)) { 5325 printf("\tFailed to get bypass mode for event = %s\n", 5326 events[i]); 5327 } else { 5328 if (!RTE_PMD_IXGBE_BYPASS_MODE_VALID(event_mode)) 5329 event_mode = RTE_PMD_IXGBE_BYPASS_MODE_NONE; 5330 5331 printf("\tbypass event: %-16s = %s\n", events[i], 5332 modes[event_mode]); 5333 } 5334 } 5335 #endif 5336 if (rc != 0) 5337 printf("\tFailed to get bypass configuration for port = %d\n", 5338 port_id); 5339 } 5340 5341 cmdline_parse_token_string_t cmd_showbypass_config_show = 5342 TOKEN_STRING_INITIALIZER(struct cmd_show_bypass_config_result, 5343 show, "show"); 5344 cmdline_parse_token_string_t cmd_showbypass_config_bypass = 5345 TOKEN_STRING_INITIALIZER(struct cmd_show_bypass_config_result, 5346 bypass, "bypass"); 5347 cmdline_parse_token_string_t cmd_showbypass_config_config = 5348 TOKEN_STRING_INITIALIZER(struct cmd_show_bypass_config_result, 5349 config, "config"); 5350 cmdline_parse_token_num_t cmd_showbypass_config_port = 5351 TOKEN_NUM_INITIALIZER(struct cmd_show_bypass_config_result, 5352 port_id, UINT16); 5353 5354 cmdline_parse_inst_t cmd_show_bypass_config = { 5355 .f = cmd_show_bypass_config_parsed, 5356 .help_str = "show bypass config <port_id>: " 5357 "Show the NIC bypass config for port_id", 5358 .data = NULL, 5359 .tokens = { 5360 (void *)&cmd_showbypass_config_show, 5361 (void *)&cmd_showbypass_config_bypass, 5362 (void *)&cmd_showbypass_config_config, 5363 (void *)&cmd_showbypass_config_port, 5364 NULL, 5365 }, 5366 }; 5367 5368 #ifdef RTE_LIBRTE_PMD_BOND 5369 /* *** SET BONDING MODE *** */ 5370 struct cmd_set_bonding_mode_result { 5371 cmdline_fixed_string_t set; 5372 cmdline_fixed_string_t bonding; 5373 cmdline_fixed_string_t mode; 5374 uint8_t value; 5375 portid_t port_id; 5376 }; 5377 5378 static void cmd_set_bonding_mode_parsed(void *parsed_result, 5379 __attribute__((unused)) struct cmdline *cl, 5380 __attribute__((unused)) void *data) 5381 { 5382 struct cmd_set_bonding_mode_result *res = parsed_result; 5383 portid_t port_id = res->port_id; 5384 5385 /* Set the bonding mode for the relevant port. */ 5386 if (0 != rte_eth_bond_mode_set(port_id, res->value)) 5387 printf("\t Failed to set bonding mode for port = %d.\n", port_id); 5388 } 5389 5390 cmdline_parse_token_string_t cmd_setbonding_mode_set = 5391 TOKEN_STRING_INITIALIZER(struct cmd_set_bonding_mode_result, 5392 set, "set"); 5393 cmdline_parse_token_string_t cmd_setbonding_mode_bonding = 5394 TOKEN_STRING_INITIALIZER(struct cmd_set_bonding_mode_result, 5395 bonding, "bonding"); 5396 cmdline_parse_token_string_t cmd_setbonding_mode_mode = 5397 TOKEN_STRING_INITIALIZER(struct cmd_set_bonding_mode_result, 5398 mode, "mode"); 5399 cmdline_parse_token_num_t cmd_setbonding_mode_value = 5400 TOKEN_NUM_INITIALIZER(struct cmd_set_bonding_mode_result, 5401 value, UINT8); 5402 cmdline_parse_token_num_t cmd_setbonding_mode_port = 5403 TOKEN_NUM_INITIALIZER(struct cmd_set_bonding_mode_result, 5404 port_id, UINT16); 5405 5406 cmdline_parse_inst_t cmd_set_bonding_mode = { 5407 .f = cmd_set_bonding_mode_parsed, 5408 .help_str = "set bonding mode <mode_value> <port_id>: " 5409 "Set the bonding mode for port_id", 5410 .data = NULL, 5411 .tokens = { 5412 (void *) &cmd_setbonding_mode_set, 5413 (void *) &cmd_setbonding_mode_bonding, 5414 (void *) &cmd_setbonding_mode_mode, 5415 (void *) &cmd_setbonding_mode_value, 5416 (void *) &cmd_setbonding_mode_port, 5417 NULL 5418 } 5419 }; 5420 5421 /* *** SET BONDING SLOW_QUEUE SW/HW *** */ 5422 struct cmd_set_bonding_lacp_dedicated_queues_result { 5423 cmdline_fixed_string_t set; 5424 cmdline_fixed_string_t bonding; 5425 cmdline_fixed_string_t lacp; 5426 cmdline_fixed_string_t dedicated_queues; 5427 portid_t port_id; 5428 cmdline_fixed_string_t mode; 5429 }; 5430 5431 static void cmd_set_bonding_lacp_dedicated_queues_parsed(void *parsed_result, 5432 __attribute__((unused)) struct cmdline *cl, 5433 __attribute__((unused)) void *data) 5434 { 5435 struct cmd_set_bonding_lacp_dedicated_queues_result *res = parsed_result; 5436 portid_t port_id = res->port_id; 5437 struct rte_port *port; 5438 5439 port = &ports[port_id]; 5440 5441 /** Check if the port is not started **/ 5442 if (port->port_status != RTE_PORT_STOPPED) { 5443 printf("Please stop port %d first\n", port_id); 5444 return; 5445 } 5446 5447 if (!strcmp(res->mode, "enable")) { 5448 if (rte_eth_bond_8023ad_dedicated_queues_enable(port_id) == 0) 5449 printf("Dedicate queues for LACP control packets" 5450 " enabled\n"); 5451 else 5452 printf("Enabling dedicate queues for LACP control " 5453 "packets on port %d failed\n", port_id); 5454 } else if (!strcmp(res->mode, "disable")) { 5455 if (rte_eth_bond_8023ad_dedicated_queues_disable(port_id) == 0) 5456 printf("Dedicated queues for LACP control packets " 5457 "disabled\n"); 5458 else 5459 printf("Disabling dedicated queues for LACP control " 5460 "traffic on port %d failed\n", port_id); 5461 } 5462 } 5463 5464 cmdline_parse_token_string_t cmd_setbonding_lacp_dedicated_queues_set = 5465 TOKEN_STRING_INITIALIZER(struct cmd_set_bonding_lacp_dedicated_queues_result, 5466 set, "set"); 5467 cmdline_parse_token_string_t cmd_setbonding_lacp_dedicated_queues_bonding = 5468 TOKEN_STRING_INITIALIZER(struct cmd_set_bonding_lacp_dedicated_queues_result, 5469 bonding, "bonding"); 5470 cmdline_parse_token_string_t cmd_setbonding_lacp_dedicated_queues_lacp = 5471 TOKEN_STRING_INITIALIZER(struct cmd_set_bonding_lacp_dedicated_queues_result, 5472 lacp, "lacp"); 5473 cmdline_parse_token_string_t cmd_setbonding_lacp_dedicated_queues_dedicated_queues = 5474 TOKEN_STRING_INITIALIZER(struct cmd_set_bonding_lacp_dedicated_queues_result, 5475 dedicated_queues, "dedicated_queues"); 5476 cmdline_parse_token_num_t cmd_setbonding_lacp_dedicated_queues_port_id = 5477 TOKEN_NUM_INITIALIZER(struct cmd_set_bonding_lacp_dedicated_queues_result, 5478 port_id, UINT16); 5479 cmdline_parse_token_string_t cmd_setbonding_lacp_dedicated_queues_mode = 5480 TOKEN_STRING_INITIALIZER(struct cmd_set_bonding_lacp_dedicated_queues_result, 5481 mode, "enable#disable"); 5482 5483 cmdline_parse_inst_t cmd_set_lacp_dedicated_queues = { 5484 .f = cmd_set_bonding_lacp_dedicated_queues_parsed, 5485 .help_str = "set bonding lacp dedicated_queues <port_id> " 5486 "enable|disable: " 5487 "Enable/disable dedicated queues for LACP control traffic for port_id", 5488 .data = NULL, 5489 .tokens = { 5490 (void *)&cmd_setbonding_lacp_dedicated_queues_set, 5491 (void *)&cmd_setbonding_lacp_dedicated_queues_bonding, 5492 (void *)&cmd_setbonding_lacp_dedicated_queues_lacp, 5493 (void *)&cmd_setbonding_lacp_dedicated_queues_dedicated_queues, 5494 (void *)&cmd_setbonding_lacp_dedicated_queues_port_id, 5495 (void *)&cmd_setbonding_lacp_dedicated_queues_mode, 5496 NULL 5497 } 5498 }; 5499 5500 /* *** SET BALANCE XMIT POLICY *** */ 5501 struct cmd_set_bonding_balance_xmit_policy_result { 5502 cmdline_fixed_string_t set; 5503 cmdline_fixed_string_t bonding; 5504 cmdline_fixed_string_t balance_xmit_policy; 5505 portid_t port_id; 5506 cmdline_fixed_string_t policy; 5507 }; 5508 5509 static void cmd_set_bonding_balance_xmit_policy_parsed(void *parsed_result, 5510 __attribute__((unused)) struct cmdline *cl, 5511 __attribute__((unused)) void *data) 5512 { 5513 struct cmd_set_bonding_balance_xmit_policy_result *res = parsed_result; 5514 portid_t port_id = res->port_id; 5515 uint8_t policy; 5516 5517 if (!strcmp(res->policy, "l2")) { 5518 policy = BALANCE_XMIT_POLICY_LAYER2; 5519 } else if (!strcmp(res->policy, "l23")) { 5520 policy = BALANCE_XMIT_POLICY_LAYER23; 5521 } else if (!strcmp(res->policy, "l34")) { 5522 policy = BALANCE_XMIT_POLICY_LAYER34; 5523 } else { 5524 printf("\t Invalid xmit policy selection"); 5525 return; 5526 } 5527 5528 /* Set the bonding mode for the relevant port. */ 5529 if (0 != rte_eth_bond_xmit_policy_set(port_id, policy)) { 5530 printf("\t Failed to set bonding balance xmit policy for port = %d.\n", 5531 port_id); 5532 } 5533 } 5534 5535 cmdline_parse_token_string_t cmd_setbonding_balance_xmit_policy_set = 5536 TOKEN_STRING_INITIALIZER(struct cmd_set_bonding_balance_xmit_policy_result, 5537 set, "set"); 5538 cmdline_parse_token_string_t cmd_setbonding_balance_xmit_policy_bonding = 5539 TOKEN_STRING_INITIALIZER(struct cmd_set_bonding_balance_xmit_policy_result, 5540 bonding, "bonding"); 5541 cmdline_parse_token_string_t cmd_setbonding_balance_xmit_policy_balance_xmit_policy = 5542 TOKEN_STRING_INITIALIZER(struct cmd_set_bonding_balance_xmit_policy_result, 5543 balance_xmit_policy, "balance_xmit_policy"); 5544 cmdline_parse_token_num_t cmd_setbonding_balance_xmit_policy_port = 5545 TOKEN_NUM_INITIALIZER(struct cmd_set_bonding_balance_xmit_policy_result, 5546 port_id, UINT16); 5547 cmdline_parse_token_string_t cmd_setbonding_balance_xmit_policy_policy = 5548 TOKEN_STRING_INITIALIZER(struct cmd_set_bonding_balance_xmit_policy_result, 5549 policy, "l2#l23#l34"); 5550 5551 cmdline_parse_inst_t cmd_set_balance_xmit_policy = { 5552 .f = cmd_set_bonding_balance_xmit_policy_parsed, 5553 .help_str = "set bonding balance_xmit_policy <port_id> " 5554 "l2|l23|l34: " 5555 "Set the bonding balance_xmit_policy for port_id", 5556 .data = NULL, 5557 .tokens = { 5558 (void *)&cmd_setbonding_balance_xmit_policy_set, 5559 (void *)&cmd_setbonding_balance_xmit_policy_bonding, 5560 (void *)&cmd_setbonding_balance_xmit_policy_balance_xmit_policy, 5561 (void *)&cmd_setbonding_balance_xmit_policy_port, 5562 (void *)&cmd_setbonding_balance_xmit_policy_policy, 5563 NULL 5564 } 5565 }; 5566 5567 /* *** SHOW NIC BONDING CONFIGURATION *** */ 5568 struct cmd_show_bonding_config_result { 5569 cmdline_fixed_string_t show; 5570 cmdline_fixed_string_t bonding; 5571 cmdline_fixed_string_t config; 5572 portid_t port_id; 5573 }; 5574 5575 static void cmd_show_bonding_config_parsed(void *parsed_result, 5576 __attribute__((unused)) struct cmdline *cl, 5577 __attribute__((unused)) void *data) 5578 { 5579 struct cmd_show_bonding_config_result *res = parsed_result; 5580 int bonding_mode, agg_mode; 5581 portid_t slaves[RTE_MAX_ETHPORTS]; 5582 int num_slaves, num_active_slaves; 5583 int primary_id; 5584 int i; 5585 portid_t port_id = res->port_id; 5586 5587 /* Display the bonding mode.*/ 5588 bonding_mode = rte_eth_bond_mode_get(port_id); 5589 if (bonding_mode < 0) { 5590 printf("\tFailed to get bonding mode for port = %d\n", port_id); 5591 return; 5592 } else 5593 printf("\tBonding mode: %d\n", bonding_mode); 5594 5595 if (bonding_mode == BONDING_MODE_BALANCE) { 5596 int balance_xmit_policy; 5597 5598 balance_xmit_policy = rte_eth_bond_xmit_policy_get(port_id); 5599 if (balance_xmit_policy < 0) { 5600 printf("\tFailed to get balance xmit policy for port = %d\n", 5601 port_id); 5602 return; 5603 } else { 5604 printf("\tBalance Xmit Policy: "); 5605 5606 switch (balance_xmit_policy) { 5607 case BALANCE_XMIT_POLICY_LAYER2: 5608 printf("BALANCE_XMIT_POLICY_LAYER2"); 5609 break; 5610 case BALANCE_XMIT_POLICY_LAYER23: 5611 printf("BALANCE_XMIT_POLICY_LAYER23"); 5612 break; 5613 case BALANCE_XMIT_POLICY_LAYER34: 5614 printf("BALANCE_XMIT_POLICY_LAYER34"); 5615 break; 5616 } 5617 printf("\n"); 5618 } 5619 } 5620 5621 if (bonding_mode == BONDING_MODE_8023AD) { 5622 agg_mode = rte_eth_bond_8023ad_agg_selection_get(port_id); 5623 printf("\tIEEE802.3AD Aggregator Mode: "); 5624 switch (agg_mode) { 5625 case AGG_BANDWIDTH: 5626 printf("bandwidth"); 5627 break; 5628 case AGG_STABLE: 5629 printf("stable"); 5630 break; 5631 case AGG_COUNT: 5632 printf("count"); 5633 break; 5634 } 5635 printf("\n"); 5636 } 5637 5638 num_slaves = rte_eth_bond_slaves_get(port_id, slaves, RTE_MAX_ETHPORTS); 5639 5640 if (num_slaves < 0) { 5641 printf("\tFailed to get slave list for port = %d\n", port_id); 5642 return; 5643 } 5644 if (num_slaves > 0) { 5645 printf("\tSlaves (%d): [", num_slaves); 5646 for (i = 0; i < num_slaves - 1; i++) 5647 printf("%d ", slaves[i]); 5648 5649 printf("%d]\n", slaves[num_slaves - 1]); 5650 } else { 5651 printf("\tSlaves: []\n"); 5652 5653 } 5654 5655 num_active_slaves = rte_eth_bond_active_slaves_get(port_id, slaves, 5656 RTE_MAX_ETHPORTS); 5657 5658 if (num_active_slaves < 0) { 5659 printf("\tFailed to get active slave list for port = %d\n", port_id); 5660 return; 5661 } 5662 if (num_active_slaves > 0) { 5663 printf("\tActive Slaves (%d): [", num_active_slaves); 5664 for (i = 0; i < num_active_slaves - 1; i++) 5665 printf("%d ", slaves[i]); 5666 5667 printf("%d]\n", slaves[num_active_slaves - 1]); 5668 5669 } else { 5670 printf("\tActive Slaves: []\n"); 5671 5672 } 5673 5674 primary_id = rte_eth_bond_primary_get(port_id); 5675 if (primary_id < 0) { 5676 printf("\tFailed to get primary slave for port = %d\n", port_id); 5677 return; 5678 } else 5679 printf("\tPrimary: [%d]\n", primary_id); 5680 5681 } 5682 5683 cmdline_parse_token_string_t cmd_showbonding_config_show = 5684 TOKEN_STRING_INITIALIZER(struct cmd_show_bonding_config_result, 5685 show, "show"); 5686 cmdline_parse_token_string_t cmd_showbonding_config_bonding = 5687 TOKEN_STRING_INITIALIZER(struct cmd_show_bonding_config_result, 5688 bonding, "bonding"); 5689 cmdline_parse_token_string_t cmd_showbonding_config_config = 5690 TOKEN_STRING_INITIALIZER(struct cmd_show_bonding_config_result, 5691 config, "config"); 5692 cmdline_parse_token_num_t cmd_showbonding_config_port = 5693 TOKEN_NUM_INITIALIZER(struct cmd_show_bonding_config_result, 5694 port_id, UINT16); 5695 5696 cmdline_parse_inst_t cmd_show_bonding_config = { 5697 .f = cmd_show_bonding_config_parsed, 5698 .help_str = "show bonding config <port_id>: " 5699 "Show the bonding config for port_id", 5700 .data = NULL, 5701 .tokens = { 5702 (void *)&cmd_showbonding_config_show, 5703 (void *)&cmd_showbonding_config_bonding, 5704 (void *)&cmd_showbonding_config_config, 5705 (void *)&cmd_showbonding_config_port, 5706 NULL 5707 } 5708 }; 5709 5710 /* *** SET BONDING PRIMARY *** */ 5711 struct cmd_set_bonding_primary_result { 5712 cmdline_fixed_string_t set; 5713 cmdline_fixed_string_t bonding; 5714 cmdline_fixed_string_t primary; 5715 portid_t slave_id; 5716 portid_t port_id; 5717 }; 5718 5719 static void cmd_set_bonding_primary_parsed(void *parsed_result, 5720 __attribute__((unused)) struct cmdline *cl, 5721 __attribute__((unused)) void *data) 5722 { 5723 struct cmd_set_bonding_primary_result *res = parsed_result; 5724 portid_t master_port_id = res->port_id; 5725 portid_t slave_port_id = res->slave_id; 5726 5727 /* Set the primary slave for a bonded device. */ 5728 if (0 != rte_eth_bond_primary_set(master_port_id, slave_port_id)) { 5729 printf("\t Failed to set primary slave for port = %d.\n", 5730 master_port_id); 5731 return; 5732 } 5733 init_port_config(); 5734 } 5735 5736 cmdline_parse_token_string_t cmd_setbonding_primary_set = 5737 TOKEN_STRING_INITIALIZER(struct cmd_set_bonding_primary_result, 5738 set, "set"); 5739 cmdline_parse_token_string_t cmd_setbonding_primary_bonding = 5740 TOKEN_STRING_INITIALIZER(struct cmd_set_bonding_primary_result, 5741 bonding, "bonding"); 5742 cmdline_parse_token_string_t cmd_setbonding_primary_primary = 5743 TOKEN_STRING_INITIALIZER(struct cmd_set_bonding_primary_result, 5744 primary, "primary"); 5745 cmdline_parse_token_num_t cmd_setbonding_primary_slave = 5746 TOKEN_NUM_INITIALIZER(struct cmd_set_bonding_primary_result, 5747 slave_id, UINT16); 5748 cmdline_parse_token_num_t cmd_setbonding_primary_port = 5749 TOKEN_NUM_INITIALIZER(struct cmd_set_bonding_primary_result, 5750 port_id, UINT16); 5751 5752 cmdline_parse_inst_t cmd_set_bonding_primary = { 5753 .f = cmd_set_bonding_primary_parsed, 5754 .help_str = "set bonding primary <slave_id> <port_id>: " 5755 "Set the primary slave for port_id", 5756 .data = NULL, 5757 .tokens = { 5758 (void *)&cmd_setbonding_primary_set, 5759 (void *)&cmd_setbonding_primary_bonding, 5760 (void *)&cmd_setbonding_primary_primary, 5761 (void *)&cmd_setbonding_primary_slave, 5762 (void *)&cmd_setbonding_primary_port, 5763 NULL 5764 } 5765 }; 5766 5767 /* *** ADD SLAVE *** */ 5768 struct cmd_add_bonding_slave_result { 5769 cmdline_fixed_string_t add; 5770 cmdline_fixed_string_t bonding; 5771 cmdline_fixed_string_t slave; 5772 portid_t slave_id; 5773 portid_t port_id; 5774 }; 5775 5776 static void cmd_add_bonding_slave_parsed(void *parsed_result, 5777 __attribute__((unused)) struct cmdline *cl, 5778 __attribute__((unused)) void *data) 5779 { 5780 struct cmd_add_bonding_slave_result *res = parsed_result; 5781 portid_t master_port_id = res->port_id; 5782 portid_t slave_port_id = res->slave_id; 5783 5784 /* add the slave for a bonded device. */ 5785 if (0 != rte_eth_bond_slave_add(master_port_id, slave_port_id)) { 5786 printf("\t Failed to add slave %d to master port = %d.\n", 5787 slave_port_id, master_port_id); 5788 return; 5789 } 5790 init_port_config(); 5791 set_port_slave_flag(slave_port_id); 5792 } 5793 5794 cmdline_parse_token_string_t cmd_addbonding_slave_add = 5795 TOKEN_STRING_INITIALIZER(struct cmd_add_bonding_slave_result, 5796 add, "add"); 5797 cmdline_parse_token_string_t cmd_addbonding_slave_bonding = 5798 TOKEN_STRING_INITIALIZER(struct cmd_add_bonding_slave_result, 5799 bonding, "bonding"); 5800 cmdline_parse_token_string_t cmd_addbonding_slave_slave = 5801 TOKEN_STRING_INITIALIZER(struct cmd_add_bonding_slave_result, 5802 slave, "slave"); 5803 cmdline_parse_token_num_t cmd_addbonding_slave_slaveid = 5804 TOKEN_NUM_INITIALIZER(struct cmd_add_bonding_slave_result, 5805 slave_id, UINT16); 5806 cmdline_parse_token_num_t cmd_addbonding_slave_port = 5807 TOKEN_NUM_INITIALIZER(struct cmd_add_bonding_slave_result, 5808 port_id, UINT16); 5809 5810 cmdline_parse_inst_t cmd_add_bonding_slave = { 5811 .f = cmd_add_bonding_slave_parsed, 5812 .help_str = "add bonding slave <slave_id> <port_id>: " 5813 "Add a slave device to a bonded device", 5814 .data = NULL, 5815 .tokens = { 5816 (void *)&cmd_addbonding_slave_add, 5817 (void *)&cmd_addbonding_slave_bonding, 5818 (void *)&cmd_addbonding_slave_slave, 5819 (void *)&cmd_addbonding_slave_slaveid, 5820 (void *)&cmd_addbonding_slave_port, 5821 NULL 5822 } 5823 }; 5824 5825 /* *** REMOVE SLAVE *** */ 5826 struct cmd_remove_bonding_slave_result { 5827 cmdline_fixed_string_t remove; 5828 cmdline_fixed_string_t bonding; 5829 cmdline_fixed_string_t slave; 5830 portid_t slave_id; 5831 portid_t port_id; 5832 }; 5833 5834 static void cmd_remove_bonding_slave_parsed(void *parsed_result, 5835 __attribute__((unused)) struct cmdline *cl, 5836 __attribute__((unused)) void *data) 5837 { 5838 struct cmd_remove_bonding_slave_result *res = parsed_result; 5839 portid_t master_port_id = res->port_id; 5840 portid_t slave_port_id = res->slave_id; 5841 5842 /* remove the slave from a bonded device. */ 5843 if (0 != rte_eth_bond_slave_remove(master_port_id, slave_port_id)) { 5844 printf("\t Failed to remove slave %d from master port = %d.\n", 5845 slave_port_id, master_port_id); 5846 return; 5847 } 5848 init_port_config(); 5849 clear_port_slave_flag(slave_port_id); 5850 } 5851 5852 cmdline_parse_token_string_t cmd_removebonding_slave_remove = 5853 TOKEN_STRING_INITIALIZER(struct cmd_remove_bonding_slave_result, 5854 remove, "remove"); 5855 cmdline_parse_token_string_t cmd_removebonding_slave_bonding = 5856 TOKEN_STRING_INITIALIZER(struct cmd_remove_bonding_slave_result, 5857 bonding, "bonding"); 5858 cmdline_parse_token_string_t cmd_removebonding_slave_slave = 5859 TOKEN_STRING_INITIALIZER(struct cmd_remove_bonding_slave_result, 5860 slave, "slave"); 5861 cmdline_parse_token_num_t cmd_removebonding_slave_slaveid = 5862 TOKEN_NUM_INITIALIZER(struct cmd_remove_bonding_slave_result, 5863 slave_id, UINT16); 5864 cmdline_parse_token_num_t cmd_removebonding_slave_port = 5865 TOKEN_NUM_INITIALIZER(struct cmd_remove_bonding_slave_result, 5866 port_id, UINT16); 5867 5868 cmdline_parse_inst_t cmd_remove_bonding_slave = { 5869 .f = cmd_remove_bonding_slave_parsed, 5870 .help_str = "remove bonding slave <slave_id> <port_id>: " 5871 "Remove a slave device from a bonded device", 5872 .data = NULL, 5873 .tokens = { 5874 (void *)&cmd_removebonding_slave_remove, 5875 (void *)&cmd_removebonding_slave_bonding, 5876 (void *)&cmd_removebonding_slave_slave, 5877 (void *)&cmd_removebonding_slave_slaveid, 5878 (void *)&cmd_removebonding_slave_port, 5879 NULL 5880 } 5881 }; 5882 5883 /* *** CREATE BONDED DEVICE *** */ 5884 struct cmd_create_bonded_device_result { 5885 cmdline_fixed_string_t create; 5886 cmdline_fixed_string_t bonded; 5887 cmdline_fixed_string_t device; 5888 uint8_t mode; 5889 uint8_t socket; 5890 }; 5891 5892 static int bond_dev_num = 0; 5893 5894 static void cmd_create_bonded_device_parsed(void *parsed_result, 5895 __attribute__((unused)) struct cmdline *cl, 5896 __attribute__((unused)) void *data) 5897 { 5898 struct cmd_create_bonded_device_result *res = parsed_result; 5899 char ethdev_name[RTE_ETH_NAME_MAX_LEN]; 5900 int port_id; 5901 5902 if (test_done == 0) { 5903 printf("Please stop forwarding first\n"); 5904 return; 5905 } 5906 5907 snprintf(ethdev_name, RTE_ETH_NAME_MAX_LEN, "net_bonding_testpmd_%d", 5908 bond_dev_num++); 5909 5910 /* Create a new bonded device. */ 5911 port_id = rte_eth_bond_create(ethdev_name, res->mode, res->socket); 5912 if (port_id < 0) { 5913 printf("\t Failed to create bonded device.\n"); 5914 return; 5915 } else { 5916 printf("Created new bonded device %s on (port %d).\n", ethdev_name, 5917 port_id); 5918 5919 /* Update number of ports */ 5920 nb_ports = rte_eth_dev_count_avail(); 5921 reconfig(port_id, res->socket); 5922 rte_eth_promiscuous_enable(port_id); 5923 } 5924 5925 } 5926 5927 cmdline_parse_token_string_t cmd_createbonded_device_create = 5928 TOKEN_STRING_INITIALIZER(struct cmd_create_bonded_device_result, 5929 create, "create"); 5930 cmdline_parse_token_string_t cmd_createbonded_device_bonded = 5931 TOKEN_STRING_INITIALIZER(struct cmd_create_bonded_device_result, 5932 bonded, "bonded"); 5933 cmdline_parse_token_string_t cmd_createbonded_device_device = 5934 TOKEN_STRING_INITIALIZER(struct cmd_create_bonded_device_result, 5935 device, "device"); 5936 cmdline_parse_token_num_t cmd_createbonded_device_mode = 5937 TOKEN_NUM_INITIALIZER(struct cmd_create_bonded_device_result, 5938 mode, UINT8); 5939 cmdline_parse_token_num_t cmd_createbonded_device_socket = 5940 TOKEN_NUM_INITIALIZER(struct cmd_create_bonded_device_result, 5941 socket, UINT8); 5942 5943 cmdline_parse_inst_t cmd_create_bonded_device = { 5944 .f = cmd_create_bonded_device_parsed, 5945 .help_str = "create bonded device <mode> <socket>: " 5946 "Create a new bonded device with specific bonding mode and socket", 5947 .data = NULL, 5948 .tokens = { 5949 (void *)&cmd_createbonded_device_create, 5950 (void *)&cmd_createbonded_device_bonded, 5951 (void *)&cmd_createbonded_device_device, 5952 (void *)&cmd_createbonded_device_mode, 5953 (void *)&cmd_createbonded_device_socket, 5954 NULL 5955 } 5956 }; 5957 5958 /* *** SET MAC ADDRESS IN BONDED DEVICE *** */ 5959 struct cmd_set_bond_mac_addr_result { 5960 cmdline_fixed_string_t set; 5961 cmdline_fixed_string_t bonding; 5962 cmdline_fixed_string_t mac_addr; 5963 uint16_t port_num; 5964 struct ether_addr address; 5965 }; 5966 5967 static void cmd_set_bond_mac_addr_parsed(void *parsed_result, 5968 __attribute__((unused)) struct cmdline *cl, 5969 __attribute__((unused)) void *data) 5970 { 5971 struct cmd_set_bond_mac_addr_result *res = parsed_result; 5972 int ret; 5973 5974 if (port_id_is_invalid(res->port_num, ENABLED_WARN)) 5975 return; 5976 5977 ret = rte_eth_bond_mac_address_set(res->port_num, &res->address); 5978 5979 /* check the return value and print it if is < 0 */ 5980 if (ret < 0) 5981 printf("set_bond_mac_addr error: (%s)\n", strerror(-ret)); 5982 } 5983 5984 cmdline_parse_token_string_t cmd_set_bond_mac_addr_set = 5985 TOKEN_STRING_INITIALIZER(struct cmd_set_bond_mac_addr_result, set, "set"); 5986 cmdline_parse_token_string_t cmd_set_bond_mac_addr_bonding = 5987 TOKEN_STRING_INITIALIZER(struct cmd_set_bond_mac_addr_result, bonding, 5988 "bonding"); 5989 cmdline_parse_token_string_t cmd_set_bond_mac_addr_mac = 5990 TOKEN_STRING_INITIALIZER(struct cmd_set_bond_mac_addr_result, mac_addr, 5991 "mac_addr"); 5992 cmdline_parse_token_num_t cmd_set_bond_mac_addr_portnum = 5993 TOKEN_NUM_INITIALIZER(struct cmd_set_bond_mac_addr_result, 5994 port_num, UINT16); 5995 cmdline_parse_token_etheraddr_t cmd_set_bond_mac_addr_addr = 5996 TOKEN_ETHERADDR_INITIALIZER(struct cmd_set_bond_mac_addr_result, address); 5997 5998 cmdline_parse_inst_t cmd_set_bond_mac_addr = { 5999 .f = cmd_set_bond_mac_addr_parsed, 6000 .data = (void *) 0, 6001 .help_str = "set bonding mac_addr <port_id> <mac_addr>", 6002 .tokens = { 6003 (void *)&cmd_set_bond_mac_addr_set, 6004 (void *)&cmd_set_bond_mac_addr_bonding, 6005 (void *)&cmd_set_bond_mac_addr_mac, 6006 (void *)&cmd_set_bond_mac_addr_portnum, 6007 (void *)&cmd_set_bond_mac_addr_addr, 6008 NULL 6009 } 6010 }; 6011 6012 6013 /* *** SET LINK STATUS MONITORING POLLING PERIOD ON BONDED DEVICE *** */ 6014 struct cmd_set_bond_mon_period_result { 6015 cmdline_fixed_string_t set; 6016 cmdline_fixed_string_t bonding; 6017 cmdline_fixed_string_t mon_period; 6018 uint16_t port_num; 6019 uint32_t period_ms; 6020 }; 6021 6022 static void cmd_set_bond_mon_period_parsed(void *parsed_result, 6023 __attribute__((unused)) struct cmdline *cl, 6024 __attribute__((unused)) void *data) 6025 { 6026 struct cmd_set_bond_mon_period_result *res = parsed_result; 6027 int ret; 6028 6029 ret = rte_eth_bond_link_monitoring_set(res->port_num, res->period_ms); 6030 6031 /* check the return value and print it if is < 0 */ 6032 if (ret < 0) 6033 printf("set_bond_mac_addr error: (%s)\n", strerror(-ret)); 6034 } 6035 6036 cmdline_parse_token_string_t cmd_set_bond_mon_period_set = 6037 TOKEN_STRING_INITIALIZER(struct cmd_set_bond_mon_period_result, 6038 set, "set"); 6039 cmdline_parse_token_string_t cmd_set_bond_mon_period_bonding = 6040 TOKEN_STRING_INITIALIZER(struct cmd_set_bond_mon_period_result, 6041 bonding, "bonding"); 6042 cmdline_parse_token_string_t cmd_set_bond_mon_period_mon_period = 6043 TOKEN_STRING_INITIALIZER(struct cmd_set_bond_mon_period_result, 6044 mon_period, "mon_period"); 6045 cmdline_parse_token_num_t cmd_set_bond_mon_period_portnum = 6046 TOKEN_NUM_INITIALIZER(struct cmd_set_bond_mon_period_result, 6047 port_num, UINT16); 6048 cmdline_parse_token_num_t cmd_set_bond_mon_period_period_ms = 6049 TOKEN_NUM_INITIALIZER(struct cmd_set_bond_mon_period_result, 6050 period_ms, UINT32); 6051 6052 cmdline_parse_inst_t cmd_set_bond_mon_period = { 6053 .f = cmd_set_bond_mon_period_parsed, 6054 .data = (void *) 0, 6055 .help_str = "set bonding mon_period <port_id> <period_ms>", 6056 .tokens = { 6057 (void *)&cmd_set_bond_mon_period_set, 6058 (void *)&cmd_set_bond_mon_period_bonding, 6059 (void *)&cmd_set_bond_mon_period_mon_period, 6060 (void *)&cmd_set_bond_mon_period_portnum, 6061 (void *)&cmd_set_bond_mon_period_period_ms, 6062 NULL 6063 } 6064 }; 6065 6066 6067 6068 struct cmd_set_bonding_agg_mode_policy_result { 6069 cmdline_fixed_string_t set; 6070 cmdline_fixed_string_t bonding; 6071 cmdline_fixed_string_t agg_mode; 6072 uint16_t port_num; 6073 cmdline_fixed_string_t policy; 6074 }; 6075 6076 6077 static void 6078 cmd_set_bonding_agg_mode(void *parsed_result, 6079 __attribute__((unused)) struct cmdline *cl, 6080 __attribute__((unused)) void *data) 6081 { 6082 struct cmd_set_bonding_agg_mode_policy_result *res = parsed_result; 6083 uint8_t policy = AGG_BANDWIDTH; 6084 6085 if (!strcmp(res->policy, "bandwidth")) 6086 policy = AGG_BANDWIDTH; 6087 else if (!strcmp(res->policy, "stable")) 6088 policy = AGG_STABLE; 6089 else if (!strcmp(res->policy, "count")) 6090 policy = AGG_COUNT; 6091 6092 rte_eth_bond_8023ad_agg_selection_set(res->port_num, policy); 6093 } 6094 6095 6096 cmdline_parse_token_string_t cmd_set_bonding_agg_mode_set = 6097 TOKEN_STRING_INITIALIZER(struct cmd_set_bonding_agg_mode_policy_result, 6098 set, "set"); 6099 cmdline_parse_token_string_t cmd_set_bonding_agg_mode_bonding = 6100 TOKEN_STRING_INITIALIZER(struct cmd_set_bonding_agg_mode_policy_result, 6101 bonding, "bonding"); 6102 6103 cmdline_parse_token_string_t cmd_set_bonding_agg_mode_agg_mode = 6104 TOKEN_STRING_INITIALIZER(struct cmd_set_bonding_agg_mode_policy_result, 6105 agg_mode, "agg_mode"); 6106 6107 cmdline_parse_token_num_t cmd_set_bonding_agg_mode_portnum = 6108 TOKEN_NUM_INITIALIZER(struct cmd_set_bonding_agg_mode_policy_result, 6109 port_num, UINT16); 6110 6111 cmdline_parse_token_string_t cmd_set_bonding_agg_mode_policy_string = 6112 TOKEN_STRING_INITIALIZER( 6113 struct cmd_set_bonding_balance_xmit_policy_result, 6114 policy, "stable#bandwidth#count"); 6115 6116 cmdline_parse_inst_t cmd_set_bonding_agg_mode_policy = { 6117 .f = cmd_set_bonding_agg_mode, 6118 .data = (void *) 0, 6119 .help_str = "set bonding mode IEEE802.3AD aggregator policy <port_id> <agg_name>", 6120 .tokens = { 6121 (void *)&cmd_set_bonding_agg_mode_set, 6122 (void *)&cmd_set_bonding_agg_mode_bonding, 6123 (void *)&cmd_set_bonding_agg_mode_agg_mode, 6124 (void *)&cmd_set_bonding_agg_mode_portnum, 6125 (void *)&cmd_set_bonding_agg_mode_policy_string, 6126 NULL 6127 } 6128 }; 6129 6130 6131 #endif /* RTE_LIBRTE_PMD_BOND */ 6132 6133 /* *** SET FORWARDING MODE *** */ 6134 struct cmd_set_fwd_mode_result { 6135 cmdline_fixed_string_t set; 6136 cmdline_fixed_string_t fwd; 6137 cmdline_fixed_string_t mode; 6138 }; 6139 6140 static void cmd_set_fwd_mode_parsed(void *parsed_result, 6141 __attribute__((unused)) struct cmdline *cl, 6142 __attribute__((unused)) void *data) 6143 { 6144 struct cmd_set_fwd_mode_result *res = parsed_result; 6145 6146 retry_enabled = 0; 6147 set_pkt_forwarding_mode(res->mode); 6148 } 6149 6150 cmdline_parse_token_string_t cmd_setfwd_set = 6151 TOKEN_STRING_INITIALIZER(struct cmd_set_fwd_mode_result, set, "set"); 6152 cmdline_parse_token_string_t cmd_setfwd_fwd = 6153 TOKEN_STRING_INITIALIZER(struct cmd_set_fwd_mode_result, fwd, "fwd"); 6154 cmdline_parse_token_string_t cmd_setfwd_mode = 6155 TOKEN_STRING_INITIALIZER(struct cmd_set_fwd_mode_result, mode, 6156 "" /* defined at init */); 6157 6158 cmdline_parse_inst_t cmd_set_fwd_mode = { 6159 .f = cmd_set_fwd_mode_parsed, 6160 .data = NULL, 6161 .help_str = NULL, /* defined at init */ 6162 .tokens = { 6163 (void *)&cmd_setfwd_set, 6164 (void *)&cmd_setfwd_fwd, 6165 (void *)&cmd_setfwd_mode, 6166 NULL, 6167 }, 6168 }; 6169 6170 static void cmd_set_fwd_mode_init(void) 6171 { 6172 char *modes, *c; 6173 static char token[128]; 6174 static char help[256]; 6175 cmdline_parse_token_string_t *token_struct; 6176 6177 modes = list_pkt_forwarding_modes(); 6178 snprintf(help, sizeof(help), "set fwd %s: " 6179 "Set packet forwarding mode", modes); 6180 cmd_set_fwd_mode.help_str = help; 6181 6182 /* string token separator is # */ 6183 for (c = token; *modes != '\0'; modes++) 6184 if (*modes == '|') 6185 *c++ = '#'; 6186 else 6187 *c++ = *modes; 6188 token_struct = (cmdline_parse_token_string_t*)cmd_set_fwd_mode.tokens[2]; 6189 token_struct->string_data.str = token; 6190 } 6191 6192 /* *** SET RETRY FORWARDING MODE *** */ 6193 struct cmd_set_fwd_retry_mode_result { 6194 cmdline_fixed_string_t set; 6195 cmdline_fixed_string_t fwd; 6196 cmdline_fixed_string_t mode; 6197 cmdline_fixed_string_t retry; 6198 }; 6199 6200 static void cmd_set_fwd_retry_mode_parsed(void *parsed_result, 6201 __attribute__((unused)) struct cmdline *cl, 6202 __attribute__((unused)) void *data) 6203 { 6204 struct cmd_set_fwd_retry_mode_result *res = parsed_result; 6205 6206 retry_enabled = 1; 6207 set_pkt_forwarding_mode(res->mode); 6208 } 6209 6210 cmdline_parse_token_string_t cmd_setfwd_retry_set = 6211 TOKEN_STRING_INITIALIZER(struct cmd_set_fwd_retry_mode_result, 6212 set, "set"); 6213 cmdline_parse_token_string_t cmd_setfwd_retry_fwd = 6214 TOKEN_STRING_INITIALIZER(struct cmd_set_fwd_retry_mode_result, 6215 fwd, "fwd"); 6216 cmdline_parse_token_string_t cmd_setfwd_retry_mode = 6217 TOKEN_STRING_INITIALIZER(struct cmd_set_fwd_retry_mode_result, 6218 mode, 6219 "" /* defined at init */); 6220 cmdline_parse_token_string_t cmd_setfwd_retry_retry = 6221 TOKEN_STRING_INITIALIZER(struct cmd_set_fwd_retry_mode_result, 6222 retry, "retry"); 6223 6224 cmdline_parse_inst_t cmd_set_fwd_retry_mode = { 6225 .f = cmd_set_fwd_retry_mode_parsed, 6226 .data = NULL, 6227 .help_str = NULL, /* defined at init */ 6228 .tokens = { 6229 (void *)&cmd_setfwd_retry_set, 6230 (void *)&cmd_setfwd_retry_fwd, 6231 (void *)&cmd_setfwd_retry_mode, 6232 (void *)&cmd_setfwd_retry_retry, 6233 NULL, 6234 }, 6235 }; 6236 6237 static void cmd_set_fwd_retry_mode_init(void) 6238 { 6239 char *modes, *c; 6240 static char token[128]; 6241 static char help[256]; 6242 cmdline_parse_token_string_t *token_struct; 6243 6244 modes = list_pkt_forwarding_retry_modes(); 6245 snprintf(help, sizeof(help), "set fwd %s retry: " 6246 "Set packet forwarding mode with retry", modes); 6247 cmd_set_fwd_retry_mode.help_str = help; 6248 6249 /* string token separator is # */ 6250 for (c = token; *modes != '\0'; modes++) 6251 if (*modes == '|') 6252 *c++ = '#'; 6253 else 6254 *c++ = *modes; 6255 token_struct = (cmdline_parse_token_string_t *) 6256 cmd_set_fwd_retry_mode.tokens[2]; 6257 token_struct->string_data.str = token; 6258 } 6259 6260 /* *** SET BURST TX DELAY TIME RETRY NUMBER *** */ 6261 struct cmd_set_burst_tx_retry_result { 6262 cmdline_fixed_string_t set; 6263 cmdline_fixed_string_t burst; 6264 cmdline_fixed_string_t tx; 6265 cmdline_fixed_string_t delay; 6266 uint32_t time; 6267 cmdline_fixed_string_t retry; 6268 uint32_t retry_num; 6269 }; 6270 6271 static void cmd_set_burst_tx_retry_parsed(void *parsed_result, 6272 __attribute__((unused)) struct cmdline *cl, 6273 __attribute__((unused)) void *data) 6274 { 6275 struct cmd_set_burst_tx_retry_result *res = parsed_result; 6276 6277 if (!strcmp(res->set, "set") && !strcmp(res->burst, "burst") 6278 && !strcmp(res->tx, "tx")) { 6279 if (!strcmp(res->delay, "delay")) 6280 burst_tx_delay_time = res->time; 6281 if (!strcmp(res->retry, "retry")) 6282 burst_tx_retry_num = res->retry_num; 6283 } 6284 6285 } 6286 6287 cmdline_parse_token_string_t cmd_set_burst_tx_retry_set = 6288 TOKEN_STRING_INITIALIZER(struct cmd_set_burst_tx_retry_result, set, "set"); 6289 cmdline_parse_token_string_t cmd_set_burst_tx_retry_burst = 6290 TOKEN_STRING_INITIALIZER(struct cmd_set_burst_tx_retry_result, burst, 6291 "burst"); 6292 cmdline_parse_token_string_t cmd_set_burst_tx_retry_tx = 6293 TOKEN_STRING_INITIALIZER(struct cmd_set_burst_tx_retry_result, tx, "tx"); 6294 cmdline_parse_token_string_t cmd_set_burst_tx_retry_delay = 6295 TOKEN_STRING_INITIALIZER(struct cmd_set_burst_tx_retry_result, delay, "delay"); 6296 cmdline_parse_token_num_t cmd_set_burst_tx_retry_time = 6297 TOKEN_NUM_INITIALIZER(struct cmd_set_burst_tx_retry_result, time, UINT32); 6298 cmdline_parse_token_string_t cmd_set_burst_tx_retry_retry = 6299 TOKEN_STRING_INITIALIZER(struct cmd_set_burst_tx_retry_result, retry, "retry"); 6300 cmdline_parse_token_num_t cmd_set_burst_tx_retry_retry_num = 6301 TOKEN_NUM_INITIALIZER(struct cmd_set_burst_tx_retry_result, retry_num, UINT32); 6302 6303 cmdline_parse_inst_t cmd_set_burst_tx_retry = { 6304 .f = cmd_set_burst_tx_retry_parsed, 6305 .help_str = "set burst tx delay <delay_usec> retry <num_retry>", 6306 .tokens = { 6307 (void *)&cmd_set_burst_tx_retry_set, 6308 (void *)&cmd_set_burst_tx_retry_burst, 6309 (void *)&cmd_set_burst_tx_retry_tx, 6310 (void *)&cmd_set_burst_tx_retry_delay, 6311 (void *)&cmd_set_burst_tx_retry_time, 6312 (void *)&cmd_set_burst_tx_retry_retry, 6313 (void *)&cmd_set_burst_tx_retry_retry_num, 6314 NULL, 6315 }, 6316 }; 6317 6318 /* *** SET PROMISC MODE *** */ 6319 struct cmd_set_promisc_mode_result { 6320 cmdline_fixed_string_t set; 6321 cmdline_fixed_string_t promisc; 6322 cmdline_fixed_string_t port_all; /* valid if "allports" argument == 1 */ 6323 uint16_t port_num; /* valid if "allports" argument == 0 */ 6324 cmdline_fixed_string_t mode; 6325 }; 6326 6327 static void cmd_set_promisc_mode_parsed(void *parsed_result, 6328 __attribute__((unused)) struct cmdline *cl, 6329 void *allports) 6330 { 6331 struct cmd_set_promisc_mode_result *res = parsed_result; 6332 int enable; 6333 portid_t i; 6334 6335 if (!strcmp(res->mode, "on")) 6336 enable = 1; 6337 else 6338 enable = 0; 6339 6340 /* all ports */ 6341 if (allports) { 6342 RTE_ETH_FOREACH_DEV(i) { 6343 if (enable) 6344 rte_eth_promiscuous_enable(i); 6345 else 6346 rte_eth_promiscuous_disable(i); 6347 } 6348 } 6349 else { 6350 if (enable) 6351 rte_eth_promiscuous_enable(res->port_num); 6352 else 6353 rte_eth_promiscuous_disable(res->port_num); 6354 } 6355 } 6356 6357 cmdline_parse_token_string_t cmd_setpromisc_set = 6358 TOKEN_STRING_INITIALIZER(struct cmd_set_promisc_mode_result, set, "set"); 6359 cmdline_parse_token_string_t cmd_setpromisc_promisc = 6360 TOKEN_STRING_INITIALIZER(struct cmd_set_promisc_mode_result, promisc, 6361 "promisc"); 6362 cmdline_parse_token_string_t cmd_setpromisc_portall = 6363 TOKEN_STRING_INITIALIZER(struct cmd_set_promisc_mode_result, port_all, 6364 "all"); 6365 cmdline_parse_token_num_t cmd_setpromisc_portnum = 6366 TOKEN_NUM_INITIALIZER(struct cmd_set_promisc_mode_result, port_num, 6367 UINT16); 6368 cmdline_parse_token_string_t cmd_setpromisc_mode = 6369 TOKEN_STRING_INITIALIZER(struct cmd_set_promisc_mode_result, mode, 6370 "on#off"); 6371 6372 cmdline_parse_inst_t cmd_set_promisc_mode_all = { 6373 .f = cmd_set_promisc_mode_parsed, 6374 .data = (void *)1, 6375 .help_str = "set promisc all on|off: Set promisc mode for all ports", 6376 .tokens = { 6377 (void *)&cmd_setpromisc_set, 6378 (void *)&cmd_setpromisc_promisc, 6379 (void *)&cmd_setpromisc_portall, 6380 (void *)&cmd_setpromisc_mode, 6381 NULL, 6382 }, 6383 }; 6384 6385 cmdline_parse_inst_t cmd_set_promisc_mode_one = { 6386 .f = cmd_set_promisc_mode_parsed, 6387 .data = (void *)0, 6388 .help_str = "set promisc <port_id> on|off: Set promisc mode on port_id", 6389 .tokens = { 6390 (void *)&cmd_setpromisc_set, 6391 (void *)&cmd_setpromisc_promisc, 6392 (void *)&cmd_setpromisc_portnum, 6393 (void *)&cmd_setpromisc_mode, 6394 NULL, 6395 }, 6396 }; 6397 6398 /* *** SET ALLMULTI MODE *** */ 6399 struct cmd_set_allmulti_mode_result { 6400 cmdline_fixed_string_t set; 6401 cmdline_fixed_string_t allmulti; 6402 cmdline_fixed_string_t port_all; /* valid if "allports" argument == 1 */ 6403 uint16_t port_num; /* valid if "allports" argument == 0 */ 6404 cmdline_fixed_string_t mode; 6405 }; 6406 6407 static void cmd_set_allmulti_mode_parsed(void *parsed_result, 6408 __attribute__((unused)) struct cmdline *cl, 6409 void *allports) 6410 { 6411 struct cmd_set_allmulti_mode_result *res = parsed_result; 6412 int enable; 6413 portid_t i; 6414 6415 if (!strcmp(res->mode, "on")) 6416 enable = 1; 6417 else 6418 enable = 0; 6419 6420 /* all ports */ 6421 if (allports) { 6422 RTE_ETH_FOREACH_DEV(i) { 6423 if (enable) 6424 rte_eth_allmulticast_enable(i); 6425 else 6426 rte_eth_allmulticast_disable(i); 6427 } 6428 } 6429 else { 6430 if (enable) 6431 rte_eth_allmulticast_enable(res->port_num); 6432 else 6433 rte_eth_allmulticast_disable(res->port_num); 6434 } 6435 } 6436 6437 cmdline_parse_token_string_t cmd_setallmulti_set = 6438 TOKEN_STRING_INITIALIZER(struct cmd_set_allmulti_mode_result, set, "set"); 6439 cmdline_parse_token_string_t cmd_setallmulti_allmulti = 6440 TOKEN_STRING_INITIALIZER(struct cmd_set_allmulti_mode_result, allmulti, 6441 "allmulti"); 6442 cmdline_parse_token_string_t cmd_setallmulti_portall = 6443 TOKEN_STRING_INITIALIZER(struct cmd_set_allmulti_mode_result, port_all, 6444 "all"); 6445 cmdline_parse_token_num_t cmd_setallmulti_portnum = 6446 TOKEN_NUM_INITIALIZER(struct cmd_set_allmulti_mode_result, port_num, 6447 UINT16); 6448 cmdline_parse_token_string_t cmd_setallmulti_mode = 6449 TOKEN_STRING_INITIALIZER(struct cmd_set_allmulti_mode_result, mode, 6450 "on#off"); 6451 6452 cmdline_parse_inst_t cmd_set_allmulti_mode_all = { 6453 .f = cmd_set_allmulti_mode_parsed, 6454 .data = (void *)1, 6455 .help_str = "set allmulti all on|off: Set allmulti mode for all ports", 6456 .tokens = { 6457 (void *)&cmd_setallmulti_set, 6458 (void *)&cmd_setallmulti_allmulti, 6459 (void *)&cmd_setallmulti_portall, 6460 (void *)&cmd_setallmulti_mode, 6461 NULL, 6462 }, 6463 }; 6464 6465 cmdline_parse_inst_t cmd_set_allmulti_mode_one = { 6466 .f = cmd_set_allmulti_mode_parsed, 6467 .data = (void *)0, 6468 .help_str = "set allmulti <port_id> on|off: " 6469 "Set allmulti mode on port_id", 6470 .tokens = { 6471 (void *)&cmd_setallmulti_set, 6472 (void *)&cmd_setallmulti_allmulti, 6473 (void *)&cmd_setallmulti_portnum, 6474 (void *)&cmd_setallmulti_mode, 6475 NULL, 6476 }, 6477 }; 6478 6479 /* *** SETUP ETHERNET LINK FLOW CONTROL *** */ 6480 struct cmd_link_flow_ctrl_set_result { 6481 cmdline_fixed_string_t set; 6482 cmdline_fixed_string_t flow_ctrl; 6483 cmdline_fixed_string_t rx; 6484 cmdline_fixed_string_t rx_lfc_mode; 6485 cmdline_fixed_string_t tx; 6486 cmdline_fixed_string_t tx_lfc_mode; 6487 cmdline_fixed_string_t mac_ctrl_frame_fwd; 6488 cmdline_fixed_string_t mac_ctrl_frame_fwd_mode; 6489 cmdline_fixed_string_t autoneg_str; 6490 cmdline_fixed_string_t autoneg; 6491 cmdline_fixed_string_t hw_str; 6492 uint32_t high_water; 6493 cmdline_fixed_string_t lw_str; 6494 uint32_t low_water; 6495 cmdline_fixed_string_t pt_str; 6496 uint16_t pause_time; 6497 cmdline_fixed_string_t xon_str; 6498 uint16_t send_xon; 6499 portid_t port_id; 6500 }; 6501 6502 cmdline_parse_token_string_t cmd_lfc_set_set = 6503 TOKEN_STRING_INITIALIZER(struct cmd_link_flow_ctrl_set_result, 6504 set, "set"); 6505 cmdline_parse_token_string_t cmd_lfc_set_flow_ctrl = 6506 TOKEN_STRING_INITIALIZER(struct cmd_link_flow_ctrl_set_result, 6507 flow_ctrl, "flow_ctrl"); 6508 cmdline_parse_token_string_t cmd_lfc_set_rx = 6509 TOKEN_STRING_INITIALIZER(struct cmd_link_flow_ctrl_set_result, 6510 rx, "rx"); 6511 cmdline_parse_token_string_t cmd_lfc_set_rx_mode = 6512 TOKEN_STRING_INITIALIZER(struct cmd_link_flow_ctrl_set_result, 6513 rx_lfc_mode, "on#off"); 6514 cmdline_parse_token_string_t cmd_lfc_set_tx = 6515 TOKEN_STRING_INITIALIZER(struct cmd_link_flow_ctrl_set_result, 6516 tx, "tx"); 6517 cmdline_parse_token_string_t cmd_lfc_set_tx_mode = 6518 TOKEN_STRING_INITIALIZER(struct cmd_link_flow_ctrl_set_result, 6519 tx_lfc_mode, "on#off"); 6520 cmdline_parse_token_string_t cmd_lfc_set_high_water_str = 6521 TOKEN_STRING_INITIALIZER(struct cmd_link_flow_ctrl_set_result, 6522 hw_str, "high_water"); 6523 cmdline_parse_token_num_t cmd_lfc_set_high_water = 6524 TOKEN_NUM_INITIALIZER(struct cmd_link_flow_ctrl_set_result, 6525 high_water, UINT32); 6526 cmdline_parse_token_string_t cmd_lfc_set_low_water_str = 6527 TOKEN_STRING_INITIALIZER(struct cmd_link_flow_ctrl_set_result, 6528 lw_str, "low_water"); 6529 cmdline_parse_token_num_t cmd_lfc_set_low_water = 6530 TOKEN_NUM_INITIALIZER(struct cmd_link_flow_ctrl_set_result, 6531 low_water, UINT32); 6532 cmdline_parse_token_string_t cmd_lfc_set_pause_time_str = 6533 TOKEN_STRING_INITIALIZER(struct cmd_link_flow_ctrl_set_result, 6534 pt_str, "pause_time"); 6535 cmdline_parse_token_num_t cmd_lfc_set_pause_time = 6536 TOKEN_NUM_INITIALIZER(struct cmd_link_flow_ctrl_set_result, 6537 pause_time, UINT16); 6538 cmdline_parse_token_string_t cmd_lfc_set_send_xon_str = 6539 TOKEN_STRING_INITIALIZER(struct cmd_link_flow_ctrl_set_result, 6540 xon_str, "send_xon"); 6541 cmdline_parse_token_num_t cmd_lfc_set_send_xon = 6542 TOKEN_NUM_INITIALIZER(struct cmd_link_flow_ctrl_set_result, 6543 send_xon, UINT16); 6544 cmdline_parse_token_string_t cmd_lfc_set_mac_ctrl_frame_fwd_mode = 6545 TOKEN_STRING_INITIALIZER(struct cmd_link_flow_ctrl_set_result, 6546 mac_ctrl_frame_fwd, "mac_ctrl_frame_fwd"); 6547 cmdline_parse_token_string_t cmd_lfc_set_mac_ctrl_frame_fwd = 6548 TOKEN_STRING_INITIALIZER(struct cmd_link_flow_ctrl_set_result, 6549 mac_ctrl_frame_fwd_mode, "on#off"); 6550 cmdline_parse_token_string_t cmd_lfc_set_autoneg_str = 6551 TOKEN_STRING_INITIALIZER(struct cmd_link_flow_ctrl_set_result, 6552 autoneg_str, "autoneg"); 6553 cmdline_parse_token_string_t cmd_lfc_set_autoneg = 6554 TOKEN_STRING_INITIALIZER(struct cmd_link_flow_ctrl_set_result, 6555 autoneg, "on#off"); 6556 cmdline_parse_token_num_t cmd_lfc_set_portid = 6557 TOKEN_NUM_INITIALIZER(struct cmd_link_flow_ctrl_set_result, 6558 port_id, UINT16); 6559 6560 /* forward declaration */ 6561 static void 6562 cmd_link_flow_ctrl_set_parsed(void *parsed_result, struct cmdline *cl, 6563 void *data); 6564 6565 cmdline_parse_inst_t cmd_link_flow_control_set = { 6566 .f = cmd_link_flow_ctrl_set_parsed, 6567 .data = NULL, 6568 .help_str = "set flow_ctrl rx on|off tx on|off <high_water> " 6569 "<low_water> <pause_time> <send_xon> mac_ctrl_frame_fwd on|off " 6570 "autoneg on|off <port_id>: Configure the Ethernet flow control", 6571 .tokens = { 6572 (void *)&cmd_lfc_set_set, 6573 (void *)&cmd_lfc_set_flow_ctrl, 6574 (void *)&cmd_lfc_set_rx, 6575 (void *)&cmd_lfc_set_rx_mode, 6576 (void *)&cmd_lfc_set_tx, 6577 (void *)&cmd_lfc_set_tx_mode, 6578 (void *)&cmd_lfc_set_high_water, 6579 (void *)&cmd_lfc_set_low_water, 6580 (void *)&cmd_lfc_set_pause_time, 6581 (void *)&cmd_lfc_set_send_xon, 6582 (void *)&cmd_lfc_set_mac_ctrl_frame_fwd_mode, 6583 (void *)&cmd_lfc_set_mac_ctrl_frame_fwd, 6584 (void *)&cmd_lfc_set_autoneg_str, 6585 (void *)&cmd_lfc_set_autoneg, 6586 (void *)&cmd_lfc_set_portid, 6587 NULL, 6588 }, 6589 }; 6590 6591 cmdline_parse_inst_t cmd_link_flow_control_set_rx = { 6592 .f = cmd_link_flow_ctrl_set_parsed, 6593 .data = (void *)&cmd_link_flow_control_set_rx, 6594 .help_str = "set flow_ctrl rx on|off <port_id>: " 6595 "Change rx flow control parameter", 6596 .tokens = { 6597 (void *)&cmd_lfc_set_set, 6598 (void *)&cmd_lfc_set_flow_ctrl, 6599 (void *)&cmd_lfc_set_rx, 6600 (void *)&cmd_lfc_set_rx_mode, 6601 (void *)&cmd_lfc_set_portid, 6602 NULL, 6603 }, 6604 }; 6605 6606 cmdline_parse_inst_t cmd_link_flow_control_set_tx = { 6607 .f = cmd_link_flow_ctrl_set_parsed, 6608 .data = (void *)&cmd_link_flow_control_set_tx, 6609 .help_str = "set flow_ctrl tx on|off <port_id>: " 6610 "Change tx flow control parameter", 6611 .tokens = { 6612 (void *)&cmd_lfc_set_set, 6613 (void *)&cmd_lfc_set_flow_ctrl, 6614 (void *)&cmd_lfc_set_tx, 6615 (void *)&cmd_lfc_set_tx_mode, 6616 (void *)&cmd_lfc_set_portid, 6617 NULL, 6618 }, 6619 }; 6620 6621 cmdline_parse_inst_t cmd_link_flow_control_set_hw = { 6622 .f = cmd_link_flow_ctrl_set_parsed, 6623 .data = (void *)&cmd_link_flow_control_set_hw, 6624 .help_str = "set flow_ctrl high_water <value> <port_id>: " 6625 "Change high water flow control parameter", 6626 .tokens = { 6627 (void *)&cmd_lfc_set_set, 6628 (void *)&cmd_lfc_set_flow_ctrl, 6629 (void *)&cmd_lfc_set_high_water_str, 6630 (void *)&cmd_lfc_set_high_water, 6631 (void *)&cmd_lfc_set_portid, 6632 NULL, 6633 }, 6634 }; 6635 6636 cmdline_parse_inst_t cmd_link_flow_control_set_lw = { 6637 .f = cmd_link_flow_ctrl_set_parsed, 6638 .data = (void *)&cmd_link_flow_control_set_lw, 6639 .help_str = "set flow_ctrl low_water <value> <port_id>: " 6640 "Change low water flow control parameter", 6641 .tokens = { 6642 (void *)&cmd_lfc_set_set, 6643 (void *)&cmd_lfc_set_flow_ctrl, 6644 (void *)&cmd_lfc_set_low_water_str, 6645 (void *)&cmd_lfc_set_low_water, 6646 (void *)&cmd_lfc_set_portid, 6647 NULL, 6648 }, 6649 }; 6650 6651 cmdline_parse_inst_t cmd_link_flow_control_set_pt = { 6652 .f = cmd_link_flow_ctrl_set_parsed, 6653 .data = (void *)&cmd_link_flow_control_set_pt, 6654 .help_str = "set flow_ctrl pause_time <value> <port_id>: " 6655 "Change pause time flow control parameter", 6656 .tokens = { 6657 (void *)&cmd_lfc_set_set, 6658 (void *)&cmd_lfc_set_flow_ctrl, 6659 (void *)&cmd_lfc_set_pause_time_str, 6660 (void *)&cmd_lfc_set_pause_time, 6661 (void *)&cmd_lfc_set_portid, 6662 NULL, 6663 }, 6664 }; 6665 6666 cmdline_parse_inst_t cmd_link_flow_control_set_xon = { 6667 .f = cmd_link_flow_ctrl_set_parsed, 6668 .data = (void *)&cmd_link_flow_control_set_xon, 6669 .help_str = "set flow_ctrl send_xon <value> <port_id>: " 6670 "Change send_xon flow control parameter", 6671 .tokens = { 6672 (void *)&cmd_lfc_set_set, 6673 (void *)&cmd_lfc_set_flow_ctrl, 6674 (void *)&cmd_lfc_set_send_xon_str, 6675 (void *)&cmd_lfc_set_send_xon, 6676 (void *)&cmd_lfc_set_portid, 6677 NULL, 6678 }, 6679 }; 6680 6681 cmdline_parse_inst_t cmd_link_flow_control_set_macfwd = { 6682 .f = cmd_link_flow_ctrl_set_parsed, 6683 .data = (void *)&cmd_link_flow_control_set_macfwd, 6684 .help_str = "set flow_ctrl mac_ctrl_frame_fwd on|off <port_id>: " 6685 "Change mac ctrl fwd flow control parameter", 6686 .tokens = { 6687 (void *)&cmd_lfc_set_set, 6688 (void *)&cmd_lfc_set_flow_ctrl, 6689 (void *)&cmd_lfc_set_mac_ctrl_frame_fwd_mode, 6690 (void *)&cmd_lfc_set_mac_ctrl_frame_fwd, 6691 (void *)&cmd_lfc_set_portid, 6692 NULL, 6693 }, 6694 }; 6695 6696 cmdline_parse_inst_t cmd_link_flow_control_set_autoneg = { 6697 .f = cmd_link_flow_ctrl_set_parsed, 6698 .data = (void *)&cmd_link_flow_control_set_autoneg, 6699 .help_str = "set flow_ctrl autoneg on|off <port_id>: " 6700 "Change autoneg flow control parameter", 6701 .tokens = { 6702 (void *)&cmd_lfc_set_set, 6703 (void *)&cmd_lfc_set_flow_ctrl, 6704 (void *)&cmd_lfc_set_autoneg_str, 6705 (void *)&cmd_lfc_set_autoneg, 6706 (void *)&cmd_lfc_set_portid, 6707 NULL, 6708 }, 6709 }; 6710 6711 static void 6712 cmd_link_flow_ctrl_set_parsed(void *parsed_result, 6713 __attribute__((unused)) struct cmdline *cl, 6714 void *data) 6715 { 6716 struct cmd_link_flow_ctrl_set_result *res = parsed_result; 6717 cmdline_parse_inst_t *cmd = data; 6718 struct rte_eth_fc_conf fc_conf; 6719 int rx_fc_en = 0; 6720 int tx_fc_en = 0; 6721 int ret; 6722 6723 /* 6724 * Rx on/off, flow control is enabled/disabled on RX side. This can indicate 6725 * the RTE_FC_TX_PAUSE, Transmit pause frame at the Rx side. 6726 * Tx on/off, flow control is enabled/disabled on TX side. This can indicate 6727 * the RTE_FC_RX_PAUSE, Respond to the pause frame at the Tx side. 6728 */ 6729 static enum rte_eth_fc_mode rx_tx_onoff_2_lfc_mode[2][2] = { 6730 {RTE_FC_NONE, RTE_FC_TX_PAUSE}, {RTE_FC_RX_PAUSE, RTE_FC_FULL} 6731 }; 6732 6733 /* Partial command line, retrieve current configuration */ 6734 if (cmd) { 6735 ret = rte_eth_dev_flow_ctrl_get(res->port_id, &fc_conf); 6736 if (ret != 0) { 6737 printf("cannot get current flow ctrl parameters, return" 6738 "code = %d\n", ret); 6739 return; 6740 } 6741 6742 if ((fc_conf.mode == RTE_FC_RX_PAUSE) || 6743 (fc_conf.mode == RTE_FC_FULL)) 6744 rx_fc_en = 1; 6745 if ((fc_conf.mode == RTE_FC_TX_PAUSE) || 6746 (fc_conf.mode == RTE_FC_FULL)) 6747 tx_fc_en = 1; 6748 } 6749 6750 if (!cmd || cmd == &cmd_link_flow_control_set_rx) 6751 rx_fc_en = (!strcmp(res->rx_lfc_mode, "on")) ? 1 : 0; 6752 6753 if (!cmd || cmd == &cmd_link_flow_control_set_tx) 6754 tx_fc_en = (!strcmp(res->tx_lfc_mode, "on")) ? 1 : 0; 6755 6756 fc_conf.mode = rx_tx_onoff_2_lfc_mode[rx_fc_en][tx_fc_en]; 6757 6758 if (!cmd || cmd == &cmd_link_flow_control_set_hw) 6759 fc_conf.high_water = res->high_water; 6760 6761 if (!cmd || cmd == &cmd_link_flow_control_set_lw) 6762 fc_conf.low_water = res->low_water; 6763 6764 if (!cmd || cmd == &cmd_link_flow_control_set_pt) 6765 fc_conf.pause_time = res->pause_time; 6766 6767 if (!cmd || cmd == &cmd_link_flow_control_set_xon) 6768 fc_conf.send_xon = res->send_xon; 6769 6770 if (!cmd || cmd == &cmd_link_flow_control_set_macfwd) { 6771 if (!strcmp(res->mac_ctrl_frame_fwd_mode, "on")) 6772 fc_conf.mac_ctrl_frame_fwd = 1; 6773 else 6774 fc_conf.mac_ctrl_frame_fwd = 0; 6775 } 6776 6777 if (!cmd || cmd == &cmd_link_flow_control_set_autoneg) 6778 fc_conf.autoneg = (!strcmp(res->autoneg, "on")) ? 1 : 0; 6779 6780 ret = rte_eth_dev_flow_ctrl_set(res->port_id, &fc_conf); 6781 if (ret != 0) 6782 printf("bad flow contrl parameter, return code = %d \n", ret); 6783 } 6784 6785 /* *** SETUP ETHERNET PRIORITY FLOW CONTROL *** */ 6786 struct cmd_priority_flow_ctrl_set_result { 6787 cmdline_fixed_string_t set; 6788 cmdline_fixed_string_t pfc_ctrl; 6789 cmdline_fixed_string_t rx; 6790 cmdline_fixed_string_t rx_pfc_mode; 6791 cmdline_fixed_string_t tx; 6792 cmdline_fixed_string_t tx_pfc_mode; 6793 uint32_t high_water; 6794 uint32_t low_water; 6795 uint16_t pause_time; 6796 uint8_t priority; 6797 portid_t port_id; 6798 }; 6799 6800 static void 6801 cmd_priority_flow_ctrl_set_parsed(void *parsed_result, 6802 __attribute__((unused)) struct cmdline *cl, 6803 __attribute__((unused)) void *data) 6804 { 6805 struct cmd_priority_flow_ctrl_set_result *res = parsed_result; 6806 struct rte_eth_pfc_conf pfc_conf; 6807 int rx_fc_enable, tx_fc_enable; 6808 int ret; 6809 6810 /* 6811 * Rx on/off, flow control is enabled/disabled on RX side. This can indicate 6812 * the RTE_FC_TX_PAUSE, Transmit pause frame at the Rx side. 6813 * Tx on/off, flow control is enabled/disabled on TX side. This can indicate 6814 * the RTE_FC_RX_PAUSE, Respond to the pause frame at the Tx side. 6815 */ 6816 static enum rte_eth_fc_mode rx_tx_onoff_2_pfc_mode[2][2] = { 6817 {RTE_FC_NONE, RTE_FC_RX_PAUSE}, {RTE_FC_TX_PAUSE, RTE_FC_FULL} 6818 }; 6819 6820 rx_fc_enable = (!strncmp(res->rx_pfc_mode, "on",2)) ? 1 : 0; 6821 tx_fc_enable = (!strncmp(res->tx_pfc_mode, "on",2)) ? 1 : 0; 6822 pfc_conf.fc.mode = rx_tx_onoff_2_pfc_mode[rx_fc_enable][tx_fc_enable]; 6823 pfc_conf.fc.high_water = res->high_water; 6824 pfc_conf.fc.low_water = res->low_water; 6825 pfc_conf.fc.pause_time = res->pause_time; 6826 pfc_conf.priority = res->priority; 6827 6828 ret = rte_eth_dev_priority_flow_ctrl_set(res->port_id, &pfc_conf); 6829 if (ret != 0) 6830 printf("bad priority flow contrl parameter, return code = %d \n", ret); 6831 } 6832 6833 cmdline_parse_token_string_t cmd_pfc_set_set = 6834 TOKEN_STRING_INITIALIZER(struct cmd_priority_flow_ctrl_set_result, 6835 set, "set"); 6836 cmdline_parse_token_string_t cmd_pfc_set_flow_ctrl = 6837 TOKEN_STRING_INITIALIZER(struct cmd_priority_flow_ctrl_set_result, 6838 pfc_ctrl, "pfc_ctrl"); 6839 cmdline_parse_token_string_t cmd_pfc_set_rx = 6840 TOKEN_STRING_INITIALIZER(struct cmd_priority_flow_ctrl_set_result, 6841 rx, "rx"); 6842 cmdline_parse_token_string_t cmd_pfc_set_rx_mode = 6843 TOKEN_STRING_INITIALIZER(struct cmd_priority_flow_ctrl_set_result, 6844 rx_pfc_mode, "on#off"); 6845 cmdline_parse_token_string_t cmd_pfc_set_tx = 6846 TOKEN_STRING_INITIALIZER(struct cmd_priority_flow_ctrl_set_result, 6847 tx, "tx"); 6848 cmdline_parse_token_string_t cmd_pfc_set_tx_mode = 6849 TOKEN_STRING_INITIALIZER(struct cmd_priority_flow_ctrl_set_result, 6850 tx_pfc_mode, "on#off"); 6851 cmdline_parse_token_num_t cmd_pfc_set_high_water = 6852 TOKEN_NUM_INITIALIZER(struct cmd_priority_flow_ctrl_set_result, 6853 high_water, UINT32); 6854 cmdline_parse_token_num_t cmd_pfc_set_low_water = 6855 TOKEN_NUM_INITIALIZER(struct cmd_priority_flow_ctrl_set_result, 6856 low_water, UINT32); 6857 cmdline_parse_token_num_t cmd_pfc_set_pause_time = 6858 TOKEN_NUM_INITIALIZER(struct cmd_priority_flow_ctrl_set_result, 6859 pause_time, UINT16); 6860 cmdline_parse_token_num_t cmd_pfc_set_priority = 6861 TOKEN_NUM_INITIALIZER(struct cmd_priority_flow_ctrl_set_result, 6862 priority, UINT8); 6863 cmdline_parse_token_num_t cmd_pfc_set_portid = 6864 TOKEN_NUM_INITIALIZER(struct cmd_priority_flow_ctrl_set_result, 6865 port_id, UINT16); 6866 6867 cmdline_parse_inst_t cmd_priority_flow_control_set = { 6868 .f = cmd_priority_flow_ctrl_set_parsed, 6869 .data = NULL, 6870 .help_str = "set pfc_ctrl rx on|off tx on|off <high_water> <low_water> " 6871 "<pause_time> <priority> <port_id>: " 6872 "Configure the Ethernet priority flow control", 6873 .tokens = { 6874 (void *)&cmd_pfc_set_set, 6875 (void *)&cmd_pfc_set_flow_ctrl, 6876 (void *)&cmd_pfc_set_rx, 6877 (void *)&cmd_pfc_set_rx_mode, 6878 (void *)&cmd_pfc_set_tx, 6879 (void *)&cmd_pfc_set_tx_mode, 6880 (void *)&cmd_pfc_set_high_water, 6881 (void *)&cmd_pfc_set_low_water, 6882 (void *)&cmd_pfc_set_pause_time, 6883 (void *)&cmd_pfc_set_priority, 6884 (void *)&cmd_pfc_set_portid, 6885 NULL, 6886 }, 6887 }; 6888 6889 /* *** RESET CONFIGURATION *** */ 6890 struct cmd_reset_result { 6891 cmdline_fixed_string_t reset; 6892 cmdline_fixed_string_t def; 6893 }; 6894 6895 static void cmd_reset_parsed(__attribute__((unused)) void *parsed_result, 6896 struct cmdline *cl, 6897 __attribute__((unused)) void *data) 6898 { 6899 cmdline_printf(cl, "Reset to default forwarding configuration...\n"); 6900 set_def_fwd_config(); 6901 } 6902 6903 cmdline_parse_token_string_t cmd_reset_set = 6904 TOKEN_STRING_INITIALIZER(struct cmd_reset_result, reset, "set"); 6905 cmdline_parse_token_string_t cmd_reset_def = 6906 TOKEN_STRING_INITIALIZER(struct cmd_reset_result, def, 6907 "default"); 6908 6909 cmdline_parse_inst_t cmd_reset = { 6910 .f = cmd_reset_parsed, 6911 .data = NULL, 6912 .help_str = "set default: Reset default forwarding configuration", 6913 .tokens = { 6914 (void *)&cmd_reset_set, 6915 (void *)&cmd_reset_def, 6916 NULL, 6917 }, 6918 }; 6919 6920 /* *** START FORWARDING *** */ 6921 struct cmd_start_result { 6922 cmdline_fixed_string_t start; 6923 }; 6924 6925 cmdline_parse_token_string_t cmd_start_start = 6926 TOKEN_STRING_INITIALIZER(struct cmd_start_result, start, "start"); 6927 6928 static void cmd_start_parsed(__attribute__((unused)) void *parsed_result, 6929 __attribute__((unused)) struct cmdline *cl, 6930 __attribute__((unused)) void *data) 6931 { 6932 start_packet_forwarding(0); 6933 } 6934 6935 cmdline_parse_inst_t cmd_start = { 6936 .f = cmd_start_parsed, 6937 .data = NULL, 6938 .help_str = "start: Start packet forwarding", 6939 .tokens = { 6940 (void *)&cmd_start_start, 6941 NULL, 6942 }, 6943 }; 6944 6945 /* *** START FORWARDING WITH ONE TX BURST FIRST *** */ 6946 struct cmd_start_tx_first_result { 6947 cmdline_fixed_string_t start; 6948 cmdline_fixed_string_t tx_first; 6949 }; 6950 6951 static void 6952 cmd_start_tx_first_parsed(__attribute__((unused)) void *parsed_result, 6953 __attribute__((unused)) struct cmdline *cl, 6954 __attribute__((unused)) void *data) 6955 { 6956 start_packet_forwarding(1); 6957 } 6958 6959 cmdline_parse_token_string_t cmd_start_tx_first_start = 6960 TOKEN_STRING_INITIALIZER(struct cmd_start_tx_first_result, start, 6961 "start"); 6962 cmdline_parse_token_string_t cmd_start_tx_first_tx_first = 6963 TOKEN_STRING_INITIALIZER(struct cmd_start_tx_first_result, 6964 tx_first, "tx_first"); 6965 6966 cmdline_parse_inst_t cmd_start_tx_first = { 6967 .f = cmd_start_tx_first_parsed, 6968 .data = NULL, 6969 .help_str = "start tx_first: Start packet forwarding, " 6970 "after sending 1 burst of packets", 6971 .tokens = { 6972 (void *)&cmd_start_tx_first_start, 6973 (void *)&cmd_start_tx_first_tx_first, 6974 NULL, 6975 }, 6976 }; 6977 6978 /* *** START FORWARDING WITH N TX BURST FIRST *** */ 6979 struct cmd_start_tx_first_n_result { 6980 cmdline_fixed_string_t start; 6981 cmdline_fixed_string_t tx_first; 6982 uint32_t tx_num; 6983 }; 6984 6985 static void 6986 cmd_start_tx_first_n_parsed(void *parsed_result, 6987 __attribute__((unused)) struct cmdline *cl, 6988 __attribute__((unused)) void *data) 6989 { 6990 struct cmd_start_tx_first_n_result *res = parsed_result; 6991 6992 start_packet_forwarding(res->tx_num); 6993 } 6994 6995 cmdline_parse_token_string_t cmd_start_tx_first_n_start = 6996 TOKEN_STRING_INITIALIZER(struct cmd_start_tx_first_n_result, 6997 start, "start"); 6998 cmdline_parse_token_string_t cmd_start_tx_first_n_tx_first = 6999 TOKEN_STRING_INITIALIZER(struct cmd_start_tx_first_n_result, 7000 tx_first, "tx_first"); 7001 cmdline_parse_token_num_t cmd_start_tx_first_n_tx_num = 7002 TOKEN_NUM_INITIALIZER(struct cmd_start_tx_first_n_result, 7003 tx_num, UINT32); 7004 7005 cmdline_parse_inst_t cmd_start_tx_first_n = { 7006 .f = cmd_start_tx_first_n_parsed, 7007 .data = NULL, 7008 .help_str = "start tx_first <num>: " 7009 "packet forwarding, after sending <num> bursts of packets", 7010 .tokens = { 7011 (void *)&cmd_start_tx_first_n_start, 7012 (void *)&cmd_start_tx_first_n_tx_first, 7013 (void *)&cmd_start_tx_first_n_tx_num, 7014 NULL, 7015 }, 7016 }; 7017 7018 /* *** SET LINK UP *** */ 7019 struct cmd_set_link_up_result { 7020 cmdline_fixed_string_t set; 7021 cmdline_fixed_string_t link_up; 7022 cmdline_fixed_string_t port; 7023 portid_t port_id; 7024 }; 7025 7026 cmdline_parse_token_string_t cmd_set_link_up_set = 7027 TOKEN_STRING_INITIALIZER(struct cmd_set_link_up_result, set, "set"); 7028 cmdline_parse_token_string_t cmd_set_link_up_link_up = 7029 TOKEN_STRING_INITIALIZER(struct cmd_set_link_up_result, link_up, 7030 "link-up"); 7031 cmdline_parse_token_string_t cmd_set_link_up_port = 7032 TOKEN_STRING_INITIALIZER(struct cmd_set_link_up_result, port, "port"); 7033 cmdline_parse_token_num_t cmd_set_link_up_port_id = 7034 TOKEN_NUM_INITIALIZER(struct cmd_set_link_up_result, port_id, UINT16); 7035 7036 static void cmd_set_link_up_parsed(__attribute__((unused)) void *parsed_result, 7037 __attribute__((unused)) struct cmdline *cl, 7038 __attribute__((unused)) void *data) 7039 { 7040 struct cmd_set_link_up_result *res = parsed_result; 7041 dev_set_link_up(res->port_id); 7042 } 7043 7044 cmdline_parse_inst_t cmd_set_link_up = { 7045 .f = cmd_set_link_up_parsed, 7046 .data = NULL, 7047 .help_str = "set link-up port <port id>", 7048 .tokens = { 7049 (void *)&cmd_set_link_up_set, 7050 (void *)&cmd_set_link_up_link_up, 7051 (void *)&cmd_set_link_up_port, 7052 (void *)&cmd_set_link_up_port_id, 7053 NULL, 7054 }, 7055 }; 7056 7057 /* *** SET LINK DOWN *** */ 7058 struct cmd_set_link_down_result { 7059 cmdline_fixed_string_t set; 7060 cmdline_fixed_string_t link_down; 7061 cmdline_fixed_string_t port; 7062 portid_t port_id; 7063 }; 7064 7065 cmdline_parse_token_string_t cmd_set_link_down_set = 7066 TOKEN_STRING_INITIALIZER(struct cmd_set_link_down_result, set, "set"); 7067 cmdline_parse_token_string_t cmd_set_link_down_link_down = 7068 TOKEN_STRING_INITIALIZER(struct cmd_set_link_down_result, link_down, 7069 "link-down"); 7070 cmdline_parse_token_string_t cmd_set_link_down_port = 7071 TOKEN_STRING_INITIALIZER(struct cmd_set_link_down_result, port, "port"); 7072 cmdline_parse_token_num_t cmd_set_link_down_port_id = 7073 TOKEN_NUM_INITIALIZER(struct cmd_set_link_down_result, port_id, UINT16); 7074 7075 static void cmd_set_link_down_parsed( 7076 __attribute__((unused)) void *parsed_result, 7077 __attribute__((unused)) struct cmdline *cl, 7078 __attribute__((unused)) void *data) 7079 { 7080 struct cmd_set_link_down_result *res = parsed_result; 7081 dev_set_link_down(res->port_id); 7082 } 7083 7084 cmdline_parse_inst_t cmd_set_link_down = { 7085 .f = cmd_set_link_down_parsed, 7086 .data = NULL, 7087 .help_str = "set link-down port <port id>", 7088 .tokens = { 7089 (void *)&cmd_set_link_down_set, 7090 (void *)&cmd_set_link_down_link_down, 7091 (void *)&cmd_set_link_down_port, 7092 (void *)&cmd_set_link_down_port_id, 7093 NULL, 7094 }, 7095 }; 7096 7097 /* *** SHOW CFG *** */ 7098 struct cmd_showcfg_result { 7099 cmdline_fixed_string_t show; 7100 cmdline_fixed_string_t cfg; 7101 cmdline_fixed_string_t what; 7102 }; 7103 7104 static void cmd_showcfg_parsed(void *parsed_result, 7105 __attribute__((unused)) struct cmdline *cl, 7106 __attribute__((unused)) void *data) 7107 { 7108 struct cmd_showcfg_result *res = parsed_result; 7109 if (!strcmp(res->what, "rxtx")) 7110 rxtx_config_display(); 7111 else if (!strcmp(res->what, "cores")) 7112 fwd_lcores_config_display(); 7113 else if (!strcmp(res->what, "fwd")) 7114 pkt_fwd_config_display(&cur_fwd_config); 7115 else if (!strcmp(res->what, "txpkts")) 7116 show_tx_pkt_segments(); 7117 } 7118 7119 cmdline_parse_token_string_t cmd_showcfg_show = 7120 TOKEN_STRING_INITIALIZER(struct cmd_showcfg_result, show, "show"); 7121 cmdline_parse_token_string_t cmd_showcfg_port = 7122 TOKEN_STRING_INITIALIZER(struct cmd_showcfg_result, cfg, "config"); 7123 cmdline_parse_token_string_t cmd_showcfg_what = 7124 TOKEN_STRING_INITIALIZER(struct cmd_showcfg_result, what, 7125 "rxtx#cores#fwd#txpkts"); 7126 7127 cmdline_parse_inst_t cmd_showcfg = { 7128 .f = cmd_showcfg_parsed, 7129 .data = NULL, 7130 .help_str = "show config rxtx|cores|fwd|txpkts", 7131 .tokens = { 7132 (void *)&cmd_showcfg_show, 7133 (void *)&cmd_showcfg_port, 7134 (void *)&cmd_showcfg_what, 7135 NULL, 7136 }, 7137 }; 7138 7139 /* *** SHOW ALL PORT INFO *** */ 7140 struct cmd_showportall_result { 7141 cmdline_fixed_string_t show; 7142 cmdline_fixed_string_t port; 7143 cmdline_fixed_string_t what; 7144 cmdline_fixed_string_t all; 7145 }; 7146 7147 static void cmd_showportall_parsed(void *parsed_result, 7148 __attribute__((unused)) struct cmdline *cl, 7149 __attribute__((unused)) void *data) 7150 { 7151 portid_t i; 7152 7153 struct cmd_showportall_result *res = parsed_result; 7154 if (!strcmp(res->show, "clear")) { 7155 if (!strcmp(res->what, "stats")) 7156 RTE_ETH_FOREACH_DEV(i) 7157 nic_stats_clear(i); 7158 else if (!strcmp(res->what, "xstats")) 7159 RTE_ETH_FOREACH_DEV(i) 7160 nic_xstats_clear(i); 7161 } else if (!strcmp(res->what, "info")) 7162 RTE_ETH_FOREACH_DEV(i) 7163 port_infos_display(i); 7164 else if (!strcmp(res->what, "summary")) { 7165 port_summary_header_display(); 7166 RTE_ETH_FOREACH_DEV(i) 7167 port_summary_display(i); 7168 } 7169 else if (!strcmp(res->what, "stats")) 7170 RTE_ETH_FOREACH_DEV(i) 7171 nic_stats_display(i); 7172 else if (!strcmp(res->what, "xstats")) 7173 RTE_ETH_FOREACH_DEV(i) 7174 nic_xstats_display(i); 7175 else if (!strcmp(res->what, "fdir")) 7176 RTE_ETH_FOREACH_DEV(i) 7177 fdir_get_infos(i); 7178 else if (!strcmp(res->what, "stat_qmap")) 7179 RTE_ETH_FOREACH_DEV(i) 7180 nic_stats_mapping_display(i); 7181 else if (!strcmp(res->what, "dcb_tc")) 7182 RTE_ETH_FOREACH_DEV(i) 7183 port_dcb_info_display(i); 7184 else if (!strcmp(res->what, "cap")) 7185 RTE_ETH_FOREACH_DEV(i) 7186 port_offload_cap_display(i); 7187 } 7188 7189 cmdline_parse_token_string_t cmd_showportall_show = 7190 TOKEN_STRING_INITIALIZER(struct cmd_showportall_result, show, 7191 "show#clear"); 7192 cmdline_parse_token_string_t cmd_showportall_port = 7193 TOKEN_STRING_INITIALIZER(struct cmd_showportall_result, port, "port"); 7194 cmdline_parse_token_string_t cmd_showportall_what = 7195 TOKEN_STRING_INITIALIZER(struct cmd_showportall_result, what, 7196 "info#summary#stats#xstats#fdir#stat_qmap#dcb_tc#cap"); 7197 cmdline_parse_token_string_t cmd_showportall_all = 7198 TOKEN_STRING_INITIALIZER(struct cmd_showportall_result, all, "all"); 7199 cmdline_parse_inst_t cmd_showportall = { 7200 .f = cmd_showportall_parsed, 7201 .data = NULL, 7202 .help_str = "show|clear port " 7203 "info|summary|stats|xstats|fdir|stat_qmap|dcb_tc|cap all", 7204 .tokens = { 7205 (void *)&cmd_showportall_show, 7206 (void *)&cmd_showportall_port, 7207 (void *)&cmd_showportall_what, 7208 (void *)&cmd_showportall_all, 7209 NULL, 7210 }, 7211 }; 7212 7213 /* *** SHOW PORT INFO *** */ 7214 struct cmd_showport_result { 7215 cmdline_fixed_string_t show; 7216 cmdline_fixed_string_t port; 7217 cmdline_fixed_string_t what; 7218 uint16_t portnum; 7219 }; 7220 7221 static void cmd_showport_parsed(void *parsed_result, 7222 __attribute__((unused)) struct cmdline *cl, 7223 __attribute__((unused)) void *data) 7224 { 7225 struct cmd_showport_result *res = parsed_result; 7226 if (!strcmp(res->show, "clear")) { 7227 if (!strcmp(res->what, "stats")) 7228 nic_stats_clear(res->portnum); 7229 else if (!strcmp(res->what, "xstats")) 7230 nic_xstats_clear(res->portnum); 7231 } else if (!strcmp(res->what, "info")) 7232 port_infos_display(res->portnum); 7233 else if (!strcmp(res->what, "summary")) { 7234 port_summary_header_display(); 7235 port_summary_display(res->portnum); 7236 } 7237 else if (!strcmp(res->what, "stats")) 7238 nic_stats_display(res->portnum); 7239 else if (!strcmp(res->what, "xstats")) 7240 nic_xstats_display(res->portnum); 7241 else if (!strcmp(res->what, "fdir")) 7242 fdir_get_infos(res->portnum); 7243 else if (!strcmp(res->what, "stat_qmap")) 7244 nic_stats_mapping_display(res->portnum); 7245 else if (!strcmp(res->what, "dcb_tc")) 7246 port_dcb_info_display(res->portnum); 7247 else if (!strcmp(res->what, "cap")) 7248 port_offload_cap_display(res->portnum); 7249 } 7250 7251 cmdline_parse_token_string_t cmd_showport_show = 7252 TOKEN_STRING_INITIALIZER(struct cmd_showport_result, show, 7253 "show#clear"); 7254 cmdline_parse_token_string_t cmd_showport_port = 7255 TOKEN_STRING_INITIALIZER(struct cmd_showport_result, port, "port"); 7256 cmdline_parse_token_string_t cmd_showport_what = 7257 TOKEN_STRING_INITIALIZER(struct cmd_showport_result, what, 7258 "info#summary#stats#xstats#fdir#stat_qmap#dcb_tc#cap"); 7259 cmdline_parse_token_num_t cmd_showport_portnum = 7260 TOKEN_NUM_INITIALIZER(struct cmd_showport_result, portnum, UINT16); 7261 7262 cmdline_parse_inst_t cmd_showport = { 7263 .f = cmd_showport_parsed, 7264 .data = NULL, 7265 .help_str = "show|clear port " 7266 "info|summary|stats|xstats|fdir|stat_qmap|dcb_tc|cap " 7267 "<port_id>", 7268 .tokens = { 7269 (void *)&cmd_showport_show, 7270 (void *)&cmd_showport_port, 7271 (void *)&cmd_showport_what, 7272 (void *)&cmd_showport_portnum, 7273 NULL, 7274 }, 7275 }; 7276 7277 /* *** SHOW QUEUE INFO *** */ 7278 struct cmd_showqueue_result { 7279 cmdline_fixed_string_t show; 7280 cmdline_fixed_string_t type; 7281 cmdline_fixed_string_t what; 7282 uint16_t portnum; 7283 uint16_t queuenum; 7284 }; 7285 7286 static void 7287 cmd_showqueue_parsed(void *parsed_result, 7288 __attribute__((unused)) struct cmdline *cl, 7289 __attribute__((unused)) void *data) 7290 { 7291 struct cmd_showqueue_result *res = parsed_result; 7292 7293 if (!strcmp(res->type, "rxq")) 7294 rx_queue_infos_display(res->portnum, res->queuenum); 7295 else if (!strcmp(res->type, "txq")) 7296 tx_queue_infos_display(res->portnum, res->queuenum); 7297 } 7298 7299 cmdline_parse_token_string_t cmd_showqueue_show = 7300 TOKEN_STRING_INITIALIZER(struct cmd_showqueue_result, show, "show"); 7301 cmdline_parse_token_string_t cmd_showqueue_type = 7302 TOKEN_STRING_INITIALIZER(struct cmd_showqueue_result, type, "rxq#txq"); 7303 cmdline_parse_token_string_t cmd_showqueue_what = 7304 TOKEN_STRING_INITIALIZER(struct cmd_showqueue_result, what, "info"); 7305 cmdline_parse_token_num_t cmd_showqueue_portnum = 7306 TOKEN_NUM_INITIALIZER(struct cmd_showqueue_result, portnum, UINT16); 7307 cmdline_parse_token_num_t cmd_showqueue_queuenum = 7308 TOKEN_NUM_INITIALIZER(struct cmd_showqueue_result, queuenum, UINT16); 7309 7310 cmdline_parse_inst_t cmd_showqueue = { 7311 .f = cmd_showqueue_parsed, 7312 .data = NULL, 7313 .help_str = "show rxq|txq info <port_id> <queue_id>", 7314 .tokens = { 7315 (void *)&cmd_showqueue_show, 7316 (void *)&cmd_showqueue_type, 7317 (void *)&cmd_showqueue_what, 7318 (void *)&cmd_showqueue_portnum, 7319 (void *)&cmd_showqueue_queuenum, 7320 NULL, 7321 }, 7322 }; 7323 7324 /* *** READ PORT REGISTER *** */ 7325 struct cmd_read_reg_result { 7326 cmdline_fixed_string_t read; 7327 cmdline_fixed_string_t reg; 7328 portid_t port_id; 7329 uint32_t reg_off; 7330 }; 7331 7332 static void 7333 cmd_read_reg_parsed(void *parsed_result, 7334 __attribute__((unused)) struct cmdline *cl, 7335 __attribute__((unused)) void *data) 7336 { 7337 struct cmd_read_reg_result *res = parsed_result; 7338 port_reg_display(res->port_id, res->reg_off); 7339 } 7340 7341 cmdline_parse_token_string_t cmd_read_reg_read = 7342 TOKEN_STRING_INITIALIZER(struct cmd_read_reg_result, read, "read"); 7343 cmdline_parse_token_string_t cmd_read_reg_reg = 7344 TOKEN_STRING_INITIALIZER(struct cmd_read_reg_result, reg, "reg"); 7345 cmdline_parse_token_num_t cmd_read_reg_port_id = 7346 TOKEN_NUM_INITIALIZER(struct cmd_read_reg_result, port_id, UINT16); 7347 cmdline_parse_token_num_t cmd_read_reg_reg_off = 7348 TOKEN_NUM_INITIALIZER(struct cmd_read_reg_result, reg_off, UINT32); 7349 7350 cmdline_parse_inst_t cmd_read_reg = { 7351 .f = cmd_read_reg_parsed, 7352 .data = NULL, 7353 .help_str = "read reg <port_id> <reg_off>", 7354 .tokens = { 7355 (void *)&cmd_read_reg_read, 7356 (void *)&cmd_read_reg_reg, 7357 (void *)&cmd_read_reg_port_id, 7358 (void *)&cmd_read_reg_reg_off, 7359 NULL, 7360 }, 7361 }; 7362 7363 /* *** READ PORT REGISTER BIT FIELD *** */ 7364 struct cmd_read_reg_bit_field_result { 7365 cmdline_fixed_string_t read; 7366 cmdline_fixed_string_t regfield; 7367 portid_t port_id; 7368 uint32_t reg_off; 7369 uint8_t bit1_pos; 7370 uint8_t bit2_pos; 7371 }; 7372 7373 static void 7374 cmd_read_reg_bit_field_parsed(void *parsed_result, 7375 __attribute__((unused)) struct cmdline *cl, 7376 __attribute__((unused)) void *data) 7377 { 7378 struct cmd_read_reg_bit_field_result *res = parsed_result; 7379 port_reg_bit_field_display(res->port_id, res->reg_off, 7380 res->bit1_pos, res->bit2_pos); 7381 } 7382 7383 cmdline_parse_token_string_t cmd_read_reg_bit_field_read = 7384 TOKEN_STRING_INITIALIZER(struct cmd_read_reg_bit_field_result, read, 7385 "read"); 7386 cmdline_parse_token_string_t cmd_read_reg_bit_field_regfield = 7387 TOKEN_STRING_INITIALIZER(struct cmd_read_reg_bit_field_result, 7388 regfield, "regfield"); 7389 cmdline_parse_token_num_t cmd_read_reg_bit_field_port_id = 7390 TOKEN_NUM_INITIALIZER(struct cmd_read_reg_bit_field_result, port_id, 7391 UINT16); 7392 cmdline_parse_token_num_t cmd_read_reg_bit_field_reg_off = 7393 TOKEN_NUM_INITIALIZER(struct cmd_read_reg_bit_field_result, reg_off, 7394 UINT32); 7395 cmdline_parse_token_num_t cmd_read_reg_bit_field_bit1_pos = 7396 TOKEN_NUM_INITIALIZER(struct cmd_read_reg_bit_field_result, bit1_pos, 7397 UINT8); 7398 cmdline_parse_token_num_t cmd_read_reg_bit_field_bit2_pos = 7399 TOKEN_NUM_INITIALIZER(struct cmd_read_reg_bit_field_result, bit2_pos, 7400 UINT8); 7401 7402 cmdline_parse_inst_t cmd_read_reg_bit_field = { 7403 .f = cmd_read_reg_bit_field_parsed, 7404 .data = NULL, 7405 .help_str = "read regfield <port_id> <reg_off> <bit_x> <bit_y>: " 7406 "Read register bit field between bit_x and bit_y included", 7407 .tokens = { 7408 (void *)&cmd_read_reg_bit_field_read, 7409 (void *)&cmd_read_reg_bit_field_regfield, 7410 (void *)&cmd_read_reg_bit_field_port_id, 7411 (void *)&cmd_read_reg_bit_field_reg_off, 7412 (void *)&cmd_read_reg_bit_field_bit1_pos, 7413 (void *)&cmd_read_reg_bit_field_bit2_pos, 7414 NULL, 7415 }, 7416 }; 7417 7418 /* *** READ PORT REGISTER BIT *** */ 7419 struct cmd_read_reg_bit_result { 7420 cmdline_fixed_string_t read; 7421 cmdline_fixed_string_t regbit; 7422 portid_t port_id; 7423 uint32_t reg_off; 7424 uint8_t bit_pos; 7425 }; 7426 7427 static void 7428 cmd_read_reg_bit_parsed(void *parsed_result, 7429 __attribute__((unused)) struct cmdline *cl, 7430 __attribute__((unused)) void *data) 7431 { 7432 struct cmd_read_reg_bit_result *res = parsed_result; 7433 port_reg_bit_display(res->port_id, res->reg_off, res->bit_pos); 7434 } 7435 7436 cmdline_parse_token_string_t cmd_read_reg_bit_read = 7437 TOKEN_STRING_INITIALIZER(struct cmd_read_reg_bit_result, read, "read"); 7438 cmdline_parse_token_string_t cmd_read_reg_bit_regbit = 7439 TOKEN_STRING_INITIALIZER(struct cmd_read_reg_bit_result, 7440 regbit, "regbit"); 7441 cmdline_parse_token_num_t cmd_read_reg_bit_port_id = 7442 TOKEN_NUM_INITIALIZER(struct cmd_read_reg_bit_result, port_id, UINT16); 7443 cmdline_parse_token_num_t cmd_read_reg_bit_reg_off = 7444 TOKEN_NUM_INITIALIZER(struct cmd_read_reg_bit_result, reg_off, UINT32); 7445 cmdline_parse_token_num_t cmd_read_reg_bit_bit_pos = 7446 TOKEN_NUM_INITIALIZER(struct cmd_read_reg_bit_result, bit_pos, UINT8); 7447 7448 cmdline_parse_inst_t cmd_read_reg_bit = { 7449 .f = cmd_read_reg_bit_parsed, 7450 .data = NULL, 7451 .help_str = "read regbit <port_id> <reg_off> <bit_x>: 0 <= bit_x <= 31", 7452 .tokens = { 7453 (void *)&cmd_read_reg_bit_read, 7454 (void *)&cmd_read_reg_bit_regbit, 7455 (void *)&cmd_read_reg_bit_port_id, 7456 (void *)&cmd_read_reg_bit_reg_off, 7457 (void *)&cmd_read_reg_bit_bit_pos, 7458 NULL, 7459 }, 7460 }; 7461 7462 /* *** WRITE PORT REGISTER *** */ 7463 struct cmd_write_reg_result { 7464 cmdline_fixed_string_t write; 7465 cmdline_fixed_string_t reg; 7466 portid_t port_id; 7467 uint32_t reg_off; 7468 uint32_t value; 7469 }; 7470 7471 static void 7472 cmd_write_reg_parsed(void *parsed_result, 7473 __attribute__((unused)) struct cmdline *cl, 7474 __attribute__((unused)) void *data) 7475 { 7476 struct cmd_write_reg_result *res = parsed_result; 7477 port_reg_set(res->port_id, res->reg_off, res->value); 7478 } 7479 7480 cmdline_parse_token_string_t cmd_write_reg_write = 7481 TOKEN_STRING_INITIALIZER(struct cmd_write_reg_result, write, "write"); 7482 cmdline_parse_token_string_t cmd_write_reg_reg = 7483 TOKEN_STRING_INITIALIZER(struct cmd_write_reg_result, reg, "reg"); 7484 cmdline_parse_token_num_t cmd_write_reg_port_id = 7485 TOKEN_NUM_INITIALIZER(struct cmd_write_reg_result, port_id, UINT16); 7486 cmdline_parse_token_num_t cmd_write_reg_reg_off = 7487 TOKEN_NUM_INITIALIZER(struct cmd_write_reg_result, reg_off, UINT32); 7488 cmdline_parse_token_num_t cmd_write_reg_value = 7489 TOKEN_NUM_INITIALIZER(struct cmd_write_reg_result, value, UINT32); 7490 7491 cmdline_parse_inst_t cmd_write_reg = { 7492 .f = cmd_write_reg_parsed, 7493 .data = NULL, 7494 .help_str = "write reg <port_id> <reg_off> <reg_value>", 7495 .tokens = { 7496 (void *)&cmd_write_reg_write, 7497 (void *)&cmd_write_reg_reg, 7498 (void *)&cmd_write_reg_port_id, 7499 (void *)&cmd_write_reg_reg_off, 7500 (void *)&cmd_write_reg_value, 7501 NULL, 7502 }, 7503 }; 7504 7505 /* *** WRITE PORT REGISTER BIT FIELD *** */ 7506 struct cmd_write_reg_bit_field_result { 7507 cmdline_fixed_string_t write; 7508 cmdline_fixed_string_t regfield; 7509 portid_t port_id; 7510 uint32_t reg_off; 7511 uint8_t bit1_pos; 7512 uint8_t bit2_pos; 7513 uint32_t value; 7514 }; 7515 7516 static void 7517 cmd_write_reg_bit_field_parsed(void *parsed_result, 7518 __attribute__((unused)) struct cmdline *cl, 7519 __attribute__((unused)) void *data) 7520 { 7521 struct cmd_write_reg_bit_field_result *res = parsed_result; 7522 port_reg_bit_field_set(res->port_id, res->reg_off, 7523 res->bit1_pos, res->bit2_pos, res->value); 7524 } 7525 7526 cmdline_parse_token_string_t cmd_write_reg_bit_field_write = 7527 TOKEN_STRING_INITIALIZER(struct cmd_write_reg_bit_field_result, write, 7528 "write"); 7529 cmdline_parse_token_string_t cmd_write_reg_bit_field_regfield = 7530 TOKEN_STRING_INITIALIZER(struct cmd_write_reg_bit_field_result, 7531 regfield, "regfield"); 7532 cmdline_parse_token_num_t cmd_write_reg_bit_field_port_id = 7533 TOKEN_NUM_INITIALIZER(struct cmd_write_reg_bit_field_result, port_id, 7534 UINT16); 7535 cmdline_parse_token_num_t cmd_write_reg_bit_field_reg_off = 7536 TOKEN_NUM_INITIALIZER(struct cmd_write_reg_bit_field_result, reg_off, 7537 UINT32); 7538 cmdline_parse_token_num_t cmd_write_reg_bit_field_bit1_pos = 7539 TOKEN_NUM_INITIALIZER(struct cmd_write_reg_bit_field_result, bit1_pos, 7540 UINT8); 7541 cmdline_parse_token_num_t cmd_write_reg_bit_field_bit2_pos = 7542 TOKEN_NUM_INITIALIZER(struct cmd_write_reg_bit_field_result, bit2_pos, 7543 UINT8); 7544 cmdline_parse_token_num_t cmd_write_reg_bit_field_value = 7545 TOKEN_NUM_INITIALIZER(struct cmd_write_reg_bit_field_result, value, 7546 UINT32); 7547 7548 cmdline_parse_inst_t cmd_write_reg_bit_field = { 7549 .f = cmd_write_reg_bit_field_parsed, 7550 .data = NULL, 7551 .help_str = "write regfield <port_id> <reg_off> <bit_x> <bit_y> " 7552 "<reg_value>: " 7553 "Set register bit field between bit_x and bit_y included", 7554 .tokens = { 7555 (void *)&cmd_write_reg_bit_field_write, 7556 (void *)&cmd_write_reg_bit_field_regfield, 7557 (void *)&cmd_write_reg_bit_field_port_id, 7558 (void *)&cmd_write_reg_bit_field_reg_off, 7559 (void *)&cmd_write_reg_bit_field_bit1_pos, 7560 (void *)&cmd_write_reg_bit_field_bit2_pos, 7561 (void *)&cmd_write_reg_bit_field_value, 7562 NULL, 7563 }, 7564 }; 7565 7566 /* *** WRITE PORT REGISTER BIT *** */ 7567 struct cmd_write_reg_bit_result { 7568 cmdline_fixed_string_t write; 7569 cmdline_fixed_string_t regbit; 7570 portid_t port_id; 7571 uint32_t reg_off; 7572 uint8_t bit_pos; 7573 uint8_t value; 7574 }; 7575 7576 static void 7577 cmd_write_reg_bit_parsed(void *parsed_result, 7578 __attribute__((unused)) struct cmdline *cl, 7579 __attribute__((unused)) void *data) 7580 { 7581 struct cmd_write_reg_bit_result *res = parsed_result; 7582 port_reg_bit_set(res->port_id, res->reg_off, res->bit_pos, res->value); 7583 } 7584 7585 cmdline_parse_token_string_t cmd_write_reg_bit_write = 7586 TOKEN_STRING_INITIALIZER(struct cmd_write_reg_bit_result, write, 7587 "write"); 7588 cmdline_parse_token_string_t cmd_write_reg_bit_regbit = 7589 TOKEN_STRING_INITIALIZER(struct cmd_write_reg_bit_result, 7590 regbit, "regbit"); 7591 cmdline_parse_token_num_t cmd_write_reg_bit_port_id = 7592 TOKEN_NUM_INITIALIZER(struct cmd_write_reg_bit_result, port_id, UINT16); 7593 cmdline_parse_token_num_t cmd_write_reg_bit_reg_off = 7594 TOKEN_NUM_INITIALIZER(struct cmd_write_reg_bit_result, reg_off, UINT32); 7595 cmdline_parse_token_num_t cmd_write_reg_bit_bit_pos = 7596 TOKEN_NUM_INITIALIZER(struct cmd_write_reg_bit_result, bit_pos, UINT8); 7597 cmdline_parse_token_num_t cmd_write_reg_bit_value = 7598 TOKEN_NUM_INITIALIZER(struct cmd_write_reg_bit_result, value, UINT8); 7599 7600 cmdline_parse_inst_t cmd_write_reg_bit = { 7601 .f = cmd_write_reg_bit_parsed, 7602 .data = NULL, 7603 .help_str = "write regbit <port_id> <reg_off> <bit_x> 0|1: " 7604 "0 <= bit_x <= 31", 7605 .tokens = { 7606 (void *)&cmd_write_reg_bit_write, 7607 (void *)&cmd_write_reg_bit_regbit, 7608 (void *)&cmd_write_reg_bit_port_id, 7609 (void *)&cmd_write_reg_bit_reg_off, 7610 (void *)&cmd_write_reg_bit_bit_pos, 7611 (void *)&cmd_write_reg_bit_value, 7612 NULL, 7613 }, 7614 }; 7615 7616 /* *** READ A RING DESCRIPTOR OF A PORT RX/TX QUEUE *** */ 7617 struct cmd_read_rxd_txd_result { 7618 cmdline_fixed_string_t read; 7619 cmdline_fixed_string_t rxd_txd; 7620 portid_t port_id; 7621 uint16_t queue_id; 7622 uint16_t desc_id; 7623 }; 7624 7625 static void 7626 cmd_read_rxd_txd_parsed(void *parsed_result, 7627 __attribute__((unused)) struct cmdline *cl, 7628 __attribute__((unused)) void *data) 7629 { 7630 struct cmd_read_rxd_txd_result *res = parsed_result; 7631 7632 if (!strcmp(res->rxd_txd, "rxd")) 7633 rx_ring_desc_display(res->port_id, res->queue_id, res->desc_id); 7634 else if (!strcmp(res->rxd_txd, "txd")) 7635 tx_ring_desc_display(res->port_id, res->queue_id, res->desc_id); 7636 } 7637 7638 cmdline_parse_token_string_t cmd_read_rxd_txd_read = 7639 TOKEN_STRING_INITIALIZER(struct cmd_read_rxd_txd_result, read, "read"); 7640 cmdline_parse_token_string_t cmd_read_rxd_txd_rxd_txd = 7641 TOKEN_STRING_INITIALIZER(struct cmd_read_rxd_txd_result, rxd_txd, 7642 "rxd#txd"); 7643 cmdline_parse_token_num_t cmd_read_rxd_txd_port_id = 7644 TOKEN_NUM_INITIALIZER(struct cmd_read_rxd_txd_result, port_id, UINT16); 7645 cmdline_parse_token_num_t cmd_read_rxd_txd_queue_id = 7646 TOKEN_NUM_INITIALIZER(struct cmd_read_rxd_txd_result, queue_id, UINT16); 7647 cmdline_parse_token_num_t cmd_read_rxd_txd_desc_id = 7648 TOKEN_NUM_INITIALIZER(struct cmd_read_rxd_txd_result, desc_id, UINT16); 7649 7650 cmdline_parse_inst_t cmd_read_rxd_txd = { 7651 .f = cmd_read_rxd_txd_parsed, 7652 .data = NULL, 7653 .help_str = "read rxd|txd <port_id> <queue_id> <desc_id>", 7654 .tokens = { 7655 (void *)&cmd_read_rxd_txd_read, 7656 (void *)&cmd_read_rxd_txd_rxd_txd, 7657 (void *)&cmd_read_rxd_txd_port_id, 7658 (void *)&cmd_read_rxd_txd_queue_id, 7659 (void *)&cmd_read_rxd_txd_desc_id, 7660 NULL, 7661 }, 7662 }; 7663 7664 /* *** QUIT *** */ 7665 struct cmd_quit_result { 7666 cmdline_fixed_string_t quit; 7667 }; 7668 7669 static void cmd_quit_parsed(__attribute__((unused)) void *parsed_result, 7670 struct cmdline *cl, 7671 __attribute__((unused)) void *data) 7672 { 7673 cmdline_quit(cl); 7674 } 7675 7676 cmdline_parse_token_string_t cmd_quit_quit = 7677 TOKEN_STRING_INITIALIZER(struct cmd_quit_result, quit, "quit"); 7678 7679 cmdline_parse_inst_t cmd_quit = { 7680 .f = cmd_quit_parsed, 7681 .data = NULL, 7682 .help_str = "quit: Exit application", 7683 .tokens = { 7684 (void *)&cmd_quit_quit, 7685 NULL, 7686 }, 7687 }; 7688 7689 /* *** ADD/REMOVE MAC ADDRESS FROM A PORT *** */ 7690 struct cmd_mac_addr_result { 7691 cmdline_fixed_string_t mac_addr_cmd; 7692 cmdline_fixed_string_t what; 7693 uint16_t port_num; 7694 struct ether_addr address; 7695 }; 7696 7697 static void cmd_mac_addr_parsed(void *parsed_result, 7698 __attribute__((unused)) struct cmdline *cl, 7699 __attribute__((unused)) void *data) 7700 { 7701 struct cmd_mac_addr_result *res = parsed_result; 7702 int ret; 7703 7704 if (strcmp(res->what, "add") == 0) 7705 ret = rte_eth_dev_mac_addr_add(res->port_num, &res->address, 0); 7706 else if (strcmp(res->what, "set") == 0) 7707 ret = rte_eth_dev_default_mac_addr_set(res->port_num, 7708 &res->address); 7709 else 7710 ret = rte_eth_dev_mac_addr_remove(res->port_num, &res->address); 7711 7712 /* check the return value and print it if is < 0 */ 7713 if(ret < 0) 7714 printf("mac_addr_cmd error: (%s)\n", strerror(-ret)); 7715 7716 } 7717 7718 cmdline_parse_token_string_t cmd_mac_addr_cmd = 7719 TOKEN_STRING_INITIALIZER(struct cmd_mac_addr_result, mac_addr_cmd, 7720 "mac_addr"); 7721 cmdline_parse_token_string_t cmd_mac_addr_what = 7722 TOKEN_STRING_INITIALIZER(struct cmd_mac_addr_result, what, 7723 "add#remove#set"); 7724 cmdline_parse_token_num_t cmd_mac_addr_portnum = 7725 TOKEN_NUM_INITIALIZER(struct cmd_mac_addr_result, port_num, 7726 UINT16); 7727 cmdline_parse_token_etheraddr_t cmd_mac_addr_addr = 7728 TOKEN_ETHERADDR_INITIALIZER(struct cmd_mac_addr_result, address); 7729 7730 cmdline_parse_inst_t cmd_mac_addr = { 7731 .f = cmd_mac_addr_parsed, 7732 .data = (void *)0, 7733 .help_str = "mac_addr add|remove|set <port_id> <mac_addr>: " 7734 "Add/Remove/Set MAC address on port_id", 7735 .tokens = { 7736 (void *)&cmd_mac_addr_cmd, 7737 (void *)&cmd_mac_addr_what, 7738 (void *)&cmd_mac_addr_portnum, 7739 (void *)&cmd_mac_addr_addr, 7740 NULL, 7741 }, 7742 }; 7743 7744 /* *** SET THE PEER ADDRESS FOR CERTAIN PORT *** */ 7745 struct cmd_eth_peer_result { 7746 cmdline_fixed_string_t set; 7747 cmdline_fixed_string_t eth_peer; 7748 portid_t port_id; 7749 cmdline_fixed_string_t peer_addr; 7750 }; 7751 7752 static void cmd_set_eth_peer_parsed(void *parsed_result, 7753 __attribute__((unused)) struct cmdline *cl, 7754 __attribute__((unused)) void *data) 7755 { 7756 struct cmd_eth_peer_result *res = parsed_result; 7757 7758 if (test_done == 0) { 7759 printf("Please stop forwarding first\n"); 7760 return; 7761 } 7762 if (!strcmp(res->eth_peer, "eth-peer")) { 7763 set_fwd_eth_peer(res->port_id, res->peer_addr); 7764 fwd_config_setup(); 7765 } 7766 } 7767 cmdline_parse_token_string_t cmd_eth_peer_set = 7768 TOKEN_STRING_INITIALIZER(struct cmd_eth_peer_result, set, "set"); 7769 cmdline_parse_token_string_t cmd_eth_peer = 7770 TOKEN_STRING_INITIALIZER(struct cmd_eth_peer_result, eth_peer, "eth-peer"); 7771 cmdline_parse_token_num_t cmd_eth_peer_port_id = 7772 TOKEN_NUM_INITIALIZER(struct cmd_eth_peer_result, port_id, UINT16); 7773 cmdline_parse_token_string_t cmd_eth_peer_addr = 7774 TOKEN_STRING_INITIALIZER(struct cmd_eth_peer_result, peer_addr, NULL); 7775 7776 cmdline_parse_inst_t cmd_set_fwd_eth_peer = { 7777 .f = cmd_set_eth_peer_parsed, 7778 .data = NULL, 7779 .help_str = "set eth-peer <port_id> <peer_mac>", 7780 .tokens = { 7781 (void *)&cmd_eth_peer_set, 7782 (void *)&cmd_eth_peer, 7783 (void *)&cmd_eth_peer_port_id, 7784 (void *)&cmd_eth_peer_addr, 7785 NULL, 7786 }, 7787 }; 7788 7789 /* *** CONFIGURE QUEUE STATS COUNTER MAPPINGS *** */ 7790 struct cmd_set_qmap_result { 7791 cmdline_fixed_string_t set; 7792 cmdline_fixed_string_t qmap; 7793 cmdline_fixed_string_t what; 7794 portid_t port_id; 7795 uint16_t queue_id; 7796 uint8_t map_value; 7797 }; 7798 7799 static void 7800 cmd_set_qmap_parsed(void *parsed_result, 7801 __attribute__((unused)) struct cmdline *cl, 7802 __attribute__((unused)) void *data) 7803 { 7804 struct cmd_set_qmap_result *res = parsed_result; 7805 int is_rx = (strcmp(res->what, "tx") == 0) ? 0 : 1; 7806 7807 set_qmap(res->port_id, (uint8_t)is_rx, res->queue_id, res->map_value); 7808 } 7809 7810 cmdline_parse_token_string_t cmd_setqmap_set = 7811 TOKEN_STRING_INITIALIZER(struct cmd_set_qmap_result, 7812 set, "set"); 7813 cmdline_parse_token_string_t cmd_setqmap_qmap = 7814 TOKEN_STRING_INITIALIZER(struct cmd_set_qmap_result, 7815 qmap, "stat_qmap"); 7816 cmdline_parse_token_string_t cmd_setqmap_what = 7817 TOKEN_STRING_INITIALIZER(struct cmd_set_qmap_result, 7818 what, "tx#rx"); 7819 cmdline_parse_token_num_t cmd_setqmap_portid = 7820 TOKEN_NUM_INITIALIZER(struct cmd_set_qmap_result, 7821 port_id, UINT16); 7822 cmdline_parse_token_num_t cmd_setqmap_queueid = 7823 TOKEN_NUM_INITIALIZER(struct cmd_set_qmap_result, 7824 queue_id, UINT16); 7825 cmdline_parse_token_num_t cmd_setqmap_mapvalue = 7826 TOKEN_NUM_INITIALIZER(struct cmd_set_qmap_result, 7827 map_value, UINT8); 7828 7829 cmdline_parse_inst_t cmd_set_qmap = { 7830 .f = cmd_set_qmap_parsed, 7831 .data = NULL, 7832 .help_str = "set stat_qmap rx|tx <port_id> <queue_id> <map_value>: " 7833 "Set statistics mapping value on tx|rx queue_id of port_id", 7834 .tokens = { 7835 (void *)&cmd_setqmap_set, 7836 (void *)&cmd_setqmap_qmap, 7837 (void *)&cmd_setqmap_what, 7838 (void *)&cmd_setqmap_portid, 7839 (void *)&cmd_setqmap_queueid, 7840 (void *)&cmd_setqmap_mapvalue, 7841 NULL, 7842 }, 7843 }; 7844 7845 /* *** SET OPTION TO HIDE ZERO VALUES FOR XSTATS DISPLAY *** */ 7846 struct cmd_set_xstats_hide_zero_result { 7847 cmdline_fixed_string_t keyword; 7848 cmdline_fixed_string_t name; 7849 cmdline_fixed_string_t on_off; 7850 }; 7851 7852 static void 7853 cmd_set_xstats_hide_zero_parsed(void *parsed_result, 7854 __attribute__((unused)) struct cmdline *cl, 7855 __attribute__((unused)) void *data) 7856 { 7857 struct cmd_set_xstats_hide_zero_result *res; 7858 uint16_t on_off = 0; 7859 7860 res = parsed_result; 7861 on_off = !strcmp(res->on_off, "on") ? 1 : 0; 7862 set_xstats_hide_zero(on_off); 7863 } 7864 7865 cmdline_parse_token_string_t cmd_set_xstats_hide_zero_keyword = 7866 TOKEN_STRING_INITIALIZER(struct cmd_set_xstats_hide_zero_result, 7867 keyword, "set"); 7868 cmdline_parse_token_string_t cmd_set_xstats_hide_zero_name = 7869 TOKEN_STRING_INITIALIZER(struct cmd_set_xstats_hide_zero_result, 7870 name, "xstats-hide-zero"); 7871 cmdline_parse_token_string_t cmd_set_xstats_hide_zero_on_off = 7872 TOKEN_STRING_INITIALIZER(struct cmd_set_xstats_hide_zero_result, 7873 on_off, "on#off"); 7874 7875 cmdline_parse_inst_t cmd_set_xstats_hide_zero = { 7876 .f = cmd_set_xstats_hide_zero_parsed, 7877 .data = NULL, 7878 .help_str = "set xstats-hide-zero on|off", 7879 .tokens = { 7880 (void *)&cmd_set_xstats_hide_zero_keyword, 7881 (void *)&cmd_set_xstats_hide_zero_name, 7882 (void *)&cmd_set_xstats_hide_zero_on_off, 7883 NULL, 7884 }, 7885 }; 7886 7887 /* *** CONFIGURE UNICAST HASH TABLE *** */ 7888 struct cmd_set_uc_hash_table { 7889 cmdline_fixed_string_t set; 7890 cmdline_fixed_string_t port; 7891 portid_t port_id; 7892 cmdline_fixed_string_t what; 7893 struct ether_addr address; 7894 cmdline_fixed_string_t mode; 7895 }; 7896 7897 static void 7898 cmd_set_uc_hash_parsed(void *parsed_result, 7899 __attribute__((unused)) struct cmdline *cl, 7900 __attribute__((unused)) void *data) 7901 { 7902 int ret=0; 7903 struct cmd_set_uc_hash_table *res = parsed_result; 7904 7905 int is_on = (strcmp(res->mode, "on") == 0) ? 1 : 0; 7906 7907 if (strcmp(res->what, "uta") == 0) 7908 ret = rte_eth_dev_uc_hash_table_set(res->port_id, 7909 &res->address,(uint8_t)is_on); 7910 if (ret < 0) 7911 printf("bad unicast hash table parameter, return code = %d \n", ret); 7912 7913 } 7914 7915 cmdline_parse_token_string_t cmd_set_uc_hash_set = 7916 TOKEN_STRING_INITIALIZER(struct cmd_set_uc_hash_table, 7917 set, "set"); 7918 cmdline_parse_token_string_t cmd_set_uc_hash_port = 7919 TOKEN_STRING_INITIALIZER(struct cmd_set_uc_hash_table, 7920 port, "port"); 7921 cmdline_parse_token_num_t cmd_set_uc_hash_portid = 7922 TOKEN_NUM_INITIALIZER(struct cmd_set_uc_hash_table, 7923 port_id, UINT16); 7924 cmdline_parse_token_string_t cmd_set_uc_hash_what = 7925 TOKEN_STRING_INITIALIZER(struct cmd_set_uc_hash_table, 7926 what, "uta"); 7927 cmdline_parse_token_etheraddr_t cmd_set_uc_hash_mac = 7928 TOKEN_ETHERADDR_INITIALIZER(struct cmd_set_uc_hash_table, 7929 address); 7930 cmdline_parse_token_string_t cmd_set_uc_hash_mode = 7931 TOKEN_STRING_INITIALIZER(struct cmd_set_uc_hash_table, 7932 mode, "on#off"); 7933 7934 cmdline_parse_inst_t cmd_set_uc_hash_filter = { 7935 .f = cmd_set_uc_hash_parsed, 7936 .data = NULL, 7937 .help_str = "set port <port_id> uta <mac_addr> on|off)", 7938 .tokens = { 7939 (void *)&cmd_set_uc_hash_set, 7940 (void *)&cmd_set_uc_hash_port, 7941 (void *)&cmd_set_uc_hash_portid, 7942 (void *)&cmd_set_uc_hash_what, 7943 (void *)&cmd_set_uc_hash_mac, 7944 (void *)&cmd_set_uc_hash_mode, 7945 NULL, 7946 }, 7947 }; 7948 7949 struct cmd_set_uc_all_hash_table { 7950 cmdline_fixed_string_t set; 7951 cmdline_fixed_string_t port; 7952 portid_t port_id; 7953 cmdline_fixed_string_t what; 7954 cmdline_fixed_string_t value; 7955 cmdline_fixed_string_t mode; 7956 }; 7957 7958 static void 7959 cmd_set_uc_all_hash_parsed(void *parsed_result, 7960 __attribute__((unused)) struct cmdline *cl, 7961 __attribute__((unused)) void *data) 7962 { 7963 int ret=0; 7964 struct cmd_set_uc_all_hash_table *res = parsed_result; 7965 7966 int is_on = (strcmp(res->mode, "on") == 0) ? 1 : 0; 7967 7968 if ((strcmp(res->what, "uta") == 0) && 7969 (strcmp(res->value, "all") == 0)) 7970 ret = rte_eth_dev_uc_all_hash_table_set(res->port_id,(uint8_t) is_on); 7971 if (ret < 0) 7972 printf("bad unicast hash table parameter," 7973 "return code = %d \n", ret); 7974 } 7975 7976 cmdline_parse_token_string_t cmd_set_uc_all_hash_set = 7977 TOKEN_STRING_INITIALIZER(struct cmd_set_uc_all_hash_table, 7978 set, "set"); 7979 cmdline_parse_token_string_t cmd_set_uc_all_hash_port = 7980 TOKEN_STRING_INITIALIZER(struct cmd_set_uc_all_hash_table, 7981 port, "port"); 7982 cmdline_parse_token_num_t cmd_set_uc_all_hash_portid = 7983 TOKEN_NUM_INITIALIZER(struct cmd_set_uc_all_hash_table, 7984 port_id, UINT16); 7985 cmdline_parse_token_string_t cmd_set_uc_all_hash_what = 7986 TOKEN_STRING_INITIALIZER(struct cmd_set_uc_all_hash_table, 7987 what, "uta"); 7988 cmdline_parse_token_string_t cmd_set_uc_all_hash_value = 7989 TOKEN_STRING_INITIALIZER(struct cmd_set_uc_all_hash_table, 7990 value,"all"); 7991 cmdline_parse_token_string_t cmd_set_uc_all_hash_mode = 7992 TOKEN_STRING_INITIALIZER(struct cmd_set_uc_all_hash_table, 7993 mode, "on#off"); 7994 7995 cmdline_parse_inst_t cmd_set_uc_all_hash_filter = { 7996 .f = cmd_set_uc_all_hash_parsed, 7997 .data = NULL, 7998 .help_str = "set port <port_id> uta all on|off", 7999 .tokens = { 8000 (void *)&cmd_set_uc_all_hash_set, 8001 (void *)&cmd_set_uc_all_hash_port, 8002 (void *)&cmd_set_uc_all_hash_portid, 8003 (void *)&cmd_set_uc_all_hash_what, 8004 (void *)&cmd_set_uc_all_hash_value, 8005 (void *)&cmd_set_uc_all_hash_mode, 8006 NULL, 8007 }, 8008 }; 8009 8010 /* *** CONFIGURE MACVLAN FILTER FOR VF(s) *** */ 8011 struct cmd_set_vf_macvlan_filter { 8012 cmdline_fixed_string_t set; 8013 cmdline_fixed_string_t port; 8014 portid_t port_id; 8015 cmdline_fixed_string_t vf; 8016 uint8_t vf_id; 8017 struct ether_addr address; 8018 cmdline_fixed_string_t filter_type; 8019 cmdline_fixed_string_t mode; 8020 }; 8021 8022 static void 8023 cmd_set_vf_macvlan_parsed(void *parsed_result, 8024 __attribute__((unused)) struct cmdline *cl, 8025 __attribute__((unused)) void *data) 8026 { 8027 int is_on, ret = 0; 8028 struct cmd_set_vf_macvlan_filter *res = parsed_result; 8029 struct rte_eth_mac_filter filter; 8030 8031 memset(&filter, 0, sizeof(struct rte_eth_mac_filter)); 8032 8033 rte_memcpy(&filter.mac_addr, &res->address, ETHER_ADDR_LEN); 8034 8035 /* set VF MAC filter */ 8036 filter.is_vf = 1; 8037 8038 /* set VF ID */ 8039 filter.dst_id = res->vf_id; 8040 8041 if (!strcmp(res->filter_type, "exact-mac")) 8042 filter.filter_type = RTE_MAC_PERFECT_MATCH; 8043 else if (!strcmp(res->filter_type, "exact-mac-vlan")) 8044 filter.filter_type = RTE_MACVLAN_PERFECT_MATCH; 8045 else if (!strcmp(res->filter_type, "hashmac")) 8046 filter.filter_type = RTE_MAC_HASH_MATCH; 8047 else if (!strcmp(res->filter_type, "hashmac-vlan")) 8048 filter.filter_type = RTE_MACVLAN_HASH_MATCH; 8049 8050 is_on = (strcmp(res->mode, "on") == 0) ? 1 : 0; 8051 8052 if (is_on) 8053 ret = rte_eth_dev_filter_ctrl(res->port_id, 8054 RTE_ETH_FILTER_MACVLAN, 8055 RTE_ETH_FILTER_ADD, 8056 &filter); 8057 else 8058 ret = rte_eth_dev_filter_ctrl(res->port_id, 8059 RTE_ETH_FILTER_MACVLAN, 8060 RTE_ETH_FILTER_DELETE, 8061 &filter); 8062 8063 if (ret < 0) 8064 printf("bad set MAC hash parameter, return code = %d\n", ret); 8065 8066 } 8067 8068 cmdline_parse_token_string_t cmd_set_vf_macvlan_set = 8069 TOKEN_STRING_INITIALIZER(struct cmd_set_vf_macvlan_filter, 8070 set, "set"); 8071 cmdline_parse_token_string_t cmd_set_vf_macvlan_port = 8072 TOKEN_STRING_INITIALIZER(struct cmd_set_vf_macvlan_filter, 8073 port, "port"); 8074 cmdline_parse_token_num_t cmd_set_vf_macvlan_portid = 8075 TOKEN_NUM_INITIALIZER(struct cmd_set_vf_macvlan_filter, 8076 port_id, UINT16); 8077 cmdline_parse_token_string_t cmd_set_vf_macvlan_vf = 8078 TOKEN_STRING_INITIALIZER(struct cmd_set_vf_macvlan_filter, 8079 vf, "vf"); 8080 cmdline_parse_token_num_t cmd_set_vf_macvlan_vf_id = 8081 TOKEN_NUM_INITIALIZER(struct cmd_set_vf_macvlan_filter, 8082 vf_id, UINT8); 8083 cmdline_parse_token_etheraddr_t cmd_set_vf_macvlan_mac = 8084 TOKEN_ETHERADDR_INITIALIZER(struct cmd_set_vf_macvlan_filter, 8085 address); 8086 cmdline_parse_token_string_t cmd_set_vf_macvlan_filter_type = 8087 TOKEN_STRING_INITIALIZER(struct cmd_set_vf_macvlan_filter, 8088 filter_type, "exact-mac#exact-mac-vlan" 8089 "#hashmac#hashmac-vlan"); 8090 cmdline_parse_token_string_t cmd_set_vf_macvlan_mode = 8091 TOKEN_STRING_INITIALIZER(struct cmd_set_vf_macvlan_filter, 8092 mode, "on#off"); 8093 8094 cmdline_parse_inst_t cmd_set_vf_macvlan_filter = { 8095 .f = cmd_set_vf_macvlan_parsed, 8096 .data = NULL, 8097 .help_str = "set port <port_id> vf <vf_id> <mac_addr> " 8098 "exact-mac|exact-mac-vlan|hashmac|hashmac-vlan on|off: " 8099 "Exact match rule: exact match of MAC or MAC and VLAN; " 8100 "hash match rule: hash match of MAC and exact match of VLAN", 8101 .tokens = { 8102 (void *)&cmd_set_vf_macvlan_set, 8103 (void *)&cmd_set_vf_macvlan_port, 8104 (void *)&cmd_set_vf_macvlan_portid, 8105 (void *)&cmd_set_vf_macvlan_vf, 8106 (void *)&cmd_set_vf_macvlan_vf_id, 8107 (void *)&cmd_set_vf_macvlan_mac, 8108 (void *)&cmd_set_vf_macvlan_filter_type, 8109 (void *)&cmd_set_vf_macvlan_mode, 8110 NULL, 8111 }, 8112 }; 8113 8114 /* *** CONFIGURE VF TRAFFIC CONTROL *** */ 8115 struct cmd_set_vf_traffic { 8116 cmdline_fixed_string_t set; 8117 cmdline_fixed_string_t port; 8118 portid_t port_id; 8119 cmdline_fixed_string_t vf; 8120 uint8_t vf_id; 8121 cmdline_fixed_string_t what; 8122 cmdline_fixed_string_t mode; 8123 }; 8124 8125 static void 8126 cmd_set_vf_traffic_parsed(void *parsed_result, 8127 __attribute__((unused)) struct cmdline *cl, 8128 __attribute__((unused)) void *data) 8129 { 8130 struct cmd_set_vf_traffic *res = parsed_result; 8131 int is_rx = (strcmp(res->what, "rx") == 0) ? 1 : 0; 8132 int is_on = (strcmp(res->mode, "on") == 0) ? 1 : 0; 8133 8134 set_vf_traffic(res->port_id, (uint8_t)is_rx, res->vf_id,(uint8_t) is_on); 8135 } 8136 8137 cmdline_parse_token_string_t cmd_setvf_traffic_set = 8138 TOKEN_STRING_INITIALIZER(struct cmd_set_vf_traffic, 8139 set, "set"); 8140 cmdline_parse_token_string_t cmd_setvf_traffic_port = 8141 TOKEN_STRING_INITIALIZER(struct cmd_set_vf_traffic, 8142 port, "port"); 8143 cmdline_parse_token_num_t cmd_setvf_traffic_portid = 8144 TOKEN_NUM_INITIALIZER(struct cmd_set_vf_traffic, 8145 port_id, UINT16); 8146 cmdline_parse_token_string_t cmd_setvf_traffic_vf = 8147 TOKEN_STRING_INITIALIZER(struct cmd_set_vf_traffic, 8148 vf, "vf"); 8149 cmdline_parse_token_num_t cmd_setvf_traffic_vfid = 8150 TOKEN_NUM_INITIALIZER(struct cmd_set_vf_traffic, 8151 vf_id, UINT8); 8152 cmdline_parse_token_string_t cmd_setvf_traffic_what = 8153 TOKEN_STRING_INITIALIZER(struct cmd_set_vf_traffic, 8154 what, "tx#rx"); 8155 cmdline_parse_token_string_t cmd_setvf_traffic_mode = 8156 TOKEN_STRING_INITIALIZER(struct cmd_set_vf_traffic, 8157 mode, "on#off"); 8158 8159 cmdline_parse_inst_t cmd_set_vf_traffic = { 8160 .f = cmd_set_vf_traffic_parsed, 8161 .data = NULL, 8162 .help_str = "set port <port_id> vf <vf_id> rx|tx on|off", 8163 .tokens = { 8164 (void *)&cmd_setvf_traffic_set, 8165 (void *)&cmd_setvf_traffic_port, 8166 (void *)&cmd_setvf_traffic_portid, 8167 (void *)&cmd_setvf_traffic_vf, 8168 (void *)&cmd_setvf_traffic_vfid, 8169 (void *)&cmd_setvf_traffic_what, 8170 (void *)&cmd_setvf_traffic_mode, 8171 NULL, 8172 }, 8173 }; 8174 8175 /* *** CONFIGURE VF RECEIVE MODE *** */ 8176 struct cmd_set_vf_rxmode { 8177 cmdline_fixed_string_t set; 8178 cmdline_fixed_string_t port; 8179 portid_t port_id; 8180 cmdline_fixed_string_t vf; 8181 uint8_t vf_id; 8182 cmdline_fixed_string_t what; 8183 cmdline_fixed_string_t mode; 8184 cmdline_fixed_string_t on; 8185 }; 8186 8187 static void 8188 cmd_set_vf_rxmode_parsed(void *parsed_result, 8189 __attribute__((unused)) struct cmdline *cl, 8190 __attribute__((unused)) void *data) 8191 { 8192 int ret = -ENOTSUP; 8193 uint16_t rx_mode = 0; 8194 struct cmd_set_vf_rxmode *res = parsed_result; 8195 8196 int is_on = (strcmp(res->on, "on") == 0) ? 1 : 0; 8197 if (!strcmp(res->what,"rxmode")) { 8198 if (!strcmp(res->mode, "AUPE")) 8199 rx_mode |= ETH_VMDQ_ACCEPT_UNTAG; 8200 else if (!strcmp(res->mode, "ROPE")) 8201 rx_mode |= ETH_VMDQ_ACCEPT_HASH_UC; 8202 else if (!strcmp(res->mode, "BAM")) 8203 rx_mode |= ETH_VMDQ_ACCEPT_BROADCAST; 8204 else if (!strncmp(res->mode, "MPE",3)) 8205 rx_mode |= ETH_VMDQ_ACCEPT_MULTICAST; 8206 } 8207 8208 RTE_SET_USED(is_on); 8209 8210 #ifdef RTE_LIBRTE_IXGBE_PMD 8211 if (ret == -ENOTSUP) 8212 ret = rte_pmd_ixgbe_set_vf_rxmode(res->port_id, res->vf_id, 8213 rx_mode, (uint8_t)is_on); 8214 #endif 8215 #ifdef RTE_LIBRTE_BNXT_PMD 8216 if (ret == -ENOTSUP) 8217 ret = rte_pmd_bnxt_set_vf_rxmode(res->port_id, res->vf_id, 8218 rx_mode, (uint8_t)is_on); 8219 #endif 8220 if (ret < 0) 8221 printf("bad VF receive mode parameter, return code = %d \n", 8222 ret); 8223 } 8224 8225 cmdline_parse_token_string_t cmd_set_vf_rxmode_set = 8226 TOKEN_STRING_INITIALIZER(struct cmd_set_vf_rxmode, 8227 set, "set"); 8228 cmdline_parse_token_string_t cmd_set_vf_rxmode_port = 8229 TOKEN_STRING_INITIALIZER(struct cmd_set_vf_rxmode, 8230 port, "port"); 8231 cmdline_parse_token_num_t cmd_set_vf_rxmode_portid = 8232 TOKEN_NUM_INITIALIZER(struct cmd_set_vf_rxmode, 8233 port_id, UINT16); 8234 cmdline_parse_token_string_t cmd_set_vf_rxmode_vf = 8235 TOKEN_STRING_INITIALIZER(struct cmd_set_vf_rxmode, 8236 vf, "vf"); 8237 cmdline_parse_token_num_t cmd_set_vf_rxmode_vfid = 8238 TOKEN_NUM_INITIALIZER(struct cmd_set_vf_rxmode, 8239 vf_id, UINT8); 8240 cmdline_parse_token_string_t cmd_set_vf_rxmode_what = 8241 TOKEN_STRING_INITIALIZER(struct cmd_set_vf_rxmode, 8242 what, "rxmode"); 8243 cmdline_parse_token_string_t cmd_set_vf_rxmode_mode = 8244 TOKEN_STRING_INITIALIZER(struct cmd_set_vf_rxmode, 8245 mode, "AUPE#ROPE#BAM#MPE"); 8246 cmdline_parse_token_string_t cmd_set_vf_rxmode_on = 8247 TOKEN_STRING_INITIALIZER(struct cmd_set_vf_rxmode, 8248 on, "on#off"); 8249 8250 cmdline_parse_inst_t cmd_set_vf_rxmode = { 8251 .f = cmd_set_vf_rxmode_parsed, 8252 .data = NULL, 8253 .help_str = "set port <port_id> vf <vf_id> rxmode " 8254 "AUPE|ROPE|BAM|MPE on|off", 8255 .tokens = { 8256 (void *)&cmd_set_vf_rxmode_set, 8257 (void *)&cmd_set_vf_rxmode_port, 8258 (void *)&cmd_set_vf_rxmode_portid, 8259 (void *)&cmd_set_vf_rxmode_vf, 8260 (void *)&cmd_set_vf_rxmode_vfid, 8261 (void *)&cmd_set_vf_rxmode_what, 8262 (void *)&cmd_set_vf_rxmode_mode, 8263 (void *)&cmd_set_vf_rxmode_on, 8264 NULL, 8265 }, 8266 }; 8267 8268 /* *** ADD MAC ADDRESS FILTER FOR A VF OF A PORT *** */ 8269 struct cmd_vf_mac_addr_result { 8270 cmdline_fixed_string_t mac_addr_cmd; 8271 cmdline_fixed_string_t what; 8272 cmdline_fixed_string_t port; 8273 uint16_t port_num; 8274 cmdline_fixed_string_t vf; 8275 uint8_t vf_num; 8276 struct ether_addr address; 8277 }; 8278 8279 static void cmd_vf_mac_addr_parsed(void *parsed_result, 8280 __attribute__((unused)) struct cmdline *cl, 8281 __attribute__((unused)) void *data) 8282 { 8283 struct cmd_vf_mac_addr_result *res = parsed_result; 8284 int ret = -ENOTSUP; 8285 8286 if (strcmp(res->what, "add") != 0) 8287 return; 8288 8289 #ifdef RTE_LIBRTE_I40E_PMD 8290 if (ret == -ENOTSUP) 8291 ret = rte_pmd_i40e_add_vf_mac_addr(res->port_num, res->vf_num, 8292 &res->address); 8293 #endif 8294 #ifdef RTE_LIBRTE_BNXT_PMD 8295 if (ret == -ENOTSUP) 8296 ret = rte_pmd_bnxt_mac_addr_add(res->port_num, &res->address, 8297 res->vf_num); 8298 #endif 8299 8300 if(ret < 0) 8301 printf("vf_mac_addr_cmd error: (%s)\n", strerror(-ret)); 8302 8303 } 8304 8305 cmdline_parse_token_string_t cmd_vf_mac_addr_cmd = 8306 TOKEN_STRING_INITIALIZER(struct cmd_vf_mac_addr_result, 8307 mac_addr_cmd,"mac_addr"); 8308 cmdline_parse_token_string_t cmd_vf_mac_addr_what = 8309 TOKEN_STRING_INITIALIZER(struct cmd_vf_mac_addr_result, 8310 what,"add"); 8311 cmdline_parse_token_string_t cmd_vf_mac_addr_port = 8312 TOKEN_STRING_INITIALIZER(struct cmd_vf_mac_addr_result, 8313 port,"port"); 8314 cmdline_parse_token_num_t cmd_vf_mac_addr_portnum = 8315 TOKEN_NUM_INITIALIZER(struct cmd_vf_mac_addr_result, 8316 port_num, UINT16); 8317 cmdline_parse_token_string_t cmd_vf_mac_addr_vf = 8318 TOKEN_STRING_INITIALIZER(struct cmd_vf_mac_addr_result, 8319 vf,"vf"); 8320 cmdline_parse_token_num_t cmd_vf_mac_addr_vfnum = 8321 TOKEN_NUM_INITIALIZER(struct cmd_vf_mac_addr_result, 8322 vf_num, UINT8); 8323 cmdline_parse_token_etheraddr_t cmd_vf_mac_addr_addr = 8324 TOKEN_ETHERADDR_INITIALIZER(struct cmd_vf_mac_addr_result, 8325 address); 8326 8327 cmdline_parse_inst_t cmd_vf_mac_addr_filter = { 8328 .f = cmd_vf_mac_addr_parsed, 8329 .data = (void *)0, 8330 .help_str = "mac_addr add port <port_id> vf <vf_id> <mac_addr>: " 8331 "Add MAC address filtering for a VF on port_id", 8332 .tokens = { 8333 (void *)&cmd_vf_mac_addr_cmd, 8334 (void *)&cmd_vf_mac_addr_what, 8335 (void *)&cmd_vf_mac_addr_port, 8336 (void *)&cmd_vf_mac_addr_portnum, 8337 (void *)&cmd_vf_mac_addr_vf, 8338 (void *)&cmd_vf_mac_addr_vfnum, 8339 (void *)&cmd_vf_mac_addr_addr, 8340 NULL, 8341 }, 8342 }; 8343 8344 /* *** ADD/REMOVE A VLAN IDENTIFIER TO/FROM A PORT VLAN RX FILTER *** */ 8345 struct cmd_vf_rx_vlan_filter { 8346 cmdline_fixed_string_t rx_vlan; 8347 cmdline_fixed_string_t what; 8348 uint16_t vlan_id; 8349 cmdline_fixed_string_t port; 8350 portid_t port_id; 8351 cmdline_fixed_string_t vf; 8352 uint64_t vf_mask; 8353 }; 8354 8355 static void 8356 cmd_vf_rx_vlan_filter_parsed(void *parsed_result, 8357 __attribute__((unused)) struct cmdline *cl, 8358 __attribute__((unused)) void *data) 8359 { 8360 struct cmd_vf_rx_vlan_filter *res = parsed_result; 8361 int ret = -ENOTSUP; 8362 8363 __rte_unused int is_add = (strcmp(res->what, "add") == 0) ? 1 : 0; 8364 8365 #ifdef RTE_LIBRTE_IXGBE_PMD 8366 if (ret == -ENOTSUP) 8367 ret = rte_pmd_ixgbe_set_vf_vlan_filter(res->port_id, 8368 res->vlan_id, res->vf_mask, is_add); 8369 #endif 8370 #ifdef RTE_LIBRTE_I40E_PMD 8371 if (ret == -ENOTSUP) 8372 ret = rte_pmd_i40e_set_vf_vlan_filter(res->port_id, 8373 res->vlan_id, res->vf_mask, is_add); 8374 #endif 8375 #ifdef RTE_LIBRTE_BNXT_PMD 8376 if (ret == -ENOTSUP) 8377 ret = rte_pmd_bnxt_set_vf_vlan_filter(res->port_id, 8378 res->vlan_id, res->vf_mask, is_add); 8379 #endif 8380 8381 switch (ret) { 8382 case 0: 8383 break; 8384 case -EINVAL: 8385 printf("invalid vlan_id %d or vf_mask %"PRIu64"\n", 8386 res->vlan_id, res->vf_mask); 8387 break; 8388 case -ENODEV: 8389 printf("invalid port_id %d\n", res->port_id); 8390 break; 8391 case -ENOTSUP: 8392 printf("function not implemented or supported\n"); 8393 break; 8394 default: 8395 printf("programming error: (%s)\n", strerror(-ret)); 8396 } 8397 } 8398 8399 cmdline_parse_token_string_t cmd_vf_rx_vlan_filter_rx_vlan = 8400 TOKEN_STRING_INITIALIZER(struct cmd_vf_rx_vlan_filter, 8401 rx_vlan, "rx_vlan"); 8402 cmdline_parse_token_string_t cmd_vf_rx_vlan_filter_what = 8403 TOKEN_STRING_INITIALIZER(struct cmd_vf_rx_vlan_filter, 8404 what, "add#rm"); 8405 cmdline_parse_token_num_t cmd_vf_rx_vlan_filter_vlanid = 8406 TOKEN_NUM_INITIALIZER(struct cmd_vf_rx_vlan_filter, 8407 vlan_id, UINT16); 8408 cmdline_parse_token_string_t cmd_vf_rx_vlan_filter_port = 8409 TOKEN_STRING_INITIALIZER(struct cmd_vf_rx_vlan_filter, 8410 port, "port"); 8411 cmdline_parse_token_num_t cmd_vf_rx_vlan_filter_portid = 8412 TOKEN_NUM_INITIALIZER(struct cmd_vf_rx_vlan_filter, 8413 port_id, UINT16); 8414 cmdline_parse_token_string_t cmd_vf_rx_vlan_filter_vf = 8415 TOKEN_STRING_INITIALIZER(struct cmd_vf_rx_vlan_filter, 8416 vf, "vf"); 8417 cmdline_parse_token_num_t cmd_vf_rx_vlan_filter_vf_mask = 8418 TOKEN_NUM_INITIALIZER(struct cmd_vf_rx_vlan_filter, 8419 vf_mask, UINT64); 8420 8421 cmdline_parse_inst_t cmd_vf_rxvlan_filter = { 8422 .f = cmd_vf_rx_vlan_filter_parsed, 8423 .data = NULL, 8424 .help_str = "rx_vlan add|rm <vlan_id> port <port_id> vf <vf_mask>: " 8425 "(vf_mask = hexadecimal VF mask)", 8426 .tokens = { 8427 (void *)&cmd_vf_rx_vlan_filter_rx_vlan, 8428 (void *)&cmd_vf_rx_vlan_filter_what, 8429 (void *)&cmd_vf_rx_vlan_filter_vlanid, 8430 (void *)&cmd_vf_rx_vlan_filter_port, 8431 (void *)&cmd_vf_rx_vlan_filter_portid, 8432 (void *)&cmd_vf_rx_vlan_filter_vf, 8433 (void *)&cmd_vf_rx_vlan_filter_vf_mask, 8434 NULL, 8435 }, 8436 }; 8437 8438 /* *** SET RATE LIMIT FOR A QUEUE OF A PORT *** */ 8439 struct cmd_queue_rate_limit_result { 8440 cmdline_fixed_string_t set; 8441 cmdline_fixed_string_t port; 8442 uint16_t port_num; 8443 cmdline_fixed_string_t queue; 8444 uint8_t queue_num; 8445 cmdline_fixed_string_t rate; 8446 uint16_t rate_num; 8447 }; 8448 8449 static void cmd_queue_rate_limit_parsed(void *parsed_result, 8450 __attribute__((unused)) struct cmdline *cl, 8451 __attribute__((unused)) void *data) 8452 { 8453 struct cmd_queue_rate_limit_result *res = parsed_result; 8454 int ret = 0; 8455 8456 if ((strcmp(res->set, "set") == 0) && (strcmp(res->port, "port") == 0) 8457 && (strcmp(res->queue, "queue") == 0) 8458 && (strcmp(res->rate, "rate") == 0)) 8459 ret = set_queue_rate_limit(res->port_num, res->queue_num, 8460 res->rate_num); 8461 if (ret < 0) 8462 printf("queue_rate_limit_cmd error: (%s)\n", strerror(-ret)); 8463 8464 } 8465 8466 cmdline_parse_token_string_t cmd_queue_rate_limit_set = 8467 TOKEN_STRING_INITIALIZER(struct cmd_queue_rate_limit_result, 8468 set, "set"); 8469 cmdline_parse_token_string_t cmd_queue_rate_limit_port = 8470 TOKEN_STRING_INITIALIZER(struct cmd_queue_rate_limit_result, 8471 port, "port"); 8472 cmdline_parse_token_num_t cmd_queue_rate_limit_portnum = 8473 TOKEN_NUM_INITIALIZER(struct cmd_queue_rate_limit_result, 8474 port_num, UINT16); 8475 cmdline_parse_token_string_t cmd_queue_rate_limit_queue = 8476 TOKEN_STRING_INITIALIZER(struct cmd_queue_rate_limit_result, 8477 queue, "queue"); 8478 cmdline_parse_token_num_t cmd_queue_rate_limit_queuenum = 8479 TOKEN_NUM_INITIALIZER(struct cmd_queue_rate_limit_result, 8480 queue_num, UINT8); 8481 cmdline_parse_token_string_t cmd_queue_rate_limit_rate = 8482 TOKEN_STRING_INITIALIZER(struct cmd_queue_rate_limit_result, 8483 rate, "rate"); 8484 cmdline_parse_token_num_t cmd_queue_rate_limit_ratenum = 8485 TOKEN_NUM_INITIALIZER(struct cmd_queue_rate_limit_result, 8486 rate_num, UINT16); 8487 8488 cmdline_parse_inst_t cmd_queue_rate_limit = { 8489 .f = cmd_queue_rate_limit_parsed, 8490 .data = (void *)0, 8491 .help_str = "set port <port_id> queue <queue_id> rate <rate_value>: " 8492 "Set rate limit for a queue on port_id", 8493 .tokens = { 8494 (void *)&cmd_queue_rate_limit_set, 8495 (void *)&cmd_queue_rate_limit_port, 8496 (void *)&cmd_queue_rate_limit_portnum, 8497 (void *)&cmd_queue_rate_limit_queue, 8498 (void *)&cmd_queue_rate_limit_queuenum, 8499 (void *)&cmd_queue_rate_limit_rate, 8500 (void *)&cmd_queue_rate_limit_ratenum, 8501 NULL, 8502 }, 8503 }; 8504 8505 /* *** SET RATE LIMIT FOR A VF OF A PORT *** */ 8506 struct cmd_vf_rate_limit_result { 8507 cmdline_fixed_string_t set; 8508 cmdline_fixed_string_t port; 8509 uint16_t port_num; 8510 cmdline_fixed_string_t vf; 8511 uint8_t vf_num; 8512 cmdline_fixed_string_t rate; 8513 uint16_t rate_num; 8514 cmdline_fixed_string_t q_msk; 8515 uint64_t q_msk_val; 8516 }; 8517 8518 static void cmd_vf_rate_limit_parsed(void *parsed_result, 8519 __attribute__((unused)) struct cmdline *cl, 8520 __attribute__((unused)) void *data) 8521 { 8522 struct cmd_vf_rate_limit_result *res = parsed_result; 8523 int ret = 0; 8524 8525 if ((strcmp(res->set, "set") == 0) && (strcmp(res->port, "port") == 0) 8526 && (strcmp(res->vf, "vf") == 0) 8527 && (strcmp(res->rate, "rate") == 0) 8528 && (strcmp(res->q_msk, "queue_mask") == 0)) 8529 ret = set_vf_rate_limit(res->port_num, res->vf_num, 8530 res->rate_num, res->q_msk_val); 8531 if (ret < 0) 8532 printf("vf_rate_limit_cmd error: (%s)\n", strerror(-ret)); 8533 8534 } 8535 8536 cmdline_parse_token_string_t cmd_vf_rate_limit_set = 8537 TOKEN_STRING_INITIALIZER(struct cmd_vf_rate_limit_result, 8538 set, "set"); 8539 cmdline_parse_token_string_t cmd_vf_rate_limit_port = 8540 TOKEN_STRING_INITIALIZER(struct cmd_vf_rate_limit_result, 8541 port, "port"); 8542 cmdline_parse_token_num_t cmd_vf_rate_limit_portnum = 8543 TOKEN_NUM_INITIALIZER(struct cmd_vf_rate_limit_result, 8544 port_num, UINT16); 8545 cmdline_parse_token_string_t cmd_vf_rate_limit_vf = 8546 TOKEN_STRING_INITIALIZER(struct cmd_vf_rate_limit_result, 8547 vf, "vf"); 8548 cmdline_parse_token_num_t cmd_vf_rate_limit_vfnum = 8549 TOKEN_NUM_INITIALIZER(struct cmd_vf_rate_limit_result, 8550 vf_num, UINT8); 8551 cmdline_parse_token_string_t cmd_vf_rate_limit_rate = 8552 TOKEN_STRING_INITIALIZER(struct cmd_vf_rate_limit_result, 8553 rate, "rate"); 8554 cmdline_parse_token_num_t cmd_vf_rate_limit_ratenum = 8555 TOKEN_NUM_INITIALIZER(struct cmd_vf_rate_limit_result, 8556 rate_num, UINT16); 8557 cmdline_parse_token_string_t cmd_vf_rate_limit_q_msk = 8558 TOKEN_STRING_INITIALIZER(struct cmd_vf_rate_limit_result, 8559 q_msk, "queue_mask"); 8560 cmdline_parse_token_num_t cmd_vf_rate_limit_q_msk_val = 8561 TOKEN_NUM_INITIALIZER(struct cmd_vf_rate_limit_result, 8562 q_msk_val, UINT64); 8563 8564 cmdline_parse_inst_t cmd_vf_rate_limit = { 8565 .f = cmd_vf_rate_limit_parsed, 8566 .data = (void *)0, 8567 .help_str = "set port <port_id> vf <vf_id> rate <rate_value> " 8568 "queue_mask <queue_mask_value>: " 8569 "Set rate limit for queues of VF on port_id", 8570 .tokens = { 8571 (void *)&cmd_vf_rate_limit_set, 8572 (void *)&cmd_vf_rate_limit_port, 8573 (void *)&cmd_vf_rate_limit_portnum, 8574 (void *)&cmd_vf_rate_limit_vf, 8575 (void *)&cmd_vf_rate_limit_vfnum, 8576 (void *)&cmd_vf_rate_limit_rate, 8577 (void *)&cmd_vf_rate_limit_ratenum, 8578 (void *)&cmd_vf_rate_limit_q_msk, 8579 (void *)&cmd_vf_rate_limit_q_msk_val, 8580 NULL, 8581 }, 8582 }; 8583 8584 /* *** ADD TUNNEL FILTER OF A PORT *** */ 8585 struct cmd_tunnel_filter_result { 8586 cmdline_fixed_string_t cmd; 8587 cmdline_fixed_string_t what; 8588 portid_t port_id; 8589 struct ether_addr outer_mac; 8590 struct ether_addr inner_mac; 8591 cmdline_ipaddr_t ip_value; 8592 uint16_t inner_vlan; 8593 cmdline_fixed_string_t tunnel_type; 8594 cmdline_fixed_string_t filter_type; 8595 uint32_t tenant_id; 8596 uint16_t queue_num; 8597 }; 8598 8599 static void 8600 cmd_tunnel_filter_parsed(void *parsed_result, 8601 __attribute__((unused)) struct cmdline *cl, 8602 __attribute__((unused)) void *data) 8603 { 8604 struct cmd_tunnel_filter_result *res = parsed_result; 8605 struct rte_eth_tunnel_filter_conf tunnel_filter_conf; 8606 int ret = 0; 8607 8608 memset(&tunnel_filter_conf, 0, sizeof(tunnel_filter_conf)); 8609 8610 ether_addr_copy(&res->outer_mac, &tunnel_filter_conf.outer_mac); 8611 ether_addr_copy(&res->inner_mac, &tunnel_filter_conf.inner_mac); 8612 tunnel_filter_conf.inner_vlan = res->inner_vlan; 8613 8614 if (res->ip_value.family == AF_INET) { 8615 tunnel_filter_conf.ip_addr.ipv4_addr = 8616 res->ip_value.addr.ipv4.s_addr; 8617 tunnel_filter_conf.ip_type = RTE_TUNNEL_IPTYPE_IPV4; 8618 } else { 8619 memcpy(&(tunnel_filter_conf.ip_addr.ipv6_addr), 8620 &(res->ip_value.addr.ipv6), 8621 sizeof(struct in6_addr)); 8622 tunnel_filter_conf.ip_type = RTE_TUNNEL_IPTYPE_IPV6; 8623 } 8624 8625 if (!strcmp(res->filter_type, "imac-ivlan")) 8626 tunnel_filter_conf.filter_type = RTE_TUNNEL_FILTER_IMAC_IVLAN; 8627 else if (!strcmp(res->filter_type, "imac-ivlan-tenid")) 8628 tunnel_filter_conf.filter_type = 8629 RTE_TUNNEL_FILTER_IMAC_IVLAN_TENID; 8630 else if (!strcmp(res->filter_type, "imac-tenid")) 8631 tunnel_filter_conf.filter_type = RTE_TUNNEL_FILTER_IMAC_TENID; 8632 else if (!strcmp(res->filter_type, "imac")) 8633 tunnel_filter_conf.filter_type = ETH_TUNNEL_FILTER_IMAC; 8634 else if (!strcmp(res->filter_type, "omac-imac-tenid")) 8635 tunnel_filter_conf.filter_type = 8636 RTE_TUNNEL_FILTER_OMAC_TENID_IMAC; 8637 else if (!strcmp(res->filter_type, "oip")) 8638 tunnel_filter_conf.filter_type = ETH_TUNNEL_FILTER_OIP; 8639 else if (!strcmp(res->filter_type, "iip")) 8640 tunnel_filter_conf.filter_type = ETH_TUNNEL_FILTER_IIP; 8641 else { 8642 printf("The filter type is not supported"); 8643 return; 8644 } 8645 8646 if (!strcmp(res->tunnel_type, "vxlan")) 8647 tunnel_filter_conf.tunnel_type = RTE_TUNNEL_TYPE_VXLAN; 8648 else if (!strcmp(res->tunnel_type, "nvgre")) 8649 tunnel_filter_conf.tunnel_type = RTE_TUNNEL_TYPE_NVGRE; 8650 else if (!strcmp(res->tunnel_type, "ipingre")) 8651 tunnel_filter_conf.tunnel_type = RTE_TUNNEL_TYPE_IP_IN_GRE; 8652 else { 8653 printf("The tunnel type %s not supported.\n", res->tunnel_type); 8654 return; 8655 } 8656 8657 tunnel_filter_conf.tenant_id = res->tenant_id; 8658 tunnel_filter_conf.queue_id = res->queue_num; 8659 if (!strcmp(res->what, "add")) 8660 ret = rte_eth_dev_filter_ctrl(res->port_id, 8661 RTE_ETH_FILTER_TUNNEL, 8662 RTE_ETH_FILTER_ADD, 8663 &tunnel_filter_conf); 8664 else 8665 ret = rte_eth_dev_filter_ctrl(res->port_id, 8666 RTE_ETH_FILTER_TUNNEL, 8667 RTE_ETH_FILTER_DELETE, 8668 &tunnel_filter_conf); 8669 if (ret < 0) 8670 printf("cmd_tunnel_filter_parsed error: (%s)\n", 8671 strerror(-ret)); 8672 8673 } 8674 cmdline_parse_token_string_t cmd_tunnel_filter_cmd = 8675 TOKEN_STRING_INITIALIZER(struct cmd_tunnel_filter_result, 8676 cmd, "tunnel_filter"); 8677 cmdline_parse_token_string_t cmd_tunnel_filter_what = 8678 TOKEN_STRING_INITIALIZER(struct cmd_tunnel_filter_result, 8679 what, "add#rm"); 8680 cmdline_parse_token_num_t cmd_tunnel_filter_port_id = 8681 TOKEN_NUM_INITIALIZER(struct cmd_tunnel_filter_result, 8682 port_id, UINT16); 8683 cmdline_parse_token_etheraddr_t cmd_tunnel_filter_outer_mac = 8684 TOKEN_ETHERADDR_INITIALIZER(struct cmd_tunnel_filter_result, 8685 outer_mac); 8686 cmdline_parse_token_etheraddr_t cmd_tunnel_filter_inner_mac = 8687 TOKEN_ETHERADDR_INITIALIZER(struct cmd_tunnel_filter_result, 8688 inner_mac); 8689 cmdline_parse_token_num_t cmd_tunnel_filter_innner_vlan = 8690 TOKEN_NUM_INITIALIZER(struct cmd_tunnel_filter_result, 8691 inner_vlan, UINT16); 8692 cmdline_parse_token_ipaddr_t cmd_tunnel_filter_ip_value = 8693 TOKEN_IPADDR_INITIALIZER(struct cmd_tunnel_filter_result, 8694 ip_value); 8695 cmdline_parse_token_string_t cmd_tunnel_filter_tunnel_type = 8696 TOKEN_STRING_INITIALIZER(struct cmd_tunnel_filter_result, 8697 tunnel_type, "vxlan#nvgre#ipingre"); 8698 8699 cmdline_parse_token_string_t cmd_tunnel_filter_filter_type = 8700 TOKEN_STRING_INITIALIZER(struct cmd_tunnel_filter_result, 8701 filter_type, "oip#iip#imac-ivlan#imac-ivlan-tenid#imac-tenid#" 8702 "imac#omac-imac-tenid"); 8703 cmdline_parse_token_num_t cmd_tunnel_filter_tenant_id = 8704 TOKEN_NUM_INITIALIZER(struct cmd_tunnel_filter_result, 8705 tenant_id, UINT32); 8706 cmdline_parse_token_num_t cmd_tunnel_filter_queue_num = 8707 TOKEN_NUM_INITIALIZER(struct cmd_tunnel_filter_result, 8708 queue_num, UINT16); 8709 8710 cmdline_parse_inst_t cmd_tunnel_filter = { 8711 .f = cmd_tunnel_filter_parsed, 8712 .data = (void *)0, 8713 .help_str = "tunnel_filter add|rm <port_id> <outer_mac> <inner_mac> " 8714 "<ip> <inner_vlan> vxlan|nvgre|ipingre oip|iip|imac-ivlan|" 8715 "imac-ivlan-tenid|imac-tenid|imac|omac-imac-tenid <tenant_id> " 8716 "<queue_id>: Add/Rm tunnel filter of a port", 8717 .tokens = { 8718 (void *)&cmd_tunnel_filter_cmd, 8719 (void *)&cmd_tunnel_filter_what, 8720 (void *)&cmd_tunnel_filter_port_id, 8721 (void *)&cmd_tunnel_filter_outer_mac, 8722 (void *)&cmd_tunnel_filter_inner_mac, 8723 (void *)&cmd_tunnel_filter_ip_value, 8724 (void *)&cmd_tunnel_filter_innner_vlan, 8725 (void *)&cmd_tunnel_filter_tunnel_type, 8726 (void *)&cmd_tunnel_filter_filter_type, 8727 (void *)&cmd_tunnel_filter_tenant_id, 8728 (void *)&cmd_tunnel_filter_queue_num, 8729 NULL, 8730 }, 8731 }; 8732 8733 /* *** CONFIGURE TUNNEL UDP PORT *** */ 8734 struct cmd_tunnel_udp_config { 8735 cmdline_fixed_string_t cmd; 8736 cmdline_fixed_string_t what; 8737 uint16_t udp_port; 8738 portid_t port_id; 8739 }; 8740 8741 static void 8742 cmd_tunnel_udp_config_parsed(void *parsed_result, 8743 __attribute__((unused)) struct cmdline *cl, 8744 __attribute__((unused)) void *data) 8745 { 8746 struct cmd_tunnel_udp_config *res = parsed_result; 8747 struct rte_eth_udp_tunnel tunnel_udp; 8748 int ret; 8749 8750 tunnel_udp.udp_port = res->udp_port; 8751 8752 if (!strcmp(res->cmd, "rx_vxlan_port")) 8753 tunnel_udp.prot_type = RTE_TUNNEL_TYPE_VXLAN; 8754 8755 if (!strcmp(res->what, "add")) 8756 ret = rte_eth_dev_udp_tunnel_port_add(res->port_id, 8757 &tunnel_udp); 8758 else 8759 ret = rte_eth_dev_udp_tunnel_port_delete(res->port_id, 8760 &tunnel_udp); 8761 8762 if (ret < 0) 8763 printf("udp tunneling add error: (%s)\n", strerror(-ret)); 8764 } 8765 8766 cmdline_parse_token_string_t cmd_tunnel_udp_config_cmd = 8767 TOKEN_STRING_INITIALIZER(struct cmd_tunnel_udp_config, 8768 cmd, "rx_vxlan_port"); 8769 cmdline_parse_token_string_t cmd_tunnel_udp_config_what = 8770 TOKEN_STRING_INITIALIZER(struct cmd_tunnel_udp_config, 8771 what, "add#rm"); 8772 cmdline_parse_token_num_t cmd_tunnel_udp_config_udp_port = 8773 TOKEN_NUM_INITIALIZER(struct cmd_tunnel_udp_config, 8774 udp_port, UINT16); 8775 cmdline_parse_token_num_t cmd_tunnel_udp_config_port_id = 8776 TOKEN_NUM_INITIALIZER(struct cmd_tunnel_udp_config, 8777 port_id, UINT16); 8778 8779 cmdline_parse_inst_t cmd_tunnel_udp_config = { 8780 .f = cmd_tunnel_udp_config_parsed, 8781 .data = (void *)0, 8782 .help_str = "rx_vxlan_port add|rm <udp_port> <port_id>: " 8783 "Add/Remove a tunneling UDP port filter", 8784 .tokens = { 8785 (void *)&cmd_tunnel_udp_config_cmd, 8786 (void *)&cmd_tunnel_udp_config_what, 8787 (void *)&cmd_tunnel_udp_config_udp_port, 8788 (void *)&cmd_tunnel_udp_config_port_id, 8789 NULL, 8790 }, 8791 }; 8792 8793 struct cmd_config_tunnel_udp_port { 8794 cmdline_fixed_string_t port; 8795 cmdline_fixed_string_t config; 8796 portid_t port_id; 8797 cmdline_fixed_string_t udp_tunnel_port; 8798 cmdline_fixed_string_t action; 8799 cmdline_fixed_string_t tunnel_type; 8800 uint16_t udp_port; 8801 }; 8802 8803 static void 8804 cmd_cfg_tunnel_udp_port_parsed(void *parsed_result, 8805 __attribute__((unused)) struct cmdline *cl, 8806 __attribute__((unused)) void *data) 8807 { 8808 struct cmd_config_tunnel_udp_port *res = parsed_result; 8809 struct rte_eth_udp_tunnel tunnel_udp; 8810 int ret = 0; 8811 8812 if (port_id_is_invalid(res->port_id, ENABLED_WARN)) 8813 return; 8814 8815 tunnel_udp.udp_port = res->udp_port; 8816 8817 if (!strcmp(res->tunnel_type, "vxlan")) { 8818 tunnel_udp.prot_type = RTE_TUNNEL_TYPE_VXLAN; 8819 } else if (!strcmp(res->tunnel_type, "geneve")) { 8820 tunnel_udp.prot_type = RTE_TUNNEL_TYPE_GENEVE; 8821 } else { 8822 printf("Invalid tunnel type\n"); 8823 return; 8824 } 8825 8826 if (!strcmp(res->action, "add")) 8827 ret = rte_eth_dev_udp_tunnel_port_add(res->port_id, 8828 &tunnel_udp); 8829 else 8830 ret = rte_eth_dev_udp_tunnel_port_delete(res->port_id, 8831 &tunnel_udp); 8832 8833 if (ret < 0) 8834 printf("udp tunneling port add error: (%s)\n", strerror(-ret)); 8835 } 8836 8837 cmdline_parse_token_string_t cmd_config_tunnel_udp_port_port = 8838 TOKEN_STRING_INITIALIZER(struct cmd_config_tunnel_udp_port, port, 8839 "port"); 8840 cmdline_parse_token_string_t cmd_config_tunnel_udp_port_config = 8841 TOKEN_STRING_INITIALIZER(struct cmd_config_tunnel_udp_port, config, 8842 "config"); 8843 cmdline_parse_token_num_t cmd_config_tunnel_udp_port_port_id = 8844 TOKEN_NUM_INITIALIZER(struct cmd_config_tunnel_udp_port, port_id, 8845 UINT16); 8846 cmdline_parse_token_string_t cmd_config_tunnel_udp_port_tunnel_port = 8847 TOKEN_STRING_INITIALIZER(struct cmd_config_tunnel_udp_port, 8848 udp_tunnel_port, 8849 "udp_tunnel_port"); 8850 cmdline_parse_token_string_t cmd_config_tunnel_udp_port_action = 8851 TOKEN_STRING_INITIALIZER(struct cmd_config_tunnel_udp_port, action, 8852 "add#rm"); 8853 cmdline_parse_token_string_t cmd_config_tunnel_udp_port_tunnel_type = 8854 TOKEN_STRING_INITIALIZER(struct cmd_config_tunnel_udp_port, tunnel_type, 8855 "vxlan#geneve"); 8856 cmdline_parse_token_num_t cmd_config_tunnel_udp_port_value = 8857 TOKEN_NUM_INITIALIZER(struct cmd_config_tunnel_udp_port, udp_port, 8858 UINT16); 8859 8860 cmdline_parse_inst_t cmd_cfg_tunnel_udp_port = { 8861 .f = cmd_cfg_tunnel_udp_port_parsed, 8862 .data = NULL, 8863 .help_str = "port config <port_id> udp_tunnel_port add|rm vxlan|geneve <udp_port>", 8864 .tokens = { 8865 (void *)&cmd_config_tunnel_udp_port_port, 8866 (void *)&cmd_config_tunnel_udp_port_config, 8867 (void *)&cmd_config_tunnel_udp_port_port_id, 8868 (void *)&cmd_config_tunnel_udp_port_tunnel_port, 8869 (void *)&cmd_config_tunnel_udp_port_action, 8870 (void *)&cmd_config_tunnel_udp_port_tunnel_type, 8871 (void *)&cmd_config_tunnel_udp_port_value, 8872 NULL, 8873 }, 8874 }; 8875 8876 /* *** GLOBAL CONFIG *** */ 8877 struct cmd_global_config_result { 8878 cmdline_fixed_string_t cmd; 8879 portid_t port_id; 8880 cmdline_fixed_string_t cfg_type; 8881 uint8_t len; 8882 }; 8883 8884 static void 8885 cmd_global_config_parsed(void *parsed_result, 8886 __attribute__((unused)) struct cmdline *cl, 8887 __attribute__((unused)) void *data) 8888 { 8889 struct cmd_global_config_result *res = parsed_result; 8890 struct rte_eth_global_cfg conf; 8891 int ret; 8892 8893 memset(&conf, 0, sizeof(conf)); 8894 conf.cfg_type = RTE_ETH_GLOBAL_CFG_TYPE_GRE_KEY_LEN; 8895 conf.cfg.gre_key_len = res->len; 8896 ret = rte_eth_dev_filter_ctrl(res->port_id, RTE_ETH_FILTER_NONE, 8897 RTE_ETH_FILTER_SET, &conf); 8898 if (ret != 0) 8899 printf("Global config error\n"); 8900 } 8901 8902 cmdline_parse_token_string_t cmd_global_config_cmd = 8903 TOKEN_STRING_INITIALIZER(struct cmd_global_config_result, cmd, 8904 "global_config"); 8905 cmdline_parse_token_num_t cmd_global_config_port_id = 8906 TOKEN_NUM_INITIALIZER(struct cmd_global_config_result, port_id, 8907 UINT16); 8908 cmdline_parse_token_string_t cmd_global_config_type = 8909 TOKEN_STRING_INITIALIZER(struct cmd_global_config_result, 8910 cfg_type, "gre-key-len"); 8911 cmdline_parse_token_num_t cmd_global_config_gre_key_len = 8912 TOKEN_NUM_INITIALIZER(struct cmd_global_config_result, 8913 len, UINT8); 8914 8915 cmdline_parse_inst_t cmd_global_config = { 8916 .f = cmd_global_config_parsed, 8917 .data = (void *)NULL, 8918 .help_str = "global_config <port_id> gre-key-len <key_len>", 8919 .tokens = { 8920 (void *)&cmd_global_config_cmd, 8921 (void *)&cmd_global_config_port_id, 8922 (void *)&cmd_global_config_type, 8923 (void *)&cmd_global_config_gre_key_len, 8924 NULL, 8925 }, 8926 }; 8927 8928 /* *** CONFIGURE VM MIRROR VLAN/POOL RULE *** */ 8929 struct cmd_set_mirror_mask_result { 8930 cmdline_fixed_string_t set; 8931 cmdline_fixed_string_t port; 8932 portid_t port_id; 8933 cmdline_fixed_string_t mirror; 8934 uint8_t rule_id; 8935 cmdline_fixed_string_t what; 8936 cmdline_fixed_string_t value; 8937 cmdline_fixed_string_t dstpool; 8938 uint8_t dstpool_id; 8939 cmdline_fixed_string_t on; 8940 }; 8941 8942 cmdline_parse_token_string_t cmd_mirror_mask_set = 8943 TOKEN_STRING_INITIALIZER(struct cmd_set_mirror_mask_result, 8944 set, "set"); 8945 cmdline_parse_token_string_t cmd_mirror_mask_port = 8946 TOKEN_STRING_INITIALIZER(struct cmd_set_mirror_mask_result, 8947 port, "port"); 8948 cmdline_parse_token_num_t cmd_mirror_mask_portid = 8949 TOKEN_NUM_INITIALIZER(struct cmd_set_mirror_mask_result, 8950 port_id, UINT16); 8951 cmdline_parse_token_string_t cmd_mirror_mask_mirror = 8952 TOKEN_STRING_INITIALIZER(struct cmd_set_mirror_mask_result, 8953 mirror, "mirror-rule"); 8954 cmdline_parse_token_num_t cmd_mirror_mask_ruleid = 8955 TOKEN_NUM_INITIALIZER(struct cmd_set_mirror_mask_result, 8956 rule_id, UINT8); 8957 cmdline_parse_token_string_t cmd_mirror_mask_what = 8958 TOKEN_STRING_INITIALIZER(struct cmd_set_mirror_mask_result, 8959 what, "pool-mirror-up#pool-mirror-down" 8960 "#vlan-mirror"); 8961 cmdline_parse_token_string_t cmd_mirror_mask_value = 8962 TOKEN_STRING_INITIALIZER(struct cmd_set_mirror_mask_result, 8963 value, NULL); 8964 cmdline_parse_token_string_t cmd_mirror_mask_dstpool = 8965 TOKEN_STRING_INITIALIZER(struct cmd_set_mirror_mask_result, 8966 dstpool, "dst-pool"); 8967 cmdline_parse_token_num_t cmd_mirror_mask_poolid = 8968 TOKEN_NUM_INITIALIZER(struct cmd_set_mirror_mask_result, 8969 dstpool_id, UINT8); 8970 cmdline_parse_token_string_t cmd_mirror_mask_on = 8971 TOKEN_STRING_INITIALIZER(struct cmd_set_mirror_mask_result, 8972 on, "on#off"); 8973 8974 static void 8975 cmd_set_mirror_mask_parsed(void *parsed_result, 8976 __attribute__((unused)) struct cmdline *cl, 8977 __attribute__((unused)) void *data) 8978 { 8979 int ret,nb_item,i; 8980 struct cmd_set_mirror_mask_result *res = parsed_result; 8981 struct rte_eth_mirror_conf mr_conf; 8982 8983 memset(&mr_conf, 0, sizeof(struct rte_eth_mirror_conf)); 8984 8985 unsigned int vlan_list[ETH_MIRROR_MAX_VLANS]; 8986 8987 mr_conf.dst_pool = res->dstpool_id; 8988 8989 if (!strcmp(res->what, "pool-mirror-up")) { 8990 mr_conf.pool_mask = strtoull(res->value, NULL, 16); 8991 mr_conf.rule_type = ETH_MIRROR_VIRTUAL_POOL_UP; 8992 } else if (!strcmp(res->what, "pool-mirror-down")) { 8993 mr_conf.pool_mask = strtoull(res->value, NULL, 16); 8994 mr_conf.rule_type = ETH_MIRROR_VIRTUAL_POOL_DOWN; 8995 } else if (!strcmp(res->what, "vlan-mirror")) { 8996 mr_conf.rule_type = ETH_MIRROR_VLAN; 8997 nb_item = parse_item_list(res->value, "vlan", 8998 ETH_MIRROR_MAX_VLANS, vlan_list, 1); 8999 if (nb_item <= 0) 9000 return; 9001 9002 for (i = 0; i < nb_item; i++) { 9003 if (vlan_list[i] > ETHER_MAX_VLAN_ID) { 9004 printf("Invalid vlan_id: must be < 4096\n"); 9005 return; 9006 } 9007 9008 mr_conf.vlan.vlan_id[i] = (uint16_t)vlan_list[i]; 9009 mr_conf.vlan.vlan_mask |= 1ULL << i; 9010 } 9011 } 9012 9013 if (!strcmp(res->on, "on")) 9014 ret = rte_eth_mirror_rule_set(res->port_id, &mr_conf, 9015 res->rule_id, 1); 9016 else 9017 ret = rte_eth_mirror_rule_set(res->port_id, &mr_conf, 9018 res->rule_id, 0); 9019 if (ret < 0) 9020 printf("mirror rule add error: (%s)\n", strerror(-ret)); 9021 } 9022 9023 cmdline_parse_inst_t cmd_set_mirror_mask = { 9024 .f = cmd_set_mirror_mask_parsed, 9025 .data = NULL, 9026 .help_str = "set port <port_id> mirror-rule <rule_id> " 9027 "pool-mirror-up|pool-mirror-down|vlan-mirror " 9028 "<pool_mask|vlan_id[,vlan_id]*> dst-pool <pool_id> on|off", 9029 .tokens = { 9030 (void *)&cmd_mirror_mask_set, 9031 (void *)&cmd_mirror_mask_port, 9032 (void *)&cmd_mirror_mask_portid, 9033 (void *)&cmd_mirror_mask_mirror, 9034 (void *)&cmd_mirror_mask_ruleid, 9035 (void *)&cmd_mirror_mask_what, 9036 (void *)&cmd_mirror_mask_value, 9037 (void *)&cmd_mirror_mask_dstpool, 9038 (void *)&cmd_mirror_mask_poolid, 9039 (void *)&cmd_mirror_mask_on, 9040 NULL, 9041 }, 9042 }; 9043 9044 /* *** CONFIGURE VM MIRROR UPLINK/DOWNLINK RULE *** */ 9045 struct cmd_set_mirror_link_result { 9046 cmdline_fixed_string_t set; 9047 cmdline_fixed_string_t port; 9048 portid_t port_id; 9049 cmdline_fixed_string_t mirror; 9050 uint8_t rule_id; 9051 cmdline_fixed_string_t what; 9052 cmdline_fixed_string_t dstpool; 9053 uint8_t dstpool_id; 9054 cmdline_fixed_string_t on; 9055 }; 9056 9057 cmdline_parse_token_string_t cmd_mirror_link_set = 9058 TOKEN_STRING_INITIALIZER(struct cmd_set_mirror_link_result, 9059 set, "set"); 9060 cmdline_parse_token_string_t cmd_mirror_link_port = 9061 TOKEN_STRING_INITIALIZER(struct cmd_set_mirror_link_result, 9062 port, "port"); 9063 cmdline_parse_token_num_t cmd_mirror_link_portid = 9064 TOKEN_NUM_INITIALIZER(struct cmd_set_mirror_link_result, 9065 port_id, UINT16); 9066 cmdline_parse_token_string_t cmd_mirror_link_mirror = 9067 TOKEN_STRING_INITIALIZER(struct cmd_set_mirror_link_result, 9068 mirror, "mirror-rule"); 9069 cmdline_parse_token_num_t cmd_mirror_link_ruleid = 9070 TOKEN_NUM_INITIALIZER(struct cmd_set_mirror_link_result, 9071 rule_id, UINT8); 9072 cmdline_parse_token_string_t cmd_mirror_link_what = 9073 TOKEN_STRING_INITIALIZER(struct cmd_set_mirror_link_result, 9074 what, "uplink-mirror#downlink-mirror"); 9075 cmdline_parse_token_string_t cmd_mirror_link_dstpool = 9076 TOKEN_STRING_INITIALIZER(struct cmd_set_mirror_link_result, 9077 dstpool, "dst-pool"); 9078 cmdline_parse_token_num_t cmd_mirror_link_poolid = 9079 TOKEN_NUM_INITIALIZER(struct cmd_set_mirror_link_result, 9080 dstpool_id, UINT8); 9081 cmdline_parse_token_string_t cmd_mirror_link_on = 9082 TOKEN_STRING_INITIALIZER(struct cmd_set_mirror_link_result, 9083 on, "on#off"); 9084 9085 static void 9086 cmd_set_mirror_link_parsed(void *parsed_result, 9087 __attribute__((unused)) struct cmdline *cl, 9088 __attribute__((unused)) void *data) 9089 { 9090 int ret; 9091 struct cmd_set_mirror_link_result *res = parsed_result; 9092 struct rte_eth_mirror_conf mr_conf; 9093 9094 memset(&mr_conf, 0, sizeof(struct rte_eth_mirror_conf)); 9095 if (!strcmp(res->what, "uplink-mirror")) 9096 mr_conf.rule_type = ETH_MIRROR_UPLINK_PORT; 9097 else 9098 mr_conf.rule_type = ETH_MIRROR_DOWNLINK_PORT; 9099 9100 mr_conf.dst_pool = res->dstpool_id; 9101 9102 if (!strcmp(res->on, "on")) 9103 ret = rte_eth_mirror_rule_set(res->port_id, &mr_conf, 9104 res->rule_id, 1); 9105 else 9106 ret = rte_eth_mirror_rule_set(res->port_id, &mr_conf, 9107 res->rule_id, 0); 9108 9109 /* check the return value and print it if is < 0 */ 9110 if (ret < 0) 9111 printf("mirror rule add error: (%s)\n", strerror(-ret)); 9112 9113 } 9114 9115 cmdline_parse_inst_t cmd_set_mirror_link = { 9116 .f = cmd_set_mirror_link_parsed, 9117 .data = NULL, 9118 .help_str = "set port <port_id> mirror-rule <rule_id> " 9119 "uplink-mirror|downlink-mirror dst-pool <pool_id> on|off", 9120 .tokens = { 9121 (void *)&cmd_mirror_link_set, 9122 (void *)&cmd_mirror_link_port, 9123 (void *)&cmd_mirror_link_portid, 9124 (void *)&cmd_mirror_link_mirror, 9125 (void *)&cmd_mirror_link_ruleid, 9126 (void *)&cmd_mirror_link_what, 9127 (void *)&cmd_mirror_link_dstpool, 9128 (void *)&cmd_mirror_link_poolid, 9129 (void *)&cmd_mirror_link_on, 9130 NULL, 9131 }, 9132 }; 9133 9134 /* *** RESET VM MIRROR RULE *** */ 9135 struct cmd_rm_mirror_rule_result { 9136 cmdline_fixed_string_t reset; 9137 cmdline_fixed_string_t port; 9138 portid_t port_id; 9139 cmdline_fixed_string_t mirror; 9140 uint8_t rule_id; 9141 }; 9142 9143 cmdline_parse_token_string_t cmd_rm_mirror_rule_reset = 9144 TOKEN_STRING_INITIALIZER(struct cmd_rm_mirror_rule_result, 9145 reset, "reset"); 9146 cmdline_parse_token_string_t cmd_rm_mirror_rule_port = 9147 TOKEN_STRING_INITIALIZER(struct cmd_rm_mirror_rule_result, 9148 port, "port"); 9149 cmdline_parse_token_num_t cmd_rm_mirror_rule_portid = 9150 TOKEN_NUM_INITIALIZER(struct cmd_rm_mirror_rule_result, 9151 port_id, UINT16); 9152 cmdline_parse_token_string_t cmd_rm_mirror_rule_mirror = 9153 TOKEN_STRING_INITIALIZER(struct cmd_rm_mirror_rule_result, 9154 mirror, "mirror-rule"); 9155 cmdline_parse_token_num_t cmd_rm_mirror_rule_ruleid = 9156 TOKEN_NUM_INITIALIZER(struct cmd_rm_mirror_rule_result, 9157 rule_id, UINT8); 9158 9159 static void 9160 cmd_reset_mirror_rule_parsed(void *parsed_result, 9161 __attribute__((unused)) struct cmdline *cl, 9162 __attribute__((unused)) void *data) 9163 { 9164 int ret; 9165 struct cmd_set_mirror_link_result *res = parsed_result; 9166 /* check rule_id */ 9167 ret = rte_eth_mirror_rule_reset(res->port_id,res->rule_id); 9168 if(ret < 0) 9169 printf("mirror rule remove error: (%s)\n", strerror(-ret)); 9170 } 9171 9172 cmdline_parse_inst_t cmd_reset_mirror_rule = { 9173 .f = cmd_reset_mirror_rule_parsed, 9174 .data = NULL, 9175 .help_str = "reset port <port_id> mirror-rule <rule_id>", 9176 .tokens = { 9177 (void *)&cmd_rm_mirror_rule_reset, 9178 (void *)&cmd_rm_mirror_rule_port, 9179 (void *)&cmd_rm_mirror_rule_portid, 9180 (void *)&cmd_rm_mirror_rule_mirror, 9181 (void *)&cmd_rm_mirror_rule_ruleid, 9182 NULL, 9183 }, 9184 }; 9185 9186 /* ******************************************************************************** */ 9187 9188 struct cmd_dump_result { 9189 cmdline_fixed_string_t dump; 9190 }; 9191 9192 static void 9193 dump_struct_sizes(void) 9194 { 9195 #define DUMP_SIZE(t) printf("sizeof(" #t ") = %u\n", (unsigned)sizeof(t)); 9196 DUMP_SIZE(struct rte_mbuf); 9197 DUMP_SIZE(struct rte_mempool); 9198 DUMP_SIZE(struct rte_ring); 9199 #undef DUMP_SIZE 9200 } 9201 9202 static void cmd_dump_parsed(void *parsed_result, 9203 __attribute__((unused)) struct cmdline *cl, 9204 __attribute__((unused)) void *data) 9205 { 9206 struct cmd_dump_result *res = parsed_result; 9207 9208 if (!strcmp(res->dump, "dump_physmem")) 9209 rte_dump_physmem_layout(stdout); 9210 else if (!strcmp(res->dump, "dump_memzone")) 9211 rte_memzone_dump(stdout); 9212 else if (!strcmp(res->dump, "dump_struct_sizes")) 9213 dump_struct_sizes(); 9214 else if (!strcmp(res->dump, "dump_ring")) 9215 rte_ring_list_dump(stdout); 9216 else if (!strcmp(res->dump, "dump_mempool")) 9217 rte_mempool_list_dump(stdout); 9218 else if (!strcmp(res->dump, "dump_devargs")) 9219 rte_devargs_dump(stdout); 9220 else if (!strcmp(res->dump, "dump_log_types")) 9221 rte_log_dump(stdout); 9222 } 9223 9224 cmdline_parse_token_string_t cmd_dump_dump = 9225 TOKEN_STRING_INITIALIZER(struct cmd_dump_result, dump, 9226 "dump_physmem#" 9227 "dump_memzone#" 9228 "dump_struct_sizes#" 9229 "dump_ring#" 9230 "dump_mempool#" 9231 "dump_devargs#" 9232 "dump_log_types"); 9233 9234 cmdline_parse_inst_t cmd_dump = { 9235 .f = cmd_dump_parsed, /* function to call */ 9236 .data = NULL, /* 2nd arg of func */ 9237 .help_str = "Dump status", 9238 .tokens = { /* token list, NULL terminated */ 9239 (void *)&cmd_dump_dump, 9240 NULL, 9241 }, 9242 }; 9243 9244 /* ******************************************************************************** */ 9245 9246 struct cmd_dump_one_result { 9247 cmdline_fixed_string_t dump; 9248 cmdline_fixed_string_t name; 9249 }; 9250 9251 static void cmd_dump_one_parsed(void *parsed_result, struct cmdline *cl, 9252 __attribute__((unused)) void *data) 9253 { 9254 struct cmd_dump_one_result *res = parsed_result; 9255 9256 if (!strcmp(res->dump, "dump_ring")) { 9257 struct rte_ring *r; 9258 r = rte_ring_lookup(res->name); 9259 if (r == NULL) { 9260 cmdline_printf(cl, "Cannot find ring\n"); 9261 return; 9262 } 9263 rte_ring_dump(stdout, r); 9264 } else if (!strcmp(res->dump, "dump_mempool")) { 9265 struct rte_mempool *mp; 9266 mp = rte_mempool_lookup(res->name); 9267 if (mp == NULL) { 9268 cmdline_printf(cl, "Cannot find mempool\n"); 9269 return; 9270 } 9271 rte_mempool_dump(stdout, mp); 9272 } 9273 } 9274 9275 cmdline_parse_token_string_t cmd_dump_one_dump = 9276 TOKEN_STRING_INITIALIZER(struct cmd_dump_one_result, dump, 9277 "dump_ring#dump_mempool"); 9278 9279 cmdline_parse_token_string_t cmd_dump_one_name = 9280 TOKEN_STRING_INITIALIZER(struct cmd_dump_one_result, name, NULL); 9281 9282 cmdline_parse_inst_t cmd_dump_one = { 9283 .f = cmd_dump_one_parsed, /* function to call */ 9284 .data = NULL, /* 2nd arg of func */ 9285 .help_str = "dump_ring|dump_mempool <name>: Dump one ring/mempool", 9286 .tokens = { /* token list, NULL terminated */ 9287 (void *)&cmd_dump_one_dump, 9288 (void *)&cmd_dump_one_name, 9289 NULL, 9290 }, 9291 }; 9292 9293 /* *** Add/Del syn filter *** */ 9294 struct cmd_syn_filter_result { 9295 cmdline_fixed_string_t filter; 9296 portid_t port_id; 9297 cmdline_fixed_string_t ops; 9298 cmdline_fixed_string_t priority; 9299 cmdline_fixed_string_t high; 9300 cmdline_fixed_string_t queue; 9301 uint16_t queue_id; 9302 }; 9303 9304 static void 9305 cmd_syn_filter_parsed(void *parsed_result, 9306 __attribute__((unused)) struct cmdline *cl, 9307 __attribute__((unused)) void *data) 9308 { 9309 struct cmd_syn_filter_result *res = parsed_result; 9310 struct rte_eth_syn_filter syn_filter; 9311 int ret = 0; 9312 9313 ret = rte_eth_dev_filter_supported(res->port_id, 9314 RTE_ETH_FILTER_SYN); 9315 if (ret < 0) { 9316 printf("syn filter is not supported on port %u.\n", 9317 res->port_id); 9318 return; 9319 } 9320 9321 memset(&syn_filter, 0, sizeof(syn_filter)); 9322 9323 if (!strcmp(res->ops, "add")) { 9324 if (!strcmp(res->high, "high")) 9325 syn_filter.hig_pri = 1; 9326 else 9327 syn_filter.hig_pri = 0; 9328 9329 syn_filter.queue = res->queue_id; 9330 ret = rte_eth_dev_filter_ctrl(res->port_id, 9331 RTE_ETH_FILTER_SYN, 9332 RTE_ETH_FILTER_ADD, 9333 &syn_filter); 9334 } else 9335 ret = rte_eth_dev_filter_ctrl(res->port_id, 9336 RTE_ETH_FILTER_SYN, 9337 RTE_ETH_FILTER_DELETE, 9338 &syn_filter); 9339 9340 if (ret < 0) 9341 printf("syn filter programming error: (%s)\n", 9342 strerror(-ret)); 9343 } 9344 9345 cmdline_parse_token_string_t cmd_syn_filter_filter = 9346 TOKEN_STRING_INITIALIZER(struct cmd_syn_filter_result, 9347 filter, "syn_filter"); 9348 cmdline_parse_token_num_t cmd_syn_filter_port_id = 9349 TOKEN_NUM_INITIALIZER(struct cmd_syn_filter_result, 9350 port_id, UINT16); 9351 cmdline_parse_token_string_t cmd_syn_filter_ops = 9352 TOKEN_STRING_INITIALIZER(struct cmd_syn_filter_result, 9353 ops, "add#del"); 9354 cmdline_parse_token_string_t cmd_syn_filter_priority = 9355 TOKEN_STRING_INITIALIZER(struct cmd_syn_filter_result, 9356 priority, "priority"); 9357 cmdline_parse_token_string_t cmd_syn_filter_high = 9358 TOKEN_STRING_INITIALIZER(struct cmd_syn_filter_result, 9359 high, "high#low"); 9360 cmdline_parse_token_string_t cmd_syn_filter_queue = 9361 TOKEN_STRING_INITIALIZER(struct cmd_syn_filter_result, 9362 queue, "queue"); 9363 cmdline_parse_token_num_t cmd_syn_filter_queue_id = 9364 TOKEN_NUM_INITIALIZER(struct cmd_syn_filter_result, 9365 queue_id, UINT16); 9366 9367 cmdline_parse_inst_t cmd_syn_filter = { 9368 .f = cmd_syn_filter_parsed, 9369 .data = NULL, 9370 .help_str = "syn_filter <port_id> add|del priority high|low queue " 9371 "<queue_id>: Add/Delete syn filter", 9372 .tokens = { 9373 (void *)&cmd_syn_filter_filter, 9374 (void *)&cmd_syn_filter_port_id, 9375 (void *)&cmd_syn_filter_ops, 9376 (void *)&cmd_syn_filter_priority, 9377 (void *)&cmd_syn_filter_high, 9378 (void *)&cmd_syn_filter_queue, 9379 (void *)&cmd_syn_filter_queue_id, 9380 NULL, 9381 }, 9382 }; 9383 9384 /* *** queue region set *** */ 9385 struct cmd_queue_region_result { 9386 cmdline_fixed_string_t set; 9387 cmdline_fixed_string_t port; 9388 portid_t port_id; 9389 cmdline_fixed_string_t cmd; 9390 cmdline_fixed_string_t region; 9391 uint8_t region_id; 9392 cmdline_fixed_string_t queue_start_index; 9393 uint8_t queue_id; 9394 cmdline_fixed_string_t queue_num; 9395 uint8_t queue_num_value; 9396 }; 9397 9398 static void 9399 cmd_queue_region_parsed(void *parsed_result, 9400 __attribute__((unused)) struct cmdline *cl, 9401 __attribute__((unused)) void *data) 9402 { 9403 struct cmd_queue_region_result *res = parsed_result; 9404 int ret = -ENOTSUP; 9405 #ifdef RTE_LIBRTE_I40E_PMD 9406 struct rte_pmd_i40e_queue_region_conf region_conf; 9407 enum rte_pmd_i40e_queue_region_op op_type; 9408 #endif 9409 9410 if (port_id_is_invalid(res->port_id, ENABLED_WARN)) 9411 return; 9412 9413 #ifdef RTE_LIBRTE_I40E_PMD 9414 memset(®ion_conf, 0, sizeof(region_conf)); 9415 op_type = RTE_PMD_I40E_RSS_QUEUE_REGION_SET; 9416 region_conf.region_id = res->region_id; 9417 region_conf.queue_num = res->queue_num_value; 9418 region_conf.queue_start_index = res->queue_id; 9419 9420 ret = rte_pmd_i40e_rss_queue_region_conf(res->port_id, 9421 op_type, ®ion_conf); 9422 #endif 9423 9424 switch (ret) { 9425 case 0: 9426 break; 9427 case -ENOTSUP: 9428 printf("function not implemented or supported\n"); 9429 break; 9430 default: 9431 printf("queue region config error: (%s)\n", strerror(-ret)); 9432 } 9433 } 9434 9435 cmdline_parse_token_string_t cmd_queue_region_set = 9436 TOKEN_STRING_INITIALIZER(struct cmd_queue_region_result, 9437 set, "set"); 9438 cmdline_parse_token_string_t cmd_queue_region_port = 9439 TOKEN_STRING_INITIALIZER(struct cmd_queue_region_result, port, "port"); 9440 cmdline_parse_token_num_t cmd_queue_region_port_id = 9441 TOKEN_NUM_INITIALIZER(struct cmd_queue_region_result, 9442 port_id, UINT16); 9443 cmdline_parse_token_string_t cmd_queue_region_cmd = 9444 TOKEN_STRING_INITIALIZER(struct cmd_queue_region_result, 9445 cmd, "queue-region"); 9446 cmdline_parse_token_string_t cmd_queue_region_id = 9447 TOKEN_STRING_INITIALIZER(struct cmd_queue_region_result, 9448 region, "region_id"); 9449 cmdline_parse_token_num_t cmd_queue_region_index = 9450 TOKEN_NUM_INITIALIZER(struct cmd_queue_region_result, 9451 region_id, UINT8); 9452 cmdline_parse_token_string_t cmd_queue_region_queue_start_index = 9453 TOKEN_STRING_INITIALIZER(struct cmd_queue_region_result, 9454 queue_start_index, "queue_start_index"); 9455 cmdline_parse_token_num_t cmd_queue_region_queue_id = 9456 TOKEN_NUM_INITIALIZER(struct cmd_queue_region_result, 9457 queue_id, UINT8); 9458 cmdline_parse_token_string_t cmd_queue_region_queue_num = 9459 TOKEN_STRING_INITIALIZER(struct cmd_queue_region_result, 9460 queue_num, "queue_num"); 9461 cmdline_parse_token_num_t cmd_queue_region_queue_num_value = 9462 TOKEN_NUM_INITIALIZER(struct cmd_queue_region_result, 9463 queue_num_value, UINT8); 9464 9465 cmdline_parse_inst_t cmd_queue_region = { 9466 .f = cmd_queue_region_parsed, 9467 .data = NULL, 9468 .help_str = "set port <port_id> queue-region region_id <value> " 9469 "queue_start_index <value> queue_num <value>: Set a queue region", 9470 .tokens = { 9471 (void *)&cmd_queue_region_set, 9472 (void *)&cmd_queue_region_port, 9473 (void *)&cmd_queue_region_port_id, 9474 (void *)&cmd_queue_region_cmd, 9475 (void *)&cmd_queue_region_id, 9476 (void *)&cmd_queue_region_index, 9477 (void *)&cmd_queue_region_queue_start_index, 9478 (void *)&cmd_queue_region_queue_id, 9479 (void *)&cmd_queue_region_queue_num, 9480 (void *)&cmd_queue_region_queue_num_value, 9481 NULL, 9482 }, 9483 }; 9484 9485 /* *** queue region and flowtype set *** */ 9486 struct cmd_region_flowtype_result { 9487 cmdline_fixed_string_t set; 9488 cmdline_fixed_string_t port; 9489 portid_t port_id; 9490 cmdline_fixed_string_t cmd; 9491 cmdline_fixed_string_t region; 9492 uint8_t region_id; 9493 cmdline_fixed_string_t flowtype; 9494 uint8_t flowtype_id; 9495 }; 9496 9497 static void 9498 cmd_region_flowtype_parsed(void *parsed_result, 9499 __attribute__((unused)) struct cmdline *cl, 9500 __attribute__((unused)) void *data) 9501 { 9502 struct cmd_region_flowtype_result *res = parsed_result; 9503 int ret = -ENOTSUP; 9504 #ifdef RTE_LIBRTE_I40E_PMD 9505 struct rte_pmd_i40e_queue_region_conf region_conf; 9506 enum rte_pmd_i40e_queue_region_op op_type; 9507 #endif 9508 9509 if (port_id_is_invalid(res->port_id, ENABLED_WARN)) 9510 return; 9511 9512 #ifdef RTE_LIBRTE_I40E_PMD 9513 memset(®ion_conf, 0, sizeof(region_conf)); 9514 9515 op_type = RTE_PMD_I40E_RSS_QUEUE_REGION_FLOWTYPE_SET; 9516 region_conf.region_id = res->region_id; 9517 region_conf.hw_flowtype = res->flowtype_id; 9518 9519 ret = rte_pmd_i40e_rss_queue_region_conf(res->port_id, 9520 op_type, ®ion_conf); 9521 #endif 9522 9523 switch (ret) { 9524 case 0: 9525 break; 9526 case -ENOTSUP: 9527 printf("function not implemented or supported\n"); 9528 break; 9529 default: 9530 printf("region flowtype config error: (%s)\n", strerror(-ret)); 9531 } 9532 } 9533 9534 cmdline_parse_token_string_t cmd_region_flowtype_set = 9535 TOKEN_STRING_INITIALIZER(struct cmd_region_flowtype_result, 9536 set, "set"); 9537 cmdline_parse_token_string_t cmd_region_flowtype_port = 9538 TOKEN_STRING_INITIALIZER(struct cmd_region_flowtype_result, 9539 port, "port"); 9540 cmdline_parse_token_num_t cmd_region_flowtype_port_index = 9541 TOKEN_NUM_INITIALIZER(struct cmd_region_flowtype_result, 9542 port_id, UINT16); 9543 cmdline_parse_token_string_t cmd_region_flowtype_cmd = 9544 TOKEN_STRING_INITIALIZER(struct cmd_region_flowtype_result, 9545 cmd, "queue-region"); 9546 cmdline_parse_token_string_t cmd_region_flowtype_index = 9547 TOKEN_STRING_INITIALIZER(struct cmd_region_flowtype_result, 9548 region, "region_id"); 9549 cmdline_parse_token_num_t cmd_region_flowtype_id = 9550 TOKEN_NUM_INITIALIZER(struct cmd_region_flowtype_result, 9551 region_id, UINT8); 9552 cmdline_parse_token_string_t cmd_region_flowtype_flow_index = 9553 TOKEN_STRING_INITIALIZER(struct cmd_region_flowtype_result, 9554 flowtype, "flowtype"); 9555 cmdline_parse_token_num_t cmd_region_flowtype_flow_id = 9556 TOKEN_NUM_INITIALIZER(struct cmd_region_flowtype_result, 9557 flowtype_id, UINT8); 9558 cmdline_parse_inst_t cmd_region_flowtype = { 9559 .f = cmd_region_flowtype_parsed, 9560 .data = NULL, 9561 .help_str = "set port <port_id> queue-region region_id <value> " 9562 "flowtype <value>: Set a flowtype region index", 9563 .tokens = { 9564 (void *)&cmd_region_flowtype_set, 9565 (void *)&cmd_region_flowtype_port, 9566 (void *)&cmd_region_flowtype_port_index, 9567 (void *)&cmd_region_flowtype_cmd, 9568 (void *)&cmd_region_flowtype_index, 9569 (void *)&cmd_region_flowtype_id, 9570 (void *)&cmd_region_flowtype_flow_index, 9571 (void *)&cmd_region_flowtype_flow_id, 9572 NULL, 9573 }, 9574 }; 9575 9576 /* *** User Priority (UP) to queue region (region_id) set *** */ 9577 struct cmd_user_priority_region_result { 9578 cmdline_fixed_string_t set; 9579 cmdline_fixed_string_t port; 9580 portid_t port_id; 9581 cmdline_fixed_string_t cmd; 9582 cmdline_fixed_string_t user_priority; 9583 uint8_t user_priority_id; 9584 cmdline_fixed_string_t region; 9585 uint8_t region_id; 9586 }; 9587 9588 static void 9589 cmd_user_priority_region_parsed(void *parsed_result, 9590 __attribute__((unused)) struct cmdline *cl, 9591 __attribute__((unused)) void *data) 9592 { 9593 struct cmd_user_priority_region_result *res = parsed_result; 9594 int ret = -ENOTSUP; 9595 #ifdef RTE_LIBRTE_I40E_PMD 9596 struct rte_pmd_i40e_queue_region_conf region_conf; 9597 enum rte_pmd_i40e_queue_region_op op_type; 9598 #endif 9599 9600 if (port_id_is_invalid(res->port_id, ENABLED_WARN)) 9601 return; 9602 9603 #ifdef RTE_LIBRTE_I40E_PMD 9604 memset(®ion_conf, 0, sizeof(region_conf)); 9605 op_type = RTE_PMD_I40E_RSS_QUEUE_REGION_USER_PRIORITY_SET; 9606 region_conf.user_priority = res->user_priority_id; 9607 region_conf.region_id = res->region_id; 9608 9609 ret = rte_pmd_i40e_rss_queue_region_conf(res->port_id, 9610 op_type, ®ion_conf); 9611 #endif 9612 9613 switch (ret) { 9614 case 0: 9615 break; 9616 case -ENOTSUP: 9617 printf("function not implemented or supported\n"); 9618 break; 9619 default: 9620 printf("user_priority region config error: (%s)\n", 9621 strerror(-ret)); 9622 } 9623 } 9624 9625 cmdline_parse_token_string_t cmd_user_priority_region_set = 9626 TOKEN_STRING_INITIALIZER(struct cmd_user_priority_region_result, 9627 set, "set"); 9628 cmdline_parse_token_string_t cmd_user_priority_region_port = 9629 TOKEN_STRING_INITIALIZER(struct cmd_user_priority_region_result, 9630 port, "port"); 9631 cmdline_parse_token_num_t cmd_user_priority_region_port_index = 9632 TOKEN_NUM_INITIALIZER(struct cmd_user_priority_region_result, 9633 port_id, UINT16); 9634 cmdline_parse_token_string_t cmd_user_priority_region_cmd = 9635 TOKEN_STRING_INITIALIZER(struct cmd_user_priority_region_result, 9636 cmd, "queue-region"); 9637 cmdline_parse_token_string_t cmd_user_priority_region_UP = 9638 TOKEN_STRING_INITIALIZER(struct cmd_user_priority_region_result, 9639 user_priority, "UP"); 9640 cmdline_parse_token_num_t cmd_user_priority_region_UP_id = 9641 TOKEN_NUM_INITIALIZER(struct cmd_user_priority_region_result, 9642 user_priority_id, UINT8); 9643 cmdline_parse_token_string_t cmd_user_priority_region_region = 9644 TOKEN_STRING_INITIALIZER(struct cmd_user_priority_region_result, 9645 region, "region_id"); 9646 cmdline_parse_token_num_t cmd_user_priority_region_region_id = 9647 TOKEN_NUM_INITIALIZER(struct cmd_user_priority_region_result, 9648 region_id, UINT8); 9649 9650 cmdline_parse_inst_t cmd_user_priority_region = { 9651 .f = cmd_user_priority_region_parsed, 9652 .data = NULL, 9653 .help_str = "set port <port_id> queue-region UP <value> " 9654 "region_id <value>: Set the mapping of User Priority (UP) " 9655 "to queue region (region_id) ", 9656 .tokens = { 9657 (void *)&cmd_user_priority_region_set, 9658 (void *)&cmd_user_priority_region_port, 9659 (void *)&cmd_user_priority_region_port_index, 9660 (void *)&cmd_user_priority_region_cmd, 9661 (void *)&cmd_user_priority_region_UP, 9662 (void *)&cmd_user_priority_region_UP_id, 9663 (void *)&cmd_user_priority_region_region, 9664 (void *)&cmd_user_priority_region_region_id, 9665 NULL, 9666 }, 9667 }; 9668 9669 /* *** flush all queue region related configuration *** */ 9670 struct cmd_flush_queue_region_result { 9671 cmdline_fixed_string_t set; 9672 cmdline_fixed_string_t port; 9673 portid_t port_id; 9674 cmdline_fixed_string_t cmd; 9675 cmdline_fixed_string_t flush; 9676 cmdline_fixed_string_t what; 9677 }; 9678 9679 static void 9680 cmd_flush_queue_region_parsed(void *parsed_result, 9681 __attribute__((unused)) struct cmdline *cl, 9682 __attribute__((unused)) void *data) 9683 { 9684 struct cmd_flush_queue_region_result *res = parsed_result; 9685 int ret = -ENOTSUP; 9686 #ifdef RTE_LIBRTE_I40E_PMD 9687 struct rte_pmd_i40e_queue_region_conf region_conf; 9688 enum rte_pmd_i40e_queue_region_op op_type; 9689 #endif 9690 9691 if (port_id_is_invalid(res->port_id, ENABLED_WARN)) 9692 return; 9693 9694 #ifdef RTE_LIBRTE_I40E_PMD 9695 memset(®ion_conf, 0, sizeof(region_conf)); 9696 9697 if (strcmp(res->what, "on") == 0) 9698 op_type = RTE_PMD_I40E_RSS_QUEUE_REGION_ALL_FLUSH_ON; 9699 else 9700 op_type = RTE_PMD_I40E_RSS_QUEUE_REGION_ALL_FLUSH_OFF; 9701 9702 ret = rte_pmd_i40e_rss_queue_region_conf(res->port_id, 9703 op_type, ®ion_conf); 9704 #endif 9705 9706 switch (ret) { 9707 case 0: 9708 break; 9709 case -ENOTSUP: 9710 printf("function not implemented or supported\n"); 9711 break; 9712 default: 9713 printf("queue region config flush error: (%s)\n", 9714 strerror(-ret)); 9715 } 9716 } 9717 9718 cmdline_parse_token_string_t cmd_flush_queue_region_set = 9719 TOKEN_STRING_INITIALIZER(struct cmd_flush_queue_region_result, 9720 set, "set"); 9721 cmdline_parse_token_string_t cmd_flush_queue_region_port = 9722 TOKEN_STRING_INITIALIZER(struct cmd_flush_queue_region_result, 9723 port, "port"); 9724 cmdline_parse_token_num_t cmd_flush_queue_region_port_index = 9725 TOKEN_NUM_INITIALIZER(struct cmd_flush_queue_region_result, 9726 port_id, UINT16); 9727 cmdline_parse_token_string_t cmd_flush_queue_region_cmd = 9728 TOKEN_STRING_INITIALIZER(struct cmd_flush_queue_region_result, 9729 cmd, "queue-region"); 9730 cmdline_parse_token_string_t cmd_flush_queue_region_flush = 9731 TOKEN_STRING_INITIALIZER(struct cmd_flush_queue_region_result, 9732 flush, "flush"); 9733 cmdline_parse_token_string_t cmd_flush_queue_region_what = 9734 TOKEN_STRING_INITIALIZER(struct cmd_flush_queue_region_result, 9735 what, "on#off"); 9736 9737 cmdline_parse_inst_t cmd_flush_queue_region = { 9738 .f = cmd_flush_queue_region_parsed, 9739 .data = NULL, 9740 .help_str = "set port <port_id> queue-region flush on|off" 9741 ": flush all queue region related configuration", 9742 .tokens = { 9743 (void *)&cmd_flush_queue_region_set, 9744 (void *)&cmd_flush_queue_region_port, 9745 (void *)&cmd_flush_queue_region_port_index, 9746 (void *)&cmd_flush_queue_region_cmd, 9747 (void *)&cmd_flush_queue_region_flush, 9748 (void *)&cmd_flush_queue_region_what, 9749 NULL, 9750 }, 9751 }; 9752 9753 /* *** get all queue region related configuration info *** */ 9754 struct cmd_show_queue_region_info { 9755 cmdline_fixed_string_t show; 9756 cmdline_fixed_string_t port; 9757 portid_t port_id; 9758 cmdline_fixed_string_t cmd; 9759 }; 9760 9761 static void 9762 cmd_show_queue_region_info_parsed(void *parsed_result, 9763 __attribute__((unused)) struct cmdline *cl, 9764 __attribute__((unused)) void *data) 9765 { 9766 struct cmd_show_queue_region_info *res = parsed_result; 9767 int ret = -ENOTSUP; 9768 #ifdef RTE_LIBRTE_I40E_PMD 9769 struct rte_pmd_i40e_queue_regions rte_pmd_regions; 9770 enum rte_pmd_i40e_queue_region_op op_type; 9771 #endif 9772 9773 if (port_id_is_invalid(res->port_id, ENABLED_WARN)) 9774 return; 9775 9776 #ifdef RTE_LIBRTE_I40E_PMD 9777 memset(&rte_pmd_regions, 0, sizeof(rte_pmd_regions)); 9778 9779 op_type = RTE_PMD_I40E_RSS_QUEUE_REGION_INFO_GET; 9780 9781 ret = rte_pmd_i40e_rss_queue_region_conf(res->port_id, 9782 op_type, &rte_pmd_regions); 9783 9784 port_queue_region_info_display(res->port_id, &rte_pmd_regions); 9785 #endif 9786 9787 switch (ret) { 9788 case 0: 9789 break; 9790 case -ENOTSUP: 9791 printf("function not implemented or supported\n"); 9792 break; 9793 default: 9794 printf("queue region config info show error: (%s)\n", 9795 strerror(-ret)); 9796 } 9797 } 9798 9799 cmdline_parse_token_string_t cmd_show_queue_region_info_get = 9800 TOKEN_STRING_INITIALIZER(struct cmd_show_queue_region_info, 9801 show, "show"); 9802 cmdline_parse_token_string_t cmd_show_queue_region_info_port = 9803 TOKEN_STRING_INITIALIZER(struct cmd_show_queue_region_info, 9804 port, "port"); 9805 cmdline_parse_token_num_t cmd_show_queue_region_info_port_index = 9806 TOKEN_NUM_INITIALIZER(struct cmd_show_queue_region_info, 9807 port_id, UINT16); 9808 cmdline_parse_token_string_t cmd_show_queue_region_info_cmd = 9809 TOKEN_STRING_INITIALIZER(struct cmd_show_queue_region_info, 9810 cmd, "queue-region"); 9811 9812 cmdline_parse_inst_t cmd_show_queue_region_info_all = { 9813 .f = cmd_show_queue_region_info_parsed, 9814 .data = NULL, 9815 .help_str = "show port <port_id> queue-region" 9816 ": show all queue region related configuration info", 9817 .tokens = { 9818 (void *)&cmd_show_queue_region_info_get, 9819 (void *)&cmd_show_queue_region_info_port, 9820 (void *)&cmd_show_queue_region_info_port_index, 9821 (void *)&cmd_show_queue_region_info_cmd, 9822 NULL, 9823 }, 9824 }; 9825 9826 /* *** ADD/REMOVE A 2tuple FILTER *** */ 9827 struct cmd_2tuple_filter_result { 9828 cmdline_fixed_string_t filter; 9829 portid_t port_id; 9830 cmdline_fixed_string_t ops; 9831 cmdline_fixed_string_t dst_port; 9832 uint16_t dst_port_value; 9833 cmdline_fixed_string_t protocol; 9834 uint8_t protocol_value; 9835 cmdline_fixed_string_t mask; 9836 uint8_t mask_value; 9837 cmdline_fixed_string_t tcp_flags; 9838 uint8_t tcp_flags_value; 9839 cmdline_fixed_string_t priority; 9840 uint8_t priority_value; 9841 cmdline_fixed_string_t queue; 9842 uint16_t queue_id; 9843 }; 9844 9845 static void 9846 cmd_2tuple_filter_parsed(void *parsed_result, 9847 __attribute__((unused)) struct cmdline *cl, 9848 __attribute__((unused)) void *data) 9849 { 9850 struct rte_eth_ntuple_filter filter; 9851 struct cmd_2tuple_filter_result *res = parsed_result; 9852 int ret = 0; 9853 9854 ret = rte_eth_dev_filter_supported(res->port_id, RTE_ETH_FILTER_NTUPLE); 9855 if (ret < 0) { 9856 printf("ntuple filter is not supported on port %u.\n", 9857 res->port_id); 9858 return; 9859 } 9860 9861 memset(&filter, 0, sizeof(struct rte_eth_ntuple_filter)); 9862 9863 filter.flags = RTE_2TUPLE_FLAGS; 9864 filter.dst_port_mask = (res->mask_value & 0x02) ? UINT16_MAX : 0; 9865 filter.proto_mask = (res->mask_value & 0x01) ? UINT8_MAX : 0; 9866 filter.proto = res->protocol_value; 9867 filter.priority = res->priority_value; 9868 if (res->tcp_flags_value != 0 && filter.proto != IPPROTO_TCP) { 9869 printf("nonzero tcp_flags is only meaningful" 9870 " when protocol is TCP.\n"); 9871 return; 9872 } 9873 if (res->tcp_flags_value > TCP_FLAG_ALL) { 9874 printf("invalid TCP flags.\n"); 9875 return; 9876 } 9877 9878 if (res->tcp_flags_value != 0) { 9879 filter.flags |= RTE_NTUPLE_FLAGS_TCP_FLAG; 9880 filter.tcp_flags = res->tcp_flags_value; 9881 } 9882 9883 /* need convert to big endian. */ 9884 filter.dst_port = rte_cpu_to_be_16(res->dst_port_value); 9885 filter.queue = res->queue_id; 9886 9887 if (!strcmp(res->ops, "add")) 9888 ret = rte_eth_dev_filter_ctrl(res->port_id, 9889 RTE_ETH_FILTER_NTUPLE, 9890 RTE_ETH_FILTER_ADD, 9891 &filter); 9892 else 9893 ret = rte_eth_dev_filter_ctrl(res->port_id, 9894 RTE_ETH_FILTER_NTUPLE, 9895 RTE_ETH_FILTER_DELETE, 9896 &filter); 9897 if (ret < 0) 9898 printf("2tuple filter programming error: (%s)\n", 9899 strerror(-ret)); 9900 9901 } 9902 9903 cmdline_parse_token_string_t cmd_2tuple_filter_filter = 9904 TOKEN_STRING_INITIALIZER(struct cmd_2tuple_filter_result, 9905 filter, "2tuple_filter"); 9906 cmdline_parse_token_num_t cmd_2tuple_filter_port_id = 9907 TOKEN_NUM_INITIALIZER(struct cmd_2tuple_filter_result, 9908 port_id, UINT16); 9909 cmdline_parse_token_string_t cmd_2tuple_filter_ops = 9910 TOKEN_STRING_INITIALIZER(struct cmd_2tuple_filter_result, 9911 ops, "add#del"); 9912 cmdline_parse_token_string_t cmd_2tuple_filter_dst_port = 9913 TOKEN_STRING_INITIALIZER(struct cmd_2tuple_filter_result, 9914 dst_port, "dst_port"); 9915 cmdline_parse_token_num_t cmd_2tuple_filter_dst_port_value = 9916 TOKEN_NUM_INITIALIZER(struct cmd_2tuple_filter_result, 9917 dst_port_value, UINT16); 9918 cmdline_parse_token_string_t cmd_2tuple_filter_protocol = 9919 TOKEN_STRING_INITIALIZER(struct cmd_2tuple_filter_result, 9920 protocol, "protocol"); 9921 cmdline_parse_token_num_t cmd_2tuple_filter_protocol_value = 9922 TOKEN_NUM_INITIALIZER(struct cmd_2tuple_filter_result, 9923 protocol_value, UINT8); 9924 cmdline_parse_token_string_t cmd_2tuple_filter_mask = 9925 TOKEN_STRING_INITIALIZER(struct cmd_2tuple_filter_result, 9926 mask, "mask"); 9927 cmdline_parse_token_num_t cmd_2tuple_filter_mask_value = 9928 TOKEN_NUM_INITIALIZER(struct cmd_2tuple_filter_result, 9929 mask_value, INT8); 9930 cmdline_parse_token_string_t cmd_2tuple_filter_tcp_flags = 9931 TOKEN_STRING_INITIALIZER(struct cmd_2tuple_filter_result, 9932 tcp_flags, "tcp_flags"); 9933 cmdline_parse_token_num_t cmd_2tuple_filter_tcp_flags_value = 9934 TOKEN_NUM_INITIALIZER(struct cmd_2tuple_filter_result, 9935 tcp_flags_value, UINT8); 9936 cmdline_parse_token_string_t cmd_2tuple_filter_priority = 9937 TOKEN_STRING_INITIALIZER(struct cmd_2tuple_filter_result, 9938 priority, "priority"); 9939 cmdline_parse_token_num_t cmd_2tuple_filter_priority_value = 9940 TOKEN_NUM_INITIALIZER(struct cmd_2tuple_filter_result, 9941 priority_value, UINT8); 9942 cmdline_parse_token_string_t cmd_2tuple_filter_queue = 9943 TOKEN_STRING_INITIALIZER(struct cmd_2tuple_filter_result, 9944 queue, "queue"); 9945 cmdline_parse_token_num_t cmd_2tuple_filter_queue_id = 9946 TOKEN_NUM_INITIALIZER(struct cmd_2tuple_filter_result, 9947 queue_id, UINT16); 9948 9949 cmdline_parse_inst_t cmd_2tuple_filter = { 9950 .f = cmd_2tuple_filter_parsed, 9951 .data = NULL, 9952 .help_str = "2tuple_filter <port_id> add|del dst_port <value> protocol " 9953 "<value> mask <value> tcp_flags <value> priority <value> queue " 9954 "<queue_id>: Add a 2tuple filter", 9955 .tokens = { 9956 (void *)&cmd_2tuple_filter_filter, 9957 (void *)&cmd_2tuple_filter_port_id, 9958 (void *)&cmd_2tuple_filter_ops, 9959 (void *)&cmd_2tuple_filter_dst_port, 9960 (void *)&cmd_2tuple_filter_dst_port_value, 9961 (void *)&cmd_2tuple_filter_protocol, 9962 (void *)&cmd_2tuple_filter_protocol_value, 9963 (void *)&cmd_2tuple_filter_mask, 9964 (void *)&cmd_2tuple_filter_mask_value, 9965 (void *)&cmd_2tuple_filter_tcp_flags, 9966 (void *)&cmd_2tuple_filter_tcp_flags_value, 9967 (void *)&cmd_2tuple_filter_priority, 9968 (void *)&cmd_2tuple_filter_priority_value, 9969 (void *)&cmd_2tuple_filter_queue, 9970 (void *)&cmd_2tuple_filter_queue_id, 9971 NULL, 9972 }, 9973 }; 9974 9975 /* *** ADD/REMOVE A 5tuple FILTER *** */ 9976 struct cmd_5tuple_filter_result { 9977 cmdline_fixed_string_t filter; 9978 portid_t port_id; 9979 cmdline_fixed_string_t ops; 9980 cmdline_fixed_string_t dst_ip; 9981 cmdline_ipaddr_t dst_ip_value; 9982 cmdline_fixed_string_t src_ip; 9983 cmdline_ipaddr_t src_ip_value; 9984 cmdline_fixed_string_t dst_port; 9985 uint16_t dst_port_value; 9986 cmdline_fixed_string_t src_port; 9987 uint16_t src_port_value; 9988 cmdline_fixed_string_t protocol; 9989 uint8_t protocol_value; 9990 cmdline_fixed_string_t mask; 9991 uint8_t mask_value; 9992 cmdline_fixed_string_t tcp_flags; 9993 uint8_t tcp_flags_value; 9994 cmdline_fixed_string_t priority; 9995 uint8_t priority_value; 9996 cmdline_fixed_string_t queue; 9997 uint16_t queue_id; 9998 }; 9999 10000 static void 10001 cmd_5tuple_filter_parsed(void *parsed_result, 10002 __attribute__((unused)) struct cmdline *cl, 10003 __attribute__((unused)) void *data) 10004 { 10005 struct rte_eth_ntuple_filter filter; 10006 struct cmd_5tuple_filter_result *res = parsed_result; 10007 int ret = 0; 10008 10009 ret = rte_eth_dev_filter_supported(res->port_id, RTE_ETH_FILTER_NTUPLE); 10010 if (ret < 0) { 10011 printf("ntuple filter is not supported on port %u.\n", 10012 res->port_id); 10013 return; 10014 } 10015 10016 memset(&filter, 0, sizeof(struct rte_eth_ntuple_filter)); 10017 10018 filter.flags = RTE_5TUPLE_FLAGS; 10019 filter.dst_ip_mask = (res->mask_value & 0x10) ? UINT32_MAX : 0; 10020 filter.src_ip_mask = (res->mask_value & 0x08) ? UINT32_MAX : 0; 10021 filter.dst_port_mask = (res->mask_value & 0x04) ? UINT16_MAX : 0; 10022 filter.src_port_mask = (res->mask_value & 0x02) ? UINT16_MAX : 0; 10023 filter.proto_mask = (res->mask_value & 0x01) ? UINT8_MAX : 0; 10024 filter.proto = res->protocol_value; 10025 filter.priority = res->priority_value; 10026 if (res->tcp_flags_value != 0 && filter.proto != IPPROTO_TCP) { 10027 printf("nonzero tcp_flags is only meaningful" 10028 " when protocol is TCP.\n"); 10029 return; 10030 } 10031 if (res->tcp_flags_value > TCP_FLAG_ALL) { 10032 printf("invalid TCP flags.\n"); 10033 return; 10034 } 10035 10036 if (res->tcp_flags_value != 0) { 10037 filter.flags |= RTE_NTUPLE_FLAGS_TCP_FLAG; 10038 filter.tcp_flags = res->tcp_flags_value; 10039 } 10040 10041 if (res->dst_ip_value.family == AF_INET) 10042 /* no need to convert, already big endian. */ 10043 filter.dst_ip = res->dst_ip_value.addr.ipv4.s_addr; 10044 else { 10045 if (filter.dst_ip_mask == 0) { 10046 printf("can not support ipv6 involved compare.\n"); 10047 return; 10048 } 10049 filter.dst_ip = 0; 10050 } 10051 10052 if (res->src_ip_value.family == AF_INET) 10053 /* no need to convert, already big endian. */ 10054 filter.src_ip = res->src_ip_value.addr.ipv4.s_addr; 10055 else { 10056 if (filter.src_ip_mask == 0) { 10057 printf("can not support ipv6 involved compare.\n"); 10058 return; 10059 } 10060 filter.src_ip = 0; 10061 } 10062 /* need convert to big endian. */ 10063 filter.dst_port = rte_cpu_to_be_16(res->dst_port_value); 10064 filter.src_port = rte_cpu_to_be_16(res->src_port_value); 10065 filter.queue = res->queue_id; 10066 10067 if (!strcmp(res->ops, "add")) 10068 ret = rte_eth_dev_filter_ctrl(res->port_id, 10069 RTE_ETH_FILTER_NTUPLE, 10070 RTE_ETH_FILTER_ADD, 10071 &filter); 10072 else 10073 ret = rte_eth_dev_filter_ctrl(res->port_id, 10074 RTE_ETH_FILTER_NTUPLE, 10075 RTE_ETH_FILTER_DELETE, 10076 &filter); 10077 if (ret < 0) 10078 printf("5tuple filter programming error: (%s)\n", 10079 strerror(-ret)); 10080 } 10081 10082 cmdline_parse_token_string_t cmd_5tuple_filter_filter = 10083 TOKEN_STRING_INITIALIZER(struct cmd_5tuple_filter_result, 10084 filter, "5tuple_filter"); 10085 cmdline_parse_token_num_t cmd_5tuple_filter_port_id = 10086 TOKEN_NUM_INITIALIZER(struct cmd_5tuple_filter_result, 10087 port_id, UINT16); 10088 cmdline_parse_token_string_t cmd_5tuple_filter_ops = 10089 TOKEN_STRING_INITIALIZER(struct cmd_5tuple_filter_result, 10090 ops, "add#del"); 10091 cmdline_parse_token_string_t cmd_5tuple_filter_dst_ip = 10092 TOKEN_STRING_INITIALIZER(struct cmd_5tuple_filter_result, 10093 dst_ip, "dst_ip"); 10094 cmdline_parse_token_ipaddr_t cmd_5tuple_filter_dst_ip_value = 10095 TOKEN_IPADDR_INITIALIZER(struct cmd_5tuple_filter_result, 10096 dst_ip_value); 10097 cmdline_parse_token_string_t cmd_5tuple_filter_src_ip = 10098 TOKEN_STRING_INITIALIZER(struct cmd_5tuple_filter_result, 10099 src_ip, "src_ip"); 10100 cmdline_parse_token_ipaddr_t cmd_5tuple_filter_src_ip_value = 10101 TOKEN_IPADDR_INITIALIZER(struct cmd_5tuple_filter_result, 10102 src_ip_value); 10103 cmdline_parse_token_string_t cmd_5tuple_filter_dst_port = 10104 TOKEN_STRING_INITIALIZER(struct cmd_5tuple_filter_result, 10105 dst_port, "dst_port"); 10106 cmdline_parse_token_num_t cmd_5tuple_filter_dst_port_value = 10107 TOKEN_NUM_INITIALIZER(struct cmd_5tuple_filter_result, 10108 dst_port_value, UINT16); 10109 cmdline_parse_token_string_t cmd_5tuple_filter_src_port = 10110 TOKEN_STRING_INITIALIZER(struct cmd_5tuple_filter_result, 10111 src_port, "src_port"); 10112 cmdline_parse_token_num_t cmd_5tuple_filter_src_port_value = 10113 TOKEN_NUM_INITIALIZER(struct cmd_5tuple_filter_result, 10114 src_port_value, UINT16); 10115 cmdline_parse_token_string_t cmd_5tuple_filter_protocol = 10116 TOKEN_STRING_INITIALIZER(struct cmd_5tuple_filter_result, 10117 protocol, "protocol"); 10118 cmdline_parse_token_num_t cmd_5tuple_filter_protocol_value = 10119 TOKEN_NUM_INITIALIZER(struct cmd_5tuple_filter_result, 10120 protocol_value, UINT8); 10121 cmdline_parse_token_string_t cmd_5tuple_filter_mask = 10122 TOKEN_STRING_INITIALIZER(struct cmd_5tuple_filter_result, 10123 mask, "mask"); 10124 cmdline_parse_token_num_t cmd_5tuple_filter_mask_value = 10125 TOKEN_NUM_INITIALIZER(struct cmd_5tuple_filter_result, 10126 mask_value, INT8); 10127 cmdline_parse_token_string_t cmd_5tuple_filter_tcp_flags = 10128 TOKEN_STRING_INITIALIZER(struct cmd_5tuple_filter_result, 10129 tcp_flags, "tcp_flags"); 10130 cmdline_parse_token_num_t cmd_5tuple_filter_tcp_flags_value = 10131 TOKEN_NUM_INITIALIZER(struct cmd_5tuple_filter_result, 10132 tcp_flags_value, UINT8); 10133 cmdline_parse_token_string_t cmd_5tuple_filter_priority = 10134 TOKEN_STRING_INITIALIZER(struct cmd_5tuple_filter_result, 10135 priority, "priority"); 10136 cmdline_parse_token_num_t cmd_5tuple_filter_priority_value = 10137 TOKEN_NUM_INITIALIZER(struct cmd_5tuple_filter_result, 10138 priority_value, UINT8); 10139 cmdline_parse_token_string_t cmd_5tuple_filter_queue = 10140 TOKEN_STRING_INITIALIZER(struct cmd_5tuple_filter_result, 10141 queue, "queue"); 10142 cmdline_parse_token_num_t cmd_5tuple_filter_queue_id = 10143 TOKEN_NUM_INITIALIZER(struct cmd_5tuple_filter_result, 10144 queue_id, UINT16); 10145 10146 cmdline_parse_inst_t cmd_5tuple_filter = { 10147 .f = cmd_5tuple_filter_parsed, 10148 .data = NULL, 10149 .help_str = "5tuple_filter <port_id> add|del dst_ip <value> " 10150 "src_ip <value> dst_port <value> src_port <value> " 10151 "protocol <value> mask <value> tcp_flags <value> " 10152 "priority <value> queue <queue_id>: Add/Del a 5tuple filter", 10153 .tokens = { 10154 (void *)&cmd_5tuple_filter_filter, 10155 (void *)&cmd_5tuple_filter_port_id, 10156 (void *)&cmd_5tuple_filter_ops, 10157 (void *)&cmd_5tuple_filter_dst_ip, 10158 (void *)&cmd_5tuple_filter_dst_ip_value, 10159 (void *)&cmd_5tuple_filter_src_ip, 10160 (void *)&cmd_5tuple_filter_src_ip_value, 10161 (void *)&cmd_5tuple_filter_dst_port, 10162 (void *)&cmd_5tuple_filter_dst_port_value, 10163 (void *)&cmd_5tuple_filter_src_port, 10164 (void *)&cmd_5tuple_filter_src_port_value, 10165 (void *)&cmd_5tuple_filter_protocol, 10166 (void *)&cmd_5tuple_filter_protocol_value, 10167 (void *)&cmd_5tuple_filter_mask, 10168 (void *)&cmd_5tuple_filter_mask_value, 10169 (void *)&cmd_5tuple_filter_tcp_flags, 10170 (void *)&cmd_5tuple_filter_tcp_flags_value, 10171 (void *)&cmd_5tuple_filter_priority, 10172 (void *)&cmd_5tuple_filter_priority_value, 10173 (void *)&cmd_5tuple_filter_queue, 10174 (void *)&cmd_5tuple_filter_queue_id, 10175 NULL, 10176 }, 10177 }; 10178 10179 /* *** ADD/REMOVE A flex FILTER *** */ 10180 struct cmd_flex_filter_result { 10181 cmdline_fixed_string_t filter; 10182 cmdline_fixed_string_t ops; 10183 portid_t port_id; 10184 cmdline_fixed_string_t len; 10185 uint8_t len_value; 10186 cmdline_fixed_string_t bytes; 10187 cmdline_fixed_string_t bytes_value; 10188 cmdline_fixed_string_t mask; 10189 cmdline_fixed_string_t mask_value; 10190 cmdline_fixed_string_t priority; 10191 uint8_t priority_value; 10192 cmdline_fixed_string_t queue; 10193 uint16_t queue_id; 10194 }; 10195 10196 static int xdigit2val(unsigned char c) 10197 { 10198 int val; 10199 if (isdigit(c)) 10200 val = c - '0'; 10201 else if (isupper(c)) 10202 val = c - 'A' + 10; 10203 else 10204 val = c - 'a' + 10; 10205 return val; 10206 } 10207 10208 static void 10209 cmd_flex_filter_parsed(void *parsed_result, 10210 __attribute__((unused)) struct cmdline *cl, 10211 __attribute__((unused)) void *data) 10212 { 10213 int ret = 0; 10214 struct rte_eth_flex_filter filter; 10215 struct cmd_flex_filter_result *res = parsed_result; 10216 char *bytes_ptr, *mask_ptr; 10217 uint16_t len, i, j = 0; 10218 char c; 10219 int val; 10220 uint8_t byte = 0; 10221 10222 if (res->len_value > RTE_FLEX_FILTER_MAXLEN) { 10223 printf("the len exceed the max length 128\n"); 10224 return; 10225 } 10226 memset(&filter, 0, sizeof(struct rte_eth_flex_filter)); 10227 filter.len = res->len_value; 10228 filter.priority = res->priority_value; 10229 filter.queue = res->queue_id; 10230 bytes_ptr = res->bytes_value; 10231 mask_ptr = res->mask_value; 10232 10233 /* translate bytes string to array. */ 10234 if (bytes_ptr[0] == '0' && ((bytes_ptr[1] == 'x') || 10235 (bytes_ptr[1] == 'X'))) 10236 bytes_ptr += 2; 10237 len = strnlen(bytes_ptr, res->len_value * 2); 10238 if (len == 0 || (len % 8 != 0)) { 10239 printf("please check len and bytes input\n"); 10240 return; 10241 } 10242 for (i = 0; i < len; i++) { 10243 c = bytes_ptr[i]; 10244 if (isxdigit(c) == 0) { 10245 /* invalid characters. */ 10246 printf("invalid input\n"); 10247 return; 10248 } 10249 val = xdigit2val(c); 10250 if (i % 2) { 10251 byte |= val; 10252 filter.bytes[j] = byte; 10253 printf("bytes[%d]:%02x ", j, filter.bytes[j]); 10254 j++; 10255 byte = 0; 10256 } else 10257 byte |= val << 4; 10258 } 10259 printf("\n"); 10260 /* translate mask string to uint8_t array. */ 10261 if (mask_ptr[0] == '0' && ((mask_ptr[1] == 'x') || 10262 (mask_ptr[1] == 'X'))) 10263 mask_ptr += 2; 10264 len = strnlen(mask_ptr, (res->len_value + 3) / 4); 10265 if (len == 0) { 10266 printf("invalid input\n"); 10267 return; 10268 } 10269 j = 0; 10270 byte = 0; 10271 for (i = 0; i < len; i++) { 10272 c = mask_ptr[i]; 10273 if (isxdigit(c) == 0) { 10274 /* invalid characters. */ 10275 printf("invalid input\n"); 10276 return; 10277 } 10278 val = xdigit2val(c); 10279 if (i % 2) { 10280 byte |= val; 10281 filter.mask[j] = byte; 10282 printf("mask[%d]:%02x ", j, filter.mask[j]); 10283 j++; 10284 byte = 0; 10285 } else 10286 byte |= val << 4; 10287 } 10288 printf("\n"); 10289 10290 if (!strcmp(res->ops, "add")) 10291 ret = rte_eth_dev_filter_ctrl(res->port_id, 10292 RTE_ETH_FILTER_FLEXIBLE, 10293 RTE_ETH_FILTER_ADD, 10294 &filter); 10295 else 10296 ret = rte_eth_dev_filter_ctrl(res->port_id, 10297 RTE_ETH_FILTER_FLEXIBLE, 10298 RTE_ETH_FILTER_DELETE, 10299 &filter); 10300 10301 if (ret < 0) 10302 printf("flex filter setting error: (%s)\n", strerror(-ret)); 10303 } 10304 10305 cmdline_parse_token_string_t cmd_flex_filter_filter = 10306 TOKEN_STRING_INITIALIZER(struct cmd_flex_filter_result, 10307 filter, "flex_filter"); 10308 cmdline_parse_token_num_t cmd_flex_filter_port_id = 10309 TOKEN_NUM_INITIALIZER(struct cmd_flex_filter_result, 10310 port_id, UINT16); 10311 cmdline_parse_token_string_t cmd_flex_filter_ops = 10312 TOKEN_STRING_INITIALIZER(struct cmd_flex_filter_result, 10313 ops, "add#del"); 10314 cmdline_parse_token_string_t cmd_flex_filter_len = 10315 TOKEN_STRING_INITIALIZER(struct cmd_flex_filter_result, 10316 len, "len"); 10317 cmdline_parse_token_num_t cmd_flex_filter_len_value = 10318 TOKEN_NUM_INITIALIZER(struct cmd_flex_filter_result, 10319 len_value, UINT8); 10320 cmdline_parse_token_string_t cmd_flex_filter_bytes = 10321 TOKEN_STRING_INITIALIZER(struct cmd_flex_filter_result, 10322 bytes, "bytes"); 10323 cmdline_parse_token_string_t cmd_flex_filter_bytes_value = 10324 TOKEN_STRING_INITIALIZER(struct cmd_flex_filter_result, 10325 bytes_value, NULL); 10326 cmdline_parse_token_string_t cmd_flex_filter_mask = 10327 TOKEN_STRING_INITIALIZER(struct cmd_flex_filter_result, 10328 mask, "mask"); 10329 cmdline_parse_token_string_t cmd_flex_filter_mask_value = 10330 TOKEN_STRING_INITIALIZER(struct cmd_flex_filter_result, 10331 mask_value, NULL); 10332 cmdline_parse_token_string_t cmd_flex_filter_priority = 10333 TOKEN_STRING_INITIALIZER(struct cmd_flex_filter_result, 10334 priority, "priority"); 10335 cmdline_parse_token_num_t cmd_flex_filter_priority_value = 10336 TOKEN_NUM_INITIALIZER(struct cmd_flex_filter_result, 10337 priority_value, UINT8); 10338 cmdline_parse_token_string_t cmd_flex_filter_queue = 10339 TOKEN_STRING_INITIALIZER(struct cmd_flex_filter_result, 10340 queue, "queue"); 10341 cmdline_parse_token_num_t cmd_flex_filter_queue_id = 10342 TOKEN_NUM_INITIALIZER(struct cmd_flex_filter_result, 10343 queue_id, UINT16); 10344 cmdline_parse_inst_t cmd_flex_filter = { 10345 .f = cmd_flex_filter_parsed, 10346 .data = NULL, 10347 .help_str = "flex_filter <port_id> add|del len <value> bytes " 10348 "<value> mask <value> priority <value> queue <queue_id>: " 10349 "Add/Del a flex filter", 10350 .tokens = { 10351 (void *)&cmd_flex_filter_filter, 10352 (void *)&cmd_flex_filter_port_id, 10353 (void *)&cmd_flex_filter_ops, 10354 (void *)&cmd_flex_filter_len, 10355 (void *)&cmd_flex_filter_len_value, 10356 (void *)&cmd_flex_filter_bytes, 10357 (void *)&cmd_flex_filter_bytes_value, 10358 (void *)&cmd_flex_filter_mask, 10359 (void *)&cmd_flex_filter_mask_value, 10360 (void *)&cmd_flex_filter_priority, 10361 (void *)&cmd_flex_filter_priority_value, 10362 (void *)&cmd_flex_filter_queue, 10363 (void *)&cmd_flex_filter_queue_id, 10364 NULL, 10365 }, 10366 }; 10367 10368 /* *** Filters Control *** */ 10369 10370 /* *** deal with ethertype filter *** */ 10371 struct cmd_ethertype_filter_result { 10372 cmdline_fixed_string_t filter; 10373 portid_t port_id; 10374 cmdline_fixed_string_t ops; 10375 cmdline_fixed_string_t mac; 10376 struct ether_addr mac_addr; 10377 cmdline_fixed_string_t ethertype; 10378 uint16_t ethertype_value; 10379 cmdline_fixed_string_t drop; 10380 cmdline_fixed_string_t queue; 10381 uint16_t queue_id; 10382 }; 10383 10384 cmdline_parse_token_string_t cmd_ethertype_filter_filter = 10385 TOKEN_STRING_INITIALIZER(struct cmd_ethertype_filter_result, 10386 filter, "ethertype_filter"); 10387 cmdline_parse_token_num_t cmd_ethertype_filter_port_id = 10388 TOKEN_NUM_INITIALIZER(struct cmd_ethertype_filter_result, 10389 port_id, UINT16); 10390 cmdline_parse_token_string_t cmd_ethertype_filter_ops = 10391 TOKEN_STRING_INITIALIZER(struct cmd_ethertype_filter_result, 10392 ops, "add#del"); 10393 cmdline_parse_token_string_t cmd_ethertype_filter_mac = 10394 TOKEN_STRING_INITIALIZER(struct cmd_ethertype_filter_result, 10395 mac, "mac_addr#mac_ignr"); 10396 cmdline_parse_token_etheraddr_t cmd_ethertype_filter_mac_addr = 10397 TOKEN_ETHERADDR_INITIALIZER(struct cmd_ethertype_filter_result, 10398 mac_addr); 10399 cmdline_parse_token_string_t cmd_ethertype_filter_ethertype = 10400 TOKEN_STRING_INITIALIZER(struct cmd_ethertype_filter_result, 10401 ethertype, "ethertype"); 10402 cmdline_parse_token_num_t cmd_ethertype_filter_ethertype_value = 10403 TOKEN_NUM_INITIALIZER(struct cmd_ethertype_filter_result, 10404 ethertype_value, UINT16); 10405 cmdline_parse_token_string_t cmd_ethertype_filter_drop = 10406 TOKEN_STRING_INITIALIZER(struct cmd_ethertype_filter_result, 10407 drop, "drop#fwd"); 10408 cmdline_parse_token_string_t cmd_ethertype_filter_queue = 10409 TOKEN_STRING_INITIALIZER(struct cmd_ethertype_filter_result, 10410 queue, "queue"); 10411 cmdline_parse_token_num_t cmd_ethertype_filter_queue_id = 10412 TOKEN_NUM_INITIALIZER(struct cmd_ethertype_filter_result, 10413 queue_id, UINT16); 10414 10415 static void 10416 cmd_ethertype_filter_parsed(void *parsed_result, 10417 __attribute__((unused)) struct cmdline *cl, 10418 __attribute__((unused)) void *data) 10419 { 10420 struct cmd_ethertype_filter_result *res = parsed_result; 10421 struct rte_eth_ethertype_filter filter; 10422 int ret = 0; 10423 10424 ret = rte_eth_dev_filter_supported(res->port_id, 10425 RTE_ETH_FILTER_ETHERTYPE); 10426 if (ret < 0) { 10427 printf("ethertype filter is not supported on port %u.\n", 10428 res->port_id); 10429 return; 10430 } 10431 10432 memset(&filter, 0, sizeof(filter)); 10433 if (!strcmp(res->mac, "mac_addr")) { 10434 filter.flags |= RTE_ETHTYPE_FLAGS_MAC; 10435 rte_memcpy(&filter.mac_addr, &res->mac_addr, 10436 sizeof(struct ether_addr)); 10437 } 10438 if (!strcmp(res->drop, "drop")) 10439 filter.flags |= RTE_ETHTYPE_FLAGS_DROP; 10440 filter.ether_type = res->ethertype_value; 10441 filter.queue = res->queue_id; 10442 10443 if (!strcmp(res->ops, "add")) 10444 ret = rte_eth_dev_filter_ctrl(res->port_id, 10445 RTE_ETH_FILTER_ETHERTYPE, 10446 RTE_ETH_FILTER_ADD, 10447 &filter); 10448 else 10449 ret = rte_eth_dev_filter_ctrl(res->port_id, 10450 RTE_ETH_FILTER_ETHERTYPE, 10451 RTE_ETH_FILTER_DELETE, 10452 &filter); 10453 if (ret < 0) 10454 printf("ethertype filter programming error: (%s)\n", 10455 strerror(-ret)); 10456 } 10457 10458 cmdline_parse_inst_t cmd_ethertype_filter = { 10459 .f = cmd_ethertype_filter_parsed, 10460 .data = NULL, 10461 .help_str = "ethertype_filter <port_id> add|del mac_addr|mac_ignr " 10462 "<mac_addr> ethertype <value> drop|fw queue <queue_id>: " 10463 "Add or delete an ethertype filter entry", 10464 .tokens = { 10465 (void *)&cmd_ethertype_filter_filter, 10466 (void *)&cmd_ethertype_filter_port_id, 10467 (void *)&cmd_ethertype_filter_ops, 10468 (void *)&cmd_ethertype_filter_mac, 10469 (void *)&cmd_ethertype_filter_mac_addr, 10470 (void *)&cmd_ethertype_filter_ethertype, 10471 (void *)&cmd_ethertype_filter_ethertype_value, 10472 (void *)&cmd_ethertype_filter_drop, 10473 (void *)&cmd_ethertype_filter_queue, 10474 (void *)&cmd_ethertype_filter_queue_id, 10475 NULL, 10476 }, 10477 }; 10478 10479 /* *** deal with flow director filter *** */ 10480 struct cmd_flow_director_result { 10481 cmdline_fixed_string_t flow_director_filter; 10482 portid_t port_id; 10483 cmdline_fixed_string_t mode; 10484 cmdline_fixed_string_t mode_value; 10485 cmdline_fixed_string_t ops; 10486 cmdline_fixed_string_t flow; 10487 cmdline_fixed_string_t flow_type; 10488 cmdline_fixed_string_t ether; 10489 uint16_t ether_type; 10490 cmdline_fixed_string_t src; 10491 cmdline_ipaddr_t ip_src; 10492 uint16_t port_src; 10493 cmdline_fixed_string_t dst; 10494 cmdline_ipaddr_t ip_dst; 10495 uint16_t port_dst; 10496 cmdline_fixed_string_t verify_tag; 10497 uint32_t verify_tag_value; 10498 cmdline_fixed_string_t tos; 10499 uint8_t tos_value; 10500 cmdline_fixed_string_t proto; 10501 uint8_t proto_value; 10502 cmdline_fixed_string_t ttl; 10503 uint8_t ttl_value; 10504 cmdline_fixed_string_t vlan; 10505 uint16_t vlan_value; 10506 cmdline_fixed_string_t flexbytes; 10507 cmdline_fixed_string_t flexbytes_value; 10508 cmdline_fixed_string_t pf_vf; 10509 cmdline_fixed_string_t drop; 10510 cmdline_fixed_string_t queue; 10511 uint16_t queue_id; 10512 cmdline_fixed_string_t fd_id; 10513 uint32_t fd_id_value; 10514 cmdline_fixed_string_t mac; 10515 struct ether_addr mac_addr; 10516 cmdline_fixed_string_t tunnel; 10517 cmdline_fixed_string_t tunnel_type; 10518 cmdline_fixed_string_t tunnel_id; 10519 uint32_t tunnel_id_value; 10520 cmdline_fixed_string_t packet; 10521 char filepath[]; 10522 }; 10523 10524 static inline int 10525 parse_flexbytes(const char *q_arg, uint8_t *flexbytes, uint16_t max_num) 10526 { 10527 char s[256]; 10528 const char *p, *p0 = q_arg; 10529 char *end; 10530 unsigned long int_fld; 10531 char *str_fld[max_num]; 10532 int i; 10533 unsigned size; 10534 int ret = -1; 10535 10536 p = strchr(p0, '('); 10537 if (p == NULL) 10538 return -1; 10539 ++p; 10540 p0 = strchr(p, ')'); 10541 if (p0 == NULL) 10542 return -1; 10543 10544 size = p0 - p; 10545 if (size >= sizeof(s)) 10546 return -1; 10547 10548 snprintf(s, sizeof(s), "%.*s", size, p); 10549 ret = rte_strsplit(s, sizeof(s), str_fld, max_num, ','); 10550 if (ret < 0 || ret > max_num) 10551 return -1; 10552 for (i = 0; i < ret; i++) { 10553 errno = 0; 10554 int_fld = strtoul(str_fld[i], &end, 0); 10555 if (errno != 0 || *end != '\0' || int_fld > UINT8_MAX) 10556 return -1; 10557 flexbytes[i] = (uint8_t)int_fld; 10558 } 10559 return ret; 10560 } 10561 10562 static uint16_t 10563 str2flowtype(char *string) 10564 { 10565 uint8_t i = 0; 10566 static const struct { 10567 char str[32]; 10568 uint16_t type; 10569 } flowtype_str[] = { 10570 {"raw", RTE_ETH_FLOW_RAW}, 10571 {"ipv4", RTE_ETH_FLOW_IPV4}, 10572 {"ipv4-frag", RTE_ETH_FLOW_FRAG_IPV4}, 10573 {"ipv4-tcp", RTE_ETH_FLOW_NONFRAG_IPV4_TCP}, 10574 {"ipv4-udp", RTE_ETH_FLOW_NONFRAG_IPV4_UDP}, 10575 {"ipv4-sctp", RTE_ETH_FLOW_NONFRAG_IPV4_SCTP}, 10576 {"ipv4-other", RTE_ETH_FLOW_NONFRAG_IPV4_OTHER}, 10577 {"ipv6", RTE_ETH_FLOW_IPV6}, 10578 {"ipv6-frag", RTE_ETH_FLOW_FRAG_IPV6}, 10579 {"ipv6-tcp", RTE_ETH_FLOW_NONFRAG_IPV6_TCP}, 10580 {"ipv6-udp", RTE_ETH_FLOW_NONFRAG_IPV6_UDP}, 10581 {"ipv6-sctp", RTE_ETH_FLOW_NONFRAG_IPV6_SCTP}, 10582 {"ipv6-other", RTE_ETH_FLOW_NONFRAG_IPV6_OTHER}, 10583 {"l2_payload", RTE_ETH_FLOW_L2_PAYLOAD}, 10584 }; 10585 10586 for (i = 0; i < RTE_DIM(flowtype_str); i++) { 10587 if (!strcmp(flowtype_str[i].str, string)) 10588 return flowtype_str[i].type; 10589 } 10590 10591 if (isdigit(string[0]) && atoi(string) > 0 && atoi(string) < 64) 10592 return (uint16_t)atoi(string); 10593 10594 return RTE_ETH_FLOW_UNKNOWN; 10595 } 10596 10597 static enum rte_eth_fdir_tunnel_type 10598 str2fdir_tunneltype(char *string) 10599 { 10600 uint8_t i = 0; 10601 10602 static const struct { 10603 char str[32]; 10604 enum rte_eth_fdir_tunnel_type type; 10605 } tunneltype_str[] = { 10606 {"NVGRE", RTE_FDIR_TUNNEL_TYPE_NVGRE}, 10607 {"VxLAN", RTE_FDIR_TUNNEL_TYPE_VXLAN}, 10608 }; 10609 10610 for (i = 0; i < RTE_DIM(tunneltype_str); i++) { 10611 if (!strcmp(tunneltype_str[i].str, string)) 10612 return tunneltype_str[i].type; 10613 } 10614 return RTE_FDIR_TUNNEL_TYPE_UNKNOWN; 10615 } 10616 10617 #define IPV4_ADDR_TO_UINT(ip_addr, ip) \ 10618 do { \ 10619 if ((ip_addr).family == AF_INET) \ 10620 (ip) = (ip_addr).addr.ipv4.s_addr; \ 10621 else { \ 10622 printf("invalid parameter.\n"); \ 10623 return; \ 10624 } \ 10625 } while (0) 10626 10627 #define IPV6_ADDR_TO_ARRAY(ip_addr, ip) \ 10628 do { \ 10629 if ((ip_addr).family == AF_INET6) \ 10630 rte_memcpy(&(ip), \ 10631 &((ip_addr).addr.ipv6), \ 10632 sizeof(struct in6_addr)); \ 10633 else { \ 10634 printf("invalid parameter.\n"); \ 10635 return; \ 10636 } \ 10637 } while (0) 10638 10639 static void 10640 cmd_flow_director_filter_parsed(void *parsed_result, 10641 __attribute__((unused)) struct cmdline *cl, 10642 __attribute__((unused)) void *data) 10643 { 10644 struct cmd_flow_director_result *res = parsed_result; 10645 struct rte_eth_fdir_filter entry; 10646 uint8_t flexbytes[RTE_ETH_FDIR_MAX_FLEXLEN]; 10647 char *end; 10648 unsigned long vf_id; 10649 int ret = 0; 10650 10651 ret = rte_eth_dev_filter_supported(res->port_id, RTE_ETH_FILTER_FDIR); 10652 if (ret < 0) { 10653 printf("flow director is not supported on port %u.\n", 10654 res->port_id); 10655 return; 10656 } 10657 memset(flexbytes, 0, sizeof(flexbytes)); 10658 memset(&entry, 0, sizeof(struct rte_eth_fdir_filter)); 10659 10660 if (fdir_conf.mode == RTE_FDIR_MODE_PERFECT_MAC_VLAN) { 10661 if (strcmp(res->mode_value, "MAC-VLAN")) { 10662 printf("Please set mode to MAC-VLAN.\n"); 10663 return; 10664 } 10665 } else if (fdir_conf.mode == RTE_FDIR_MODE_PERFECT_TUNNEL) { 10666 if (strcmp(res->mode_value, "Tunnel")) { 10667 printf("Please set mode to Tunnel.\n"); 10668 return; 10669 } 10670 } else { 10671 if (!strcmp(res->mode_value, "raw")) { 10672 #ifdef RTE_LIBRTE_I40E_PMD 10673 struct rte_pmd_i40e_flow_type_mapping 10674 mapping[RTE_PMD_I40E_FLOW_TYPE_MAX]; 10675 struct rte_pmd_i40e_pkt_template_conf conf; 10676 uint16_t flow_type = str2flowtype(res->flow_type); 10677 uint16_t i, port = res->port_id; 10678 uint8_t add; 10679 10680 memset(&conf, 0, sizeof(conf)); 10681 10682 if (flow_type == RTE_ETH_FLOW_UNKNOWN) { 10683 printf("Invalid flow type specified.\n"); 10684 return; 10685 } 10686 ret = rte_pmd_i40e_flow_type_mapping_get(res->port_id, 10687 mapping); 10688 if (ret) 10689 return; 10690 if (mapping[flow_type].pctype == 0ULL) { 10691 printf("Invalid flow type specified.\n"); 10692 return; 10693 } 10694 for (i = 0; i < RTE_PMD_I40E_PCTYPE_MAX; i++) { 10695 if (mapping[flow_type].pctype & (1ULL << i)) { 10696 conf.input.pctype = i; 10697 break; 10698 } 10699 } 10700 10701 conf.input.packet = open_file(res->filepath, 10702 &conf.input.length); 10703 if (!conf.input.packet) 10704 return; 10705 if (!strcmp(res->drop, "drop")) 10706 conf.action.behavior = 10707 RTE_PMD_I40E_PKT_TEMPLATE_REJECT; 10708 else 10709 conf.action.behavior = 10710 RTE_PMD_I40E_PKT_TEMPLATE_ACCEPT; 10711 conf.action.report_status = 10712 RTE_PMD_I40E_PKT_TEMPLATE_REPORT_ID; 10713 conf.action.rx_queue = res->queue_id; 10714 conf.soft_id = res->fd_id_value; 10715 add = strcmp(res->ops, "del") ? 1 : 0; 10716 ret = rte_pmd_i40e_flow_add_del_packet_template(port, 10717 &conf, 10718 add); 10719 if (ret < 0) 10720 printf("flow director config error: (%s)\n", 10721 strerror(-ret)); 10722 close_file(conf.input.packet); 10723 #endif 10724 return; 10725 } else if (strcmp(res->mode_value, "IP")) { 10726 printf("Please set mode to IP or raw.\n"); 10727 return; 10728 } 10729 entry.input.flow_type = str2flowtype(res->flow_type); 10730 } 10731 10732 ret = parse_flexbytes(res->flexbytes_value, 10733 flexbytes, 10734 RTE_ETH_FDIR_MAX_FLEXLEN); 10735 if (ret < 0) { 10736 printf("error: Cannot parse flexbytes input.\n"); 10737 return; 10738 } 10739 10740 switch (entry.input.flow_type) { 10741 case RTE_ETH_FLOW_FRAG_IPV4: 10742 case RTE_ETH_FLOW_NONFRAG_IPV4_OTHER: 10743 entry.input.flow.ip4_flow.proto = res->proto_value; 10744 /* fall-through */ 10745 case RTE_ETH_FLOW_NONFRAG_IPV4_UDP: 10746 case RTE_ETH_FLOW_NONFRAG_IPV4_TCP: 10747 IPV4_ADDR_TO_UINT(res->ip_dst, 10748 entry.input.flow.ip4_flow.dst_ip); 10749 IPV4_ADDR_TO_UINT(res->ip_src, 10750 entry.input.flow.ip4_flow.src_ip); 10751 entry.input.flow.ip4_flow.tos = res->tos_value; 10752 entry.input.flow.ip4_flow.ttl = res->ttl_value; 10753 /* need convert to big endian. */ 10754 entry.input.flow.udp4_flow.dst_port = 10755 rte_cpu_to_be_16(res->port_dst); 10756 entry.input.flow.udp4_flow.src_port = 10757 rte_cpu_to_be_16(res->port_src); 10758 break; 10759 case RTE_ETH_FLOW_NONFRAG_IPV4_SCTP: 10760 IPV4_ADDR_TO_UINT(res->ip_dst, 10761 entry.input.flow.sctp4_flow.ip.dst_ip); 10762 IPV4_ADDR_TO_UINT(res->ip_src, 10763 entry.input.flow.sctp4_flow.ip.src_ip); 10764 entry.input.flow.ip4_flow.tos = res->tos_value; 10765 entry.input.flow.ip4_flow.ttl = res->ttl_value; 10766 /* need convert to big endian. */ 10767 entry.input.flow.sctp4_flow.dst_port = 10768 rte_cpu_to_be_16(res->port_dst); 10769 entry.input.flow.sctp4_flow.src_port = 10770 rte_cpu_to_be_16(res->port_src); 10771 entry.input.flow.sctp4_flow.verify_tag = 10772 rte_cpu_to_be_32(res->verify_tag_value); 10773 break; 10774 case RTE_ETH_FLOW_FRAG_IPV6: 10775 case RTE_ETH_FLOW_NONFRAG_IPV6_OTHER: 10776 entry.input.flow.ipv6_flow.proto = res->proto_value; 10777 /* fall-through */ 10778 case RTE_ETH_FLOW_NONFRAG_IPV6_UDP: 10779 case RTE_ETH_FLOW_NONFRAG_IPV6_TCP: 10780 IPV6_ADDR_TO_ARRAY(res->ip_dst, 10781 entry.input.flow.ipv6_flow.dst_ip); 10782 IPV6_ADDR_TO_ARRAY(res->ip_src, 10783 entry.input.flow.ipv6_flow.src_ip); 10784 entry.input.flow.ipv6_flow.tc = res->tos_value; 10785 entry.input.flow.ipv6_flow.hop_limits = res->ttl_value; 10786 /* need convert to big endian. */ 10787 entry.input.flow.udp6_flow.dst_port = 10788 rte_cpu_to_be_16(res->port_dst); 10789 entry.input.flow.udp6_flow.src_port = 10790 rte_cpu_to_be_16(res->port_src); 10791 break; 10792 case RTE_ETH_FLOW_NONFRAG_IPV6_SCTP: 10793 IPV6_ADDR_TO_ARRAY(res->ip_dst, 10794 entry.input.flow.sctp6_flow.ip.dst_ip); 10795 IPV6_ADDR_TO_ARRAY(res->ip_src, 10796 entry.input.flow.sctp6_flow.ip.src_ip); 10797 entry.input.flow.ipv6_flow.tc = res->tos_value; 10798 entry.input.flow.ipv6_flow.hop_limits = res->ttl_value; 10799 /* need convert to big endian. */ 10800 entry.input.flow.sctp6_flow.dst_port = 10801 rte_cpu_to_be_16(res->port_dst); 10802 entry.input.flow.sctp6_flow.src_port = 10803 rte_cpu_to_be_16(res->port_src); 10804 entry.input.flow.sctp6_flow.verify_tag = 10805 rte_cpu_to_be_32(res->verify_tag_value); 10806 break; 10807 case RTE_ETH_FLOW_L2_PAYLOAD: 10808 entry.input.flow.l2_flow.ether_type = 10809 rte_cpu_to_be_16(res->ether_type); 10810 break; 10811 default: 10812 break; 10813 } 10814 10815 if (fdir_conf.mode == RTE_FDIR_MODE_PERFECT_MAC_VLAN) 10816 rte_memcpy(&entry.input.flow.mac_vlan_flow.mac_addr, 10817 &res->mac_addr, 10818 sizeof(struct ether_addr)); 10819 10820 if (fdir_conf.mode == RTE_FDIR_MODE_PERFECT_TUNNEL) { 10821 rte_memcpy(&entry.input.flow.tunnel_flow.mac_addr, 10822 &res->mac_addr, 10823 sizeof(struct ether_addr)); 10824 entry.input.flow.tunnel_flow.tunnel_type = 10825 str2fdir_tunneltype(res->tunnel_type); 10826 entry.input.flow.tunnel_flow.tunnel_id = 10827 rte_cpu_to_be_32(res->tunnel_id_value); 10828 } 10829 10830 rte_memcpy(entry.input.flow_ext.flexbytes, 10831 flexbytes, 10832 RTE_ETH_FDIR_MAX_FLEXLEN); 10833 10834 entry.input.flow_ext.vlan_tci = rte_cpu_to_be_16(res->vlan_value); 10835 10836 entry.action.flex_off = 0; /*use 0 by default */ 10837 if (!strcmp(res->drop, "drop")) 10838 entry.action.behavior = RTE_ETH_FDIR_REJECT; 10839 else 10840 entry.action.behavior = RTE_ETH_FDIR_ACCEPT; 10841 10842 if (fdir_conf.mode != RTE_FDIR_MODE_PERFECT_MAC_VLAN && 10843 fdir_conf.mode != RTE_FDIR_MODE_PERFECT_TUNNEL) { 10844 if (!strcmp(res->pf_vf, "pf")) 10845 entry.input.flow_ext.is_vf = 0; 10846 else if (!strncmp(res->pf_vf, "vf", 2)) { 10847 struct rte_eth_dev_info dev_info; 10848 10849 memset(&dev_info, 0, sizeof(dev_info)); 10850 rte_eth_dev_info_get(res->port_id, &dev_info); 10851 errno = 0; 10852 vf_id = strtoul(res->pf_vf + 2, &end, 10); 10853 if (errno != 0 || *end != '\0' || 10854 vf_id >= dev_info.max_vfs) { 10855 printf("invalid parameter %s.\n", res->pf_vf); 10856 return; 10857 } 10858 entry.input.flow_ext.is_vf = 1; 10859 entry.input.flow_ext.dst_id = (uint16_t)vf_id; 10860 } else { 10861 printf("invalid parameter %s.\n", res->pf_vf); 10862 return; 10863 } 10864 } 10865 10866 /* set to report FD ID by default */ 10867 entry.action.report_status = RTE_ETH_FDIR_REPORT_ID; 10868 entry.action.rx_queue = res->queue_id; 10869 entry.soft_id = res->fd_id_value; 10870 if (!strcmp(res->ops, "add")) 10871 ret = rte_eth_dev_filter_ctrl(res->port_id, RTE_ETH_FILTER_FDIR, 10872 RTE_ETH_FILTER_ADD, &entry); 10873 else if (!strcmp(res->ops, "del")) 10874 ret = rte_eth_dev_filter_ctrl(res->port_id, RTE_ETH_FILTER_FDIR, 10875 RTE_ETH_FILTER_DELETE, &entry); 10876 else 10877 ret = rte_eth_dev_filter_ctrl(res->port_id, RTE_ETH_FILTER_FDIR, 10878 RTE_ETH_FILTER_UPDATE, &entry); 10879 if (ret < 0) 10880 printf("flow director programming error: (%s)\n", 10881 strerror(-ret)); 10882 } 10883 10884 cmdline_parse_token_string_t cmd_flow_director_filter = 10885 TOKEN_STRING_INITIALIZER(struct cmd_flow_director_result, 10886 flow_director_filter, "flow_director_filter"); 10887 cmdline_parse_token_num_t cmd_flow_director_port_id = 10888 TOKEN_NUM_INITIALIZER(struct cmd_flow_director_result, 10889 port_id, UINT16); 10890 cmdline_parse_token_string_t cmd_flow_director_ops = 10891 TOKEN_STRING_INITIALIZER(struct cmd_flow_director_result, 10892 ops, "add#del#update"); 10893 cmdline_parse_token_string_t cmd_flow_director_flow = 10894 TOKEN_STRING_INITIALIZER(struct cmd_flow_director_result, 10895 flow, "flow"); 10896 cmdline_parse_token_string_t cmd_flow_director_flow_type = 10897 TOKEN_STRING_INITIALIZER(struct cmd_flow_director_result, 10898 flow_type, NULL); 10899 cmdline_parse_token_string_t cmd_flow_director_ether = 10900 TOKEN_STRING_INITIALIZER(struct cmd_flow_director_result, 10901 ether, "ether"); 10902 cmdline_parse_token_num_t cmd_flow_director_ether_type = 10903 TOKEN_NUM_INITIALIZER(struct cmd_flow_director_result, 10904 ether_type, UINT16); 10905 cmdline_parse_token_string_t cmd_flow_director_src = 10906 TOKEN_STRING_INITIALIZER(struct cmd_flow_director_result, 10907 src, "src"); 10908 cmdline_parse_token_ipaddr_t cmd_flow_director_ip_src = 10909 TOKEN_IPADDR_INITIALIZER(struct cmd_flow_director_result, 10910 ip_src); 10911 cmdline_parse_token_num_t cmd_flow_director_port_src = 10912 TOKEN_NUM_INITIALIZER(struct cmd_flow_director_result, 10913 port_src, UINT16); 10914 cmdline_parse_token_string_t cmd_flow_director_dst = 10915 TOKEN_STRING_INITIALIZER(struct cmd_flow_director_result, 10916 dst, "dst"); 10917 cmdline_parse_token_ipaddr_t cmd_flow_director_ip_dst = 10918 TOKEN_IPADDR_INITIALIZER(struct cmd_flow_director_result, 10919 ip_dst); 10920 cmdline_parse_token_num_t cmd_flow_director_port_dst = 10921 TOKEN_NUM_INITIALIZER(struct cmd_flow_director_result, 10922 port_dst, UINT16); 10923 cmdline_parse_token_string_t cmd_flow_director_verify_tag = 10924 TOKEN_STRING_INITIALIZER(struct cmd_flow_director_result, 10925 verify_tag, "verify_tag"); 10926 cmdline_parse_token_num_t cmd_flow_director_verify_tag_value = 10927 TOKEN_NUM_INITIALIZER(struct cmd_flow_director_result, 10928 verify_tag_value, UINT32); 10929 cmdline_parse_token_string_t cmd_flow_director_tos = 10930 TOKEN_STRING_INITIALIZER(struct cmd_flow_director_result, 10931 tos, "tos"); 10932 cmdline_parse_token_num_t cmd_flow_director_tos_value = 10933 TOKEN_NUM_INITIALIZER(struct cmd_flow_director_result, 10934 tos_value, UINT8); 10935 cmdline_parse_token_string_t cmd_flow_director_proto = 10936 TOKEN_STRING_INITIALIZER(struct cmd_flow_director_result, 10937 proto, "proto"); 10938 cmdline_parse_token_num_t cmd_flow_director_proto_value = 10939 TOKEN_NUM_INITIALIZER(struct cmd_flow_director_result, 10940 proto_value, UINT8); 10941 cmdline_parse_token_string_t cmd_flow_director_ttl = 10942 TOKEN_STRING_INITIALIZER(struct cmd_flow_director_result, 10943 ttl, "ttl"); 10944 cmdline_parse_token_num_t cmd_flow_director_ttl_value = 10945 TOKEN_NUM_INITIALIZER(struct cmd_flow_director_result, 10946 ttl_value, UINT8); 10947 cmdline_parse_token_string_t cmd_flow_director_vlan = 10948 TOKEN_STRING_INITIALIZER(struct cmd_flow_director_result, 10949 vlan, "vlan"); 10950 cmdline_parse_token_num_t cmd_flow_director_vlan_value = 10951 TOKEN_NUM_INITIALIZER(struct cmd_flow_director_result, 10952 vlan_value, UINT16); 10953 cmdline_parse_token_string_t cmd_flow_director_flexbytes = 10954 TOKEN_STRING_INITIALIZER(struct cmd_flow_director_result, 10955 flexbytes, "flexbytes"); 10956 cmdline_parse_token_string_t cmd_flow_director_flexbytes_value = 10957 TOKEN_STRING_INITIALIZER(struct cmd_flow_director_result, 10958 flexbytes_value, NULL); 10959 cmdline_parse_token_string_t cmd_flow_director_drop = 10960 TOKEN_STRING_INITIALIZER(struct cmd_flow_director_result, 10961 drop, "drop#fwd"); 10962 cmdline_parse_token_string_t cmd_flow_director_pf_vf = 10963 TOKEN_STRING_INITIALIZER(struct cmd_flow_director_result, 10964 pf_vf, NULL); 10965 cmdline_parse_token_string_t cmd_flow_director_queue = 10966 TOKEN_STRING_INITIALIZER(struct cmd_flow_director_result, 10967 queue, "queue"); 10968 cmdline_parse_token_num_t cmd_flow_director_queue_id = 10969 TOKEN_NUM_INITIALIZER(struct cmd_flow_director_result, 10970 queue_id, UINT16); 10971 cmdline_parse_token_string_t cmd_flow_director_fd_id = 10972 TOKEN_STRING_INITIALIZER(struct cmd_flow_director_result, 10973 fd_id, "fd_id"); 10974 cmdline_parse_token_num_t cmd_flow_director_fd_id_value = 10975 TOKEN_NUM_INITIALIZER(struct cmd_flow_director_result, 10976 fd_id_value, UINT32); 10977 10978 cmdline_parse_token_string_t cmd_flow_director_mode = 10979 TOKEN_STRING_INITIALIZER(struct cmd_flow_director_result, 10980 mode, "mode"); 10981 cmdline_parse_token_string_t cmd_flow_director_mode_ip = 10982 TOKEN_STRING_INITIALIZER(struct cmd_flow_director_result, 10983 mode_value, "IP"); 10984 cmdline_parse_token_string_t cmd_flow_director_mode_mac_vlan = 10985 TOKEN_STRING_INITIALIZER(struct cmd_flow_director_result, 10986 mode_value, "MAC-VLAN"); 10987 cmdline_parse_token_string_t cmd_flow_director_mode_tunnel = 10988 TOKEN_STRING_INITIALIZER(struct cmd_flow_director_result, 10989 mode_value, "Tunnel"); 10990 cmdline_parse_token_string_t cmd_flow_director_mode_raw = 10991 TOKEN_STRING_INITIALIZER(struct cmd_flow_director_result, 10992 mode_value, "raw"); 10993 cmdline_parse_token_string_t cmd_flow_director_mac = 10994 TOKEN_STRING_INITIALIZER(struct cmd_flow_director_result, 10995 mac, "mac"); 10996 cmdline_parse_token_etheraddr_t cmd_flow_director_mac_addr = 10997 TOKEN_ETHERADDR_INITIALIZER(struct cmd_flow_director_result, 10998 mac_addr); 10999 cmdline_parse_token_string_t cmd_flow_director_tunnel = 11000 TOKEN_STRING_INITIALIZER(struct cmd_flow_director_result, 11001 tunnel, "tunnel"); 11002 cmdline_parse_token_string_t cmd_flow_director_tunnel_type = 11003 TOKEN_STRING_INITIALIZER(struct cmd_flow_director_result, 11004 tunnel_type, "NVGRE#VxLAN"); 11005 cmdline_parse_token_string_t cmd_flow_director_tunnel_id = 11006 TOKEN_STRING_INITIALIZER(struct cmd_flow_director_result, 11007 tunnel_id, "tunnel-id"); 11008 cmdline_parse_token_num_t cmd_flow_director_tunnel_id_value = 11009 TOKEN_NUM_INITIALIZER(struct cmd_flow_director_result, 11010 tunnel_id_value, UINT32); 11011 cmdline_parse_token_string_t cmd_flow_director_packet = 11012 TOKEN_STRING_INITIALIZER(struct cmd_flow_director_result, 11013 packet, "packet"); 11014 cmdline_parse_token_string_t cmd_flow_director_filepath = 11015 TOKEN_STRING_INITIALIZER(struct cmd_flow_director_result, 11016 filepath, NULL); 11017 11018 cmdline_parse_inst_t cmd_add_del_ip_flow_director = { 11019 .f = cmd_flow_director_filter_parsed, 11020 .data = NULL, 11021 .help_str = "flow_director_filter <port_id> mode IP add|del|update flow" 11022 " ipv4-other|ipv4-frag|ipv4-tcp|ipv4-udp|ipv4-sctp|" 11023 "ipv6-other|ipv6-frag|ipv6-tcp|ipv6-udp|ipv6-sctp|" 11024 "l2_payload src <src_ip> dst <dst_ip> tos <tos_value> " 11025 "proto <proto_value> ttl <ttl_value> vlan <vlan_value> " 11026 "flexbytes <flexbyte_values> drop|fw <pf_vf> queue <queue_id> " 11027 "fd_id <fd_id_value>: " 11028 "Add or delete an ip flow director entry on NIC", 11029 .tokens = { 11030 (void *)&cmd_flow_director_filter, 11031 (void *)&cmd_flow_director_port_id, 11032 (void *)&cmd_flow_director_mode, 11033 (void *)&cmd_flow_director_mode_ip, 11034 (void *)&cmd_flow_director_ops, 11035 (void *)&cmd_flow_director_flow, 11036 (void *)&cmd_flow_director_flow_type, 11037 (void *)&cmd_flow_director_src, 11038 (void *)&cmd_flow_director_ip_src, 11039 (void *)&cmd_flow_director_dst, 11040 (void *)&cmd_flow_director_ip_dst, 11041 (void *)&cmd_flow_director_tos, 11042 (void *)&cmd_flow_director_tos_value, 11043 (void *)&cmd_flow_director_proto, 11044 (void *)&cmd_flow_director_proto_value, 11045 (void *)&cmd_flow_director_ttl, 11046 (void *)&cmd_flow_director_ttl_value, 11047 (void *)&cmd_flow_director_vlan, 11048 (void *)&cmd_flow_director_vlan_value, 11049 (void *)&cmd_flow_director_flexbytes, 11050 (void *)&cmd_flow_director_flexbytes_value, 11051 (void *)&cmd_flow_director_drop, 11052 (void *)&cmd_flow_director_pf_vf, 11053 (void *)&cmd_flow_director_queue, 11054 (void *)&cmd_flow_director_queue_id, 11055 (void *)&cmd_flow_director_fd_id, 11056 (void *)&cmd_flow_director_fd_id_value, 11057 NULL, 11058 }, 11059 }; 11060 11061 cmdline_parse_inst_t cmd_add_del_udp_flow_director = { 11062 .f = cmd_flow_director_filter_parsed, 11063 .data = NULL, 11064 .help_str = "flow_director_filter ... : Add or delete an udp/tcp flow " 11065 "director entry on NIC", 11066 .tokens = { 11067 (void *)&cmd_flow_director_filter, 11068 (void *)&cmd_flow_director_port_id, 11069 (void *)&cmd_flow_director_mode, 11070 (void *)&cmd_flow_director_mode_ip, 11071 (void *)&cmd_flow_director_ops, 11072 (void *)&cmd_flow_director_flow, 11073 (void *)&cmd_flow_director_flow_type, 11074 (void *)&cmd_flow_director_src, 11075 (void *)&cmd_flow_director_ip_src, 11076 (void *)&cmd_flow_director_port_src, 11077 (void *)&cmd_flow_director_dst, 11078 (void *)&cmd_flow_director_ip_dst, 11079 (void *)&cmd_flow_director_port_dst, 11080 (void *)&cmd_flow_director_tos, 11081 (void *)&cmd_flow_director_tos_value, 11082 (void *)&cmd_flow_director_ttl, 11083 (void *)&cmd_flow_director_ttl_value, 11084 (void *)&cmd_flow_director_vlan, 11085 (void *)&cmd_flow_director_vlan_value, 11086 (void *)&cmd_flow_director_flexbytes, 11087 (void *)&cmd_flow_director_flexbytes_value, 11088 (void *)&cmd_flow_director_drop, 11089 (void *)&cmd_flow_director_pf_vf, 11090 (void *)&cmd_flow_director_queue, 11091 (void *)&cmd_flow_director_queue_id, 11092 (void *)&cmd_flow_director_fd_id, 11093 (void *)&cmd_flow_director_fd_id_value, 11094 NULL, 11095 }, 11096 }; 11097 11098 cmdline_parse_inst_t cmd_add_del_sctp_flow_director = { 11099 .f = cmd_flow_director_filter_parsed, 11100 .data = NULL, 11101 .help_str = "flow_director_filter ... : Add or delete a sctp flow " 11102 "director entry on NIC", 11103 .tokens = { 11104 (void *)&cmd_flow_director_filter, 11105 (void *)&cmd_flow_director_port_id, 11106 (void *)&cmd_flow_director_mode, 11107 (void *)&cmd_flow_director_mode_ip, 11108 (void *)&cmd_flow_director_ops, 11109 (void *)&cmd_flow_director_flow, 11110 (void *)&cmd_flow_director_flow_type, 11111 (void *)&cmd_flow_director_src, 11112 (void *)&cmd_flow_director_ip_src, 11113 (void *)&cmd_flow_director_port_src, 11114 (void *)&cmd_flow_director_dst, 11115 (void *)&cmd_flow_director_ip_dst, 11116 (void *)&cmd_flow_director_port_dst, 11117 (void *)&cmd_flow_director_verify_tag, 11118 (void *)&cmd_flow_director_verify_tag_value, 11119 (void *)&cmd_flow_director_tos, 11120 (void *)&cmd_flow_director_tos_value, 11121 (void *)&cmd_flow_director_ttl, 11122 (void *)&cmd_flow_director_ttl_value, 11123 (void *)&cmd_flow_director_vlan, 11124 (void *)&cmd_flow_director_vlan_value, 11125 (void *)&cmd_flow_director_flexbytes, 11126 (void *)&cmd_flow_director_flexbytes_value, 11127 (void *)&cmd_flow_director_drop, 11128 (void *)&cmd_flow_director_pf_vf, 11129 (void *)&cmd_flow_director_queue, 11130 (void *)&cmd_flow_director_queue_id, 11131 (void *)&cmd_flow_director_fd_id, 11132 (void *)&cmd_flow_director_fd_id_value, 11133 NULL, 11134 }, 11135 }; 11136 11137 cmdline_parse_inst_t cmd_add_del_l2_flow_director = { 11138 .f = cmd_flow_director_filter_parsed, 11139 .data = NULL, 11140 .help_str = "flow_director_filter ... : Add or delete a L2 flow " 11141 "director entry on NIC", 11142 .tokens = { 11143 (void *)&cmd_flow_director_filter, 11144 (void *)&cmd_flow_director_port_id, 11145 (void *)&cmd_flow_director_mode, 11146 (void *)&cmd_flow_director_mode_ip, 11147 (void *)&cmd_flow_director_ops, 11148 (void *)&cmd_flow_director_flow, 11149 (void *)&cmd_flow_director_flow_type, 11150 (void *)&cmd_flow_director_ether, 11151 (void *)&cmd_flow_director_ether_type, 11152 (void *)&cmd_flow_director_flexbytes, 11153 (void *)&cmd_flow_director_flexbytes_value, 11154 (void *)&cmd_flow_director_drop, 11155 (void *)&cmd_flow_director_pf_vf, 11156 (void *)&cmd_flow_director_queue, 11157 (void *)&cmd_flow_director_queue_id, 11158 (void *)&cmd_flow_director_fd_id, 11159 (void *)&cmd_flow_director_fd_id_value, 11160 NULL, 11161 }, 11162 }; 11163 11164 cmdline_parse_inst_t cmd_add_del_mac_vlan_flow_director = { 11165 .f = cmd_flow_director_filter_parsed, 11166 .data = NULL, 11167 .help_str = "flow_director_filter ... : Add or delete a MAC VLAN flow " 11168 "director entry on NIC", 11169 .tokens = { 11170 (void *)&cmd_flow_director_filter, 11171 (void *)&cmd_flow_director_port_id, 11172 (void *)&cmd_flow_director_mode, 11173 (void *)&cmd_flow_director_mode_mac_vlan, 11174 (void *)&cmd_flow_director_ops, 11175 (void *)&cmd_flow_director_mac, 11176 (void *)&cmd_flow_director_mac_addr, 11177 (void *)&cmd_flow_director_vlan, 11178 (void *)&cmd_flow_director_vlan_value, 11179 (void *)&cmd_flow_director_flexbytes, 11180 (void *)&cmd_flow_director_flexbytes_value, 11181 (void *)&cmd_flow_director_drop, 11182 (void *)&cmd_flow_director_queue, 11183 (void *)&cmd_flow_director_queue_id, 11184 (void *)&cmd_flow_director_fd_id, 11185 (void *)&cmd_flow_director_fd_id_value, 11186 NULL, 11187 }, 11188 }; 11189 11190 cmdline_parse_inst_t cmd_add_del_tunnel_flow_director = { 11191 .f = cmd_flow_director_filter_parsed, 11192 .data = NULL, 11193 .help_str = "flow_director_filter ... : Add or delete a tunnel flow " 11194 "director entry on NIC", 11195 .tokens = { 11196 (void *)&cmd_flow_director_filter, 11197 (void *)&cmd_flow_director_port_id, 11198 (void *)&cmd_flow_director_mode, 11199 (void *)&cmd_flow_director_mode_tunnel, 11200 (void *)&cmd_flow_director_ops, 11201 (void *)&cmd_flow_director_mac, 11202 (void *)&cmd_flow_director_mac_addr, 11203 (void *)&cmd_flow_director_vlan, 11204 (void *)&cmd_flow_director_vlan_value, 11205 (void *)&cmd_flow_director_tunnel, 11206 (void *)&cmd_flow_director_tunnel_type, 11207 (void *)&cmd_flow_director_tunnel_id, 11208 (void *)&cmd_flow_director_tunnel_id_value, 11209 (void *)&cmd_flow_director_flexbytes, 11210 (void *)&cmd_flow_director_flexbytes_value, 11211 (void *)&cmd_flow_director_drop, 11212 (void *)&cmd_flow_director_queue, 11213 (void *)&cmd_flow_director_queue_id, 11214 (void *)&cmd_flow_director_fd_id, 11215 (void *)&cmd_flow_director_fd_id_value, 11216 NULL, 11217 }, 11218 }; 11219 11220 cmdline_parse_inst_t cmd_add_del_raw_flow_director = { 11221 .f = cmd_flow_director_filter_parsed, 11222 .data = NULL, 11223 .help_str = "flow_director_filter ... : Add or delete a raw flow " 11224 "director entry on NIC", 11225 .tokens = { 11226 (void *)&cmd_flow_director_filter, 11227 (void *)&cmd_flow_director_port_id, 11228 (void *)&cmd_flow_director_mode, 11229 (void *)&cmd_flow_director_mode_raw, 11230 (void *)&cmd_flow_director_ops, 11231 (void *)&cmd_flow_director_flow, 11232 (void *)&cmd_flow_director_flow_type, 11233 (void *)&cmd_flow_director_drop, 11234 (void *)&cmd_flow_director_queue, 11235 (void *)&cmd_flow_director_queue_id, 11236 (void *)&cmd_flow_director_fd_id, 11237 (void *)&cmd_flow_director_fd_id_value, 11238 (void *)&cmd_flow_director_packet, 11239 (void *)&cmd_flow_director_filepath, 11240 NULL, 11241 }, 11242 }; 11243 11244 struct cmd_flush_flow_director_result { 11245 cmdline_fixed_string_t flush_flow_director; 11246 portid_t port_id; 11247 }; 11248 11249 cmdline_parse_token_string_t cmd_flush_flow_director_flush = 11250 TOKEN_STRING_INITIALIZER(struct cmd_flush_flow_director_result, 11251 flush_flow_director, "flush_flow_director"); 11252 cmdline_parse_token_num_t cmd_flush_flow_director_port_id = 11253 TOKEN_NUM_INITIALIZER(struct cmd_flush_flow_director_result, 11254 port_id, UINT16); 11255 11256 static void 11257 cmd_flush_flow_director_parsed(void *parsed_result, 11258 __attribute__((unused)) struct cmdline *cl, 11259 __attribute__((unused)) void *data) 11260 { 11261 struct cmd_flow_director_result *res = parsed_result; 11262 int ret = 0; 11263 11264 ret = rte_eth_dev_filter_supported(res->port_id, RTE_ETH_FILTER_FDIR); 11265 if (ret < 0) { 11266 printf("flow director is not supported on port %u.\n", 11267 res->port_id); 11268 return; 11269 } 11270 11271 ret = rte_eth_dev_filter_ctrl(res->port_id, RTE_ETH_FILTER_FDIR, 11272 RTE_ETH_FILTER_FLUSH, NULL); 11273 if (ret < 0) 11274 printf("flow director table flushing error: (%s)\n", 11275 strerror(-ret)); 11276 } 11277 11278 cmdline_parse_inst_t cmd_flush_flow_director = { 11279 .f = cmd_flush_flow_director_parsed, 11280 .data = NULL, 11281 .help_str = "flush_flow_director <port_id>: " 11282 "Flush all flow director entries of a device on NIC", 11283 .tokens = { 11284 (void *)&cmd_flush_flow_director_flush, 11285 (void *)&cmd_flush_flow_director_port_id, 11286 NULL, 11287 }, 11288 }; 11289 11290 /* *** deal with flow director mask *** */ 11291 struct cmd_flow_director_mask_result { 11292 cmdline_fixed_string_t flow_director_mask; 11293 portid_t port_id; 11294 cmdline_fixed_string_t mode; 11295 cmdline_fixed_string_t mode_value; 11296 cmdline_fixed_string_t vlan; 11297 uint16_t vlan_mask; 11298 cmdline_fixed_string_t src_mask; 11299 cmdline_ipaddr_t ipv4_src; 11300 cmdline_ipaddr_t ipv6_src; 11301 uint16_t port_src; 11302 cmdline_fixed_string_t dst_mask; 11303 cmdline_ipaddr_t ipv4_dst; 11304 cmdline_ipaddr_t ipv6_dst; 11305 uint16_t port_dst; 11306 cmdline_fixed_string_t mac; 11307 uint8_t mac_addr_byte_mask; 11308 cmdline_fixed_string_t tunnel_id; 11309 uint32_t tunnel_id_mask; 11310 cmdline_fixed_string_t tunnel_type; 11311 uint8_t tunnel_type_mask; 11312 }; 11313 11314 static void 11315 cmd_flow_director_mask_parsed(void *parsed_result, 11316 __attribute__((unused)) struct cmdline *cl, 11317 __attribute__((unused)) void *data) 11318 { 11319 struct cmd_flow_director_mask_result *res = parsed_result; 11320 struct rte_eth_fdir_masks *mask; 11321 struct rte_port *port; 11322 11323 port = &ports[res->port_id]; 11324 /** Check if the port is not started **/ 11325 if (port->port_status != RTE_PORT_STOPPED) { 11326 printf("Please stop port %d first\n", res->port_id); 11327 return; 11328 } 11329 11330 mask = &port->dev_conf.fdir_conf.mask; 11331 11332 if (fdir_conf.mode == RTE_FDIR_MODE_PERFECT_MAC_VLAN) { 11333 if (strcmp(res->mode_value, "MAC-VLAN")) { 11334 printf("Please set mode to MAC-VLAN.\n"); 11335 return; 11336 } 11337 11338 mask->vlan_tci_mask = rte_cpu_to_be_16(res->vlan_mask); 11339 } else if (fdir_conf.mode == RTE_FDIR_MODE_PERFECT_TUNNEL) { 11340 if (strcmp(res->mode_value, "Tunnel")) { 11341 printf("Please set mode to Tunnel.\n"); 11342 return; 11343 } 11344 11345 mask->vlan_tci_mask = rte_cpu_to_be_16(res->vlan_mask); 11346 mask->mac_addr_byte_mask = res->mac_addr_byte_mask; 11347 mask->tunnel_id_mask = rte_cpu_to_be_32(res->tunnel_id_mask); 11348 mask->tunnel_type_mask = res->tunnel_type_mask; 11349 } else { 11350 if (strcmp(res->mode_value, "IP")) { 11351 printf("Please set mode to IP.\n"); 11352 return; 11353 } 11354 11355 mask->vlan_tci_mask = rte_cpu_to_be_16(res->vlan_mask); 11356 IPV4_ADDR_TO_UINT(res->ipv4_src, mask->ipv4_mask.src_ip); 11357 IPV4_ADDR_TO_UINT(res->ipv4_dst, mask->ipv4_mask.dst_ip); 11358 IPV6_ADDR_TO_ARRAY(res->ipv6_src, mask->ipv6_mask.src_ip); 11359 IPV6_ADDR_TO_ARRAY(res->ipv6_dst, mask->ipv6_mask.dst_ip); 11360 mask->src_port_mask = rte_cpu_to_be_16(res->port_src); 11361 mask->dst_port_mask = rte_cpu_to_be_16(res->port_dst); 11362 } 11363 11364 cmd_reconfig_device_queue(res->port_id, 1, 1); 11365 } 11366 11367 cmdline_parse_token_string_t cmd_flow_director_mask = 11368 TOKEN_STRING_INITIALIZER(struct cmd_flow_director_mask_result, 11369 flow_director_mask, "flow_director_mask"); 11370 cmdline_parse_token_num_t cmd_flow_director_mask_port_id = 11371 TOKEN_NUM_INITIALIZER(struct cmd_flow_director_mask_result, 11372 port_id, UINT16); 11373 cmdline_parse_token_string_t cmd_flow_director_mask_vlan = 11374 TOKEN_STRING_INITIALIZER(struct cmd_flow_director_mask_result, 11375 vlan, "vlan"); 11376 cmdline_parse_token_num_t cmd_flow_director_mask_vlan_value = 11377 TOKEN_NUM_INITIALIZER(struct cmd_flow_director_mask_result, 11378 vlan_mask, UINT16); 11379 cmdline_parse_token_string_t cmd_flow_director_mask_src = 11380 TOKEN_STRING_INITIALIZER(struct cmd_flow_director_mask_result, 11381 src_mask, "src_mask"); 11382 cmdline_parse_token_ipaddr_t cmd_flow_director_mask_ipv4_src = 11383 TOKEN_IPADDR_INITIALIZER(struct cmd_flow_director_mask_result, 11384 ipv4_src); 11385 cmdline_parse_token_ipaddr_t cmd_flow_director_mask_ipv6_src = 11386 TOKEN_IPADDR_INITIALIZER(struct cmd_flow_director_mask_result, 11387 ipv6_src); 11388 cmdline_parse_token_num_t cmd_flow_director_mask_port_src = 11389 TOKEN_NUM_INITIALIZER(struct cmd_flow_director_mask_result, 11390 port_src, UINT16); 11391 cmdline_parse_token_string_t cmd_flow_director_mask_dst = 11392 TOKEN_STRING_INITIALIZER(struct cmd_flow_director_mask_result, 11393 dst_mask, "dst_mask"); 11394 cmdline_parse_token_ipaddr_t cmd_flow_director_mask_ipv4_dst = 11395 TOKEN_IPADDR_INITIALIZER(struct cmd_flow_director_mask_result, 11396 ipv4_dst); 11397 cmdline_parse_token_ipaddr_t cmd_flow_director_mask_ipv6_dst = 11398 TOKEN_IPADDR_INITIALIZER(struct cmd_flow_director_mask_result, 11399 ipv6_dst); 11400 cmdline_parse_token_num_t cmd_flow_director_mask_port_dst = 11401 TOKEN_NUM_INITIALIZER(struct cmd_flow_director_mask_result, 11402 port_dst, UINT16); 11403 11404 cmdline_parse_token_string_t cmd_flow_director_mask_mode = 11405 TOKEN_STRING_INITIALIZER(struct cmd_flow_director_mask_result, 11406 mode, "mode"); 11407 cmdline_parse_token_string_t cmd_flow_director_mask_mode_ip = 11408 TOKEN_STRING_INITIALIZER(struct cmd_flow_director_mask_result, 11409 mode_value, "IP"); 11410 cmdline_parse_token_string_t cmd_flow_director_mask_mode_mac_vlan = 11411 TOKEN_STRING_INITIALIZER(struct cmd_flow_director_mask_result, 11412 mode_value, "MAC-VLAN"); 11413 cmdline_parse_token_string_t cmd_flow_director_mask_mode_tunnel = 11414 TOKEN_STRING_INITIALIZER(struct cmd_flow_director_mask_result, 11415 mode_value, "Tunnel"); 11416 cmdline_parse_token_string_t cmd_flow_director_mask_mac = 11417 TOKEN_STRING_INITIALIZER(struct cmd_flow_director_mask_result, 11418 mac, "mac"); 11419 cmdline_parse_token_num_t cmd_flow_director_mask_mac_value = 11420 TOKEN_NUM_INITIALIZER(struct cmd_flow_director_mask_result, 11421 mac_addr_byte_mask, UINT8); 11422 cmdline_parse_token_string_t cmd_flow_director_mask_tunnel_type = 11423 TOKEN_STRING_INITIALIZER(struct cmd_flow_director_mask_result, 11424 tunnel_type, "tunnel-type"); 11425 cmdline_parse_token_num_t cmd_flow_director_mask_tunnel_type_value = 11426 TOKEN_NUM_INITIALIZER(struct cmd_flow_director_mask_result, 11427 tunnel_type_mask, UINT8); 11428 cmdline_parse_token_string_t cmd_flow_director_mask_tunnel_id = 11429 TOKEN_STRING_INITIALIZER(struct cmd_flow_director_mask_result, 11430 tunnel_id, "tunnel-id"); 11431 cmdline_parse_token_num_t cmd_flow_director_mask_tunnel_id_value = 11432 TOKEN_NUM_INITIALIZER(struct cmd_flow_director_mask_result, 11433 tunnel_id_mask, UINT32); 11434 11435 cmdline_parse_inst_t cmd_set_flow_director_ip_mask = { 11436 .f = cmd_flow_director_mask_parsed, 11437 .data = NULL, 11438 .help_str = "flow_director_mask ... : " 11439 "Set IP mode flow director's mask on NIC", 11440 .tokens = { 11441 (void *)&cmd_flow_director_mask, 11442 (void *)&cmd_flow_director_mask_port_id, 11443 (void *)&cmd_flow_director_mask_mode, 11444 (void *)&cmd_flow_director_mask_mode_ip, 11445 (void *)&cmd_flow_director_mask_vlan, 11446 (void *)&cmd_flow_director_mask_vlan_value, 11447 (void *)&cmd_flow_director_mask_src, 11448 (void *)&cmd_flow_director_mask_ipv4_src, 11449 (void *)&cmd_flow_director_mask_ipv6_src, 11450 (void *)&cmd_flow_director_mask_port_src, 11451 (void *)&cmd_flow_director_mask_dst, 11452 (void *)&cmd_flow_director_mask_ipv4_dst, 11453 (void *)&cmd_flow_director_mask_ipv6_dst, 11454 (void *)&cmd_flow_director_mask_port_dst, 11455 NULL, 11456 }, 11457 }; 11458 11459 cmdline_parse_inst_t cmd_set_flow_director_mac_vlan_mask = { 11460 .f = cmd_flow_director_mask_parsed, 11461 .data = NULL, 11462 .help_str = "flow_director_mask ... : Set MAC VLAN mode " 11463 "flow director's mask on NIC", 11464 .tokens = { 11465 (void *)&cmd_flow_director_mask, 11466 (void *)&cmd_flow_director_mask_port_id, 11467 (void *)&cmd_flow_director_mask_mode, 11468 (void *)&cmd_flow_director_mask_mode_mac_vlan, 11469 (void *)&cmd_flow_director_mask_vlan, 11470 (void *)&cmd_flow_director_mask_vlan_value, 11471 NULL, 11472 }, 11473 }; 11474 11475 cmdline_parse_inst_t cmd_set_flow_director_tunnel_mask = { 11476 .f = cmd_flow_director_mask_parsed, 11477 .data = NULL, 11478 .help_str = "flow_director_mask ... : Set tunnel mode " 11479 "flow director's mask on NIC", 11480 .tokens = { 11481 (void *)&cmd_flow_director_mask, 11482 (void *)&cmd_flow_director_mask_port_id, 11483 (void *)&cmd_flow_director_mask_mode, 11484 (void *)&cmd_flow_director_mask_mode_tunnel, 11485 (void *)&cmd_flow_director_mask_vlan, 11486 (void *)&cmd_flow_director_mask_vlan_value, 11487 (void *)&cmd_flow_director_mask_mac, 11488 (void *)&cmd_flow_director_mask_mac_value, 11489 (void *)&cmd_flow_director_mask_tunnel_type, 11490 (void *)&cmd_flow_director_mask_tunnel_type_value, 11491 (void *)&cmd_flow_director_mask_tunnel_id, 11492 (void *)&cmd_flow_director_mask_tunnel_id_value, 11493 NULL, 11494 }, 11495 }; 11496 11497 /* *** deal with flow director mask on flexible payload *** */ 11498 struct cmd_flow_director_flex_mask_result { 11499 cmdline_fixed_string_t flow_director_flexmask; 11500 portid_t port_id; 11501 cmdline_fixed_string_t flow; 11502 cmdline_fixed_string_t flow_type; 11503 cmdline_fixed_string_t mask; 11504 }; 11505 11506 static void 11507 cmd_flow_director_flex_mask_parsed(void *parsed_result, 11508 __attribute__((unused)) struct cmdline *cl, 11509 __attribute__((unused)) void *data) 11510 { 11511 struct cmd_flow_director_flex_mask_result *res = parsed_result; 11512 struct rte_eth_fdir_info fdir_info; 11513 struct rte_eth_fdir_flex_mask flex_mask; 11514 struct rte_port *port; 11515 uint64_t flow_type_mask; 11516 uint16_t i; 11517 int ret; 11518 11519 port = &ports[res->port_id]; 11520 /** Check if the port is not started **/ 11521 if (port->port_status != RTE_PORT_STOPPED) { 11522 printf("Please stop port %d first\n", res->port_id); 11523 return; 11524 } 11525 11526 memset(&flex_mask, 0, sizeof(struct rte_eth_fdir_flex_mask)); 11527 ret = parse_flexbytes(res->mask, 11528 flex_mask.mask, 11529 RTE_ETH_FDIR_MAX_FLEXLEN); 11530 if (ret < 0) { 11531 printf("error: Cannot parse mask input.\n"); 11532 return; 11533 } 11534 11535 memset(&fdir_info, 0, sizeof(fdir_info)); 11536 ret = rte_eth_dev_filter_ctrl(res->port_id, RTE_ETH_FILTER_FDIR, 11537 RTE_ETH_FILTER_INFO, &fdir_info); 11538 if (ret < 0) { 11539 printf("Cannot get FDir filter info\n"); 11540 return; 11541 } 11542 11543 if (!strcmp(res->flow_type, "none")) { 11544 /* means don't specify the flow type */ 11545 flex_mask.flow_type = RTE_ETH_FLOW_UNKNOWN; 11546 for (i = 0; i < RTE_ETH_FLOW_MAX; i++) 11547 memset(&port->dev_conf.fdir_conf.flex_conf.flex_mask[i], 11548 0, sizeof(struct rte_eth_fdir_flex_mask)); 11549 port->dev_conf.fdir_conf.flex_conf.nb_flexmasks = 1; 11550 rte_memcpy(&port->dev_conf.fdir_conf.flex_conf.flex_mask[0], 11551 &flex_mask, 11552 sizeof(struct rte_eth_fdir_flex_mask)); 11553 cmd_reconfig_device_queue(res->port_id, 1, 1); 11554 return; 11555 } 11556 flow_type_mask = fdir_info.flow_types_mask[0]; 11557 if (!strcmp(res->flow_type, "all")) { 11558 if (!flow_type_mask) { 11559 printf("No flow type supported\n"); 11560 return; 11561 } 11562 for (i = RTE_ETH_FLOW_UNKNOWN; i < RTE_ETH_FLOW_MAX; i++) { 11563 if (flow_type_mask & (1ULL << i)) { 11564 flex_mask.flow_type = i; 11565 fdir_set_flex_mask(res->port_id, &flex_mask); 11566 } 11567 } 11568 cmd_reconfig_device_queue(res->port_id, 1, 1); 11569 return; 11570 } 11571 flex_mask.flow_type = str2flowtype(res->flow_type); 11572 if (!(flow_type_mask & (1ULL << flex_mask.flow_type))) { 11573 printf("Flow type %s not supported on port %d\n", 11574 res->flow_type, res->port_id); 11575 return; 11576 } 11577 fdir_set_flex_mask(res->port_id, &flex_mask); 11578 cmd_reconfig_device_queue(res->port_id, 1, 1); 11579 } 11580 11581 cmdline_parse_token_string_t cmd_flow_director_flexmask = 11582 TOKEN_STRING_INITIALIZER(struct cmd_flow_director_flex_mask_result, 11583 flow_director_flexmask, 11584 "flow_director_flex_mask"); 11585 cmdline_parse_token_num_t cmd_flow_director_flexmask_port_id = 11586 TOKEN_NUM_INITIALIZER(struct cmd_flow_director_flex_mask_result, 11587 port_id, UINT16); 11588 cmdline_parse_token_string_t cmd_flow_director_flexmask_flow = 11589 TOKEN_STRING_INITIALIZER(struct cmd_flow_director_flex_mask_result, 11590 flow, "flow"); 11591 cmdline_parse_token_string_t cmd_flow_director_flexmask_flow_type = 11592 TOKEN_STRING_INITIALIZER(struct cmd_flow_director_flex_mask_result, 11593 flow_type, "none#ipv4-other#ipv4-frag#ipv4-tcp#ipv4-udp#ipv4-sctp#" 11594 "ipv6-other#ipv6-frag#ipv6-tcp#ipv6-udp#ipv6-sctp#l2_payload#all"); 11595 cmdline_parse_token_string_t cmd_flow_director_flexmask_mask = 11596 TOKEN_STRING_INITIALIZER(struct cmd_flow_director_flex_mask_result, 11597 mask, NULL); 11598 11599 cmdline_parse_inst_t cmd_set_flow_director_flex_mask = { 11600 .f = cmd_flow_director_flex_mask_parsed, 11601 .data = NULL, 11602 .help_str = "flow_director_flex_mask ... : " 11603 "Set flow director's flex mask on NIC", 11604 .tokens = { 11605 (void *)&cmd_flow_director_flexmask, 11606 (void *)&cmd_flow_director_flexmask_port_id, 11607 (void *)&cmd_flow_director_flexmask_flow, 11608 (void *)&cmd_flow_director_flexmask_flow_type, 11609 (void *)&cmd_flow_director_flexmask_mask, 11610 NULL, 11611 }, 11612 }; 11613 11614 /* *** deal with flow director flexible payload configuration *** */ 11615 struct cmd_flow_director_flexpayload_result { 11616 cmdline_fixed_string_t flow_director_flexpayload; 11617 portid_t port_id; 11618 cmdline_fixed_string_t payload_layer; 11619 cmdline_fixed_string_t payload_cfg; 11620 }; 11621 11622 static inline int 11623 parse_offsets(const char *q_arg, uint16_t *offsets, uint16_t max_num) 11624 { 11625 char s[256]; 11626 const char *p, *p0 = q_arg; 11627 char *end; 11628 unsigned long int_fld; 11629 char *str_fld[max_num]; 11630 int i; 11631 unsigned size; 11632 int ret = -1; 11633 11634 p = strchr(p0, '('); 11635 if (p == NULL) 11636 return -1; 11637 ++p; 11638 p0 = strchr(p, ')'); 11639 if (p0 == NULL) 11640 return -1; 11641 11642 size = p0 - p; 11643 if (size >= sizeof(s)) 11644 return -1; 11645 11646 snprintf(s, sizeof(s), "%.*s", size, p); 11647 ret = rte_strsplit(s, sizeof(s), str_fld, max_num, ','); 11648 if (ret < 0 || ret > max_num) 11649 return -1; 11650 for (i = 0; i < ret; i++) { 11651 errno = 0; 11652 int_fld = strtoul(str_fld[i], &end, 0); 11653 if (errno != 0 || *end != '\0' || int_fld > UINT16_MAX) 11654 return -1; 11655 offsets[i] = (uint16_t)int_fld; 11656 } 11657 return ret; 11658 } 11659 11660 static void 11661 cmd_flow_director_flxpld_parsed(void *parsed_result, 11662 __attribute__((unused)) struct cmdline *cl, 11663 __attribute__((unused)) void *data) 11664 { 11665 struct cmd_flow_director_flexpayload_result *res = parsed_result; 11666 struct rte_eth_flex_payload_cfg flex_cfg; 11667 struct rte_port *port; 11668 int ret = 0; 11669 11670 port = &ports[res->port_id]; 11671 /** Check if the port is not started **/ 11672 if (port->port_status != RTE_PORT_STOPPED) { 11673 printf("Please stop port %d first\n", res->port_id); 11674 return; 11675 } 11676 11677 memset(&flex_cfg, 0, sizeof(struct rte_eth_flex_payload_cfg)); 11678 11679 if (!strcmp(res->payload_layer, "raw")) 11680 flex_cfg.type = RTE_ETH_RAW_PAYLOAD; 11681 else if (!strcmp(res->payload_layer, "l2")) 11682 flex_cfg.type = RTE_ETH_L2_PAYLOAD; 11683 else if (!strcmp(res->payload_layer, "l3")) 11684 flex_cfg.type = RTE_ETH_L3_PAYLOAD; 11685 else if (!strcmp(res->payload_layer, "l4")) 11686 flex_cfg.type = RTE_ETH_L4_PAYLOAD; 11687 11688 ret = parse_offsets(res->payload_cfg, flex_cfg.src_offset, 11689 RTE_ETH_FDIR_MAX_FLEXLEN); 11690 if (ret < 0) { 11691 printf("error: Cannot parse flex payload input.\n"); 11692 return; 11693 } 11694 11695 fdir_set_flex_payload(res->port_id, &flex_cfg); 11696 cmd_reconfig_device_queue(res->port_id, 1, 1); 11697 } 11698 11699 cmdline_parse_token_string_t cmd_flow_director_flexpayload = 11700 TOKEN_STRING_INITIALIZER(struct cmd_flow_director_flexpayload_result, 11701 flow_director_flexpayload, 11702 "flow_director_flex_payload"); 11703 cmdline_parse_token_num_t cmd_flow_director_flexpayload_port_id = 11704 TOKEN_NUM_INITIALIZER(struct cmd_flow_director_flexpayload_result, 11705 port_id, UINT16); 11706 cmdline_parse_token_string_t cmd_flow_director_flexpayload_payload_layer = 11707 TOKEN_STRING_INITIALIZER(struct cmd_flow_director_flexpayload_result, 11708 payload_layer, "raw#l2#l3#l4"); 11709 cmdline_parse_token_string_t cmd_flow_director_flexpayload_payload_cfg = 11710 TOKEN_STRING_INITIALIZER(struct cmd_flow_director_flexpayload_result, 11711 payload_cfg, NULL); 11712 11713 cmdline_parse_inst_t cmd_set_flow_director_flex_payload = { 11714 .f = cmd_flow_director_flxpld_parsed, 11715 .data = NULL, 11716 .help_str = "flow_director_flexpayload ... : " 11717 "Set flow director's flex payload on NIC", 11718 .tokens = { 11719 (void *)&cmd_flow_director_flexpayload, 11720 (void *)&cmd_flow_director_flexpayload_port_id, 11721 (void *)&cmd_flow_director_flexpayload_payload_layer, 11722 (void *)&cmd_flow_director_flexpayload_payload_cfg, 11723 NULL, 11724 }, 11725 }; 11726 11727 /* Generic flow interface command. */ 11728 extern cmdline_parse_inst_t cmd_flow; 11729 11730 /* *** Classification Filters Control *** */ 11731 /* *** Get symmetric hash enable per port *** */ 11732 struct cmd_get_sym_hash_ena_per_port_result { 11733 cmdline_fixed_string_t get_sym_hash_ena_per_port; 11734 portid_t port_id; 11735 }; 11736 11737 static void 11738 cmd_get_sym_hash_per_port_parsed(void *parsed_result, 11739 __rte_unused struct cmdline *cl, 11740 __rte_unused void *data) 11741 { 11742 struct cmd_get_sym_hash_ena_per_port_result *res = parsed_result; 11743 struct rte_eth_hash_filter_info info; 11744 int ret; 11745 11746 if (rte_eth_dev_filter_supported(res->port_id, 11747 RTE_ETH_FILTER_HASH) < 0) { 11748 printf("RTE_ETH_FILTER_HASH not supported on port: %d\n", 11749 res->port_id); 11750 return; 11751 } 11752 11753 memset(&info, 0, sizeof(info)); 11754 info.info_type = RTE_ETH_HASH_FILTER_SYM_HASH_ENA_PER_PORT; 11755 ret = rte_eth_dev_filter_ctrl(res->port_id, RTE_ETH_FILTER_HASH, 11756 RTE_ETH_FILTER_GET, &info); 11757 11758 if (ret < 0) { 11759 printf("Cannot get symmetric hash enable per port " 11760 "on port %u\n", res->port_id); 11761 return; 11762 } 11763 11764 printf("Symmetric hash is %s on port %u\n", info.info.enable ? 11765 "enabled" : "disabled", res->port_id); 11766 } 11767 11768 cmdline_parse_token_string_t cmd_get_sym_hash_ena_per_port_all = 11769 TOKEN_STRING_INITIALIZER(struct cmd_get_sym_hash_ena_per_port_result, 11770 get_sym_hash_ena_per_port, "get_sym_hash_ena_per_port"); 11771 cmdline_parse_token_num_t cmd_get_sym_hash_ena_per_port_port_id = 11772 TOKEN_NUM_INITIALIZER(struct cmd_get_sym_hash_ena_per_port_result, 11773 port_id, UINT16); 11774 11775 cmdline_parse_inst_t cmd_get_sym_hash_ena_per_port = { 11776 .f = cmd_get_sym_hash_per_port_parsed, 11777 .data = NULL, 11778 .help_str = "get_sym_hash_ena_per_port <port_id>", 11779 .tokens = { 11780 (void *)&cmd_get_sym_hash_ena_per_port_all, 11781 (void *)&cmd_get_sym_hash_ena_per_port_port_id, 11782 NULL, 11783 }, 11784 }; 11785 11786 /* *** Set symmetric hash enable per port *** */ 11787 struct cmd_set_sym_hash_ena_per_port_result { 11788 cmdline_fixed_string_t set_sym_hash_ena_per_port; 11789 cmdline_fixed_string_t enable; 11790 portid_t port_id; 11791 }; 11792 11793 static void 11794 cmd_set_sym_hash_per_port_parsed(void *parsed_result, 11795 __rte_unused struct cmdline *cl, 11796 __rte_unused void *data) 11797 { 11798 struct cmd_set_sym_hash_ena_per_port_result *res = parsed_result; 11799 struct rte_eth_hash_filter_info info; 11800 int ret; 11801 11802 if (rte_eth_dev_filter_supported(res->port_id, 11803 RTE_ETH_FILTER_HASH) < 0) { 11804 printf("RTE_ETH_FILTER_HASH not supported on port: %d\n", 11805 res->port_id); 11806 return; 11807 } 11808 11809 memset(&info, 0, sizeof(info)); 11810 info.info_type = RTE_ETH_HASH_FILTER_SYM_HASH_ENA_PER_PORT; 11811 if (!strcmp(res->enable, "enable")) 11812 info.info.enable = 1; 11813 ret = rte_eth_dev_filter_ctrl(res->port_id, RTE_ETH_FILTER_HASH, 11814 RTE_ETH_FILTER_SET, &info); 11815 if (ret < 0) { 11816 printf("Cannot set symmetric hash enable per port on " 11817 "port %u\n", res->port_id); 11818 return; 11819 } 11820 printf("Symmetric hash has been set to %s on port %u\n", 11821 res->enable, res->port_id); 11822 } 11823 11824 cmdline_parse_token_string_t cmd_set_sym_hash_ena_per_port_all = 11825 TOKEN_STRING_INITIALIZER(struct cmd_set_sym_hash_ena_per_port_result, 11826 set_sym_hash_ena_per_port, "set_sym_hash_ena_per_port"); 11827 cmdline_parse_token_num_t cmd_set_sym_hash_ena_per_port_port_id = 11828 TOKEN_NUM_INITIALIZER(struct cmd_set_sym_hash_ena_per_port_result, 11829 port_id, UINT16); 11830 cmdline_parse_token_string_t cmd_set_sym_hash_ena_per_port_enable = 11831 TOKEN_STRING_INITIALIZER(struct cmd_set_sym_hash_ena_per_port_result, 11832 enable, "enable#disable"); 11833 11834 cmdline_parse_inst_t cmd_set_sym_hash_ena_per_port = { 11835 .f = cmd_set_sym_hash_per_port_parsed, 11836 .data = NULL, 11837 .help_str = "set_sym_hash_ena_per_port <port_id> enable|disable", 11838 .tokens = { 11839 (void *)&cmd_set_sym_hash_ena_per_port_all, 11840 (void *)&cmd_set_sym_hash_ena_per_port_port_id, 11841 (void *)&cmd_set_sym_hash_ena_per_port_enable, 11842 NULL, 11843 }, 11844 }; 11845 11846 /* Get global config of hash function */ 11847 struct cmd_get_hash_global_config_result { 11848 cmdline_fixed_string_t get_hash_global_config; 11849 portid_t port_id; 11850 }; 11851 11852 static char * 11853 flowtype_to_str(uint16_t ftype) 11854 { 11855 uint16_t i; 11856 static struct { 11857 char str[16]; 11858 uint16_t ftype; 11859 } ftype_table[] = { 11860 {"ipv4", RTE_ETH_FLOW_IPV4}, 11861 {"ipv4-frag", RTE_ETH_FLOW_FRAG_IPV4}, 11862 {"ipv4-tcp", RTE_ETH_FLOW_NONFRAG_IPV4_TCP}, 11863 {"ipv4-udp", RTE_ETH_FLOW_NONFRAG_IPV4_UDP}, 11864 {"ipv4-sctp", RTE_ETH_FLOW_NONFRAG_IPV4_SCTP}, 11865 {"ipv4-other", RTE_ETH_FLOW_NONFRAG_IPV4_OTHER}, 11866 {"ipv6", RTE_ETH_FLOW_IPV6}, 11867 {"ipv6-frag", RTE_ETH_FLOW_FRAG_IPV6}, 11868 {"ipv6-tcp", RTE_ETH_FLOW_NONFRAG_IPV6_TCP}, 11869 {"ipv6-udp", RTE_ETH_FLOW_NONFRAG_IPV6_UDP}, 11870 {"ipv6-sctp", RTE_ETH_FLOW_NONFRAG_IPV6_SCTP}, 11871 {"ipv6-other", RTE_ETH_FLOW_NONFRAG_IPV6_OTHER}, 11872 {"l2_payload", RTE_ETH_FLOW_L2_PAYLOAD}, 11873 {"port", RTE_ETH_FLOW_PORT}, 11874 {"vxlan", RTE_ETH_FLOW_VXLAN}, 11875 {"geneve", RTE_ETH_FLOW_GENEVE}, 11876 {"nvgre", RTE_ETH_FLOW_NVGRE}, 11877 }; 11878 11879 for (i = 0; i < RTE_DIM(ftype_table); i++) { 11880 if (ftype_table[i].ftype == ftype) 11881 return ftype_table[i].str; 11882 } 11883 11884 return NULL; 11885 } 11886 11887 static void 11888 cmd_get_hash_global_config_parsed(void *parsed_result, 11889 __rte_unused struct cmdline *cl, 11890 __rte_unused void *data) 11891 { 11892 struct cmd_get_hash_global_config_result *res = parsed_result; 11893 struct rte_eth_hash_filter_info info; 11894 uint32_t idx, offset; 11895 uint16_t i; 11896 char *str; 11897 int ret; 11898 11899 if (rte_eth_dev_filter_supported(res->port_id, 11900 RTE_ETH_FILTER_HASH) < 0) { 11901 printf("RTE_ETH_FILTER_HASH not supported on port %d\n", 11902 res->port_id); 11903 return; 11904 } 11905 11906 memset(&info, 0, sizeof(info)); 11907 info.info_type = RTE_ETH_HASH_FILTER_GLOBAL_CONFIG; 11908 ret = rte_eth_dev_filter_ctrl(res->port_id, RTE_ETH_FILTER_HASH, 11909 RTE_ETH_FILTER_GET, &info); 11910 if (ret < 0) { 11911 printf("Cannot get hash global configurations by port %d\n", 11912 res->port_id); 11913 return; 11914 } 11915 11916 switch (info.info.global_conf.hash_func) { 11917 case RTE_ETH_HASH_FUNCTION_TOEPLITZ: 11918 printf("Hash function is Toeplitz\n"); 11919 break; 11920 case RTE_ETH_HASH_FUNCTION_SIMPLE_XOR: 11921 printf("Hash function is Simple XOR\n"); 11922 break; 11923 default: 11924 printf("Unknown hash function\n"); 11925 break; 11926 } 11927 11928 for (i = 0; i < RTE_ETH_FLOW_MAX; i++) { 11929 idx = i / UINT64_BIT; 11930 offset = i % UINT64_BIT; 11931 if (!(info.info.global_conf.valid_bit_mask[idx] & 11932 (1ULL << offset))) 11933 continue; 11934 str = flowtype_to_str(i); 11935 if (!str) 11936 continue; 11937 printf("Symmetric hash is %s globally for flow type %s " 11938 "by port %d\n", 11939 ((info.info.global_conf.sym_hash_enable_mask[idx] & 11940 (1ULL << offset)) ? "enabled" : "disabled"), str, 11941 res->port_id); 11942 } 11943 } 11944 11945 cmdline_parse_token_string_t cmd_get_hash_global_config_all = 11946 TOKEN_STRING_INITIALIZER(struct cmd_get_hash_global_config_result, 11947 get_hash_global_config, "get_hash_global_config"); 11948 cmdline_parse_token_num_t cmd_get_hash_global_config_port_id = 11949 TOKEN_NUM_INITIALIZER(struct cmd_get_hash_global_config_result, 11950 port_id, UINT16); 11951 11952 cmdline_parse_inst_t cmd_get_hash_global_config = { 11953 .f = cmd_get_hash_global_config_parsed, 11954 .data = NULL, 11955 .help_str = "get_hash_global_config <port_id>", 11956 .tokens = { 11957 (void *)&cmd_get_hash_global_config_all, 11958 (void *)&cmd_get_hash_global_config_port_id, 11959 NULL, 11960 }, 11961 }; 11962 11963 /* Set global config of hash function */ 11964 struct cmd_set_hash_global_config_result { 11965 cmdline_fixed_string_t set_hash_global_config; 11966 portid_t port_id; 11967 cmdline_fixed_string_t hash_func; 11968 cmdline_fixed_string_t flow_type; 11969 cmdline_fixed_string_t enable; 11970 }; 11971 11972 static void 11973 cmd_set_hash_global_config_parsed(void *parsed_result, 11974 __rte_unused struct cmdline *cl, 11975 __rte_unused void *data) 11976 { 11977 struct cmd_set_hash_global_config_result *res = parsed_result; 11978 struct rte_eth_hash_filter_info info; 11979 uint32_t ftype, idx, offset; 11980 int ret; 11981 11982 if (rte_eth_dev_filter_supported(res->port_id, 11983 RTE_ETH_FILTER_HASH) < 0) { 11984 printf("RTE_ETH_FILTER_HASH not supported on port %d\n", 11985 res->port_id); 11986 return; 11987 } 11988 memset(&info, 0, sizeof(info)); 11989 info.info_type = RTE_ETH_HASH_FILTER_GLOBAL_CONFIG; 11990 if (!strcmp(res->hash_func, "toeplitz")) 11991 info.info.global_conf.hash_func = 11992 RTE_ETH_HASH_FUNCTION_TOEPLITZ; 11993 else if (!strcmp(res->hash_func, "simple_xor")) 11994 info.info.global_conf.hash_func = 11995 RTE_ETH_HASH_FUNCTION_SIMPLE_XOR; 11996 else if (!strcmp(res->hash_func, "default")) 11997 info.info.global_conf.hash_func = 11998 RTE_ETH_HASH_FUNCTION_DEFAULT; 11999 12000 ftype = str2flowtype(res->flow_type); 12001 idx = ftype / UINT64_BIT; 12002 offset = ftype % UINT64_BIT; 12003 info.info.global_conf.valid_bit_mask[idx] |= (1ULL << offset); 12004 if (!strcmp(res->enable, "enable")) 12005 info.info.global_conf.sym_hash_enable_mask[idx] |= 12006 (1ULL << offset); 12007 ret = rte_eth_dev_filter_ctrl(res->port_id, RTE_ETH_FILTER_HASH, 12008 RTE_ETH_FILTER_SET, &info); 12009 if (ret < 0) 12010 printf("Cannot set global hash configurations by port %d\n", 12011 res->port_id); 12012 else 12013 printf("Global hash configurations have been set " 12014 "succcessfully by port %d\n", res->port_id); 12015 } 12016 12017 cmdline_parse_token_string_t cmd_set_hash_global_config_all = 12018 TOKEN_STRING_INITIALIZER(struct cmd_set_hash_global_config_result, 12019 set_hash_global_config, "set_hash_global_config"); 12020 cmdline_parse_token_num_t cmd_set_hash_global_config_port_id = 12021 TOKEN_NUM_INITIALIZER(struct cmd_set_hash_global_config_result, 12022 port_id, UINT16); 12023 cmdline_parse_token_string_t cmd_set_hash_global_config_hash_func = 12024 TOKEN_STRING_INITIALIZER(struct cmd_set_hash_global_config_result, 12025 hash_func, "toeplitz#simple_xor#default"); 12026 cmdline_parse_token_string_t cmd_set_hash_global_config_flow_type = 12027 TOKEN_STRING_INITIALIZER(struct cmd_set_hash_global_config_result, 12028 flow_type, 12029 "ipv4#ipv4-frag#ipv4-tcp#ipv4-udp#ipv4-sctp#ipv4-other#ipv6#" 12030 "ipv6-frag#ipv6-tcp#ipv6-udp#ipv6-sctp#ipv6-other#l2_payload"); 12031 cmdline_parse_token_string_t cmd_set_hash_global_config_enable = 12032 TOKEN_STRING_INITIALIZER(struct cmd_set_hash_global_config_result, 12033 enable, "enable#disable"); 12034 12035 cmdline_parse_inst_t cmd_set_hash_global_config = { 12036 .f = cmd_set_hash_global_config_parsed, 12037 .data = NULL, 12038 .help_str = "set_hash_global_config <port_id> " 12039 "toeplitz|simple_xor|default " 12040 "ipv4|ipv4-frag|ipv4-tcp|ipv4-udp|ipv4-sctp|ipv4-other|" 12041 "ipv6|ipv6-frag|ipv6-tcp|ipv6-udp|ipv6-sctp|ipv6-other|" 12042 "l2_payload enable|disable", 12043 .tokens = { 12044 (void *)&cmd_set_hash_global_config_all, 12045 (void *)&cmd_set_hash_global_config_port_id, 12046 (void *)&cmd_set_hash_global_config_hash_func, 12047 (void *)&cmd_set_hash_global_config_flow_type, 12048 (void *)&cmd_set_hash_global_config_enable, 12049 NULL, 12050 }, 12051 }; 12052 12053 /* Set hash input set */ 12054 struct cmd_set_hash_input_set_result { 12055 cmdline_fixed_string_t set_hash_input_set; 12056 portid_t port_id; 12057 cmdline_fixed_string_t flow_type; 12058 cmdline_fixed_string_t inset_field; 12059 cmdline_fixed_string_t select; 12060 }; 12061 12062 static enum rte_eth_input_set_field 12063 str2inset(char *string) 12064 { 12065 uint16_t i; 12066 12067 static const struct { 12068 char str[32]; 12069 enum rte_eth_input_set_field inset; 12070 } inset_table[] = { 12071 {"ethertype", RTE_ETH_INPUT_SET_L2_ETHERTYPE}, 12072 {"ovlan", RTE_ETH_INPUT_SET_L2_OUTER_VLAN}, 12073 {"ivlan", RTE_ETH_INPUT_SET_L2_INNER_VLAN}, 12074 {"src-ipv4", RTE_ETH_INPUT_SET_L3_SRC_IP4}, 12075 {"dst-ipv4", RTE_ETH_INPUT_SET_L3_DST_IP4}, 12076 {"ipv4-tos", RTE_ETH_INPUT_SET_L3_IP4_TOS}, 12077 {"ipv4-proto", RTE_ETH_INPUT_SET_L3_IP4_PROTO}, 12078 {"ipv4-ttl", RTE_ETH_INPUT_SET_L3_IP4_TTL}, 12079 {"src-ipv6", RTE_ETH_INPUT_SET_L3_SRC_IP6}, 12080 {"dst-ipv6", RTE_ETH_INPUT_SET_L3_DST_IP6}, 12081 {"ipv6-tc", RTE_ETH_INPUT_SET_L3_IP6_TC}, 12082 {"ipv6-next-header", RTE_ETH_INPUT_SET_L3_IP6_NEXT_HEADER}, 12083 {"ipv6-hop-limits", RTE_ETH_INPUT_SET_L3_IP6_HOP_LIMITS}, 12084 {"udp-src-port", RTE_ETH_INPUT_SET_L4_UDP_SRC_PORT}, 12085 {"udp-dst-port", RTE_ETH_INPUT_SET_L4_UDP_DST_PORT}, 12086 {"tcp-src-port", RTE_ETH_INPUT_SET_L4_TCP_SRC_PORT}, 12087 {"tcp-dst-port", RTE_ETH_INPUT_SET_L4_TCP_DST_PORT}, 12088 {"sctp-src-port", RTE_ETH_INPUT_SET_L4_SCTP_SRC_PORT}, 12089 {"sctp-dst-port", RTE_ETH_INPUT_SET_L4_SCTP_DST_PORT}, 12090 {"sctp-veri-tag", RTE_ETH_INPUT_SET_L4_SCTP_VERIFICATION_TAG}, 12091 {"udp-key", RTE_ETH_INPUT_SET_TUNNEL_L4_UDP_KEY}, 12092 {"gre-key", RTE_ETH_INPUT_SET_TUNNEL_GRE_KEY}, 12093 {"fld-1st", RTE_ETH_INPUT_SET_FLEX_PAYLOAD_1ST_WORD}, 12094 {"fld-2nd", RTE_ETH_INPUT_SET_FLEX_PAYLOAD_2ND_WORD}, 12095 {"fld-3rd", RTE_ETH_INPUT_SET_FLEX_PAYLOAD_3RD_WORD}, 12096 {"fld-4th", RTE_ETH_INPUT_SET_FLEX_PAYLOAD_4TH_WORD}, 12097 {"fld-5th", RTE_ETH_INPUT_SET_FLEX_PAYLOAD_5TH_WORD}, 12098 {"fld-6th", RTE_ETH_INPUT_SET_FLEX_PAYLOAD_6TH_WORD}, 12099 {"fld-7th", RTE_ETH_INPUT_SET_FLEX_PAYLOAD_7TH_WORD}, 12100 {"fld-8th", RTE_ETH_INPUT_SET_FLEX_PAYLOAD_8TH_WORD}, 12101 {"none", RTE_ETH_INPUT_SET_NONE}, 12102 }; 12103 12104 for (i = 0; i < RTE_DIM(inset_table); i++) { 12105 if (!strcmp(string, inset_table[i].str)) 12106 return inset_table[i].inset; 12107 } 12108 12109 return RTE_ETH_INPUT_SET_UNKNOWN; 12110 } 12111 12112 static void 12113 cmd_set_hash_input_set_parsed(void *parsed_result, 12114 __rte_unused struct cmdline *cl, 12115 __rte_unused void *data) 12116 { 12117 struct cmd_set_hash_input_set_result *res = parsed_result; 12118 struct rte_eth_hash_filter_info info; 12119 12120 memset(&info, 0, sizeof(info)); 12121 info.info_type = RTE_ETH_HASH_FILTER_INPUT_SET_SELECT; 12122 info.info.input_set_conf.flow_type = str2flowtype(res->flow_type); 12123 info.info.input_set_conf.field[0] = str2inset(res->inset_field); 12124 info.info.input_set_conf.inset_size = 1; 12125 if (!strcmp(res->select, "select")) 12126 info.info.input_set_conf.op = RTE_ETH_INPUT_SET_SELECT; 12127 else if (!strcmp(res->select, "add")) 12128 info.info.input_set_conf.op = RTE_ETH_INPUT_SET_ADD; 12129 rte_eth_dev_filter_ctrl(res->port_id, RTE_ETH_FILTER_HASH, 12130 RTE_ETH_FILTER_SET, &info); 12131 } 12132 12133 cmdline_parse_token_string_t cmd_set_hash_input_set_cmd = 12134 TOKEN_STRING_INITIALIZER(struct cmd_set_hash_input_set_result, 12135 set_hash_input_set, "set_hash_input_set"); 12136 cmdline_parse_token_num_t cmd_set_hash_input_set_port_id = 12137 TOKEN_NUM_INITIALIZER(struct cmd_set_hash_input_set_result, 12138 port_id, UINT16); 12139 cmdline_parse_token_string_t cmd_set_hash_input_set_flow_type = 12140 TOKEN_STRING_INITIALIZER(struct cmd_set_hash_input_set_result, 12141 flow_type, NULL); 12142 cmdline_parse_token_string_t cmd_set_hash_input_set_field = 12143 TOKEN_STRING_INITIALIZER(struct cmd_set_hash_input_set_result, 12144 inset_field, 12145 "ovlan#ivlan#src-ipv4#dst-ipv4#src-ipv6#dst-ipv6#" 12146 "ipv4-tos#ipv4-proto#ipv6-tc#ipv6-next-header#udp-src-port#" 12147 "udp-dst-port#tcp-src-port#tcp-dst-port#sctp-src-port#" 12148 "sctp-dst-port#sctp-veri-tag#udp-key#gre-key#fld-1st#" 12149 "fld-2nd#fld-3rd#fld-4th#fld-5th#fld-6th#fld-7th#" 12150 "fld-8th#none"); 12151 cmdline_parse_token_string_t cmd_set_hash_input_set_select = 12152 TOKEN_STRING_INITIALIZER(struct cmd_set_hash_input_set_result, 12153 select, "select#add"); 12154 12155 cmdline_parse_inst_t cmd_set_hash_input_set = { 12156 .f = cmd_set_hash_input_set_parsed, 12157 .data = NULL, 12158 .help_str = "set_hash_input_set <port_id> " 12159 "ipv4-frag|ipv4-tcp|ipv4-udp|ipv4-sctp|ipv4-other|" 12160 "ipv6-frag|ipv6-tcp|ipv6-udp|ipv6-sctp|ipv6-other|l2_payload|<flowtype_id> " 12161 "ovlan|ivlan|src-ipv4|dst-ipv4|src-ipv6|dst-ipv6|ipv4-tos|ipv4-proto|" 12162 "ipv6-tc|ipv6-next-header|udp-src-port|udp-dst-port|tcp-src-port|" 12163 "tcp-dst-port|sctp-src-port|sctp-dst-port|sctp-veri-tag|udp-key|" 12164 "gre-key|fld-1st|fld-2nd|fld-3rd|fld-4th|fld-5th|fld-6th|" 12165 "fld-7th|fld-8th|none select|add", 12166 .tokens = { 12167 (void *)&cmd_set_hash_input_set_cmd, 12168 (void *)&cmd_set_hash_input_set_port_id, 12169 (void *)&cmd_set_hash_input_set_flow_type, 12170 (void *)&cmd_set_hash_input_set_field, 12171 (void *)&cmd_set_hash_input_set_select, 12172 NULL, 12173 }, 12174 }; 12175 12176 /* Set flow director input set */ 12177 struct cmd_set_fdir_input_set_result { 12178 cmdline_fixed_string_t set_fdir_input_set; 12179 portid_t port_id; 12180 cmdline_fixed_string_t flow_type; 12181 cmdline_fixed_string_t inset_field; 12182 cmdline_fixed_string_t select; 12183 }; 12184 12185 static void 12186 cmd_set_fdir_input_set_parsed(void *parsed_result, 12187 __rte_unused struct cmdline *cl, 12188 __rte_unused void *data) 12189 { 12190 struct cmd_set_fdir_input_set_result *res = parsed_result; 12191 struct rte_eth_fdir_filter_info info; 12192 12193 memset(&info, 0, sizeof(info)); 12194 info.info_type = RTE_ETH_FDIR_FILTER_INPUT_SET_SELECT; 12195 info.info.input_set_conf.flow_type = str2flowtype(res->flow_type); 12196 info.info.input_set_conf.field[0] = str2inset(res->inset_field); 12197 info.info.input_set_conf.inset_size = 1; 12198 if (!strcmp(res->select, "select")) 12199 info.info.input_set_conf.op = RTE_ETH_INPUT_SET_SELECT; 12200 else if (!strcmp(res->select, "add")) 12201 info.info.input_set_conf.op = RTE_ETH_INPUT_SET_ADD; 12202 rte_eth_dev_filter_ctrl(res->port_id, RTE_ETH_FILTER_FDIR, 12203 RTE_ETH_FILTER_SET, &info); 12204 } 12205 12206 cmdline_parse_token_string_t cmd_set_fdir_input_set_cmd = 12207 TOKEN_STRING_INITIALIZER(struct cmd_set_fdir_input_set_result, 12208 set_fdir_input_set, "set_fdir_input_set"); 12209 cmdline_parse_token_num_t cmd_set_fdir_input_set_port_id = 12210 TOKEN_NUM_INITIALIZER(struct cmd_set_fdir_input_set_result, 12211 port_id, UINT16); 12212 cmdline_parse_token_string_t cmd_set_fdir_input_set_flow_type = 12213 TOKEN_STRING_INITIALIZER(struct cmd_set_fdir_input_set_result, 12214 flow_type, 12215 "ipv4-frag#ipv4-tcp#ipv4-udp#ipv4-sctp#ipv4-other#" 12216 "ipv6-frag#ipv6-tcp#ipv6-udp#ipv6-sctp#ipv6-other#l2_payload"); 12217 cmdline_parse_token_string_t cmd_set_fdir_input_set_field = 12218 TOKEN_STRING_INITIALIZER(struct cmd_set_fdir_input_set_result, 12219 inset_field, 12220 "ivlan#ethertype#src-ipv4#dst-ipv4#src-ipv6#dst-ipv6#" 12221 "ipv4-tos#ipv4-proto#ipv4-ttl#ipv6-tc#ipv6-next-header#" 12222 "ipv6-hop-limits#udp-src-port#udp-dst-port#" 12223 "tcp-src-port#tcp-dst-port#sctp-src-port#sctp-dst-port#" 12224 "sctp-veri-tag#none"); 12225 cmdline_parse_token_string_t cmd_set_fdir_input_set_select = 12226 TOKEN_STRING_INITIALIZER(struct cmd_set_fdir_input_set_result, 12227 select, "select#add"); 12228 12229 cmdline_parse_inst_t cmd_set_fdir_input_set = { 12230 .f = cmd_set_fdir_input_set_parsed, 12231 .data = NULL, 12232 .help_str = "set_fdir_input_set <port_id> " 12233 "ipv4-frag|ipv4-tcp|ipv4-udp|ipv4-sctp|ipv4-other|" 12234 "ipv6-frag|ipv6-tcp|ipv6-udp|ipv6-sctp|ipv6-other|l2_payload " 12235 "ivlan|ethertype|src-ipv4|dst-ipv4|src-ipv6|dst-ipv6|" 12236 "ipv4-tos|ipv4-proto|ipv4-ttl|ipv6-tc|ipv6-next-header|" 12237 "ipv6-hop-limits|udp-src-port|udp-dst-port|" 12238 "tcp-src-port|tcp-dst-port|sctp-src-port|sctp-dst-port|" 12239 "sctp-veri-tag|none select|add", 12240 .tokens = { 12241 (void *)&cmd_set_fdir_input_set_cmd, 12242 (void *)&cmd_set_fdir_input_set_port_id, 12243 (void *)&cmd_set_fdir_input_set_flow_type, 12244 (void *)&cmd_set_fdir_input_set_field, 12245 (void *)&cmd_set_fdir_input_set_select, 12246 NULL, 12247 }, 12248 }; 12249 12250 /* *** ADD/REMOVE A MULTICAST MAC ADDRESS TO/FROM A PORT *** */ 12251 struct cmd_mcast_addr_result { 12252 cmdline_fixed_string_t mcast_addr_cmd; 12253 cmdline_fixed_string_t what; 12254 uint16_t port_num; 12255 struct ether_addr mc_addr; 12256 }; 12257 12258 static void cmd_mcast_addr_parsed(void *parsed_result, 12259 __attribute__((unused)) struct cmdline *cl, 12260 __attribute__((unused)) void *data) 12261 { 12262 struct cmd_mcast_addr_result *res = parsed_result; 12263 12264 if (!is_multicast_ether_addr(&res->mc_addr)) { 12265 printf("Invalid multicast addr %02X:%02X:%02X:%02X:%02X:%02X\n", 12266 res->mc_addr.addr_bytes[0], res->mc_addr.addr_bytes[1], 12267 res->mc_addr.addr_bytes[2], res->mc_addr.addr_bytes[3], 12268 res->mc_addr.addr_bytes[4], res->mc_addr.addr_bytes[5]); 12269 return; 12270 } 12271 if (strcmp(res->what, "add") == 0) 12272 mcast_addr_add(res->port_num, &res->mc_addr); 12273 else 12274 mcast_addr_remove(res->port_num, &res->mc_addr); 12275 } 12276 12277 cmdline_parse_token_string_t cmd_mcast_addr_cmd = 12278 TOKEN_STRING_INITIALIZER(struct cmd_mcast_addr_result, 12279 mcast_addr_cmd, "mcast_addr"); 12280 cmdline_parse_token_string_t cmd_mcast_addr_what = 12281 TOKEN_STRING_INITIALIZER(struct cmd_mcast_addr_result, what, 12282 "add#remove"); 12283 cmdline_parse_token_num_t cmd_mcast_addr_portnum = 12284 TOKEN_NUM_INITIALIZER(struct cmd_mcast_addr_result, port_num, UINT16); 12285 cmdline_parse_token_etheraddr_t cmd_mcast_addr_addr = 12286 TOKEN_ETHERADDR_INITIALIZER(struct cmd_mac_addr_result, address); 12287 12288 cmdline_parse_inst_t cmd_mcast_addr = { 12289 .f = cmd_mcast_addr_parsed, 12290 .data = (void *)0, 12291 .help_str = "mcast_addr add|remove <port_id> <mcast_addr>: " 12292 "Add/Remove multicast MAC address on port_id", 12293 .tokens = { 12294 (void *)&cmd_mcast_addr_cmd, 12295 (void *)&cmd_mcast_addr_what, 12296 (void *)&cmd_mcast_addr_portnum, 12297 (void *)&cmd_mcast_addr_addr, 12298 NULL, 12299 }, 12300 }; 12301 12302 /* l2 tunnel config 12303 * only support E-tag now. 12304 */ 12305 12306 /* Ether type config */ 12307 struct cmd_config_l2_tunnel_eth_type_result { 12308 cmdline_fixed_string_t port; 12309 cmdline_fixed_string_t config; 12310 cmdline_fixed_string_t all; 12311 portid_t id; 12312 cmdline_fixed_string_t l2_tunnel; 12313 cmdline_fixed_string_t l2_tunnel_type; 12314 cmdline_fixed_string_t eth_type; 12315 uint16_t eth_type_val; 12316 }; 12317 12318 cmdline_parse_token_string_t cmd_config_l2_tunnel_eth_type_port = 12319 TOKEN_STRING_INITIALIZER 12320 (struct cmd_config_l2_tunnel_eth_type_result, 12321 port, "port"); 12322 cmdline_parse_token_string_t cmd_config_l2_tunnel_eth_type_config = 12323 TOKEN_STRING_INITIALIZER 12324 (struct cmd_config_l2_tunnel_eth_type_result, 12325 config, "config"); 12326 cmdline_parse_token_string_t cmd_config_l2_tunnel_eth_type_all_str = 12327 TOKEN_STRING_INITIALIZER 12328 (struct cmd_config_l2_tunnel_eth_type_result, 12329 all, "all"); 12330 cmdline_parse_token_num_t cmd_config_l2_tunnel_eth_type_id = 12331 TOKEN_NUM_INITIALIZER 12332 (struct cmd_config_l2_tunnel_eth_type_result, 12333 id, UINT16); 12334 cmdline_parse_token_string_t cmd_config_l2_tunnel_eth_type_l2_tunnel = 12335 TOKEN_STRING_INITIALIZER 12336 (struct cmd_config_l2_tunnel_eth_type_result, 12337 l2_tunnel, "l2-tunnel"); 12338 cmdline_parse_token_string_t cmd_config_l2_tunnel_eth_type_l2_tunnel_type = 12339 TOKEN_STRING_INITIALIZER 12340 (struct cmd_config_l2_tunnel_eth_type_result, 12341 l2_tunnel_type, "E-tag"); 12342 cmdline_parse_token_string_t cmd_config_l2_tunnel_eth_type_eth_type = 12343 TOKEN_STRING_INITIALIZER 12344 (struct cmd_config_l2_tunnel_eth_type_result, 12345 eth_type, "ether-type"); 12346 cmdline_parse_token_num_t cmd_config_l2_tunnel_eth_type_eth_type_val = 12347 TOKEN_NUM_INITIALIZER 12348 (struct cmd_config_l2_tunnel_eth_type_result, 12349 eth_type_val, UINT16); 12350 12351 static enum rte_eth_tunnel_type 12352 str2fdir_l2_tunnel_type(char *string) 12353 { 12354 uint32_t i = 0; 12355 12356 static const struct { 12357 char str[32]; 12358 enum rte_eth_tunnel_type type; 12359 } l2_tunnel_type_str[] = { 12360 {"E-tag", RTE_L2_TUNNEL_TYPE_E_TAG}, 12361 }; 12362 12363 for (i = 0; i < RTE_DIM(l2_tunnel_type_str); i++) { 12364 if (!strcmp(l2_tunnel_type_str[i].str, string)) 12365 return l2_tunnel_type_str[i].type; 12366 } 12367 return RTE_TUNNEL_TYPE_NONE; 12368 } 12369 12370 /* ether type config for all ports */ 12371 static void 12372 cmd_config_l2_tunnel_eth_type_all_parsed 12373 (void *parsed_result, 12374 __attribute__((unused)) struct cmdline *cl, 12375 __attribute__((unused)) void *data) 12376 { 12377 struct cmd_config_l2_tunnel_eth_type_result *res = parsed_result; 12378 struct rte_eth_l2_tunnel_conf entry; 12379 portid_t pid; 12380 12381 entry.l2_tunnel_type = str2fdir_l2_tunnel_type(res->l2_tunnel_type); 12382 entry.ether_type = res->eth_type_val; 12383 12384 RTE_ETH_FOREACH_DEV(pid) { 12385 rte_eth_dev_l2_tunnel_eth_type_conf(pid, &entry); 12386 } 12387 } 12388 12389 cmdline_parse_inst_t cmd_config_l2_tunnel_eth_type_all = { 12390 .f = cmd_config_l2_tunnel_eth_type_all_parsed, 12391 .data = NULL, 12392 .help_str = "port config all l2-tunnel E-tag ether-type <value>", 12393 .tokens = { 12394 (void *)&cmd_config_l2_tunnel_eth_type_port, 12395 (void *)&cmd_config_l2_tunnel_eth_type_config, 12396 (void *)&cmd_config_l2_tunnel_eth_type_all_str, 12397 (void *)&cmd_config_l2_tunnel_eth_type_l2_tunnel, 12398 (void *)&cmd_config_l2_tunnel_eth_type_l2_tunnel_type, 12399 (void *)&cmd_config_l2_tunnel_eth_type_eth_type, 12400 (void *)&cmd_config_l2_tunnel_eth_type_eth_type_val, 12401 NULL, 12402 }, 12403 }; 12404 12405 /* ether type config for a specific port */ 12406 static void 12407 cmd_config_l2_tunnel_eth_type_specific_parsed( 12408 void *parsed_result, 12409 __attribute__((unused)) struct cmdline *cl, 12410 __attribute__((unused)) void *data) 12411 { 12412 struct cmd_config_l2_tunnel_eth_type_result *res = 12413 parsed_result; 12414 struct rte_eth_l2_tunnel_conf entry; 12415 12416 if (port_id_is_invalid(res->id, ENABLED_WARN)) 12417 return; 12418 12419 entry.l2_tunnel_type = str2fdir_l2_tunnel_type(res->l2_tunnel_type); 12420 entry.ether_type = res->eth_type_val; 12421 12422 rte_eth_dev_l2_tunnel_eth_type_conf(res->id, &entry); 12423 } 12424 12425 cmdline_parse_inst_t cmd_config_l2_tunnel_eth_type_specific = { 12426 .f = cmd_config_l2_tunnel_eth_type_specific_parsed, 12427 .data = NULL, 12428 .help_str = "port config <port_id> l2-tunnel E-tag ether-type <value>", 12429 .tokens = { 12430 (void *)&cmd_config_l2_tunnel_eth_type_port, 12431 (void *)&cmd_config_l2_tunnel_eth_type_config, 12432 (void *)&cmd_config_l2_tunnel_eth_type_id, 12433 (void *)&cmd_config_l2_tunnel_eth_type_l2_tunnel, 12434 (void *)&cmd_config_l2_tunnel_eth_type_l2_tunnel_type, 12435 (void *)&cmd_config_l2_tunnel_eth_type_eth_type, 12436 (void *)&cmd_config_l2_tunnel_eth_type_eth_type_val, 12437 NULL, 12438 }, 12439 }; 12440 12441 /* Enable/disable l2 tunnel */ 12442 struct cmd_config_l2_tunnel_en_dis_result { 12443 cmdline_fixed_string_t port; 12444 cmdline_fixed_string_t config; 12445 cmdline_fixed_string_t all; 12446 portid_t id; 12447 cmdline_fixed_string_t l2_tunnel; 12448 cmdline_fixed_string_t l2_tunnel_type; 12449 cmdline_fixed_string_t en_dis; 12450 }; 12451 12452 cmdline_parse_token_string_t cmd_config_l2_tunnel_en_dis_port = 12453 TOKEN_STRING_INITIALIZER 12454 (struct cmd_config_l2_tunnel_en_dis_result, 12455 port, "port"); 12456 cmdline_parse_token_string_t cmd_config_l2_tunnel_en_dis_config = 12457 TOKEN_STRING_INITIALIZER 12458 (struct cmd_config_l2_tunnel_en_dis_result, 12459 config, "config"); 12460 cmdline_parse_token_string_t cmd_config_l2_tunnel_en_dis_all_str = 12461 TOKEN_STRING_INITIALIZER 12462 (struct cmd_config_l2_tunnel_en_dis_result, 12463 all, "all"); 12464 cmdline_parse_token_num_t cmd_config_l2_tunnel_en_dis_id = 12465 TOKEN_NUM_INITIALIZER 12466 (struct cmd_config_l2_tunnel_en_dis_result, 12467 id, UINT16); 12468 cmdline_parse_token_string_t cmd_config_l2_tunnel_en_dis_l2_tunnel = 12469 TOKEN_STRING_INITIALIZER 12470 (struct cmd_config_l2_tunnel_en_dis_result, 12471 l2_tunnel, "l2-tunnel"); 12472 cmdline_parse_token_string_t cmd_config_l2_tunnel_en_dis_l2_tunnel_type = 12473 TOKEN_STRING_INITIALIZER 12474 (struct cmd_config_l2_tunnel_en_dis_result, 12475 l2_tunnel_type, "E-tag"); 12476 cmdline_parse_token_string_t cmd_config_l2_tunnel_en_dis_en_dis = 12477 TOKEN_STRING_INITIALIZER 12478 (struct cmd_config_l2_tunnel_en_dis_result, 12479 en_dis, "enable#disable"); 12480 12481 /* enable/disable l2 tunnel for all ports */ 12482 static void 12483 cmd_config_l2_tunnel_en_dis_all_parsed( 12484 void *parsed_result, 12485 __attribute__((unused)) struct cmdline *cl, 12486 __attribute__((unused)) void *data) 12487 { 12488 struct cmd_config_l2_tunnel_en_dis_result *res = parsed_result; 12489 struct rte_eth_l2_tunnel_conf entry; 12490 portid_t pid; 12491 uint8_t en; 12492 12493 entry.l2_tunnel_type = str2fdir_l2_tunnel_type(res->l2_tunnel_type); 12494 12495 if (!strcmp("enable", res->en_dis)) 12496 en = 1; 12497 else 12498 en = 0; 12499 12500 RTE_ETH_FOREACH_DEV(pid) { 12501 rte_eth_dev_l2_tunnel_offload_set(pid, 12502 &entry, 12503 ETH_L2_TUNNEL_ENABLE_MASK, 12504 en); 12505 } 12506 } 12507 12508 cmdline_parse_inst_t cmd_config_l2_tunnel_en_dis_all = { 12509 .f = cmd_config_l2_tunnel_en_dis_all_parsed, 12510 .data = NULL, 12511 .help_str = "port config all l2-tunnel E-tag enable|disable", 12512 .tokens = { 12513 (void *)&cmd_config_l2_tunnel_en_dis_port, 12514 (void *)&cmd_config_l2_tunnel_en_dis_config, 12515 (void *)&cmd_config_l2_tunnel_en_dis_all_str, 12516 (void *)&cmd_config_l2_tunnel_en_dis_l2_tunnel, 12517 (void *)&cmd_config_l2_tunnel_en_dis_l2_tunnel_type, 12518 (void *)&cmd_config_l2_tunnel_en_dis_en_dis, 12519 NULL, 12520 }, 12521 }; 12522 12523 /* enable/disable l2 tunnel for a port */ 12524 static void 12525 cmd_config_l2_tunnel_en_dis_specific_parsed( 12526 void *parsed_result, 12527 __attribute__((unused)) struct cmdline *cl, 12528 __attribute__((unused)) void *data) 12529 { 12530 struct cmd_config_l2_tunnel_en_dis_result *res = 12531 parsed_result; 12532 struct rte_eth_l2_tunnel_conf entry; 12533 12534 if (port_id_is_invalid(res->id, ENABLED_WARN)) 12535 return; 12536 12537 entry.l2_tunnel_type = str2fdir_l2_tunnel_type(res->l2_tunnel_type); 12538 12539 if (!strcmp("enable", res->en_dis)) 12540 rte_eth_dev_l2_tunnel_offload_set(res->id, 12541 &entry, 12542 ETH_L2_TUNNEL_ENABLE_MASK, 12543 1); 12544 else 12545 rte_eth_dev_l2_tunnel_offload_set(res->id, 12546 &entry, 12547 ETH_L2_TUNNEL_ENABLE_MASK, 12548 0); 12549 } 12550 12551 cmdline_parse_inst_t cmd_config_l2_tunnel_en_dis_specific = { 12552 .f = cmd_config_l2_tunnel_en_dis_specific_parsed, 12553 .data = NULL, 12554 .help_str = "port config <port_id> l2-tunnel E-tag enable|disable", 12555 .tokens = { 12556 (void *)&cmd_config_l2_tunnel_en_dis_port, 12557 (void *)&cmd_config_l2_tunnel_en_dis_config, 12558 (void *)&cmd_config_l2_tunnel_en_dis_id, 12559 (void *)&cmd_config_l2_tunnel_en_dis_l2_tunnel, 12560 (void *)&cmd_config_l2_tunnel_en_dis_l2_tunnel_type, 12561 (void *)&cmd_config_l2_tunnel_en_dis_en_dis, 12562 NULL, 12563 }, 12564 }; 12565 12566 /* E-tag configuration */ 12567 12568 /* Common result structure for all E-tag configuration */ 12569 struct cmd_config_e_tag_result { 12570 cmdline_fixed_string_t e_tag; 12571 cmdline_fixed_string_t set; 12572 cmdline_fixed_string_t insertion; 12573 cmdline_fixed_string_t stripping; 12574 cmdline_fixed_string_t forwarding; 12575 cmdline_fixed_string_t filter; 12576 cmdline_fixed_string_t add; 12577 cmdline_fixed_string_t del; 12578 cmdline_fixed_string_t on; 12579 cmdline_fixed_string_t off; 12580 cmdline_fixed_string_t on_off; 12581 cmdline_fixed_string_t port_tag_id; 12582 uint32_t port_tag_id_val; 12583 cmdline_fixed_string_t e_tag_id; 12584 uint16_t e_tag_id_val; 12585 cmdline_fixed_string_t dst_pool; 12586 uint8_t dst_pool_val; 12587 cmdline_fixed_string_t port; 12588 portid_t port_id; 12589 cmdline_fixed_string_t vf; 12590 uint8_t vf_id; 12591 }; 12592 12593 /* Common CLI fields for all E-tag configuration */ 12594 cmdline_parse_token_string_t cmd_config_e_tag_e_tag = 12595 TOKEN_STRING_INITIALIZER 12596 (struct cmd_config_e_tag_result, 12597 e_tag, "E-tag"); 12598 cmdline_parse_token_string_t cmd_config_e_tag_set = 12599 TOKEN_STRING_INITIALIZER 12600 (struct cmd_config_e_tag_result, 12601 set, "set"); 12602 cmdline_parse_token_string_t cmd_config_e_tag_insertion = 12603 TOKEN_STRING_INITIALIZER 12604 (struct cmd_config_e_tag_result, 12605 insertion, "insertion"); 12606 cmdline_parse_token_string_t cmd_config_e_tag_stripping = 12607 TOKEN_STRING_INITIALIZER 12608 (struct cmd_config_e_tag_result, 12609 stripping, "stripping"); 12610 cmdline_parse_token_string_t cmd_config_e_tag_forwarding = 12611 TOKEN_STRING_INITIALIZER 12612 (struct cmd_config_e_tag_result, 12613 forwarding, "forwarding"); 12614 cmdline_parse_token_string_t cmd_config_e_tag_filter = 12615 TOKEN_STRING_INITIALIZER 12616 (struct cmd_config_e_tag_result, 12617 filter, "filter"); 12618 cmdline_parse_token_string_t cmd_config_e_tag_add = 12619 TOKEN_STRING_INITIALIZER 12620 (struct cmd_config_e_tag_result, 12621 add, "add"); 12622 cmdline_parse_token_string_t cmd_config_e_tag_del = 12623 TOKEN_STRING_INITIALIZER 12624 (struct cmd_config_e_tag_result, 12625 del, "del"); 12626 cmdline_parse_token_string_t cmd_config_e_tag_on = 12627 TOKEN_STRING_INITIALIZER 12628 (struct cmd_config_e_tag_result, 12629 on, "on"); 12630 cmdline_parse_token_string_t cmd_config_e_tag_off = 12631 TOKEN_STRING_INITIALIZER 12632 (struct cmd_config_e_tag_result, 12633 off, "off"); 12634 cmdline_parse_token_string_t cmd_config_e_tag_on_off = 12635 TOKEN_STRING_INITIALIZER 12636 (struct cmd_config_e_tag_result, 12637 on_off, "on#off"); 12638 cmdline_parse_token_string_t cmd_config_e_tag_port_tag_id = 12639 TOKEN_STRING_INITIALIZER 12640 (struct cmd_config_e_tag_result, 12641 port_tag_id, "port-tag-id"); 12642 cmdline_parse_token_num_t cmd_config_e_tag_port_tag_id_val = 12643 TOKEN_NUM_INITIALIZER 12644 (struct cmd_config_e_tag_result, 12645 port_tag_id_val, UINT32); 12646 cmdline_parse_token_string_t cmd_config_e_tag_e_tag_id = 12647 TOKEN_STRING_INITIALIZER 12648 (struct cmd_config_e_tag_result, 12649 e_tag_id, "e-tag-id"); 12650 cmdline_parse_token_num_t cmd_config_e_tag_e_tag_id_val = 12651 TOKEN_NUM_INITIALIZER 12652 (struct cmd_config_e_tag_result, 12653 e_tag_id_val, UINT16); 12654 cmdline_parse_token_string_t cmd_config_e_tag_dst_pool = 12655 TOKEN_STRING_INITIALIZER 12656 (struct cmd_config_e_tag_result, 12657 dst_pool, "dst-pool"); 12658 cmdline_parse_token_num_t cmd_config_e_tag_dst_pool_val = 12659 TOKEN_NUM_INITIALIZER 12660 (struct cmd_config_e_tag_result, 12661 dst_pool_val, UINT8); 12662 cmdline_parse_token_string_t cmd_config_e_tag_port = 12663 TOKEN_STRING_INITIALIZER 12664 (struct cmd_config_e_tag_result, 12665 port, "port"); 12666 cmdline_parse_token_num_t cmd_config_e_tag_port_id = 12667 TOKEN_NUM_INITIALIZER 12668 (struct cmd_config_e_tag_result, 12669 port_id, UINT16); 12670 cmdline_parse_token_string_t cmd_config_e_tag_vf = 12671 TOKEN_STRING_INITIALIZER 12672 (struct cmd_config_e_tag_result, 12673 vf, "vf"); 12674 cmdline_parse_token_num_t cmd_config_e_tag_vf_id = 12675 TOKEN_NUM_INITIALIZER 12676 (struct cmd_config_e_tag_result, 12677 vf_id, UINT8); 12678 12679 /* E-tag insertion configuration */ 12680 static void 12681 cmd_config_e_tag_insertion_en_parsed( 12682 void *parsed_result, 12683 __attribute__((unused)) struct cmdline *cl, 12684 __attribute__((unused)) void *data) 12685 { 12686 struct cmd_config_e_tag_result *res = 12687 parsed_result; 12688 struct rte_eth_l2_tunnel_conf entry; 12689 12690 if (port_id_is_invalid(res->port_id, ENABLED_WARN)) 12691 return; 12692 12693 entry.l2_tunnel_type = RTE_L2_TUNNEL_TYPE_E_TAG; 12694 entry.tunnel_id = res->port_tag_id_val; 12695 entry.vf_id = res->vf_id; 12696 rte_eth_dev_l2_tunnel_offload_set(res->port_id, 12697 &entry, 12698 ETH_L2_TUNNEL_INSERTION_MASK, 12699 1); 12700 } 12701 12702 static void 12703 cmd_config_e_tag_insertion_dis_parsed( 12704 void *parsed_result, 12705 __attribute__((unused)) struct cmdline *cl, 12706 __attribute__((unused)) void *data) 12707 { 12708 struct cmd_config_e_tag_result *res = 12709 parsed_result; 12710 struct rte_eth_l2_tunnel_conf entry; 12711 12712 if (port_id_is_invalid(res->port_id, ENABLED_WARN)) 12713 return; 12714 12715 entry.l2_tunnel_type = RTE_L2_TUNNEL_TYPE_E_TAG; 12716 entry.vf_id = res->vf_id; 12717 12718 rte_eth_dev_l2_tunnel_offload_set(res->port_id, 12719 &entry, 12720 ETH_L2_TUNNEL_INSERTION_MASK, 12721 0); 12722 } 12723 12724 cmdline_parse_inst_t cmd_config_e_tag_insertion_en = { 12725 .f = cmd_config_e_tag_insertion_en_parsed, 12726 .data = NULL, 12727 .help_str = "E-tag ... : E-tag insertion enable", 12728 .tokens = { 12729 (void *)&cmd_config_e_tag_e_tag, 12730 (void *)&cmd_config_e_tag_set, 12731 (void *)&cmd_config_e_tag_insertion, 12732 (void *)&cmd_config_e_tag_on, 12733 (void *)&cmd_config_e_tag_port_tag_id, 12734 (void *)&cmd_config_e_tag_port_tag_id_val, 12735 (void *)&cmd_config_e_tag_port, 12736 (void *)&cmd_config_e_tag_port_id, 12737 (void *)&cmd_config_e_tag_vf, 12738 (void *)&cmd_config_e_tag_vf_id, 12739 NULL, 12740 }, 12741 }; 12742 12743 cmdline_parse_inst_t cmd_config_e_tag_insertion_dis = { 12744 .f = cmd_config_e_tag_insertion_dis_parsed, 12745 .data = NULL, 12746 .help_str = "E-tag ... : E-tag insertion disable", 12747 .tokens = { 12748 (void *)&cmd_config_e_tag_e_tag, 12749 (void *)&cmd_config_e_tag_set, 12750 (void *)&cmd_config_e_tag_insertion, 12751 (void *)&cmd_config_e_tag_off, 12752 (void *)&cmd_config_e_tag_port, 12753 (void *)&cmd_config_e_tag_port_id, 12754 (void *)&cmd_config_e_tag_vf, 12755 (void *)&cmd_config_e_tag_vf_id, 12756 NULL, 12757 }, 12758 }; 12759 12760 /* E-tag stripping configuration */ 12761 static void 12762 cmd_config_e_tag_stripping_parsed( 12763 void *parsed_result, 12764 __attribute__((unused)) struct cmdline *cl, 12765 __attribute__((unused)) void *data) 12766 { 12767 struct cmd_config_e_tag_result *res = 12768 parsed_result; 12769 struct rte_eth_l2_tunnel_conf entry; 12770 12771 if (port_id_is_invalid(res->port_id, ENABLED_WARN)) 12772 return; 12773 12774 entry.l2_tunnel_type = RTE_L2_TUNNEL_TYPE_E_TAG; 12775 12776 if (!strcmp(res->on_off, "on")) 12777 rte_eth_dev_l2_tunnel_offload_set 12778 (res->port_id, 12779 &entry, 12780 ETH_L2_TUNNEL_STRIPPING_MASK, 12781 1); 12782 else 12783 rte_eth_dev_l2_tunnel_offload_set 12784 (res->port_id, 12785 &entry, 12786 ETH_L2_TUNNEL_STRIPPING_MASK, 12787 0); 12788 } 12789 12790 cmdline_parse_inst_t cmd_config_e_tag_stripping_en_dis = { 12791 .f = cmd_config_e_tag_stripping_parsed, 12792 .data = NULL, 12793 .help_str = "E-tag ... : E-tag stripping enable/disable", 12794 .tokens = { 12795 (void *)&cmd_config_e_tag_e_tag, 12796 (void *)&cmd_config_e_tag_set, 12797 (void *)&cmd_config_e_tag_stripping, 12798 (void *)&cmd_config_e_tag_on_off, 12799 (void *)&cmd_config_e_tag_port, 12800 (void *)&cmd_config_e_tag_port_id, 12801 NULL, 12802 }, 12803 }; 12804 12805 /* E-tag forwarding configuration */ 12806 static void 12807 cmd_config_e_tag_forwarding_parsed( 12808 void *parsed_result, 12809 __attribute__((unused)) struct cmdline *cl, 12810 __attribute__((unused)) void *data) 12811 { 12812 struct cmd_config_e_tag_result *res = parsed_result; 12813 struct rte_eth_l2_tunnel_conf entry; 12814 12815 if (port_id_is_invalid(res->port_id, ENABLED_WARN)) 12816 return; 12817 12818 entry.l2_tunnel_type = RTE_L2_TUNNEL_TYPE_E_TAG; 12819 12820 if (!strcmp(res->on_off, "on")) 12821 rte_eth_dev_l2_tunnel_offload_set 12822 (res->port_id, 12823 &entry, 12824 ETH_L2_TUNNEL_FORWARDING_MASK, 12825 1); 12826 else 12827 rte_eth_dev_l2_tunnel_offload_set 12828 (res->port_id, 12829 &entry, 12830 ETH_L2_TUNNEL_FORWARDING_MASK, 12831 0); 12832 } 12833 12834 cmdline_parse_inst_t cmd_config_e_tag_forwarding_en_dis = { 12835 .f = cmd_config_e_tag_forwarding_parsed, 12836 .data = NULL, 12837 .help_str = "E-tag ... : E-tag forwarding enable/disable", 12838 .tokens = { 12839 (void *)&cmd_config_e_tag_e_tag, 12840 (void *)&cmd_config_e_tag_set, 12841 (void *)&cmd_config_e_tag_forwarding, 12842 (void *)&cmd_config_e_tag_on_off, 12843 (void *)&cmd_config_e_tag_port, 12844 (void *)&cmd_config_e_tag_port_id, 12845 NULL, 12846 }, 12847 }; 12848 12849 /* E-tag filter configuration */ 12850 static void 12851 cmd_config_e_tag_filter_add_parsed( 12852 void *parsed_result, 12853 __attribute__((unused)) struct cmdline *cl, 12854 __attribute__((unused)) void *data) 12855 { 12856 struct cmd_config_e_tag_result *res = parsed_result; 12857 struct rte_eth_l2_tunnel_conf entry; 12858 int ret = 0; 12859 12860 if (port_id_is_invalid(res->port_id, ENABLED_WARN)) 12861 return; 12862 12863 if (res->e_tag_id_val > 0x3fff) { 12864 printf("e-tag-id must be equal or less than 0x3fff.\n"); 12865 return; 12866 } 12867 12868 ret = rte_eth_dev_filter_supported(res->port_id, 12869 RTE_ETH_FILTER_L2_TUNNEL); 12870 if (ret < 0) { 12871 printf("E-tag filter is not supported on port %u.\n", 12872 res->port_id); 12873 return; 12874 } 12875 12876 entry.l2_tunnel_type = RTE_L2_TUNNEL_TYPE_E_TAG; 12877 entry.tunnel_id = res->e_tag_id_val; 12878 entry.pool = res->dst_pool_val; 12879 12880 ret = rte_eth_dev_filter_ctrl(res->port_id, 12881 RTE_ETH_FILTER_L2_TUNNEL, 12882 RTE_ETH_FILTER_ADD, 12883 &entry); 12884 if (ret < 0) 12885 printf("E-tag filter programming error: (%s)\n", 12886 strerror(-ret)); 12887 } 12888 12889 cmdline_parse_inst_t cmd_config_e_tag_filter_add = { 12890 .f = cmd_config_e_tag_filter_add_parsed, 12891 .data = NULL, 12892 .help_str = "E-tag ... : E-tag filter add", 12893 .tokens = { 12894 (void *)&cmd_config_e_tag_e_tag, 12895 (void *)&cmd_config_e_tag_set, 12896 (void *)&cmd_config_e_tag_filter, 12897 (void *)&cmd_config_e_tag_add, 12898 (void *)&cmd_config_e_tag_e_tag_id, 12899 (void *)&cmd_config_e_tag_e_tag_id_val, 12900 (void *)&cmd_config_e_tag_dst_pool, 12901 (void *)&cmd_config_e_tag_dst_pool_val, 12902 (void *)&cmd_config_e_tag_port, 12903 (void *)&cmd_config_e_tag_port_id, 12904 NULL, 12905 }, 12906 }; 12907 12908 static void 12909 cmd_config_e_tag_filter_del_parsed( 12910 void *parsed_result, 12911 __attribute__((unused)) struct cmdline *cl, 12912 __attribute__((unused)) void *data) 12913 { 12914 struct cmd_config_e_tag_result *res = parsed_result; 12915 struct rte_eth_l2_tunnel_conf entry; 12916 int ret = 0; 12917 12918 if (port_id_is_invalid(res->port_id, ENABLED_WARN)) 12919 return; 12920 12921 if (res->e_tag_id_val > 0x3fff) { 12922 printf("e-tag-id must be less than 0x3fff.\n"); 12923 return; 12924 } 12925 12926 ret = rte_eth_dev_filter_supported(res->port_id, 12927 RTE_ETH_FILTER_L2_TUNNEL); 12928 if (ret < 0) { 12929 printf("E-tag filter is not supported on port %u.\n", 12930 res->port_id); 12931 return; 12932 } 12933 12934 entry.l2_tunnel_type = RTE_L2_TUNNEL_TYPE_E_TAG; 12935 entry.tunnel_id = res->e_tag_id_val; 12936 12937 ret = rte_eth_dev_filter_ctrl(res->port_id, 12938 RTE_ETH_FILTER_L2_TUNNEL, 12939 RTE_ETH_FILTER_DELETE, 12940 &entry); 12941 if (ret < 0) 12942 printf("E-tag filter programming error: (%s)\n", 12943 strerror(-ret)); 12944 } 12945 12946 cmdline_parse_inst_t cmd_config_e_tag_filter_del = { 12947 .f = cmd_config_e_tag_filter_del_parsed, 12948 .data = NULL, 12949 .help_str = "E-tag ... : E-tag filter delete", 12950 .tokens = { 12951 (void *)&cmd_config_e_tag_e_tag, 12952 (void *)&cmd_config_e_tag_set, 12953 (void *)&cmd_config_e_tag_filter, 12954 (void *)&cmd_config_e_tag_del, 12955 (void *)&cmd_config_e_tag_e_tag_id, 12956 (void *)&cmd_config_e_tag_e_tag_id_val, 12957 (void *)&cmd_config_e_tag_port, 12958 (void *)&cmd_config_e_tag_port_id, 12959 NULL, 12960 }, 12961 }; 12962 12963 /* vf vlan anti spoof configuration */ 12964 12965 /* Common result structure for vf vlan anti spoof */ 12966 struct cmd_vf_vlan_anti_spoof_result { 12967 cmdline_fixed_string_t set; 12968 cmdline_fixed_string_t vf; 12969 cmdline_fixed_string_t vlan; 12970 cmdline_fixed_string_t antispoof; 12971 portid_t port_id; 12972 uint32_t vf_id; 12973 cmdline_fixed_string_t on_off; 12974 }; 12975 12976 /* Common CLI fields for vf vlan anti spoof enable disable */ 12977 cmdline_parse_token_string_t cmd_vf_vlan_anti_spoof_set = 12978 TOKEN_STRING_INITIALIZER 12979 (struct cmd_vf_vlan_anti_spoof_result, 12980 set, "set"); 12981 cmdline_parse_token_string_t cmd_vf_vlan_anti_spoof_vf = 12982 TOKEN_STRING_INITIALIZER 12983 (struct cmd_vf_vlan_anti_spoof_result, 12984 vf, "vf"); 12985 cmdline_parse_token_string_t cmd_vf_vlan_anti_spoof_vlan = 12986 TOKEN_STRING_INITIALIZER 12987 (struct cmd_vf_vlan_anti_spoof_result, 12988 vlan, "vlan"); 12989 cmdline_parse_token_string_t cmd_vf_vlan_anti_spoof_antispoof = 12990 TOKEN_STRING_INITIALIZER 12991 (struct cmd_vf_vlan_anti_spoof_result, 12992 antispoof, "antispoof"); 12993 cmdline_parse_token_num_t cmd_vf_vlan_anti_spoof_port_id = 12994 TOKEN_NUM_INITIALIZER 12995 (struct cmd_vf_vlan_anti_spoof_result, 12996 port_id, UINT16); 12997 cmdline_parse_token_num_t cmd_vf_vlan_anti_spoof_vf_id = 12998 TOKEN_NUM_INITIALIZER 12999 (struct cmd_vf_vlan_anti_spoof_result, 13000 vf_id, UINT32); 13001 cmdline_parse_token_string_t cmd_vf_vlan_anti_spoof_on_off = 13002 TOKEN_STRING_INITIALIZER 13003 (struct cmd_vf_vlan_anti_spoof_result, 13004 on_off, "on#off"); 13005 13006 static void 13007 cmd_set_vf_vlan_anti_spoof_parsed( 13008 void *parsed_result, 13009 __attribute__((unused)) struct cmdline *cl, 13010 __attribute__((unused)) void *data) 13011 { 13012 struct cmd_vf_vlan_anti_spoof_result *res = parsed_result; 13013 int ret = -ENOTSUP; 13014 13015 __rte_unused int is_on = (strcmp(res->on_off, "on") == 0) ? 1 : 0; 13016 13017 if (port_id_is_invalid(res->port_id, ENABLED_WARN)) 13018 return; 13019 13020 #ifdef RTE_LIBRTE_IXGBE_PMD 13021 if (ret == -ENOTSUP) 13022 ret = rte_pmd_ixgbe_set_vf_vlan_anti_spoof(res->port_id, 13023 res->vf_id, is_on); 13024 #endif 13025 #ifdef RTE_LIBRTE_I40E_PMD 13026 if (ret == -ENOTSUP) 13027 ret = rte_pmd_i40e_set_vf_vlan_anti_spoof(res->port_id, 13028 res->vf_id, is_on); 13029 #endif 13030 #ifdef RTE_LIBRTE_BNXT_PMD 13031 if (ret == -ENOTSUP) 13032 ret = rte_pmd_bnxt_set_vf_vlan_anti_spoof(res->port_id, 13033 res->vf_id, is_on); 13034 #endif 13035 13036 switch (ret) { 13037 case 0: 13038 break; 13039 case -EINVAL: 13040 printf("invalid vf_id %d\n", res->vf_id); 13041 break; 13042 case -ENODEV: 13043 printf("invalid port_id %d\n", res->port_id); 13044 break; 13045 case -ENOTSUP: 13046 printf("function not implemented\n"); 13047 break; 13048 default: 13049 printf("programming error: (%s)\n", strerror(-ret)); 13050 } 13051 } 13052 13053 cmdline_parse_inst_t cmd_set_vf_vlan_anti_spoof = { 13054 .f = cmd_set_vf_vlan_anti_spoof_parsed, 13055 .data = NULL, 13056 .help_str = "set vf vlan antispoof <port_id> <vf_id> on|off", 13057 .tokens = { 13058 (void *)&cmd_vf_vlan_anti_spoof_set, 13059 (void *)&cmd_vf_vlan_anti_spoof_vf, 13060 (void *)&cmd_vf_vlan_anti_spoof_vlan, 13061 (void *)&cmd_vf_vlan_anti_spoof_antispoof, 13062 (void *)&cmd_vf_vlan_anti_spoof_port_id, 13063 (void *)&cmd_vf_vlan_anti_spoof_vf_id, 13064 (void *)&cmd_vf_vlan_anti_spoof_on_off, 13065 NULL, 13066 }, 13067 }; 13068 13069 /* vf mac anti spoof configuration */ 13070 13071 /* Common result structure for vf mac anti spoof */ 13072 struct cmd_vf_mac_anti_spoof_result { 13073 cmdline_fixed_string_t set; 13074 cmdline_fixed_string_t vf; 13075 cmdline_fixed_string_t mac; 13076 cmdline_fixed_string_t antispoof; 13077 portid_t port_id; 13078 uint32_t vf_id; 13079 cmdline_fixed_string_t on_off; 13080 }; 13081 13082 /* Common CLI fields for vf mac anti spoof enable disable */ 13083 cmdline_parse_token_string_t cmd_vf_mac_anti_spoof_set = 13084 TOKEN_STRING_INITIALIZER 13085 (struct cmd_vf_mac_anti_spoof_result, 13086 set, "set"); 13087 cmdline_parse_token_string_t cmd_vf_mac_anti_spoof_vf = 13088 TOKEN_STRING_INITIALIZER 13089 (struct cmd_vf_mac_anti_spoof_result, 13090 vf, "vf"); 13091 cmdline_parse_token_string_t cmd_vf_mac_anti_spoof_mac = 13092 TOKEN_STRING_INITIALIZER 13093 (struct cmd_vf_mac_anti_spoof_result, 13094 mac, "mac"); 13095 cmdline_parse_token_string_t cmd_vf_mac_anti_spoof_antispoof = 13096 TOKEN_STRING_INITIALIZER 13097 (struct cmd_vf_mac_anti_spoof_result, 13098 antispoof, "antispoof"); 13099 cmdline_parse_token_num_t cmd_vf_mac_anti_spoof_port_id = 13100 TOKEN_NUM_INITIALIZER 13101 (struct cmd_vf_mac_anti_spoof_result, 13102 port_id, UINT16); 13103 cmdline_parse_token_num_t cmd_vf_mac_anti_spoof_vf_id = 13104 TOKEN_NUM_INITIALIZER 13105 (struct cmd_vf_mac_anti_spoof_result, 13106 vf_id, UINT32); 13107 cmdline_parse_token_string_t cmd_vf_mac_anti_spoof_on_off = 13108 TOKEN_STRING_INITIALIZER 13109 (struct cmd_vf_mac_anti_spoof_result, 13110 on_off, "on#off"); 13111 13112 static void 13113 cmd_set_vf_mac_anti_spoof_parsed( 13114 void *parsed_result, 13115 __attribute__((unused)) struct cmdline *cl, 13116 __attribute__((unused)) void *data) 13117 { 13118 struct cmd_vf_mac_anti_spoof_result *res = parsed_result; 13119 int ret = -ENOTSUP; 13120 13121 __rte_unused int is_on = (strcmp(res->on_off, "on") == 0) ? 1 : 0; 13122 13123 if (port_id_is_invalid(res->port_id, ENABLED_WARN)) 13124 return; 13125 13126 #ifdef RTE_LIBRTE_IXGBE_PMD 13127 if (ret == -ENOTSUP) 13128 ret = rte_pmd_ixgbe_set_vf_mac_anti_spoof(res->port_id, 13129 res->vf_id, is_on); 13130 #endif 13131 #ifdef RTE_LIBRTE_I40E_PMD 13132 if (ret == -ENOTSUP) 13133 ret = rte_pmd_i40e_set_vf_mac_anti_spoof(res->port_id, 13134 res->vf_id, is_on); 13135 #endif 13136 #ifdef RTE_LIBRTE_BNXT_PMD 13137 if (ret == -ENOTSUP) 13138 ret = rte_pmd_bnxt_set_vf_mac_anti_spoof(res->port_id, 13139 res->vf_id, is_on); 13140 #endif 13141 13142 switch (ret) { 13143 case 0: 13144 break; 13145 case -EINVAL: 13146 printf("invalid vf_id %d or is_on %d\n", res->vf_id, is_on); 13147 break; 13148 case -ENODEV: 13149 printf("invalid port_id %d\n", res->port_id); 13150 break; 13151 case -ENOTSUP: 13152 printf("function not implemented\n"); 13153 break; 13154 default: 13155 printf("programming error: (%s)\n", strerror(-ret)); 13156 } 13157 } 13158 13159 cmdline_parse_inst_t cmd_set_vf_mac_anti_spoof = { 13160 .f = cmd_set_vf_mac_anti_spoof_parsed, 13161 .data = NULL, 13162 .help_str = "set vf mac antispoof <port_id> <vf_id> on|off", 13163 .tokens = { 13164 (void *)&cmd_vf_mac_anti_spoof_set, 13165 (void *)&cmd_vf_mac_anti_spoof_vf, 13166 (void *)&cmd_vf_mac_anti_spoof_mac, 13167 (void *)&cmd_vf_mac_anti_spoof_antispoof, 13168 (void *)&cmd_vf_mac_anti_spoof_port_id, 13169 (void *)&cmd_vf_mac_anti_spoof_vf_id, 13170 (void *)&cmd_vf_mac_anti_spoof_on_off, 13171 NULL, 13172 }, 13173 }; 13174 13175 /* vf vlan strip queue configuration */ 13176 13177 /* Common result structure for vf mac anti spoof */ 13178 struct cmd_vf_vlan_stripq_result { 13179 cmdline_fixed_string_t set; 13180 cmdline_fixed_string_t vf; 13181 cmdline_fixed_string_t vlan; 13182 cmdline_fixed_string_t stripq; 13183 portid_t port_id; 13184 uint16_t vf_id; 13185 cmdline_fixed_string_t on_off; 13186 }; 13187 13188 /* Common CLI fields for vf vlan strip enable disable */ 13189 cmdline_parse_token_string_t cmd_vf_vlan_stripq_set = 13190 TOKEN_STRING_INITIALIZER 13191 (struct cmd_vf_vlan_stripq_result, 13192 set, "set"); 13193 cmdline_parse_token_string_t cmd_vf_vlan_stripq_vf = 13194 TOKEN_STRING_INITIALIZER 13195 (struct cmd_vf_vlan_stripq_result, 13196 vf, "vf"); 13197 cmdline_parse_token_string_t cmd_vf_vlan_stripq_vlan = 13198 TOKEN_STRING_INITIALIZER 13199 (struct cmd_vf_vlan_stripq_result, 13200 vlan, "vlan"); 13201 cmdline_parse_token_string_t cmd_vf_vlan_stripq_stripq = 13202 TOKEN_STRING_INITIALIZER 13203 (struct cmd_vf_vlan_stripq_result, 13204 stripq, "stripq"); 13205 cmdline_parse_token_num_t cmd_vf_vlan_stripq_port_id = 13206 TOKEN_NUM_INITIALIZER 13207 (struct cmd_vf_vlan_stripq_result, 13208 port_id, UINT16); 13209 cmdline_parse_token_num_t cmd_vf_vlan_stripq_vf_id = 13210 TOKEN_NUM_INITIALIZER 13211 (struct cmd_vf_vlan_stripq_result, 13212 vf_id, UINT16); 13213 cmdline_parse_token_string_t cmd_vf_vlan_stripq_on_off = 13214 TOKEN_STRING_INITIALIZER 13215 (struct cmd_vf_vlan_stripq_result, 13216 on_off, "on#off"); 13217 13218 static void 13219 cmd_set_vf_vlan_stripq_parsed( 13220 void *parsed_result, 13221 __attribute__((unused)) struct cmdline *cl, 13222 __attribute__((unused)) void *data) 13223 { 13224 struct cmd_vf_vlan_stripq_result *res = parsed_result; 13225 int ret = -ENOTSUP; 13226 13227 __rte_unused int is_on = (strcmp(res->on_off, "on") == 0) ? 1 : 0; 13228 13229 if (port_id_is_invalid(res->port_id, ENABLED_WARN)) 13230 return; 13231 13232 #ifdef RTE_LIBRTE_IXGBE_PMD 13233 if (ret == -ENOTSUP) 13234 ret = rte_pmd_ixgbe_set_vf_vlan_stripq(res->port_id, 13235 res->vf_id, is_on); 13236 #endif 13237 #ifdef RTE_LIBRTE_I40E_PMD 13238 if (ret == -ENOTSUP) 13239 ret = rte_pmd_i40e_set_vf_vlan_stripq(res->port_id, 13240 res->vf_id, is_on); 13241 #endif 13242 #ifdef RTE_LIBRTE_BNXT_PMD 13243 if (ret == -ENOTSUP) 13244 ret = rte_pmd_bnxt_set_vf_vlan_stripq(res->port_id, 13245 res->vf_id, is_on); 13246 #endif 13247 13248 switch (ret) { 13249 case 0: 13250 break; 13251 case -EINVAL: 13252 printf("invalid vf_id %d or is_on %d\n", res->vf_id, is_on); 13253 break; 13254 case -ENODEV: 13255 printf("invalid port_id %d\n", res->port_id); 13256 break; 13257 case -ENOTSUP: 13258 printf("function not implemented\n"); 13259 break; 13260 default: 13261 printf("programming error: (%s)\n", strerror(-ret)); 13262 } 13263 } 13264 13265 cmdline_parse_inst_t cmd_set_vf_vlan_stripq = { 13266 .f = cmd_set_vf_vlan_stripq_parsed, 13267 .data = NULL, 13268 .help_str = "set vf vlan stripq <port_id> <vf_id> on|off", 13269 .tokens = { 13270 (void *)&cmd_vf_vlan_stripq_set, 13271 (void *)&cmd_vf_vlan_stripq_vf, 13272 (void *)&cmd_vf_vlan_stripq_vlan, 13273 (void *)&cmd_vf_vlan_stripq_stripq, 13274 (void *)&cmd_vf_vlan_stripq_port_id, 13275 (void *)&cmd_vf_vlan_stripq_vf_id, 13276 (void *)&cmd_vf_vlan_stripq_on_off, 13277 NULL, 13278 }, 13279 }; 13280 13281 /* vf vlan insert configuration */ 13282 13283 /* Common result structure for vf vlan insert */ 13284 struct cmd_vf_vlan_insert_result { 13285 cmdline_fixed_string_t set; 13286 cmdline_fixed_string_t vf; 13287 cmdline_fixed_string_t vlan; 13288 cmdline_fixed_string_t insert; 13289 portid_t port_id; 13290 uint16_t vf_id; 13291 uint16_t vlan_id; 13292 }; 13293 13294 /* Common CLI fields for vf vlan insert enable disable */ 13295 cmdline_parse_token_string_t cmd_vf_vlan_insert_set = 13296 TOKEN_STRING_INITIALIZER 13297 (struct cmd_vf_vlan_insert_result, 13298 set, "set"); 13299 cmdline_parse_token_string_t cmd_vf_vlan_insert_vf = 13300 TOKEN_STRING_INITIALIZER 13301 (struct cmd_vf_vlan_insert_result, 13302 vf, "vf"); 13303 cmdline_parse_token_string_t cmd_vf_vlan_insert_vlan = 13304 TOKEN_STRING_INITIALIZER 13305 (struct cmd_vf_vlan_insert_result, 13306 vlan, "vlan"); 13307 cmdline_parse_token_string_t cmd_vf_vlan_insert_insert = 13308 TOKEN_STRING_INITIALIZER 13309 (struct cmd_vf_vlan_insert_result, 13310 insert, "insert"); 13311 cmdline_parse_token_num_t cmd_vf_vlan_insert_port_id = 13312 TOKEN_NUM_INITIALIZER 13313 (struct cmd_vf_vlan_insert_result, 13314 port_id, UINT16); 13315 cmdline_parse_token_num_t cmd_vf_vlan_insert_vf_id = 13316 TOKEN_NUM_INITIALIZER 13317 (struct cmd_vf_vlan_insert_result, 13318 vf_id, UINT16); 13319 cmdline_parse_token_num_t cmd_vf_vlan_insert_vlan_id = 13320 TOKEN_NUM_INITIALIZER 13321 (struct cmd_vf_vlan_insert_result, 13322 vlan_id, UINT16); 13323 13324 static void 13325 cmd_set_vf_vlan_insert_parsed( 13326 void *parsed_result, 13327 __attribute__((unused)) struct cmdline *cl, 13328 __attribute__((unused)) void *data) 13329 { 13330 struct cmd_vf_vlan_insert_result *res = parsed_result; 13331 int ret = -ENOTSUP; 13332 13333 if (port_id_is_invalid(res->port_id, ENABLED_WARN)) 13334 return; 13335 13336 #ifdef RTE_LIBRTE_IXGBE_PMD 13337 if (ret == -ENOTSUP) 13338 ret = rte_pmd_ixgbe_set_vf_vlan_insert(res->port_id, res->vf_id, 13339 res->vlan_id); 13340 #endif 13341 #ifdef RTE_LIBRTE_I40E_PMD 13342 if (ret == -ENOTSUP) 13343 ret = rte_pmd_i40e_set_vf_vlan_insert(res->port_id, res->vf_id, 13344 res->vlan_id); 13345 #endif 13346 #ifdef RTE_LIBRTE_BNXT_PMD 13347 if (ret == -ENOTSUP) 13348 ret = rte_pmd_bnxt_set_vf_vlan_insert(res->port_id, res->vf_id, 13349 res->vlan_id); 13350 #endif 13351 13352 switch (ret) { 13353 case 0: 13354 break; 13355 case -EINVAL: 13356 printf("invalid vf_id %d or vlan_id %d\n", res->vf_id, res->vlan_id); 13357 break; 13358 case -ENODEV: 13359 printf("invalid port_id %d\n", res->port_id); 13360 break; 13361 case -ENOTSUP: 13362 printf("function not implemented\n"); 13363 break; 13364 default: 13365 printf("programming error: (%s)\n", strerror(-ret)); 13366 } 13367 } 13368 13369 cmdline_parse_inst_t cmd_set_vf_vlan_insert = { 13370 .f = cmd_set_vf_vlan_insert_parsed, 13371 .data = NULL, 13372 .help_str = "set vf vlan insert <port_id> <vf_id> <vlan_id>", 13373 .tokens = { 13374 (void *)&cmd_vf_vlan_insert_set, 13375 (void *)&cmd_vf_vlan_insert_vf, 13376 (void *)&cmd_vf_vlan_insert_vlan, 13377 (void *)&cmd_vf_vlan_insert_insert, 13378 (void *)&cmd_vf_vlan_insert_port_id, 13379 (void *)&cmd_vf_vlan_insert_vf_id, 13380 (void *)&cmd_vf_vlan_insert_vlan_id, 13381 NULL, 13382 }, 13383 }; 13384 13385 /* tx loopback configuration */ 13386 13387 /* Common result structure for tx loopback */ 13388 struct cmd_tx_loopback_result { 13389 cmdline_fixed_string_t set; 13390 cmdline_fixed_string_t tx; 13391 cmdline_fixed_string_t loopback; 13392 portid_t port_id; 13393 cmdline_fixed_string_t on_off; 13394 }; 13395 13396 /* Common CLI fields for tx loopback enable disable */ 13397 cmdline_parse_token_string_t cmd_tx_loopback_set = 13398 TOKEN_STRING_INITIALIZER 13399 (struct cmd_tx_loopback_result, 13400 set, "set"); 13401 cmdline_parse_token_string_t cmd_tx_loopback_tx = 13402 TOKEN_STRING_INITIALIZER 13403 (struct cmd_tx_loopback_result, 13404 tx, "tx"); 13405 cmdline_parse_token_string_t cmd_tx_loopback_loopback = 13406 TOKEN_STRING_INITIALIZER 13407 (struct cmd_tx_loopback_result, 13408 loopback, "loopback"); 13409 cmdline_parse_token_num_t cmd_tx_loopback_port_id = 13410 TOKEN_NUM_INITIALIZER 13411 (struct cmd_tx_loopback_result, 13412 port_id, UINT16); 13413 cmdline_parse_token_string_t cmd_tx_loopback_on_off = 13414 TOKEN_STRING_INITIALIZER 13415 (struct cmd_tx_loopback_result, 13416 on_off, "on#off"); 13417 13418 static void 13419 cmd_set_tx_loopback_parsed( 13420 void *parsed_result, 13421 __attribute__((unused)) struct cmdline *cl, 13422 __attribute__((unused)) void *data) 13423 { 13424 struct cmd_tx_loopback_result *res = parsed_result; 13425 int ret = -ENOTSUP; 13426 13427 __rte_unused int is_on = (strcmp(res->on_off, "on") == 0) ? 1 : 0; 13428 13429 if (port_id_is_invalid(res->port_id, ENABLED_WARN)) 13430 return; 13431 13432 #ifdef RTE_LIBRTE_IXGBE_PMD 13433 if (ret == -ENOTSUP) 13434 ret = rte_pmd_ixgbe_set_tx_loopback(res->port_id, is_on); 13435 #endif 13436 #ifdef RTE_LIBRTE_I40E_PMD 13437 if (ret == -ENOTSUP) 13438 ret = rte_pmd_i40e_set_tx_loopback(res->port_id, is_on); 13439 #endif 13440 #ifdef RTE_LIBRTE_BNXT_PMD 13441 if (ret == -ENOTSUP) 13442 ret = rte_pmd_bnxt_set_tx_loopback(res->port_id, is_on); 13443 #endif 13444 #if defined RTE_LIBRTE_DPAA_BUS && defined RTE_LIBRTE_DPAA_PMD 13445 if (ret == -ENOTSUP) 13446 ret = rte_pmd_dpaa_set_tx_loopback(res->port_id, is_on); 13447 #endif 13448 13449 switch (ret) { 13450 case 0: 13451 break; 13452 case -EINVAL: 13453 printf("invalid is_on %d\n", is_on); 13454 break; 13455 case -ENODEV: 13456 printf("invalid port_id %d\n", res->port_id); 13457 break; 13458 case -ENOTSUP: 13459 printf("function not implemented\n"); 13460 break; 13461 default: 13462 printf("programming error: (%s)\n", strerror(-ret)); 13463 } 13464 } 13465 13466 cmdline_parse_inst_t cmd_set_tx_loopback = { 13467 .f = cmd_set_tx_loopback_parsed, 13468 .data = NULL, 13469 .help_str = "set tx loopback <port_id> on|off", 13470 .tokens = { 13471 (void *)&cmd_tx_loopback_set, 13472 (void *)&cmd_tx_loopback_tx, 13473 (void *)&cmd_tx_loopback_loopback, 13474 (void *)&cmd_tx_loopback_port_id, 13475 (void *)&cmd_tx_loopback_on_off, 13476 NULL, 13477 }, 13478 }; 13479 13480 /* all queues drop enable configuration */ 13481 13482 /* Common result structure for all queues drop enable */ 13483 struct cmd_all_queues_drop_en_result { 13484 cmdline_fixed_string_t set; 13485 cmdline_fixed_string_t all; 13486 cmdline_fixed_string_t queues; 13487 cmdline_fixed_string_t drop; 13488 portid_t port_id; 13489 cmdline_fixed_string_t on_off; 13490 }; 13491 13492 /* Common CLI fields for tx loopback enable disable */ 13493 cmdline_parse_token_string_t cmd_all_queues_drop_en_set = 13494 TOKEN_STRING_INITIALIZER 13495 (struct cmd_all_queues_drop_en_result, 13496 set, "set"); 13497 cmdline_parse_token_string_t cmd_all_queues_drop_en_all = 13498 TOKEN_STRING_INITIALIZER 13499 (struct cmd_all_queues_drop_en_result, 13500 all, "all"); 13501 cmdline_parse_token_string_t cmd_all_queues_drop_en_queues = 13502 TOKEN_STRING_INITIALIZER 13503 (struct cmd_all_queues_drop_en_result, 13504 queues, "queues"); 13505 cmdline_parse_token_string_t cmd_all_queues_drop_en_drop = 13506 TOKEN_STRING_INITIALIZER 13507 (struct cmd_all_queues_drop_en_result, 13508 drop, "drop"); 13509 cmdline_parse_token_num_t cmd_all_queues_drop_en_port_id = 13510 TOKEN_NUM_INITIALIZER 13511 (struct cmd_all_queues_drop_en_result, 13512 port_id, UINT16); 13513 cmdline_parse_token_string_t cmd_all_queues_drop_en_on_off = 13514 TOKEN_STRING_INITIALIZER 13515 (struct cmd_all_queues_drop_en_result, 13516 on_off, "on#off"); 13517 13518 static void 13519 cmd_set_all_queues_drop_en_parsed( 13520 void *parsed_result, 13521 __attribute__((unused)) struct cmdline *cl, 13522 __attribute__((unused)) void *data) 13523 { 13524 struct cmd_all_queues_drop_en_result *res = parsed_result; 13525 int ret = -ENOTSUP; 13526 int is_on = (strcmp(res->on_off, "on") == 0) ? 1 : 0; 13527 13528 if (port_id_is_invalid(res->port_id, ENABLED_WARN)) 13529 return; 13530 13531 #ifdef RTE_LIBRTE_IXGBE_PMD 13532 if (ret == -ENOTSUP) 13533 ret = rte_pmd_ixgbe_set_all_queues_drop_en(res->port_id, is_on); 13534 #endif 13535 #ifdef RTE_LIBRTE_BNXT_PMD 13536 if (ret == -ENOTSUP) 13537 ret = rte_pmd_bnxt_set_all_queues_drop_en(res->port_id, is_on); 13538 #endif 13539 switch (ret) { 13540 case 0: 13541 break; 13542 case -EINVAL: 13543 printf("invalid is_on %d\n", is_on); 13544 break; 13545 case -ENODEV: 13546 printf("invalid port_id %d\n", res->port_id); 13547 break; 13548 case -ENOTSUP: 13549 printf("function not implemented\n"); 13550 break; 13551 default: 13552 printf("programming error: (%s)\n", strerror(-ret)); 13553 } 13554 } 13555 13556 cmdline_parse_inst_t cmd_set_all_queues_drop_en = { 13557 .f = cmd_set_all_queues_drop_en_parsed, 13558 .data = NULL, 13559 .help_str = "set all queues drop <port_id> on|off", 13560 .tokens = { 13561 (void *)&cmd_all_queues_drop_en_set, 13562 (void *)&cmd_all_queues_drop_en_all, 13563 (void *)&cmd_all_queues_drop_en_queues, 13564 (void *)&cmd_all_queues_drop_en_drop, 13565 (void *)&cmd_all_queues_drop_en_port_id, 13566 (void *)&cmd_all_queues_drop_en_on_off, 13567 NULL, 13568 }, 13569 }; 13570 13571 /* vf split drop enable configuration */ 13572 13573 /* Common result structure for vf split drop enable */ 13574 struct cmd_vf_split_drop_en_result { 13575 cmdline_fixed_string_t set; 13576 cmdline_fixed_string_t vf; 13577 cmdline_fixed_string_t split; 13578 cmdline_fixed_string_t drop; 13579 portid_t port_id; 13580 uint16_t vf_id; 13581 cmdline_fixed_string_t on_off; 13582 }; 13583 13584 /* Common CLI fields for vf split drop enable disable */ 13585 cmdline_parse_token_string_t cmd_vf_split_drop_en_set = 13586 TOKEN_STRING_INITIALIZER 13587 (struct cmd_vf_split_drop_en_result, 13588 set, "set"); 13589 cmdline_parse_token_string_t cmd_vf_split_drop_en_vf = 13590 TOKEN_STRING_INITIALIZER 13591 (struct cmd_vf_split_drop_en_result, 13592 vf, "vf"); 13593 cmdline_parse_token_string_t cmd_vf_split_drop_en_split = 13594 TOKEN_STRING_INITIALIZER 13595 (struct cmd_vf_split_drop_en_result, 13596 split, "split"); 13597 cmdline_parse_token_string_t cmd_vf_split_drop_en_drop = 13598 TOKEN_STRING_INITIALIZER 13599 (struct cmd_vf_split_drop_en_result, 13600 drop, "drop"); 13601 cmdline_parse_token_num_t cmd_vf_split_drop_en_port_id = 13602 TOKEN_NUM_INITIALIZER 13603 (struct cmd_vf_split_drop_en_result, 13604 port_id, UINT16); 13605 cmdline_parse_token_num_t cmd_vf_split_drop_en_vf_id = 13606 TOKEN_NUM_INITIALIZER 13607 (struct cmd_vf_split_drop_en_result, 13608 vf_id, UINT16); 13609 cmdline_parse_token_string_t cmd_vf_split_drop_en_on_off = 13610 TOKEN_STRING_INITIALIZER 13611 (struct cmd_vf_split_drop_en_result, 13612 on_off, "on#off"); 13613 13614 static void 13615 cmd_set_vf_split_drop_en_parsed( 13616 void *parsed_result, 13617 __attribute__((unused)) struct cmdline *cl, 13618 __attribute__((unused)) void *data) 13619 { 13620 struct cmd_vf_split_drop_en_result *res = parsed_result; 13621 int ret = -ENOTSUP; 13622 int is_on = (strcmp(res->on_off, "on") == 0) ? 1 : 0; 13623 13624 if (port_id_is_invalid(res->port_id, ENABLED_WARN)) 13625 return; 13626 13627 #ifdef RTE_LIBRTE_IXGBE_PMD 13628 ret = rte_pmd_ixgbe_set_vf_split_drop_en(res->port_id, res->vf_id, 13629 is_on); 13630 #endif 13631 switch (ret) { 13632 case 0: 13633 break; 13634 case -EINVAL: 13635 printf("invalid vf_id %d or is_on %d\n", res->vf_id, is_on); 13636 break; 13637 case -ENODEV: 13638 printf("invalid port_id %d\n", res->port_id); 13639 break; 13640 case -ENOTSUP: 13641 printf("not supported on port %d\n", res->port_id); 13642 break; 13643 default: 13644 printf("programming error: (%s)\n", strerror(-ret)); 13645 } 13646 } 13647 13648 cmdline_parse_inst_t cmd_set_vf_split_drop_en = { 13649 .f = cmd_set_vf_split_drop_en_parsed, 13650 .data = NULL, 13651 .help_str = "set vf split drop <port_id> <vf_id> on|off", 13652 .tokens = { 13653 (void *)&cmd_vf_split_drop_en_set, 13654 (void *)&cmd_vf_split_drop_en_vf, 13655 (void *)&cmd_vf_split_drop_en_split, 13656 (void *)&cmd_vf_split_drop_en_drop, 13657 (void *)&cmd_vf_split_drop_en_port_id, 13658 (void *)&cmd_vf_split_drop_en_vf_id, 13659 (void *)&cmd_vf_split_drop_en_on_off, 13660 NULL, 13661 }, 13662 }; 13663 13664 /* vf mac address configuration */ 13665 13666 /* Common result structure for vf mac address */ 13667 struct cmd_set_vf_mac_addr_result { 13668 cmdline_fixed_string_t set; 13669 cmdline_fixed_string_t vf; 13670 cmdline_fixed_string_t mac; 13671 cmdline_fixed_string_t addr; 13672 portid_t port_id; 13673 uint16_t vf_id; 13674 struct ether_addr mac_addr; 13675 13676 }; 13677 13678 /* Common CLI fields for vf split drop enable disable */ 13679 cmdline_parse_token_string_t cmd_set_vf_mac_addr_set = 13680 TOKEN_STRING_INITIALIZER 13681 (struct cmd_set_vf_mac_addr_result, 13682 set, "set"); 13683 cmdline_parse_token_string_t cmd_set_vf_mac_addr_vf = 13684 TOKEN_STRING_INITIALIZER 13685 (struct cmd_set_vf_mac_addr_result, 13686 vf, "vf"); 13687 cmdline_parse_token_string_t cmd_set_vf_mac_addr_mac = 13688 TOKEN_STRING_INITIALIZER 13689 (struct cmd_set_vf_mac_addr_result, 13690 mac, "mac"); 13691 cmdline_parse_token_string_t cmd_set_vf_mac_addr_addr = 13692 TOKEN_STRING_INITIALIZER 13693 (struct cmd_set_vf_mac_addr_result, 13694 addr, "addr"); 13695 cmdline_parse_token_num_t cmd_set_vf_mac_addr_port_id = 13696 TOKEN_NUM_INITIALIZER 13697 (struct cmd_set_vf_mac_addr_result, 13698 port_id, UINT16); 13699 cmdline_parse_token_num_t cmd_set_vf_mac_addr_vf_id = 13700 TOKEN_NUM_INITIALIZER 13701 (struct cmd_set_vf_mac_addr_result, 13702 vf_id, UINT16); 13703 cmdline_parse_token_etheraddr_t cmd_set_vf_mac_addr_mac_addr = 13704 TOKEN_ETHERADDR_INITIALIZER(struct cmd_set_vf_mac_addr_result, 13705 mac_addr); 13706 13707 static void 13708 cmd_set_vf_mac_addr_parsed( 13709 void *parsed_result, 13710 __attribute__((unused)) struct cmdline *cl, 13711 __attribute__((unused)) void *data) 13712 { 13713 struct cmd_set_vf_mac_addr_result *res = parsed_result; 13714 int ret = -ENOTSUP; 13715 13716 if (port_id_is_invalid(res->port_id, ENABLED_WARN)) 13717 return; 13718 13719 #ifdef RTE_LIBRTE_IXGBE_PMD 13720 if (ret == -ENOTSUP) 13721 ret = rte_pmd_ixgbe_set_vf_mac_addr(res->port_id, res->vf_id, 13722 &res->mac_addr); 13723 #endif 13724 #ifdef RTE_LIBRTE_I40E_PMD 13725 if (ret == -ENOTSUP) 13726 ret = rte_pmd_i40e_set_vf_mac_addr(res->port_id, res->vf_id, 13727 &res->mac_addr); 13728 #endif 13729 #ifdef RTE_LIBRTE_BNXT_PMD 13730 if (ret == -ENOTSUP) 13731 ret = rte_pmd_bnxt_set_vf_mac_addr(res->port_id, res->vf_id, 13732 &res->mac_addr); 13733 #endif 13734 13735 switch (ret) { 13736 case 0: 13737 break; 13738 case -EINVAL: 13739 printf("invalid vf_id %d or mac_addr\n", res->vf_id); 13740 break; 13741 case -ENODEV: 13742 printf("invalid port_id %d\n", res->port_id); 13743 break; 13744 case -ENOTSUP: 13745 printf("function not implemented\n"); 13746 break; 13747 default: 13748 printf("programming error: (%s)\n", strerror(-ret)); 13749 } 13750 } 13751 13752 cmdline_parse_inst_t cmd_set_vf_mac_addr = { 13753 .f = cmd_set_vf_mac_addr_parsed, 13754 .data = NULL, 13755 .help_str = "set vf mac addr <port_id> <vf_id> <mac_addr>", 13756 .tokens = { 13757 (void *)&cmd_set_vf_mac_addr_set, 13758 (void *)&cmd_set_vf_mac_addr_vf, 13759 (void *)&cmd_set_vf_mac_addr_mac, 13760 (void *)&cmd_set_vf_mac_addr_addr, 13761 (void *)&cmd_set_vf_mac_addr_port_id, 13762 (void *)&cmd_set_vf_mac_addr_vf_id, 13763 (void *)&cmd_set_vf_mac_addr_mac_addr, 13764 NULL, 13765 }, 13766 }; 13767 13768 /* MACsec configuration */ 13769 13770 /* Common result structure for MACsec offload enable */ 13771 struct cmd_macsec_offload_on_result { 13772 cmdline_fixed_string_t set; 13773 cmdline_fixed_string_t macsec; 13774 cmdline_fixed_string_t offload; 13775 portid_t port_id; 13776 cmdline_fixed_string_t on; 13777 cmdline_fixed_string_t encrypt; 13778 cmdline_fixed_string_t en_on_off; 13779 cmdline_fixed_string_t replay_protect; 13780 cmdline_fixed_string_t rp_on_off; 13781 }; 13782 13783 /* Common CLI fields for MACsec offload disable */ 13784 cmdline_parse_token_string_t cmd_macsec_offload_on_set = 13785 TOKEN_STRING_INITIALIZER 13786 (struct cmd_macsec_offload_on_result, 13787 set, "set"); 13788 cmdline_parse_token_string_t cmd_macsec_offload_on_macsec = 13789 TOKEN_STRING_INITIALIZER 13790 (struct cmd_macsec_offload_on_result, 13791 macsec, "macsec"); 13792 cmdline_parse_token_string_t cmd_macsec_offload_on_offload = 13793 TOKEN_STRING_INITIALIZER 13794 (struct cmd_macsec_offload_on_result, 13795 offload, "offload"); 13796 cmdline_parse_token_num_t cmd_macsec_offload_on_port_id = 13797 TOKEN_NUM_INITIALIZER 13798 (struct cmd_macsec_offload_on_result, 13799 port_id, UINT16); 13800 cmdline_parse_token_string_t cmd_macsec_offload_on_on = 13801 TOKEN_STRING_INITIALIZER 13802 (struct cmd_macsec_offload_on_result, 13803 on, "on"); 13804 cmdline_parse_token_string_t cmd_macsec_offload_on_encrypt = 13805 TOKEN_STRING_INITIALIZER 13806 (struct cmd_macsec_offload_on_result, 13807 encrypt, "encrypt"); 13808 cmdline_parse_token_string_t cmd_macsec_offload_on_en_on_off = 13809 TOKEN_STRING_INITIALIZER 13810 (struct cmd_macsec_offload_on_result, 13811 en_on_off, "on#off"); 13812 cmdline_parse_token_string_t cmd_macsec_offload_on_replay_protect = 13813 TOKEN_STRING_INITIALIZER 13814 (struct cmd_macsec_offload_on_result, 13815 replay_protect, "replay-protect"); 13816 cmdline_parse_token_string_t cmd_macsec_offload_on_rp_on_off = 13817 TOKEN_STRING_INITIALIZER 13818 (struct cmd_macsec_offload_on_result, 13819 rp_on_off, "on#off"); 13820 13821 static void 13822 cmd_set_macsec_offload_on_parsed( 13823 void *parsed_result, 13824 __attribute__((unused)) struct cmdline *cl, 13825 __attribute__((unused)) void *data) 13826 { 13827 struct cmd_macsec_offload_on_result *res = parsed_result; 13828 int ret = -ENOTSUP; 13829 portid_t port_id = res->port_id; 13830 int en = (strcmp(res->en_on_off, "on") == 0) ? 1 : 0; 13831 int rp = (strcmp(res->rp_on_off, "on") == 0) ? 1 : 0; 13832 struct rte_eth_dev_info dev_info; 13833 13834 if (port_id_is_invalid(port_id, ENABLED_WARN)) 13835 return; 13836 if (!port_is_stopped(port_id)) { 13837 printf("Please stop port %d first\n", port_id); 13838 return; 13839 } 13840 13841 rte_eth_dev_info_get(port_id, &dev_info); 13842 if (dev_info.tx_offload_capa & DEV_TX_OFFLOAD_MACSEC_INSERT) { 13843 #ifdef RTE_LIBRTE_IXGBE_PMD 13844 ret = rte_pmd_ixgbe_macsec_enable(port_id, en, rp); 13845 #endif 13846 } 13847 RTE_SET_USED(en); 13848 RTE_SET_USED(rp); 13849 13850 switch (ret) { 13851 case 0: 13852 ports[port_id].dev_conf.txmode.offloads |= 13853 DEV_TX_OFFLOAD_MACSEC_INSERT; 13854 cmd_reconfig_device_queue(port_id, 1, 1); 13855 break; 13856 case -ENODEV: 13857 printf("invalid port_id %d\n", port_id); 13858 break; 13859 case -ENOTSUP: 13860 printf("not supported on port %d\n", port_id); 13861 break; 13862 default: 13863 printf("programming error: (%s)\n", strerror(-ret)); 13864 } 13865 } 13866 13867 cmdline_parse_inst_t cmd_set_macsec_offload_on = { 13868 .f = cmd_set_macsec_offload_on_parsed, 13869 .data = NULL, 13870 .help_str = "set macsec offload <port_id> on " 13871 "encrypt on|off replay-protect on|off", 13872 .tokens = { 13873 (void *)&cmd_macsec_offload_on_set, 13874 (void *)&cmd_macsec_offload_on_macsec, 13875 (void *)&cmd_macsec_offload_on_offload, 13876 (void *)&cmd_macsec_offload_on_port_id, 13877 (void *)&cmd_macsec_offload_on_on, 13878 (void *)&cmd_macsec_offload_on_encrypt, 13879 (void *)&cmd_macsec_offload_on_en_on_off, 13880 (void *)&cmd_macsec_offload_on_replay_protect, 13881 (void *)&cmd_macsec_offload_on_rp_on_off, 13882 NULL, 13883 }, 13884 }; 13885 13886 /* Common result structure for MACsec offload disable */ 13887 struct cmd_macsec_offload_off_result { 13888 cmdline_fixed_string_t set; 13889 cmdline_fixed_string_t macsec; 13890 cmdline_fixed_string_t offload; 13891 portid_t port_id; 13892 cmdline_fixed_string_t off; 13893 }; 13894 13895 /* Common CLI fields for MACsec offload disable */ 13896 cmdline_parse_token_string_t cmd_macsec_offload_off_set = 13897 TOKEN_STRING_INITIALIZER 13898 (struct cmd_macsec_offload_off_result, 13899 set, "set"); 13900 cmdline_parse_token_string_t cmd_macsec_offload_off_macsec = 13901 TOKEN_STRING_INITIALIZER 13902 (struct cmd_macsec_offload_off_result, 13903 macsec, "macsec"); 13904 cmdline_parse_token_string_t cmd_macsec_offload_off_offload = 13905 TOKEN_STRING_INITIALIZER 13906 (struct cmd_macsec_offload_off_result, 13907 offload, "offload"); 13908 cmdline_parse_token_num_t cmd_macsec_offload_off_port_id = 13909 TOKEN_NUM_INITIALIZER 13910 (struct cmd_macsec_offload_off_result, 13911 port_id, UINT16); 13912 cmdline_parse_token_string_t cmd_macsec_offload_off_off = 13913 TOKEN_STRING_INITIALIZER 13914 (struct cmd_macsec_offload_off_result, 13915 off, "off"); 13916 13917 static void 13918 cmd_set_macsec_offload_off_parsed( 13919 void *parsed_result, 13920 __attribute__((unused)) struct cmdline *cl, 13921 __attribute__((unused)) void *data) 13922 { 13923 struct cmd_macsec_offload_off_result *res = parsed_result; 13924 int ret = -ENOTSUP; 13925 struct rte_eth_dev_info dev_info; 13926 portid_t port_id = res->port_id; 13927 13928 if (port_id_is_invalid(port_id, ENABLED_WARN)) 13929 return; 13930 if (!port_is_stopped(port_id)) { 13931 printf("Please stop port %d first\n", port_id); 13932 return; 13933 } 13934 13935 rte_eth_dev_info_get(port_id, &dev_info); 13936 if (dev_info.tx_offload_capa & DEV_TX_OFFLOAD_MACSEC_INSERT) { 13937 #ifdef RTE_LIBRTE_IXGBE_PMD 13938 ret = rte_pmd_ixgbe_macsec_disable(port_id); 13939 #endif 13940 } 13941 switch (ret) { 13942 case 0: 13943 ports[port_id].dev_conf.txmode.offloads &= 13944 ~DEV_TX_OFFLOAD_MACSEC_INSERT; 13945 cmd_reconfig_device_queue(port_id, 1, 1); 13946 break; 13947 case -ENODEV: 13948 printf("invalid port_id %d\n", port_id); 13949 break; 13950 case -ENOTSUP: 13951 printf("not supported on port %d\n", port_id); 13952 break; 13953 default: 13954 printf("programming error: (%s)\n", strerror(-ret)); 13955 } 13956 } 13957 13958 cmdline_parse_inst_t cmd_set_macsec_offload_off = { 13959 .f = cmd_set_macsec_offload_off_parsed, 13960 .data = NULL, 13961 .help_str = "set macsec offload <port_id> off", 13962 .tokens = { 13963 (void *)&cmd_macsec_offload_off_set, 13964 (void *)&cmd_macsec_offload_off_macsec, 13965 (void *)&cmd_macsec_offload_off_offload, 13966 (void *)&cmd_macsec_offload_off_port_id, 13967 (void *)&cmd_macsec_offload_off_off, 13968 NULL, 13969 }, 13970 }; 13971 13972 /* Common result structure for MACsec secure connection configure */ 13973 struct cmd_macsec_sc_result { 13974 cmdline_fixed_string_t set; 13975 cmdline_fixed_string_t macsec; 13976 cmdline_fixed_string_t sc; 13977 cmdline_fixed_string_t tx_rx; 13978 portid_t port_id; 13979 struct ether_addr mac; 13980 uint16_t pi; 13981 }; 13982 13983 /* Common CLI fields for MACsec secure connection configure */ 13984 cmdline_parse_token_string_t cmd_macsec_sc_set = 13985 TOKEN_STRING_INITIALIZER 13986 (struct cmd_macsec_sc_result, 13987 set, "set"); 13988 cmdline_parse_token_string_t cmd_macsec_sc_macsec = 13989 TOKEN_STRING_INITIALIZER 13990 (struct cmd_macsec_sc_result, 13991 macsec, "macsec"); 13992 cmdline_parse_token_string_t cmd_macsec_sc_sc = 13993 TOKEN_STRING_INITIALIZER 13994 (struct cmd_macsec_sc_result, 13995 sc, "sc"); 13996 cmdline_parse_token_string_t cmd_macsec_sc_tx_rx = 13997 TOKEN_STRING_INITIALIZER 13998 (struct cmd_macsec_sc_result, 13999 tx_rx, "tx#rx"); 14000 cmdline_parse_token_num_t cmd_macsec_sc_port_id = 14001 TOKEN_NUM_INITIALIZER 14002 (struct cmd_macsec_sc_result, 14003 port_id, UINT16); 14004 cmdline_parse_token_etheraddr_t cmd_macsec_sc_mac = 14005 TOKEN_ETHERADDR_INITIALIZER 14006 (struct cmd_macsec_sc_result, 14007 mac); 14008 cmdline_parse_token_num_t cmd_macsec_sc_pi = 14009 TOKEN_NUM_INITIALIZER 14010 (struct cmd_macsec_sc_result, 14011 pi, UINT16); 14012 14013 static void 14014 cmd_set_macsec_sc_parsed( 14015 void *parsed_result, 14016 __attribute__((unused)) struct cmdline *cl, 14017 __attribute__((unused)) void *data) 14018 { 14019 struct cmd_macsec_sc_result *res = parsed_result; 14020 int ret = -ENOTSUP; 14021 int is_tx = (strcmp(res->tx_rx, "tx") == 0) ? 1 : 0; 14022 14023 #ifdef RTE_LIBRTE_IXGBE_PMD 14024 ret = is_tx ? 14025 rte_pmd_ixgbe_macsec_config_txsc(res->port_id, 14026 res->mac.addr_bytes) : 14027 rte_pmd_ixgbe_macsec_config_rxsc(res->port_id, 14028 res->mac.addr_bytes, res->pi); 14029 #endif 14030 RTE_SET_USED(is_tx); 14031 14032 switch (ret) { 14033 case 0: 14034 break; 14035 case -ENODEV: 14036 printf("invalid port_id %d\n", res->port_id); 14037 break; 14038 case -ENOTSUP: 14039 printf("not supported on port %d\n", res->port_id); 14040 break; 14041 default: 14042 printf("programming error: (%s)\n", strerror(-ret)); 14043 } 14044 } 14045 14046 cmdline_parse_inst_t cmd_set_macsec_sc = { 14047 .f = cmd_set_macsec_sc_parsed, 14048 .data = NULL, 14049 .help_str = "set macsec sc tx|rx <port_id> <mac> <pi>", 14050 .tokens = { 14051 (void *)&cmd_macsec_sc_set, 14052 (void *)&cmd_macsec_sc_macsec, 14053 (void *)&cmd_macsec_sc_sc, 14054 (void *)&cmd_macsec_sc_tx_rx, 14055 (void *)&cmd_macsec_sc_port_id, 14056 (void *)&cmd_macsec_sc_mac, 14057 (void *)&cmd_macsec_sc_pi, 14058 NULL, 14059 }, 14060 }; 14061 14062 /* Common result structure for MACsec secure connection configure */ 14063 struct cmd_macsec_sa_result { 14064 cmdline_fixed_string_t set; 14065 cmdline_fixed_string_t macsec; 14066 cmdline_fixed_string_t sa; 14067 cmdline_fixed_string_t tx_rx; 14068 portid_t port_id; 14069 uint8_t idx; 14070 uint8_t an; 14071 uint32_t pn; 14072 cmdline_fixed_string_t key; 14073 }; 14074 14075 /* Common CLI fields for MACsec secure connection configure */ 14076 cmdline_parse_token_string_t cmd_macsec_sa_set = 14077 TOKEN_STRING_INITIALIZER 14078 (struct cmd_macsec_sa_result, 14079 set, "set"); 14080 cmdline_parse_token_string_t cmd_macsec_sa_macsec = 14081 TOKEN_STRING_INITIALIZER 14082 (struct cmd_macsec_sa_result, 14083 macsec, "macsec"); 14084 cmdline_parse_token_string_t cmd_macsec_sa_sa = 14085 TOKEN_STRING_INITIALIZER 14086 (struct cmd_macsec_sa_result, 14087 sa, "sa"); 14088 cmdline_parse_token_string_t cmd_macsec_sa_tx_rx = 14089 TOKEN_STRING_INITIALIZER 14090 (struct cmd_macsec_sa_result, 14091 tx_rx, "tx#rx"); 14092 cmdline_parse_token_num_t cmd_macsec_sa_port_id = 14093 TOKEN_NUM_INITIALIZER 14094 (struct cmd_macsec_sa_result, 14095 port_id, UINT16); 14096 cmdline_parse_token_num_t cmd_macsec_sa_idx = 14097 TOKEN_NUM_INITIALIZER 14098 (struct cmd_macsec_sa_result, 14099 idx, UINT8); 14100 cmdline_parse_token_num_t cmd_macsec_sa_an = 14101 TOKEN_NUM_INITIALIZER 14102 (struct cmd_macsec_sa_result, 14103 an, UINT8); 14104 cmdline_parse_token_num_t cmd_macsec_sa_pn = 14105 TOKEN_NUM_INITIALIZER 14106 (struct cmd_macsec_sa_result, 14107 pn, UINT32); 14108 cmdline_parse_token_string_t cmd_macsec_sa_key = 14109 TOKEN_STRING_INITIALIZER 14110 (struct cmd_macsec_sa_result, 14111 key, NULL); 14112 14113 static void 14114 cmd_set_macsec_sa_parsed( 14115 void *parsed_result, 14116 __attribute__((unused)) struct cmdline *cl, 14117 __attribute__((unused)) void *data) 14118 { 14119 struct cmd_macsec_sa_result *res = parsed_result; 14120 int ret = -ENOTSUP; 14121 int is_tx = (strcmp(res->tx_rx, "tx") == 0) ? 1 : 0; 14122 uint8_t key[16] = { 0 }; 14123 uint8_t xdgt0; 14124 uint8_t xdgt1; 14125 int key_len; 14126 int i; 14127 14128 key_len = strlen(res->key) / 2; 14129 if (key_len > 16) 14130 key_len = 16; 14131 14132 for (i = 0; i < key_len; i++) { 14133 xdgt0 = parse_and_check_key_hexa_digit(res->key, (i * 2)); 14134 if (xdgt0 == 0xFF) 14135 return; 14136 xdgt1 = parse_and_check_key_hexa_digit(res->key, (i * 2) + 1); 14137 if (xdgt1 == 0xFF) 14138 return; 14139 key[i] = (uint8_t) ((xdgt0 * 16) + xdgt1); 14140 } 14141 14142 #ifdef RTE_LIBRTE_IXGBE_PMD 14143 ret = is_tx ? 14144 rte_pmd_ixgbe_macsec_select_txsa(res->port_id, 14145 res->idx, res->an, res->pn, key) : 14146 rte_pmd_ixgbe_macsec_select_rxsa(res->port_id, 14147 res->idx, res->an, res->pn, key); 14148 #endif 14149 RTE_SET_USED(is_tx); 14150 RTE_SET_USED(key); 14151 14152 switch (ret) { 14153 case 0: 14154 break; 14155 case -EINVAL: 14156 printf("invalid idx %d or an %d\n", res->idx, res->an); 14157 break; 14158 case -ENODEV: 14159 printf("invalid port_id %d\n", res->port_id); 14160 break; 14161 case -ENOTSUP: 14162 printf("not supported on port %d\n", res->port_id); 14163 break; 14164 default: 14165 printf("programming error: (%s)\n", strerror(-ret)); 14166 } 14167 } 14168 14169 cmdline_parse_inst_t cmd_set_macsec_sa = { 14170 .f = cmd_set_macsec_sa_parsed, 14171 .data = NULL, 14172 .help_str = "set macsec sa tx|rx <port_id> <idx> <an> <pn> <key>", 14173 .tokens = { 14174 (void *)&cmd_macsec_sa_set, 14175 (void *)&cmd_macsec_sa_macsec, 14176 (void *)&cmd_macsec_sa_sa, 14177 (void *)&cmd_macsec_sa_tx_rx, 14178 (void *)&cmd_macsec_sa_port_id, 14179 (void *)&cmd_macsec_sa_idx, 14180 (void *)&cmd_macsec_sa_an, 14181 (void *)&cmd_macsec_sa_pn, 14182 (void *)&cmd_macsec_sa_key, 14183 NULL, 14184 }, 14185 }; 14186 14187 /* VF unicast promiscuous mode configuration */ 14188 14189 /* Common result structure for VF unicast promiscuous mode */ 14190 struct cmd_vf_promisc_result { 14191 cmdline_fixed_string_t set; 14192 cmdline_fixed_string_t vf; 14193 cmdline_fixed_string_t promisc; 14194 portid_t port_id; 14195 uint32_t vf_id; 14196 cmdline_fixed_string_t on_off; 14197 }; 14198 14199 /* Common CLI fields for VF unicast promiscuous mode enable disable */ 14200 cmdline_parse_token_string_t cmd_vf_promisc_set = 14201 TOKEN_STRING_INITIALIZER 14202 (struct cmd_vf_promisc_result, 14203 set, "set"); 14204 cmdline_parse_token_string_t cmd_vf_promisc_vf = 14205 TOKEN_STRING_INITIALIZER 14206 (struct cmd_vf_promisc_result, 14207 vf, "vf"); 14208 cmdline_parse_token_string_t cmd_vf_promisc_promisc = 14209 TOKEN_STRING_INITIALIZER 14210 (struct cmd_vf_promisc_result, 14211 promisc, "promisc"); 14212 cmdline_parse_token_num_t cmd_vf_promisc_port_id = 14213 TOKEN_NUM_INITIALIZER 14214 (struct cmd_vf_promisc_result, 14215 port_id, UINT16); 14216 cmdline_parse_token_num_t cmd_vf_promisc_vf_id = 14217 TOKEN_NUM_INITIALIZER 14218 (struct cmd_vf_promisc_result, 14219 vf_id, UINT32); 14220 cmdline_parse_token_string_t cmd_vf_promisc_on_off = 14221 TOKEN_STRING_INITIALIZER 14222 (struct cmd_vf_promisc_result, 14223 on_off, "on#off"); 14224 14225 static void 14226 cmd_set_vf_promisc_parsed( 14227 void *parsed_result, 14228 __attribute__((unused)) struct cmdline *cl, 14229 __attribute__((unused)) void *data) 14230 { 14231 struct cmd_vf_promisc_result *res = parsed_result; 14232 int ret = -ENOTSUP; 14233 14234 __rte_unused int is_on = (strcmp(res->on_off, "on") == 0) ? 1 : 0; 14235 14236 if (port_id_is_invalid(res->port_id, ENABLED_WARN)) 14237 return; 14238 14239 #ifdef RTE_LIBRTE_I40E_PMD 14240 ret = rte_pmd_i40e_set_vf_unicast_promisc(res->port_id, 14241 res->vf_id, is_on); 14242 #endif 14243 14244 switch (ret) { 14245 case 0: 14246 break; 14247 case -EINVAL: 14248 printf("invalid vf_id %d\n", res->vf_id); 14249 break; 14250 case -ENODEV: 14251 printf("invalid port_id %d\n", res->port_id); 14252 break; 14253 case -ENOTSUP: 14254 printf("function not implemented\n"); 14255 break; 14256 default: 14257 printf("programming error: (%s)\n", strerror(-ret)); 14258 } 14259 } 14260 14261 cmdline_parse_inst_t cmd_set_vf_promisc = { 14262 .f = cmd_set_vf_promisc_parsed, 14263 .data = NULL, 14264 .help_str = "set vf promisc <port_id> <vf_id> on|off: " 14265 "Set unicast promiscuous mode for a VF from the PF", 14266 .tokens = { 14267 (void *)&cmd_vf_promisc_set, 14268 (void *)&cmd_vf_promisc_vf, 14269 (void *)&cmd_vf_promisc_promisc, 14270 (void *)&cmd_vf_promisc_port_id, 14271 (void *)&cmd_vf_promisc_vf_id, 14272 (void *)&cmd_vf_promisc_on_off, 14273 NULL, 14274 }, 14275 }; 14276 14277 /* VF multicast promiscuous mode configuration */ 14278 14279 /* Common result structure for VF multicast promiscuous mode */ 14280 struct cmd_vf_allmulti_result { 14281 cmdline_fixed_string_t set; 14282 cmdline_fixed_string_t vf; 14283 cmdline_fixed_string_t allmulti; 14284 portid_t port_id; 14285 uint32_t vf_id; 14286 cmdline_fixed_string_t on_off; 14287 }; 14288 14289 /* Common CLI fields for VF multicast promiscuous mode enable disable */ 14290 cmdline_parse_token_string_t cmd_vf_allmulti_set = 14291 TOKEN_STRING_INITIALIZER 14292 (struct cmd_vf_allmulti_result, 14293 set, "set"); 14294 cmdline_parse_token_string_t cmd_vf_allmulti_vf = 14295 TOKEN_STRING_INITIALIZER 14296 (struct cmd_vf_allmulti_result, 14297 vf, "vf"); 14298 cmdline_parse_token_string_t cmd_vf_allmulti_allmulti = 14299 TOKEN_STRING_INITIALIZER 14300 (struct cmd_vf_allmulti_result, 14301 allmulti, "allmulti"); 14302 cmdline_parse_token_num_t cmd_vf_allmulti_port_id = 14303 TOKEN_NUM_INITIALIZER 14304 (struct cmd_vf_allmulti_result, 14305 port_id, UINT16); 14306 cmdline_parse_token_num_t cmd_vf_allmulti_vf_id = 14307 TOKEN_NUM_INITIALIZER 14308 (struct cmd_vf_allmulti_result, 14309 vf_id, UINT32); 14310 cmdline_parse_token_string_t cmd_vf_allmulti_on_off = 14311 TOKEN_STRING_INITIALIZER 14312 (struct cmd_vf_allmulti_result, 14313 on_off, "on#off"); 14314 14315 static void 14316 cmd_set_vf_allmulti_parsed( 14317 void *parsed_result, 14318 __attribute__((unused)) struct cmdline *cl, 14319 __attribute__((unused)) void *data) 14320 { 14321 struct cmd_vf_allmulti_result *res = parsed_result; 14322 int ret = -ENOTSUP; 14323 14324 __rte_unused int is_on = (strcmp(res->on_off, "on") == 0) ? 1 : 0; 14325 14326 if (port_id_is_invalid(res->port_id, ENABLED_WARN)) 14327 return; 14328 14329 #ifdef RTE_LIBRTE_I40E_PMD 14330 ret = rte_pmd_i40e_set_vf_multicast_promisc(res->port_id, 14331 res->vf_id, is_on); 14332 #endif 14333 14334 switch (ret) { 14335 case 0: 14336 break; 14337 case -EINVAL: 14338 printf("invalid vf_id %d\n", res->vf_id); 14339 break; 14340 case -ENODEV: 14341 printf("invalid port_id %d\n", res->port_id); 14342 break; 14343 case -ENOTSUP: 14344 printf("function not implemented\n"); 14345 break; 14346 default: 14347 printf("programming error: (%s)\n", strerror(-ret)); 14348 } 14349 } 14350 14351 cmdline_parse_inst_t cmd_set_vf_allmulti = { 14352 .f = cmd_set_vf_allmulti_parsed, 14353 .data = NULL, 14354 .help_str = "set vf allmulti <port_id> <vf_id> on|off: " 14355 "Set multicast promiscuous mode for a VF from the PF", 14356 .tokens = { 14357 (void *)&cmd_vf_allmulti_set, 14358 (void *)&cmd_vf_allmulti_vf, 14359 (void *)&cmd_vf_allmulti_allmulti, 14360 (void *)&cmd_vf_allmulti_port_id, 14361 (void *)&cmd_vf_allmulti_vf_id, 14362 (void *)&cmd_vf_allmulti_on_off, 14363 NULL, 14364 }, 14365 }; 14366 14367 /* vf broadcast mode configuration */ 14368 14369 /* Common result structure for vf broadcast */ 14370 struct cmd_set_vf_broadcast_result { 14371 cmdline_fixed_string_t set; 14372 cmdline_fixed_string_t vf; 14373 cmdline_fixed_string_t broadcast; 14374 portid_t port_id; 14375 uint16_t vf_id; 14376 cmdline_fixed_string_t on_off; 14377 }; 14378 14379 /* Common CLI fields for vf broadcast enable disable */ 14380 cmdline_parse_token_string_t cmd_set_vf_broadcast_set = 14381 TOKEN_STRING_INITIALIZER 14382 (struct cmd_set_vf_broadcast_result, 14383 set, "set"); 14384 cmdline_parse_token_string_t cmd_set_vf_broadcast_vf = 14385 TOKEN_STRING_INITIALIZER 14386 (struct cmd_set_vf_broadcast_result, 14387 vf, "vf"); 14388 cmdline_parse_token_string_t cmd_set_vf_broadcast_broadcast = 14389 TOKEN_STRING_INITIALIZER 14390 (struct cmd_set_vf_broadcast_result, 14391 broadcast, "broadcast"); 14392 cmdline_parse_token_num_t cmd_set_vf_broadcast_port_id = 14393 TOKEN_NUM_INITIALIZER 14394 (struct cmd_set_vf_broadcast_result, 14395 port_id, UINT16); 14396 cmdline_parse_token_num_t cmd_set_vf_broadcast_vf_id = 14397 TOKEN_NUM_INITIALIZER 14398 (struct cmd_set_vf_broadcast_result, 14399 vf_id, UINT16); 14400 cmdline_parse_token_string_t cmd_set_vf_broadcast_on_off = 14401 TOKEN_STRING_INITIALIZER 14402 (struct cmd_set_vf_broadcast_result, 14403 on_off, "on#off"); 14404 14405 static void 14406 cmd_set_vf_broadcast_parsed( 14407 void *parsed_result, 14408 __attribute__((unused)) struct cmdline *cl, 14409 __attribute__((unused)) void *data) 14410 { 14411 struct cmd_set_vf_broadcast_result *res = parsed_result; 14412 int ret = -ENOTSUP; 14413 14414 __rte_unused int is_on = (strcmp(res->on_off, "on") == 0) ? 1 : 0; 14415 14416 if (port_id_is_invalid(res->port_id, ENABLED_WARN)) 14417 return; 14418 14419 #ifdef RTE_LIBRTE_I40E_PMD 14420 ret = rte_pmd_i40e_set_vf_broadcast(res->port_id, 14421 res->vf_id, is_on); 14422 #endif 14423 14424 switch (ret) { 14425 case 0: 14426 break; 14427 case -EINVAL: 14428 printf("invalid vf_id %d or is_on %d\n", res->vf_id, is_on); 14429 break; 14430 case -ENODEV: 14431 printf("invalid port_id %d\n", res->port_id); 14432 break; 14433 case -ENOTSUP: 14434 printf("function not implemented\n"); 14435 break; 14436 default: 14437 printf("programming error: (%s)\n", strerror(-ret)); 14438 } 14439 } 14440 14441 cmdline_parse_inst_t cmd_set_vf_broadcast = { 14442 .f = cmd_set_vf_broadcast_parsed, 14443 .data = NULL, 14444 .help_str = "set vf broadcast <port_id> <vf_id> on|off", 14445 .tokens = { 14446 (void *)&cmd_set_vf_broadcast_set, 14447 (void *)&cmd_set_vf_broadcast_vf, 14448 (void *)&cmd_set_vf_broadcast_broadcast, 14449 (void *)&cmd_set_vf_broadcast_port_id, 14450 (void *)&cmd_set_vf_broadcast_vf_id, 14451 (void *)&cmd_set_vf_broadcast_on_off, 14452 NULL, 14453 }, 14454 }; 14455 14456 /* vf vlan tag configuration */ 14457 14458 /* Common result structure for vf vlan tag */ 14459 struct cmd_set_vf_vlan_tag_result { 14460 cmdline_fixed_string_t set; 14461 cmdline_fixed_string_t vf; 14462 cmdline_fixed_string_t vlan; 14463 cmdline_fixed_string_t tag; 14464 portid_t port_id; 14465 uint16_t vf_id; 14466 cmdline_fixed_string_t on_off; 14467 }; 14468 14469 /* Common CLI fields for vf vlan tag enable disable */ 14470 cmdline_parse_token_string_t cmd_set_vf_vlan_tag_set = 14471 TOKEN_STRING_INITIALIZER 14472 (struct cmd_set_vf_vlan_tag_result, 14473 set, "set"); 14474 cmdline_parse_token_string_t cmd_set_vf_vlan_tag_vf = 14475 TOKEN_STRING_INITIALIZER 14476 (struct cmd_set_vf_vlan_tag_result, 14477 vf, "vf"); 14478 cmdline_parse_token_string_t cmd_set_vf_vlan_tag_vlan = 14479 TOKEN_STRING_INITIALIZER 14480 (struct cmd_set_vf_vlan_tag_result, 14481 vlan, "vlan"); 14482 cmdline_parse_token_string_t cmd_set_vf_vlan_tag_tag = 14483 TOKEN_STRING_INITIALIZER 14484 (struct cmd_set_vf_vlan_tag_result, 14485 tag, "tag"); 14486 cmdline_parse_token_num_t cmd_set_vf_vlan_tag_port_id = 14487 TOKEN_NUM_INITIALIZER 14488 (struct cmd_set_vf_vlan_tag_result, 14489 port_id, UINT16); 14490 cmdline_parse_token_num_t cmd_set_vf_vlan_tag_vf_id = 14491 TOKEN_NUM_INITIALIZER 14492 (struct cmd_set_vf_vlan_tag_result, 14493 vf_id, UINT16); 14494 cmdline_parse_token_string_t cmd_set_vf_vlan_tag_on_off = 14495 TOKEN_STRING_INITIALIZER 14496 (struct cmd_set_vf_vlan_tag_result, 14497 on_off, "on#off"); 14498 14499 static void 14500 cmd_set_vf_vlan_tag_parsed( 14501 void *parsed_result, 14502 __attribute__((unused)) struct cmdline *cl, 14503 __attribute__((unused)) void *data) 14504 { 14505 struct cmd_set_vf_vlan_tag_result *res = parsed_result; 14506 int ret = -ENOTSUP; 14507 14508 __rte_unused int is_on = (strcmp(res->on_off, "on") == 0) ? 1 : 0; 14509 14510 if (port_id_is_invalid(res->port_id, ENABLED_WARN)) 14511 return; 14512 14513 #ifdef RTE_LIBRTE_I40E_PMD 14514 ret = rte_pmd_i40e_set_vf_vlan_tag(res->port_id, 14515 res->vf_id, is_on); 14516 #endif 14517 14518 switch (ret) { 14519 case 0: 14520 break; 14521 case -EINVAL: 14522 printf("invalid vf_id %d or is_on %d\n", res->vf_id, is_on); 14523 break; 14524 case -ENODEV: 14525 printf("invalid port_id %d\n", res->port_id); 14526 break; 14527 case -ENOTSUP: 14528 printf("function not implemented\n"); 14529 break; 14530 default: 14531 printf("programming error: (%s)\n", strerror(-ret)); 14532 } 14533 } 14534 14535 cmdline_parse_inst_t cmd_set_vf_vlan_tag = { 14536 .f = cmd_set_vf_vlan_tag_parsed, 14537 .data = NULL, 14538 .help_str = "set vf vlan tag <port_id> <vf_id> on|off", 14539 .tokens = { 14540 (void *)&cmd_set_vf_vlan_tag_set, 14541 (void *)&cmd_set_vf_vlan_tag_vf, 14542 (void *)&cmd_set_vf_vlan_tag_vlan, 14543 (void *)&cmd_set_vf_vlan_tag_tag, 14544 (void *)&cmd_set_vf_vlan_tag_port_id, 14545 (void *)&cmd_set_vf_vlan_tag_vf_id, 14546 (void *)&cmd_set_vf_vlan_tag_on_off, 14547 NULL, 14548 }, 14549 }; 14550 14551 /* Common definition of VF and TC TX bandwidth configuration */ 14552 struct cmd_vf_tc_bw_result { 14553 cmdline_fixed_string_t set; 14554 cmdline_fixed_string_t vf; 14555 cmdline_fixed_string_t tc; 14556 cmdline_fixed_string_t tx; 14557 cmdline_fixed_string_t min_bw; 14558 cmdline_fixed_string_t max_bw; 14559 cmdline_fixed_string_t strict_link_prio; 14560 portid_t port_id; 14561 uint16_t vf_id; 14562 uint8_t tc_no; 14563 uint32_t bw; 14564 cmdline_fixed_string_t bw_list; 14565 uint8_t tc_map; 14566 }; 14567 14568 cmdline_parse_token_string_t cmd_vf_tc_bw_set = 14569 TOKEN_STRING_INITIALIZER 14570 (struct cmd_vf_tc_bw_result, 14571 set, "set"); 14572 cmdline_parse_token_string_t cmd_vf_tc_bw_vf = 14573 TOKEN_STRING_INITIALIZER 14574 (struct cmd_vf_tc_bw_result, 14575 vf, "vf"); 14576 cmdline_parse_token_string_t cmd_vf_tc_bw_tc = 14577 TOKEN_STRING_INITIALIZER 14578 (struct cmd_vf_tc_bw_result, 14579 tc, "tc"); 14580 cmdline_parse_token_string_t cmd_vf_tc_bw_tx = 14581 TOKEN_STRING_INITIALIZER 14582 (struct cmd_vf_tc_bw_result, 14583 tx, "tx"); 14584 cmdline_parse_token_string_t cmd_vf_tc_bw_strict_link_prio = 14585 TOKEN_STRING_INITIALIZER 14586 (struct cmd_vf_tc_bw_result, 14587 strict_link_prio, "strict-link-priority"); 14588 cmdline_parse_token_string_t cmd_vf_tc_bw_min_bw = 14589 TOKEN_STRING_INITIALIZER 14590 (struct cmd_vf_tc_bw_result, 14591 min_bw, "min-bandwidth"); 14592 cmdline_parse_token_string_t cmd_vf_tc_bw_max_bw = 14593 TOKEN_STRING_INITIALIZER 14594 (struct cmd_vf_tc_bw_result, 14595 max_bw, "max-bandwidth"); 14596 cmdline_parse_token_num_t cmd_vf_tc_bw_port_id = 14597 TOKEN_NUM_INITIALIZER 14598 (struct cmd_vf_tc_bw_result, 14599 port_id, UINT16); 14600 cmdline_parse_token_num_t cmd_vf_tc_bw_vf_id = 14601 TOKEN_NUM_INITIALIZER 14602 (struct cmd_vf_tc_bw_result, 14603 vf_id, UINT16); 14604 cmdline_parse_token_num_t cmd_vf_tc_bw_tc_no = 14605 TOKEN_NUM_INITIALIZER 14606 (struct cmd_vf_tc_bw_result, 14607 tc_no, UINT8); 14608 cmdline_parse_token_num_t cmd_vf_tc_bw_bw = 14609 TOKEN_NUM_INITIALIZER 14610 (struct cmd_vf_tc_bw_result, 14611 bw, UINT32); 14612 cmdline_parse_token_string_t cmd_vf_tc_bw_bw_list = 14613 TOKEN_STRING_INITIALIZER 14614 (struct cmd_vf_tc_bw_result, 14615 bw_list, NULL); 14616 cmdline_parse_token_num_t cmd_vf_tc_bw_tc_map = 14617 TOKEN_NUM_INITIALIZER 14618 (struct cmd_vf_tc_bw_result, 14619 tc_map, UINT8); 14620 14621 /* VF max bandwidth setting */ 14622 static void 14623 cmd_vf_max_bw_parsed( 14624 void *parsed_result, 14625 __attribute__((unused)) struct cmdline *cl, 14626 __attribute__((unused)) void *data) 14627 { 14628 struct cmd_vf_tc_bw_result *res = parsed_result; 14629 int ret = -ENOTSUP; 14630 14631 if (port_id_is_invalid(res->port_id, ENABLED_WARN)) 14632 return; 14633 14634 #ifdef RTE_LIBRTE_I40E_PMD 14635 ret = rte_pmd_i40e_set_vf_max_bw(res->port_id, 14636 res->vf_id, res->bw); 14637 #endif 14638 14639 switch (ret) { 14640 case 0: 14641 break; 14642 case -EINVAL: 14643 printf("invalid vf_id %d or bandwidth %d\n", 14644 res->vf_id, res->bw); 14645 break; 14646 case -ENODEV: 14647 printf("invalid port_id %d\n", res->port_id); 14648 break; 14649 case -ENOTSUP: 14650 printf("function not implemented\n"); 14651 break; 14652 default: 14653 printf("programming error: (%s)\n", strerror(-ret)); 14654 } 14655 } 14656 14657 cmdline_parse_inst_t cmd_vf_max_bw = { 14658 .f = cmd_vf_max_bw_parsed, 14659 .data = NULL, 14660 .help_str = "set vf tx max-bandwidth <port_id> <vf_id> <bandwidth>", 14661 .tokens = { 14662 (void *)&cmd_vf_tc_bw_set, 14663 (void *)&cmd_vf_tc_bw_vf, 14664 (void *)&cmd_vf_tc_bw_tx, 14665 (void *)&cmd_vf_tc_bw_max_bw, 14666 (void *)&cmd_vf_tc_bw_port_id, 14667 (void *)&cmd_vf_tc_bw_vf_id, 14668 (void *)&cmd_vf_tc_bw_bw, 14669 NULL, 14670 }, 14671 }; 14672 14673 static int 14674 vf_tc_min_bw_parse_bw_list(uint8_t *bw_list, 14675 uint8_t *tc_num, 14676 char *str) 14677 { 14678 uint32_t size; 14679 const char *p, *p0 = str; 14680 char s[256]; 14681 char *end; 14682 char *str_fld[16]; 14683 uint16_t i; 14684 int ret; 14685 14686 p = strchr(p0, '('); 14687 if (p == NULL) { 14688 printf("The bandwidth-list should be '(bw1, bw2, ...)'\n"); 14689 return -1; 14690 } 14691 p++; 14692 p0 = strchr(p, ')'); 14693 if (p0 == NULL) { 14694 printf("The bandwidth-list should be '(bw1, bw2, ...)'\n"); 14695 return -1; 14696 } 14697 size = p0 - p; 14698 if (size >= sizeof(s)) { 14699 printf("The string size exceeds the internal buffer size\n"); 14700 return -1; 14701 } 14702 snprintf(s, sizeof(s), "%.*s", size, p); 14703 ret = rte_strsplit(s, sizeof(s), str_fld, 16, ','); 14704 if (ret <= 0) { 14705 printf("Failed to get the bandwidth list. "); 14706 return -1; 14707 } 14708 *tc_num = ret; 14709 for (i = 0; i < ret; i++) 14710 bw_list[i] = (uint8_t)strtoul(str_fld[i], &end, 0); 14711 14712 return 0; 14713 } 14714 14715 /* TC min bandwidth setting */ 14716 static void 14717 cmd_vf_tc_min_bw_parsed( 14718 void *parsed_result, 14719 __attribute__((unused)) struct cmdline *cl, 14720 __attribute__((unused)) void *data) 14721 { 14722 struct cmd_vf_tc_bw_result *res = parsed_result; 14723 uint8_t tc_num; 14724 uint8_t bw[16]; 14725 int ret = -ENOTSUP; 14726 14727 if (port_id_is_invalid(res->port_id, ENABLED_WARN)) 14728 return; 14729 14730 ret = vf_tc_min_bw_parse_bw_list(bw, &tc_num, res->bw_list); 14731 if (ret) 14732 return; 14733 14734 #ifdef RTE_LIBRTE_I40E_PMD 14735 ret = rte_pmd_i40e_set_vf_tc_bw_alloc(res->port_id, res->vf_id, 14736 tc_num, bw); 14737 #endif 14738 14739 switch (ret) { 14740 case 0: 14741 break; 14742 case -EINVAL: 14743 printf("invalid vf_id %d or bandwidth\n", res->vf_id); 14744 break; 14745 case -ENODEV: 14746 printf("invalid port_id %d\n", res->port_id); 14747 break; 14748 case -ENOTSUP: 14749 printf("function not implemented\n"); 14750 break; 14751 default: 14752 printf("programming error: (%s)\n", strerror(-ret)); 14753 } 14754 } 14755 14756 cmdline_parse_inst_t cmd_vf_tc_min_bw = { 14757 .f = cmd_vf_tc_min_bw_parsed, 14758 .data = NULL, 14759 .help_str = "set vf tc tx min-bandwidth <port_id> <vf_id>" 14760 " <bw1, bw2, ...>", 14761 .tokens = { 14762 (void *)&cmd_vf_tc_bw_set, 14763 (void *)&cmd_vf_tc_bw_vf, 14764 (void *)&cmd_vf_tc_bw_tc, 14765 (void *)&cmd_vf_tc_bw_tx, 14766 (void *)&cmd_vf_tc_bw_min_bw, 14767 (void *)&cmd_vf_tc_bw_port_id, 14768 (void *)&cmd_vf_tc_bw_vf_id, 14769 (void *)&cmd_vf_tc_bw_bw_list, 14770 NULL, 14771 }, 14772 }; 14773 14774 static void 14775 cmd_tc_min_bw_parsed( 14776 void *parsed_result, 14777 __attribute__((unused)) struct cmdline *cl, 14778 __attribute__((unused)) void *data) 14779 { 14780 struct cmd_vf_tc_bw_result *res = parsed_result; 14781 struct rte_port *port; 14782 uint8_t tc_num; 14783 uint8_t bw[16]; 14784 int ret = -ENOTSUP; 14785 14786 if (port_id_is_invalid(res->port_id, ENABLED_WARN)) 14787 return; 14788 14789 port = &ports[res->port_id]; 14790 /** Check if the port is not started **/ 14791 if (port->port_status != RTE_PORT_STOPPED) { 14792 printf("Please stop port %d first\n", res->port_id); 14793 return; 14794 } 14795 14796 ret = vf_tc_min_bw_parse_bw_list(bw, &tc_num, res->bw_list); 14797 if (ret) 14798 return; 14799 14800 #ifdef RTE_LIBRTE_IXGBE_PMD 14801 ret = rte_pmd_ixgbe_set_tc_bw_alloc(res->port_id, tc_num, bw); 14802 #endif 14803 14804 switch (ret) { 14805 case 0: 14806 break; 14807 case -EINVAL: 14808 printf("invalid bandwidth\n"); 14809 break; 14810 case -ENODEV: 14811 printf("invalid port_id %d\n", res->port_id); 14812 break; 14813 case -ENOTSUP: 14814 printf("function not implemented\n"); 14815 break; 14816 default: 14817 printf("programming error: (%s)\n", strerror(-ret)); 14818 } 14819 } 14820 14821 cmdline_parse_inst_t cmd_tc_min_bw = { 14822 .f = cmd_tc_min_bw_parsed, 14823 .data = NULL, 14824 .help_str = "set tc tx min-bandwidth <port_id> <bw1, bw2, ...>", 14825 .tokens = { 14826 (void *)&cmd_vf_tc_bw_set, 14827 (void *)&cmd_vf_tc_bw_tc, 14828 (void *)&cmd_vf_tc_bw_tx, 14829 (void *)&cmd_vf_tc_bw_min_bw, 14830 (void *)&cmd_vf_tc_bw_port_id, 14831 (void *)&cmd_vf_tc_bw_bw_list, 14832 NULL, 14833 }, 14834 }; 14835 14836 /* TC max bandwidth setting */ 14837 static void 14838 cmd_vf_tc_max_bw_parsed( 14839 void *parsed_result, 14840 __attribute__((unused)) struct cmdline *cl, 14841 __attribute__((unused)) void *data) 14842 { 14843 struct cmd_vf_tc_bw_result *res = parsed_result; 14844 int ret = -ENOTSUP; 14845 14846 if (port_id_is_invalid(res->port_id, ENABLED_WARN)) 14847 return; 14848 14849 #ifdef RTE_LIBRTE_I40E_PMD 14850 ret = rte_pmd_i40e_set_vf_tc_max_bw(res->port_id, res->vf_id, 14851 res->tc_no, res->bw); 14852 #endif 14853 14854 switch (ret) { 14855 case 0: 14856 break; 14857 case -EINVAL: 14858 printf("invalid vf_id %d, tc_no %d or bandwidth %d\n", 14859 res->vf_id, res->tc_no, res->bw); 14860 break; 14861 case -ENODEV: 14862 printf("invalid port_id %d\n", res->port_id); 14863 break; 14864 case -ENOTSUP: 14865 printf("function not implemented\n"); 14866 break; 14867 default: 14868 printf("programming error: (%s)\n", strerror(-ret)); 14869 } 14870 } 14871 14872 cmdline_parse_inst_t cmd_vf_tc_max_bw = { 14873 .f = cmd_vf_tc_max_bw_parsed, 14874 .data = NULL, 14875 .help_str = "set vf tc tx max-bandwidth <port_id> <vf_id> <tc_no>" 14876 " <bandwidth>", 14877 .tokens = { 14878 (void *)&cmd_vf_tc_bw_set, 14879 (void *)&cmd_vf_tc_bw_vf, 14880 (void *)&cmd_vf_tc_bw_tc, 14881 (void *)&cmd_vf_tc_bw_tx, 14882 (void *)&cmd_vf_tc_bw_max_bw, 14883 (void *)&cmd_vf_tc_bw_port_id, 14884 (void *)&cmd_vf_tc_bw_vf_id, 14885 (void *)&cmd_vf_tc_bw_tc_no, 14886 (void *)&cmd_vf_tc_bw_bw, 14887 NULL, 14888 }, 14889 }; 14890 14891 14892 #if defined RTE_LIBRTE_PMD_SOFTNIC && defined RTE_LIBRTE_SCHED 14893 14894 /* *** Set Port default Traffic Management Hierarchy *** */ 14895 struct cmd_set_port_tm_hierarchy_default_result { 14896 cmdline_fixed_string_t set; 14897 cmdline_fixed_string_t port; 14898 cmdline_fixed_string_t tm; 14899 cmdline_fixed_string_t hierarchy; 14900 cmdline_fixed_string_t def; 14901 portid_t port_id; 14902 }; 14903 14904 cmdline_parse_token_string_t cmd_set_port_tm_hierarchy_default_set = 14905 TOKEN_STRING_INITIALIZER( 14906 struct cmd_set_port_tm_hierarchy_default_result, set, "set"); 14907 cmdline_parse_token_string_t cmd_set_port_tm_hierarchy_default_port = 14908 TOKEN_STRING_INITIALIZER( 14909 struct cmd_set_port_tm_hierarchy_default_result, port, "port"); 14910 cmdline_parse_token_string_t cmd_set_port_tm_hierarchy_default_tm = 14911 TOKEN_STRING_INITIALIZER( 14912 struct cmd_set_port_tm_hierarchy_default_result, tm, "tm"); 14913 cmdline_parse_token_string_t cmd_set_port_tm_hierarchy_default_hierarchy = 14914 TOKEN_STRING_INITIALIZER( 14915 struct cmd_set_port_tm_hierarchy_default_result, 14916 hierarchy, "hierarchy"); 14917 cmdline_parse_token_string_t cmd_set_port_tm_hierarchy_default_default = 14918 TOKEN_STRING_INITIALIZER( 14919 struct cmd_set_port_tm_hierarchy_default_result, 14920 def, "default"); 14921 cmdline_parse_token_num_t cmd_set_port_tm_hierarchy_default_port_id = 14922 TOKEN_NUM_INITIALIZER( 14923 struct cmd_set_port_tm_hierarchy_default_result, 14924 port_id, UINT16); 14925 14926 static void cmd_set_port_tm_hierarchy_default_parsed(void *parsed_result, 14927 __attribute__((unused)) struct cmdline *cl, 14928 __attribute__((unused)) void *data) 14929 { 14930 struct cmd_set_port_tm_hierarchy_default_result *res = parsed_result; 14931 struct rte_port *p; 14932 portid_t port_id = res->port_id; 14933 14934 if (port_id_is_invalid(port_id, ENABLED_WARN)) 14935 return; 14936 14937 p = &ports[port_id]; 14938 14939 /* Forward mode: tm */ 14940 if (strcmp(cur_fwd_config.fwd_eng->fwd_mode_name, "softnic")) { 14941 printf(" softnicfwd mode not enabled(error)\n"); 14942 return; 14943 } 14944 14945 /* Set the default tm hierarchy */ 14946 p->softport.default_tm_hierarchy_enable = 1; 14947 } 14948 14949 cmdline_parse_inst_t cmd_set_port_tm_hierarchy_default = { 14950 .f = cmd_set_port_tm_hierarchy_default_parsed, 14951 .data = NULL, 14952 .help_str = "set port tm hierarchy default <port_id>", 14953 .tokens = { 14954 (void *)&cmd_set_port_tm_hierarchy_default_set, 14955 (void *)&cmd_set_port_tm_hierarchy_default_port, 14956 (void *)&cmd_set_port_tm_hierarchy_default_tm, 14957 (void *)&cmd_set_port_tm_hierarchy_default_hierarchy, 14958 (void *)&cmd_set_port_tm_hierarchy_default_default, 14959 (void *)&cmd_set_port_tm_hierarchy_default_port_id, 14960 NULL, 14961 }, 14962 }; 14963 #endif 14964 14965 /** Set VXLAN encapsulation details */ 14966 struct cmd_set_vxlan_result { 14967 cmdline_fixed_string_t set; 14968 cmdline_fixed_string_t vxlan; 14969 cmdline_fixed_string_t pos_token; 14970 cmdline_fixed_string_t ip_version; 14971 uint32_t vlan_present:1; 14972 uint32_t vni; 14973 uint16_t udp_src; 14974 uint16_t udp_dst; 14975 cmdline_ipaddr_t ip_src; 14976 cmdline_ipaddr_t ip_dst; 14977 uint16_t tci; 14978 struct ether_addr eth_src; 14979 struct ether_addr eth_dst; 14980 }; 14981 14982 cmdline_parse_token_string_t cmd_set_vxlan_set = 14983 TOKEN_STRING_INITIALIZER(struct cmd_set_vxlan_result, set, "set"); 14984 cmdline_parse_token_string_t cmd_set_vxlan_vxlan = 14985 TOKEN_STRING_INITIALIZER(struct cmd_set_vxlan_result, vxlan, "vxlan"); 14986 cmdline_parse_token_string_t cmd_set_vxlan_vxlan_with_vlan = 14987 TOKEN_STRING_INITIALIZER(struct cmd_set_vxlan_result, vxlan, 14988 "vxlan-with-vlan"); 14989 cmdline_parse_token_string_t cmd_set_vxlan_ip_version = 14990 TOKEN_STRING_INITIALIZER(struct cmd_set_vxlan_result, pos_token, 14991 "ip-version"); 14992 cmdline_parse_token_string_t cmd_set_vxlan_ip_version_value = 14993 TOKEN_STRING_INITIALIZER(struct cmd_set_vxlan_result, ip_version, 14994 "ipv4#ipv6"); 14995 cmdline_parse_token_string_t cmd_set_vxlan_vni = 14996 TOKEN_STRING_INITIALIZER(struct cmd_set_vxlan_result, pos_token, 14997 "vni"); 14998 cmdline_parse_token_num_t cmd_set_vxlan_vni_value = 14999 TOKEN_NUM_INITIALIZER(struct cmd_set_vxlan_result, vni, UINT32); 15000 cmdline_parse_token_string_t cmd_set_vxlan_udp_src = 15001 TOKEN_STRING_INITIALIZER(struct cmd_set_vxlan_result, pos_token, 15002 "udp-src"); 15003 cmdline_parse_token_num_t cmd_set_vxlan_udp_src_value = 15004 TOKEN_NUM_INITIALIZER(struct cmd_set_vxlan_result, udp_src, UINT16); 15005 cmdline_parse_token_string_t cmd_set_vxlan_udp_dst = 15006 TOKEN_STRING_INITIALIZER(struct cmd_set_vxlan_result, pos_token, 15007 "udp-dst"); 15008 cmdline_parse_token_num_t cmd_set_vxlan_udp_dst_value = 15009 TOKEN_NUM_INITIALIZER(struct cmd_set_vxlan_result, udp_dst, UINT16); 15010 cmdline_parse_token_string_t cmd_set_vxlan_ip_src = 15011 TOKEN_STRING_INITIALIZER(struct cmd_set_vxlan_result, pos_token, 15012 "ip-src"); 15013 cmdline_parse_token_ipaddr_t cmd_set_vxlan_ip_src_value = 15014 TOKEN_IPADDR_INITIALIZER(struct cmd_set_vxlan_result, ip_src); 15015 cmdline_parse_token_string_t cmd_set_vxlan_ip_dst = 15016 TOKEN_STRING_INITIALIZER(struct cmd_set_vxlan_result, pos_token, 15017 "ip-dst"); 15018 cmdline_parse_token_ipaddr_t cmd_set_vxlan_ip_dst_value = 15019 TOKEN_IPADDR_INITIALIZER(struct cmd_set_vxlan_result, ip_dst); 15020 cmdline_parse_token_string_t cmd_set_vxlan_vlan = 15021 TOKEN_STRING_INITIALIZER(struct cmd_set_vxlan_result, pos_token, 15022 "vlan-tci"); 15023 cmdline_parse_token_num_t cmd_set_vxlan_vlan_value = 15024 TOKEN_NUM_INITIALIZER(struct cmd_set_vxlan_result, tci, UINT16); 15025 cmdline_parse_token_string_t cmd_set_vxlan_eth_src = 15026 TOKEN_STRING_INITIALIZER(struct cmd_set_vxlan_result, pos_token, 15027 "eth-src"); 15028 cmdline_parse_token_etheraddr_t cmd_set_vxlan_eth_src_value = 15029 TOKEN_ETHERADDR_INITIALIZER(struct cmd_set_vxlan_result, eth_src); 15030 cmdline_parse_token_string_t cmd_set_vxlan_eth_dst = 15031 TOKEN_STRING_INITIALIZER(struct cmd_set_vxlan_result, pos_token, 15032 "eth-dst"); 15033 cmdline_parse_token_etheraddr_t cmd_set_vxlan_eth_dst_value = 15034 TOKEN_ETHERADDR_INITIALIZER(struct cmd_set_vxlan_result, eth_dst); 15035 15036 static void cmd_set_vxlan_parsed(void *parsed_result, 15037 __attribute__((unused)) struct cmdline *cl, 15038 __attribute__((unused)) void *data) 15039 { 15040 struct cmd_set_vxlan_result *res = parsed_result; 15041 union { 15042 uint32_t vxlan_id; 15043 uint8_t vni[4]; 15044 } id = { 15045 .vxlan_id = rte_cpu_to_be_32(res->vni) & RTE_BE32(0x00ffffff), 15046 }; 15047 15048 if (strcmp(res->vxlan, "vxlan") == 0) 15049 vxlan_encap_conf.select_vlan = 0; 15050 else if (strcmp(res->vxlan, "vxlan-with-vlan") == 0) 15051 vxlan_encap_conf.select_vlan = 1; 15052 if (strcmp(res->ip_version, "ipv4") == 0) 15053 vxlan_encap_conf.select_ipv4 = 1; 15054 else if (strcmp(res->ip_version, "ipv6") == 0) 15055 vxlan_encap_conf.select_ipv4 = 0; 15056 else 15057 return; 15058 rte_memcpy(vxlan_encap_conf.vni, &id.vni[1], 3); 15059 vxlan_encap_conf.udp_src = rte_cpu_to_be_16(res->udp_src); 15060 vxlan_encap_conf.udp_dst = rte_cpu_to_be_16(res->udp_dst); 15061 if (vxlan_encap_conf.select_ipv4) { 15062 IPV4_ADDR_TO_UINT(res->ip_src, vxlan_encap_conf.ipv4_src); 15063 IPV4_ADDR_TO_UINT(res->ip_dst, vxlan_encap_conf.ipv4_dst); 15064 } else { 15065 IPV6_ADDR_TO_ARRAY(res->ip_src, vxlan_encap_conf.ipv6_src); 15066 IPV6_ADDR_TO_ARRAY(res->ip_dst, vxlan_encap_conf.ipv6_dst); 15067 } 15068 if (vxlan_encap_conf.select_vlan) 15069 vxlan_encap_conf.vlan_tci = rte_cpu_to_be_16(res->tci); 15070 rte_memcpy(vxlan_encap_conf.eth_src, res->eth_src.addr_bytes, 15071 ETHER_ADDR_LEN); 15072 rte_memcpy(vxlan_encap_conf.eth_dst, res->eth_dst.addr_bytes, 15073 ETHER_ADDR_LEN); 15074 } 15075 15076 cmdline_parse_inst_t cmd_set_vxlan = { 15077 .f = cmd_set_vxlan_parsed, 15078 .data = NULL, 15079 .help_str = "set vxlan ip-version ipv4|ipv6 vni <vni> udp-src" 15080 " <udp-src> udp-dst <udp-dst> ip-src <ip-src> ip-dst <ip-dst>" 15081 " eth-src <eth-src> eth-dst <eth-dst>", 15082 .tokens = { 15083 (void *)&cmd_set_vxlan_set, 15084 (void *)&cmd_set_vxlan_vxlan, 15085 (void *)&cmd_set_vxlan_ip_version, 15086 (void *)&cmd_set_vxlan_ip_version_value, 15087 (void *)&cmd_set_vxlan_vni, 15088 (void *)&cmd_set_vxlan_vni_value, 15089 (void *)&cmd_set_vxlan_udp_src, 15090 (void *)&cmd_set_vxlan_udp_src_value, 15091 (void *)&cmd_set_vxlan_udp_dst, 15092 (void *)&cmd_set_vxlan_udp_dst_value, 15093 (void *)&cmd_set_vxlan_ip_src, 15094 (void *)&cmd_set_vxlan_ip_src_value, 15095 (void *)&cmd_set_vxlan_ip_dst, 15096 (void *)&cmd_set_vxlan_ip_dst_value, 15097 (void *)&cmd_set_vxlan_eth_src, 15098 (void *)&cmd_set_vxlan_eth_src_value, 15099 (void *)&cmd_set_vxlan_eth_dst, 15100 (void *)&cmd_set_vxlan_eth_dst_value, 15101 NULL, 15102 }, 15103 }; 15104 15105 cmdline_parse_inst_t cmd_set_vxlan_with_vlan = { 15106 .f = cmd_set_vxlan_parsed, 15107 .data = NULL, 15108 .help_str = "set vxlan-with-vlan ip-version ipv4|ipv6 vni <vni>" 15109 " udp-src <udp-src> udp-dst <udp-dst> ip-src <ip-src> ip-dst" 15110 " <ip-dst> vlan-tci <vlan-tci> eth-src <eth-src> eth-dst" 15111 " <eth-dst>", 15112 .tokens = { 15113 (void *)&cmd_set_vxlan_set, 15114 (void *)&cmd_set_vxlan_vxlan_with_vlan, 15115 (void *)&cmd_set_vxlan_ip_version, 15116 (void *)&cmd_set_vxlan_ip_version_value, 15117 (void *)&cmd_set_vxlan_vni, 15118 (void *)&cmd_set_vxlan_vni_value, 15119 (void *)&cmd_set_vxlan_udp_src, 15120 (void *)&cmd_set_vxlan_udp_src_value, 15121 (void *)&cmd_set_vxlan_udp_dst, 15122 (void *)&cmd_set_vxlan_udp_dst_value, 15123 (void *)&cmd_set_vxlan_ip_src, 15124 (void *)&cmd_set_vxlan_ip_src_value, 15125 (void *)&cmd_set_vxlan_ip_dst, 15126 (void *)&cmd_set_vxlan_ip_dst_value, 15127 (void *)&cmd_set_vxlan_vlan, 15128 (void *)&cmd_set_vxlan_vlan_value, 15129 (void *)&cmd_set_vxlan_eth_src, 15130 (void *)&cmd_set_vxlan_eth_src_value, 15131 (void *)&cmd_set_vxlan_eth_dst, 15132 (void *)&cmd_set_vxlan_eth_dst_value, 15133 NULL, 15134 }, 15135 }; 15136 15137 /** Set NVGRE encapsulation details */ 15138 struct cmd_set_nvgre_result { 15139 cmdline_fixed_string_t set; 15140 cmdline_fixed_string_t nvgre; 15141 cmdline_fixed_string_t pos_token; 15142 cmdline_fixed_string_t ip_version; 15143 uint32_t tni; 15144 cmdline_ipaddr_t ip_src; 15145 cmdline_ipaddr_t ip_dst; 15146 uint16_t tci; 15147 struct ether_addr eth_src; 15148 struct ether_addr eth_dst; 15149 }; 15150 15151 cmdline_parse_token_string_t cmd_set_nvgre_set = 15152 TOKEN_STRING_INITIALIZER(struct cmd_set_nvgre_result, set, "set"); 15153 cmdline_parse_token_string_t cmd_set_nvgre_nvgre = 15154 TOKEN_STRING_INITIALIZER(struct cmd_set_nvgre_result, nvgre, "nvgre"); 15155 cmdline_parse_token_string_t cmd_set_nvgre_nvgre_with_vlan = 15156 TOKEN_STRING_INITIALIZER(struct cmd_set_nvgre_result, nvgre, 15157 "nvgre-with-vlan"); 15158 cmdline_parse_token_string_t cmd_set_nvgre_ip_version = 15159 TOKEN_STRING_INITIALIZER(struct cmd_set_nvgre_result, pos_token, 15160 "ip-version"); 15161 cmdline_parse_token_string_t cmd_set_nvgre_ip_version_value = 15162 TOKEN_STRING_INITIALIZER(struct cmd_set_nvgre_result, ip_version, 15163 "ipv4#ipv6"); 15164 cmdline_parse_token_string_t cmd_set_nvgre_tni = 15165 TOKEN_STRING_INITIALIZER(struct cmd_set_nvgre_result, pos_token, 15166 "tni"); 15167 cmdline_parse_token_num_t cmd_set_nvgre_tni_value = 15168 TOKEN_NUM_INITIALIZER(struct cmd_set_nvgre_result, tni, UINT32); 15169 cmdline_parse_token_string_t cmd_set_nvgre_ip_src = 15170 TOKEN_STRING_INITIALIZER(struct cmd_set_nvgre_result, pos_token, 15171 "ip-src"); 15172 cmdline_parse_token_num_t cmd_set_nvgre_ip_src_value = 15173 TOKEN_IPADDR_INITIALIZER(struct cmd_set_nvgre_result, ip_src); 15174 cmdline_parse_token_string_t cmd_set_nvgre_ip_dst = 15175 TOKEN_STRING_INITIALIZER(struct cmd_set_nvgre_result, pos_token, 15176 "ip-dst"); 15177 cmdline_parse_token_ipaddr_t cmd_set_nvgre_ip_dst_value = 15178 TOKEN_IPADDR_INITIALIZER(struct cmd_set_nvgre_result, ip_dst); 15179 cmdline_parse_token_string_t cmd_set_nvgre_vlan = 15180 TOKEN_STRING_INITIALIZER(struct cmd_set_nvgre_result, pos_token, 15181 "vlan-tci"); 15182 cmdline_parse_token_num_t cmd_set_nvgre_vlan_value = 15183 TOKEN_NUM_INITIALIZER(struct cmd_set_nvgre_result, tci, UINT16); 15184 cmdline_parse_token_string_t cmd_set_nvgre_eth_src = 15185 TOKEN_STRING_INITIALIZER(struct cmd_set_nvgre_result, pos_token, 15186 "eth-src"); 15187 cmdline_parse_token_etheraddr_t cmd_set_nvgre_eth_src_value = 15188 TOKEN_ETHERADDR_INITIALIZER(struct cmd_set_nvgre_result, eth_src); 15189 cmdline_parse_token_string_t cmd_set_nvgre_eth_dst = 15190 TOKEN_STRING_INITIALIZER(struct cmd_set_nvgre_result, pos_token, 15191 "eth-dst"); 15192 cmdline_parse_token_etheraddr_t cmd_set_nvgre_eth_dst_value = 15193 TOKEN_ETHERADDR_INITIALIZER(struct cmd_set_nvgre_result, eth_dst); 15194 15195 static void cmd_set_nvgre_parsed(void *parsed_result, 15196 __attribute__((unused)) struct cmdline *cl, 15197 __attribute__((unused)) void *data) 15198 { 15199 struct cmd_set_nvgre_result *res = parsed_result; 15200 union { 15201 uint32_t nvgre_tni; 15202 uint8_t tni[4]; 15203 } id = { 15204 .nvgre_tni = rte_cpu_to_be_32(res->tni) & RTE_BE32(0x00ffffff), 15205 }; 15206 15207 if (strcmp(res->nvgre, "nvgre") == 0) 15208 nvgre_encap_conf.select_vlan = 0; 15209 else if (strcmp(res->nvgre, "nvgre-with-vlan") == 0) 15210 nvgre_encap_conf.select_vlan = 1; 15211 if (strcmp(res->ip_version, "ipv4") == 0) 15212 nvgre_encap_conf.select_ipv4 = 1; 15213 else if (strcmp(res->ip_version, "ipv6") == 0) 15214 nvgre_encap_conf.select_ipv4 = 0; 15215 else 15216 return; 15217 rte_memcpy(nvgre_encap_conf.tni, &id.tni[1], 3); 15218 if (nvgre_encap_conf.select_ipv4) { 15219 IPV4_ADDR_TO_UINT(res->ip_src, nvgre_encap_conf.ipv4_src); 15220 IPV4_ADDR_TO_UINT(res->ip_dst, nvgre_encap_conf.ipv4_dst); 15221 } else { 15222 IPV6_ADDR_TO_ARRAY(res->ip_src, nvgre_encap_conf.ipv6_src); 15223 IPV6_ADDR_TO_ARRAY(res->ip_dst, nvgre_encap_conf.ipv6_dst); 15224 } 15225 if (nvgre_encap_conf.select_vlan) 15226 nvgre_encap_conf.vlan_tci = rte_cpu_to_be_16(res->tci); 15227 rte_memcpy(nvgre_encap_conf.eth_src, res->eth_src.addr_bytes, 15228 ETHER_ADDR_LEN); 15229 rte_memcpy(nvgre_encap_conf.eth_dst, res->eth_dst.addr_bytes, 15230 ETHER_ADDR_LEN); 15231 } 15232 15233 cmdline_parse_inst_t cmd_set_nvgre = { 15234 .f = cmd_set_nvgre_parsed, 15235 .data = NULL, 15236 .help_str = "set nvgre ip-version <ipv4|ipv6> tni <tni> ip-src" 15237 " <ip-src> ip-dst <ip-dst> eth-src <eth-src>" 15238 " eth-dst <eth-dst>", 15239 .tokens = { 15240 (void *)&cmd_set_nvgre_set, 15241 (void *)&cmd_set_nvgre_nvgre, 15242 (void *)&cmd_set_nvgre_ip_version, 15243 (void *)&cmd_set_nvgre_ip_version_value, 15244 (void *)&cmd_set_nvgre_tni, 15245 (void *)&cmd_set_nvgre_tni_value, 15246 (void *)&cmd_set_nvgre_ip_src, 15247 (void *)&cmd_set_nvgre_ip_src_value, 15248 (void *)&cmd_set_nvgre_ip_dst, 15249 (void *)&cmd_set_nvgre_ip_dst_value, 15250 (void *)&cmd_set_nvgre_eth_src, 15251 (void *)&cmd_set_nvgre_eth_src_value, 15252 (void *)&cmd_set_nvgre_eth_dst, 15253 (void *)&cmd_set_nvgre_eth_dst_value, 15254 NULL, 15255 }, 15256 }; 15257 15258 cmdline_parse_inst_t cmd_set_nvgre_with_vlan = { 15259 .f = cmd_set_nvgre_parsed, 15260 .data = NULL, 15261 .help_str = "set nvgre-with-vlan ip-version <ipv4|ipv6> tni <tni>" 15262 " ip-src <ip-src> ip-dst <ip-dst> vlan-tci <vlan-tci>" 15263 " eth-src <eth-src> eth-dst <eth-dst>", 15264 .tokens = { 15265 (void *)&cmd_set_nvgre_set, 15266 (void *)&cmd_set_nvgre_nvgre_with_vlan, 15267 (void *)&cmd_set_nvgre_ip_version, 15268 (void *)&cmd_set_nvgre_ip_version_value, 15269 (void *)&cmd_set_nvgre_tni, 15270 (void *)&cmd_set_nvgre_tni_value, 15271 (void *)&cmd_set_nvgre_ip_src, 15272 (void *)&cmd_set_nvgre_ip_src_value, 15273 (void *)&cmd_set_nvgre_ip_dst, 15274 (void *)&cmd_set_nvgre_ip_dst_value, 15275 (void *)&cmd_set_nvgre_vlan, 15276 (void *)&cmd_set_nvgre_vlan_value, 15277 (void *)&cmd_set_nvgre_eth_src, 15278 (void *)&cmd_set_nvgre_eth_src_value, 15279 (void *)&cmd_set_nvgre_eth_dst, 15280 (void *)&cmd_set_nvgre_eth_dst_value, 15281 NULL, 15282 }, 15283 }; 15284 15285 /* Strict link priority scheduling mode setting */ 15286 static void 15287 cmd_strict_link_prio_parsed( 15288 void *parsed_result, 15289 __attribute__((unused)) struct cmdline *cl, 15290 __attribute__((unused)) void *data) 15291 { 15292 struct cmd_vf_tc_bw_result *res = parsed_result; 15293 int ret = -ENOTSUP; 15294 15295 if (port_id_is_invalid(res->port_id, ENABLED_WARN)) 15296 return; 15297 15298 #ifdef RTE_LIBRTE_I40E_PMD 15299 ret = rte_pmd_i40e_set_tc_strict_prio(res->port_id, res->tc_map); 15300 #endif 15301 15302 switch (ret) { 15303 case 0: 15304 break; 15305 case -EINVAL: 15306 printf("invalid tc_bitmap 0x%x\n", res->tc_map); 15307 break; 15308 case -ENODEV: 15309 printf("invalid port_id %d\n", res->port_id); 15310 break; 15311 case -ENOTSUP: 15312 printf("function not implemented\n"); 15313 break; 15314 default: 15315 printf("programming error: (%s)\n", strerror(-ret)); 15316 } 15317 } 15318 15319 cmdline_parse_inst_t cmd_strict_link_prio = { 15320 .f = cmd_strict_link_prio_parsed, 15321 .data = NULL, 15322 .help_str = "set tx strict-link-priority <port_id> <tc_bitmap>", 15323 .tokens = { 15324 (void *)&cmd_vf_tc_bw_set, 15325 (void *)&cmd_vf_tc_bw_tx, 15326 (void *)&cmd_vf_tc_bw_strict_link_prio, 15327 (void *)&cmd_vf_tc_bw_port_id, 15328 (void *)&cmd_vf_tc_bw_tc_map, 15329 NULL, 15330 }, 15331 }; 15332 15333 /* Load dynamic device personalization*/ 15334 struct cmd_ddp_add_result { 15335 cmdline_fixed_string_t ddp; 15336 cmdline_fixed_string_t add; 15337 portid_t port_id; 15338 char filepath[]; 15339 }; 15340 15341 cmdline_parse_token_string_t cmd_ddp_add_ddp = 15342 TOKEN_STRING_INITIALIZER(struct cmd_ddp_add_result, ddp, "ddp"); 15343 cmdline_parse_token_string_t cmd_ddp_add_add = 15344 TOKEN_STRING_INITIALIZER(struct cmd_ddp_add_result, add, "add"); 15345 cmdline_parse_token_num_t cmd_ddp_add_port_id = 15346 TOKEN_NUM_INITIALIZER(struct cmd_ddp_add_result, port_id, UINT16); 15347 cmdline_parse_token_string_t cmd_ddp_add_filepath = 15348 TOKEN_STRING_INITIALIZER(struct cmd_ddp_add_result, filepath, NULL); 15349 15350 static void 15351 cmd_ddp_add_parsed( 15352 void *parsed_result, 15353 __attribute__((unused)) struct cmdline *cl, 15354 __attribute__((unused)) void *data) 15355 { 15356 struct cmd_ddp_add_result *res = parsed_result; 15357 uint8_t *buff; 15358 uint32_t size; 15359 char *filepath; 15360 char *file_fld[2]; 15361 int file_num; 15362 int ret = -ENOTSUP; 15363 15364 if (!all_ports_stopped()) { 15365 printf("Please stop all ports first\n"); 15366 return; 15367 } 15368 15369 filepath = strdup(res->filepath); 15370 if (filepath == NULL) { 15371 printf("Failed to allocate memory\n"); 15372 return; 15373 } 15374 file_num = rte_strsplit(filepath, strlen(filepath), file_fld, 2, ','); 15375 15376 buff = open_file(file_fld[0], &size); 15377 if (!buff) { 15378 free((void *)filepath); 15379 return; 15380 } 15381 15382 #ifdef RTE_LIBRTE_I40E_PMD 15383 if (ret == -ENOTSUP) 15384 ret = rte_pmd_i40e_process_ddp_package(res->port_id, 15385 buff, size, 15386 RTE_PMD_I40E_PKG_OP_WR_ADD); 15387 #endif 15388 15389 if (ret == -EEXIST) 15390 printf("Profile has already existed.\n"); 15391 else if (ret < 0) 15392 printf("Failed to load profile.\n"); 15393 else if (file_num == 2) 15394 save_file(file_fld[1], buff, size); 15395 15396 close_file(buff); 15397 free((void *)filepath); 15398 } 15399 15400 cmdline_parse_inst_t cmd_ddp_add = { 15401 .f = cmd_ddp_add_parsed, 15402 .data = NULL, 15403 .help_str = "ddp add <port_id> <profile_path[,backup_profile_path]>", 15404 .tokens = { 15405 (void *)&cmd_ddp_add_ddp, 15406 (void *)&cmd_ddp_add_add, 15407 (void *)&cmd_ddp_add_port_id, 15408 (void *)&cmd_ddp_add_filepath, 15409 NULL, 15410 }, 15411 }; 15412 15413 /* Delete dynamic device personalization*/ 15414 struct cmd_ddp_del_result { 15415 cmdline_fixed_string_t ddp; 15416 cmdline_fixed_string_t del; 15417 portid_t port_id; 15418 char filepath[]; 15419 }; 15420 15421 cmdline_parse_token_string_t cmd_ddp_del_ddp = 15422 TOKEN_STRING_INITIALIZER(struct cmd_ddp_del_result, ddp, "ddp"); 15423 cmdline_parse_token_string_t cmd_ddp_del_del = 15424 TOKEN_STRING_INITIALIZER(struct cmd_ddp_del_result, del, "del"); 15425 cmdline_parse_token_num_t cmd_ddp_del_port_id = 15426 TOKEN_NUM_INITIALIZER(struct cmd_ddp_del_result, port_id, UINT16); 15427 cmdline_parse_token_string_t cmd_ddp_del_filepath = 15428 TOKEN_STRING_INITIALIZER(struct cmd_ddp_del_result, filepath, NULL); 15429 15430 static void 15431 cmd_ddp_del_parsed( 15432 void *parsed_result, 15433 __attribute__((unused)) struct cmdline *cl, 15434 __attribute__((unused)) void *data) 15435 { 15436 struct cmd_ddp_del_result *res = parsed_result; 15437 uint8_t *buff; 15438 uint32_t size; 15439 int ret = -ENOTSUP; 15440 15441 if (!all_ports_stopped()) { 15442 printf("Please stop all ports first\n"); 15443 return; 15444 } 15445 15446 buff = open_file(res->filepath, &size); 15447 if (!buff) 15448 return; 15449 15450 #ifdef RTE_LIBRTE_I40E_PMD 15451 if (ret == -ENOTSUP) 15452 ret = rte_pmd_i40e_process_ddp_package(res->port_id, 15453 buff, size, 15454 RTE_PMD_I40E_PKG_OP_WR_DEL); 15455 #endif 15456 15457 if (ret == -EACCES) 15458 printf("Profile does not exist.\n"); 15459 else if (ret < 0) 15460 printf("Failed to delete profile.\n"); 15461 15462 close_file(buff); 15463 } 15464 15465 cmdline_parse_inst_t cmd_ddp_del = { 15466 .f = cmd_ddp_del_parsed, 15467 .data = NULL, 15468 .help_str = "ddp del <port_id> <backup_profile_path>", 15469 .tokens = { 15470 (void *)&cmd_ddp_del_ddp, 15471 (void *)&cmd_ddp_del_del, 15472 (void *)&cmd_ddp_del_port_id, 15473 (void *)&cmd_ddp_del_filepath, 15474 NULL, 15475 }, 15476 }; 15477 15478 /* Get dynamic device personalization profile info */ 15479 struct cmd_ddp_info_result { 15480 cmdline_fixed_string_t ddp; 15481 cmdline_fixed_string_t get; 15482 cmdline_fixed_string_t info; 15483 char filepath[]; 15484 }; 15485 15486 cmdline_parse_token_string_t cmd_ddp_info_ddp = 15487 TOKEN_STRING_INITIALIZER(struct cmd_ddp_info_result, ddp, "ddp"); 15488 cmdline_parse_token_string_t cmd_ddp_info_get = 15489 TOKEN_STRING_INITIALIZER(struct cmd_ddp_info_result, get, "get"); 15490 cmdline_parse_token_string_t cmd_ddp_info_info = 15491 TOKEN_STRING_INITIALIZER(struct cmd_ddp_info_result, info, "info"); 15492 cmdline_parse_token_string_t cmd_ddp_info_filepath = 15493 TOKEN_STRING_INITIALIZER(struct cmd_ddp_info_result, filepath, NULL); 15494 15495 static void 15496 cmd_ddp_info_parsed( 15497 void *parsed_result, 15498 __attribute__((unused)) struct cmdline *cl, 15499 __attribute__((unused)) void *data) 15500 { 15501 struct cmd_ddp_info_result *res = parsed_result; 15502 uint8_t *pkg; 15503 uint32_t pkg_size; 15504 int ret = -ENOTSUP; 15505 #ifdef RTE_LIBRTE_I40E_PMD 15506 uint32_t i, j, n; 15507 uint8_t *buff; 15508 uint32_t buff_size = 0; 15509 struct rte_pmd_i40e_profile_info info; 15510 uint32_t dev_num = 0; 15511 struct rte_pmd_i40e_ddp_device_id *devs; 15512 uint32_t proto_num = 0; 15513 struct rte_pmd_i40e_proto_info *proto = NULL; 15514 uint32_t pctype_num = 0; 15515 struct rte_pmd_i40e_ptype_info *pctype; 15516 uint32_t ptype_num = 0; 15517 struct rte_pmd_i40e_ptype_info *ptype; 15518 uint8_t proto_id; 15519 15520 #endif 15521 15522 pkg = open_file(res->filepath, &pkg_size); 15523 if (!pkg) 15524 return; 15525 15526 #ifdef RTE_LIBRTE_I40E_PMD 15527 ret = rte_pmd_i40e_get_ddp_info(pkg, pkg_size, 15528 (uint8_t *)&info, sizeof(info), 15529 RTE_PMD_I40E_PKG_INFO_GLOBAL_HEADER); 15530 if (!ret) { 15531 printf("Global Track id: 0x%x\n", info.track_id); 15532 printf("Global Version: %d.%d.%d.%d\n", 15533 info.version.major, 15534 info.version.minor, 15535 info.version.update, 15536 info.version.draft); 15537 printf("Global Package name: %s\n\n", info.name); 15538 } 15539 15540 ret = rte_pmd_i40e_get_ddp_info(pkg, pkg_size, 15541 (uint8_t *)&info, sizeof(info), 15542 RTE_PMD_I40E_PKG_INFO_HEADER); 15543 if (!ret) { 15544 printf("i40e Profile Track id: 0x%x\n", info.track_id); 15545 printf("i40e Profile Version: %d.%d.%d.%d\n", 15546 info.version.major, 15547 info.version.minor, 15548 info.version.update, 15549 info.version.draft); 15550 printf("i40e Profile name: %s\n\n", info.name); 15551 } 15552 15553 ret = rte_pmd_i40e_get_ddp_info(pkg, pkg_size, 15554 (uint8_t *)&buff_size, sizeof(buff_size), 15555 RTE_PMD_I40E_PKG_INFO_GLOBAL_NOTES_SIZE); 15556 if (!ret && buff_size) { 15557 buff = (uint8_t *)malloc(buff_size); 15558 if (buff) { 15559 ret = rte_pmd_i40e_get_ddp_info(pkg, pkg_size, 15560 buff, buff_size, 15561 RTE_PMD_I40E_PKG_INFO_GLOBAL_NOTES); 15562 if (!ret) 15563 printf("Package Notes:\n%s\n\n", buff); 15564 free(buff); 15565 } 15566 } 15567 15568 ret = rte_pmd_i40e_get_ddp_info(pkg, pkg_size, 15569 (uint8_t *)&dev_num, sizeof(dev_num), 15570 RTE_PMD_I40E_PKG_INFO_DEVID_NUM); 15571 if (!ret && dev_num) { 15572 buff_size = dev_num * sizeof(struct rte_pmd_i40e_ddp_device_id); 15573 devs = (struct rte_pmd_i40e_ddp_device_id *)malloc(buff_size); 15574 if (devs) { 15575 ret = rte_pmd_i40e_get_ddp_info(pkg, pkg_size, 15576 (uint8_t *)devs, buff_size, 15577 RTE_PMD_I40E_PKG_INFO_DEVID_LIST); 15578 if (!ret) { 15579 printf("List of supported devices:\n"); 15580 for (i = 0; i < dev_num; i++) { 15581 printf(" %04X:%04X %04X:%04X\n", 15582 devs[i].vendor_dev_id >> 16, 15583 devs[i].vendor_dev_id & 0xFFFF, 15584 devs[i].sub_vendor_dev_id >> 16, 15585 devs[i].sub_vendor_dev_id & 0xFFFF); 15586 } 15587 printf("\n"); 15588 } 15589 free(devs); 15590 } 15591 } 15592 15593 /* get information about protocols and packet types */ 15594 ret = rte_pmd_i40e_get_ddp_info(pkg, pkg_size, 15595 (uint8_t *)&proto_num, sizeof(proto_num), 15596 RTE_PMD_I40E_PKG_INFO_PROTOCOL_NUM); 15597 if (ret || !proto_num) 15598 goto no_print_return; 15599 15600 buff_size = proto_num * sizeof(struct rte_pmd_i40e_proto_info); 15601 proto = (struct rte_pmd_i40e_proto_info *)malloc(buff_size); 15602 if (!proto) 15603 goto no_print_return; 15604 15605 ret = rte_pmd_i40e_get_ddp_info(pkg, pkg_size, (uint8_t *)proto, 15606 buff_size, 15607 RTE_PMD_I40E_PKG_INFO_PROTOCOL_LIST); 15608 if (!ret) { 15609 printf("List of used protocols:\n"); 15610 for (i = 0; i < proto_num; i++) 15611 printf(" %2u: %s\n", proto[i].proto_id, 15612 proto[i].name); 15613 printf("\n"); 15614 } 15615 ret = rte_pmd_i40e_get_ddp_info(pkg, pkg_size, 15616 (uint8_t *)&pctype_num, sizeof(pctype_num), 15617 RTE_PMD_I40E_PKG_INFO_PCTYPE_NUM); 15618 if (ret || !pctype_num) 15619 goto no_print_pctypes; 15620 15621 buff_size = pctype_num * sizeof(struct rte_pmd_i40e_ptype_info); 15622 pctype = (struct rte_pmd_i40e_ptype_info *)malloc(buff_size); 15623 if (!pctype) 15624 goto no_print_pctypes; 15625 15626 ret = rte_pmd_i40e_get_ddp_info(pkg, pkg_size, (uint8_t *)pctype, 15627 buff_size, 15628 RTE_PMD_I40E_PKG_INFO_PCTYPE_LIST); 15629 if (ret) { 15630 free(pctype); 15631 goto no_print_pctypes; 15632 } 15633 15634 printf("List of defined packet classification types:\n"); 15635 for (i = 0; i < pctype_num; i++) { 15636 printf(" %2u:", pctype[i].ptype_id); 15637 for (j = 0; j < RTE_PMD_I40E_PROTO_NUM; j++) { 15638 proto_id = pctype[i].protocols[j]; 15639 if (proto_id != RTE_PMD_I40E_PROTO_UNUSED) { 15640 for (n = 0; n < proto_num; n++) { 15641 if (proto[n].proto_id == proto_id) { 15642 printf(" %s", proto[n].name); 15643 break; 15644 } 15645 } 15646 } 15647 } 15648 printf("\n"); 15649 } 15650 printf("\n"); 15651 free(pctype); 15652 15653 no_print_pctypes: 15654 15655 ret = rte_pmd_i40e_get_ddp_info(pkg, pkg_size, (uint8_t *)&ptype_num, 15656 sizeof(ptype_num), 15657 RTE_PMD_I40E_PKG_INFO_PTYPE_NUM); 15658 if (ret || !ptype_num) 15659 goto no_print_return; 15660 15661 buff_size = ptype_num * sizeof(struct rte_pmd_i40e_ptype_info); 15662 ptype = (struct rte_pmd_i40e_ptype_info *)malloc(buff_size); 15663 if (!ptype) 15664 goto no_print_return; 15665 15666 ret = rte_pmd_i40e_get_ddp_info(pkg, pkg_size, (uint8_t *)ptype, 15667 buff_size, 15668 RTE_PMD_I40E_PKG_INFO_PTYPE_LIST); 15669 if (ret) { 15670 free(ptype); 15671 goto no_print_return; 15672 } 15673 printf("List of defined packet types:\n"); 15674 for (i = 0; i < ptype_num; i++) { 15675 printf(" %2u:", ptype[i].ptype_id); 15676 for (j = 0; j < RTE_PMD_I40E_PROTO_NUM; j++) { 15677 proto_id = ptype[i].protocols[j]; 15678 if (proto_id != RTE_PMD_I40E_PROTO_UNUSED) { 15679 for (n = 0; n < proto_num; n++) { 15680 if (proto[n].proto_id == proto_id) { 15681 printf(" %s", proto[n].name); 15682 break; 15683 } 15684 } 15685 } 15686 } 15687 printf("\n"); 15688 } 15689 free(ptype); 15690 printf("\n"); 15691 15692 ret = 0; 15693 no_print_return: 15694 if (proto) 15695 free(proto); 15696 #endif 15697 if (ret == -ENOTSUP) 15698 printf("Function not supported in PMD driver\n"); 15699 close_file(pkg); 15700 } 15701 15702 cmdline_parse_inst_t cmd_ddp_get_info = { 15703 .f = cmd_ddp_info_parsed, 15704 .data = NULL, 15705 .help_str = "ddp get info <profile_path>", 15706 .tokens = { 15707 (void *)&cmd_ddp_info_ddp, 15708 (void *)&cmd_ddp_info_get, 15709 (void *)&cmd_ddp_info_info, 15710 (void *)&cmd_ddp_info_filepath, 15711 NULL, 15712 }, 15713 }; 15714 15715 /* Get dynamic device personalization profile info list*/ 15716 #define PROFILE_INFO_SIZE 48 15717 #define MAX_PROFILE_NUM 16 15718 15719 struct cmd_ddp_get_list_result { 15720 cmdline_fixed_string_t ddp; 15721 cmdline_fixed_string_t get; 15722 cmdline_fixed_string_t list; 15723 portid_t port_id; 15724 }; 15725 15726 cmdline_parse_token_string_t cmd_ddp_get_list_ddp = 15727 TOKEN_STRING_INITIALIZER(struct cmd_ddp_get_list_result, ddp, "ddp"); 15728 cmdline_parse_token_string_t cmd_ddp_get_list_get = 15729 TOKEN_STRING_INITIALIZER(struct cmd_ddp_get_list_result, get, "get"); 15730 cmdline_parse_token_string_t cmd_ddp_get_list_list = 15731 TOKEN_STRING_INITIALIZER(struct cmd_ddp_get_list_result, list, "list"); 15732 cmdline_parse_token_num_t cmd_ddp_get_list_port_id = 15733 TOKEN_NUM_INITIALIZER(struct cmd_ddp_get_list_result, port_id, UINT16); 15734 15735 static void 15736 cmd_ddp_get_list_parsed( 15737 __attribute__((unused)) void *parsed_result, 15738 __attribute__((unused)) struct cmdline *cl, 15739 __attribute__((unused)) void *data) 15740 { 15741 #ifdef RTE_LIBRTE_I40E_PMD 15742 struct cmd_ddp_get_list_result *res = parsed_result; 15743 struct rte_pmd_i40e_profile_list *p_list; 15744 struct rte_pmd_i40e_profile_info *p_info; 15745 uint32_t p_num; 15746 uint32_t size; 15747 uint32_t i; 15748 #endif 15749 int ret = -ENOTSUP; 15750 15751 #ifdef RTE_LIBRTE_I40E_PMD 15752 size = PROFILE_INFO_SIZE * MAX_PROFILE_NUM + 4; 15753 p_list = (struct rte_pmd_i40e_profile_list *)malloc(size); 15754 if (!p_list) 15755 printf("%s: Failed to malloc buffer\n", __func__); 15756 15757 if (ret == -ENOTSUP) 15758 ret = rte_pmd_i40e_get_ddp_list(res->port_id, 15759 (uint8_t *)p_list, size); 15760 15761 if (!ret) { 15762 p_num = p_list->p_count; 15763 printf("Profile number is: %d\n\n", p_num); 15764 15765 for (i = 0; i < p_num; i++) { 15766 p_info = &p_list->p_info[i]; 15767 printf("Profile %d:\n", i); 15768 printf("Track id: 0x%x\n", p_info->track_id); 15769 printf("Version: %d.%d.%d.%d\n", 15770 p_info->version.major, 15771 p_info->version.minor, 15772 p_info->version.update, 15773 p_info->version.draft); 15774 printf("Profile name: %s\n\n", p_info->name); 15775 } 15776 } 15777 15778 free(p_list); 15779 #endif 15780 15781 if (ret < 0) 15782 printf("Failed to get ddp list\n"); 15783 } 15784 15785 cmdline_parse_inst_t cmd_ddp_get_list = { 15786 .f = cmd_ddp_get_list_parsed, 15787 .data = NULL, 15788 .help_str = "ddp get list <port_id>", 15789 .tokens = { 15790 (void *)&cmd_ddp_get_list_ddp, 15791 (void *)&cmd_ddp_get_list_get, 15792 (void *)&cmd_ddp_get_list_list, 15793 (void *)&cmd_ddp_get_list_port_id, 15794 NULL, 15795 }, 15796 }; 15797 15798 /* Configure input set */ 15799 struct cmd_cfg_input_set_result { 15800 cmdline_fixed_string_t port; 15801 cmdline_fixed_string_t cfg; 15802 portid_t port_id; 15803 cmdline_fixed_string_t pctype; 15804 uint8_t pctype_id; 15805 cmdline_fixed_string_t inset_type; 15806 cmdline_fixed_string_t opt; 15807 cmdline_fixed_string_t field; 15808 uint8_t field_idx; 15809 }; 15810 15811 static void 15812 cmd_cfg_input_set_parsed( 15813 __attribute__((unused)) void *parsed_result, 15814 __attribute__((unused)) struct cmdline *cl, 15815 __attribute__((unused)) void *data) 15816 { 15817 #ifdef RTE_LIBRTE_I40E_PMD 15818 struct cmd_cfg_input_set_result *res = parsed_result; 15819 enum rte_pmd_i40e_inset_type inset_type = INSET_NONE; 15820 struct rte_pmd_i40e_inset inset; 15821 #endif 15822 int ret = -ENOTSUP; 15823 15824 if (!all_ports_stopped()) { 15825 printf("Please stop all ports first\n"); 15826 return; 15827 } 15828 15829 #ifdef RTE_LIBRTE_I40E_PMD 15830 if (!strcmp(res->inset_type, "hash_inset")) 15831 inset_type = INSET_HASH; 15832 else if (!strcmp(res->inset_type, "fdir_inset")) 15833 inset_type = INSET_FDIR; 15834 else if (!strcmp(res->inset_type, "fdir_flx_inset")) 15835 inset_type = INSET_FDIR_FLX; 15836 ret = rte_pmd_i40e_inset_get(res->port_id, res->pctype_id, 15837 &inset, inset_type); 15838 if (ret) { 15839 printf("Failed to get input set.\n"); 15840 return; 15841 } 15842 15843 if (!strcmp(res->opt, "get")) { 15844 ret = rte_pmd_i40e_inset_field_get(inset.inset, 15845 res->field_idx); 15846 if (ret) 15847 printf("Field index %d is enabled.\n", res->field_idx); 15848 else 15849 printf("Field index %d is disabled.\n", res->field_idx); 15850 return; 15851 } else if (!strcmp(res->opt, "set")) 15852 ret = rte_pmd_i40e_inset_field_set(&inset.inset, 15853 res->field_idx); 15854 else if (!strcmp(res->opt, "clear")) 15855 ret = rte_pmd_i40e_inset_field_clear(&inset.inset, 15856 res->field_idx); 15857 if (ret) { 15858 printf("Failed to configure input set field.\n"); 15859 return; 15860 } 15861 15862 ret = rte_pmd_i40e_inset_set(res->port_id, res->pctype_id, 15863 &inset, inset_type); 15864 if (ret) { 15865 printf("Failed to set input set.\n"); 15866 return; 15867 } 15868 #endif 15869 15870 if (ret == -ENOTSUP) 15871 printf("Function not supported\n"); 15872 } 15873 15874 cmdline_parse_token_string_t cmd_cfg_input_set_port = 15875 TOKEN_STRING_INITIALIZER(struct cmd_cfg_input_set_result, 15876 port, "port"); 15877 cmdline_parse_token_string_t cmd_cfg_input_set_cfg = 15878 TOKEN_STRING_INITIALIZER(struct cmd_cfg_input_set_result, 15879 cfg, "config"); 15880 cmdline_parse_token_num_t cmd_cfg_input_set_port_id = 15881 TOKEN_NUM_INITIALIZER(struct cmd_cfg_input_set_result, 15882 port_id, UINT16); 15883 cmdline_parse_token_string_t cmd_cfg_input_set_pctype = 15884 TOKEN_STRING_INITIALIZER(struct cmd_cfg_input_set_result, 15885 pctype, "pctype"); 15886 cmdline_parse_token_num_t cmd_cfg_input_set_pctype_id = 15887 TOKEN_NUM_INITIALIZER(struct cmd_cfg_input_set_result, 15888 pctype_id, UINT8); 15889 cmdline_parse_token_string_t cmd_cfg_input_set_inset_type = 15890 TOKEN_STRING_INITIALIZER(struct cmd_cfg_input_set_result, 15891 inset_type, 15892 "hash_inset#fdir_inset#fdir_flx_inset"); 15893 cmdline_parse_token_string_t cmd_cfg_input_set_opt = 15894 TOKEN_STRING_INITIALIZER(struct cmd_cfg_input_set_result, 15895 opt, "get#set#clear"); 15896 cmdline_parse_token_string_t cmd_cfg_input_set_field = 15897 TOKEN_STRING_INITIALIZER(struct cmd_cfg_input_set_result, 15898 field, "field"); 15899 cmdline_parse_token_num_t cmd_cfg_input_set_field_idx = 15900 TOKEN_NUM_INITIALIZER(struct cmd_cfg_input_set_result, 15901 field_idx, UINT8); 15902 15903 cmdline_parse_inst_t cmd_cfg_input_set = { 15904 .f = cmd_cfg_input_set_parsed, 15905 .data = NULL, 15906 .help_str = "port config <port_id> pctype <pctype_id> hash_inset|" 15907 "fdir_inset|fdir_flx_inset get|set|clear field <field_idx>", 15908 .tokens = { 15909 (void *)&cmd_cfg_input_set_port, 15910 (void *)&cmd_cfg_input_set_cfg, 15911 (void *)&cmd_cfg_input_set_port_id, 15912 (void *)&cmd_cfg_input_set_pctype, 15913 (void *)&cmd_cfg_input_set_pctype_id, 15914 (void *)&cmd_cfg_input_set_inset_type, 15915 (void *)&cmd_cfg_input_set_opt, 15916 (void *)&cmd_cfg_input_set_field, 15917 (void *)&cmd_cfg_input_set_field_idx, 15918 NULL, 15919 }, 15920 }; 15921 15922 /* Clear input set */ 15923 struct cmd_clear_input_set_result { 15924 cmdline_fixed_string_t port; 15925 cmdline_fixed_string_t cfg; 15926 portid_t port_id; 15927 cmdline_fixed_string_t pctype; 15928 uint8_t pctype_id; 15929 cmdline_fixed_string_t inset_type; 15930 cmdline_fixed_string_t clear; 15931 cmdline_fixed_string_t all; 15932 }; 15933 15934 static void 15935 cmd_clear_input_set_parsed( 15936 __attribute__((unused)) void *parsed_result, 15937 __attribute__((unused)) struct cmdline *cl, 15938 __attribute__((unused)) void *data) 15939 { 15940 #ifdef RTE_LIBRTE_I40E_PMD 15941 struct cmd_clear_input_set_result *res = parsed_result; 15942 enum rte_pmd_i40e_inset_type inset_type = INSET_NONE; 15943 struct rte_pmd_i40e_inset inset; 15944 #endif 15945 int ret = -ENOTSUP; 15946 15947 if (!all_ports_stopped()) { 15948 printf("Please stop all ports first\n"); 15949 return; 15950 } 15951 15952 #ifdef RTE_LIBRTE_I40E_PMD 15953 if (!strcmp(res->inset_type, "hash_inset")) 15954 inset_type = INSET_HASH; 15955 else if (!strcmp(res->inset_type, "fdir_inset")) 15956 inset_type = INSET_FDIR; 15957 else if (!strcmp(res->inset_type, "fdir_flx_inset")) 15958 inset_type = INSET_FDIR_FLX; 15959 15960 memset(&inset, 0, sizeof(inset)); 15961 15962 ret = rte_pmd_i40e_inset_set(res->port_id, res->pctype_id, 15963 &inset, inset_type); 15964 if (ret) { 15965 printf("Failed to clear input set.\n"); 15966 return; 15967 } 15968 15969 #endif 15970 15971 if (ret == -ENOTSUP) 15972 printf("Function not supported\n"); 15973 } 15974 15975 cmdline_parse_token_string_t cmd_clear_input_set_port = 15976 TOKEN_STRING_INITIALIZER(struct cmd_clear_input_set_result, 15977 port, "port"); 15978 cmdline_parse_token_string_t cmd_clear_input_set_cfg = 15979 TOKEN_STRING_INITIALIZER(struct cmd_clear_input_set_result, 15980 cfg, "config"); 15981 cmdline_parse_token_num_t cmd_clear_input_set_port_id = 15982 TOKEN_NUM_INITIALIZER(struct cmd_clear_input_set_result, 15983 port_id, UINT16); 15984 cmdline_parse_token_string_t cmd_clear_input_set_pctype = 15985 TOKEN_STRING_INITIALIZER(struct cmd_clear_input_set_result, 15986 pctype, "pctype"); 15987 cmdline_parse_token_num_t cmd_clear_input_set_pctype_id = 15988 TOKEN_NUM_INITIALIZER(struct cmd_clear_input_set_result, 15989 pctype_id, UINT8); 15990 cmdline_parse_token_string_t cmd_clear_input_set_inset_type = 15991 TOKEN_STRING_INITIALIZER(struct cmd_clear_input_set_result, 15992 inset_type, 15993 "hash_inset#fdir_inset#fdir_flx_inset"); 15994 cmdline_parse_token_string_t cmd_clear_input_set_clear = 15995 TOKEN_STRING_INITIALIZER(struct cmd_clear_input_set_result, 15996 clear, "clear"); 15997 cmdline_parse_token_string_t cmd_clear_input_set_all = 15998 TOKEN_STRING_INITIALIZER(struct cmd_clear_input_set_result, 15999 all, "all"); 16000 16001 cmdline_parse_inst_t cmd_clear_input_set = { 16002 .f = cmd_clear_input_set_parsed, 16003 .data = NULL, 16004 .help_str = "port config <port_id> pctype <pctype_id> hash_inset|" 16005 "fdir_inset|fdir_flx_inset clear all", 16006 .tokens = { 16007 (void *)&cmd_clear_input_set_port, 16008 (void *)&cmd_clear_input_set_cfg, 16009 (void *)&cmd_clear_input_set_port_id, 16010 (void *)&cmd_clear_input_set_pctype, 16011 (void *)&cmd_clear_input_set_pctype_id, 16012 (void *)&cmd_clear_input_set_inset_type, 16013 (void *)&cmd_clear_input_set_clear, 16014 (void *)&cmd_clear_input_set_all, 16015 NULL, 16016 }, 16017 }; 16018 16019 /* show vf stats */ 16020 16021 /* Common result structure for show vf stats */ 16022 struct cmd_show_vf_stats_result { 16023 cmdline_fixed_string_t show; 16024 cmdline_fixed_string_t vf; 16025 cmdline_fixed_string_t stats; 16026 portid_t port_id; 16027 uint16_t vf_id; 16028 }; 16029 16030 /* Common CLI fields show vf stats*/ 16031 cmdline_parse_token_string_t cmd_show_vf_stats_show = 16032 TOKEN_STRING_INITIALIZER 16033 (struct cmd_show_vf_stats_result, 16034 show, "show"); 16035 cmdline_parse_token_string_t cmd_show_vf_stats_vf = 16036 TOKEN_STRING_INITIALIZER 16037 (struct cmd_show_vf_stats_result, 16038 vf, "vf"); 16039 cmdline_parse_token_string_t cmd_show_vf_stats_stats = 16040 TOKEN_STRING_INITIALIZER 16041 (struct cmd_show_vf_stats_result, 16042 stats, "stats"); 16043 cmdline_parse_token_num_t cmd_show_vf_stats_port_id = 16044 TOKEN_NUM_INITIALIZER 16045 (struct cmd_show_vf_stats_result, 16046 port_id, UINT16); 16047 cmdline_parse_token_num_t cmd_show_vf_stats_vf_id = 16048 TOKEN_NUM_INITIALIZER 16049 (struct cmd_show_vf_stats_result, 16050 vf_id, UINT16); 16051 16052 static void 16053 cmd_show_vf_stats_parsed( 16054 void *parsed_result, 16055 __attribute__((unused)) struct cmdline *cl, 16056 __attribute__((unused)) void *data) 16057 { 16058 struct cmd_show_vf_stats_result *res = parsed_result; 16059 struct rte_eth_stats stats; 16060 int ret = -ENOTSUP; 16061 static const char *nic_stats_border = "########################"; 16062 16063 if (port_id_is_invalid(res->port_id, ENABLED_WARN)) 16064 return; 16065 16066 memset(&stats, 0, sizeof(stats)); 16067 16068 #ifdef RTE_LIBRTE_I40E_PMD 16069 if (ret == -ENOTSUP) 16070 ret = rte_pmd_i40e_get_vf_stats(res->port_id, 16071 res->vf_id, 16072 &stats); 16073 #endif 16074 #ifdef RTE_LIBRTE_BNXT_PMD 16075 if (ret == -ENOTSUP) 16076 ret = rte_pmd_bnxt_get_vf_stats(res->port_id, 16077 res->vf_id, 16078 &stats); 16079 #endif 16080 16081 switch (ret) { 16082 case 0: 16083 break; 16084 case -EINVAL: 16085 printf("invalid vf_id %d\n", res->vf_id); 16086 break; 16087 case -ENODEV: 16088 printf("invalid port_id %d\n", res->port_id); 16089 break; 16090 case -ENOTSUP: 16091 printf("function not implemented\n"); 16092 break; 16093 default: 16094 printf("programming error: (%s)\n", strerror(-ret)); 16095 } 16096 16097 printf("\n %s NIC statistics for port %-2d vf %-2d %s\n", 16098 nic_stats_border, res->port_id, res->vf_id, nic_stats_border); 16099 16100 printf(" RX-packets: %-10"PRIu64" RX-missed: %-10"PRIu64" RX-bytes: " 16101 "%-"PRIu64"\n", 16102 stats.ipackets, stats.imissed, stats.ibytes); 16103 printf(" RX-errors: %-"PRIu64"\n", stats.ierrors); 16104 printf(" RX-nombuf: %-10"PRIu64"\n", 16105 stats.rx_nombuf); 16106 printf(" TX-packets: %-10"PRIu64" TX-errors: %-10"PRIu64" TX-bytes: " 16107 "%-"PRIu64"\n", 16108 stats.opackets, stats.oerrors, stats.obytes); 16109 16110 printf(" %s############################%s\n", 16111 nic_stats_border, nic_stats_border); 16112 } 16113 16114 cmdline_parse_inst_t cmd_show_vf_stats = { 16115 .f = cmd_show_vf_stats_parsed, 16116 .data = NULL, 16117 .help_str = "show vf stats <port_id> <vf_id>", 16118 .tokens = { 16119 (void *)&cmd_show_vf_stats_show, 16120 (void *)&cmd_show_vf_stats_vf, 16121 (void *)&cmd_show_vf_stats_stats, 16122 (void *)&cmd_show_vf_stats_port_id, 16123 (void *)&cmd_show_vf_stats_vf_id, 16124 NULL, 16125 }, 16126 }; 16127 16128 /* clear vf stats */ 16129 16130 /* Common result structure for clear vf stats */ 16131 struct cmd_clear_vf_stats_result { 16132 cmdline_fixed_string_t clear; 16133 cmdline_fixed_string_t vf; 16134 cmdline_fixed_string_t stats; 16135 portid_t port_id; 16136 uint16_t vf_id; 16137 }; 16138 16139 /* Common CLI fields clear vf stats*/ 16140 cmdline_parse_token_string_t cmd_clear_vf_stats_clear = 16141 TOKEN_STRING_INITIALIZER 16142 (struct cmd_clear_vf_stats_result, 16143 clear, "clear"); 16144 cmdline_parse_token_string_t cmd_clear_vf_stats_vf = 16145 TOKEN_STRING_INITIALIZER 16146 (struct cmd_clear_vf_stats_result, 16147 vf, "vf"); 16148 cmdline_parse_token_string_t cmd_clear_vf_stats_stats = 16149 TOKEN_STRING_INITIALIZER 16150 (struct cmd_clear_vf_stats_result, 16151 stats, "stats"); 16152 cmdline_parse_token_num_t cmd_clear_vf_stats_port_id = 16153 TOKEN_NUM_INITIALIZER 16154 (struct cmd_clear_vf_stats_result, 16155 port_id, UINT16); 16156 cmdline_parse_token_num_t cmd_clear_vf_stats_vf_id = 16157 TOKEN_NUM_INITIALIZER 16158 (struct cmd_clear_vf_stats_result, 16159 vf_id, UINT16); 16160 16161 static void 16162 cmd_clear_vf_stats_parsed( 16163 void *parsed_result, 16164 __attribute__((unused)) struct cmdline *cl, 16165 __attribute__((unused)) void *data) 16166 { 16167 struct cmd_clear_vf_stats_result *res = parsed_result; 16168 int ret = -ENOTSUP; 16169 16170 if (port_id_is_invalid(res->port_id, ENABLED_WARN)) 16171 return; 16172 16173 #ifdef RTE_LIBRTE_I40E_PMD 16174 if (ret == -ENOTSUP) 16175 ret = rte_pmd_i40e_reset_vf_stats(res->port_id, 16176 res->vf_id); 16177 #endif 16178 #ifdef RTE_LIBRTE_BNXT_PMD 16179 if (ret == -ENOTSUP) 16180 ret = rte_pmd_bnxt_reset_vf_stats(res->port_id, 16181 res->vf_id); 16182 #endif 16183 16184 switch (ret) { 16185 case 0: 16186 break; 16187 case -EINVAL: 16188 printf("invalid vf_id %d\n", res->vf_id); 16189 break; 16190 case -ENODEV: 16191 printf("invalid port_id %d\n", res->port_id); 16192 break; 16193 case -ENOTSUP: 16194 printf("function not implemented\n"); 16195 break; 16196 default: 16197 printf("programming error: (%s)\n", strerror(-ret)); 16198 } 16199 } 16200 16201 cmdline_parse_inst_t cmd_clear_vf_stats = { 16202 .f = cmd_clear_vf_stats_parsed, 16203 .data = NULL, 16204 .help_str = "clear vf stats <port_id> <vf_id>", 16205 .tokens = { 16206 (void *)&cmd_clear_vf_stats_clear, 16207 (void *)&cmd_clear_vf_stats_vf, 16208 (void *)&cmd_clear_vf_stats_stats, 16209 (void *)&cmd_clear_vf_stats_port_id, 16210 (void *)&cmd_clear_vf_stats_vf_id, 16211 NULL, 16212 }, 16213 }; 16214 16215 /* port config pctype mapping reset */ 16216 16217 /* Common result structure for port config pctype mapping reset */ 16218 struct cmd_pctype_mapping_reset_result { 16219 cmdline_fixed_string_t port; 16220 cmdline_fixed_string_t config; 16221 portid_t port_id; 16222 cmdline_fixed_string_t pctype; 16223 cmdline_fixed_string_t mapping; 16224 cmdline_fixed_string_t reset; 16225 }; 16226 16227 /* Common CLI fields for port config pctype mapping reset*/ 16228 cmdline_parse_token_string_t cmd_pctype_mapping_reset_port = 16229 TOKEN_STRING_INITIALIZER 16230 (struct cmd_pctype_mapping_reset_result, 16231 port, "port"); 16232 cmdline_parse_token_string_t cmd_pctype_mapping_reset_config = 16233 TOKEN_STRING_INITIALIZER 16234 (struct cmd_pctype_mapping_reset_result, 16235 config, "config"); 16236 cmdline_parse_token_num_t cmd_pctype_mapping_reset_port_id = 16237 TOKEN_NUM_INITIALIZER 16238 (struct cmd_pctype_mapping_reset_result, 16239 port_id, UINT16); 16240 cmdline_parse_token_string_t cmd_pctype_mapping_reset_pctype = 16241 TOKEN_STRING_INITIALIZER 16242 (struct cmd_pctype_mapping_reset_result, 16243 pctype, "pctype"); 16244 cmdline_parse_token_string_t cmd_pctype_mapping_reset_mapping = 16245 TOKEN_STRING_INITIALIZER 16246 (struct cmd_pctype_mapping_reset_result, 16247 mapping, "mapping"); 16248 cmdline_parse_token_string_t cmd_pctype_mapping_reset_reset = 16249 TOKEN_STRING_INITIALIZER 16250 (struct cmd_pctype_mapping_reset_result, 16251 reset, "reset"); 16252 16253 static void 16254 cmd_pctype_mapping_reset_parsed( 16255 void *parsed_result, 16256 __attribute__((unused)) struct cmdline *cl, 16257 __attribute__((unused)) void *data) 16258 { 16259 struct cmd_pctype_mapping_reset_result *res = parsed_result; 16260 int ret = -ENOTSUP; 16261 16262 if (port_id_is_invalid(res->port_id, ENABLED_WARN)) 16263 return; 16264 16265 #ifdef RTE_LIBRTE_I40E_PMD 16266 ret = rte_pmd_i40e_flow_type_mapping_reset(res->port_id); 16267 #endif 16268 16269 switch (ret) { 16270 case 0: 16271 break; 16272 case -ENODEV: 16273 printf("invalid port_id %d\n", res->port_id); 16274 break; 16275 case -ENOTSUP: 16276 printf("function not implemented\n"); 16277 break; 16278 default: 16279 printf("programming error: (%s)\n", strerror(-ret)); 16280 } 16281 } 16282 16283 cmdline_parse_inst_t cmd_pctype_mapping_reset = { 16284 .f = cmd_pctype_mapping_reset_parsed, 16285 .data = NULL, 16286 .help_str = "port config <port_id> pctype mapping reset", 16287 .tokens = { 16288 (void *)&cmd_pctype_mapping_reset_port, 16289 (void *)&cmd_pctype_mapping_reset_config, 16290 (void *)&cmd_pctype_mapping_reset_port_id, 16291 (void *)&cmd_pctype_mapping_reset_pctype, 16292 (void *)&cmd_pctype_mapping_reset_mapping, 16293 (void *)&cmd_pctype_mapping_reset_reset, 16294 NULL, 16295 }, 16296 }; 16297 16298 /* show port pctype mapping */ 16299 16300 /* Common result structure for show port pctype mapping */ 16301 struct cmd_pctype_mapping_get_result { 16302 cmdline_fixed_string_t show; 16303 cmdline_fixed_string_t port; 16304 portid_t port_id; 16305 cmdline_fixed_string_t pctype; 16306 cmdline_fixed_string_t mapping; 16307 }; 16308 16309 /* Common CLI fields for pctype mapping get */ 16310 cmdline_parse_token_string_t cmd_pctype_mapping_get_show = 16311 TOKEN_STRING_INITIALIZER 16312 (struct cmd_pctype_mapping_get_result, 16313 show, "show"); 16314 cmdline_parse_token_string_t cmd_pctype_mapping_get_port = 16315 TOKEN_STRING_INITIALIZER 16316 (struct cmd_pctype_mapping_get_result, 16317 port, "port"); 16318 cmdline_parse_token_num_t cmd_pctype_mapping_get_port_id = 16319 TOKEN_NUM_INITIALIZER 16320 (struct cmd_pctype_mapping_get_result, 16321 port_id, UINT16); 16322 cmdline_parse_token_string_t cmd_pctype_mapping_get_pctype = 16323 TOKEN_STRING_INITIALIZER 16324 (struct cmd_pctype_mapping_get_result, 16325 pctype, "pctype"); 16326 cmdline_parse_token_string_t cmd_pctype_mapping_get_mapping = 16327 TOKEN_STRING_INITIALIZER 16328 (struct cmd_pctype_mapping_get_result, 16329 mapping, "mapping"); 16330 16331 static void 16332 cmd_pctype_mapping_get_parsed( 16333 void *parsed_result, 16334 __attribute__((unused)) struct cmdline *cl, 16335 __attribute__((unused)) void *data) 16336 { 16337 struct cmd_pctype_mapping_get_result *res = parsed_result; 16338 int ret = -ENOTSUP; 16339 #ifdef RTE_LIBRTE_I40E_PMD 16340 struct rte_pmd_i40e_flow_type_mapping 16341 mapping[RTE_PMD_I40E_FLOW_TYPE_MAX]; 16342 int i, j, first_pctype; 16343 #endif 16344 16345 if (port_id_is_invalid(res->port_id, ENABLED_WARN)) 16346 return; 16347 16348 #ifdef RTE_LIBRTE_I40E_PMD 16349 ret = rte_pmd_i40e_flow_type_mapping_get(res->port_id, mapping); 16350 #endif 16351 16352 switch (ret) { 16353 case 0: 16354 break; 16355 case -ENODEV: 16356 printf("invalid port_id %d\n", res->port_id); 16357 return; 16358 case -ENOTSUP: 16359 printf("function not implemented\n"); 16360 return; 16361 default: 16362 printf("programming error: (%s)\n", strerror(-ret)); 16363 return; 16364 } 16365 16366 #ifdef RTE_LIBRTE_I40E_PMD 16367 for (i = 0; i < RTE_PMD_I40E_FLOW_TYPE_MAX; i++) { 16368 if (mapping[i].pctype != 0ULL) { 16369 first_pctype = 1; 16370 16371 printf("pctype: "); 16372 for (j = 0; j < RTE_PMD_I40E_PCTYPE_MAX; j++) { 16373 if (mapping[i].pctype & (1ULL << j)) { 16374 printf(first_pctype ? 16375 "%02d" : ",%02d", j); 16376 first_pctype = 0; 16377 } 16378 } 16379 printf(" -> flowtype: %02d\n", mapping[i].flow_type); 16380 } 16381 } 16382 #endif 16383 } 16384 16385 cmdline_parse_inst_t cmd_pctype_mapping_get = { 16386 .f = cmd_pctype_mapping_get_parsed, 16387 .data = NULL, 16388 .help_str = "show port <port_id> pctype mapping", 16389 .tokens = { 16390 (void *)&cmd_pctype_mapping_get_show, 16391 (void *)&cmd_pctype_mapping_get_port, 16392 (void *)&cmd_pctype_mapping_get_port_id, 16393 (void *)&cmd_pctype_mapping_get_pctype, 16394 (void *)&cmd_pctype_mapping_get_mapping, 16395 NULL, 16396 }, 16397 }; 16398 16399 /* port config pctype mapping update */ 16400 16401 /* Common result structure for port config pctype mapping update */ 16402 struct cmd_pctype_mapping_update_result { 16403 cmdline_fixed_string_t port; 16404 cmdline_fixed_string_t config; 16405 portid_t port_id; 16406 cmdline_fixed_string_t pctype; 16407 cmdline_fixed_string_t mapping; 16408 cmdline_fixed_string_t update; 16409 cmdline_fixed_string_t pctype_list; 16410 uint16_t flow_type; 16411 }; 16412 16413 /* Common CLI fields for pctype mapping update*/ 16414 cmdline_parse_token_string_t cmd_pctype_mapping_update_port = 16415 TOKEN_STRING_INITIALIZER 16416 (struct cmd_pctype_mapping_update_result, 16417 port, "port"); 16418 cmdline_parse_token_string_t cmd_pctype_mapping_update_config = 16419 TOKEN_STRING_INITIALIZER 16420 (struct cmd_pctype_mapping_update_result, 16421 config, "config"); 16422 cmdline_parse_token_num_t cmd_pctype_mapping_update_port_id = 16423 TOKEN_NUM_INITIALIZER 16424 (struct cmd_pctype_mapping_update_result, 16425 port_id, UINT16); 16426 cmdline_parse_token_string_t cmd_pctype_mapping_update_pctype = 16427 TOKEN_STRING_INITIALIZER 16428 (struct cmd_pctype_mapping_update_result, 16429 pctype, "pctype"); 16430 cmdline_parse_token_string_t cmd_pctype_mapping_update_mapping = 16431 TOKEN_STRING_INITIALIZER 16432 (struct cmd_pctype_mapping_update_result, 16433 mapping, "mapping"); 16434 cmdline_parse_token_string_t cmd_pctype_mapping_update_update = 16435 TOKEN_STRING_INITIALIZER 16436 (struct cmd_pctype_mapping_update_result, 16437 update, "update"); 16438 cmdline_parse_token_string_t cmd_pctype_mapping_update_pc_type = 16439 TOKEN_STRING_INITIALIZER 16440 (struct cmd_pctype_mapping_update_result, 16441 pctype_list, NULL); 16442 cmdline_parse_token_num_t cmd_pctype_mapping_update_flow_type = 16443 TOKEN_NUM_INITIALIZER 16444 (struct cmd_pctype_mapping_update_result, 16445 flow_type, UINT16); 16446 16447 static void 16448 cmd_pctype_mapping_update_parsed( 16449 void *parsed_result, 16450 __attribute__((unused)) struct cmdline *cl, 16451 __attribute__((unused)) void *data) 16452 { 16453 struct cmd_pctype_mapping_update_result *res = parsed_result; 16454 int ret = -ENOTSUP; 16455 #ifdef RTE_LIBRTE_I40E_PMD 16456 struct rte_pmd_i40e_flow_type_mapping mapping; 16457 unsigned int i; 16458 unsigned int nb_item; 16459 unsigned int pctype_list[RTE_PMD_I40E_PCTYPE_MAX]; 16460 #endif 16461 16462 if (port_id_is_invalid(res->port_id, ENABLED_WARN)) 16463 return; 16464 16465 #ifdef RTE_LIBRTE_I40E_PMD 16466 nb_item = parse_item_list(res->pctype_list, "pctypes", 16467 RTE_PMD_I40E_PCTYPE_MAX, pctype_list, 1); 16468 mapping.flow_type = res->flow_type; 16469 for (i = 0, mapping.pctype = 0ULL; i < nb_item; i++) 16470 mapping.pctype |= (1ULL << pctype_list[i]); 16471 ret = rte_pmd_i40e_flow_type_mapping_update(res->port_id, 16472 &mapping, 16473 1, 16474 0); 16475 #endif 16476 16477 switch (ret) { 16478 case 0: 16479 break; 16480 case -EINVAL: 16481 printf("invalid pctype or flow type\n"); 16482 break; 16483 case -ENODEV: 16484 printf("invalid port_id %d\n", res->port_id); 16485 break; 16486 case -ENOTSUP: 16487 printf("function not implemented\n"); 16488 break; 16489 default: 16490 printf("programming error: (%s)\n", strerror(-ret)); 16491 } 16492 } 16493 16494 cmdline_parse_inst_t cmd_pctype_mapping_update = { 16495 .f = cmd_pctype_mapping_update_parsed, 16496 .data = NULL, 16497 .help_str = "port config <port_id> pctype mapping update" 16498 " <pctype_id_0,[pctype_id_1]*> <flowtype_id>", 16499 .tokens = { 16500 (void *)&cmd_pctype_mapping_update_port, 16501 (void *)&cmd_pctype_mapping_update_config, 16502 (void *)&cmd_pctype_mapping_update_port_id, 16503 (void *)&cmd_pctype_mapping_update_pctype, 16504 (void *)&cmd_pctype_mapping_update_mapping, 16505 (void *)&cmd_pctype_mapping_update_update, 16506 (void *)&cmd_pctype_mapping_update_pc_type, 16507 (void *)&cmd_pctype_mapping_update_flow_type, 16508 NULL, 16509 }, 16510 }; 16511 16512 /* ptype mapping get */ 16513 16514 /* Common result structure for ptype mapping get */ 16515 struct cmd_ptype_mapping_get_result { 16516 cmdline_fixed_string_t ptype; 16517 cmdline_fixed_string_t mapping; 16518 cmdline_fixed_string_t get; 16519 portid_t port_id; 16520 uint8_t valid_only; 16521 }; 16522 16523 /* Common CLI fields for ptype mapping get */ 16524 cmdline_parse_token_string_t cmd_ptype_mapping_get_ptype = 16525 TOKEN_STRING_INITIALIZER 16526 (struct cmd_ptype_mapping_get_result, 16527 ptype, "ptype"); 16528 cmdline_parse_token_string_t cmd_ptype_mapping_get_mapping = 16529 TOKEN_STRING_INITIALIZER 16530 (struct cmd_ptype_mapping_get_result, 16531 mapping, "mapping"); 16532 cmdline_parse_token_string_t cmd_ptype_mapping_get_get = 16533 TOKEN_STRING_INITIALIZER 16534 (struct cmd_ptype_mapping_get_result, 16535 get, "get"); 16536 cmdline_parse_token_num_t cmd_ptype_mapping_get_port_id = 16537 TOKEN_NUM_INITIALIZER 16538 (struct cmd_ptype_mapping_get_result, 16539 port_id, UINT16); 16540 cmdline_parse_token_num_t cmd_ptype_mapping_get_valid_only = 16541 TOKEN_NUM_INITIALIZER 16542 (struct cmd_ptype_mapping_get_result, 16543 valid_only, UINT8); 16544 16545 static void 16546 cmd_ptype_mapping_get_parsed( 16547 void *parsed_result, 16548 __attribute__((unused)) struct cmdline *cl, 16549 __attribute__((unused)) void *data) 16550 { 16551 struct cmd_ptype_mapping_get_result *res = parsed_result; 16552 int ret = -ENOTSUP; 16553 #ifdef RTE_LIBRTE_I40E_PMD 16554 int max_ptype_num = 256; 16555 struct rte_pmd_i40e_ptype_mapping mapping[max_ptype_num]; 16556 uint16_t count; 16557 int i; 16558 #endif 16559 16560 if (port_id_is_invalid(res->port_id, ENABLED_WARN)) 16561 return; 16562 16563 #ifdef RTE_LIBRTE_I40E_PMD 16564 ret = rte_pmd_i40e_ptype_mapping_get(res->port_id, 16565 mapping, 16566 max_ptype_num, 16567 &count, 16568 res->valid_only); 16569 #endif 16570 16571 switch (ret) { 16572 case 0: 16573 break; 16574 case -ENODEV: 16575 printf("invalid port_id %d\n", res->port_id); 16576 break; 16577 case -ENOTSUP: 16578 printf("function not implemented\n"); 16579 break; 16580 default: 16581 printf("programming error: (%s)\n", strerror(-ret)); 16582 } 16583 16584 #ifdef RTE_LIBRTE_I40E_PMD 16585 if (!ret) { 16586 for (i = 0; i < count; i++) 16587 printf("%3d\t0x%08x\n", 16588 mapping[i].hw_ptype, mapping[i].sw_ptype); 16589 } 16590 #endif 16591 } 16592 16593 cmdline_parse_inst_t cmd_ptype_mapping_get = { 16594 .f = cmd_ptype_mapping_get_parsed, 16595 .data = NULL, 16596 .help_str = "ptype mapping get <port_id> <valid_only>", 16597 .tokens = { 16598 (void *)&cmd_ptype_mapping_get_ptype, 16599 (void *)&cmd_ptype_mapping_get_mapping, 16600 (void *)&cmd_ptype_mapping_get_get, 16601 (void *)&cmd_ptype_mapping_get_port_id, 16602 (void *)&cmd_ptype_mapping_get_valid_only, 16603 NULL, 16604 }, 16605 }; 16606 16607 /* ptype mapping replace */ 16608 16609 /* Common result structure for ptype mapping replace */ 16610 struct cmd_ptype_mapping_replace_result { 16611 cmdline_fixed_string_t ptype; 16612 cmdline_fixed_string_t mapping; 16613 cmdline_fixed_string_t replace; 16614 portid_t port_id; 16615 uint32_t target; 16616 uint8_t mask; 16617 uint32_t pkt_type; 16618 }; 16619 16620 /* Common CLI fields for ptype mapping replace */ 16621 cmdline_parse_token_string_t cmd_ptype_mapping_replace_ptype = 16622 TOKEN_STRING_INITIALIZER 16623 (struct cmd_ptype_mapping_replace_result, 16624 ptype, "ptype"); 16625 cmdline_parse_token_string_t cmd_ptype_mapping_replace_mapping = 16626 TOKEN_STRING_INITIALIZER 16627 (struct cmd_ptype_mapping_replace_result, 16628 mapping, "mapping"); 16629 cmdline_parse_token_string_t cmd_ptype_mapping_replace_replace = 16630 TOKEN_STRING_INITIALIZER 16631 (struct cmd_ptype_mapping_replace_result, 16632 replace, "replace"); 16633 cmdline_parse_token_num_t cmd_ptype_mapping_replace_port_id = 16634 TOKEN_NUM_INITIALIZER 16635 (struct cmd_ptype_mapping_replace_result, 16636 port_id, UINT16); 16637 cmdline_parse_token_num_t cmd_ptype_mapping_replace_target = 16638 TOKEN_NUM_INITIALIZER 16639 (struct cmd_ptype_mapping_replace_result, 16640 target, UINT32); 16641 cmdline_parse_token_num_t cmd_ptype_mapping_replace_mask = 16642 TOKEN_NUM_INITIALIZER 16643 (struct cmd_ptype_mapping_replace_result, 16644 mask, UINT8); 16645 cmdline_parse_token_num_t cmd_ptype_mapping_replace_pkt_type = 16646 TOKEN_NUM_INITIALIZER 16647 (struct cmd_ptype_mapping_replace_result, 16648 pkt_type, UINT32); 16649 16650 static void 16651 cmd_ptype_mapping_replace_parsed( 16652 void *parsed_result, 16653 __attribute__((unused)) struct cmdline *cl, 16654 __attribute__((unused)) void *data) 16655 { 16656 struct cmd_ptype_mapping_replace_result *res = parsed_result; 16657 int ret = -ENOTSUP; 16658 16659 if (port_id_is_invalid(res->port_id, ENABLED_WARN)) 16660 return; 16661 16662 #ifdef RTE_LIBRTE_I40E_PMD 16663 ret = rte_pmd_i40e_ptype_mapping_replace(res->port_id, 16664 res->target, 16665 res->mask, 16666 res->pkt_type); 16667 #endif 16668 16669 switch (ret) { 16670 case 0: 16671 break; 16672 case -EINVAL: 16673 printf("invalid ptype 0x%8x or 0x%8x\n", 16674 res->target, res->pkt_type); 16675 break; 16676 case -ENODEV: 16677 printf("invalid port_id %d\n", res->port_id); 16678 break; 16679 case -ENOTSUP: 16680 printf("function not implemented\n"); 16681 break; 16682 default: 16683 printf("programming error: (%s)\n", strerror(-ret)); 16684 } 16685 } 16686 16687 cmdline_parse_inst_t cmd_ptype_mapping_replace = { 16688 .f = cmd_ptype_mapping_replace_parsed, 16689 .data = NULL, 16690 .help_str = 16691 "ptype mapping replace <port_id> <target> <mask> <pkt_type>", 16692 .tokens = { 16693 (void *)&cmd_ptype_mapping_replace_ptype, 16694 (void *)&cmd_ptype_mapping_replace_mapping, 16695 (void *)&cmd_ptype_mapping_replace_replace, 16696 (void *)&cmd_ptype_mapping_replace_port_id, 16697 (void *)&cmd_ptype_mapping_replace_target, 16698 (void *)&cmd_ptype_mapping_replace_mask, 16699 (void *)&cmd_ptype_mapping_replace_pkt_type, 16700 NULL, 16701 }, 16702 }; 16703 16704 /* ptype mapping reset */ 16705 16706 /* Common result structure for ptype mapping reset */ 16707 struct cmd_ptype_mapping_reset_result { 16708 cmdline_fixed_string_t ptype; 16709 cmdline_fixed_string_t mapping; 16710 cmdline_fixed_string_t reset; 16711 portid_t port_id; 16712 }; 16713 16714 /* Common CLI fields for ptype mapping reset*/ 16715 cmdline_parse_token_string_t cmd_ptype_mapping_reset_ptype = 16716 TOKEN_STRING_INITIALIZER 16717 (struct cmd_ptype_mapping_reset_result, 16718 ptype, "ptype"); 16719 cmdline_parse_token_string_t cmd_ptype_mapping_reset_mapping = 16720 TOKEN_STRING_INITIALIZER 16721 (struct cmd_ptype_mapping_reset_result, 16722 mapping, "mapping"); 16723 cmdline_parse_token_string_t cmd_ptype_mapping_reset_reset = 16724 TOKEN_STRING_INITIALIZER 16725 (struct cmd_ptype_mapping_reset_result, 16726 reset, "reset"); 16727 cmdline_parse_token_num_t cmd_ptype_mapping_reset_port_id = 16728 TOKEN_NUM_INITIALIZER 16729 (struct cmd_ptype_mapping_reset_result, 16730 port_id, UINT16); 16731 16732 static void 16733 cmd_ptype_mapping_reset_parsed( 16734 void *parsed_result, 16735 __attribute__((unused)) struct cmdline *cl, 16736 __attribute__((unused)) void *data) 16737 { 16738 struct cmd_ptype_mapping_reset_result *res = parsed_result; 16739 int ret = -ENOTSUP; 16740 16741 if (port_id_is_invalid(res->port_id, ENABLED_WARN)) 16742 return; 16743 16744 #ifdef RTE_LIBRTE_I40E_PMD 16745 ret = rte_pmd_i40e_ptype_mapping_reset(res->port_id); 16746 #endif 16747 16748 switch (ret) { 16749 case 0: 16750 break; 16751 case -ENODEV: 16752 printf("invalid port_id %d\n", res->port_id); 16753 break; 16754 case -ENOTSUP: 16755 printf("function not implemented\n"); 16756 break; 16757 default: 16758 printf("programming error: (%s)\n", strerror(-ret)); 16759 } 16760 } 16761 16762 cmdline_parse_inst_t cmd_ptype_mapping_reset = { 16763 .f = cmd_ptype_mapping_reset_parsed, 16764 .data = NULL, 16765 .help_str = "ptype mapping reset <port_id>", 16766 .tokens = { 16767 (void *)&cmd_ptype_mapping_reset_ptype, 16768 (void *)&cmd_ptype_mapping_reset_mapping, 16769 (void *)&cmd_ptype_mapping_reset_reset, 16770 (void *)&cmd_ptype_mapping_reset_port_id, 16771 NULL, 16772 }, 16773 }; 16774 16775 /* ptype mapping update */ 16776 16777 /* Common result structure for ptype mapping update */ 16778 struct cmd_ptype_mapping_update_result { 16779 cmdline_fixed_string_t ptype; 16780 cmdline_fixed_string_t mapping; 16781 cmdline_fixed_string_t reset; 16782 portid_t port_id; 16783 uint8_t hw_ptype; 16784 uint32_t sw_ptype; 16785 }; 16786 16787 /* Common CLI fields for ptype mapping update*/ 16788 cmdline_parse_token_string_t cmd_ptype_mapping_update_ptype = 16789 TOKEN_STRING_INITIALIZER 16790 (struct cmd_ptype_mapping_update_result, 16791 ptype, "ptype"); 16792 cmdline_parse_token_string_t cmd_ptype_mapping_update_mapping = 16793 TOKEN_STRING_INITIALIZER 16794 (struct cmd_ptype_mapping_update_result, 16795 mapping, "mapping"); 16796 cmdline_parse_token_string_t cmd_ptype_mapping_update_update = 16797 TOKEN_STRING_INITIALIZER 16798 (struct cmd_ptype_mapping_update_result, 16799 reset, "update"); 16800 cmdline_parse_token_num_t cmd_ptype_mapping_update_port_id = 16801 TOKEN_NUM_INITIALIZER 16802 (struct cmd_ptype_mapping_update_result, 16803 port_id, UINT16); 16804 cmdline_parse_token_num_t cmd_ptype_mapping_update_hw_ptype = 16805 TOKEN_NUM_INITIALIZER 16806 (struct cmd_ptype_mapping_update_result, 16807 hw_ptype, UINT8); 16808 cmdline_parse_token_num_t cmd_ptype_mapping_update_sw_ptype = 16809 TOKEN_NUM_INITIALIZER 16810 (struct cmd_ptype_mapping_update_result, 16811 sw_ptype, UINT32); 16812 16813 static void 16814 cmd_ptype_mapping_update_parsed( 16815 void *parsed_result, 16816 __attribute__((unused)) struct cmdline *cl, 16817 __attribute__((unused)) void *data) 16818 { 16819 struct cmd_ptype_mapping_update_result *res = parsed_result; 16820 int ret = -ENOTSUP; 16821 #ifdef RTE_LIBRTE_I40E_PMD 16822 struct rte_pmd_i40e_ptype_mapping mapping; 16823 #endif 16824 if (port_id_is_invalid(res->port_id, ENABLED_WARN)) 16825 return; 16826 16827 #ifdef RTE_LIBRTE_I40E_PMD 16828 mapping.hw_ptype = res->hw_ptype; 16829 mapping.sw_ptype = res->sw_ptype; 16830 ret = rte_pmd_i40e_ptype_mapping_update(res->port_id, 16831 &mapping, 16832 1, 16833 0); 16834 #endif 16835 16836 switch (ret) { 16837 case 0: 16838 break; 16839 case -EINVAL: 16840 printf("invalid ptype 0x%8x\n", res->sw_ptype); 16841 break; 16842 case -ENODEV: 16843 printf("invalid port_id %d\n", res->port_id); 16844 break; 16845 case -ENOTSUP: 16846 printf("function not implemented\n"); 16847 break; 16848 default: 16849 printf("programming error: (%s)\n", strerror(-ret)); 16850 } 16851 } 16852 16853 cmdline_parse_inst_t cmd_ptype_mapping_update = { 16854 .f = cmd_ptype_mapping_update_parsed, 16855 .data = NULL, 16856 .help_str = "ptype mapping update <port_id> <hw_ptype> <sw_ptype>", 16857 .tokens = { 16858 (void *)&cmd_ptype_mapping_update_ptype, 16859 (void *)&cmd_ptype_mapping_update_mapping, 16860 (void *)&cmd_ptype_mapping_update_update, 16861 (void *)&cmd_ptype_mapping_update_port_id, 16862 (void *)&cmd_ptype_mapping_update_hw_ptype, 16863 (void *)&cmd_ptype_mapping_update_sw_ptype, 16864 NULL, 16865 }, 16866 }; 16867 16868 /* Common result structure for file commands */ 16869 struct cmd_cmdfile_result { 16870 cmdline_fixed_string_t load; 16871 cmdline_fixed_string_t filename; 16872 }; 16873 16874 /* Common CLI fields for file commands */ 16875 cmdline_parse_token_string_t cmd_load_cmdfile = 16876 TOKEN_STRING_INITIALIZER(struct cmd_cmdfile_result, load, "load"); 16877 cmdline_parse_token_string_t cmd_load_cmdfile_filename = 16878 TOKEN_STRING_INITIALIZER(struct cmd_cmdfile_result, filename, NULL); 16879 16880 static void 16881 cmd_load_from_file_parsed( 16882 void *parsed_result, 16883 __attribute__((unused)) struct cmdline *cl, 16884 __attribute__((unused)) void *data) 16885 { 16886 struct cmd_cmdfile_result *res = parsed_result; 16887 16888 cmdline_read_from_file(res->filename); 16889 } 16890 16891 cmdline_parse_inst_t cmd_load_from_file = { 16892 .f = cmd_load_from_file_parsed, 16893 .data = NULL, 16894 .help_str = "load <filename>", 16895 .tokens = { 16896 (void *)&cmd_load_cmdfile, 16897 (void *)&cmd_load_cmdfile_filename, 16898 NULL, 16899 }, 16900 }; 16901 16902 /* Get Rx offloads capabilities */ 16903 struct cmd_rx_offload_get_capa_result { 16904 cmdline_fixed_string_t show; 16905 cmdline_fixed_string_t port; 16906 portid_t port_id; 16907 cmdline_fixed_string_t rx_offload; 16908 cmdline_fixed_string_t capabilities; 16909 }; 16910 16911 cmdline_parse_token_string_t cmd_rx_offload_get_capa_show = 16912 TOKEN_STRING_INITIALIZER 16913 (struct cmd_rx_offload_get_capa_result, 16914 show, "show"); 16915 cmdline_parse_token_string_t cmd_rx_offload_get_capa_port = 16916 TOKEN_STRING_INITIALIZER 16917 (struct cmd_rx_offload_get_capa_result, 16918 port, "port"); 16919 cmdline_parse_token_num_t cmd_rx_offload_get_capa_port_id = 16920 TOKEN_NUM_INITIALIZER 16921 (struct cmd_rx_offload_get_capa_result, 16922 port_id, UINT16); 16923 cmdline_parse_token_string_t cmd_rx_offload_get_capa_rx_offload = 16924 TOKEN_STRING_INITIALIZER 16925 (struct cmd_rx_offload_get_capa_result, 16926 rx_offload, "rx_offload"); 16927 cmdline_parse_token_string_t cmd_rx_offload_get_capa_capabilities = 16928 TOKEN_STRING_INITIALIZER 16929 (struct cmd_rx_offload_get_capa_result, 16930 capabilities, "capabilities"); 16931 16932 static void 16933 print_rx_offloads(uint64_t offloads) 16934 { 16935 uint64_t single_offload; 16936 int begin; 16937 int end; 16938 int bit; 16939 16940 if (offloads == 0) 16941 return; 16942 16943 begin = __builtin_ctzll(offloads); 16944 end = sizeof(offloads) * CHAR_BIT - __builtin_clzll(offloads); 16945 16946 single_offload = 1 << begin; 16947 for (bit = begin; bit < end; bit++) { 16948 if (offloads & single_offload) 16949 printf(" %s", 16950 rte_eth_dev_rx_offload_name(single_offload)); 16951 single_offload <<= 1; 16952 } 16953 } 16954 16955 static void 16956 cmd_rx_offload_get_capa_parsed( 16957 void *parsed_result, 16958 __attribute__((unused)) struct cmdline *cl, 16959 __attribute__((unused)) void *data) 16960 { 16961 struct cmd_rx_offload_get_capa_result *res = parsed_result; 16962 struct rte_eth_dev_info dev_info; 16963 portid_t port_id = res->port_id; 16964 uint64_t queue_offloads; 16965 uint64_t port_offloads; 16966 16967 rte_eth_dev_info_get(port_id, &dev_info); 16968 queue_offloads = dev_info.rx_queue_offload_capa; 16969 port_offloads = dev_info.rx_offload_capa ^ queue_offloads; 16970 16971 printf("Rx Offloading Capabilities of port %d :\n", port_id); 16972 printf(" Per Queue :"); 16973 print_rx_offloads(queue_offloads); 16974 16975 printf("\n"); 16976 printf(" Per Port :"); 16977 print_rx_offloads(port_offloads); 16978 printf("\n\n"); 16979 } 16980 16981 cmdline_parse_inst_t cmd_rx_offload_get_capa = { 16982 .f = cmd_rx_offload_get_capa_parsed, 16983 .data = NULL, 16984 .help_str = "show port <port_id> rx_offload capabilities", 16985 .tokens = { 16986 (void *)&cmd_rx_offload_get_capa_show, 16987 (void *)&cmd_rx_offload_get_capa_port, 16988 (void *)&cmd_rx_offload_get_capa_port_id, 16989 (void *)&cmd_rx_offload_get_capa_rx_offload, 16990 (void *)&cmd_rx_offload_get_capa_capabilities, 16991 NULL, 16992 } 16993 }; 16994 16995 /* Get Rx offloads configuration */ 16996 struct cmd_rx_offload_get_configuration_result { 16997 cmdline_fixed_string_t show; 16998 cmdline_fixed_string_t port; 16999 portid_t port_id; 17000 cmdline_fixed_string_t rx_offload; 17001 cmdline_fixed_string_t configuration; 17002 }; 17003 17004 cmdline_parse_token_string_t cmd_rx_offload_get_configuration_show = 17005 TOKEN_STRING_INITIALIZER 17006 (struct cmd_rx_offload_get_configuration_result, 17007 show, "show"); 17008 cmdline_parse_token_string_t cmd_rx_offload_get_configuration_port = 17009 TOKEN_STRING_INITIALIZER 17010 (struct cmd_rx_offload_get_configuration_result, 17011 port, "port"); 17012 cmdline_parse_token_num_t cmd_rx_offload_get_configuration_port_id = 17013 TOKEN_NUM_INITIALIZER 17014 (struct cmd_rx_offload_get_configuration_result, 17015 port_id, UINT16); 17016 cmdline_parse_token_string_t cmd_rx_offload_get_configuration_rx_offload = 17017 TOKEN_STRING_INITIALIZER 17018 (struct cmd_rx_offload_get_configuration_result, 17019 rx_offload, "rx_offload"); 17020 cmdline_parse_token_string_t cmd_rx_offload_get_configuration_configuration = 17021 TOKEN_STRING_INITIALIZER 17022 (struct cmd_rx_offload_get_configuration_result, 17023 configuration, "configuration"); 17024 17025 static void 17026 cmd_rx_offload_get_configuration_parsed( 17027 void *parsed_result, 17028 __attribute__((unused)) struct cmdline *cl, 17029 __attribute__((unused)) void *data) 17030 { 17031 struct cmd_rx_offload_get_configuration_result *res = parsed_result; 17032 struct rte_eth_dev_info dev_info; 17033 portid_t port_id = res->port_id; 17034 struct rte_port *port = &ports[port_id]; 17035 uint64_t port_offloads; 17036 uint64_t queue_offloads; 17037 uint16_t nb_rx_queues; 17038 int q; 17039 17040 printf("Rx Offloading Configuration of port %d :\n", port_id); 17041 17042 port_offloads = port->dev_conf.rxmode.offloads; 17043 printf(" Port :"); 17044 print_rx_offloads(port_offloads); 17045 printf("\n"); 17046 17047 rte_eth_dev_info_get(port_id, &dev_info); 17048 nb_rx_queues = dev_info.nb_rx_queues; 17049 for (q = 0; q < nb_rx_queues; q++) { 17050 queue_offloads = port->rx_conf[q].offloads; 17051 printf(" Queue[%2d] :", q); 17052 print_rx_offloads(queue_offloads); 17053 printf("\n"); 17054 } 17055 printf("\n"); 17056 } 17057 17058 cmdline_parse_inst_t cmd_rx_offload_get_configuration = { 17059 .f = cmd_rx_offload_get_configuration_parsed, 17060 .data = NULL, 17061 .help_str = "show port <port_id> rx_offload configuration", 17062 .tokens = { 17063 (void *)&cmd_rx_offload_get_configuration_show, 17064 (void *)&cmd_rx_offload_get_configuration_port, 17065 (void *)&cmd_rx_offload_get_configuration_port_id, 17066 (void *)&cmd_rx_offload_get_configuration_rx_offload, 17067 (void *)&cmd_rx_offload_get_configuration_configuration, 17068 NULL, 17069 } 17070 }; 17071 17072 /* Enable/Disable a per port offloading */ 17073 struct cmd_config_per_port_rx_offload_result { 17074 cmdline_fixed_string_t port; 17075 cmdline_fixed_string_t config; 17076 portid_t port_id; 17077 cmdline_fixed_string_t rx_offload; 17078 cmdline_fixed_string_t offload; 17079 cmdline_fixed_string_t on_off; 17080 }; 17081 17082 cmdline_parse_token_string_t cmd_config_per_port_rx_offload_result_port = 17083 TOKEN_STRING_INITIALIZER 17084 (struct cmd_config_per_port_rx_offload_result, 17085 port, "port"); 17086 cmdline_parse_token_string_t cmd_config_per_port_rx_offload_result_config = 17087 TOKEN_STRING_INITIALIZER 17088 (struct cmd_config_per_port_rx_offload_result, 17089 config, "config"); 17090 cmdline_parse_token_num_t cmd_config_per_port_rx_offload_result_port_id = 17091 TOKEN_NUM_INITIALIZER 17092 (struct cmd_config_per_port_rx_offload_result, 17093 port_id, UINT16); 17094 cmdline_parse_token_string_t cmd_config_per_port_rx_offload_result_rx_offload = 17095 TOKEN_STRING_INITIALIZER 17096 (struct cmd_config_per_port_rx_offload_result, 17097 rx_offload, "rx_offload"); 17098 cmdline_parse_token_string_t cmd_config_per_port_rx_offload_result_offload = 17099 TOKEN_STRING_INITIALIZER 17100 (struct cmd_config_per_port_rx_offload_result, 17101 offload, "vlan_strip#ipv4_cksum#udp_cksum#tcp_cksum#tcp_lro#" 17102 "qinq_strip#outer_ipv4_cksum#macsec_strip#" 17103 "header_split#vlan_filter#vlan_extend#jumbo_frame#" 17104 "crc_strip#scatter#timestamp#security#keep_crc"); 17105 cmdline_parse_token_string_t cmd_config_per_port_rx_offload_result_on_off = 17106 TOKEN_STRING_INITIALIZER 17107 (struct cmd_config_per_port_rx_offload_result, 17108 on_off, "on#off"); 17109 17110 static uint64_t 17111 search_rx_offload(const char *name) 17112 { 17113 uint64_t single_offload; 17114 const char *single_name; 17115 int found = 0; 17116 unsigned int bit; 17117 17118 single_offload = 1; 17119 for (bit = 0; bit < sizeof(single_offload) * CHAR_BIT; bit++) { 17120 single_name = rte_eth_dev_rx_offload_name(single_offload); 17121 if (!strcasecmp(single_name, name)) { 17122 found = 1; 17123 break; 17124 } else if (!strcasecmp(single_name, "UNKNOWN")) 17125 break; 17126 else if (single_name == NULL) 17127 break; 17128 single_offload <<= 1; 17129 } 17130 17131 if (found) 17132 return single_offload; 17133 17134 return 0; 17135 } 17136 17137 static void 17138 cmd_config_per_port_rx_offload_parsed(void *parsed_result, 17139 __attribute__((unused)) struct cmdline *cl, 17140 __attribute__((unused)) void *data) 17141 { 17142 struct cmd_config_per_port_rx_offload_result *res = parsed_result; 17143 portid_t port_id = res->port_id; 17144 struct rte_eth_dev_info dev_info; 17145 struct rte_port *port = &ports[port_id]; 17146 uint64_t single_offload; 17147 uint16_t nb_rx_queues; 17148 int q; 17149 17150 if (port->port_status != RTE_PORT_STOPPED) { 17151 printf("Error: Can't config offload when Port %d " 17152 "is not stopped\n", port_id); 17153 return; 17154 } 17155 17156 single_offload = search_rx_offload(res->offload); 17157 if (single_offload == 0) { 17158 printf("Unknown offload name: %s\n", res->offload); 17159 return; 17160 } 17161 17162 rte_eth_dev_info_get(port_id, &dev_info); 17163 nb_rx_queues = dev_info.nb_rx_queues; 17164 if (!strcmp(res->on_off, "on")) { 17165 port->dev_conf.rxmode.offloads |= single_offload; 17166 for (q = 0; q < nb_rx_queues; q++) 17167 port->rx_conf[q].offloads |= single_offload; 17168 } else { 17169 port->dev_conf.rxmode.offloads &= ~single_offload; 17170 for (q = 0; q < nb_rx_queues; q++) 17171 port->rx_conf[q].offloads &= ~single_offload; 17172 } 17173 17174 cmd_reconfig_device_queue(port_id, 1, 1); 17175 } 17176 17177 cmdline_parse_inst_t cmd_config_per_port_rx_offload = { 17178 .f = cmd_config_per_port_rx_offload_parsed, 17179 .data = NULL, 17180 .help_str = "port config <port_id> rx_offload vlan_strip|ipv4_cksum|" 17181 "udp_cksum|tcp_cksum|tcp_lro|qinq_strip|outer_ipv4_cksum|" 17182 "macsec_strip|header_split|vlan_filter|vlan_extend|" 17183 "jumbo_frame|crc_strip|scatter|timestamp|security|keep_crc " 17184 "on|off", 17185 .tokens = { 17186 (void *)&cmd_config_per_port_rx_offload_result_port, 17187 (void *)&cmd_config_per_port_rx_offload_result_config, 17188 (void *)&cmd_config_per_port_rx_offload_result_port_id, 17189 (void *)&cmd_config_per_port_rx_offload_result_rx_offload, 17190 (void *)&cmd_config_per_port_rx_offload_result_offload, 17191 (void *)&cmd_config_per_port_rx_offload_result_on_off, 17192 NULL, 17193 } 17194 }; 17195 17196 /* Enable/Disable a per queue offloading */ 17197 struct cmd_config_per_queue_rx_offload_result { 17198 cmdline_fixed_string_t port; 17199 portid_t port_id; 17200 cmdline_fixed_string_t rxq; 17201 uint16_t queue_id; 17202 cmdline_fixed_string_t rx_offload; 17203 cmdline_fixed_string_t offload; 17204 cmdline_fixed_string_t on_off; 17205 }; 17206 17207 cmdline_parse_token_string_t cmd_config_per_queue_rx_offload_result_port = 17208 TOKEN_STRING_INITIALIZER 17209 (struct cmd_config_per_queue_rx_offload_result, 17210 port, "port"); 17211 cmdline_parse_token_num_t cmd_config_per_queue_rx_offload_result_port_id = 17212 TOKEN_NUM_INITIALIZER 17213 (struct cmd_config_per_queue_rx_offload_result, 17214 port_id, UINT16); 17215 cmdline_parse_token_string_t cmd_config_per_queue_rx_offload_result_rxq = 17216 TOKEN_STRING_INITIALIZER 17217 (struct cmd_config_per_queue_rx_offload_result, 17218 rxq, "rxq"); 17219 cmdline_parse_token_num_t cmd_config_per_queue_rx_offload_result_queue_id = 17220 TOKEN_NUM_INITIALIZER 17221 (struct cmd_config_per_queue_rx_offload_result, 17222 queue_id, UINT16); 17223 cmdline_parse_token_string_t cmd_config_per_queue_rx_offload_result_rxoffload = 17224 TOKEN_STRING_INITIALIZER 17225 (struct cmd_config_per_queue_rx_offload_result, 17226 rx_offload, "rx_offload"); 17227 cmdline_parse_token_string_t cmd_config_per_queue_rx_offload_result_offload = 17228 TOKEN_STRING_INITIALIZER 17229 (struct cmd_config_per_queue_rx_offload_result, 17230 offload, "vlan_strip#ipv4_cksum#udp_cksum#tcp_cksum#tcp_lro#" 17231 "qinq_strip#outer_ipv4_cksum#macsec_strip#" 17232 "header_split#vlan_filter#vlan_extend#jumbo_frame#" 17233 "crc_strip#scatter#timestamp#security#keep_crc"); 17234 cmdline_parse_token_string_t cmd_config_per_queue_rx_offload_result_on_off = 17235 TOKEN_STRING_INITIALIZER 17236 (struct cmd_config_per_queue_rx_offload_result, 17237 on_off, "on#off"); 17238 17239 static void 17240 cmd_config_per_queue_rx_offload_parsed(void *parsed_result, 17241 __attribute__((unused)) struct cmdline *cl, 17242 __attribute__((unused)) void *data) 17243 { 17244 struct cmd_config_per_queue_rx_offload_result *res = parsed_result; 17245 struct rte_eth_dev_info dev_info; 17246 portid_t port_id = res->port_id; 17247 uint16_t queue_id = res->queue_id; 17248 struct rte_port *port = &ports[port_id]; 17249 uint64_t single_offload; 17250 17251 if (port->port_status != RTE_PORT_STOPPED) { 17252 printf("Error: Can't config offload when Port %d " 17253 "is not stopped\n", port_id); 17254 return; 17255 } 17256 17257 rte_eth_dev_info_get(port_id, &dev_info); 17258 if (queue_id >= dev_info.nb_rx_queues) { 17259 printf("Error: input queue_id should be 0 ... " 17260 "%d\n", dev_info.nb_rx_queues - 1); 17261 return; 17262 } 17263 17264 single_offload = search_rx_offload(res->offload); 17265 if (single_offload == 0) { 17266 printf("Unknown offload name: %s\n", res->offload); 17267 return; 17268 } 17269 17270 if (!strcmp(res->on_off, "on")) 17271 port->rx_conf[queue_id].offloads |= single_offload; 17272 else 17273 port->rx_conf[queue_id].offloads &= ~single_offload; 17274 17275 cmd_reconfig_device_queue(port_id, 1, 1); 17276 } 17277 17278 cmdline_parse_inst_t cmd_config_per_queue_rx_offload = { 17279 .f = cmd_config_per_queue_rx_offload_parsed, 17280 .data = NULL, 17281 .help_str = "port <port_id> rxq <queue_id> rx_offload " 17282 "vlan_strip|ipv4_cksum|" 17283 "udp_cksum|tcp_cksum|tcp_lro|qinq_strip|outer_ipv4_cksum|" 17284 "macsec_strip|header_split|vlan_filter|vlan_extend|" 17285 "jumbo_frame|crc_strip|scatter|timestamp|security|keep_crc " 17286 "on|off", 17287 .tokens = { 17288 (void *)&cmd_config_per_queue_rx_offload_result_port, 17289 (void *)&cmd_config_per_queue_rx_offload_result_port_id, 17290 (void *)&cmd_config_per_queue_rx_offload_result_rxq, 17291 (void *)&cmd_config_per_queue_rx_offload_result_queue_id, 17292 (void *)&cmd_config_per_queue_rx_offload_result_rxoffload, 17293 (void *)&cmd_config_per_queue_rx_offload_result_offload, 17294 (void *)&cmd_config_per_queue_rx_offload_result_on_off, 17295 NULL, 17296 } 17297 }; 17298 17299 /* Get Tx offloads capabilities */ 17300 struct cmd_tx_offload_get_capa_result { 17301 cmdline_fixed_string_t show; 17302 cmdline_fixed_string_t port; 17303 portid_t port_id; 17304 cmdline_fixed_string_t tx_offload; 17305 cmdline_fixed_string_t capabilities; 17306 }; 17307 17308 cmdline_parse_token_string_t cmd_tx_offload_get_capa_show = 17309 TOKEN_STRING_INITIALIZER 17310 (struct cmd_tx_offload_get_capa_result, 17311 show, "show"); 17312 cmdline_parse_token_string_t cmd_tx_offload_get_capa_port = 17313 TOKEN_STRING_INITIALIZER 17314 (struct cmd_tx_offload_get_capa_result, 17315 port, "port"); 17316 cmdline_parse_token_num_t cmd_tx_offload_get_capa_port_id = 17317 TOKEN_NUM_INITIALIZER 17318 (struct cmd_tx_offload_get_capa_result, 17319 port_id, UINT16); 17320 cmdline_parse_token_string_t cmd_tx_offload_get_capa_tx_offload = 17321 TOKEN_STRING_INITIALIZER 17322 (struct cmd_tx_offload_get_capa_result, 17323 tx_offload, "tx_offload"); 17324 cmdline_parse_token_string_t cmd_tx_offload_get_capa_capabilities = 17325 TOKEN_STRING_INITIALIZER 17326 (struct cmd_tx_offload_get_capa_result, 17327 capabilities, "capabilities"); 17328 17329 static void 17330 print_tx_offloads(uint64_t offloads) 17331 { 17332 uint64_t single_offload; 17333 int begin; 17334 int end; 17335 int bit; 17336 17337 if (offloads == 0) 17338 return; 17339 17340 begin = __builtin_ctzll(offloads); 17341 end = sizeof(offloads) * CHAR_BIT - __builtin_clzll(offloads); 17342 17343 single_offload = 1 << begin; 17344 for (bit = begin; bit < end; bit++) { 17345 if (offloads & single_offload) 17346 printf(" %s", 17347 rte_eth_dev_tx_offload_name(single_offload)); 17348 single_offload <<= 1; 17349 } 17350 } 17351 17352 static void 17353 cmd_tx_offload_get_capa_parsed( 17354 void *parsed_result, 17355 __attribute__((unused)) struct cmdline *cl, 17356 __attribute__((unused)) void *data) 17357 { 17358 struct cmd_tx_offload_get_capa_result *res = parsed_result; 17359 struct rte_eth_dev_info dev_info; 17360 portid_t port_id = res->port_id; 17361 uint64_t queue_offloads; 17362 uint64_t port_offloads; 17363 17364 rte_eth_dev_info_get(port_id, &dev_info); 17365 queue_offloads = dev_info.tx_queue_offload_capa; 17366 port_offloads = dev_info.tx_offload_capa ^ queue_offloads; 17367 17368 printf("Tx Offloading Capabilities of port %d :\n", port_id); 17369 printf(" Per Queue :"); 17370 print_tx_offloads(queue_offloads); 17371 17372 printf("\n"); 17373 printf(" Per Port :"); 17374 print_tx_offloads(port_offloads); 17375 printf("\n\n"); 17376 } 17377 17378 cmdline_parse_inst_t cmd_tx_offload_get_capa = { 17379 .f = cmd_tx_offload_get_capa_parsed, 17380 .data = NULL, 17381 .help_str = "show port <port_id> tx_offload capabilities", 17382 .tokens = { 17383 (void *)&cmd_tx_offload_get_capa_show, 17384 (void *)&cmd_tx_offload_get_capa_port, 17385 (void *)&cmd_tx_offload_get_capa_port_id, 17386 (void *)&cmd_tx_offload_get_capa_tx_offload, 17387 (void *)&cmd_tx_offload_get_capa_capabilities, 17388 NULL, 17389 } 17390 }; 17391 17392 /* Get Tx offloads configuration */ 17393 struct cmd_tx_offload_get_configuration_result { 17394 cmdline_fixed_string_t show; 17395 cmdline_fixed_string_t port; 17396 portid_t port_id; 17397 cmdline_fixed_string_t tx_offload; 17398 cmdline_fixed_string_t configuration; 17399 }; 17400 17401 cmdline_parse_token_string_t cmd_tx_offload_get_configuration_show = 17402 TOKEN_STRING_INITIALIZER 17403 (struct cmd_tx_offload_get_configuration_result, 17404 show, "show"); 17405 cmdline_parse_token_string_t cmd_tx_offload_get_configuration_port = 17406 TOKEN_STRING_INITIALIZER 17407 (struct cmd_tx_offload_get_configuration_result, 17408 port, "port"); 17409 cmdline_parse_token_num_t cmd_tx_offload_get_configuration_port_id = 17410 TOKEN_NUM_INITIALIZER 17411 (struct cmd_tx_offload_get_configuration_result, 17412 port_id, UINT16); 17413 cmdline_parse_token_string_t cmd_tx_offload_get_configuration_tx_offload = 17414 TOKEN_STRING_INITIALIZER 17415 (struct cmd_tx_offload_get_configuration_result, 17416 tx_offload, "tx_offload"); 17417 cmdline_parse_token_string_t cmd_tx_offload_get_configuration_configuration = 17418 TOKEN_STRING_INITIALIZER 17419 (struct cmd_tx_offload_get_configuration_result, 17420 configuration, "configuration"); 17421 17422 static void 17423 cmd_tx_offload_get_configuration_parsed( 17424 void *parsed_result, 17425 __attribute__((unused)) struct cmdline *cl, 17426 __attribute__((unused)) void *data) 17427 { 17428 struct cmd_tx_offload_get_configuration_result *res = parsed_result; 17429 struct rte_eth_dev_info dev_info; 17430 portid_t port_id = res->port_id; 17431 struct rte_port *port = &ports[port_id]; 17432 uint64_t port_offloads; 17433 uint64_t queue_offloads; 17434 uint16_t nb_tx_queues; 17435 int q; 17436 17437 printf("Tx Offloading Configuration of port %d :\n", port_id); 17438 17439 port_offloads = port->dev_conf.txmode.offloads; 17440 printf(" Port :"); 17441 print_tx_offloads(port_offloads); 17442 printf("\n"); 17443 17444 rte_eth_dev_info_get(port_id, &dev_info); 17445 nb_tx_queues = dev_info.nb_tx_queues; 17446 for (q = 0; q < nb_tx_queues; q++) { 17447 queue_offloads = port->tx_conf[q].offloads; 17448 printf(" Queue[%2d] :", q); 17449 print_tx_offloads(queue_offloads); 17450 printf("\n"); 17451 } 17452 printf("\n"); 17453 } 17454 17455 cmdline_parse_inst_t cmd_tx_offload_get_configuration = { 17456 .f = cmd_tx_offload_get_configuration_parsed, 17457 .data = NULL, 17458 .help_str = "show port <port_id> tx_offload configuration", 17459 .tokens = { 17460 (void *)&cmd_tx_offload_get_configuration_show, 17461 (void *)&cmd_tx_offload_get_configuration_port, 17462 (void *)&cmd_tx_offload_get_configuration_port_id, 17463 (void *)&cmd_tx_offload_get_configuration_tx_offload, 17464 (void *)&cmd_tx_offload_get_configuration_configuration, 17465 NULL, 17466 } 17467 }; 17468 17469 /* Enable/Disable a per port offloading */ 17470 struct cmd_config_per_port_tx_offload_result { 17471 cmdline_fixed_string_t port; 17472 cmdline_fixed_string_t config; 17473 portid_t port_id; 17474 cmdline_fixed_string_t tx_offload; 17475 cmdline_fixed_string_t offload; 17476 cmdline_fixed_string_t on_off; 17477 }; 17478 17479 cmdline_parse_token_string_t cmd_config_per_port_tx_offload_result_port = 17480 TOKEN_STRING_INITIALIZER 17481 (struct cmd_config_per_port_tx_offload_result, 17482 port, "port"); 17483 cmdline_parse_token_string_t cmd_config_per_port_tx_offload_result_config = 17484 TOKEN_STRING_INITIALIZER 17485 (struct cmd_config_per_port_tx_offload_result, 17486 config, "config"); 17487 cmdline_parse_token_num_t cmd_config_per_port_tx_offload_result_port_id = 17488 TOKEN_NUM_INITIALIZER 17489 (struct cmd_config_per_port_tx_offload_result, 17490 port_id, UINT16); 17491 cmdline_parse_token_string_t cmd_config_per_port_tx_offload_result_tx_offload = 17492 TOKEN_STRING_INITIALIZER 17493 (struct cmd_config_per_port_tx_offload_result, 17494 tx_offload, "tx_offload"); 17495 cmdline_parse_token_string_t cmd_config_per_port_tx_offload_result_offload = 17496 TOKEN_STRING_INITIALIZER 17497 (struct cmd_config_per_port_tx_offload_result, 17498 offload, "vlan_insert#ipv4_cksum#udp_cksum#tcp_cksum#" 17499 "sctp_cksum#tcp_tso#udp_tso#outer_ipv4_cksum#" 17500 "qinq_insert#vxlan_tnl_tso#gre_tnl_tso#" 17501 "ipip_tnl_tso#geneve_tnl_tso#macsec_insert#" 17502 "mt_lockfree#multi_segs#mbuf_fast_free#security"); 17503 cmdline_parse_token_string_t cmd_config_per_port_tx_offload_result_on_off = 17504 TOKEN_STRING_INITIALIZER 17505 (struct cmd_config_per_port_tx_offload_result, 17506 on_off, "on#off"); 17507 17508 static uint64_t 17509 search_tx_offload(const char *name) 17510 { 17511 uint64_t single_offload; 17512 const char *single_name; 17513 int found = 0; 17514 unsigned int bit; 17515 17516 single_offload = 1; 17517 for (bit = 0; bit < sizeof(single_offload) * CHAR_BIT; bit++) { 17518 single_name = rte_eth_dev_tx_offload_name(single_offload); 17519 if (!strcasecmp(single_name, name)) { 17520 found = 1; 17521 break; 17522 } else if (!strcasecmp(single_name, "UNKNOWN")) 17523 break; 17524 else if (single_name == NULL) 17525 break; 17526 single_offload <<= 1; 17527 } 17528 17529 if (found) 17530 return single_offload; 17531 17532 return 0; 17533 } 17534 17535 static void 17536 cmd_config_per_port_tx_offload_parsed(void *parsed_result, 17537 __attribute__((unused)) struct cmdline *cl, 17538 __attribute__((unused)) void *data) 17539 { 17540 struct cmd_config_per_port_tx_offload_result *res = parsed_result; 17541 portid_t port_id = res->port_id; 17542 struct rte_eth_dev_info dev_info; 17543 struct rte_port *port = &ports[port_id]; 17544 uint64_t single_offload; 17545 uint16_t nb_tx_queues; 17546 int q; 17547 17548 if (port->port_status != RTE_PORT_STOPPED) { 17549 printf("Error: Can't config offload when Port %d " 17550 "is not stopped\n", port_id); 17551 return; 17552 } 17553 17554 single_offload = search_tx_offload(res->offload); 17555 if (single_offload == 0) { 17556 printf("Unknown offload name: %s\n", res->offload); 17557 return; 17558 } 17559 17560 rte_eth_dev_info_get(port_id, &dev_info); 17561 nb_tx_queues = dev_info.nb_tx_queues; 17562 if (!strcmp(res->on_off, "on")) { 17563 port->dev_conf.txmode.offloads |= single_offload; 17564 for (q = 0; q < nb_tx_queues; q++) 17565 port->tx_conf[q].offloads |= single_offload; 17566 } else { 17567 port->dev_conf.txmode.offloads &= ~single_offload; 17568 for (q = 0; q < nb_tx_queues; q++) 17569 port->tx_conf[q].offloads &= ~single_offload; 17570 } 17571 17572 cmd_reconfig_device_queue(port_id, 1, 1); 17573 } 17574 17575 cmdline_parse_inst_t cmd_config_per_port_tx_offload = { 17576 .f = cmd_config_per_port_tx_offload_parsed, 17577 .data = NULL, 17578 .help_str = "port config <port_id> tx_offload " 17579 "vlan_insert|ipv4_cksum|udp_cksum|tcp_cksum|" 17580 "sctp_cksum|tcp_tso|udp_tso|outer_ipv4_cksum|" 17581 "qinq_insert|vxlan_tnl_tso|gre_tnl_tso|" 17582 "ipip_tnl_tso|geneve_tnl_tso|macsec_insert|" 17583 "mt_lockfree|multi_segs|mbuf_fast_free|security " 17584 "on|off", 17585 .tokens = { 17586 (void *)&cmd_config_per_port_tx_offload_result_port, 17587 (void *)&cmd_config_per_port_tx_offload_result_config, 17588 (void *)&cmd_config_per_port_tx_offload_result_port_id, 17589 (void *)&cmd_config_per_port_tx_offload_result_tx_offload, 17590 (void *)&cmd_config_per_port_tx_offload_result_offload, 17591 (void *)&cmd_config_per_port_tx_offload_result_on_off, 17592 NULL, 17593 } 17594 }; 17595 17596 /* Enable/Disable a per queue offloading */ 17597 struct cmd_config_per_queue_tx_offload_result { 17598 cmdline_fixed_string_t port; 17599 portid_t port_id; 17600 cmdline_fixed_string_t txq; 17601 uint16_t queue_id; 17602 cmdline_fixed_string_t tx_offload; 17603 cmdline_fixed_string_t offload; 17604 cmdline_fixed_string_t on_off; 17605 }; 17606 17607 cmdline_parse_token_string_t cmd_config_per_queue_tx_offload_result_port = 17608 TOKEN_STRING_INITIALIZER 17609 (struct cmd_config_per_queue_tx_offload_result, 17610 port, "port"); 17611 cmdline_parse_token_num_t cmd_config_per_queue_tx_offload_result_port_id = 17612 TOKEN_NUM_INITIALIZER 17613 (struct cmd_config_per_queue_tx_offload_result, 17614 port_id, UINT16); 17615 cmdline_parse_token_string_t cmd_config_per_queue_tx_offload_result_txq = 17616 TOKEN_STRING_INITIALIZER 17617 (struct cmd_config_per_queue_tx_offload_result, 17618 txq, "txq"); 17619 cmdline_parse_token_num_t cmd_config_per_queue_tx_offload_result_queue_id = 17620 TOKEN_NUM_INITIALIZER 17621 (struct cmd_config_per_queue_tx_offload_result, 17622 queue_id, UINT16); 17623 cmdline_parse_token_string_t cmd_config_per_queue_tx_offload_result_txoffload = 17624 TOKEN_STRING_INITIALIZER 17625 (struct cmd_config_per_queue_tx_offload_result, 17626 tx_offload, "tx_offload"); 17627 cmdline_parse_token_string_t cmd_config_per_queue_tx_offload_result_offload = 17628 TOKEN_STRING_INITIALIZER 17629 (struct cmd_config_per_queue_tx_offload_result, 17630 offload, "vlan_insert#ipv4_cksum#udp_cksum#tcp_cksum#" 17631 "sctp_cksum#tcp_tso#udp_tso#outer_ipv4_cksum#" 17632 "qinq_insert#vxlan_tnl_tso#gre_tnl_tso#" 17633 "ipip_tnl_tso#geneve_tnl_tso#macsec_insert#" 17634 "mt_lockfree#multi_segs#mbuf_fast_free#security"); 17635 cmdline_parse_token_string_t cmd_config_per_queue_tx_offload_result_on_off = 17636 TOKEN_STRING_INITIALIZER 17637 (struct cmd_config_per_queue_tx_offload_result, 17638 on_off, "on#off"); 17639 17640 static void 17641 cmd_config_per_queue_tx_offload_parsed(void *parsed_result, 17642 __attribute__((unused)) struct cmdline *cl, 17643 __attribute__((unused)) void *data) 17644 { 17645 struct cmd_config_per_queue_tx_offload_result *res = parsed_result; 17646 struct rte_eth_dev_info dev_info; 17647 portid_t port_id = res->port_id; 17648 uint16_t queue_id = res->queue_id; 17649 struct rte_port *port = &ports[port_id]; 17650 uint64_t single_offload; 17651 17652 if (port->port_status != RTE_PORT_STOPPED) { 17653 printf("Error: Can't config offload when Port %d " 17654 "is not stopped\n", port_id); 17655 return; 17656 } 17657 17658 rte_eth_dev_info_get(port_id, &dev_info); 17659 if (queue_id >= dev_info.nb_tx_queues) { 17660 printf("Error: input queue_id should be 0 ... " 17661 "%d\n", dev_info.nb_tx_queues - 1); 17662 return; 17663 } 17664 17665 single_offload = search_tx_offload(res->offload); 17666 if (single_offload == 0) { 17667 printf("Unknown offload name: %s\n", res->offload); 17668 return; 17669 } 17670 17671 if (!strcmp(res->on_off, "on")) 17672 port->tx_conf[queue_id].offloads |= single_offload; 17673 else 17674 port->tx_conf[queue_id].offloads &= ~single_offload; 17675 17676 cmd_reconfig_device_queue(port_id, 1, 1); 17677 } 17678 17679 cmdline_parse_inst_t cmd_config_per_queue_tx_offload = { 17680 .f = cmd_config_per_queue_tx_offload_parsed, 17681 .data = NULL, 17682 .help_str = "port <port_id> txq <queue_id> tx_offload " 17683 "vlan_insert|ipv4_cksum|udp_cksum|tcp_cksum|" 17684 "sctp_cksum|tcp_tso|udp_tso|outer_ipv4_cksum|" 17685 "qinq_insert|vxlan_tnl_tso|gre_tnl_tso|" 17686 "ipip_tnl_tso|geneve_tnl_tso|macsec_insert|" 17687 "mt_lockfree|multi_segs|mbuf_fast_free|security " 17688 "on|off", 17689 .tokens = { 17690 (void *)&cmd_config_per_queue_tx_offload_result_port, 17691 (void *)&cmd_config_per_queue_tx_offload_result_port_id, 17692 (void *)&cmd_config_per_queue_tx_offload_result_txq, 17693 (void *)&cmd_config_per_queue_tx_offload_result_queue_id, 17694 (void *)&cmd_config_per_queue_tx_offload_result_txoffload, 17695 (void *)&cmd_config_per_queue_tx_offload_result_offload, 17696 (void *)&cmd_config_per_queue_tx_offload_result_on_off, 17697 NULL, 17698 } 17699 }; 17700 17701 /* ******************************************************************************** */ 17702 17703 /* list of instructions */ 17704 cmdline_parse_ctx_t main_ctx[] = { 17705 (cmdline_parse_inst_t *)&cmd_help_brief, 17706 (cmdline_parse_inst_t *)&cmd_help_long, 17707 (cmdline_parse_inst_t *)&cmd_quit, 17708 (cmdline_parse_inst_t *)&cmd_load_from_file, 17709 (cmdline_parse_inst_t *)&cmd_showport, 17710 (cmdline_parse_inst_t *)&cmd_showqueue, 17711 (cmdline_parse_inst_t *)&cmd_showportall, 17712 (cmdline_parse_inst_t *)&cmd_showcfg, 17713 (cmdline_parse_inst_t *)&cmd_start, 17714 (cmdline_parse_inst_t *)&cmd_start_tx_first, 17715 (cmdline_parse_inst_t *)&cmd_start_tx_first_n, 17716 (cmdline_parse_inst_t *)&cmd_set_link_up, 17717 (cmdline_parse_inst_t *)&cmd_set_link_down, 17718 (cmdline_parse_inst_t *)&cmd_reset, 17719 (cmdline_parse_inst_t *)&cmd_set_numbers, 17720 (cmdline_parse_inst_t *)&cmd_set_log, 17721 (cmdline_parse_inst_t *)&cmd_set_txpkts, 17722 (cmdline_parse_inst_t *)&cmd_set_txsplit, 17723 (cmdline_parse_inst_t *)&cmd_set_fwd_list, 17724 (cmdline_parse_inst_t *)&cmd_set_fwd_mask, 17725 (cmdline_parse_inst_t *)&cmd_set_fwd_mode, 17726 (cmdline_parse_inst_t *)&cmd_set_fwd_retry_mode, 17727 (cmdline_parse_inst_t *)&cmd_set_burst_tx_retry, 17728 (cmdline_parse_inst_t *)&cmd_set_promisc_mode_one, 17729 (cmdline_parse_inst_t *)&cmd_set_promisc_mode_all, 17730 (cmdline_parse_inst_t *)&cmd_set_allmulti_mode_one, 17731 (cmdline_parse_inst_t *)&cmd_set_allmulti_mode_all, 17732 (cmdline_parse_inst_t *)&cmd_set_flush_rx, 17733 (cmdline_parse_inst_t *)&cmd_set_link_check, 17734 (cmdline_parse_inst_t *)&cmd_set_bypass_mode, 17735 (cmdline_parse_inst_t *)&cmd_set_bypass_event, 17736 (cmdline_parse_inst_t *)&cmd_set_bypass_timeout, 17737 (cmdline_parse_inst_t *)&cmd_show_bypass_config, 17738 #ifdef RTE_LIBRTE_PMD_BOND 17739 (cmdline_parse_inst_t *) &cmd_set_bonding_mode, 17740 (cmdline_parse_inst_t *) &cmd_show_bonding_config, 17741 (cmdline_parse_inst_t *) &cmd_set_bonding_primary, 17742 (cmdline_parse_inst_t *) &cmd_add_bonding_slave, 17743 (cmdline_parse_inst_t *) &cmd_remove_bonding_slave, 17744 (cmdline_parse_inst_t *) &cmd_create_bonded_device, 17745 (cmdline_parse_inst_t *) &cmd_set_bond_mac_addr, 17746 (cmdline_parse_inst_t *) &cmd_set_balance_xmit_policy, 17747 (cmdline_parse_inst_t *) &cmd_set_bond_mon_period, 17748 (cmdline_parse_inst_t *) &cmd_set_lacp_dedicated_queues, 17749 (cmdline_parse_inst_t *) &cmd_set_bonding_agg_mode_policy, 17750 #endif 17751 (cmdline_parse_inst_t *)&cmd_vlan_offload, 17752 (cmdline_parse_inst_t *)&cmd_vlan_tpid, 17753 (cmdline_parse_inst_t *)&cmd_rx_vlan_filter_all, 17754 (cmdline_parse_inst_t *)&cmd_rx_vlan_filter, 17755 (cmdline_parse_inst_t *)&cmd_tx_vlan_set, 17756 (cmdline_parse_inst_t *)&cmd_tx_vlan_set_qinq, 17757 (cmdline_parse_inst_t *)&cmd_tx_vlan_reset, 17758 (cmdline_parse_inst_t *)&cmd_tx_vlan_set_pvid, 17759 (cmdline_parse_inst_t *)&cmd_csum_set, 17760 (cmdline_parse_inst_t *)&cmd_csum_show, 17761 (cmdline_parse_inst_t *)&cmd_csum_tunnel, 17762 (cmdline_parse_inst_t *)&cmd_tso_set, 17763 (cmdline_parse_inst_t *)&cmd_tso_show, 17764 (cmdline_parse_inst_t *)&cmd_tunnel_tso_set, 17765 (cmdline_parse_inst_t *)&cmd_tunnel_tso_show, 17766 (cmdline_parse_inst_t *)&cmd_gro_enable, 17767 (cmdline_parse_inst_t *)&cmd_gro_flush, 17768 (cmdline_parse_inst_t *)&cmd_gro_show, 17769 (cmdline_parse_inst_t *)&cmd_gso_enable, 17770 (cmdline_parse_inst_t *)&cmd_gso_size, 17771 (cmdline_parse_inst_t *)&cmd_gso_show, 17772 (cmdline_parse_inst_t *)&cmd_link_flow_control_set, 17773 (cmdline_parse_inst_t *)&cmd_link_flow_control_set_rx, 17774 (cmdline_parse_inst_t *)&cmd_link_flow_control_set_tx, 17775 (cmdline_parse_inst_t *)&cmd_link_flow_control_set_hw, 17776 (cmdline_parse_inst_t *)&cmd_link_flow_control_set_lw, 17777 (cmdline_parse_inst_t *)&cmd_link_flow_control_set_pt, 17778 (cmdline_parse_inst_t *)&cmd_link_flow_control_set_xon, 17779 (cmdline_parse_inst_t *)&cmd_link_flow_control_set_macfwd, 17780 (cmdline_parse_inst_t *)&cmd_link_flow_control_set_autoneg, 17781 (cmdline_parse_inst_t *)&cmd_priority_flow_control_set, 17782 (cmdline_parse_inst_t *)&cmd_config_dcb, 17783 (cmdline_parse_inst_t *)&cmd_read_reg, 17784 (cmdline_parse_inst_t *)&cmd_read_reg_bit_field, 17785 (cmdline_parse_inst_t *)&cmd_read_reg_bit, 17786 (cmdline_parse_inst_t *)&cmd_write_reg, 17787 (cmdline_parse_inst_t *)&cmd_write_reg_bit_field, 17788 (cmdline_parse_inst_t *)&cmd_write_reg_bit, 17789 (cmdline_parse_inst_t *)&cmd_read_rxd_txd, 17790 (cmdline_parse_inst_t *)&cmd_stop, 17791 (cmdline_parse_inst_t *)&cmd_mac_addr, 17792 (cmdline_parse_inst_t *)&cmd_set_fwd_eth_peer, 17793 (cmdline_parse_inst_t *)&cmd_set_qmap, 17794 (cmdline_parse_inst_t *)&cmd_set_xstats_hide_zero, 17795 (cmdline_parse_inst_t *)&cmd_operate_port, 17796 (cmdline_parse_inst_t *)&cmd_operate_specific_port, 17797 (cmdline_parse_inst_t *)&cmd_operate_attach_port, 17798 (cmdline_parse_inst_t *)&cmd_operate_detach_port, 17799 (cmdline_parse_inst_t *)&cmd_config_speed_all, 17800 (cmdline_parse_inst_t *)&cmd_config_speed_specific, 17801 (cmdline_parse_inst_t *)&cmd_config_loopback_all, 17802 (cmdline_parse_inst_t *)&cmd_config_loopback_specific, 17803 (cmdline_parse_inst_t *)&cmd_config_rx_tx, 17804 (cmdline_parse_inst_t *)&cmd_config_mtu, 17805 (cmdline_parse_inst_t *)&cmd_config_max_pkt_len, 17806 (cmdline_parse_inst_t *)&cmd_config_rx_mode_flag, 17807 (cmdline_parse_inst_t *)&cmd_config_rss, 17808 (cmdline_parse_inst_t *)&cmd_config_rxtx_ring_size, 17809 (cmdline_parse_inst_t *)&cmd_config_rxtx_queue, 17810 (cmdline_parse_inst_t *)&cmd_config_deferred_start_rxtx_queue, 17811 (cmdline_parse_inst_t *)&cmd_setup_rxtx_queue, 17812 (cmdline_parse_inst_t *)&cmd_config_rss_reta, 17813 (cmdline_parse_inst_t *)&cmd_showport_reta, 17814 (cmdline_parse_inst_t *)&cmd_config_burst, 17815 (cmdline_parse_inst_t *)&cmd_config_thresh, 17816 (cmdline_parse_inst_t *)&cmd_config_threshold, 17817 (cmdline_parse_inst_t *)&cmd_set_uc_hash_filter, 17818 (cmdline_parse_inst_t *)&cmd_set_uc_all_hash_filter, 17819 (cmdline_parse_inst_t *)&cmd_vf_mac_addr_filter, 17820 (cmdline_parse_inst_t *)&cmd_set_vf_macvlan_filter, 17821 (cmdline_parse_inst_t *)&cmd_queue_rate_limit, 17822 (cmdline_parse_inst_t *)&cmd_tunnel_filter, 17823 (cmdline_parse_inst_t *)&cmd_tunnel_udp_config, 17824 (cmdline_parse_inst_t *)&cmd_global_config, 17825 (cmdline_parse_inst_t *)&cmd_set_mirror_mask, 17826 (cmdline_parse_inst_t *)&cmd_set_mirror_link, 17827 (cmdline_parse_inst_t *)&cmd_reset_mirror_rule, 17828 (cmdline_parse_inst_t *)&cmd_showport_rss_hash, 17829 (cmdline_parse_inst_t *)&cmd_showport_rss_hash_key, 17830 (cmdline_parse_inst_t *)&cmd_config_rss_hash_key, 17831 (cmdline_parse_inst_t *)&cmd_dump, 17832 (cmdline_parse_inst_t *)&cmd_dump_one, 17833 (cmdline_parse_inst_t *)&cmd_ethertype_filter, 17834 (cmdline_parse_inst_t *)&cmd_syn_filter, 17835 (cmdline_parse_inst_t *)&cmd_2tuple_filter, 17836 (cmdline_parse_inst_t *)&cmd_5tuple_filter, 17837 (cmdline_parse_inst_t *)&cmd_flex_filter, 17838 (cmdline_parse_inst_t *)&cmd_add_del_ip_flow_director, 17839 (cmdline_parse_inst_t *)&cmd_add_del_udp_flow_director, 17840 (cmdline_parse_inst_t *)&cmd_add_del_sctp_flow_director, 17841 (cmdline_parse_inst_t *)&cmd_add_del_l2_flow_director, 17842 (cmdline_parse_inst_t *)&cmd_add_del_mac_vlan_flow_director, 17843 (cmdline_parse_inst_t *)&cmd_add_del_tunnel_flow_director, 17844 (cmdline_parse_inst_t *)&cmd_add_del_raw_flow_director, 17845 (cmdline_parse_inst_t *)&cmd_flush_flow_director, 17846 (cmdline_parse_inst_t *)&cmd_set_flow_director_ip_mask, 17847 (cmdline_parse_inst_t *)&cmd_set_flow_director_mac_vlan_mask, 17848 (cmdline_parse_inst_t *)&cmd_set_flow_director_tunnel_mask, 17849 (cmdline_parse_inst_t *)&cmd_set_flow_director_flex_mask, 17850 (cmdline_parse_inst_t *)&cmd_set_flow_director_flex_payload, 17851 (cmdline_parse_inst_t *)&cmd_get_sym_hash_ena_per_port, 17852 (cmdline_parse_inst_t *)&cmd_set_sym_hash_ena_per_port, 17853 (cmdline_parse_inst_t *)&cmd_get_hash_global_config, 17854 (cmdline_parse_inst_t *)&cmd_set_hash_global_config, 17855 (cmdline_parse_inst_t *)&cmd_set_hash_input_set, 17856 (cmdline_parse_inst_t *)&cmd_set_fdir_input_set, 17857 (cmdline_parse_inst_t *)&cmd_flow, 17858 (cmdline_parse_inst_t *)&cmd_show_port_meter_cap, 17859 (cmdline_parse_inst_t *)&cmd_add_port_meter_profile_srtcm, 17860 (cmdline_parse_inst_t *)&cmd_add_port_meter_profile_trtcm, 17861 (cmdline_parse_inst_t *)&cmd_del_port_meter_profile, 17862 (cmdline_parse_inst_t *)&cmd_create_port_meter, 17863 (cmdline_parse_inst_t *)&cmd_enable_port_meter, 17864 (cmdline_parse_inst_t *)&cmd_disable_port_meter, 17865 (cmdline_parse_inst_t *)&cmd_del_port_meter, 17866 (cmdline_parse_inst_t *)&cmd_set_port_meter_profile, 17867 (cmdline_parse_inst_t *)&cmd_set_port_meter_dscp_table, 17868 (cmdline_parse_inst_t *)&cmd_set_port_meter_policer_action, 17869 (cmdline_parse_inst_t *)&cmd_set_port_meter_stats_mask, 17870 (cmdline_parse_inst_t *)&cmd_show_port_meter_stats, 17871 (cmdline_parse_inst_t *)&cmd_mcast_addr, 17872 (cmdline_parse_inst_t *)&cmd_config_l2_tunnel_eth_type_all, 17873 (cmdline_parse_inst_t *)&cmd_config_l2_tunnel_eth_type_specific, 17874 (cmdline_parse_inst_t *)&cmd_config_l2_tunnel_en_dis_all, 17875 (cmdline_parse_inst_t *)&cmd_config_l2_tunnel_en_dis_specific, 17876 (cmdline_parse_inst_t *)&cmd_config_e_tag_insertion_en, 17877 (cmdline_parse_inst_t *)&cmd_config_e_tag_insertion_dis, 17878 (cmdline_parse_inst_t *)&cmd_config_e_tag_stripping_en_dis, 17879 (cmdline_parse_inst_t *)&cmd_config_e_tag_forwarding_en_dis, 17880 (cmdline_parse_inst_t *)&cmd_config_e_tag_filter_add, 17881 (cmdline_parse_inst_t *)&cmd_config_e_tag_filter_del, 17882 (cmdline_parse_inst_t *)&cmd_set_vf_vlan_anti_spoof, 17883 (cmdline_parse_inst_t *)&cmd_set_vf_mac_anti_spoof, 17884 (cmdline_parse_inst_t *)&cmd_set_vf_vlan_stripq, 17885 (cmdline_parse_inst_t *)&cmd_set_vf_vlan_insert, 17886 (cmdline_parse_inst_t *)&cmd_set_tx_loopback, 17887 (cmdline_parse_inst_t *)&cmd_set_all_queues_drop_en, 17888 (cmdline_parse_inst_t *)&cmd_set_vf_split_drop_en, 17889 (cmdline_parse_inst_t *)&cmd_set_macsec_offload_on, 17890 (cmdline_parse_inst_t *)&cmd_set_macsec_offload_off, 17891 (cmdline_parse_inst_t *)&cmd_set_macsec_sc, 17892 (cmdline_parse_inst_t *)&cmd_set_macsec_sa, 17893 (cmdline_parse_inst_t *)&cmd_set_vf_traffic, 17894 (cmdline_parse_inst_t *)&cmd_set_vf_rxmode, 17895 (cmdline_parse_inst_t *)&cmd_vf_rate_limit, 17896 (cmdline_parse_inst_t *)&cmd_vf_rxvlan_filter, 17897 (cmdline_parse_inst_t *)&cmd_set_vf_mac_addr, 17898 (cmdline_parse_inst_t *)&cmd_set_vf_promisc, 17899 (cmdline_parse_inst_t *)&cmd_set_vf_allmulti, 17900 (cmdline_parse_inst_t *)&cmd_set_vf_broadcast, 17901 (cmdline_parse_inst_t *)&cmd_set_vf_vlan_tag, 17902 (cmdline_parse_inst_t *)&cmd_vf_max_bw, 17903 (cmdline_parse_inst_t *)&cmd_vf_tc_min_bw, 17904 (cmdline_parse_inst_t *)&cmd_vf_tc_max_bw, 17905 (cmdline_parse_inst_t *)&cmd_strict_link_prio, 17906 (cmdline_parse_inst_t *)&cmd_tc_min_bw, 17907 #if defined RTE_LIBRTE_PMD_SOFTNIC && defined RTE_LIBRTE_SCHED 17908 (cmdline_parse_inst_t *)&cmd_set_port_tm_hierarchy_default, 17909 #endif 17910 (cmdline_parse_inst_t *)&cmd_set_vxlan, 17911 (cmdline_parse_inst_t *)&cmd_set_vxlan_with_vlan, 17912 (cmdline_parse_inst_t *)&cmd_set_nvgre, 17913 (cmdline_parse_inst_t *)&cmd_set_nvgre_with_vlan, 17914 (cmdline_parse_inst_t *)&cmd_ddp_add, 17915 (cmdline_parse_inst_t *)&cmd_ddp_del, 17916 (cmdline_parse_inst_t *)&cmd_ddp_get_list, 17917 (cmdline_parse_inst_t *)&cmd_ddp_get_info, 17918 (cmdline_parse_inst_t *)&cmd_cfg_input_set, 17919 (cmdline_parse_inst_t *)&cmd_clear_input_set, 17920 (cmdline_parse_inst_t *)&cmd_show_vf_stats, 17921 (cmdline_parse_inst_t *)&cmd_clear_vf_stats, 17922 (cmdline_parse_inst_t *)&cmd_ptype_mapping_get, 17923 (cmdline_parse_inst_t *)&cmd_ptype_mapping_replace, 17924 (cmdline_parse_inst_t *)&cmd_ptype_mapping_reset, 17925 (cmdline_parse_inst_t *)&cmd_ptype_mapping_update, 17926 17927 (cmdline_parse_inst_t *)&cmd_pctype_mapping_get, 17928 (cmdline_parse_inst_t *)&cmd_pctype_mapping_reset, 17929 (cmdline_parse_inst_t *)&cmd_pctype_mapping_update, 17930 (cmdline_parse_inst_t *)&cmd_queue_region, 17931 (cmdline_parse_inst_t *)&cmd_region_flowtype, 17932 (cmdline_parse_inst_t *)&cmd_user_priority_region, 17933 (cmdline_parse_inst_t *)&cmd_flush_queue_region, 17934 (cmdline_parse_inst_t *)&cmd_show_queue_region_info_all, 17935 (cmdline_parse_inst_t *)&cmd_show_port_tm_cap, 17936 (cmdline_parse_inst_t *)&cmd_show_port_tm_level_cap, 17937 (cmdline_parse_inst_t *)&cmd_show_port_tm_node_cap, 17938 (cmdline_parse_inst_t *)&cmd_show_port_tm_node_type, 17939 (cmdline_parse_inst_t *)&cmd_show_port_tm_node_stats, 17940 (cmdline_parse_inst_t *)&cmd_add_port_tm_node_shaper_profile, 17941 (cmdline_parse_inst_t *)&cmd_del_port_tm_node_shaper_profile, 17942 (cmdline_parse_inst_t *)&cmd_add_port_tm_node_shared_shaper, 17943 (cmdline_parse_inst_t *)&cmd_del_port_tm_node_shared_shaper, 17944 (cmdline_parse_inst_t *)&cmd_add_port_tm_node_wred_profile, 17945 (cmdline_parse_inst_t *)&cmd_del_port_tm_node_wred_profile, 17946 (cmdline_parse_inst_t *)&cmd_set_port_tm_node_shaper_profile, 17947 (cmdline_parse_inst_t *)&cmd_add_port_tm_nonleaf_node, 17948 (cmdline_parse_inst_t *)&cmd_add_port_tm_leaf_node, 17949 (cmdline_parse_inst_t *)&cmd_del_port_tm_node, 17950 (cmdline_parse_inst_t *)&cmd_set_port_tm_node_parent, 17951 (cmdline_parse_inst_t *)&cmd_suspend_port_tm_node, 17952 (cmdline_parse_inst_t *)&cmd_resume_port_tm_node, 17953 (cmdline_parse_inst_t *)&cmd_port_tm_hierarchy_commit, 17954 (cmdline_parse_inst_t *)&cmd_port_tm_mark_ip_ecn, 17955 (cmdline_parse_inst_t *)&cmd_port_tm_mark_ip_dscp, 17956 (cmdline_parse_inst_t *)&cmd_port_tm_mark_vlan_dei, 17957 (cmdline_parse_inst_t *)&cmd_cfg_tunnel_udp_port, 17958 (cmdline_parse_inst_t *)&cmd_rx_offload_get_capa, 17959 (cmdline_parse_inst_t *)&cmd_rx_offload_get_configuration, 17960 (cmdline_parse_inst_t *)&cmd_config_per_port_rx_offload, 17961 (cmdline_parse_inst_t *)&cmd_config_per_queue_rx_offload, 17962 (cmdline_parse_inst_t *)&cmd_tx_offload_get_capa, 17963 (cmdline_parse_inst_t *)&cmd_tx_offload_get_configuration, 17964 (cmdline_parse_inst_t *)&cmd_config_per_port_tx_offload, 17965 (cmdline_parse_inst_t *)&cmd_config_per_queue_tx_offload, 17966 #ifdef RTE_LIBRTE_BPF 17967 (cmdline_parse_inst_t *)&cmd_operate_bpf_ld_parse, 17968 (cmdline_parse_inst_t *)&cmd_operate_bpf_unld_parse, 17969 #endif 17970 NULL, 17971 }; 17972 17973 /* read cmdline commands from file */ 17974 void 17975 cmdline_read_from_file(const char *filename) 17976 { 17977 struct cmdline *cl; 17978 17979 cl = cmdline_file_new(main_ctx, "testpmd> ", filename); 17980 if (cl == NULL) { 17981 printf("Failed to create file based cmdline context: %s\n", 17982 filename); 17983 return; 17984 } 17985 17986 cmdline_interact(cl); 17987 cmdline_quit(cl); 17988 17989 cmdline_free(cl); 17990 17991 printf("Read CLI commands from %s\n", filename); 17992 } 17993 17994 /* prompt function, called from main on MASTER lcore */ 17995 void 17996 prompt(void) 17997 { 17998 /* initialize non-constant commands */ 17999 cmd_set_fwd_mode_init(); 18000 cmd_set_fwd_retry_mode_init(); 18001 18002 testpmd_cl = cmdline_stdin_new(main_ctx, "testpmd> "); 18003 if (testpmd_cl == NULL) 18004 return; 18005 cmdline_interact(testpmd_cl); 18006 cmdline_stdin_exit(testpmd_cl); 18007 } 18008 18009 void 18010 prompt_exit(void) 18011 { 18012 if (testpmd_cl != NULL) 18013 cmdline_quit(testpmd_cl); 18014 } 18015 18016 static void 18017 cmd_reconfig_device_queue(portid_t id, uint8_t dev, uint8_t queue) 18018 { 18019 if (id == (portid_t)RTE_PORT_ALL) { 18020 portid_t pid; 18021 18022 RTE_ETH_FOREACH_DEV(pid) { 18023 /* check if need_reconfig has been set to 1 */ 18024 if (ports[pid].need_reconfig == 0) 18025 ports[pid].need_reconfig = dev; 18026 /* check if need_reconfig_queues has been set to 1 */ 18027 if (ports[pid].need_reconfig_queues == 0) 18028 ports[pid].need_reconfig_queues = queue; 18029 } 18030 } else if (!port_id_is_invalid(id, DISABLED_WARN)) { 18031 /* check if need_reconfig has been set to 1 */ 18032 if (ports[id].need_reconfig == 0) 18033 ports[id].need_reconfig = dev; 18034 /* check if need_reconfig_queues has been set to 1 */ 18035 if (ports[id].need_reconfig_queues == 0) 18036 ports[id].need_reconfig_queues = queue; 18037 } 18038 } 18039