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 #include <sys/socket.h> 15 #include <netinet/in.h> 16 17 #include <sys/queue.h> 18 19 #include <rte_common.h> 20 #include <rte_byteorder.h> 21 #include <rte_log.h> 22 #include <rte_debug.h> 23 #include <rte_cycles.h> 24 #include <rte_memory.h> 25 #include <rte_memzone.h> 26 #include <rte_malloc.h> 27 #include <rte_launch.h> 28 #include <rte_eal.h> 29 #include <rte_per_lcore.h> 30 #include <rte_lcore.h> 31 #include <rte_atomic.h> 32 #include <rte_branch_prediction.h> 33 #include <rte_ring.h> 34 #include <rte_mempool.h> 35 #include <rte_interrupts.h> 36 #include <rte_pci.h> 37 #include <rte_ether.h> 38 #include <rte_ethdev.h> 39 #include <rte_string_fns.h> 40 #include <rte_devargs.h> 41 #include <rte_flow.h> 42 #include <rte_gro.h> 43 #include <rte_mbuf_dyn.h> 44 45 #include <cmdline_rdline.h> 46 #include <cmdline_parse.h> 47 #include <cmdline_parse_num.h> 48 #include <cmdline_parse_string.h> 49 #include <cmdline_parse_ipaddr.h> 50 #include <cmdline_parse_etheraddr.h> 51 #include <cmdline_socket.h> 52 #include <cmdline.h> 53 #ifdef RTE_NET_BOND 54 #include <rte_eth_bond.h> 55 #include <rte_eth_bond_8023ad.h> 56 #endif 57 #if defined RTE_BUS_DPAA && defined RTE_NET_DPAA 58 #include <rte_pmd_dpaa.h> 59 #endif 60 #ifdef RTE_NET_IXGBE 61 #include <rte_pmd_ixgbe.h> 62 #endif 63 #ifdef RTE_NET_I40E 64 #include <rte_pmd_i40e.h> 65 #endif 66 #ifdef RTE_NET_BNXT 67 #include <rte_pmd_bnxt.h> 68 #endif 69 #include "testpmd.h" 70 #include "cmdline_mtr.h" 71 #include "cmdline_tm.h" 72 #include "bpf_cmd.h" 73 74 static struct cmdline *testpmd_cl; 75 76 static void cmd_reconfig_device_queue(portid_t id, uint8_t dev, uint8_t queue); 77 78 /* *** Help command with introduction. *** */ 79 struct cmd_help_brief_result { 80 cmdline_fixed_string_t help; 81 }; 82 83 static void cmd_help_brief_parsed(__rte_unused void *parsed_result, 84 struct cmdline *cl, 85 __rte_unused void *data) 86 { 87 cmdline_printf( 88 cl, 89 "\n" 90 "Help is available for the following sections:\n\n" 91 " help control : Start and stop forwarding.\n" 92 " help display : Displaying port, stats and config " 93 "information.\n" 94 " help config : Configuration information.\n" 95 " help ports : Configuring ports.\n" 96 " help registers : Reading and setting port registers.\n" 97 " help filters : Filters configuration help.\n" 98 " help traffic_management : Traffic Management commands.\n" 99 " help devices : Device related cmds.\n" 100 " help all : All of the above sections.\n\n" 101 ); 102 103 } 104 105 cmdline_parse_token_string_t cmd_help_brief_help = 106 TOKEN_STRING_INITIALIZER(struct cmd_help_brief_result, help, "help"); 107 108 cmdline_parse_inst_t cmd_help_brief = { 109 .f = cmd_help_brief_parsed, 110 .data = NULL, 111 .help_str = "help: Show help", 112 .tokens = { 113 (void *)&cmd_help_brief_help, 114 NULL, 115 }, 116 }; 117 118 /* *** Help command with help sections. *** */ 119 struct cmd_help_long_result { 120 cmdline_fixed_string_t help; 121 cmdline_fixed_string_t section; 122 }; 123 124 static void cmd_help_long_parsed(void *parsed_result, 125 struct cmdline *cl, 126 __rte_unused void *data) 127 { 128 int show_all = 0; 129 struct cmd_help_long_result *res = parsed_result; 130 131 if (!strcmp(res->section, "all")) 132 show_all = 1; 133 134 if (show_all || !strcmp(res->section, "control")) { 135 136 cmdline_printf( 137 cl, 138 "\n" 139 "Control forwarding:\n" 140 "-------------------\n\n" 141 142 "start\n" 143 " Start packet forwarding with current configuration.\n\n" 144 145 "start tx_first\n" 146 " Start packet forwarding with current config" 147 " after sending one burst of packets.\n\n" 148 149 "stop\n" 150 " Stop packet forwarding, and display accumulated" 151 " statistics.\n\n" 152 153 "quit\n" 154 " Quit to prompt.\n\n" 155 ); 156 } 157 158 if (show_all || !strcmp(res->section, "display")) { 159 160 cmdline_printf( 161 cl, 162 "\n" 163 "Display:\n" 164 "--------\n\n" 165 166 "show port (info|stats|summary|xstats|fdir|dcb_tc|cap) (port_id|all)\n" 167 " Display information for port_id, or all.\n\n" 168 169 "show port port_id (module_eeprom|eeprom)\n" 170 " Display the module EEPROM or EEPROM information for port_id.\n\n" 171 172 "show port X rss reta (size) (mask0,mask1,...)\n" 173 " Display the rss redirection table entry indicated" 174 " by masks on port X. size is used to indicate the" 175 " hardware supported reta size\n\n" 176 177 "show port (port_id) rss-hash [key]\n" 178 " Display the RSS hash functions and RSS hash key of port\n\n" 179 180 "clear port (info|stats|xstats|fdir) (port_id|all)\n" 181 " Clear information for port_id, or all.\n\n" 182 183 "show (rxq|txq) info (port_id) (queue_id)\n" 184 " Display information for configured RX/TX queue.\n\n" 185 186 "show config (rxtx|cores|fwd|rxoffs|rxpkts|txpkts)\n" 187 " Display the given configuration.\n\n" 188 189 "read rxd (port_id) (queue_id) (rxd_id)\n" 190 " Display an RX descriptor of a port RX queue.\n\n" 191 192 "read txd (port_id) (queue_id) (txd_id)\n" 193 " Display a TX descriptor of a port TX queue.\n\n" 194 195 "ddp get list (port_id)\n" 196 " Get ddp profile info list\n\n" 197 198 "ddp get info (profile_path)\n" 199 " Get ddp profile information.\n\n" 200 201 "show vf stats (port_id) (vf_id)\n" 202 " Display a VF's statistics.\n\n" 203 204 "clear vf stats (port_id) (vf_id)\n" 205 " Reset a VF's statistics.\n\n" 206 207 "show port (port_id) pctype mapping\n" 208 " Get flow ptype to pctype mapping on a port\n\n" 209 210 "show port meter stats (port_id) (meter_id) (clear)\n" 211 " Get meter stats on a port\n\n" 212 213 "show fwd stats all\n" 214 " Display statistics for all fwd engines.\n\n" 215 216 "clear fwd stats all\n" 217 " Clear statistics for all fwd engines.\n\n" 218 219 "show port (port_id) rx_offload capabilities\n" 220 " List all per queue and per port Rx offloading" 221 " capabilities of a port\n\n" 222 223 "show port (port_id) rx_offload configuration\n" 224 " List port level and all queue level" 225 " Rx offloading configuration\n\n" 226 227 "show port (port_id) tx_offload capabilities\n" 228 " List all per queue and per port" 229 " Tx offloading capabilities of a port\n\n" 230 231 "show port (port_id) tx_offload configuration\n" 232 " List port level and all queue level" 233 " Tx offloading configuration\n\n" 234 235 "show port (port_id) tx_metadata\n" 236 " Show Tx metadata value set" 237 " for a specific port\n\n" 238 239 "show port (port_id) ptypes\n" 240 " Show port supported ptypes" 241 " for a specific port\n\n" 242 243 "show device info (<identifier>|all)" 244 " Show general information about devices probed.\n\n" 245 246 "show port (port_id) rxq|txq (queue_id) desc (desc_id) status" 247 " Show status of rx|tx descriptor.\n\n" 248 249 "show port (port_id) macs|mcast_macs" 250 " Display list of mac addresses added to port.\n\n" 251 252 "show port (port_id) fec capabilities" 253 " Show fec capabilities of a port.\n\n" 254 255 "show port (port_id) fec_mode" 256 " Show fec mode of a port.\n\n" 257 ); 258 } 259 260 if (show_all || !strcmp(res->section, "config")) { 261 cmdline_printf( 262 cl, 263 "\n" 264 "Configuration:\n" 265 "--------------\n" 266 "Configuration changes only become active when" 267 " forwarding is started/restarted.\n\n" 268 269 "set default\n" 270 " Reset forwarding to the default configuration.\n\n" 271 272 "set verbose (level)\n" 273 " Set the debug verbosity level X.\n\n" 274 275 "set log global|(type) (level)\n" 276 " Set the log level.\n\n" 277 278 "set nbport (num)\n" 279 " Set number of ports.\n\n" 280 281 "set nbcore (num)\n" 282 " Set number of cores.\n\n" 283 284 "set coremask (mask)\n" 285 " Set the forwarding cores hexadecimal mask.\n\n" 286 287 "set portmask (mask)\n" 288 " Set the forwarding ports hexadecimal mask.\n\n" 289 290 "set burst (num)\n" 291 " Set number of packets per burst.\n\n" 292 293 "set burst tx delay (microseconds) retry (num)\n" 294 " Set the transmit delay time and number of retries," 295 " effective when retry is enabled.\n\n" 296 297 "set rxoffs (x[,y]*)\n" 298 " Set the offset of each packet segment on" 299 " receiving if split feature is engaged." 300 " Affects only the queues configured with split" 301 " offloads.\n\n" 302 303 "set rxpkts (x[,y]*)\n" 304 " Set the length of each segment to scatter" 305 " packets on receiving if split feature is engaged." 306 " Affects only the queues configured with split" 307 " offloads.\n\n" 308 309 "set txpkts (x[,y]*)\n" 310 " Set the length of each segment of TXONLY" 311 " and optionally CSUM packets.\n\n" 312 313 "set txsplit (off|on|rand)\n" 314 " Set the split policy for the TX packets." 315 " Right now only applicable for CSUM and TXONLY" 316 " modes\n\n" 317 318 "set txtimes (x, y)\n" 319 " Set the scheduling on timestamps" 320 " timings for the TXONLY mode\n\n" 321 322 "set corelist (x[,y]*)\n" 323 " Set the list of forwarding cores.\n\n" 324 325 "set portlist (x[,y]*)\n" 326 " Set the list of forwarding ports.\n\n" 327 328 "set port setup on (iterator|event)\n" 329 " Select how attached port is retrieved for setup.\n\n" 330 331 "set tx loopback (port_id) (on|off)\n" 332 " Enable or disable tx loopback.\n\n" 333 334 "set all queues drop (port_id) (on|off)\n" 335 " Set drop enable bit for all queues.\n\n" 336 337 "set vf split drop (port_id) (vf_id) (on|off)\n" 338 " Set split drop enable bit for a VF from the PF.\n\n" 339 340 "set vf mac antispoof (port_id) (vf_id) (on|off).\n" 341 " Set MAC antispoof for a VF from the PF.\n\n" 342 343 "set macsec offload (port_id) on encrypt (on|off) replay-protect (on|off)\n" 344 " Enable MACsec offload.\n\n" 345 346 "set macsec offload (port_id) off\n" 347 " Disable MACsec offload.\n\n" 348 349 "set macsec sc (tx|rx) (port_id) (mac) (pi)\n" 350 " Configure MACsec secure connection (SC).\n\n" 351 352 "set macsec sa (tx|rx) (port_id) (idx) (an) (pn) (key)\n" 353 " Configure MACsec secure association (SA).\n\n" 354 355 "set vf broadcast (port_id) (vf_id) (on|off)\n" 356 " Set VF broadcast for a VF from the PF.\n\n" 357 358 "vlan set stripq (on|off) (port_id,queue_id)\n" 359 " Set the VLAN strip for a queue on a port.\n\n" 360 361 "set vf vlan stripq (port_id) (vf_id) (on|off)\n" 362 " Set the VLAN strip for all queues in a pool for a VF from the PF.\n\n" 363 364 "set vf vlan insert (port_id) (vf_id) (vlan_id)\n" 365 " Set VLAN insert for a VF from the PF.\n\n" 366 367 "set vf vlan antispoof (port_id) (vf_id) (on|off)\n" 368 " Set VLAN antispoof for a VF from the PF.\n\n" 369 370 "set vf vlan tag (port_id) (vf_id) (on|off)\n" 371 " Set VLAN tag for a VF from the PF.\n\n" 372 373 "set vf tx max-bandwidth (port_id) (vf_id) (bandwidth)\n" 374 " Set a VF's max bandwidth(Mbps).\n\n" 375 376 "set vf tc tx min-bandwidth (port_id) (vf_id) (bw1, bw2, ...)\n" 377 " Set all TCs' min bandwidth(%%) on a VF.\n\n" 378 379 "set vf tc tx max-bandwidth (port_id) (vf_id) (tc_no) (bandwidth)\n" 380 " Set a TC's max bandwidth(Mbps) on a VF.\n\n" 381 382 "set tx strict-link-priority (port_id) (tc_bitmap)\n" 383 " Set some TCs' strict link priority mode on a physical port.\n\n" 384 385 "set tc tx min-bandwidth (port_id) (bw1, bw2, ...)\n" 386 " Set all TCs' min bandwidth(%%) for all PF and VFs.\n\n" 387 388 "vlan set (strip|filter|qinq_strip|extend) (on|off) (port_id)\n" 389 " Set the VLAN strip or filter or qinq strip or extend\n\n" 390 391 "vlan set (inner|outer) tpid (value) (port_id)\n" 392 " Set the VLAN TPID for Packet Filtering on" 393 " a port\n\n" 394 395 "rx_vlan add (vlan_id|all) (port_id)\n" 396 " Add a vlan_id, or all identifiers, to the set" 397 " of VLAN identifiers filtered by port_id.\n\n" 398 399 "rx_vlan rm (vlan_id|all) (port_id)\n" 400 " Remove a vlan_id, or all identifiers, from the set" 401 " of VLAN identifiers filtered by port_id.\n\n" 402 403 "rx_vlan add (vlan_id) port (port_id) vf (vf_mask)\n" 404 " Add a vlan_id, to the set of VLAN identifiers" 405 "filtered for VF(s) from port_id.\n\n" 406 407 "rx_vlan rm (vlan_id) port (port_id) vf (vf_mask)\n" 408 " Remove a vlan_id, to the set of VLAN identifiers" 409 "filtered for VF(s) from port_id.\n\n" 410 411 "rx_vxlan_port add (udp_port) (port_id)\n" 412 " Add an UDP port for VXLAN packet filter on a port\n\n" 413 414 "rx_vxlan_port rm (udp_port) (port_id)\n" 415 " Remove an UDP port for VXLAN packet filter on a port\n\n" 416 417 "tx_vlan set (port_id) vlan_id[, vlan_id_outer]\n" 418 " Set hardware insertion of VLAN IDs (single or double VLAN " 419 "depends on the number of VLAN IDs) in packets sent on a port.\n\n" 420 421 "tx_vlan set pvid port_id vlan_id (on|off)\n" 422 " Set port based TX VLAN insertion.\n\n" 423 424 "tx_vlan reset (port_id)\n" 425 " Disable hardware insertion of a VLAN header in" 426 " packets sent on a port.\n\n" 427 428 "csum set (ip|udp|tcp|sctp|outer-ip|outer-udp) (hw|sw) (port_id)\n" 429 " Select hardware or software calculation of the" 430 " checksum when transmitting a packet using the" 431 " csum forward engine.\n" 432 " ip|udp|tcp|sctp always concern the inner layer.\n" 433 " outer-ip concerns the outer IP layer in" 434 " outer-udp concerns the outer UDP layer in" 435 " case the packet is recognized as a tunnel packet by" 436 " the forward engine (vxlan, gre and ipip are supported)\n" 437 " Please check the NIC datasheet for HW limits.\n\n" 438 439 "csum parse-tunnel (on|off) (tx_port_id)\n" 440 " If disabled, treat tunnel packets as non-tunneled" 441 " packets (treat inner headers as payload). The port\n" 442 " argument is the port used for TX in csum forward" 443 " engine.\n\n" 444 445 "csum show (port_id)\n" 446 " Display tx checksum offload configuration\n\n" 447 448 "tso set (segsize) (portid)\n" 449 " Enable TCP Segmentation Offload in csum forward" 450 " engine.\n" 451 " Please check the NIC datasheet for HW limits.\n\n" 452 453 "tso show (portid)" 454 " Display the status of TCP Segmentation Offload.\n\n" 455 456 "set port (port_id) gro on|off\n" 457 " Enable or disable Generic Receive Offload in" 458 " csum forwarding engine.\n\n" 459 460 "show port (port_id) gro\n" 461 " Display GRO configuration.\n\n" 462 463 "set gro flush (cycles)\n" 464 " Set the cycle to flush GROed packets from" 465 " reassembly tables.\n\n" 466 467 "set port (port_id) gso (on|off)" 468 " Enable or disable Generic Segmentation Offload in" 469 " csum forwarding engine.\n\n" 470 471 "set gso segsz (length)\n" 472 " Set max packet length for output GSO segments," 473 " including packet header and payload.\n\n" 474 475 "show port (port_id) gso\n" 476 " Show GSO configuration.\n\n" 477 478 "set fwd (%s)\n" 479 " Set packet forwarding mode.\n\n" 480 481 "mac_addr add (port_id) (XX:XX:XX:XX:XX:XX)\n" 482 " Add a MAC address on port_id.\n\n" 483 484 "mac_addr remove (port_id) (XX:XX:XX:XX:XX:XX)\n" 485 " Remove a MAC address from port_id.\n\n" 486 487 "mac_addr set (port_id) (XX:XX:XX:XX:XX:XX)\n" 488 " Set the default MAC address for port_id.\n\n" 489 490 "mac_addr add port (port_id) vf (vf_id) (mac_address)\n" 491 " Add a MAC address for a VF on the port.\n\n" 492 493 "set vf mac addr (port_id) (vf_id) (XX:XX:XX:XX:XX:XX)\n" 494 " Set the MAC address for a VF from the PF.\n\n" 495 496 "set eth-peer (port_id) (peer_addr)\n" 497 " set the peer address for certain port.\n\n" 498 499 "set port (port_id) uta (mac_address|all) (on|off)\n" 500 " Add/Remove a or all unicast hash filter(s)" 501 "from port X.\n\n" 502 503 "set promisc (port_id|all) (on|off)\n" 504 " Set the promiscuous mode on port_id, or all.\n\n" 505 506 "set allmulti (port_id|all) (on|off)\n" 507 " Set the allmulti mode on port_id, or all.\n\n" 508 509 "set vf promisc (port_id) (vf_id) (on|off)\n" 510 " Set unicast promiscuous mode for a VF from the PF.\n\n" 511 512 "set vf allmulti (port_id) (vf_id) (on|off)\n" 513 " Set multicast promiscuous mode for a VF from the PF.\n\n" 514 515 "set flow_ctrl rx (on|off) tx (on|off) (high_water)" 516 " (low_water) (pause_time) (send_xon) mac_ctrl_frame_fwd" 517 " (on|off) autoneg (on|off) (port_id)\n" 518 "set flow_ctrl rx (on|off) (portid)\n" 519 "set flow_ctrl tx (on|off) (portid)\n" 520 "set flow_ctrl high_water (high_water) (portid)\n" 521 "set flow_ctrl low_water (low_water) (portid)\n" 522 "set flow_ctrl pause_time (pause_time) (portid)\n" 523 "set flow_ctrl send_xon (send_xon) (portid)\n" 524 "set flow_ctrl mac_ctrl_frame_fwd (on|off) (portid)\n" 525 "set flow_ctrl autoneg (on|off) (port_id)\n" 526 " Set the link flow control parameter on a port.\n\n" 527 528 "set pfc_ctrl rx (on|off) tx (on|off) (high_water)" 529 " (low_water) (pause_time) (priority) (port_id)\n" 530 " Set the priority flow control parameter on a" 531 " port.\n\n" 532 533 "set stat_qmap (tx|rx) (port_id) (queue_id) (qmapping)\n" 534 " Set statistics mapping (qmapping 0..15) for RX/TX" 535 " queue on port.\n" 536 " e.g., 'set stat_qmap rx 0 2 5' sets rx queue 2" 537 " on port 0 to mapping 5.\n\n" 538 539 "set xstats-hide-zero on|off\n" 540 " Set the option to hide the zero values" 541 " for xstats display.\n" 542 543 "set record-core-cycles on|off\n" 544 " Set the option to enable measurement of CPU cycles.\n" 545 546 "set record-burst-stats on|off\n" 547 " Set the option to enable display of RX and TX bursts.\n" 548 549 "set port (port_id) vf (vf_id) rx|tx on|off\n" 550 " Enable/Disable a VF receive/tranmit from a port\n\n" 551 552 "set port (port_id) vf (vf_id) rxmode (AUPE|ROPE|BAM" 553 "|MPE) (on|off)\n" 554 " AUPE:accepts untagged VLAN;" 555 "ROPE:accept unicast hash\n\n" 556 " BAM:accepts broadcast packets;" 557 "MPE:accepts all multicast packets\n\n" 558 " Enable/Disable a VF receive mode of a port\n\n" 559 560 "set port (port_id) queue (queue_id) rate (rate_num)\n" 561 " Set rate limit for a queue of a port\n\n" 562 563 "set port (port_id) vf (vf_id) rate (rate_num) " 564 "queue_mask (queue_mask_value)\n" 565 " Set rate limit for queues in VF of a port\n\n" 566 567 "set port (port_id) mirror-rule (rule_id)" 568 " (pool-mirror-up|pool-mirror-down|vlan-mirror)" 569 " (poolmask|vlanid[,vlanid]*) dst-pool (pool_id) (on|off)\n" 570 " Set pool or vlan type mirror rule on a port.\n" 571 " e.g., 'set port 0 mirror-rule 0 vlan-mirror 0,1" 572 " dst-pool 0 on' enable mirror traffic with vlan 0,1" 573 " to pool 0.\n\n" 574 575 "set port (port_id) mirror-rule (rule_id)" 576 " (uplink-mirror|downlink-mirror) dst-pool" 577 " (pool_id) (on|off)\n" 578 " Set uplink or downlink type mirror rule on a port.\n" 579 " e.g., 'set port 0 mirror-rule 0 uplink-mirror dst-pool" 580 " 0 on' enable mirror income traffic to pool 0.\n\n" 581 582 "reset port (port_id) mirror-rule (rule_id)\n" 583 " Reset a mirror rule.\n\n" 584 585 "set flush_rx (on|off)\n" 586 " Flush (default) or don't flush RX streams before" 587 " forwarding. Mainly used with PCAP drivers.\n\n" 588 589 "set bypass mode (normal|bypass|isolate) (port_id)\n" 590 " Set the bypass mode for the lowest port on bypass enabled" 591 " NIC.\n\n" 592 593 "set bypass event (timeout|os_on|os_off|power_on|power_off) " 594 "mode (normal|bypass|isolate) (port_id)\n" 595 " Set the event required to initiate specified bypass mode for" 596 " the lowest port on a bypass enabled NIC where:\n" 597 " timeout = enable bypass after watchdog timeout.\n" 598 " os_on = enable bypass when OS/board is powered on.\n" 599 " os_off = enable bypass when OS/board is powered off.\n" 600 " power_on = enable bypass when power supply is turned on.\n" 601 " power_off = enable bypass when power supply is turned off." 602 "\n\n" 603 604 "set bypass timeout (0|1.5|2|3|4|8|16|32)\n" 605 " Set the bypass watchdog timeout to 'n' seconds" 606 " where 0 = instant.\n\n" 607 608 "show bypass config (port_id)\n" 609 " Show the bypass configuration for a bypass enabled NIC" 610 " using the lowest port on the NIC.\n\n" 611 612 #ifdef RTE_NET_BOND 613 "create bonded device (mode) (socket)\n" 614 " Create a new bonded device with specific bonding mode and socket.\n\n" 615 616 "add bonding slave (slave_id) (port_id)\n" 617 " Add a slave device to a bonded device.\n\n" 618 619 "remove bonding slave (slave_id) (port_id)\n" 620 " Remove a slave device from a bonded device.\n\n" 621 622 "set bonding mode (value) (port_id)\n" 623 " Set the bonding mode on a bonded device.\n\n" 624 625 "set bonding primary (slave_id) (port_id)\n" 626 " Set the primary slave for a bonded device.\n\n" 627 628 "show bonding config (port_id)\n" 629 " Show the bonding config for port_id.\n\n" 630 631 "set bonding mac_addr (port_id) (address)\n" 632 " Set the MAC address of a bonded device.\n\n" 633 634 "set bonding mode IEEE802.3AD aggregator policy (port_id) (agg_name)" 635 " Set Aggregation mode for IEEE802.3AD (mode 4)" 636 637 "set bonding balance_xmit_policy (port_id) (l2|l23|l34)\n" 638 " Set the transmit balance policy for bonded device running in balance mode.\n\n" 639 640 "set bonding mon_period (port_id) (value)\n" 641 " Set the bonding link status monitoring polling period in ms.\n\n" 642 643 "set bonding lacp dedicated_queues <port_id> (enable|disable)\n" 644 " Enable/disable dedicated queues for LACP control traffic.\n\n" 645 646 #endif 647 "set link-up port (port_id)\n" 648 " Set link up for a port.\n\n" 649 650 "set link-down port (port_id)\n" 651 " Set link down for a port.\n\n" 652 653 "ddp add (port_id) (profile_path[,backup_profile_path])\n" 654 " Load a profile package on a port\n\n" 655 656 "ddp del (port_id) (backup_profile_path)\n" 657 " Delete a profile package from a port\n\n" 658 659 "ptype mapping get (port_id) (valid_only)\n" 660 " Get ptype mapping on a port\n\n" 661 662 "ptype mapping replace (port_id) (target) (mask) (pky_type)\n" 663 " Replace target with the pkt_type in ptype mapping\n\n" 664 665 "ptype mapping reset (port_id)\n" 666 " Reset ptype mapping on a port\n\n" 667 668 "ptype mapping update (port_id) (hw_ptype) (sw_ptype)\n" 669 " Update a ptype mapping item on a port\n\n" 670 671 "set port (port_id) ptype_mask (ptype_mask)\n" 672 " set packet types classification for a specific port\n\n" 673 674 "set port (port_id) queue-region region_id (value) " 675 "queue_start_index (value) queue_num (value)\n" 676 " Set a queue region on a port\n\n" 677 678 "set port (port_id) queue-region region_id (value) " 679 "flowtype (value)\n" 680 " Set a flowtype region index on a port\n\n" 681 682 "set port (port_id) queue-region UP (value) region_id (value)\n" 683 " Set the mapping of User Priority to " 684 "queue region on a port\n\n" 685 686 "set port (port_id) queue-region flush (on|off)\n" 687 " flush all queue region related configuration\n\n" 688 689 "show port meter cap (port_id)\n" 690 " Show port meter capability information\n\n" 691 692 "add port meter profile srtcm_rfc2697 (port_id) (profile_id) (cir) (cbs) (ebs)\n" 693 " meter profile add - srtcm rfc 2697\n\n" 694 695 "add port meter profile trtcm_rfc2698 (port_id) (profile_id) (cir) (pir) (cbs) (pbs)\n" 696 " meter profile add - trtcm rfc 2698\n\n" 697 698 "add port meter profile trtcm_rfc4115 (port_id) (profile_id) (cir) (eir) (cbs) (ebs)\n" 699 " meter profile add - trtcm rfc 4115\n\n" 700 701 "del port meter profile (port_id) (profile_id)\n" 702 " meter profile delete\n\n" 703 704 "create port meter (port_id) (mtr_id) (profile_id) (meter_enable)\n" 705 "(g_action) (y_action) (r_action) (stats_mask) (shared)\n" 706 "(use_pre_meter_color) [(dscp_tbl_entry0) (dscp_tbl_entry1)...\n" 707 "(dscp_tbl_entry63)]\n" 708 " meter create\n\n" 709 710 "enable port meter (port_id) (mtr_id)\n" 711 " meter enable\n\n" 712 713 "disable port meter (port_id) (mtr_id)\n" 714 " meter disable\n\n" 715 716 "del port meter (port_id) (mtr_id)\n" 717 " meter delete\n\n" 718 719 "set port meter profile (port_id) (mtr_id) (profile_id)\n" 720 " meter update meter profile\n\n" 721 722 "set port meter dscp table (port_id) (mtr_id) [(dscp_tbl_entry0)\n" 723 "(dscp_tbl_entry1)...(dscp_tbl_entry63)]\n" 724 " update meter dscp table entries\n\n" 725 726 "set port meter policer action (port_id) (mtr_id) (action_mask)\n" 727 "(action0) [(action1) (action2)]\n" 728 " meter update policer action\n\n" 729 730 "set port meter stats mask (port_id) (mtr_id) (stats_mask)\n" 731 " meter update stats\n\n" 732 733 "show port (port_id) queue-region\n" 734 " show all queue region related configuration info\n\n" 735 736 "set port (port_id) fec_mode auto|off|rs|baser\n" 737 " set fec mode for a specific port\n\n" 738 739 , list_pkt_forwarding_modes() 740 ); 741 } 742 743 if (show_all || !strcmp(res->section, "ports")) { 744 745 cmdline_printf( 746 cl, 747 "\n" 748 "Port Operations:\n" 749 "----------------\n\n" 750 751 "port start (port_id|all)\n" 752 " Start all ports or port_id.\n\n" 753 754 "port stop (port_id|all)\n" 755 " Stop all ports or port_id.\n\n" 756 757 "port close (port_id|all)\n" 758 " Close all ports or port_id.\n\n" 759 760 "port reset (port_id|all)\n" 761 " Reset all ports or port_id.\n\n" 762 763 "port attach (ident)\n" 764 " Attach physical or virtual dev by pci address or virtual device name\n\n" 765 766 "port detach (port_id)\n" 767 " Detach physical or virtual dev by port_id\n\n" 768 769 "port config (port_id|all)" 770 " speed (10|100|1000|10000|25000|40000|50000|100000|200000|auto)" 771 " duplex (half|full|auto)\n" 772 " Set speed and duplex for all ports or port_id\n\n" 773 774 "port config (port_id|all) loopback (mode)\n" 775 " Set loopback mode for all ports or port_id\n\n" 776 777 "port config all (rxq|txq|rxd|txd) (value)\n" 778 " Set number for rxq/txq/rxd/txd.\n\n" 779 780 "port config all max-pkt-len (value)\n" 781 " Set the max packet length.\n\n" 782 783 "port config all max-lro-pkt-size (value)\n" 784 " Set the max LRO aggregated packet size.\n\n" 785 786 "port config all drop-en (on|off)\n" 787 " Enable or disable packet drop on all RX queues of all ports when no " 788 "receive buffers available.\n\n" 789 790 "port config all rss (all|default|ip|tcp|udp|sctp|" 791 "ether|port|vxlan|geneve|nvgre|vxlan-gpe|ecpri|none|level-default|" 792 "level-outer|level-inner|<flowtype_id>)\n" 793 " Set the RSS mode.\n\n" 794 795 "port config port-id rss reta (hash,queue)[,(hash,queue)]\n" 796 " Set the RSS redirection table.\n\n" 797 798 "port config (port_id) dcb vt (on|off) (traffic_class)" 799 " pfc (on|off)\n" 800 " Set the DCB mode.\n\n" 801 802 "port config all burst (value)\n" 803 " Set the number of packets per burst.\n\n" 804 805 "port config all (txpt|txht|txwt|rxpt|rxht|rxwt)" 806 " (value)\n" 807 " Set the ring prefetch/host/writeback threshold" 808 " for tx/rx queue.\n\n" 809 810 "port config all (txfreet|txrst|rxfreet) (value)\n" 811 " Set free threshold for rx/tx, or set" 812 " tx rs bit threshold.\n\n" 813 "port config mtu X value\n" 814 " Set the MTU of port X to a given value\n\n" 815 816 "port config (port_id) (rxq|txq) (queue_id) ring_size (value)\n" 817 " Set a rx/tx queue's ring size configuration, the new" 818 " value will take effect after command that (re-)start the port" 819 " or command that setup the specific queue\n\n" 820 821 "port (port_id) (rxq|txq) (queue_id) (start|stop)\n" 822 " Start/stop a rx/tx queue of port X. Only take effect" 823 " when port X is started\n\n" 824 825 "port (port_id) (rxq|txq) (queue_id) deferred_start (on|off)\n" 826 " Switch on/off a deferred start of port X rx/tx queue. Only" 827 " take effect when port X is stopped.\n\n" 828 829 "port (port_id) (rxq|txq) (queue_id) setup\n" 830 " Setup a rx/tx queue of port X.\n\n" 831 832 "port config (port_id) pctype mapping reset\n" 833 " Reset flow type to pctype mapping on a port\n\n" 834 835 "port config (port_id) pctype mapping update" 836 " (pctype_id_0[,pctype_id_1]*) (flow_type_id)\n" 837 " Update a flow type to pctype mapping item on a port\n\n" 838 839 "port config (port_id) pctype (pctype_id) hash_inset|" 840 "fdir_inset|fdir_flx_inset get|set|clear field\n" 841 " (field_idx)\n" 842 " Configure RSS|FDIR|FDIR_FLX input set for some pctype\n\n" 843 844 "port config (port_id) pctype (pctype_id) hash_inset|" 845 "fdir_inset|fdir_flx_inset clear all" 846 " Clear RSS|FDIR|FDIR_FLX input set completely for some pctype\n\n" 847 848 "port config (port_id) udp_tunnel_port add|rm vxlan|geneve (udp_port)\n\n" 849 " Add/remove UDP tunnel port for tunneling offload\n\n" 850 851 "port config <port_id> rx_offload vlan_strip|" 852 "ipv4_cksum|udp_cksum|tcp_cksum|tcp_lro|qinq_strip|" 853 "outer_ipv4_cksum|macsec_strip|header_split|" 854 "vlan_filter|vlan_extend|jumbo_frame|scatter|" 855 "buffer_split|timestamp|security|keep_crc on|off\n" 856 " Enable or disable a per port Rx offloading" 857 " on all Rx queues of a port\n\n" 858 859 "port (port_id) rxq (queue_id) rx_offload vlan_strip|" 860 "ipv4_cksum|udp_cksum|tcp_cksum|tcp_lro|qinq_strip|" 861 "outer_ipv4_cksum|macsec_strip|header_split|" 862 "vlan_filter|vlan_extend|jumbo_frame|scatter|" 863 "buffer_split|timestamp|security|keep_crc on|off\n" 864 " Enable or disable a per queue Rx offloading" 865 " only on a specific Rx queue\n\n" 866 867 "port config (port_id) tx_offload vlan_insert|" 868 "ipv4_cksum|udp_cksum|tcp_cksum|sctp_cksum|tcp_tso|" 869 "udp_tso|outer_ipv4_cksum|qinq_insert|vxlan_tnl_tso|" 870 "gre_tnl_tso|ipip_tnl_tso|geneve_tnl_tso|" 871 "macsec_insert|mt_lockfree|multi_segs|mbuf_fast_free|" 872 "security on|off\n" 873 " Enable or disable a per port Tx offloading" 874 " on all Tx queues of a port\n\n" 875 876 "port (port_id) txq (queue_id) tx_offload vlan_insert|" 877 "ipv4_cksum|udp_cksum|tcp_cksum|sctp_cksum|tcp_tso|" 878 "udp_tso|outer_ipv4_cksum|qinq_insert|vxlan_tnl_tso|" 879 "gre_tnl_tso|ipip_tnl_tso|geneve_tnl_tso|macsec_insert" 880 "|mt_lockfree|multi_segs|mbuf_fast_free|security" 881 " on|off\n" 882 " Enable or disable a per queue Tx offloading" 883 " only on a specific Tx queue\n\n" 884 885 "bpf-load rx|tx (port) (queue) (J|M|B) (file_name)\n" 886 " Load an eBPF program as a callback" 887 " for particular RX/TX queue\n\n" 888 889 "bpf-unload rx|tx (port) (queue)\n" 890 " Unload previously loaded eBPF program" 891 " for particular RX/TX queue\n\n" 892 893 "port config (port_id) tx_metadata (value)\n" 894 " Set Tx metadata value per port. Testpmd will add this value" 895 " to any Tx packet sent from this port\n\n" 896 897 "port config (port_id) dynf (name) set|clear\n" 898 " Register a dynf and Set/clear this flag on Tx. " 899 "Testpmd will set this value to any Tx packet " 900 "sent from this port\n\n" 901 ); 902 } 903 904 if (show_all || !strcmp(res->section, "registers")) { 905 906 cmdline_printf( 907 cl, 908 "\n" 909 "Registers:\n" 910 "----------\n\n" 911 912 "read reg (port_id) (address)\n" 913 " Display value of a port register.\n\n" 914 915 "read regfield (port_id) (address) (bit_x) (bit_y)\n" 916 " Display a port register bit field.\n\n" 917 918 "read regbit (port_id) (address) (bit_x)\n" 919 " Display a single port register bit.\n\n" 920 921 "write reg (port_id) (address) (value)\n" 922 " Set value of a port register.\n\n" 923 924 "write regfield (port_id) (address) (bit_x) (bit_y)" 925 " (value)\n" 926 " Set bit field of a port register.\n\n" 927 928 "write regbit (port_id) (address) (bit_x) (value)\n" 929 " Set single bit value of a port register.\n\n" 930 ); 931 } 932 if (show_all || !strcmp(res->section, "filters")) { 933 934 cmdline_printf( 935 cl, 936 "\n" 937 "filters:\n" 938 "--------\n\n" 939 940 #ifdef RTE_NET_I40E 941 "flow_director_filter (port_id) mode raw (add|del|update)" 942 " flow (flow_id) (drop|fwd) queue (queue_id)" 943 " fd_id (fd_id_value) packet (packet file name)\n" 944 " Add/Del a raw type flow director filter.\n\n" 945 #endif 946 947 "flow_director_mask (port_id) mode IP vlan (vlan_value)" 948 " src_mask (ipv4_src) (ipv6_src) (src_port)" 949 " dst_mask (ipv4_dst) (ipv6_dst) (dst_port)\n" 950 " Set flow director IP mask.\n\n" 951 952 "flow_director_mask (port_id) mode MAC-VLAN" 953 " vlan (vlan_value)\n" 954 " Set flow director MAC-VLAN mask.\n\n" 955 956 "flow_director_mask (port_id) mode Tunnel" 957 " vlan (vlan_value) mac (mac_value)" 958 " tunnel-type (tunnel_type_value)" 959 " tunnel-id (tunnel_id_value)\n" 960 " Set flow director Tunnel mask.\n\n" 961 962 "flow_director_flex_payload (port_id)" 963 " (raw|l2|l3|l4) (config)\n" 964 " Configure flex payload selection.\n\n" 965 966 "flow validate {port_id}" 967 " [group {group_id}] [priority {level}]" 968 " [ingress] [egress]" 969 " pattern {item} [/ {item} [...]] / end" 970 " actions {action} [/ {action} [...]] / end\n" 971 " Check whether a flow rule can be created.\n\n" 972 973 "flow create {port_id}" 974 " [group {group_id}] [priority {level}]" 975 " [ingress] [egress]" 976 " pattern {item} [/ {item} [...]] / end" 977 " actions {action} [/ {action} [...]] / end\n" 978 " Create a flow rule.\n\n" 979 980 "flow destroy {port_id} rule {rule_id} [...]\n" 981 " Destroy specific flow rules.\n\n" 982 983 "flow flush {port_id}\n" 984 " Destroy all flow rules.\n\n" 985 986 "flow query {port_id} {rule_id} {action}\n" 987 " Query an existing flow rule.\n\n" 988 989 "flow list {port_id} [group {group_id}] [...]\n" 990 " List existing flow rules sorted by priority," 991 " filtered by group identifiers.\n\n" 992 993 "flow isolate {port_id} {boolean}\n" 994 " Restrict ingress traffic to the defined" 995 " flow rules\n\n" 996 997 "flow aged {port_id} [destroy]\n" 998 " List and destroy aged flows" 999 " flow rules\n\n" 1000 1001 "flow shared_action {port_id} create" 1002 " [action_id {shared_action_id}]" 1003 " [ingress] [egress]" 1004 " action {action} / end\n" 1005 " Create shared action.\n\n" 1006 1007 "flow shared_action {port_id} update" 1008 " {shared_action_id} action {action} / end\n" 1009 " Update shared action.\n\n" 1010 1011 "flow shared_action {port_id} destroy" 1012 " action_id {shared_action_id} [...]\n" 1013 " Destroy specific shared actions.\n\n" 1014 1015 "flow shared_action {port_id} query" 1016 " {shared_action_id}\n" 1017 " Query an existing shared action.\n\n" 1018 1019 "set vxlan ip-version (ipv4|ipv6) vni (vni) udp-src" 1020 " (udp-src) udp-dst (udp-dst) ip-src (ip-src) ip-dst" 1021 " (ip-dst) eth-src (eth-src) eth-dst (eth-dst)\n" 1022 " Configure the VXLAN encapsulation for flows.\n\n" 1023 1024 "set vxlan-with-vlan ip-version (ipv4|ipv6) vni (vni)" 1025 " udp-src (udp-src) udp-dst (udp-dst) ip-src (ip-src)" 1026 " ip-dst (ip-dst) vlan-tci (vlan-tci) eth-src (eth-src)" 1027 " eth-dst (eth-dst)\n" 1028 " Configure the VXLAN encapsulation for flows.\n\n" 1029 1030 "set vxlan-tos-ttl ip-version (ipv4|ipv6) vni (vni) udp-src" 1031 " (udp-src) udp-dst (udp-dst) ip-tos (ip-tos) ip-ttl (ip-ttl)" 1032 " ip-src (ip-src) ip-dst (ip-dst) eth-src (eth-src)" 1033 " eth-dst (eth-dst)\n" 1034 " Configure the VXLAN encapsulation for flows.\n\n" 1035 1036 "set nvgre ip-version (ipv4|ipv6) tni (tni) ip-src" 1037 " (ip-src) ip-dst (ip-dst) eth-src (eth-src) eth-dst" 1038 " (eth-dst)\n" 1039 " Configure the NVGRE encapsulation for flows.\n\n" 1040 1041 "set nvgre-with-vlan ip-version (ipv4|ipv6) tni (tni)" 1042 " ip-src (ip-src) ip-dst (ip-dst) vlan-tci (vlan-tci)" 1043 " eth-src (eth-src) eth-dst (eth-dst)\n" 1044 " Configure the NVGRE encapsulation for flows.\n\n" 1045 1046 "set raw_encap {flow items}\n" 1047 " Configure the encapsulation with raw data.\n\n" 1048 1049 "set raw_decap {flow items}\n" 1050 " Configure the decapsulation with raw data.\n\n" 1051 1052 ); 1053 } 1054 1055 if (show_all || !strcmp(res->section, "traffic_management")) { 1056 cmdline_printf( 1057 cl, 1058 "\n" 1059 "Traffic Management:\n" 1060 "--------------\n" 1061 "show port tm cap (port_id)\n" 1062 " Display the port TM capability.\n\n" 1063 1064 "show port tm level cap (port_id) (level_id)\n" 1065 " Display the port TM hierarchical level capability.\n\n" 1066 1067 "show port tm node cap (port_id) (node_id)\n" 1068 " Display the port TM node capability.\n\n" 1069 1070 "show port tm node type (port_id) (node_id)\n" 1071 " Display the port TM node type.\n\n" 1072 1073 "show port tm node stats (port_id) (node_id) (clear)\n" 1074 " Display the port TM node stats.\n\n" 1075 1076 "add port tm node shaper profile (port_id) (shaper_profile_id)" 1077 " (cmit_tb_rate) (cmit_tb_size) (peak_tb_rate) (peak_tb_size)" 1078 " (packet_length_adjust) (packet_mode)\n" 1079 " Add port tm node private shaper profile.\n\n" 1080 1081 "del port tm node shaper profile (port_id) (shaper_profile_id)\n" 1082 " Delete port tm node private shaper profile.\n\n" 1083 1084 "add port tm node shared shaper (port_id) (shared_shaper_id)" 1085 " (shaper_profile_id)\n" 1086 " Add/update port tm node shared shaper.\n\n" 1087 1088 "del port tm node shared shaper (port_id) (shared_shaper_id)\n" 1089 " Delete port tm node shared shaper.\n\n" 1090 1091 "set port tm node shaper profile (port_id) (node_id)" 1092 " (shaper_profile_id)\n" 1093 " Set port tm node shaper profile.\n\n" 1094 1095 "add port tm node wred profile (port_id) (wred_profile_id)" 1096 " (color_g) (min_th_g) (max_th_g) (maxp_inv_g) (wq_log2_g)" 1097 " (color_y) (min_th_y) (max_th_y) (maxp_inv_y) (wq_log2_y)" 1098 " (color_r) (min_th_r) (max_th_r) (maxp_inv_r) (wq_log2_r)\n" 1099 " Add port tm node wred profile.\n\n" 1100 1101 "del port tm node wred profile (port_id) (wred_profile_id)\n" 1102 " Delete port tm node wred profile.\n\n" 1103 1104 "add port tm nonleaf node (port_id) (node_id) (parent_node_id)" 1105 " (priority) (weight) (level_id) (shaper_profile_id)" 1106 " (n_sp_priorities) (stats_mask) (n_shared_shapers)" 1107 " [(shared_shaper_id_0) (shared_shaper_id_1)...]\n" 1108 " Add port tm nonleaf node.\n\n" 1109 1110 "add port tm nonleaf node pktmode (port_id) (node_id) (parent_node_id)" 1111 " (priority) (weight) (level_id) (shaper_profile_id)" 1112 " (n_sp_priorities) (stats_mask) (n_shared_shapers)" 1113 " [(shared_shaper_id_0) (shared_shaper_id_1)...]\n" 1114 " Add port tm nonleaf node with pkt mode enabled.\n\n" 1115 1116 "add port tm leaf node (port_id) (node_id) (parent_node_id)" 1117 " (priority) (weight) (level_id) (shaper_profile_id)" 1118 " (cman_mode) (wred_profile_id) (stats_mask) (n_shared_shapers)" 1119 " [(shared_shaper_id_0) (shared_shaper_id_1)...]\n" 1120 " Add port tm leaf node.\n\n" 1121 1122 "del port tm node (port_id) (node_id)\n" 1123 " Delete port tm node.\n\n" 1124 1125 "set port tm node parent (port_id) (node_id) (parent_node_id)" 1126 " (priority) (weight)\n" 1127 " Set port tm node parent.\n\n" 1128 1129 "suspend port tm node (port_id) (node_id)" 1130 " Suspend tm node.\n\n" 1131 1132 "resume port tm node (port_id) (node_id)" 1133 " Resume tm node.\n\n" 1134 1135 "port tm hierarchy commit (port_id) (clean_on_fail)\n" 1136 " Commit tm hierarchy.\n\n" 1137 1138 "set port tm mark ip_ecn (port) (green) (yellow)" 1139 " (red)\n" 1140 " Enables/Disables the traffic management marking" 1141 " for IP ECN (Explicit Congestion Notification)" 1142 " packets on a given port\n\n" 1143 1144 "set port tm mark ip_dscp (port) (green) (yellow)" 1145 " (red)\n" 1146 " Enables/Disables the traffic management marking" 1147 " on the port for IP dscp packets\n\n" 1148 1149 "set port tm mark vlan_dei (port) (green) (yellow)" 1150 " (red)\n" 1151 " Enables/Disables the traffic management marking" 1152 " on the port for VLAN packets with DEI enabled\n\n" 1153 ); 1154 } 1155 1156 if (show_all || !strcmp(res->section, "devices")) { 1157 cmdline_printf( 1158 cl, 1159 "\n" 1160 "Device Operations:\n" 1161 "--------------\n" 1162 "device detach (identifier)\n" 1163 " Detach device by identifier.\n\n" 1164 ); 1165 } 1166 1167 } 1168 1169 cmdline_parse_token_string_t cmd_help_long_help = 1170 TOKEN_STRING_INITIALIZER(struct cmd_help_long_result, help, "help"); 1171 1172 cmdline_parse_token_string_t cmd_help_long_section = 1173 TOKEN_STRING_INITIALIZER(struct cmd_help_long_result, section, 1174 "all#control#display#config#" 1175 "ports#registers#filters#traffic_management#devices"); 1176 1177 cmdline_parse_inst_t cmd_help_long = { 1178 .f = cmd_help_long_parsed, 1179 .data = NULL, 1180 .help_str = "help all|control|display|config|ports|register|" 1181 "filters|traffic_management|devices: " 1182 "Show help", 1183 .tokens = { 1184 (void *)&cmd_help_long_help, 1185 (void *)&cmd_help_long_section, 1186 NULL, 1187 }, 1188 }; 1189 1190 1191 /* *** start/stop/close all ports *** */ 1192 struct cmd_operate_port_result { 1193 cmdline_fixed_string_t keyword; 1194 cmdline_fixed_string_t name; 1195 cmdline_fixed_string_t value; 1196 }; 1197 1198 static void cmd_operate_port_parsed(void *parsed_result, 1199 __rte_unused struct cmdline *cl, 1200 __rte_unused void *data) 1201 { 1202 struct cmd_operate_port_result *res = parsed_result; 1203 1204 if (!strcmp(res->name, "start")) 1205 start_port(RTE_PORT_ALL); 1206 else if (!strcmp(res->name, "stop")) 1207 stop_port(RTE_PORT_ALL); 1208 else if (!strcmp(res->name, "close")) 1209 close_port(RTE_PORT_ALL); 1210 else if (!strcmp(res->name, "reset")) 1211 reset_port(RTE_PORT_ALL); 1212 else 1213 printf("Unknown parameter\n"); 1214 } 1215 1216 cmdline_parse_token_string_t cmd_operate_port_all_cmd = 1217 TOKEN_STRING_INITIALIZER(struct cmd_operate_port_result, keyword, 1218 "port"); 1219 cmdline_parse_token_string_t cmd_operate_port_all_port = 1220 TOKEN_STRING_INITIALIZER(struct cmd_operate_port_result, name, 1221 "start#stop#close#reset"); 1222 cmdline_parse_token_string_t cmd_operate_port_all_all = 1223 TOKEN_STRING_INITIALIZER(struct cmd_operate_port_result, value, "all"); 1224 1225 cmdline_parse_inst_t cmd_operate_port = { 1226 .f = cmd_operate_port_parsed, 1227 .data = NULL, 1228 .help_str = "port start|stop|close all: Start/Stop/Close/Reset all ports", 1229 .tokens = { 1230 (void *)&cmd_operate_port_all_cmd, 1231 (void *)&cmd_operate_port_all_port, 1232 (void *)&cmd_operate_port_all_all, 1233 NULL, 1234 }, 1235 }; 1236 1237 /* *** start/stop/close specific port *** */ 1238 struct cmd_operate_specific_port_result { 1239 cmdline_fixed_string_t keyword; 1240 cmdline_fixed_string_t name; 1241 uint8_t value; 1242 }; 1243 1244 static void cmd_operate_specific_port_parsed(void *parsed_result, 1245 __rte_unused struct cmdline *cl, 1246 __rte_unused void *data) 1247 { 1248 struct cmd_operate_specific_port_result *res = parsed_result; 1249 1250 if (!strcmp(res->name, "start")) 1251 start_port(res->value); 1252 else if (!strcmp(res->name, "stop")) 1253 stop_port(res->value); 1254 else if (!strcmp(res->name, "close")) 1255 close_port(res->value); 1256 else if (!strcmp(res->name, "reset")) 1257 reset_port(res->value); 1258 else 1259 printf("Unknown parameter\n"); 1260 } 1261 1262 cmdline_parse_token_string_t cmd_operate_specific_port_cmd = 1263 TOKEN_STRING_INITIALIZER(struct cmd_operate_specific_port_result, 1264 keyword, "port"); 1265 cmdline_parse_token_string_t cmd_operate_specific_port_port = 1266 TOKEN_STRING_INITIALIZER(struct cmd_operate_specific_port_result, 1267 name, "start#stop#close#reset"); 1268 cmdline_parse_token_num_t cmd_operate_specific_port_id = 1269 TOKEN_NUM_INITIALIZER(struct cmd_operate_specific_port_result, 1270 value, RTE_UINT8); 1271 1272 cmdline_parse_inst_t cmd_operate_specific_port = { 1273 .f = cmd_operate_specific_port_parsed, 1274 .data = NULL, 1275 .help_str = "port start|stop|close <port_id>: Start/Stop/Close/Reset port_id", 1276 .tokens = { 1277 (void *)&cmd_operate_specific_port_cmd, 1278 (void *)&cmd_operate_specific_port_port, 1279 (void *)&cmd_operate_specific_port_id, 1280 NULL, 1281 }, 1282 }; 1283 1284 /* *** enable port setup (after attach) via iterator or event *** */ 1285 struct cmd_set_port_setup_on_result { 1286 cmdline_fixed_string_t set; 1287 cmdline_fixed_string_t port; 1288 cmdline_fixed_string_t setup; 1289 cmdline_fixed_string_t on; 1290 cmdline_fixed_string_t mode; 1291 }; 1292 1293 static void cmd_set_port_setup_on_parsed(void *parsed_result, 1294 __rte_unused struct cmdline *cl, 1295 __rte_unused void *data) 1296 { 1297 struct cmd_set_port_setup_on_result *res = parsed_result; 1298 1299 if (strcmp(res->mode, "event") == 0) 1300 setup_on_probe_event = true; 1301 else if (strcmp(res->mode, "iterator") == 0) 1302 setup_on_probe_event = false; 1303 else 1304 printf("Unknown mode\n"); 1305 } 1306 1307 cmdline_parse_token_string_t cmd_set_port_setup_on_set = 1308 TOKEN_STRING_INITIALIZER(struct cmd_set_port_setup_on_result, 1309 set, "set"); 1310 cmdline_parse_token_string_t cmd_set_port_setup_on_port = 1311 TOKEN_STRING_INITIALIZER(struct cmd_set_port_setup_on_result, 1312 port, "port"); 1313 cmdline_parse_token_string_t cmd_set_port_setup_on_setup = 1314 TOKEN_STRING_INITIALIZER(struct cmd_set_port_setup_on_result, 1315 setup, "setup"); 1316 cmdline_parse_token_string_t cmd_set_port_setup_on_on = 1317 TOKEN_STRING_INITIALIZER(struct cmd_set_port_setup_on_result, 1318 on, "on"); 1319 cmdline_parse_token_string_t cmd_set_port_setup_on_mode = 1320 TOKEN_STRING_INITIALIZER(struct cmd_set_port_setup_on_result, 1321 mode, "iterator#event"); 1322 1323 cmdline_parse_inst_t cmd_set_port_setup_on = { 1324 .f = cmd_set_port_setup_on_parsed, 1325 .data = NULL, 1326 .help_str = "set port setup on iterator|event", 1327 .tokens = { 1328 (void *)&cmd_set_port_setup_on_set, 1329 (void *)&cmd_set_port_setup_on_port, 1330 (void *)&cmd_set_port_setup_on_setup, 1331 (void *)&cmd_set_port_setup_on_on, 1332 (void *)&cmd_set_port_setup_on_mode, 1333 NULL, 1334 }, 1335 }; 1336 1337 /* *** attach a specified port *** */ 1338 struct cmd_operate_attach_port_result { 1339 cmdline_fixed_string_t port; 1340 cmdline_fixed_string_t keyword; 1341 cmdline_multi_string_t identifier; 1342 }; 1343 1344 static void cmd_operate_attach_port_parsed(void *parsed_result, 1345 __rte_unused struct cmdline *cl, 1346 __rte_unused void *data) 1347 { 1348 struct cmd_operate_attach_port_result *res = parsed_result; 1349 1350 if (!strcmp(res->keyword, "attach")) 1351 attach_port(res->identifier); 1352 else 1353 printf("Unknown parameter\n"); 1354 } 1355 1356 cmdline_parse_token_string_t cmd_operate_attach_port_port = 1357 TOKEN_STRING_INITIALIZER(struct cmd_operate_attach_port_result, 1358 port, "port"); 1359 cmdline_parse_token_string_t cmd_operate_attach_port_keyword = 1360 TOKEN_STRING_INITIALIZER(struct cmd_operate_attach_port_result, 1361 keyword, "attach"); 1362 cmdline_parse_token_string_t cmd_operate_attach_port_identifier = 1363 TOKEN_STRING_INITIALIZER(struct cmd_operate_attach_port_result, 1364 identifier, TOKEN_STRING_MULTI); 1365 1366 cmdline_parse_inst_t cmd_operate_attach_port = { 1367 .f = cmd_operate_attach_port_parsed, 1368 .data = NULL, 1369 .help_str = "port attach <identifier>: " 1370 "(identifier: pci address or virtual dev name)", 1371 .tokens = { 1372 (void *)&cmd_operate_attach_port_port, 1373 (void *)&cmd_operate_attach_port_keyword, 1374 (void *)&cmd_operate_attach_port_identifier, 1375 NULL, 1376 }, 1377 }; 1378 1379 /* *** detach a specified port *** */ 1380 struct cmd_operate_detach_port_result { 1381 cmdline_fixed_string_t port; 1382 cmdline_fixed_string_t keyword; 1383 portid_t port_id; 1384 }; 1385 1386 static void cmd_operate_detach_port_parsed(void *parsed_result, 1387 __rte_unused struct cmdline *cl, 1388 __rte_unused void *data) 1389 { 1390 struct cmd_operate_detach_port_result *res = parsed_result; 1391 1392 if (!strcmp(res->keyword, "detach")) { 1393 RTE_ETH_VALID_PORTID_OR_RET(res->port_id); 1394 detach_port_device(res->port_id); 1395 } else { 1396 printf("Unknown parameter\n"); 1397 } 1398 } 1399 1400 cmdline_parse_token_string_t cmd_operate_detach_port_port = 1401 TOKEN_STRING_INITIALIZER(struct cmd_operate_detach_port_result, 1402 port, "port"); 1403 cmdline_parse_token_string_t cmd_operate_detach_port_keyword = 1404 TOKEN_STRING_INITIALIZER(struct cmd_operate_detach_port_result, 1405 keyword, "detach"); 1406 cmdline_parse_token_num_t cmd_operate_detach_port_port_id = 1407 TOKEN_NUM_INITIALIZER(struct cmd_operate_detach_port_result, 1408 port_id, RTE_UINT16); 1409 1410 cmdline_parse_inst_t cmd_operate_detach_port = { 1411 .f = cmd_operate_detach_port_parsed, 1412 .data = NULL, 1413 .help_str = "port detach <port_id>", 1414 .tokens = { 1415 (void *)&cmd_operate_detach_port_port, 1416 (void *)&cmd_operate_detach_port_keyword, 1417 (void *)&cmd_operate_detach_port_port_id, 1418 NULL, 1419 }, 1420 }; 1421 1422 /* *** detach device by identifier *** */ 1423 struct cmd_operate_detach_device_result { 1424 cmdline_fixed_string_t device; 1425 cmdline_fixed_string_t keyword; 1426 cmdline_fixed_string_t identifier; 1427 }; 1428 1429 static void cmd_operate_detach_device_parsed(void *parsed_result, 1430 __rte_unused struct cmdline *cl, 1431 __rte_unused void *data) 1432 { 1433 struct cmd_operate_detach_device_result *res = parsed_result; 1434 1435 if (!strcmp(res->keyword, "detach")) 1436 detach_devargs(res->identifier); 1437 else 1438 printf("Unknown parameter\n"); 1439 } 1440 1441 cmdline_parse_token_string_t cmd_operate_detach_device_device = 1442 TOKEN_STRING_INITIALIZER(struct cmd_operate_detach_device_result, 1443 device, "device"); 1444 cmdline_parse_token_string_t cmd_operate_detach_device_keyword = 1445 TOKEN_STRING_INITIALIZER(struct cmd_operate_detach_device_result, 1446 keyword, "detach"); 1447 cmdline_parse_token_string_t cmd_operate_detach_device_identifier = 1448 TOKEN_STRING_INITIALIZER(struct cmd_operate_detach_device_result, 1449 identifier, NULL); 1450 1451 cmdline_parse_inst_t cmd_operate_detach_device = { 1452 .f = cmd_operate_detach_device_parsed, 1453 .data = NULL, 1454 .help_str = "device detach <identifier>:" 1455 "(identifier: pci address or virtual dev name)", 1456 .tokens = { 1457 (void *)&cmd_operate_detach_device_device, 1458 (void *)&cmd_operate_detach_device_keyword, 1459 (void *)&cmd_operate_detach_device_identifier, 1460 NULL, 1461 }, 1462 }; 1463 /* *** configure speed for all ports *** */ 1464 struct cmd_config_speed_all { 1465 cmdline_fixed_string_t port; 1466 cmdline_fixed_string_t keyword; 1467 cmdline_fixed_string_t all; 1468 cmdline_fixed_string_t item1; 1469 cmdline_fixed_string_t item2; 1470 cmdline_fixed_string_t value1; 1471 cmdline_fixed_string_t value2; 1472 }; 1473 1474 static int 1475 parse_and_check_speed_duplex(char *speedstr, char *duplexstr, uint32_t *speed) 1476 { 1477 1478 int duplex; 1479 1480 if (!strcmp(duplexstr, "half")) { 1481 duplex = ETH_LINK_HALF_DUPLEX; 1482 } else if (!strcmp(duplexstr, "full")) { 1483 duplex = ETH_LINK_FULL_DUPLEX; 1484 } else if (!strcmp(duplexstr, "auto")) { 1485 duplex = ETH_LINK_FULL_DUPLEX; 1486 } else { 1487 printf("Unknown duplex parameter\n"); 1488 return -1; 1489 } 1490 1491 if (!strcmp(speedstr, "10")) { 1492 *speed = (duplex == ETH_LINK_HALF_DUPLEX) ? 1493 ETH_LINK_SPEED_10M_HD : ETH_LINK_SPEED_10M; 1494 } else if (!strcmp(speedstr, "100")) { 1495 *speed = (duplex == ETH_LINK_HALF_DUPLEX) ? 1496 ETH_LINK_SPEED_100M_HD : ETH_LINK_SPEED_100M; 1497 } else { 1498 if (duplex != ETH_LINK_FULL_DUPLEX) { 1499 printf("Invalid speed/duplex parameters\n"); 1500 return -1; 1501 } 1502 if (!strcmp(speedstr, "1000")) { 1503 *speed = ETH_LINK_SPEED_1G; 1504 } else if (!strcmp(speedstr, "10000")) { 1505 *speed = ETH_LINK_SPEED_10G; 1506 } else if (!strcmp(speedstr, "25000")) { 1507 *speed = ETH_LINK_SPEED_25G; 1508 } else if (!strcmp(speedstr, "40000")) { 1509 *speed = ETH_LINK_SPEED_40G; 1510 } else if (!strcmp(speedstr, "50000")) { 1511 *speed = ETH_LINK_SPEED_50G; 1512 } else if (!strcmp(speedstr, "100000")) { 1513 *speed = ETH_LINK_SPEED_100G; 1514 } else if (!strcmp(speedstr, "200000")) { 1515 *speed = ETH_LINK_SPEED_200G; 1516 } else if (!strcmp(speedstr, "auto")) { 1517 *speed = ETH_LINK_SPEED_AUTONEG; 1518 } else { 1519 printf("Unknown speed parameter\n"); 1520 return -1; 1521 } 1522 } 1523 1524 return 0; 1525 } 1526 1527 static void 1528 cmd_config_speed_all_parsed(void *parsed_result, 1529 __rte_unused struct cmdline *cl, 1530 __rte_unused void *data) 1531 { 1532 struct cmd_config_speed_all *res = parsed_result; 1533 uint32_t link_speed; 1534 portid_t pid; 1535 1536 if (!all_ports_stopped()) { 1537 printf("Please stop all ports first\n"); 1538 return; 1539 } 1540 1541 if (parse_and_check_speed_duplex(res->value1, res->value2, 1542 &link_speed) < 0) 1543 return; 1544 1545 RTE_ETH_FOREACH_DEV(pid) { 1546 ports[pid].dev_conf.link_speeds = link_speed; 1547 } 1548 1549 cmd_reconfig_device_queue(RTE_PORT_ALL, 1, 1); 1550 } 1551 1552 cmdline_parse_token_string_t cmd_config_speed_all_port = 1553 TOKEN_STRING_INITIALIZER(struct cmd_config_speed_all, port, "port"); 1554 cmdline_parse_token_string_t cmd_config_speed_all_keyword = 1555 TOKEN_STRING_INITIALIZER(struct cmd_config_speed_all, keyword, 1556 "config"); 1557 cmdline_parse_token_string_t cmd_config_speed_all_all = 1558 TOKEN_STRING_INITIALIZER(struct cmd_config_speed_all, all, "all"); 1559 cmdline_parse_token_string_t cmd_config_speed_all_item1 = 1560 TOKEN_STRING_INITIALIZER(struct cmd_config_speed_all, item1, "speed"); 1561 cmdline_parse_token_string_t cmd_config_speed_all_value1 = 1562 TOKEN_STRING_INITIALIZER(struct cmd_config_speed_all, value1, 1563 "10#100#1000#10000#25000#40000#50000#100000#200000#auto"); 1564 cmdline_parse_token_string_t cmd_config_speed_all_item2 = 1565 TOKEN_STRING_INITIALIZER(struct cmd_config_speed_all, item2, "duplex"); 1566 cmdline_parse_token_string_t cmd_config_speed_all_value2 = 1567 TOKEN_STRING_INITIALIZER(struct cmd_config_speed_all, value2, 1568 "half#full#auto"); 1569 1570 cmdline_parse_inst_t cmd_config_speed_all = { 1571 .f = cmd_config_speed_all_parsed, 1572 .data = NULL, 1573 .help_str = "port config all speed " 1574 "10|100|1000|10000|25000|40000|50000|100000|200000|auto duplex " 1575 "half|full|auto", 1576 .tokens = { 1577 (void *)&cmd_config_speed_all_port, 1578 (void *)&cmd_config_speed_all_keyword, 1579 (void *)&cmd_config_speed_all_all, 1580 (void *)&cmd_config_speed_all_item1, 1581 (void *)&cmd_config_speed_all_value1, 1582 (void *)&cmd_config_speed_all_item2, 1583 (void *)&cmd_config_speed_all_value2, 1584 NULL, 1585 }, 1586 }; 1587 1588 /* *** configure speed for specific port *** */ 1589 struct cmd_config_speed_specific { 1590 cmdline_fixed_string_t port; 1591 cmdline_fixed_string_t keyword; 1592 portid_t id; 1593 cmdline_fixed_string_t item1; 1594 cmdline_fixed_string_t item2; 1595 cmdline_fixed_string_t value1; 1596 cmdline_fixed_string_t value2; 1597 }; 1598 1599 static void 1600 cmd_config_speed_specific_parsed(void *parsed_result, 1601 __rte_unused struct cmdline *cl, 1602 __rte_unused void *data) 1603 { 1604 struct cmd_config_speed_specific *res = parsed_result; 1605 uint32_t link_speed; 1606 1607 if (!all_ports_stopped()) { 1608 printf("Please stop all ports first\n"); 1609 return; 1610 } 1611 1612 if (port_id_is_invalid(res->id, ENABLED_WARN)) 1613 return; 1614 1615 if (parse_and_check_speed_duplex(res->value1, res->value2, 1616 &link_speed) < 0) 1617 return; 1618 1619 ports[res->id].dev_conf.link_speeds = link_speed; 1620 1621 cmd_reconfig_device_queue(RTE_PORT_ALL, 1, 1); 1622 } 1623 1624 1625 cmdline_parse_token_string_t cmd_config_speed_specific_port = 1626 TOKEN_STRING_INITIALIZER(struct cmd_config_speed_specific, port, 1627 "port"); 1628 cmdline_parse_token_string_t cmd_config_speed_specific_keyword = 1629 TOKEN_STRING_INITIALIZER(struct cmd_config_speed_specific, keyword, 1630 "config"); 1631 cmdline_parse_token_num_t cmd_config_speed_specific_id = 1632 TOKEN_NUM_INITIALIZER(struct cmd_config_speed_specific, id, RTE_UINT16); 1633 cmdline_parse_token_string_t cmd_config_speed_specific_item1 = 1634 TOKEN_STRING_INITIALIZER(struct cmd_config_speed_specific, item1, 1635 "speed"); 1636 cmdline_parse_token_string_t cmd_config_speed_specific_value1 = 1637 TOKEN_STRING_INITIALIZER(struct cmd_config_speed_specific, value1, 1638 "10#100#1000#10000#25000#40000#50000#100000#200000#auto"); 1639 cmdline_parse_token_string_t cmd_config_speed_specific_item2 = 1640 TOKEN_STRING_INITIALIZER(struct cmd_config_speed_specific, item2, 1641 "duplex"); 1642 cmdline_parse_token_string_t cmd_config_speed_specific_value2 = 1643 TOKEN_STRING_INITIALIZER(struct cmd_config_speed_specific, value2, 1644 "half#full#auto"); 1645 1646 cmdline_parse_inst_t cmd_config_speed_specific = { 1647 .f = cmd_config_speed_specific_parsed, 1648 .data = NULL, 1649 .help_str = "port config <port_id> speed " 1650 "10|100|1000|10000|25000|40000|50000|100000|200000|auto duplex " 1651 "half|full|auto", 1652 .tokens = { 1653 (void *)&cmd_config_speed_specific_port, 1654 (void *)&cmd_config_speed_specific_keyword, 1655 (void *)&cmd_config_speed_specific_id, 1656 (void *)&cmd_config_speed_specific_item1, 1657 (void *)&cmd_config_speed_specific_value1, 1658 (void *)&cmd_config_speed_specific_item2, 1659 (void *)&cmd_config_speed_specific_value2, 1660 NULL, 1661 }, 1662 }; 1663 1664 /* *** configure loopback for all ports *** */ 1665 struct cmd_config_loopback_all { 1666 cmdline_fixed_string_t port; 1667 cmdline_fixed_string_t keyword; 1668 cmdline_fixed_string_t all; 1669 cmdline_fixed_string_t item; 1670 uint32_t mode; 1671 }; 1672 1673 static void 1674 cmd_config_loopback_all_parsed(void *parsed_result, 1675 __rte_unused struct cmdline *cl, 1676 __rte_unused void *data) 1677 { 1678 struct cmd_config_loopback_all *res = parsed_result; 1679 portid_t pid; 1680 1681 if (!all_ports_stopped()) { 1682 printf("Please stop all ports first\n"); 1683 return; 1684 } 1685 1686 RTE_ETH_FOREACH_DEV(pid) { 1687 ports[pid].dev_conf.lpbk_mode = res->mode; 1688 } 1689 1690 cmd_reconfig_device_queue(RTE_PORT_ALL, 1, 1); 1691 } 1692 1693 cmdline_parse_token_string_t cmd_config_loopback_all_port = 1694 TOKEN_STRING_INITIALIZER(struct cmd_config_loopback_all, port, "port"); 1695 cmdline_parse_token_string_t cmd_config_loopback_all_keyword = 1696 TOKEN_STRING_INITIALIZER(struct cmd_config_loopback_all, keyword, 1697 "config"); 1698 cmdline_parse_token_string_t cmd_config_loopback_all_all = 1699 TOKEN_STRING_INITIALIZER(struct cmd_config_loopback_all, all, "all"); 1700 cmdline_parse_token_string_t cmd_config_loopback_all_item = 1701 TOKEN_STRING_INITIALIZER(struct cmd_config_loopback_all, item, 1702 "loopback"); 1703 cmdline_parse_token_num_t cmd_config_loopback_all_mode = 1704 TOKEN_NUM_INITIALIZER(struct cmd_config_loopback_all, mode, RTE_UINT32); 1705 1706 cmdline_parse_inst_t cmd_config_loopback_all = { 1707 .f = cmd_config_loopback_all_parsed, 1708 .data = NULL, 1709 .help_str = "port config all loopback <mode>", 1710 .tokens = { 1711 (void *)&cmd_config_loopback_all_port, 1712 (void *)&cmd_config_loopback_all_keyword, 1713 (void *)&cmd_config_loopback_all_all, 1714 (void *)&cmd_config_loopback_all_item, 1715 (void *)&cmd_config_loopback_all_mode, 1716 NULL, 1717 }, 1718 }; 1719 1720 /* *** configure loopback for specific port *** */ 1721 struct cmd_config_loopback_specific { 1722 cmdline_fixed_string_t port; 1723 cmdline_fixed_string_t keyword; 1724 uint16_t port_id; 1725 cmdline_fixed_string_t item; 1726 uint32_t mode; 1727 }; 1728 1729 static void 1730 cmd_config_loopback_specific_parsed(void *parsed_result, 1731 __rte_unused struct cmdline *cl, 1732 __rte_unused void *data) 1733 { 1734 struct cmd_config_loopback_specific *res = parsed_result; 1735 1736 if (port_id_is_invalid(res->port_id, ENABLED_WARN)) 1737 return; 1738 1739 if (!port_is_stopped(res->port_id)) { 1740 printf("Please stop port %u first\n", res->port_id); 1741 return; 1742 } 1743 1744 ports[res->port_id].dev_conf.lpbk_mode = res->mode; 1745 1746 cmd_reconfig_device_queue(res->port_id, 1, 1); 1747 } 1748 1749 1750 cmdline_parse_token_string_t cmd_config_loopback_specific_port = 1751 TOKEN_STRING_INITIALIZER(struct cmd_config_loopback_specific, port, 1752 "port"); 1753 cmdline_parse_token_string_t cmd_config_loopback_specific_keyword = 1754 TOKEN_STRING_INITIALIZER(struct cmd_config_loopback_specific, keyword, 1755 "config"); 1756 cmdline_parse_token_num_t cmd_config_loopback_specific_id = 1757 TOKEN_NUM_INITIALIZER(struct cmd_config_loopback_specific, port_id, 1758 RTE_UINT16); 1759 cmdline_parse_token_string_t cmd_config_loopback_specific_item = 1760 TOKEN_STRING_INITIALIZER(struct cmd_config_loopback_specific, item, 1761 "loopback"); 1762 cmdline_parse_token_num_t cmd_config_loopback_specific_mode = 1763 TOKEN_NUM_INITIALIZER(struct cmd_config_loopback_specific, mode, 1764 RTE_UINT32); 1765 1766 cmdline_parse_inst_t cmd_config_loopback_specific = { 1767 .f = cmd_config_loopback_specific_parsed, 1768 .data = NULL, 1769 .help_str = "port config <port_id> loopback <mode>", 1770 .tokens = { 1771 (void *)&cmd_config_loopback_specific_port, 1772 (void *)&cmd_config_loopback_specific_keyword, 1773 (void *)&cmd_config_loopback_specific_id, 1774 (void *)&cmd_config_loopback_specific_item, 1775 (void *)&cmd_config_loopback_specific_mode, 1776 NULL, 1777 }, 1778 }; 1779 1780 /* *** configure txq/rxq, txd/rxd *** */ 1781 struct cmd_config_rx_tx { 1782 cmdline_fixed_string_t port; 1783 cmdline_fixed_string_t keyword; 1784 cmdline_fixed_string_t all; 1785 cmdline_fixed_string_t name; 1786 uint16_t value; 1787 }; 1788 1789 static void 1790 cmd_config_rx_tx_parsed(void *parsed_result, 1791 __rte_unused struct cmdline *cl, 1792 __rte_unused void *data) 1793 { 1794 struct cmd_config_rx_tx *res = parsed_result; 1795 1796 if (!all_ports_stopped()) { 1797 printf("Please stop all ports first\n"); 1798 return; 1799 } 1800 if (!strcmp(res->name, "rxq")) { 1801 if (!res->value && !nb_txq) { 1802 printf("Warning: Either rx or tx queues should be non zero\n"); 1803 return; 1804 } 1805 if (check_nb_rxq(res->value) != 0) 1806 return; 1807 nb_rxq = res->value; 1808 } 1809 else if (!strcmp(res->name, "txq")) { 1810 if (!res->value && !nb_rxq) { 1811 printf("Warning: Either rx or tx queues should be non zero\n"); 1812 return; 1813 } 1814 if (check_nb_txq(res->value) != 0) 1815 return; 1816 nb_txq = res->value; 1817 } 1818 else if (!strcmp(res->name, "rxd")) { 1819 if (check_nb_rxd(res->value) != 0) 1820 return; 1821 nb_rxd = res->value; 1822 } else if (!strcmp(res->name, "txd")) { 1823 if (check_nb_txd(res->value) != 0) 1824 return; 1825 1826 nb_txd = res->value; 1827 } else { 1828 printf("Unknown parameter\n"); 1829 return; 1830 } 1831 1832 fwd_config_setup(); 1833 1834 init_port_config(); 1835 1836 cmd_reconfig_device_queue(RTE_PORT_ALL, 1, 1); 1837 } 1838 1839 cmdline_parse_token_string_t cmd_config_rx_tx_port = 1840 TOKEN_STRING_INITIALIZER(struct cmd_config_rx_tx, port, "port"); 1841 cmdline_parse_token_string_t cmd_config_rx_tx_keyword = 1842 TOKEN_STRING_INITIALIZER(struct cmd_config_rx_tx, keyword, "config"); 1843 cmdline_parse_token_string_t cmd_config_rx_tx_all = 1844 TOKEN_STRING_INITIALIZER(struct cmd_config_rx_tx, all, "all"); 1845 cmdline_parse_token_string_t cmd_config_rx_tx_name = 1846 TOKEN_STRING_INITIALIZER(struct cmd_config_rx_tx, name, 1847 "rxq#txq#rxd#txd"); 1848 cmdline_parse_token_num_t cmd_config_rx_tx_value = 1849 TOKEN_NUM_INITIALIZER(struct cmd_config_rx_tx, value, RTE_UINT16); 1850 1851 cmdline_parse_inst_t cmd_config_rx_tx = { 1852 .f = cmd_config_rx_tx_parsed, 1853 .data = NULL, 1854 .help_str = "port config all rxq|txq|rxd|txd <value>", 1855 .tokens = { 1856 (void *)&cmd_config_rx_tx_port, 1857 (void *)&cmd_config_rx_tx_keyword, 1858 (void *)&cmd_config_rx_tx_all, 1859 (void *)&cmd_config_rx_tx_name, 1860 (void *)&cmd_config_rx_tx_value, 1861 NULL, 1862 }, 1863 }; 1864 1865 /* *** config max packet length *** */ 1866 struct cmd_config_max_pkt_len_result { 1867 cmdline_fixed_string_t port; 1868 cmdline_fixed_string_t keyword; 1869 cmdline_fixed_string_t all; 1870 cmdline_fixed_string_t name; 1871 uint32_t value; 1872 }; 1873 1874 static void 1875 cmd_config_max_pkt_len_parsed(void *parsed_result, 1876 __rte_unused struct cmdline *cl, 1877 __rte_unused void *data) 1878 { 1879 struct cmd_config_max_pkt_len_result *res = parsed_result; 1880 portid_t pid; 1881 1882 if (!all_ports_stopped()) { 1883 printf("Please stop all ports first\n"); 1884 return; 1885 } 1886 1887 RTE_ETH_FOREACH_DEV(pid) { 1888 struct rte_port *port = &ports[pid]; 1889 uint64_t rx_offloads = port->dev_conf.rxmode.offloads; 1890 1891 if (!strcmp(res->name, "max-pkt-len")) { 1892 if (res->value < RTE_ETHER_MIN_LEN) { 1893 printf("max-pkt-len can not be less than %d\n", 1894 RTE_ETHER_MIN_LEN); 1895 return; 1896 } 1897 if (res->value == port->dev_conf.rxmode.max_rx_pkt_len) 1898 return; 1899 1900 port->dev_conf.rxmode.max_rx_pkt_len = res->value; 1901 if (res->value > RTE_ETHER_MAX_LEN) 1902 rx_offloads |= DEV_RX_OFFLOAD_JUMBO_FRAME; 1903 else 1904 rx_offloads &= ~DEV_RX_OFFLOAD_JUMBO_FRAME; 1905 port->dev_conf.rxmode.offloads = rx_offloads; 1906 } else { 1907 printf("Unknown parameter\n"); 1908 return; 1909 } 1910 } 1911 1912 init_port_config(); 1913 1914 cmd_reconfig_device_queue(RTE_PORT_ALL, 1, 1); 1915 } 1916 1917 cmdline_parse_token_string_t cmd_config_max_pkt_len_port = 1918 TOKEN_STRING_INITIALIZER(struct cmd_config_max_pkt_len_result, port, 1919 "port"); 1920 cmdline_parse_token_string_t cmd_config_max_pkt_len_keyword = 1921 TOKEN_STRING_INITIALIZER(struct cmd_config_max_pkt_len_result, keyword, 1922 "config"); 1923 cmdline_parse_token_string_t cmd_config_max_pkt_len_all = 1924 TOKEN_STRING_INITIALIZER(struct cmd_config_max_pkt_len_result, all, 1925 "all"); 1926 cmdline_parse_token_string_t cmd_config_max_pkt_len_name = 1927 TOKEN_STRING_INITIALIZER(struct cmd_config_max_pkt_len_result, name, 1928 "max-pkt-len"); 1929 cmdline_parse_token_num_t cmd_config_max_pkt_len_value = 1930 TOKEN_NUM_INITIALIZER(struct cmd_config_max_pkt_len_result, value, 1931 RTE_UINT32); 1932 1933 cmdline_parse_inst_t cmd_config_max_pkt_len = { 1934 .f = cmd_config_max_pkt_len_parsed, 1935 .data = NULL, 1936 .help_str = "port config all max-pkt-len <value>", 1937 .tokens = { 1938 (void *)&cmd_config_max_pkt_len_port, 1939 (void *)&cmd_config_max_pkt_len_keyword, 1940 (void *)&cmd_config_max_pkt_len_all, 1941 (void *)&cmd_config_max_pkt_len_name, 1942 (void *)&cmd_config_max_pkt_len_value, 1943 NULL, 1944 }, 1945 }; 1946 1947 /* *** config max LRO aggregated packet size *** */ 1948 struct cmd_config_max_lro_pkt_size_result { 1949 cmdline_fixed_string_t port; 1950 cmdline_fixed_string_t keyword; 1951 cmdline_fixed_string_t all; 1952 cmdline_fixed_string_t name; 1953 uint32_t value; 1954 }; 1955 1956 static void 1957 cmd_config_max_lro_pkt_size_parsed(void *parsed_result, 1958 __rte_unused struct cmdline *cl, 1959 __rte_unused void *data) 1960 { 1961 struct cmd_config_max_lro_pkt_size_result *res = parsed_result; 1962 portid_t pid; 1963 1964 if (!all_ports_stopped()) { 1965 printf("Please stop all ports first\n"); 1966 return; 1967 } 1968 1969 RTE_ETH_FOREACH_DEV(pid) { 1970 struct rte_port *port = &ports[pid]; 1971 1972 if (!strcmp(res->name, "max-lro-pkt-size")) { 1973 if (res->value == 1974 port->dev_conf.rxmode.max_lro_pkt_size) 1975 return; 1976 1977 port->dev_conf.rxmode.max_lro_pkt_size = res->value; 1978 } else { 1979 printf("Unknown parameter\n"); 1980 return; 1981 } 1982 } 1983 1984 init_port_config(); 1985 1986 cmd_reconfig_device_queue(RTE_PORT_ALL, 1, 1); 1987 } 1988 1989 cmdline_parse_token_string_t cmd_config_max_lro_pkt_size_port = 1990 TOKEN_STRING_INITIALIZER(struct cmd_config_max_lro_pkt_size_result, 1991 port, "port"); 1992 cmdline_parse_token_string_t cmd_config_max_lro_pkt_size_keyword = 1993 TOKEN_STRING_INITIALIZER(struct cmd_config_max_lro_pkt_size_result, 1994 keyword, "config"); 1995 cmdline_parse_token_string_t cmd_config_max_lro_pkt_size_all = 1996 TOKEN_STRING_INITIALIZER(struct cmd_config_max_lro_pkt_size_result, 1997 all, "all"); 1998 cmdline_parse_token_string_t cmd_config_max_lro_pkt_size_name = 1999 TOKEN_STRING_INITIALIZER(struct cmd_config_max_lro_pkt_size_result, 2000 name, "max-lro-pkt-size"); 2001 cmdline_parse_token_num_t cmd_config_max_lro_pkt_size_value = 2002 TOKEN_NUM_INITIALIZER(struct cmd_config_max_lro_pkt_size_result, 2003 value, RTE_UINT32); 2004 2005 cmdline_parse_inst_t cmd_config_max_lro_pkt_size = { 2006 .f = cmd_config_max_lro_pkt_size_parsed, 2007 .data = NULL, 2008 .help_str = "port config all max-lro-pkt-size <value>", 2009 .tokens = { 2010 (void *)&cmd_config_max_lro_pkt_size_port, 2011 (void *)&cmd_config_max_lro_pkt_size_keyword, 2012 (void *)&cmd_config_max_lro_pkt_size_all, 2013 (void *)&cmd_config_max_lro_pkt_size_name, 2014 (void *)&cmd_config_max_lro_pkt_size_value, 2015 NULL, 2016 }, 2017 }; 2018 2019 /* *** configure port MTU *** */ 2020 struct cmd_config_mtu_result { 2021 cmdline_fixed_string_t port; 2022 cmdline_fixed_string_t keyword; 2023 cmdline_fixed_string_t mtu; 2024 portid_t port_id; 2025 uint16_t value; 2026 }; 2027 2028 static void 2029 cmd_config_mtu_parsed(void *parsed_result, 2030 __rte_unused struct cmdline *cl, 2031 __rte_unused void *data) 2032 { 2033 struct cmd_config_mtu_result *res = parsed_result; 2034 2035 if (res->value < RTE_ETHER_MIN_LEN) { 2036 printf("mtu cannot be less than %d\n", RTE_ETHER_MIN_LEN); 2037 return; 2038 } 2039 port_mtu_set(res->port_id, res->value); 2040 } 2041 2042 cmdline_parse_token_string_t cmd_config_mtu_port = 2043 TOKEN_STRING_INITIALIZER(struct cmd_config_mtu_result, port, 2044 "port"); 2045 cmdline_parse_token_string_t cmd_config_mtu_keyword = 2046 TOKEN_STRING_INITIALIZER(struct cmd_config_mtu_result, keyword, 2047 "config"); 2048 cmdline_parse_token_string_t cmd_config_mtu_mtu = 2049 TOKEN_STRING_INITIALIZER(struct cmd_config_mtu_result, keyword, 2050 "mtu"); 2051 cmdline_parse_token_num_t cmd_config_mtu_port_id = 2052 TOKEN_NUM_INITIALIZER(struct cmd_config_mtu_result, port_id, 2053 RTE_UINT16); 2054 cmdline_parse_token_num_t cmd_config_mtu_value = 2055 TOKEN_NUM_INITIALIZER(struct cmd_config_mtu_result, value, 2056 RTE_UINT16); 2057 2058 cmdline_parse_inst_t cmd_config_mtu = { 2059 .f = cmd_config_mtu_parsed, 2060 .data = NULL, 2061 .help_str = "port config mtu <port_id> <value>", 2062 .tokens = { 2063 (void *)&cmd_config_mtu_port, 2064 (void *)&cmd_config_mtu_keyword, 2065 (void *)&cmd_config_mtu_mtu, 2066 (void *)&cmd_config_mtu_port_id, 2067 (void *)&cmd_config_mtu_value, 2068 NULL, 2069 }, 2070 }; 2071 2072 /* *** configure rx mode *** */ 2073 struct cmd_config_rx_mode_flag { 2074 cmdline_fixed_string_t port; 2075 cmdline_fixed_string_t keyword; 2076 cmdline_fixed_string_t all; 2077 cmdline_fixed_string_t name; 2078 cmdline_fixed_string_t value; 2079 }; 2080 2081 static void 2082 cmd_config_rx_mode_flag_parsed(void *parsed_result, 2083 __rte_unused struct cmdline *cl, 2084 __rte_unused void *data) 2085 { 2086 struct cmd_config_rx_mode_flag *res = parsed_result; 2087 2088 if (!all_ports_stopped()) { 2089 printf("Please stop all ports first\n"); 2090 return; 2091 } 2092 2093 if (!strcmp(res->name, "drop-en")) { 2094 if (!strcmp(res->value, "on")) 2095 rx_drop_en = 1; 2096 else if (!strcmp(res->value, "off")) 2097 rx_drop_en = 0; 2098 else { 2099 printf("Unknown parameter\n"); 2100 return; 2101 } 2102 } else { 2103 printf("Unknown parameter\n"); 2104 return; 2105 } 2106 2107 init_port_config(); 2108 2109 cmd_reconfig_device_queue(RTE_PORT_ALL, 1, 1); 2110 } 2111 2112 cmdline_parse_token_string_t cmd_config_rx_mode_flag_port = 2113 TOKEN_STRING_INITIALIZER(struct cmd_config_rx_mode_flag, port, "port"); 2114 cmdline_parse_token_string_t cmd_config_rx_mode_flag_keyword = 2115 TOKEN_STRING_INITIALIZER(struct cmd_config_rx_mode_flag, keyword, 2116 "config"); 2117 cmdline_parse_token_string_t cmd_config_rx_mode_flag_all = 2118 TOKEN_STRING_INITIALIZER(struct cmd_config_rx_mode_flag, all, "all"); 2119 cmdline_parse_token_string_t cmd_config_rx_mode_flag_name = 2120 TOKEN_STRING_INITIALIZER(struct cmd_config_rx_mode_flag, name, 2121 "drop-en"); 2122 cmdline_parse_token_string_t cmd_config_rx_mode_flag_value = 2123 TOKEN_STRING_INITIALIZER(struct cmd_config_rx_mode_flag, value, 2124 "on#off"); 2125 2126 cmdline_parse_inst_t cmd_config_rx_mode_flag = { 2127 .f = cmd_config_rx_mode_flag_parsed, 2128 .data = NULL, 2129 .help_str = "port config all drop-en on|off", 2130 .tokens = { 2131 (void *)&cmd_config_rx_mode_flag_port, 2132 (void *)&cmd_config_rx_mode_flag_keyword, 2133 (void *)&cmd_config_rx_mode_flag_all, 2134 (void *)&cmd_config_rx_mode_flag_name, 2135 (void *)&cmd_config_rx_mode_flag_value, 2136 NULL, 2137 }, 2138 }; 2139 2140 /* *** configure rss *** */ 2141 struct cmd_config_rss { 2142 cmdline_fixed_string_t port; 2143 cmdline_fixed_string_t keyword; 2144 cmdline_fixed_string_t all; 2145 cmdline_fixed_string_t name; 2146 cmdline_fixed_string_t value; 2147 }; 2148 2149 static void 2150 cmd_config_rss_parsed(void *parsed_result, 2151 __rte_unused struct cmdline *cl, 2152 __rte_unused void *data) 2153 { 2154 struct cmd_config_rss *res = parsed_result; 2155 struct rte_eth_rss_conf rss_conf = { .rss_key_len = 0, }; 2156 struct rte_eth_dev_info dev_info = { .flow_type_rss_offloads = 0, }; 2157 int use_default = 0; 2158 int all_updated = 1; 2159 int diag; 2160 uint16_t i; 2161 int ret; 2162 2163 if (!strcmp(res->value, "all")) 2164 rss_conf.rss_hf = ETH_RSS_ETH | ETH_RSS_VLAN | ETH_RSS_IP | 2165 ETH_RSS_TCP | ETH_RSS_UDP | ETH_RSS_SCTP | 2166 ETH_RSS_L2_PAYLOAD | ETH_RSS_L2TPV3 | ETH_RSS_ESP | 2167 ETH_RSS_AH | ETH_RSS_PFCP | ETH_RSS_GTPU | 2168 ETH_RSS_ECPRI; 2169 else if (!strcmp(res->value, "eth")) 2170 rss_conf.rss_hf = ETH_RSS_ETH; 2171 else if (!strcmp(res->value, "vlan")) 2172 rss_conf.rss_hf = ETH_RSS_VLAN; 2173 else if (!strcmp(res->value, "ip")) 2174 rss_conf.rss_hf = ETH_RSS_IP; 2175 else if (!strcmp(res->value, "udp")) 2176 rss_conf.rss_hf = ETH_RSS_UDP; 2177 else if (!strcmp(res->value, "tcp")) 2178 rss_conf.rss_hf = ETH_RSS_TCP; 2179 else if (!strcmp(res->value, "sctp")) 2180 rss_conf.rss_hf = ETH_RSS_SCTP; 2181 else if (!strcmp(res->value, "ether")) 2182 rss_conf.rss_hf = ETH_RSS_L2_PAYLOAD; 2183 else if (!strcmp(res->value, "port")) 2184 rss_conf.rss_hf = ETH_RSS_PORT; 2185 else if (!strcmp(res->value, "vxlan")) 2186 rss_conf.rss_hf = ETH_RSS_VXLAN; 2187 else if (!strcmp(res->value, "geneve")) 2188 rss_conf.rss_hf = ETH_RSS_GENEVE; 2189 else if (!strcmp(res->value, "nvgre")) 2190 rss_conf.rss_hf = ETH_RSS_NVGRE; 2191 else if (!strcmp(res->value, "l3-pre32")) 2192 rss_conf.rss_hf = RTE_ETH_RSS_L3_PRE32; 2193 else if (!strcmp(res->value, "l3-pre40")) 2194 rss_conf.rss_hf = RTE_ETH_RSS_L3_PRE40; 2195 else if (!strcmp(res->value, "l3-pre48")) 2196 rss_conf.rss_hf = RTE_ETH_RSS_L3_PRE48; 2197 else if (!strcmp(res->value, "l3-pre56")) 2198 rss_conf.rss_hf = RTE_ETH_RSS_L3_PRE56; 2199 else if (!strcmp(res->value, "l3-pre64")) 2200 rss_conf.rss_hf = RTE_ETH_RSS_L3_PRE64; 2201 else if (!strcmp(res->value, "l3-pre96")) 2202 rss_conf.rss_hf = RTE_ETH_RSS_L3_PRE96; 2203 else if (!strcmp(res->value, "l3-src-only")) 2204 rss_conf.rss_hf = ETH_RSS_L3_SRC_ONLY; 2205 else if (!strcmp(res->value, "l3-dst-only")) 2206 rss_conf.rss_hf = ETH_RSS_L3_DST_ONLY; 2207 else if (!strcmp(res->value, "l4-src-only")) 2208 rss_conf.rss_hf = ETH_RSS_L4_SRC_ONLY; 2209 else if (!strcmp(res->value, "l4-dst-only")) 2210 rss_conf.rss_hf = ETH_RSS_L4_DST_ONLY; 2211 else if (!strcmp(res->value, "l2-src-only")) 2212 rss_conf.rss_hf = ETH_RSS_L2_SRC_ONLY; 2213 else if (!strcmp(res->value, "l2-dst-only")) 2214 rss_conf.rss_hf = ETH_RSS_L2_DST_ONLY; 2215 else if (!strcmp(res->value, "l2tpv3")) 2216 rss_conf.rss_hf = ETH_RSS_L2TPV3; 2217 else if (!strcmp(res->value, "esp")) 2218 rss_conf.rss_hf = ETH_RSS_ESP; 2219 else if (!strcmp(res->value, "ah")) 2220 rss_conf.rss_hf = ETH_RSS_AH; 2221 else if (!strcmp(res->value, "pfcp")) 2222 rss_conf.rss_hf = ETH_RSS_PFCP; 2223 else if (!strcmp(res->value, "pppoe")) 2224 rss_conf.rss_hf = ETH_RSS_PPPOE; 2225 else if (!strcmp(res->value, "gtpu")) 2226 rss_conf.rss_hf = ETH_RSS_GTPU; 2227 else if (!strcmp(res->value, "ecpri")) 2228 rss_conf.rss_hf = ETH_RSS_ECPRI; 2229 else if (!strcmp(res->value, "none")) 2230 rss_conf.rss_hf = 0; 2231 else if (!strcmp(res->value, "level-default")) { 2232 rss_hf &= (~ETH_RSS_LEVEL_MASK); 2233 rss_conf.rss_hf = (rss_hf | ETH_RSS_LEVEL_PMD_DEFAULT); 2234 } else if (!strcmp(res->value, "level-outer")) { 2235 rss_hf &= (~ETH_RSS_LEVEL_MASK); 2236 rss_conf.rss_hf = (rss_hf | ETH_RSS_LEVEL_OUTERMOST); 2237 } else if (!strcmp(res->value, "level-inner")) { 2238 rss_hf &= (~ETH_RSS_LEVEL_MASK); 2239 rss_conf.rss_hf = (rss_hf | ETH_RSS_LEVEL_INNERMOST); 2240 } else if (!strcmp(res->value, "default")) 2241 use_default = 1; 2242 else if (isdigit(res->value[0]) && atoi(res->value) > 0 && 2243 atoi(res->value) < 64) 2244 rss_conf.rss_hf = 1ULL << atoi(res->value); 2245 else { 2246 printf("Unknown parameter\n"); 2247 return; 2248 } 2249 rss_conf.rss_key = NULL; 2250 /* Update global configuration for RSS types. */ 2251 RTE_ETH_FOREACH_DEV(i) { 2252 struct rte_eth_rss_conf local_rss_conf; 2253 2254 ret = eth_dev_info_get_print_err(i, &dev_info); 2255 if (ret != 0) 2256 return; 2257 2258 if (use_default) 2259 rss_conf.rss_hf = dev_info.flow_type_rss_offloads; 2260 2261 local_rss_conf = rss_conf; 2262 local_rss_conf.rss_hf = rss_conf.rss_hf & 2263 dev_info.flow_type_rss_offloads; 2264 if (local_rss_conf.rss_hf != rss_conf.rss_hf) { 2265 printf("Port %u modified RSS hash function based on hardware support," 2266 "requested:%#"PRIx64" configured:%#"PRIx64"\n", 2267 i, rss_conf.rss_hf, local_rss_conf.rss_hf); 2268 } 2269 diag = rte_eth_dev_rss_hash_update(i, &local_rss_conf); 2270 if (diag < 0) { 2271 all_updated = 0; 2272 printf("Configuration of RSS hash at ethernet port %d " 2273 "failed with error (%d): %s.\n", 2274 i, -diag, strerror(-diag)); 2275 } 2276 } 2277 if (all_updated && !use_default) { 2278 rss_hf = rss_conf.rss_hf; 2279 printf("rss_hf %#"PRIx64"\n", rss_hf); 2280 } 2281 } 2282 2283 cmdline_parse_token_string_t cmd_config_rss_port = 2284 TOKEN_STRING_INITIALIZER(struct cmd_config_rss, port, "port"); 2285 cmdline_parse_token_string_t cmd_config_rss_keyword = 2286 TOKEN_STRING_INITIALIZER(struct cmd_config_rss, keyword, "config"); 2287 cmdline_parse_token_string_t cmd_config_rss_all = 2288 TOKEN_STRING_INITIALIZER(struct cmd_config_rss, all, "all"); 2289 cmdline_parse_token_string_t cmd_config_rss_name = 2290 TOKEN_STRING_INITIALIZER(struct cmd_config_rss, name, "rss"); 2291 cmdline_parse_token_string_t cmd_config_rss_value = 2292 TOKEN_STRING_INITIALIZER(struct cmd_config_rss, value, NULL); 2293 2294 cmdline_parse_inst_t cmd_config_rss = { 2295 .f = cmd_config_rss_parsed, 2296 .data = NULL, 2297 .help_str = "port config all rss " 2298 "all|default|eth|vlan|ip|tcp|udp|sctp|ether|port|vxlan|geneve|" 2299 "nvgre|vxlan-gpe|l2tpv3|esp|ah|pfcp|ecpri|none|level-default|" 2300 "level-outer|level-inner|<flowtype_id>", 2301 .tokens = { 2302 (void *)&cmd_config_rss_port, 2303 (void *)&cmd_config_rss_keyword, 2304 (void *)&cmd_config_rss_all, 2305 (void *)&cmd_config_rss_name, 2306 (void *)&cmd_config_rss_value, 2307 NULL, 2308 }, 2309 }; 2310 2311 /* *** configure rss hash key *** */ 2312 struct cmd_config_rss_hash_key { 2313 cmdline_fixed_string_t port; 2314 cmdline_fixed_string_t config; 2315 portid_t port_id; 2316 cmdline_fixed_string_t rss_hash_key; 2317 cmdline_fixed_string_t rss_type; 2318 cmdline_fixed_string_t key; 2319 }; 2320 2321 static uint8_t 2322 hexa_digit_to_value(char hexa_digit) 2323 { 2324 if ((hexa_digit >= '0') && (hexa_digit <= '9')) 2325 return (uint8_t) (hexa_digit - '0'); 2326 if ((hexa_digit >= 'a') && (hexa_digit <= 'f')) 2327 return (uint8_t) ((hexa_digit - 'a') + 10); 2328 if ((hexa_digit >= 'A') && (hexa_digit <= 'F')) 2329 return (uint8_t) ((hexa_digit - 'A') + 10); 2330 /* Invalid hexa digit */ 2331 return 0xFF; 2332 } 2333 2334 static uint8_t 2335 parse_and_check_key_hexa_digit(char *key, int idx) 2336 { 2337 uint8_t hexa_v; 2338 2339 hexa_v = hexa_digit_to_value(key[idx]); 2340 if (hexa_v == 0xFF) 2341 printf("invalid key: character %c at position %d is not a " 2342 "valid hexa digit\n", key[idx], idx); 2343 return hexa_v; 2344 } 2345 2346 static void 2347 cmd_config_rss_hash_key_parsed(void *parsed_result, 2348 __rte_unused struct cmdline *cl, 2349 __rte_unused void *data) 2350 { 2351 struct cmd_config_rss_hash_key *res = parsed_result; 2352 uint8_t hash_key[RSS_HASH_KEY_LENGTH]; 2353 uint8_t xdgt0; 2354 uint8_t xdgt1; 2355 int i; 2356 struct rte_eth_dev_info dev_info; 2357 uint8_t hash_key_size; 2358 uint32_t key_len; 2359 int ret; 2360 2361 ret = eth_dev_info_get_print_err(res->port_id, &dev_info); 2362 if (ret != 0) 2363 return; 2364 2365 if (dev_info.hash_key_size > 0 && 2366 dev_info.hash_key_size <= sizeof(hash_key)) 2367 hash_key_size = dev_info.hash_key_size; 2368 else { 2369 printf("dev_info did not provide a valid hash key size\n"); 2370 return; 2371 } 2372 /* Check the length of the RSS hash key */ 2373 key_len = strlen(res->key); 2374 if (key_len != (hash_key_size * 2)) { 2375 printf("key length: %d invalid - key must be a string of %d" 2376 " hexa-decimal numbers\n", 2377 (int) key_len, hash_key_size * 2); 2378 return; 2379 } 2380 /* Translate RSS hash key into binary representation */ 2381 for (i = 0; i < hash_key_size; i++) { 2382 xdgt0 = parse_and_check_key_hexa_digit(res->key, (i * 2)); 2383 if (xdgt0 == 0xFF) 2384 return; 2385 xdgt1 = parse_and_check_key_hexa_digit(res->key, (i * 2) + 1); 2386 if (xdgt1 == 0xFF) 2387 return; 2388 hash_key[i] = (uint8_t) ((xdgt0 * 16) + xdgt1); 2389 } 2390 port_rss_hash_key_update(res->port_id, res->rss_type, hash_key, 2391 hash_key_size); 2392 } 2393 2394 cmdline_parse_token_string_t cmd_config_rss_hash_key_port = 2395 TOKEN_STRING_INITIALIZER(struct cmd_config_rss_hash_key, port, "port"); 2396 cmdline_parse_token_string_t cmd_config_rss_hash_key_config = 2397 TOKEN_STRING_INITIALIZER(struct cmd_config_rss_hash_key, config, 2398 "config"); 2399 cmdline_parse_token_num_t cmd_config_rss_hash_key_port_id = 2400 TOKEN_NUM_INITIALIZER(struct cmd_config_rss_hash_key, port_id, 2401 RTE_UINT16); 2402 cmdline_parse_token_string_t cmd_config_rss_hash_key_rss_hash_key = 2403 TOKEN_STRING_INITIALIZER(struct cmd_config_rss_hash_key, 2404 rss_hash_key, "rss-hash-key"); 2405 cmdline_parse_token_string_t cmd_config_rss_hash_key_rss_type = 2406 TOKEN_STRING_INITIALIZER(struct cmd_config_rss_hash_key, rss_type, 2407 "ipv4#ipv4-frag#ipv4-tcp#ipv4-udp#ipv4-sctp#" 2408 "ipv4-other#ipv6#ipv6-frag#ipv6-tcp#ipv6-udp#" 2409 "ipv6-sctp#ipv6-other#l2-payload#ipv6-ex#" 2410 "ipv6-tcp-ex#ipv6-udp-ex#" 2411 "l3-src-only#l3-dst-only#l4-src-only#l4-dst-only#" 2412 "l2-src-only#l2-dst-only#s-vlan#c-vlan#" 2413 "l2tpv3#esp#ah#pfcp#pppoe#gtpu#ecpri"); 2414 cmdline_parse_token_string_t cmd_config_rss_hash_key_value = 2415 TOKEN_STRING_INITIALIZER(struct cmd_config_rss_hash_key, key, NULL); 2416 2417 cmdline_parse_inst_t cmd_config_rss_hash_key = { 2418 .f = cmd_config_rss_hash_key_parsed, 2419 .data = NULL, 2420 .help_str = "port config <port_id> rss-hash-key " 2421 "ipv4|ipv4-frag|ipv4-tcp|ipv4-udp|ipv4-sctp|ipv4-other|" 2422 "ipv6|ipv6-frag|ipv6-tcp|ipv6-udp|ipv6-sctp|ipv6-other|" 2423 "l2-payload|ipv6-ex|ipv6-tcp-ex|ipv6-udp-ex|" 2424 "l3-src-only|l3-dst-only|l4-src-only|l4-dst-only|" 2425 "l2-src-only|l2-dst-only|s-vlan|c-vlan|" 2426 "l2tpv3|esp|ah|pfcp|pppoe|gtpu|ecpri " 2427 "<string of hex digits (variable length, NIC dependent)>", 2428 .tokens = { 2429 (void *)&cmd_config_rss_hash_key_port, 2430 (void *)&cmd_config_rss_hash_key_config, 2431 (void *)&cmd_config_rss_hash_key_port_id, 2432 (void *)&cmd_config_rss_hash_key_rss_hash_key, 2433 (void *)&cmd_config_rss_hash_key_rss_type, 2434 (void *)&cmd_config_rss_hash_key_value, 2435 NULL, 2436 }, 2437 }; 2438 2439 /* *** configure port rxq/txq ring size *** */ 2440 struct cmd_config_rxtx_ring_size { 2441 cmdline_fixed_string_t port; 2442 cmdline_fixed_string_t config; 2443 portid_t portid; 2444 cmdline_fixed_string_t rxtxq; 2445 uint16_t qid; 2446 cmdline_fixed_string_t rsize; 2447 uint16_t size; 2448 }; 2449 2450 static void 2451 cmd_config_rxtx_ring_size_parsed(void *parsed_result, 2452 __rte_unused struct cmdline *cl, 2453 __rte_unused void *data) 2454 { 2455 struct cmd_config_rxtx_ring_size *res = parsed_result; 2456 struct rte_port *port; 2457 uint8_t isrx; 2458 2459 if (port_id_is_invalid(res->portid, ENABLED_WARN)) 2460 return; 2461 2462 if (res->portid == (portid_t)RTE_PORT_ALL) { 2463 printf("Invalid port id\n"); 2464 return; 2465 } 2466 2467 port = &ports[res->portid]; 2468 2469 if (!strcmp(res->rxtxq, "rxq")) 2470 isrx = 1; 2471 else if (!strcmp(res->rxtxq, "txq")) 2472 isrx = 0; 2473 else { 2474 printf("Unknown parameter\n"); 2475 return; 2476 } 2477 2478 if (isrx && rx_queue_id_is_invalid(res->qid)) 2479 return; 2480 else if (!isrx && tx_queue_id_is_invalid(res->qid)) 2481 return; 2482 2483 if (isrx && res->size != 0 && res->size <= rx_free_thresh) { 2484 printf("Invalid rx ring_size, must > rx_free_thresh: %d\n", 2485 rx_free_thresh); 2486 return; 2487 } 2488 2489 if (isrx) 2490 port->nb_rx_desc[res->qid] = res->size; 2491 else 2492 port->nb_tx_desc[res->qid] = res->size; 2493 2494 cmd_reconfig_device_queue(res->portid, 0, 1); 2495 } 2496 2497 cmdline_parse_token_string_t cmd_config_rxtx_ring_size_port = 2498 TOKEN_STRING_INITIALIZER(struct cmd_config_rxtx_ring_size, 2499 port, "port"); 2500 cmdline_parse_token_string_t cmd_config_rxtx_ring_size_config = 2501 TOKEN_STRING_INITIALIZER(struct cmd_config_rxtx_ring_size, 2502 config, "config"); 2503 cmdline_parse_token_num_t cmd_config_rxtx_ring_size_portid = 2504 TOKEN_NUM_INITIALIZER(struct cmd_config_rxtx_ring_size, 2505 portid, RTE_UINT16); 2506 cmdline_parse_token_string_t cmd_config_rxtx_ring_size_rxtxq = 2507 TOKEN_STRING_INITIALIZER(struct cmd_config_rxtx_ring_size, 2508 rxtxq, "rxq#txq"); 2509 cmdline_parse_token_num_t cmd_config_rxtx_ring_size_qid = 2510 TOKEN_NUM_INITIALIZER(struct cmd_config_rxtx_ring_size, 2511 qid, RTE_UINT16); 2512 cmdline_parse_token_string_t cmd_config_rxtx_ring_size_rsize = 2513 TOKEN_STRING_INITIALIZER(struct cmd_config_rxtx_ring_size, 2514 rsize, "ring_size"); 2515 cmdline_parse_token_num_t cmd_config_rxtx_ring_size_size = 2516 TOKEN_NUM_INITIALIZER(struct cmd_config_rxtx_ring_size, 2517 size, RTE_UINT16); 2518 2519 cmdline_parse_inst_t cmd_config_rxtx_ring_size = { 2520 .f = cmd_config_rxtx_ring_size_parsed, 2521 .data = NULL, 2522 .help_str = "port config <port_id> rxq|txq <queue_id> ring_size <value>", 2523 .tokens = { 2524 (void *)&cmd_config_rxtx_ring_size_port, 2525 (void *)&cmd_config_rxtx_ring_size_config, 2526 (void *)&cmd_config_rxtx_ring_size_portid, 2527 (void *)&cmd_config_rxtx_ring_size_rxtxq, 2528 (void *)&cmd_config_rxtx_ring_size_qid, 2529 (void *)&cmd_config_rxtx_ring_size_rsize, 2530 (void *)&cmd_config_rxtx_ring_size_size, 2531 NULL, 2532 }, 2533 }; 2534 2535 /* *** configure port rxq/txq start/stop *** */ 2536 struct cmd_config_rxtx_queue { 2537 cmdline_fixed_string_t port; 2538 portid_t portid; 2539 cmdline_fixed_string_t rxtxq; 2540 uint16_t qid; 2541 cmdline_fixed_string_t opname; 2542 }; 2543 2544 static void 2545 cmd_config_rxtx_queue_parsed(void *parsed_result, 2546 __rte_unused struct cmdline *cl, 2547 __rte_unused void *data) 2548 { 2549 struct cmd_config_rxtx_queue *res = parsed_result; 2550 uint8_t isrx; 2551 uint8_t isstart; 2552 int ret = 0; 2553 2554 if (test_done == 0) { 2555 printf("Please stop forwarding first\n"); 2556 return; 2557 } 2558 2559 if (port_id_is_invalid(res->portid, ENABLED_WARN)) 2560 return; 2561 2562 if (port_is_started(res->portid) != 1) { 2563 printf("Please start port %u first\n", res->portid); 2564 return; 2565 } 2566 2567 if (!strcmp(res->rxtxq, "rxq")) 2568 isrx = 1; 2569 else if (!strcmp(res->rxtxq, "txq")) 2570 isrx = 0; 2571 else { 2572 printf("Unknown parameter\n"); 2573 return; 2574 } 2575 2576 if (isrx && rx_queue_id_is_invalid(res->qid)) 2577 return; 2578 else if (!isrx && tx_queue_id_is_invalid(res->qid)) 2579 return; 2580 2581 if (!strcmp(res->opname, "start")) 2582 isstart = 1; 2583 else if (!strcmp(res->opname, "stop")) 2584 isstart = 0; 2585 else { 2586 printf("Unknown parameter\n"); 2587 return; 2588 } 2589 2590 if (isstart && isrx) 2591 ret = rte_eth_dev_rx_queue_start(res->portid, res->qid); 2592 else if (!isstart && isrx) 2593 ret = rte_eth_dev_rx_queue_stop(res->portid, res->qid); 2594 else if (isstart && !isrx) 2595 ret = rte_eth_dev_tx_queue_start(res->portid, res->qid); 2596 else 2597 ret = rte_eth_dev_tx_queue_stop(res->portid, res->qid); 2598 2599 if (ret == -ENOTSUP) 2600 printf("Function not supported in PMD driver\n"); 2601 } 2602 2603 cmdline_parse_token_string_t cmd_config_rxtx_queue_port = 2604 TOKEN_STRING_INITIALIZER(struct cmd_config_rxtx_queue, port, "port"); 2605 cmdline_parse_token_num_t cmd_config_rxtx_queue_portid = 2606 TOKEN_NUM_INITIALIZER(struct cmd_config_rxtx_queue, portid, RTE_UINT16); 2607 cmdline_parse_token_string_t cmd_config_rxtx_queue_rxtxq = 2608 TOKEN_STRING_INITIALIZER(struct cmd_config_rxtx_queue, rxtxq, "rxq#txq"); 2609 cmdline_parse_token_num_t cmd_config_rxtx_queue_qid = 2610 TOKEN_NUM_INITIALIZER(struct cmd_config_rxtx_queue, qid, RTE_UINT16); 2611 cmdline_parse_token_string_t cmd_config_rxtx_queue_opname = 2612 TOKEN_STRING_INITIALIZER(struct cmd_config_rxtx_queue, opname, 2613 "start#stop"); 2614 2615 cmdline_parse_inst_t cmd_config_rxtx_queue = { 2616 .f = cmd_config_rxtx_queue_parsed, 2617 .data = NULL, 2618 .help_str = "port <port_id> rxq|txq <queue_id> start|stop", 2619 .tokens = { 2620 (void *)&cmd_config_rxtx_queue_port, 2621 (void *)&cmd_config_rxtx_queue_portid, 2622 (void *)&cmd_config_rxtx_queue_rxtxq, 2623 (void *)&cmd_config_rxtx_queue_qid, 2624 (void *)&cmd_config_rxtx_queue_opname, 2625 NULL, 2626 }, 2627 }; 2628 2629 /* *** configure port rxq/txq deferred start on/off *** */ 2630 struct cmd_config_deferred_start_rxtx_queue { 2631 cmdline_fixed_string_t port; 2632 portid_t port_id; 2633 cmdline_fixed_string_t rxtxq; 2634 uint16_t qid; 2635 cmdline_fixed_string_t opname; 2636 cmdline_fixed_string_t state; 2637 }; 2638 2639 static void 2640 cmd_config_deferred_start_rxtx_queue_parsed(void *parsed_result, 2641 __rte_unused struct cmdline *cl, 2642 __rte_unused void *data) 2643 { 2644 struct cmd_config_deferred_start_rxtx_queue *res = parsed_result; 2645 struct rte_port *port; 2646 uint8_t isrx; 2647 uint8_t ison; 2648 uint8_t needreconfig = 0; 2649 2650 if (port_id_is_invalid(res->port_id, ENABLED_WARN)) 2651 return; 2652 2653 if (port_is_started(res->port_id) != 0) { 2654 printf("Please stop port %u first\n", res->port_id); 2655 return; 2656 } 2657 2658 port = &ports[res->port_id]; 2659 2660 isrx = !strcmp(res->rxtxq, "rxq"); 2661 2662 if (isrx && rx_queue_id_is_invalid(res->qid)) 2663 return; 2664 else if (!isrx && tx_queue_id_is_invalid(res->qid)) 2665 return; 2666 2667 ison = !strcmp(res->state, "on"); 2668 2669 if (isrx && port->rx_conf[res->qid].rx_deferred_start != ison) { 2670 port->rx_conf[res->qid].rx_deferred_start = ison; 2671 needreconfig = 1; 2672 } else if (!isrx && port->tx_conf[res->qid].tx_deferred_start != ison) { 2673 port->tx_conf[res->qid].tx_deferred_start = ison; 2674 needreconfig = 1; 2675 } 2676 2677 if (needreconfig) 2678 cmd_reconfig_device_queue(res->port_id, 0, 1); 2679 } 2680 2681 cmdline_parse_token_string_t cmd_config_deferred_start_rxtx_queue_port = 2682 TOKEN_STRING_INITIALIZER(struct cmd_config_deferred_start_rxtx_queue, 2683 port, "port"); 2684 cmdline_parse_token_num_t cmd_config_deferred_start_rxtx_queue_port_id = 2685 TOKEN_NUM_INITIALIZER(struct cmd_config_deferred_start_rxtx_queue, 2686 port_id, RTE_UINT16); 2687 cmdline_parse_token_string_t cmd_config_deferred_start_rxtx_queue_rxtxq = 2688 TOKEN_STRING_INITIALIZER(struct cmd_config_deferred_start_rxtx_queue, 2689 rxtxq, "rxq#txq"); 2690 cmdline_parse_token_num_t cmd_config_deferred_start_rxtx_queue_qid = 2691 TOKEN_NUM_INITIALIZER(struct cmd_config_deferred_start_rxtx_queue, 2692 qid, RTE_UINT16); 2693 cmdline_parse_token_string_t cmd_config_deferred_start_rxtx_queue_opname = 2694 TOKEN_STRING_INITIALIZER(struct cmd_config_deferred_start_rxtx_queue, 2695 opname, "deferred_start"); 2696 cmdline_parse_token_string_t cmd_config_deferred_start_rxtx_queue_state = 2697 TOKEN_STRING_INITIALIZER(struct cmd_config_deferred_start_rxtx_queue, 2698 state, "on#off"); 2699 2700 cmdline_parse_inst_t cmd_config_deferred_start_rxtx_queue = { 2701 .f = cmd_config_deferred_start_rxtx_queue_parsed, 2702 .data = NULL, 2703 .help_str = "port <port_id> rxq|txq <queue_id> deferred_start on|off", 2704 .tokens = { 2705 (void *)&cmd_config_deferred_start_rxtx_queue_port, 2706 (void *)&cmd_config_deferred_start_rxtx_queue_port_id, 2707 (void *)&cmd_config_deferred_start_rxtx_queue_rxtxq, 2708 (void *)&cmd_config_deferred_start_rxtx_queue_qid, 2709 (void *)&cmd_config_deferred_start_rxtx_queue_opname, 2710 (void *)&cmd_config_deferred_start_rxtx_queue_state, 2711 NULL, 2712 }, 2713 }; 2714 2715 /* *** configure port rxq/txq setup *** */ 2716 struct cmd_setup_rxtx_queue { 2717 cmdline_fixed_string_t port; 2718 portid_t portid; 2719 cmdline_fixed_string_t rxtxq; 2720 uint16_t qid; 2721 cmdline_fixed_string_t setup; 2722 }; 2723 2724 /* Common CLI fields for queue setup */ 2725 cmdline_parse_token_string_t cmd_setup_rxtx_queue_port = 2726 TOKEN_STRING_INITIALIZER(struct cmd_setup_rxtx_queue, port, "port"); 2727 cmdline_parse_token_num_t cmd_setup_rxtx_queue_portid = 2728 TOKEN_NUM_INITIALIZER(struct cmd_setup_rxtx_queue, portid, RTE_UINT16); 2729 cmdline_parse_token_string_t cmd_setup_rxtx_queue_rxtxq = 2730 TOKEN_STRING_INITIALIZER(struct cmd_setup_rxtx_queue, rxtxq, "rxq#txq"); 2731 cmdline_parse_token_num_t cmd_setup_rxtx_queue_qid = 2732 TOKEN_NUM_INITIALIZER(struct cmd_setup_rxtx_queue, qid, RTE_UINT16); 2733 cmdline_parse_token_string_t cmd_setup_rxtx_queue_setup = 2734 TOKEN_STRING_INITIALIZER(struct cmd_setup_rxtx_queue, setup, "setup"); 2735 2736 static void 2737 cmd_setup_rxtx_queue_parsed( 2738 void *parsed_result, 2739 __rte_unused struct cmdline *cl, 2740 __rte_unused void *data) 2741 { 2742 struct cmd_setup_rxtx_queue *res = parsed_result; 2743 struct rte_port *port; 2744 struct rte_mempool *mp; 2745 unsigned int socket_id; 2746 uint8_t isrx = 0; 2747 int ret; 2748 2749 if (port_id_is_invalid(res->portid, ENABLED_WARN)) 2750 return; 2751 2752 if (res->portid == (portid_t)RTE_PORT_ALL) { 2753 printf("Invalid port id\n"); 2754 return; 2755 } 2756 2757 if (!strcmp(res->rxtxq, "rxq")) 2758 isrx = 1; 2759 else if (!strcmp(res->rxtxq, "txq")) 2760 isrx = 0; 2761 else { 2762 printf("Unknown parameter\n"); 2763 return; 2764 } 2765 2766 if (isrx && rx_queue_id_is_invalid(res->qid)) { 2767 printf("Invalid rx queue\n"); 2768 return; 2769 } else if (!isrx && tx_queue_id_is_invalid(res->qid)) { 2770 printf("Invalid tx queue\n"); 2771 return; 2772 } 2773 2774 port = &ports[res->portid]; 2775 if (isrx) { 2776 socket_id = rxring_numa[res->portid]; 2777 if (!numa_support || socket_id == NUMA_NO_CONFIG) 2778 socket_id = port->socket_id; 2779 2780 mp = mbuf_pool_find(socket_id, 0); 2781 if (mp == NULL) { 2782 printf("Failed to setup RX queue: " 2783 "No mempool allocation" 2784 " on the socket %d\n", 2785 rxring_numa[res->portid]); 2786 return; 2787 } 2788 ret = rx_queue_setup(res->portid, 2789 res->qid, 2790 port->nb_rx_desc[res->qid], 2791 socket_id, 2792 &port->rx_conf[res->qid], 2793 mp); 2794 if (ret) 2795 printf("Failed to setup RX queue\n"); 2796 } else { 2797 socket_id = txring_numa[res->portid]; 2798 if (!numa_support || socket_id == NUMA_NO_CONFIG) 2799 socket_id = port->socket_id; 2800 2801 ret = rte_eth_tx_queue_setup(res->portid, 2802 res->qid, 2803 port->nb_tx_desc[res->qid], 2804 socket_id, 2805 &port->tx_conf[res->qid]); 2806 if (ret) 2807 printf("Failed to setup TX queue\n"); 2808 } 2809 } 2810 2811 cmdline_parse_inst_t cmd_setup_rxtx_queue = { 2812 .f = cmd_setup_rxtx_queue_parsed, 2813 .data = NULL, 2814 .help_str = "port <port_id> rxq|txq <queue_idx> setup", 2815 .tokens = { 2816 (void *)&cmd_setup_rxtx_queue_port, 2817 (void *)&cmd_setup_rxtx_queue_portid, 2818 (void *)&cmd_setup_rxtx_queue_rxtxq, 2819 (void *)&cmd_setup_rxtx_queue_qid, 2820 (void *)&cmd_setup_rxtx_queue_setup, 2821 NULL, 2822 }, 2823 }; 2824 2825 2826 /* *** Configure RSS RETA *** */ 2827 struct cmd_config_rss_reta { 2828 cmdline_fixed_string_t port; 2829 cmdline_fixed_string_t keyword; 2830 portid_t port_id; 2831 cmdline_fixed_string_t name; 2832 cmdline_fixed_string_t list_name; 2833 cmdline_fixed_string_t list_of_items; 2834 }; 2835 2836 static int 2837 parse_reta_config(const char *str, 2838 struct rte_eth_rss_reta_entry64 *reta_conf, 2839 uint16_t nb_entries) 2840 { 2841 int i; 2842 unsigned size; 2843 uint16_t hash_index, idx, shift; 2844 uint16_t nb_queue; 2845 char s[256]; 2846 const char *p, *p0 = str; 2847 char *end; 2848 enum fieldnames { 2849 FLD_HASH_INDEX = 0, 2850 FLD_QUEUE, 2851 _NUM_FLD 2852 }; 2853 unsigned long int_fld[_NUM_FLD]; 2854 char *str_fld[_NUM_FLD]; 2855 2856 while ((p = strchr(p0,'(')) != NULL) { 2857 ++p; 2858 if((p0 = strchr(p,')')) == NULL) 2859 return -1; 2860 2861 size = p0 - p; 2862 if(size >= sizeof(s)) 2863 return -1; 2864 2865 snprintf(s, sizeof(s), "%.*s", size, p); 2866 if (rte_strsplit(s, sizeof(s), str_fld, _NUM_FLD, ',') != _NUM_FLD) 2867 return -1; 2868 for (i = 0; i < _NUM_FLD; i++) { 2869 errno = 0; 2870 int_fld[i] = strtoul(str_fld[i], &end, 0); 2871 if (errno != 0 || end == str_fld[i] || 2872 int_fld[i] > 65535) 2873 return -1; 2874 } 2875 2876 hash_index = (uint16_t)int_fld[FLD_HASH_INDEX]; 2877 nb_queue = (uint16_t)int_fld[FLD_QUEUE]; 2878 2879 if (hash_index >= nb_entries) { 2880 printf("Invalid RETA hash index=%d\n", hash_index); 2881 return -1; 2882 } 2883 2884 idx = hash_index / RTE_RETA_GROUP_SIZE; 2885 shift = hash_index % RTE_RETA_GROUP_SIZE; 2886 reta_conf[idx].mask |= (1ULL << shift); 2887 reta_conf[idx].reta[shift] = nb_queue; 2888 } 2889 2890 return 0; 2891 } 2892 2893 static void 2894 cmd_set_rss_reta_parsed(void *parsed_result, 2895 __rte_unused struct cmdline *cl, 2896 __rte_unused void *data) 2897 { 2898 int ret; 2899 struct rte_eth_dev_info dev_info; 2900 struct rte_eth_rss_reta_entry64 reta_conf[8]; 2901 struct cmd_config_rss_reta *res = parsed_result; 2902 2903 ret = eth_dev_info_get_print_err(res->port_id, &dev_info); 2904 if (ret != 0) 2905 return; 2906 2907 if (dev_info.reta_size == 0) { 2908 printf("Redirection table size is 0 which is " 2909 "invalid for RSS\n"); 2910 return; 2911 } else 2912 printf("The reta size of port %d is %u\n", 2913 res->port_id, dev_info.reta_size); 2914 if (dev_info.reta_size > ETH_RSS_RETA_SIZE_512) { 2915 printf("Currently do not support more than %u entries of " 2916 "redirection table\n", ETH_RSS_RETA_SIZE_512); 2917 return; 2918 } 2919 2920 memset(reta_conf, 0, sizeof(reta_conf)); 2921 if (!strcmp(res->list_name, "reta")) { 2922 if (parse_reta_config(res->list_of_items, reta_conf, 2923 dev_info.reta_size)) { 2924 printf("Invalid RSS Redirection Table " 2925 "config entered\n"); 2926 return; 2927 } 2928 ret = rte_eth_dev_rss_reta_update(res->port_id, 2929 reta_conf, dev_info.reta_size); 2930 if (ret != 0) 2931 printf("Bad redirection table parameter, " 2932 "return code = %d \n", ret); 2933 } 2934 } 2935 2936 cmdline_parse_token_string_t cmd_config_rss_reta_port = 2937 TOKEN_STRING_INITIALIZER(struct cmd_config_rss_reta, port, "port"); 2938 cmdline_parse_token_string_t cmd_config_rss_reta_keyword = 2939 TOKEN_STRING_INITIALIZER(struct cmd_config_rss_reta, keyword, "config"); 2940 cmdline_parse_token_num_t cmd_config_rss_reta_port_id = 2941 TOKEN_NUM_INITIALIZER(struct cmd_config_rss_reta, port_id, RTE_UINT16); 2942 cmdline_parse_token_string_t cmd_config_rss_reta_name = 2943 TOKEN_STRING_INITIALIZER(struct cmd_config_rss_reta, name, "rss"); 2944 cmdline_parse_token_string_t cmd_config_rss_reta_list_name = 2945 TOKEN_STRING_INITIALIZER(struct cmd_config_rss_reta, list_name, "reta"); 2946 cmdline_parse_token_string_t cmd_config_rss_reta_list_of_items = 2947 TOKEN_STRING_INITIALIZER(struct cmd_config_rss_reta, list_of_items, 2948 NULL); 2949 cmdline_parse_inst_t cmd_config_rss_reta = { 2950 .f = cmd_set_rss_reta_parsed, 2951 .data = NULL, 2952 .help_str = "port config <port_id> rss reta <hash,queue[,hash,queue]*>", 2953 .tokens = { 2954 (void *)&cmd_config_rss_reta_port, 2955 (void *)&cmd_config_rss_reta_keyword, 2956 (void *)&cmd_config_rss_reta_port_id, 2957 (void *)&cmd_config_rss_reta_name, 2958 (void *)&cmd_config_rss_reta_list_name, 2959 (void *)&cmd_config_rss_reta_list_of_items, 2960 NULL, 2961 }, 2962 }; 2963 2964 /* *** SHOW PORT RETA INFO *** */ 2965 struct cmd_showport_reta { 2966 cmdline_fixed_string_t show; 2967 cmdline_fixed_string_t port; 2968 portid_t port_id; 2969 cmdline_fixed_string_t rss; 2970 cmdline_fixed_string_t reta; 2971 uint16_t size; 2972 cmdline_fixed_string_t list_of_items; 2973 }; 2974 2975 static int 2976 showport_parse_reta_config(struct rte_eth_rss_reta_entry64 *conf, 2977 uint16_t nb_entries, 2978 char *str) 2979 { 2980 uint32_t size; 2981 const char *p, *p0 = str; 2982 char s[256]; 2983 char *end; 2984 char *str_fld[8]; 2985 uint16_t i; 2986 uint16_t num = (nb_entries + RTE_RETA_GROUP_SIZE - 1) / 2987 RTE_RETA_GROUP_SIZE; 2988 int ret; 2989 2990 p = strchr(p0, '('); 2991 if (p == NULL) 2992 return -1; 2993 p++; 2994 p0 = strchr(p, ')'); 2995 if (p0 == NULL) 2996 return -1; 2997 size = p0 - p; 2998 if (size >= sizeof(s)) { 2999 printf("The string size exceeds the internal buffer size\n"); 3000 return -1; 3001 } 3002 snprintf(s, sizeof(s), "%.*s", size, p); 3003 ret = rte_strsplit(s, sizeof(s), str_fld, num, ','); 3004 if (ret <= 0 || ret != num) { 3005 printf("The bits of masks do not match the number of " 3006 "reta entries: %u\n", num); 3007 return -1; 3008 } 3009 for (i = 0; i < ret; i++) 3010 conf[i].mask = (uint64_t)strtoul(str_fld[i], &end, 0); 3011 3012 return 0; 3013 } 3014 3015 static void 3016 cmd_showport_reta_parsed(void *parsed_result, 3017 __rte_unused struct cmdline *cl, 3018 __rte_unused void *data) 3019 { 3020 struct cmd_showport_reta *res = parsed_result; 3021 struct rte_eth_rss_reta_entry64 reta_conf[8]; 3022 struct rte_eth_dev_info dev_info; 3023 uint16_t max_reta_size; 3024 int ret; 3025 3026 ret = eth_dev_info_get_print_err(res->port_id, &dev_info); 3027 if (ret != 0) 3028 return; 3029 3030 max_reta_size = RTE_MIN(dev_info.reta_size, ETH_RSS_RETA_SIZE_512); 3031 if (res->size == 0 || res->size > max_reta_size) { 3032 printf("Invalid redirection table size: %u (1-%u)\n", 3033 res->size, max_reta_size); 3034 return; 3035 } 3036 3037 memset(reta_conf, 0, sizeof(reta_conf)); 3038 if (showport_parse_reta_config(reta_conf, res->size, 3039 res->list_of_items) < 0) { 3040 printf("Invalid string: %s for reta masks\n", 3041 res->list_of_items); 3042 return; 3043 } 3044 port_rss_reta_info(res->port_id, reta_conf, res->size); 3045 } 3046 3047 cmdline_parse_token_string_t cmd_showport_reta_show = 3048 TOKEN_STRING_INITIALIZER(struct cmd_showport_reta, show, "show"); 3049 cmdline_parse_token_string_t cmd_showport_reta_port = 3050 TOKEN_STRING_INITIALIZER(struct cmd_showport_reta, port, "port"); 3051 cmdline_parse_token_num_t cmd_showport_reta_port_id = 3052 TOKEN_NUM_INITIALIZER(struct cmd_showport_reta, port_id, RTE_UINT16); 3053 cmdline_parse_token_string_t cmd_showport_reta_rss = 3054 TOKEN_STRING_INITIALIZER(struct cmd_showport_reta, rss, "rss"); 3055 cmdline_parse_token_string_t cmd_showport_reta_reta = 3056 TOKEN_STRING_INITIALIZER(struct cmd_showport_reta, reta, "reta"); 3057 cmdline_parse_token_num_t cmd_showport_reta_size = 3058 TOKEN_NUM_INITIALIZER(struct cmd_showport_reta, size, RTE_UINT16); 3059 cmdline_parse_token_string_t cmd_showport_reta_list_of_items = 3060 TOKEN_STRING_INITIALIZER(struct cmd_showport_reta, 3061 list_of_items, NULL); 3062 3063 cmdline_parse_inst_t cmd_showport_reta = { 3064 .f = cmd_showport_reta_parsed, 3065 .data = NULL, 3066 .help_str = "show port <port_id> rss reta <size> <mask0[,mask1]*>", 3067 .tokens = { 3068 (void *)&cmd_showport_reta_show, 3069 (void *)&cmd_showport_reta_port, 3070 (void *)&cmd_showport_reta_port_id, 3071 (void *)&cmd_showport_reta_rss, 3072 (void *)&cmd_showport_reta_reta, 3073 (void *)&cmd_showport_reta_size, 3074 (void *)&cmd_showport_reta_list_of_items, 3075 NULL, 3076 }, 3077 }; 3078 3079 /* *** Show RSS hash configuration *** */ 3080 struct cmd_showport_rss_hash { 3081 cmdline_fixed_string_t show; 3082 cmdline_fixed_string_t port; 3083 portid_t port_id; 3084 cmdline_fixed_string_t rss_hash; 3085 cmdline_fixed_string_t rss_type; 3086 cmdline_fixed_string_t key; /* optional argument */ 3087 }; 3088 3089 static void cmd_showport_rss_hash_parsed(void *parsed_result, 3090 __rte_unused struct cmdline *cl, 3091 void *show_rss_key) 3092 { 3093 struct cmd_showport_rss_hash *res = parsed_result; 3094 3095 port_rss_hash_conf_show(res->port_id, show_rss_key != NULL); 3096 } 3097 3098 cmdline_parse_token_string_t cmd_showport_rss_hash_show = 3099 TOKEN_STRING_INITIALIZER(struct cmd_showport_rss_hash, show, "show"); 3100 cmdline_parse_token_string_t cmd_showport_rss_hash_port = 3101 TOKEN_STRING_INITIALIZER(struct cmd_showport_rss_hash, port, "port"); 3102 cmdline_parse_token_num_t cmd_showport_rss_hash_port_id = 3103 TOKEN_NUM_INITIALIZER(struct cmd_showport_rss_hash, port_id, 3104 RTE_UINT16); 3105 cmdline_parse_token_string_t cmd_showport_rss_hash_rss_hash = 3106 TOKEN_STRING_INITIALIZER(struct cmd_showport_rss_hash, rss_hash, 3107 "rss-hash"); 3108 cmdline_parse_token_string_t cmd_showport_rss_hash_rss_key = 3109 TOKEN_STRING_INITIALIZER(struct cmd_showport_rss_hash, key, "key"); 3110 3111 cmdline_parse_inst_t cmd_showport_rss_hash = { 3112 .f = cmd_showport_rss_hash_parsed, 3113 .data = NULL, 3114 .help_str = "show port <port_id> rss-hash", 3115 .tokens = { 3116 (void *)&cmd_showport_rss_hash_show, 3117 (void *)&cmd_showport_rss_hash_port, 3118 (void *)&cmd_showport_rss_hash_port_id, 3119 (void *)&cmd_showport_rss_hash_rss_hash, 3120 NULL, 3121 }, 3122 }; 3123 3124 cmdline_parse_inst_t cmd_showport_rss_hash_key = { 3125 .f = cmd_showport_rss_hash_parsed, 3126 .data = (void *)1, 3127 .help_str = "show port <port_id> rss-hash key", 3128 .tokens = { 3129 (void *)&cmd_showport_rss_hash_show, 3130 (void *)&cmd_showport_rss_hash_port, 3131 (void *)&cmd_showport_rss_hash_port_id, 3132 (void *)&cmd_showport_rss_hash_rss_hash, 3133 (void *)&cmd_showport_rss_hash_rss_key, 3134 NULL, 3135 }, 3136 }; 3137 3138 /* *** Configure DCB *** */ 3139 struct cmd_config_dcb { 3140 cmdline_fixed_string_t port; 3141 cmdline_fixed_string_t config; 3142 portid_t port_id; 3143 cmdline_fixed_string_t dcb; 3144 cmdline_fixed_string_t vt; 3145 cmdline_fixed_string_t vt_en; 3146 uint8_t num_tcs; 3147 cmdline_fixed_string_t pfc; 3148 cmdline_fixed_string_t pfc_en; 3149 }; 3150 3151 static void 3152 cmd_config_dcb_parsed(void *parsed_result, 3153 __rte_unused struct cmdline *cl, 3154 __rte_unused void *data) 3155 { 3156 struct cmd_config_dcb *res = parsed_result; 3157 portid_t port_id = res->port_id; 3158 struct rte_port *port; 3159 uint8_t pfc_en; 3160 int ret; 3161 3162 port = &ports[port_id]; 3163 /** Check if the port is not started **/ 3164 if (port->port_status != RTE_PORT_STOPPED) { 3165 printf("Please stop port %d first\n", port_id); 3166 return; 3167 } 3168 3169 if ((res->num_tcs != ETH_4_TCS) && (res->num_tcs != ETH_8_TCS)) { 3170 printf("The invalid number of traffic class," 3171 " only 4 or 8 allowed.\n"); 3172 return; 3173 } 3174 3175 if (nb_fwd_lcores < res->num_tcs) { 3176 printf("nb_cores shouldn't be less than number of TCs.\n"); 3177 return; 3178 } 3179 if (!strncmp(res->pfc_en, "on", 2)) 3180 pfc_en = 1; 3181 else 3182 pfc_en = 0; 3183 3184 /* DCB in VT mode */ 3185 if (!strncmp(res->vt_en, "on", 2)) 3186 ret = init_port_dcb_config(port_id, DCB_VT_ENABLED, 3187 (enum rte_eth_nb_tcs)res->num_tcs, 3188 pfc_en); 3189 else 3190 ret = init_port_dcb_config(port_id, DCB_ENABLED, 3191 (enum rte_eth_nb_tcs)res->num_tcs, 3192 pfc_en); 3193 3194 3195 if (ret != 0) { 3196 printf("Cannot initialize network ports.\n"); 3197 return; 3198 } 3199 3200 cmd_reconfig_device_queue(port_id, 1, 1); 3201 } 3202 3203 cmdline_parse_token_string_t cmd_config_dcb_port = 3204 TOKEN_STRING_INITIALIZER(struct cmd_config_dcb, port, "port"); 3205 cmdline_parse_token_string_t cmd_config_dcb_config = 3206 TOKEN_STRING_INITIALIZER(struct cmd_config_dcb, config, "config"); 3207 cmdline_parse_token_num_t cmd_config_dcb_port_id = 3208 TOKEN_NUM_INITIALIZER(struct cmd_config_dcb, port_id, RTE_UINT16); 3209 cmdline_parse_token_string_t cmd_config_dcb_dcb = 3210 TOKEN_STRING_INITIALIZER(struct cmd_config_dcb, dcb, "dcb"); 3211 cmdline_parse_token_string_t cmd_config_dcb_vt = 3212 TOKEN_STRING_INITIALIZER(struct cmd_config_dcb, vt, "vt"); 3213 cmdline_parse_token_string_t cmd_config_dcb_vt_en = 3214 TOKEN_STRING_INITIALIZER(struct cmd_config_dcb, vt_en, "on#off"); 3215 cmdline_parse_token_num_t cmd_config_dcb_num_tcs = 3216 TOKEN_NUM_INITIALIZER(struct cmd_config_dcb, num_tcs, RTE_UINT8); 3217 cmdline_parse_token_string_t cmd_config_dcb_pfc= 3218 TOKEN_STRING_INITIALIZER(struct cmd_config_dcb, pfc, "pfc"); 3219 cmdline_parse_token_string_t cmd_config_dcb_pfc_en = 3220 TOKEN_STRING_INITIALIZER(struct cmd_config_dcb, pfc_en, "on#off"); 3221 3222 cmdline_parse_inst_t cmd_config_dcb = { 3223 .f = cmd_config_dcb_parsed, 3224 .data = NULL, 3225 .help_str = "port config <port-id> dcb vt on|off <num_tcs> pfc on|off", 3226 .tokens = { 3227 (void *)&cmd_config_dcb_port, 3228 (void *)&cmd_config_dcb_config, 3229 (void *)&cmd_config_dcb_port_id, 3230 (void *)&cmd_config_dcb_dcb, 3231 (void *)&cmd_config_dcb_vt, 3232 (void *)&cmd_config_dcb_vt_en, 3233 (void *)&cmd_config_dcb_num_tcs, 3234 (void *)&cmd_config_dcb_pfc, 3235 (void *)&cmd_config_dcb_pfc_en, 3236 NULL, 3237 }, 3238 }; 3239 3240 /* *** configure number of packets per burst *** */ 3241 struct cmd_config_burst { 3242 cmdline_fixed_string_t port; 3243 cmdline_fixed_string_t keyword; 3244 cmdline_fixed_string_t all; 3245 cmdline_fixed_string_t name; 3246 uint16_t value; 3247 }; 3248 3249 static void 3250 cmd_config_burst_parsed(void *parsed_result, 3251 __rte_unused struct cmdline *cl, 3252 __rte_unused void *data) 3253 { 3254 struct cmd_config_burst *res = parsed_result; 3255 struct rte_eth_dev_info dev_info; 3256 uint16_t rec_nb_pkts; 3257 int ret; 3258 3259 if (!all_ports_stopped()) { 3260 printf("Please stop all ports first\n"); 3261 return; 3262 } 3263 3264 if (!strcmp(res->name, "burst")) { 3265 if (res->value == 0) { 3266 /* If user gives a value of zero, query the PMD for 3267 * its recommended Rx burst size. Testpmd uses a single 3268 * size for all ports, so assume all ports are the same 3269 * NIC model and use the values from Port 0. 3270 */ 3271 ret = eth_dev_info_get_print_err(0, &dev_info); 3272 if (ret != 0) 3273 return; 3274 3275 rec_nb_pkts = dev_info.default_rxportconf.burst_size; 3276 3277 if (rec_nb_pkts == 0) { 3278 printf("PMD does not recommend a burst size.\n" 3279 "User provided value must be between" 3280 " 1 and %d\n", MAX_PKT_BURST); 3281 return; 3282 } else if (rec_nb_pkts > MAX_PKT_BURST) { 3283 printf("PMD recommended burst size of %d" 3284 " exceeds maximum value of %d\n", 3285 rec_nb_pkts, MAX_PKT_BURST); 3286 return; 3287 } 3288 printf("Using PMD-provided burst value of %d\n", 3289 rec_nb_pkts); 3290 nb_pkt_per_burst = rec_nb_pkts; 3291 } else if (res->value > MAX_PKT_BURST) { 3292 printf("burst must be >= 1 && <= %d\n", MAX_PKT_BURST); 3293 return; 3294 } else 3295 nb_pkt_per_burst = res->value; 3296 } else { 3297 printf("Unknown parameter\n"); 3298 return; 3299 } 3300 3301 init_port_config(); 3302 3303 cmd_reconfig_device_queue(RTE_PORT_ALL, 1, 1); 3304 } 3305 3306 cmdline_parse_token_string_t cmd_config_burst_port = 3307 TOKEN_STRING_INITIALIZER(struct cmd_config_burst, port, "port"); 3308 cmdline_parse_token_string_t cmd_config_burst_keyword = 3309 TOKEN_STRING_INITIALIZER(struct cmd_config_burst, keyword, "config"); 3310 cmdline_parse_token_string_t cmd_config_burst_all = 3311 TOKEN_STRING_INITIALIZER(struct cmd_config_burst, all, "all"); 3312 cmdline_parse_token_string_t cmd_config_burst_name = 3313 TOKEN_STRING_INITIALIZER(struct cmd_config_burst, name, "burst"); 3314 cmdline_parse_token_num_t cmd_config_burst_value = 3315 TOKEN_NUM_INITIALIZER(struct cmd_config_burst, value, RTE_UINT16); 3316 3317 cmdline_parse_inst_t cmd_config_burst = { 3318 .f = cmd_config_burst_parsed, 3319 .data = NULL, 3320 .help_str = "port config all burst <value>", 3321 .tokens = { 3322 (void *)&cmd_config_burst_port, 3323 (void *)&cmd_config_burst_keyword, 3324 (void *)&cmd_config_burst_all, 3325 (void *)&cmd_config_burst_name, 3326 (void *)&cmd_config_burst_value, 3327 NULL, 3328 }, 3329 }; 3330 3331 /* *** configure rx/tx queues *** */ 3332 struct cmd_config_thresh { 3333 cmdline_fixed_string_t port; 3334 cmdline_fixed_string_t keyword; 3335 cmdline_fixed_string_t all; 3336 cmdline_fixed_string_t name; 3337 uint8_t value; 3338 }; 3339 3340 static void 3341 cmd_config_thresh_parsed(void *parsed_result, 3342 __rte_unused struct cmdline *cl, 3343 __rte_unused void *data) 3344 { 3345 struct cmd_config_thresh *res = parsed_result; 3346 3347 if (!all_ports_stopped()) { 3348 printf("Please stop all ports first\n"); 3349 return; 3350 } 3351 3352 if (!strcmp(res->name, "txpt")) 3353 tx_pthresh = res->value; 3354 else if(!strcmp(res->name, "txht")) 3355 tx_hthresh = res->value; 3356 else if(!strcmp(res->name, "txwt")) 3357 tx_wthresh = res->value; 3358 else if(!strcmp(res->name, "rxpt")) 3359 rx_pthresh = res->value; 3360 else if(!strcmp(res->name, "rxht")) 3361 rx_hthresh = res->value; 3362 else if(!strcmp(res->name, "rxwt")) 3363 rx_wthresh = res->value; 3364 else { 3365 printf("Unknown parameter\n"); 3366 return; 3367 } 3368 3369 init_port_config(); 3370 3371 cmd_reconfig_device_queue(RTE_PORT_ALL, 1, 1); 3372 } 3373 3374 cmdline_parse_token_string_t cmd_config_thresh_port = 3375 TOKEN_STRING_INITIALIZER(struct cmd_config_thresh, port, "port"); 3376 cmdline_parse_token_string_t cmd_config_thresh_keyword = 3377 TOKEN_STRING_INITIALIZER(struct cmd_config_thresh, keyword, "config"); 3378 cmdline_parse_token_string_t cmd_config_thresh_all = 3379 TOKEN_STRING_INITIALIZER(struct cmd_config_thresh, all, "all"); 3380 cmdline_parse_token_string_t cmd_config_thresh_name = 3381 TOKEN_STRING_INITIALIZER(struct cmd_config_thresh, name, 3382 "txpt#txht#txwt#rxpt#rxht#rxwt"); 3383 cmdline_parse_token_num_t cmd_config_thresh_value = 3384 TOKEN_NUM_INITIALIZER(struct cmd_config_thresh, value, RTE_UINT8); 3385 3386 cmdline_parse_inst_t cmd_config_thresh = { 3387 .f = cmd_config_thresh_parsed, 3388 .data = NULL, 3389 .help_str = "port config all txpt|txht|txwt|rxpt|rxht|rxwt <value>", 3390 .tokens = { 3391 (void *)&cmd_config_thresh_port, 3392 (void *)&cmd_config_thresh_keyword, 3393 (void *)&cmd_config_thresh_all, 3394 (void *)&cmd_config_thresh_name, 3395 (void *)&cmd_config_thresh_value, 3396 NULL, 3397 }, 3398 }; 3399 3400 /* *** configure free/rs threshold *** */ 3401 struct cmd_config_threshold { 3402 cmdline_fixed_string_t port; 3403 cmdline_fixed_string_t keyword; 3404 cmdline_fixed_string_t all; 3405 cmdline_fixed_string_t name; 3406 uint16_t value; 3407 }; 3408 3409 static void 3410 cmd_config_threshold_parsed(void *parsed_result, 3411 __rte_unused struct cmdline *cl, 3412 __rte_unused void *data) 3413 { 3414 struct cmd_config_threshold *res = parsed_result; 3415 3416 if (!all_ports_stopped()) { 3417 printf("Please stop all ports first\n"); 3418 return; 3419 } 3420 3421 if (!strcmp(res->name, "txfreet")) 3422 tx_free_thresh = res->value; 3423 else if (!strcmp(res->name, "txrst")) 3424 tx_rs_thresh = res->value; 3425 else if (!strcmp(res->name, "rxfreet")) 3426 rx_free_thresh = res->value; 3427 else { 3428 printf("Unknown parameter\n"); 3429 return; 3430 } 3431 3432 init_port_config(); 3433 3434 cmd_reconfig_device_queue(RTE_PORT_ALL, 1, 1); 3435 } 3436 3437 cmdline_parse_token_string_t cmd_config_threshold_port = 3438 TOKEN_STRING_INITIALIZER(struct cmd_config_threshold, port, "port"); 3439 cmdline_parse_token_string_t cmd_config_threshold_keyword = 3440 TOKEN_STRING_INITIALIZER(struct cmd_config_threshold, keyword, 3441 "config"); 3442 cmdline_parse_token_string_t cmd_config_threshold_all = 3443 TOKEN_STRING_INITIALIZER(struct cmd_config_threshold, all, "all"); 3444 cmdline_parse_token_string_t cmd_config_threshold_name = 3445 TOKEN_STRING_INITIALIZER(struct cmd_config_threshold, name, 3446 "txfreet#txrst#rxfreet"); 3447 cmdline_parse_token_num_t cmd_config_threshold_value = 3448 TOKEN_NUM_INITIALIZER(struct cmd_config_threshold, value, RTE_UINT16); 3449 3450 cmdline_parse_inst_t cmd_config_threshold = { 3451 .f = cmd_config_threshold_parsed, 3452 .data = NULL, 3453 .help_str = "port config all txfreet|txrst|rxfreet <value>", 3454 .tokens = { 3455 (void *)&cmd_config_threshold_port, 3456 (void *)&cmd_config_threshold_keyword, 3457 (void *)&cmd_config_threshold_all, 3458 (void *)&cmd_config_threshold_name, 3459 (void *)&cmd_config_threshold_value, 3460 NULL, 3461 }, 3462 }; 3463 3464 /* *** stop *** */ 3465 struct cmd_stop_result { 3466 cmdline_fixed_string_t stop; 3467 }; 3468 3469 static void cmd_stop_parsed(__rte_unused void *parsed_result, 3470 __rte_unused struct cmdline *cl, 3471 __rte_unused void *data) 3472 { 3473 stop_packet_forwarding(); 3474 } 3475 3476 cmdline_parse_token_string_t cmd_stop_stop = 3477 TOKEN_STRING_INITIALIZER(struct cmd_stop_result, stop, "stop"); 3478 3479 cmdline_parse_inst_t cmd_stop = { 3480 .f = cmd_stop_parsed, 3481 .data = NULL, 3482 .help_str = "stop: Stop packet forwarding", 3483 .tokens = { 3484 (void *)&cmd_stop_stop, 3485 NULL, 3486 }, 3487 }; 3488 3489 /* *** SET CORELIST and PORTLIST CONFIGURATION *** */ 3490 3491 unsigned int 3492 parse_item_list(char* str, const char* item_name, unsigned int max_items, 3493 unsigned int *parsed_items, int check_unique_values) 3494 { 3495 unsigned int nb_item; 3496 unsigned int value; 3497 unsigned int i; 3498 unsigned int j; 3499 int value_ok; 3500 char c; 3501 3502 /* 3503 * First parse all items in the list and store their value. 3504 */ 3505 value = 0; 3506 nb_item = 0; 3507 value_ok = 0; 3508 for (i = 0; i < strnlen(str, STR_TOKEN_SIZE); i++) { 3509 c = str[i]; 3510 if ((c >= '0') && (c <= '9')) { 3511 value = (unsigned int) (value * 10 + (c - '0')); 3512 value_ok = 1; 3513 continue; 3514 } 3515 if (c != ',') { 3516 printf("character %c is not a decimal digit\n", c); 3517 return 0; 3518 } 3519 if (! value_ok) { 3520 printf("No valid value before comma\n"); 3521 return 0; 3522 } 3523 if (nb_item < max_items) { 3524 parsed_items[nb_item] = value; 3525 value_ok = 0; 3526 value = 0; 3527 } 3528 nb_item++; 3529 } 3530 if (nb_item >= max_items) { 3531 printf("Number of %s = %u > %u (maximum items)\n", 3532 item_name, nb_item + 1, max_items); 3533 return 0; 3534 } 3535 parsed_items[nb_item++] = value; 3536 if (! check_unique_values) 3537 return nb_item; 3538 3539 /* 3540 * Then, check that all values in the list are differents. 3541 * No optimization here... 3542 */ 3543 for (i = 0; i < nb_item; i++) { 3544 for (j = i + 1; j < nb_item; j++) { 3545 if (parsed_items[j] == parsed_items[i]) { 3546 printf("duplicated %s %u at index %u and %u\n", 3547 item_name, parsed_items[i], i, j); 3548 return 0; 3549 } 3550 } 3551 } 3552 return nb_item; 3553 } 3554 3555 struct cmd_set_list_result { 3556 cmdline_fixed_string_t cmd_keyword; 3557 cmdline_fixed_string_t list_name; 3558 cmdline_fixed_string_t list_of_items; 3559 }; 3560 3561 static void cmd_set_list_parsed(void *parsed_result, 3562 __rte_unused struct cmdline *cl, 3563 __rte_unused void *data) 3564 { 3565 struct cmd_set_list_result *res; 3566 union { 3567 unsigned int lcorelist[RTE_MAX_LCORE]; 3568 unsigned int portlist[RTE_MAX_ETHPORTS]; 3569 } parsed_items; 3570 unsigned int nb_item; 3571 3572 if (test_done == 0) { 3573 printf("Please stop forwarding first\n"); 3574 return; 3575 } 3576 3577 res = parsed_result; 3578 if (!strcmp(res->list_name, "corelist")) { 3579 nb_item = parse_item_list(res->list_of_items, "core", 3580 RTE_MAX_LCORE, 3581 parsed_items.lcorelist, 1); 3582 if (nb_item > 0) { 3583 set_fwd_lcores_list(parsed_items.lcorelist, nb_item); 3584 fwd_config_setup(); 3585 } 3586 return; 3587 } 3588 if (!strcmp(res->list_name, "portlist")) { 3589 nb_item = parse_item_list(res->list_of_items, "port", 3590 RTE_MAX_ETHPORTS, 3591 parsed_items.portlist, 1); 3592 if (nb_item > 0) { 3593 set_fwd_ports_list(parsed_items.portlist, nb_item); 3594 fwd_config_setup(); 3595 } 3596 } 3597 } 3598 3599 cmdline_parse_token_string_t cmd_set_list_keyword = 3600 TOKEN_STRING_INITIALIZER(struct cmd_set_list_result, cmd_keyword, 3601 "set"); 3602 cmdline_parse_token_string_t cmd_set_list_name = 3603 TOKEN_STRING_INITIALIZER(struct cmd_set_list_result, list_name, 3604 "corelist#portlist"); 3605 cmdline_parse_token_string_t cmd_set_list_of_items = 3606 TOKEN_STRING_INITIALIZER(struct cmd_set_list_result, list_of_items, 3607 NULL); 3608 3609 cmdline_parse_inst_t cmd_set_fwd_list = { 3610 .f = cmd_set_list_parsed, 3611 .data = NULL, 3612 .help_str = "set corelist|portlist <list0[,list1]*>", 3613 .tokens = { 3614 (void *)&cmd_set_list_keyword, 3615 (void *)&cmd_set_list_name, 3616 (void *)&cmd_set_list_of_items, 3617 NULL, 3618 }, 3619 }; 3620 3621 /* *** SET COREMASK and PORTMASK CONFIGURATION *** */ 3622 3623 struct cmd_setmask_result { 3624 cmdline_fixed_string_t set; 3625 cmdline_fixed_string_t mask; 3626 uint64_t hexavalue; 3627 }; 3628 3629 static void cmd_set_mask_parsed(void *parsed_result, 3630 __rte_unused struct cmdline *cl, 3631 __rte_unused void *data) 3632 { 3633 struct cmd_setmask_result *res = parsed_result; 3634 3635 if (test_done == 0) { 3636 printf("Please stop forwarding first\n"); 3637 return; 3638 } 3639 if (!strcmp(res->mask, "coremask")) { 3640 set_fwd_lcores_mask(res->hexavalue); 3641 fwd_config_setup(); 3642 } else if (!strcmp(res->mask, "portmask")) { 3643 set_fwd_ports_mask(res->hexavalue); 3644 fwd_config_setup(); 3645 } 3646 } 3647 3648 cmdline_parse_token_string_t cmd_setmask_set = 3649 TOKEN_STRING_INITIALIZER(struct cmd_setmask_result, set, "set"); 3650 cmdline_parse_token_string_t cmd_setmask_mask = 3651 TOKEN_STRING_INITIALIZER(struct cmd_setmask_result, mask, 3652 "coremask#portmask"); 3653 cmdline_parse_token_num_t cmd_setmask_value = 3654 TOKEN_NUM_INITIALIZER(struct cmd_setmask_result, hexavalue, RTE_UINT64); 3655 3656 cmdline_parse_inst_t cmd_set_fwd_mask = { 3657 .f = cmd_set_mask_parsed, 3658 .data = NULL, 3659 .help_str = "set coremask|portmask <hexadecimal value>", 3660 .tokens = { 3661 (void *)&cmd_setmask_set, 3662 (void *)&cmd_setmask_mask, 3663 (void *)&cmd_setmask_value, 3664 NULL, 3665 }, 3666 }; 3667 3668 /* 3669 * SET NBPORT, NBCORE, PACKET BURST, and VERBOSE LEVEL CONFIGURATION 3670 */ 3671 struct cmd_set_result { 3672 cmdline_fixed_string_t set; 3673 cmdline_fixed_string_t what; 3674 uint16_t value; 3675 }; 3676 3677 static void cmd_set_parsed(void *parsed_result, 3678 __rte_unused struct cmdline *cl, 3679 __rte_unused void *data) 3680 { 3681 struct cmd_set_result *res = parsed_result; 3682 if (!strcmp(res->what, "nbport")) { 3683 set_fwd_ports_number(res->value); 3684 fwd_config_setup(); 3685 } else if (!strcmp(res->what, "nbcore")) { 3686 set_fwd_lcores_number(res->value); 3687 fwd_config_setup(); 3688 } else if (!strcmp(res->what, "burst")) 3689 set_nb_pkt_per_burst(res->value); 3690 else if (!strcmp(res->what, "verbose")) 3691 set_verbose_level(res->value); 3692 } 3693 3694 cmdline_parse_token_string_t cmd_set_set = 3695 TOKEN_STRING_INITIALIZER(struct cmd_set_result, set, "set"); 3696 cmdline_parse_token_string_t cmd_set_what = 3697 TOKEN_STRING_INITIALIZER(struct cmd_set_result, what, 3698 "nbport#nbcore#burst#verbose"); 3699 cmdline_parse_token_num_t cmd_set_value = 3700 TOKEN_NUM_INITIALIZER(struct cmd_set_result, value, RTE_UINT16); 3701 3702 cmdline_parse_inst_t cmd_set_numbers = { 3703 .f = cmd_set_parsed, 3704 .data = NULL, 3705 .help_str = "set nbport|nbcore|burst|verbose <value>", 3706 .tokens = { 3707 (void *)&cmd_set_set, 3708 (void *)&cmd_set_what, 3709 (void *)&cmd_set_value, 3710 NULL, 3711 }, 3712 }; 3713 3714 /* *** SET LOG LEVEL CONFIGURATION *** */ 3715 3716 struct cmd_set_log_result { 3717 cmdline_fixed_string_t set; 3718 cmdline_fixed_string_t log; 3719 cmdline_fixed_string_t type; 3720 uint32_t level; 3721 }; 3722 3723 static void 3724 cmd_set_log_parsed(void *parsed_result, 3725 __rte_unused struct cmdline *cl, 3726 __rte_unused void *data) 3727 { 3728 struct cmd_set_log_result *res; 3729 int ret; 3730 3731 res = parsed_result; 3732 if (!strcmp(res->type, "global")) 3733 rte_log_set_global_level(res->level); 3734 else { 3735 ret = rte_log_set_level_regexp(res->type, res->level); 3736 if (ret < 0) 3737 printf("Unable to set log level\n"); 3738 } 3739 } 3740 3741 cmdline_parse_token_string_t cmd_set_log_set = 3742 TOKEN_STRING_INITIALIZER(struct cmd_set_log_result, set, "set"); 3743 cmdline_parse_token_string_t cmd_set_log_log = 3744 TOKEN_STRING_INITIALIZER(struct cmd_set_log_result, log, "log"); 3745 cmdline_parse_token_string_t cmd_set_log_type = 3746 TOKEN_STRING_INITIALIZER(struct cmd_set_log_result, type, NULL); 3747 cmdline_parse_token_num_t cmd_set_log_level = 3748 TOKEN_NUM_INITIALIZER(struct cmd_set_log_result, level, RTE_UINT32); 3749 3750 cmdline_parse_inst_t cmd_set_log = { 3751 .f = cmd_set_log_parsed, 3752 .data = NULL, 3753 .help_str = "set log global|<type> <level>", 3754 .tokens = { 3755 (void *)&cmd_set_log_set, 3756 (void *)&cmd_set_log_log, 3757 (void *)&cmd_set_log_type, 3758 (void *)&cmd_set_log_level, 3759 NULL, 3760 }, 3761 }; 3762 3763 /* *** SET SEGMENT OFFSETS OF RX PACKETS SPLIT *** */ 3764 3765 struct cmd_set_rxoffs_result { 3766 cmdline_fixed_string_t cmd_keyword; 3767 cmdline_fixed_string_t rxoffs; 3768 cmdline_fixed_string_t seg_offsets; 3769 }; 3770 3771 static void 3772 cmd_set_rxoffs_parsed(void *parsed_result, 3773 __rte_unused struct cmdline *cl, 3774 __rte_unused void *data) 3775 { 3776 struct cmd_set_rxoffs_result *res; 3777 unsigned int seg_offsets[MAX_SEGS_BUFFER_SPLIT]; 3778 unsigned int nb_segs; 3779 3780 res = parsed_result; 3781 nb_segs = parse_item_list(res->seg_offsets, "segment offsets", 3782 MAX_SEGS_BUFFER_SPLIT, seg_offsets, 0); 3783 if (nb_segs > 0) 3784 set_rx_pkt_offsets(seg_offsets, nb_segs); 3785 } 3786 3787 cmdline_parse_token_string_t cmd_set_rxoffs_keyword = 3788 TOKEN_STRING_INITIALIZER(struct cmd_set_rxoffs_result, 3789 cmd_keyword, "set"); 3790 cmdline_parse_token_string_t cmd_set_rxoffs_name = 3791 TOKEN_STRING_INITIALIZER(struct cmd_set_rxoffs_result, 3792 rxoffs, "rxoffs"); 3793 cmdline_parse_token_string_t cmd_set_rxoffs_offsets = 3794 TOKEN_STRING_INITIALIZER(struct cmd_set_rxoffs_result, 3795 seg_offsets, NULL); 3796 3797 cmdline_parse_inst_t cmd_set_rxoffs = { 3798 .f = cmd_set_rxoffs_parsed, 3799 .data = NULL, 3800 .help_str = "set rxoffs <len0[,len1]*>", 3801 .tokens = { 3802 (void *)&cmd_set_rxoffs_keyword, 3803 (void *)&cmd_set_rxoffs_name, 3804 (void *)&cmd_set_rxoffs_offsets, 3805 NULL, 3806 }, 3807 }; 3808 3809 /* *** SET SEGMENT LENGTHS OF RX PACKETS SPLIT *** */ 3810 3811 struct cmd_set_rxpkts_result { 3812 cmdline_fixed_string_t cmd_keyword; 3813 cmdline_fixed_string_t rxpkts; 3814 cmdline_fixed_string_t seg_lengths; 3815 }; 3816 3817 static void 3818 cmd_set_rxpkts_parsed(void *parsed_result, 3819 __rte_unused struct cmdline *cl, 3820 __rte_unused void *data) 3821 { 3822 struct cmd_set_rxpkts_result *res; 3823 unsigned int seg_lengths[MAX_SEGS_BUFFER_SPLIT]; 3824 unsigned int nb_segs; 3825 3826 res = parsed_result; 3827 nb_segs = parse_item_list(res->seg_lengths, "segment lengths", 3828 MAX_SEGS_BUFFER_SPLIT, seg_lengths, 0); 3829 if (nb_segs > 0) 3830 set_rx_pkt_segments(seg_lengths, nb_segs); 3831 } 3832 3833 cmdline_parse_token_string_t cmd_set_rxpkts_keyword = 3834 TOKEN_STRING_INITIALIZER(struct cmd_set_rxpkts_result, 3835 cmd_keyword, "set"); 3836 cmdline_parse_token_string_t cmd_set_rxpkts_name = 3837 TOKEN_STRING_INITIALIZER(struct cmd_set_rxpkts_result, 3838 rxpkts, "rxpkts"); 3839 cmdline_parse_token_string_t cmd_set_rxpkts_lengths = 3840 TOKEN_STRING_INITIALIZER(struct cmd_set_rxpkts_result, 3841 seg_lengths, NULL); 3842 3843 cmdline_parse_inst_t cmd_set_rxpkts = { 3844 .f = cmd_set_rxpkts_parsed, 3845 .data = NULL, 3846 .help_str = "set rxpkts <len0[,len1]*>", 3847 .tokens = { 3848 (void *)&cmd_set_rxpkts_keyword, 3849 (void *)&cmd_set_rxpkts_name, 3850 (void *)&cmd_set_rxpkts_lengths, 3851 NULL, 3852 }, 3853 }; 3854 3855 /* *** SET SEGMENT LENGTHS OF TXONLY PACKETS *** */ 3856 3857 struct cmd_set_txpkts_result { 3858 cmdline_fixed_string_t cmd_keyword; 3859 cmdline_fixed_string_t txpkts; 3860 cmdline_fixed_string_t seg_lengths; 3861 }; 3862 3863 static void 3864 cmd_set_txpkts_parsed(void *parsed_result, 3865 __rte_unused struct cmdline *cl, 3866 __rte_unused void *data) 3867 { 3868 struct cmd_set_txpkts_result *res; 3869 unsigned seg_lengths[RTE_MAX_SEGS_PER_PKT]; 3870 unsigned int nb_segs; 3871 3872 res = parsed_result; 3873 nb_segs = parse_item_list(res->seg_lengths, "segment lengths", 3874 RTE_MAX_SEGS_PER_PKT, seg_lengths, 0); 3875 if (nb_segs > 0) 3876 set_tx_pkt_segments(seg_lengths, nb_segs); 3877 } 3878 3879 cmdline_parse_token_string_t cmd_set_txpkts_keyword = 3880 TOKEN_STRING_INITIALIZER(struct cmd_set_txpkts_result, 3881 cmd_keyword, "set"); 3882 cmdline_parse_token_string_t cmd_set_txpkts_name = 3883 TOKEN_STRING_INITIALIZER(struct cmd_set_txpkts_result, 3884 txpkts, "txpkts"); 3885 cmdline_parse_token_string_t cmd_set_txpkts_lengths = 3886 TOKEN_STRING_INITIALIZER(struct cmd_set_txpkts_result, 3887 seg_lengths, NULL); 3888 3889 cmdline_parse_inst_t cmd_set_txpkts = { 3890 .f = cmd_set_txpkts_parsed, 3891 .data = NULL, 3892 .help_str = "set txpkts <len0[,len1]*>", 3893 .tokens = { 3894 (void *)&cmd_set_txpkts_keyword, 3895 (void *)&cmd_set_txpkts_name, 3896 (void *)&cmd_set_txpkts_lengths, 3897 NULL, 3898 }, 3899 }; 3900 3901 /* *** SET COPY AND SPLIT POLICY ON TX PACKETS *** */ 3902 3903 struct cmd_set_txsplit_result { 3904 cmdline_fixed_string_t cmd_keyword; 3905 cmdline_fixed_string_t txsplit; 3906 cmdline_fixed_string_t mode; 3907 }; 3908 3909 static void 3910 cmd_set_txsplit_parsed(void *parsed_result, 3911 __rte_unused struct cmdline *cl, 3912 __rte_unused void *data) 3913 { 3914 struct cmd_set_txsplit_result *res; 3915 3916 res = parsed_result; 3917 set_tx_pkt_split(res->mode); 3918 } 3919 3920 cmdline_parse_token_string_t cmd_set_txsplit_keyword = 3921 TOKEN_STRING_INITIALIZER(struct cmd_set_txsplit_result, 3922 cmd_keyword, "set"); 3923 cmdline_parse_token_string_t cmd_set_txsplit_name = 3924 TOKEN_STRING_INITIALIZER(struct cmd_set_txsplit_result, 3925 txsplit, "txsplit"); 3926 cmdline_parse_token_string_t cmd_set_txsplit_mode = 3927 TOKEN_STRING_INITIALIZER(struct cmd_set_txsplit_result, 3928 mode, NULL); 3929 3930 cmdline_parse_inst_t cmd_set_txsplit = { 3931 .f = cmd_set_txsplit_parsed, 3932 .data = NULL, 3933 .help_str = "set txsplit on|off|rand", 3934 .tokens = { 3935 (void *)&cmd_set_txsplit_keyword, 3936 (void *)&cmd_set_txsplit_name, 3937 (void *)&cmd_set_txsplit_mode, 3938 NULL, 3939 }, 3940 }; 3941 3942 /* *** SET TIMES FOR TXONLY PACKETS SCHEDULING ON TIMESTAMPS *** */ 3943 3944 struct cmd_set_txtimes_result { 3945 cmdline_fixed_string_t cmd_keyword; 3946 cmdline_fixed_string_t txtimes; 3947 cmdline_fixed_string_t tx_times; 3948 }; 3949 3950 static void 3951 cmd_set_txtimes_parsed(void *parsed_result, 3952 __rte_unused struct cmdline *cl, 3953 __rte_unused void *data) 3954 { 3955 struct cmd_set_txtimes_result *res; 3956 unsigned int tx_times[2] = {0, 0}; 3957 unsigned int n_times; 3958 3959 res = parsed_result; 3960 n_times = parse_item_list(res->tx_times, "tx times", 3961 2, tx_times, 0); 3962 if (n_times == 2) 3963 set_tx_pkt_times(tx_times); 3964 } 3965 3966 cmdline_parse_token_string_t cmd_set_txtimes_keyword = 3967 TOKEN_STRING_INITIALIZER(struct cmd_set_txtimes_result, 3968 cmd_keyword, "set"); 3969 cmdline_parse_token_string_t cmd_set_txtimes_name = 3970 TOKEN_STRING_INITIALIZER(struct cmd_set_txtimes_result, 3971 txtimes, "txtimes"); 3972 cmdline_parse_token_string_t cmd_set_txtimes_value = 3973 TOKEN_STRING_INITIALIZER(struct cmd_set_txtimes_result, 3974 tx_times, NULL); 3975 3976 cmdline_parse_inst_t cmd_set_txtimes = { 3977 .f = cmd_set_txtimes_parsed, 3978 .data = NULL, 3979 .help_str = "set txtimes <inter_burst>,<intra_burst>", 3980 .tokens = { 3981 (void *)&cmd_set_txtimes_keyword, 3982 (void *)&cmd_set_txtimes_name, 3983 (void *)&cmd_set_txtimes_value, 3984 NULL, 3985 }, 3986 }; 3987 3988 /* *** ADD/REMOVE ALL VLAN IDENTIFIERS TO/FROM A PORT VLAN RX FILTER *** */ 3989 struct cmd_rx_vlan_filter_all_result { 3990 cmdline_fixed_string_t rx_vlan; 3991 cmdline_fixed_string_t what; 3992 cmdline_fixed_string_t all; 3993 portid_t port_id; 3994 }; 3995 3996 static void 3997 cmd_rx_vlan_filter_all_parsed(void *parsed_result, 3998 __rte_unused struct cmdline *cl, 3999 __rte_unused void *data) 4000 { 4001 struct cmd_rx_vlan_filter_all_result *res = parsed_result; 4002 4003 if (!strcmp(res->what, "add")) 4004 rx_vlan_all_filter_set(res->port_id, 1); 4005 else 4006 rx_vlan_all_filter_set(res->port_id, 0); 4007 } 4008 4009 cmdline_parse_token_string_t cmd_rx_vlan_filter_all_rx_vlan = 4010 TOKEN_STRING_INITIALIZER(struct cmd_rx_vlan_filter_all_result, 4011 rx_vlan, "rx_vlan"); 4012 cmdline_parse_token_string_t cmd_rx_vlan_filter_all_what = 4013 TOKEN_STRING_INITIALIZER(struct cmd_rx_vlan_filter_all_result, 4014 what, "add#rm"); 4015 cmdline_parse_token_string_t cmd_rx_vlan_filter_all_all = 4016 TOKEN_STRING_INITIALIZER(struct cmd_rx_vlan_filter_all_result, 4017 all, "all"); 4018 cmdline_parse_token_num_t cmd_rx_vlan_filter_all_portid = 4019 TOKEN_NUM_INITIALIZER(struct cmd_rx_vlan_filter_all_result, 4020 port_id, RTE_UINT16); 4021 4022 cmdline_parse_inst_t cmd_rx_vlan_filter_all = { 4023 .f = cmd_rx_vlan_filter_all_parsed, 4024 .data = NULL, 4025 .help_str = "rx_vlan add|rm all <port_id>: " 4026 "Add/Remove all identifiers to/from the set of VLAN " 4027 "identifiers filtered by a port", 4028 .tokens = { 4029 (void *)&cmd_rx_vlan_filter_all_rx_vlan, 4030 (void *)&cmd_rx_vlan_filter_all_what, 4031 (void *)&cmd_rx_vlan_filter_all_all, 4032 (void *)&cmd_rx_vlan_filter_all_portid, 4033 NULL, 4034 }, 4035 }; 4036 4037 /* *** VLAN OFFLOAD SET ON A PORT *** */ 4038 struct cmd_vlan_offload_result { 4039 cmdline_fixed_string_t vlan; 4040 cmdline_fixed_string_t set; 4041 cmdline_fixed_string_t vlan_type; 4042 cmdline_fixed_string_t what; 4043 cmdline_fixed_string_t on; 4044 cmdline_fixed_string_t port_id; 4045 }; 4046 4047 static void 4048 cmd_vlan_offload_parsed(void *parsed_result, 4049 __rte_unused struct cmdline *cl, 4050 __rte_unused void *data) 4051 { 4052 int on; 4053 struct cmd_vlan_offload_result *res = parsed_result; 4054 char *str; 4055 int i, len = 0; 4056 portid_t port_id = 0; 4057 unsigned int tmp; 4058 4059 str = res->port_id; 4060 len = strnlen(str, STR_TOKEN_SIZE); 4061 i = 0; 4062 /* Get port_id first */ 4063 while(i < len){ 4064 if(str[i] == ',') 4065 break; 4066 4067 i++; 4068 } 4069 str[i]='\0'; 4070 tmp = strtoul(str, NULL, 0); 4071 /* If port_id greater that what portid_t can represent, return */ 4072 if(tmp >= RTE_MAX_ETHPORTS) 4073 return; 4074 port_id = (portid_t)tmp; 4075 4076 if (!strcmp(res->on, "on")) 4077 on = 1; 4078 else 4079 on = 0; 4080 4081 if (!strcmp(res->what, "strip")) 4082 rx_vlan_strip_set(port_id, on); 4083 else if(!strcmp(res->what, "stripq")){ 4084 uint16_t queue_id = 0; 4085 4086 /* No queue_id, return */ 4087 if(i + 1 >= len) { 4088 printf("must specify (port,queue_id)\n"); 4089 return; 4090 } 4091 tmp = strtoul(str + i + 1, NULL, 0); 4092 /* If queue_id greater that what 16-bits can represent, return */ 4093 if(tmp > 0xffff) 4094 return; 4095 4096 queue_id = (uint16_t)tmp; 4097 rx_vlan_strip_set_on_queue(port_id, queue_id, on); 4098 } 4099 else if (!strcmp(res->what, "filter")) 4100 rx_vlan_filter_set(port_id, on); 4101 else if (!strcmp(res->what, "qinq_strip")) 4102 rx_vlan_qinq_strip_set(port_id, on); 4103 else 4104 vlan_extend_set(port_id, on); 4105 4106 return; 4107 } 4108 4109 cmdline_parse_token_string_t cmd_vlan_offload_vlan = 4110 TOKEN_STRING_INITIALIZER(struct cmd_vlan_offload_result, 4111 vlan, "vlan"); 4112 cmdline_parse_token_string_t cmd_vlan_offload_set = 4113 TOKEN_STRING_INITIALIZER(struct cmd_vlan_offload_result, 4114 set, "set"); 4115 cmdline_parse_token_string_t cmd_vlan_offload_what = 4116 TOKEN_STRING_INITIALIZER(struct cmd_vlan_offload_result, 4117 what, "strip#filter#qinq_strip#extend#stripq"); 4118 cmdline_parse_token_string_t cmd_vlan_offload_on = 4119 TOKEN_STRING_INITIALIZER(struct cmd_vlan_offload_result, 4120 on, "on#off"); 4121 cmdline_parse_token_string_t cmd_vlan_offload_portid = 4122 TOKEN_STRING_INITIALIZER(struct cmd_vlan_offload_result, 4123 port_id, NULL); 4124 4125 cmdline_parse_inst_t cmd_vlan_offload = { 4126 .f = cmd_vlan_offload_parsed, 4127 .data = NULL, 4128 .help_str = "vlan set strip|filter|qinq_strip|extend|stripq on|off " 4129 "<port_id[,queue_id]>: " 4130 "Strip/Filter/QinQ for rx side Extend for both rx/tx sides", 4131 .tokens = { 4132 (void *)&cmd_vlan_offload_vlan, 4133 (void *)&cmd_vlan_offload_set, 4134 (void *)&cmd_vlan_offload_what, 4135 (void *)&cmd_vlan_offload_on, 4136 (void *)&cmd_vlan_offload_portid, 4137 NULL, 4138 }, 4139 }; 4140 4141 /* *** VLAN TPID SET ON A PORT *** */ 4142 struct cmd_vlan_tpid_result { 4143 cmdline_fixed_string_t vlan; 4144 cmdline_fixed_string_t set; 4145 cmdline_fixed_string_t vlan_type; 4146 cmdline_fixed_string_t what; 4147 uint16_t tp_id; 4148 portid_t port_id; 4149 }; 4150 4151 static void 4152 cmd_vlan_tpid_parsed(void *parsed_result, 4153 __rte_unused struct cmdline *cl, 4154 __rte_unused void *data) 4155 { 4156 struct cmd_vlan_tpid_result *res = parsed_result; 4157 enum rte_vlan_type vlan_type; 4158 4159 if (!strcmp(res->vlan_type, "inner")) 4160 vlan_type = ETH_VLAN_TYPE_INNER; 4161 else if (!strcmp(res->vlan_type, "outer")) 4162 vlan_type = ETH_VLAN_TYPE_OUTER; 4163 else { 4164 printf("Unknown vlan type\n"); 4165 return; 4166 } 4167 vlan_tpid_set(res->port_id, vlan_type, res->tp_id); 4168 } 4169 4170 cmdline_parse_token_string_t cmd_vlan_tpid_vlan = 4171 TOKEN_STRING_INITIALIZER(struct cmd_vlan_tpid_result, 4172 vlan, "vlan"); 4173 cmdline_parse_token_string_t cmd_vlan_tpid_set = 4174 TOKEN_STRING_INITIALIZER(struct cmd_vlan_tpid_result, 4175 set, "set"); 4176 cmdline_parse_token_string_t cmd_vlan_type = 4177 TOKEN_STRING_INITIALIZER(struct cmd_vlan_tpid_result, 4178 vlan_type, "inner#outer"); 4179 cmdline_parse_token_string_t cmd_vlan_tpid_what = 4180 TOKEN_STRING_INITIALIZER(struct cmd_vlan_tpid_result, 4181 what, "tpid"); 4182 cmdline_parse_token_num_t cmd_vlan_tpid_tpid = 4183 TOKEN_NUM_INITIALIZER(struct cmd_vlan_tpid_result, 4184 tp_id, RTE_UINT16); 4185 cmdline_parse_token_num_t cmd_vlan_tpid_portid = 4186 TOKEN_NUM_INITIALIZER(struct cmd_vlan_tpid_result, 4187 port_id, RTE_UINT16); 4188 4189 cmdline_parse_inst_t cmd_vlan_tpid = { 4190 .f = cmd_vlan_tpid_parsed, 4191 .data = NULL, 4192 .help_str = "vlan set inner|outer tpid <tp_id> <port_id>: " 4193 "Set the VLAN Ether type", 4194 .tokens = { 4195 (void *)&cmd_vlan_tpid_vlan, 4196 (void *)&cmd_vlan_tpid_set, 4197 (void *)&cmd_vlan_type, 4198 (void *)&cmd_vlan_tpid_what, 4199 (void *)&cmd_vlan_tpid_tpid, 4200 (void *)&cmd_vlan_tpid_portid, 4201 NULL, 4202 }, 4203 }; 4204 4205 /* *** ADD/REMOVE A VLAN IDENTIFIER TO/FROM A PORT VLAN RX FILTER *** */ 4206 struct cmd_rx_vlan_filter_result { 4207 cmdline_fixed_string_t rx_vlan; 4208 cmdline_fixed_string_t what; 4209 uint16_t vlan_id; 4210 portid_t port_id; 4211 }; 4212 4213 static void 4214 cmd_rx_vlan_filter_parsed(void *parsed_result, 4215 __rte_unused struct cmdline *cl, 4216 __rte_unused void *data) 4217 { 4218 struct cmd_rx_vlan_filter_result *res = parsed_result; 4219 4220 if (!strcmp(res->what, "add")) 4221 rx_vft_set(res->port_id, res->vlan_id, 1); 4222 else 4223 rx_vft_set(res->port_id, res->vlan_id, 0); 4224 } 4225 4226 cmdline_parse_token_string_t cmd_rx_vlan_filter_rx_vlan = 4227 TOKEN_STRING_INITIALIZER(struct cmd_rx_vlan_filter_result, 4228 rx_vlan, "rx_vlan"); 4229 cmdline_parse_token_string_t cmd_rx_vlan_filter_what = 4230 TOKEN_STRING_INITIALIZER(struct cmd_rx_vlan_filter_result, 4231 what, "add#rm"); 4232 cmdline_parse_token_num_t cmd_rx_vlan_filter_vlanid = 4233 TOKEN_NUM_INITIALIZER(struct cmd_rx_vlan_filter_result, 4234 vlan_id, RTE_UINT16); 4235 cmdline_parse_token_num_t cmd_rx_vlan_filter_portid = 4236 TOKEN_NUM_INITIALIZER(struct cmd_rx_vlan_filter_result, 4237 port_id, RTE_UINT16); 4238 4239 cmdline_parse_inst_t cmd_rx_vlan_filter = { 4240 .f = cmd_rx_vlan_filter_parsed, 4241 .data = NULL, 4242 .help_str = "rx_vlan add|rm <vlan_id> <port_id>: " 4243 "Add/Remove a VLAN identifier to/from the set of VLAN " 4244 "identifiers filtered by a port", 4245 .tokens = { 4246 (void *)&cmd_rx_vlan_filter_rx_vlan, 4247 (void *)&cmd_rx_vlan_filter_what, 4248 (void *)&cmd_rx_vlan_filter_vlanid, 4249 (void *)&cmd_rx_vlan_filter_portid, 4250 NULL, 4251 }, 4252 }; 4253 4254 /* *** ENABLE HARDWARE INSERTION OF VLAN HEADER IN TX PACKETS *** */ 4255 struct cmd_tx_vlan_set_result { 4256 cmdline_fixed_string_t tx_vlan; 4257 cmdline_fixed_string_t set; 4258 portid_t port_id; 4259 uint16_t vlan_id; 4260 }; 4261 4262 static void 4263 cmd_tx_vlan_set_parsed(void *parsed_result, 4264 __rte_unused struct cmdline *cl, 4265 __rte_unused void *data) 4266 { 4267 struct cmd_tx_vlan_set_result *res = parsed_result; 4268 4269 if (port_id_is_invalid(res->port_id, ENABLED_WARN)) 4270 return; 4271 4272 if (!port_is_stopped(res->port_id)) { 4273 printf("Please stop port %d first\n", res->port_id); 4274 return; 4275 } 4276 4277 tx_vlan_set(res->port_id, res->vlan_id); 4278 4279 cmd_reconfig_device_queue(res->port_id, 1, 1); 4280 } 4281 4282 cmdline_parse_token_string_t cmd_tx_vlan_set_tx_vlan = 4283 TOKEN_STRING_INITIALIZER(struct cmd_tx_vlan_set_result, 4284 tx_vlan, "tx_vlan"); 4285 cmdline_parse_token_string_t cmd_tx_vlan_set_set = 4286 TOKEN_STRING_INITIALIZER(struct cmd_tx_vlan_set_result, 4287 set, "set"); 4288 cmdline_parse_token_num_t cmd_tx_vlan_set_portid = 4289 TOKEN_NUM_INITIALIZER(struct cmd_tx_vlan_set_result, 4290 port_id, RTE_UINT16); 4291 cmdline_parse_token_num_t cmd_tx_vlan_set_vlanid = 4292 TOKEN_NUM_INITIALIZER(struct cmd_tx_vlan_set_result, 4293 vlan_id, RTE_UINT16); 4294 4295 cmdline_parse_inst_t cmd_tx_vlan_set = { 4296 .f = cmd_tx_vlan_set_parsed, 4297 .data = NULL, 4298 .help_str = "tx_vlan set <port_id> <vlan_id>: " 4299 "Enable hardware insertion of a single VLAN header " 4300 "with a given TAG Identifier in packets sent on a port", 4301 .tokens = { 4302 (void *)&cmd_tx_vlan_set_tx_vlan, 4303 (void *)&cmd_tx_vlan_set_set, 4304 (void *)&cmd_tx_vlan_set_portid, 4305 (void *)&cmd_tx_vlan_set_vlanid, 4306 NULL, 4307 }, 4308 }; 4309 4310 /* *** ENABLE HARDWARE INSERTION OF Double VLAN HEADER IN TX PACKETS *** */ 4311 struct cmd_tx_vlan_set_qinq_result { 4312 cmdline_fixed_string_t tx_vlan; 4313 cmdline_fixed_string_t set; 4314 portid_t port_id; 4315 uint16_t vlan_id; 4316 uint16_t vlan_id_outer; 4317 }; 4318 4319 static void 4320 cmd_tx_vlan_set_qinq_parsed(void *parsed_result, 4321 __rte_unused struct cmdline *cl, 4322 __rte_unused void *data) 4323 { 4324 struct cmd_tx_vlan_set_qinq_result *res = parsed_result; 4325 4326 if (port_id_is_invalid(res->port_id, ENABLED_WARN)) 4327 return; 4328 4329 if (!port_is_stopped(res->port_id)) { 4330 printf("Please stop port %d first\n", res->port_id); 4331 return; 4332 } 4333 4334 tx_qinq_set(res->port_id, res->vlan_id, res->vlan_id_outer); 4335 4336 cmd_reconfig_device_queue(res->port_id, 1, 1); 4337 } 4338 4339 cmdline_parse_token_string_t cmd_tx_vlan_set_qinq_tx_vlan = 4340 TOKEN_STRING_INITIALIZER(struct cmd_tx_vlan_set_qinq_result, 4341 tx_vlan, "tx_vlan"); 4342 cmdline_parse_token_string_t cmd_tx_vlan_set_qinq_set = 4343 TOKEN_STRING_INITIALIZER(struct cmd_tx_vlan_set_qinq_result, 4344 set, "set"); 4345 cmdline_parse_token_num_t cmd_tx_vlan_set_qinq_portid = 4346 TOKEN_NUM_INITIALIZER(struct cmd_tx_vlan_set_qinq_result, 4347 port_id, RTE_UINT16); 4348 cmdline_parse_token_num_t cmd_tx_vlan_set_qinq_vlanid = 4349 TOKEN_NUM_INITIALIZER(struct cmd_tx_vlan_set_qinq_result, 4350 vlan_id, RTE_UINT16); 4351 cmdline_parse_token_num_t cmd_tx_vlan_set_qinq_vlanid_outer = 4352 TOKEN_NUM_INITIALIZER(struct cmd_tx_vlan_set_qinq_result, 4353 vlan_id_outer, RTE_UINT16); 4354 4355 cmdline_parse_inst_t cmd_tx_vlan_set_qinq = { 4356 .f = cmd_tx_vlan_set_qinq_parsed, 4357 .data = NULL, 4358 .help_str = "tx_vlan set <port_id> <vlan_id> <outer_vlan_id>: " 4359 "Enable hardware insertion of double VLAN header " 4360 "with given TAG Identifiers in packets sent on a port", 4361 .tokens = { 4362 (void *)&cmd_tx_vlan_set_qinq_tx_vlan, 4363 (void *)&cmd_tx_vlan_set_qinq_set, 4364 (void *)&cmd_tx_vlan_set_qinq_portid, 4365 (void *)&cmd_tx_vlan_set_qinq_vlanid, 4366 (void *)&cmd_tx_vlan_set_qinq_vlanid_outer, 4367 NULL, 4368 }, 4369 }; 4370 4371 /* *** ENABLE/DISABLE PORT BASED TX VLAN INSERTION *** */ 4372 struct cmd_tx_vlan_set_pvid_result { 4373 cmdline_fixed_string_t tx_vlan; 4374 cmdline_fixed_string_t set; 4375 cmdline_fixed_string_t pvid; 4376 portid_t port_id; 4377 uint16_t vlan_id; 4378 cmdline_fixed_string_t mode; 4379 }; 4380 4381 static void 4382 cmd_tx_vlan_set_pvid_parsed(void *parsed_result, 4383 __rte_unused struct cmdline *cl, 4384 __rte_unused void *data) 4385 { 4386 struct cmd_tx_vlan_set_pvid_result *res = parsed_result; 4387 4388 if (strcmp(res->mode, "on") == 0) 4389 tx_vlan_pvid_set(res->port_id, res->vlan_id, 1); 4390 else 4391 tx_vlan_pvid_set(res->port_id, res->vlan_id, 0); 4392 } 4393 4394 cmdline_parse_token_string_t cmd_tx_vlan_set_pvid_tx_vlan = 4395 TOKEN_STRING_INITIALIZER(struct cmd_tx_vlan_set_pvid_result, 4396 tx_vlan, "tx_vlan"); 4397 cmdline_parse_token_string_t cmd_tx_vlan_set_pvid_set = 4398 TOKEN_STRING_INITIALIZER(struct cmd_tx_vlan_set_pvid_result, 4399 set, "set"); 4400 cmdline_parse_token_string_t cmd_tx_vlan_set_pvid_pvid = 4401 TOKEN_STRING_INITIALIZER(struct cmd_tx_vlan_set_pvid_result, 4402 pvid, "pvid"); 4403 cmdline_parse_token_num_t cmd_tx_vlan_set_pvid_port_id = 4404 TOKEN_NUM_INITIALIZER(struct cmd_tx_vlan_set_pvid_result, 4405 port_id, RTE_UINT16); 4406 cmdline_parse_token_num_t cmd_tx_vlan_set_pvid_vlan_id = 4407 TOKEN_NUM_INITIALIZER(struct cmd_tx_vlan_set_pvid_result, 4408 vlan_id, RTE_UINT16); 4409 cmdline_parse_token_string_t cmd_tx_vlan_set_pvid_mode = 4410 TOKEN_STRING_INITIALIZER(struct cmd_tx_vlan_set_pvid_result, 4411 mode, "on#off"); 4412 4413 cmdline_parse_inst_t cmd_tx_vlan_set_pvid = { 4414 .f = cmd_tx_vlan_set_pvid_parsed, 4415 .data = NULL, 4416 .help_str = "tx_vlan set pvid <port_id> <vlan_id> on|off", 4417 .tokens = { 4418 (void *)&cmd_tx_vlan_set_pvid_tx_vlan, 4419 (void *)&cmd_tx_vlan_set_pvid_set, 4420 (void *)&cmd_tx_vlan_set_pvid_pvid, 4421 (void *)&cmd_tx_vlan_set_pvid_port_id, 4422 (void *)&cmd_tx_vlan_set_pvid_vlan_id, 4423 (void *)&cmd_tx_vlan_set_pvid_mode, 4424 NULL, 4425 }, 4426 }; 4427 4428 /* *** DISABLE HARDWARE INSERTION OF VLAN HEADER IN TX PACKETS *** */ 4429 struct cmd_tx_vlan_reset_result { 4430 cmdline_fixed_string_t tx_vlan; 4431 cmdline_fixed_string_t reset; 4432 portid_t port_id; 4433 }; 4434 4435 static void 4436 cmd_tx_vlan_reset_parsed(void *parsed_result, 4437 __rte_unused struct cmdline *cl, 4438 __rte_unused void *data) 4439 { 4440 struct cmd_tx_vlan_reset_result *res = parsed_result; 4441 4442 if (port_id_is_invalid(res->port_id, ENABLED_WARN)) 4443 return; 4444 4445 if (!port_is_stopped(res->port_id)) { 4446 printf("Please stop port %d first\n", res->port_id); 4447 return; 4448 } 4449 4450 tx_vlan_reset(res->port_id); 4451 4452 cmd_reconfig_device_queue(res->port_id, 1, 1); 4453 } 4454 4455 cmdline_parse_token_string_t cmd_tx_vlan_reset_tx_vlan = 4456 TOKEN_STRING_INITIALIZER(struct cmd_tx_vlan_reset_result, 4457 tx_vlan, "tx_vlan"); 4458 cmdline_parse_token_string_t cmd_tx_vlan_reset_reset = 4459 TOKEN_STRING_INITIALIZER(struct cmd_tx_vlan_reset_result, 4460 reset, "reset"); 4461 cmdline_parse_token_num_t cmd_tx_vlan_reset_portid = 4462 TOKEN_NUM_INITIALIZER(struct cmd_tx_vlan_reset_result, 4463 port_id, RTE_UINT16); 4464 4465 cmdline_parse_inst_t cmd_tx_vlan_reset = { 4466 .f = cmd_tx_vlan_reset_parsed, 4467 .data = NULL, 4468 .help_str = "tx_vlan reset <port_id>: Disable hardware insertion of a " 4469 "VLAN header in packets sent on a port", 4470 .tokens = { 4471 (void *)&cmd_tx_vlan_reset_tx_vlan, 4472 (void *)&cmd_tx_vlan_reset_reset, 4473 (void *)&cmd_tx_vlan_reset_portid, 4474 NULL, 4475 }, 4476 }; 4477 4478 4479 /* *** ENABLE HARDWARE INSERTION OF CHECKSUM IN TX PACKETS *** */ 4480 struct cmd_csum_result { 4481 cmdline_fixed_string_t csum; 4482 cmdline_fixed_string_t mode; 4483 cmdline_fixed_string_t proto; 4484 cmdline_fixed_string_t hwsw; 4485 portid_t port_id; 4486 }; 4487 4488 static void 4489 csum_show(int port_id) 4490 { 4491 struct rte_eth_dev_info dev_info; 4492 uint64_t tx_offloads; 4493 int ret; 4494 4495 tx_offloads = ports[port_id].dev_conf.txmode.offloads; 4496 printf("Parse tunnel is %s\n", 4497 (ports[port_id].parse_tunnel) ? "on" : "off"); 4498 printf("IP checksum offload is %s\n", 4499 (tx_offloads & DEV_TX_OFFLOAD_IPV4_CKSUM) ? "hw" : "sw"); 4500 printf("UDP checksum offload is %s\n", 4501 (tx_offloads & DEV_TX_OFFLOAD_UDP_CKSUM) ? "hw" : "sw"); 4502 printf("TCP checksum offload is %s\n", 4503 (tx_offloads & DEV_TX_OFFLOAD_TCP_CKSUM) ? "hw" : "sw"); 4504 printf("SCTP checksum offload is %s\n", 4505 (tx_offloads & DEV_TX_OFFLOAD_SCTP_CKSUM) ? "hw" : "sw"); 4506 printf("Outer-Ip checksum offload is %s\n", 4507 (tx_offloads & DEV_TX_OFFLOAD_OUTER_IPV4_CKSUM) ? "hw" : "sw"); 4508 printf("Outer-Udp checksum offload is %s\n", 4509 (tx_offloads & DEV_TX_OFFLOAD_OUTER_UDP_CKSUM) ? "hw" : "sw"); 4510 4511 /* display warnings if configuration is not supported by the NIC */ 4512 ret = eth_dev_info_get_print_err(port_id, &dev_info); 4513 if (ret != 0) 4514 return; 4515 4516 if ((tx_offloads & DEV_TX_OFFLOAD_IPV4_CKSUM) && 4517 (dev_info.tx_offload_capa & DEV_TX_OFFLOAD_IPV4_CKSUM) == 0) { 4518 printf("Warning: hardware IP checksum enabled but not " 4519 "supported by port %d\n", port_id); 4520 } 4521 if ((tx_offloads & DEV_TX_OFFLOAD_UDP_CKSUM) && 4522 (dev_info.tx_offload_capa & DEV_TX_OFFLOAD_UDP_CKSUM) == 0) { 4523 printf("Warning: hardware UDP checksum enabled but not " 4524 "supported by port %d\n", port_id); 4525 } 4526 if ((tx_offloads & DEV_TX_OFFLOAD_TCP_CKSUM) && 4527 (dev_info.tx_offload_capa & DEV_TX_OFFLOAD_TCP_CKSUM) == 0) { 4528 printf("Warning: hardware TCP checksum enabled but not " 4529 "supported by port %d\n", port_id); 4530 } 4531 if ((tx_offloads & DEV_TX_OFFLOAD_SCTP_CKSUM) && 4532 (dev_info.tx_offload_capa & DEV_TX_OFFLOAD_SCTP_CKSUM) == 0) { 4533 printf("Warning: hardware SCTP checksum enabled but not " 4534 "supported by port %d\n", port_id); 4535 } 4536 if ((tx_offloads & DEV_TX_OFFLOAD_OUTER_IPV4_CKSUM) && 4537 (dev_info.tx_offload_capa & DEV_TX_OFFLOAD_OUTER_IPV4_CKSUM) == 0) { 4538 printf("Warning: hardware outer IP checksum enabled but not " 4539 "supported by port %d\n", port_id); 4540 } 4541 if ((tx_offloads & DEV_TX_OFFLOAD_OUTER_UDP_CKSUM) && 4542 (dev_info.tx_offload_capa & DEV_TX_OFFLOAD_OUTER_UDP_CKSUM) 4543 == 0) { 4544 printf("Warning: hardware outer UDP checksum enabled but not " 4545 "supported by port %d\n", port_id); 4546 } 4547 } 4548 4549 static void 4550 cmd_config_queue_tx_offloads(struct rte_port *port) 4551 { 4552 int k; 4553 4554 /* Apply queue tx offloads configuration */ 4555 for (k = 0; k < port->dev_info.max_rx_queues; k++) 4556 port->tx_conf[k].offloads = 4557 port->dev_conf.txmode.offloads; 4558 } 4559 4560 static void 4561 cmd_csum_parsed(void *parsed_result, 4562 __rte_unused struct cmdline *cl, 4563 __rte_unused void *data) 4564 { 4565 struct cmd_csum_result *res = parsed_result; 4566 int hw = 0; 4567 uint64_t csum_offloads = 0; 4568 struct rte_eth_dev_info dev_info; 4569 int ret; 4570 4571 if (port_id_is_invalid(res->port_id, ENABLED_WARN)) { 4572 printf("invalid port %d\n", res->port_id); 4573 return; 4574 } 4575 if (!port_is_stopped(res->port_id)) { 4576 printf("Please stop port %d first\n", res->port_id); 4577 return; 4578 } 4579 4580 ret = eth_dev_info_get_print_err(res->port_id, &dev_info); 4581 if (ret != 0) 4582 return; 4583 4584 if (!strcmp(res->mode, "set")) { 4585 4586 if (!strcmp(res->hwsw, "hw")) 4587 hw = 1; 4588 4589 if (!strcmp(res->proto, "ip")) { 4590 if (hw == 0 || (dev_info.tx_offload_capa & 4591 DEV_TX_OFFLOAD_IPV4_CKSUM)) { 4592 csum_offloads |= DEV_TX_OFFLOAD_IPV4_CKSUM; 4593 } else { 4594 printf("IP checksum offload is not supported " 4595 "by port %u\n", res->port_id); 4596 } 4597 } else if (!strcmp(res->proto, "udp")) { 4598 if (hw == 0 || (dev_info.tx_offload_capa & 4599 DEV_TX_OFFLOAD_UDP_CKSUM)) { 4600 csum_offloads |= DEV_TX_OFFLOAD_UDP_CKSUM; 4601 } else { 4602 printf("UDP checksum offload is not supported " 4603 "by port %u\n", res->port_id); 4604 } 4605 } else if (!strcmp(res->proto, "tcp")) { 4606 if (hw == 0 || (dev_info.tx_offload_capa & 4607 DEV_TX_OFFLOAD_TCP_CKSUM)) { 4608 csum_offloads |= DEV_TX_OFFLOAD_TCP_CKSUM; 4609 } else { 4610 printf("TCP checksum offload is not supported " 4611 "by port %u\n", res->port_id); 4612 } 4613 } else if (!strcmp(res->proto, "sctp")) { 4614 if (hw == 0 || (dev_info.tx_offload_capa & 4615 DEV_TX_OFFLOAD_SCTP_CKSUM)) { 4616 csum_offloads |= DEV_TX_OFFLOAD_SCTP_CKSUM; 4617 } else { 4618 printf("SCTP checksum offload is not supported " 4619 "by port %u\n", res->port_id); 4620 } 4621 } else if (!strcmp(res->proto, "outer-ip")) { 4622 if (hw == 0 || (dev_info.tx_offload_capa & 4623 DEV_TX_OFFLOAD_OUTER_IPV4_CKSUM)) { 4624 csum_offloads |= 4625 DEV_TX_OFFLOAD_OUTER_IPV4_CKSUM; 4626 } else { 4627 printf("Outer IP checksum offload is not " 4628 "supported by port %u\n", res->port_id); 4629 } 4630 } else if (!strcmp(res->proto, "outer-udp")) { 4631 if (hw == 0 || (dev_info.tx_offload_capa & 4632 DEV_TX_OFFLOAD_OUTER_UDP_CKSUM)) { 4633 csum_offloads |= 4634 DEV_TX_OFFLOAD_OUTER_UDP_CKSUM; 4635 } else { 4636 printf("Outer UDP checksum offload is not " 4637 "supported by port %u\n", res->port_id); 4638 } 4639 } 4640 4641 if (hw) { 4642 ports[res->port_id].dev_conf.txmode.offloads |= 4643 csum_offloads; 4644 } else { 4645 ports[res->port_id].dev_conf.txmode.offloads &= 4646 (~csum_offloads); 4647 } 4648 cmd_config_queue_tx_offloads(&ports[res->port_id]); 4649 } 4650 csum_show(res->port_id); 4651 4652 cmd_reconfig_device_queue(res->port_id, 1, 1); 4653 } 4654 4655 cmdline_parse_token_string_t cmd_csum_csum = 4656 TOKEN_STRING_INITIALIZER(struct cmd_csum_result, 4657 csum, "csum"); 4658 cmdline_parse_token_string_t cmd_csum_mode = 4659 TOKEN_STRING_INITIALIZER(struct cmd_csum_result, 4660 mode, "set"); 4661 cmdline_parse_token_string_t cmd_csum_proto = 4662 TOKEN_STRING_INITIALIZER(struct cmd_csum_result, 4663 proto, "ip#tcp#udp#sctp#outer-ip#outer-udp"); 4664 cmdline_parse_token_string_t cmd_csum_hwsw = 4665 TOKEN_STRING_INITIALIZER(struct cmd_csum_result, 4666 hwsw, "hw#sw"); 4667 cmdline_parse_token_num_t cmd_csum_portid = 4668 TOKEN_NUM_INITIALIZER(struct cmd_csum_result, 4669 port_id, RTE_UINT16); 4670 4671 cmdline_parse_inst_t cmd_csum_set = { 4672 .f = cmd_csum_parsed, 4673 .data = NULL, 4674 .help_str = "csum set ip|tcp|udp|sctp|outer-ip|outer-udp hw|sw <port_id>: " 4675 "Enable/Disable hardware calculation of L3/L4 checksum when " 4676 "using csum forward engine", 4677 .tokens = { 4678 (void *)&cmd_csum_csum, 4679 (void *)&cmd_csum_mode, 4680 (void *)&cmd_csum_proto, 4681 (void *)&cmd_csum_hwsw, 4682 (void *)&cmd_csum_portid, 4683 NULL, 4684 }, 4685 }; 4686 4687 cmdline_parse_token_string_t cmd_csum_mode_show = 4688 TOKEN_STRING_INITIALIZER(struct cmd_csum_result, 4689 mode, "show"); 4690 4691 cmdline_parse_inst_t cmd_csum_show = { 4692 .f = cmd_csum_parsed, 4693 .data = NULL, 4694 .help_str = "csum show <port_id>: Show checksum offload configuration", 4695 .tokens = { 4696 (void *)&cmd_csum_csum, 4697 (void *)&cmd_csum_mode_show, 4698 (void *)&cmd_csum_portid, 4699 NULL, 4700 }, 4701 }; 4702 4703 /* Enable/disable tunnel parsing */ 4704 struct cmd_csum_tunnel_result { 4705 cmdline_fixed_string_t csum; 4706 cmdline_fixed_string_t parse; 4707 cmdline_fixed_string_t onoff; 4708 portid_t port_id; 4709 }; 4710 4711 static void 4712 cmd_csum_tunnel_parsed(void *parsed_result, 4713 __rte_unused struct cmdline *cl, 4714 __rte_unused void *data) 4715 { 4716 struct cmd_csum_tunnel_result *res = parsed_result; 4717 4718 if (port_id_is_invalid(res->port_id, ENABLED_WARN)) 4719 return; 4720 4721 if (!strcmp(res->onoff, "on")) 4722 ports[res->port_id].parse_tunnel = 1; 4723 else 4724 ports[res->port_id].parse_tunnel = 0; 4725 4726 csum_show(res->port_id); 4727 } 4728 4729 cmdline_parse_token_string_t cmd_csum_tunnel_csum = 4730 TOKEN_STRING_INITIALIZER(struct cmd_csum_tunnel_result, 4731 csum, "csum"); 4732 cmdline_parse_token_string_t cmd_csum_tunnel_parse = 4733 TOKEN_STRING_INITIALIZER(struct cmd_csum_tunnel_result, 4734 parse, "parse-tunnel"); 4735 cmdline_parse_token_string_t cmd_csum_tunnel_onoff = 4736 TOKEN_STRING_INITIALIZER(struct cmd_csum_tunnel_result, 4737 onoff, "on#off"); 4738 cmdline_parse_token_num_t cmd_csum_tunnel_portid = 4739 TOKEN_NUM_INITIALIZER(struct cmd_csum_tunnel_result, 4740 port_id, RTE_UINT16); 4741 4742 cmdline_parse_inst_t cmd_csum_tunnel = { 4743 .f = cmd_csum_tunnel_parsed, 4744 .data = NULL, 4745 .help_str = "csum parse-tunnel on|off <port_id>: " 4746 "Enable/Disable parsing of tunnels for csum engine", 4747 .tokens = { 4748 (void *)&cmd_csum_tunnel_csum, 4749 (void *)&cmd_csum_tunnel_parse, 4750 (void *)&cmd_csum_tunnel_onoff, 4751 (void *)&cmd_csum_tunnel_portid, 4752 NULL, 4753 }, 4754 }; 4755 4756 /* *** ENABLE HARDWARE SEGMENTATION IN TX NON-TUNNELED PACKETS *** */ 4757 struct cmd_tso_set_result { 4758 cmdline_fixed_string_t tso; 4759 cmdline_fixed_string_t mode; 4760 uint16_t tso_segsz; 4761 portid_t port_id; 4762 }; 4763 4764 static void 4765 cmd_tso_set_parsed(void *parsed_result, 4766 __rte_unused struct cmdline *cl, 4767 __rte_unused void *data) 4768 { 4769 struct cmd_tso_set_result *res = parsed_result; 4770 struct rte_eth_dev_info dev_info; 4771 int ret; 4772 4773 if (port_id_is_invalid(res->port_id, ENABLED_WARN)) 4774 return; 4775 if (!port_is_stopped(res->port_id)) { 4776 printf("Please stop port %d first\n", res->port_id); 4777 return; 4778 } 4779 4780 if (!strcmp(res->mode, "set")) 4781 ports[res->port_id].tso_segsz = res->tso_segsz; 4782 4783 ret = eth_dev_info_get_print_err(res->port_id, &dev_info); 4784 if (ret != 0) 4785 return; 4786 4787 if ((ports[res->port_id].tso_segsz != 0) && 4788 (dev_info.tx_offload_capa & DEV_TX_OFFLOAD_TCP_TSO) == 0) { 4789 printf("Error: TSO is not supported by port %d\n", 4790 res->port_id); 4791 return; 4792 } 4793 4794 if (ports[res->port_id].tso_segsz == 0) { 4795 ports[res->port_id].dev_conf.txmode.offloads &= 4796 ~DEV_TX_OFFLOAD_TCP_TSO; 4797 printf("TSO for non-tunneled packets is disabled\n"); 4798 } else { 4799 ports[res->port_id].dev_conf.txmode.offloads |= 4800 DEV_TX_OFFLOAD_TCP_TSO; 4801 printf("TSO segment size for non-tunneled packets is %d\n", 4802 ports[res->port_id].tso_segsz); 4803 } 4804 cmd_config_queue_tx_offloads(&ports[res->port_id]); 4805 4806 /* display warnings if configuration is not supported by the NIC */ 4807 ret = eth_dev_info_get_print_err(res->port_id, &dev_info); 4808 if (ret != 0) 4809 return; 4810 4811 if ((ports[res->port_id].tso_segsz != 0) && 4812 (dev_info.tx_offload_capa & DEV_TX_OFFLOAD_TCP_TSO) == 0) { 4813 printf("Warning: TSO enabled but not " 4814 "supported by port %d\n", res->port_id); 4815 } 4816 4817 cmd_reconfig_device_queue(res->port_id, 1, 1); 4818 } 4819 4820 cmdline_parse_token_string_t cmd_tso_set_tso = 4821 TOKEN_STRING_INITIALIZER(struct cmd_tso_set_result, 4822 tso, "tso"); 4823 cmdline_parse_token_string_t cmd_tso_set_mode = 4824 TOKEN_STRING_INITIALIZER(struct cmd_tso_set_result, 4825 mode, "set"); 4826 cmdline_parse_token_num_t cmd_tso_set_tso_segsz = 4827 TOKEN_NUM_INITIALIZER(struct cmd_tso_set_result, 4828 tso_segsz, RTE_UINT16); 4829 cmdline_parse_token_num_t cmd_tso_set_portid = 4830 TOKEN_NUM_INITIALIZER(struct cmd_tso_set_result, 4831 port_id, RTE_UINT16); 4832 4833 cmdline_parse_inst_t cmd_tso_set = { 4834 .f = cmd_tso_set_parsed, 4835 .data = NULL, 4836 .help_str = "tso set <tso_segsz> <port_id>: " 4837 "Set TSO segment size of non-tunneled packets for csum engine " 4838 "(0 to disable)", 4839 .tokens = { 4840 (void *)&cmd_tso_set_tso, 4841 (void *)&cmd_tso_set_mode, 4842 (void *)&cmd_tso_set_tso_segsz, 4843 (void *)&cmd_tso_set_portid, 4844 NULL, 4845 }, 4846 }; 4847 4848 cmdline_parse_token_string_t cmd_tso_show_mode = 4849 TOKEN_STRING_INITIALIZER(struct cmd_tso_set_result, 4850 mode, "show"); 4851 4852 4853 cmdline_parse_inst_t cmd_tso_show = { 4854 .f = cmd_tso_set_parsed, 4855 .data = NULL, 4856 .help_str = "tso show <port_id>: " 4857 "Show TSO segment size of non-tunneled packets for csum engine", 4858 .tokens = { 4859 (void *)&cmd_tso_set_tso, 4860 (void *)&cmd_tso_show_mode, 4861 (void *)&cmd_tso_set_portid, 4862 NULL, 4863 }, 4864 }; 4865 4866 /* *** ENABLE HARDWARE SEGMENTATION IN TX TUNNELED PACKETS *** */ 4867 struct cmd_tunnel_tso_set_result { 4868 cmdline_fixed_string_t tso; 4869 cmdline_fixed_string_t mode; 4870 uint16_t tso_segsz; 4871 portid_t port_id; 4872 }; 4873 4874 static struct rte_eth_dev_info 4875 check_tunnel_tso_nic_support(portid_t port_id) 4876 { 4877 struct rte_eth_dev_info dev_info; 4878 4879 if (eth_dev_info_get_print_err(port_id, &dev_info) != 0) 4880 return dev_info; 4881 4882 if (!(dev_info.tx_offload_capa & DEV_TX_OFFLOAD_VXLAN_TNL_TSO)) 4883 printf("Warning: VXLAN TUNNEL TSO not supported therefore " 4884 "not enabled for port %d\n", port_id); 4885 if (!(dev_info.tx_offload_capa & DEV_TX_OFFLOAD_GRE_TNL_TSO)) 4886 printf("Warning: GRE TUNNEL TSO not supported therefore " 4887 "not enabled for port %d\n", port_id); 4888 if (!(dev_info.tx_offload_capa & DEV_TX_OFFLOAD_IPIP_TNL_TSO)) 4889 printf("Warning: IPIP TUNNEL TSO not supported therefore " 4890 "not enabled for port %d\n", port_id); 4891 if (!(dev_info.tx_offload_capa & DEV_TX_OFFLOAD_GENEVE_TNL_TSO)) 4892 printf("Warning: GENEVE TUNNEL TSO not supported therefore " 4893 "not enabled for port %d\n", port_id); 4894 if (!(dev_info.tx_offload_capa & DEV_TX_OFFLOAD_IP_TNL_TSO)) 4895 printf("Warning: IP TUNNEL TSO not supported therefore " 4896 "not enabled for port %d\n", port_id); 4897 if (!(dev_info.tx_offload_capa & DEV_TX_OFFLOAD_UDP_TNL_TSO)) 4898 printf("Warning: UDP TUNNEL TSO not supported therefore " 4899 "not enabled for port %d\n", port_id); 4900 return dev_info; 4901 } 4902 4903 static void 4904 cmd_tunnel_tso_set_parsed(void *parsed_result, 4905 __rte_unused struct cmdline *cl, 4906 __rte_unused void *data) 4907 { 4908 struct cmd_tunnel_tso_set_result *res = parsed_result; 4909 struct rte_eth_dev_info dev_info; 4910 4911 if (port_id_is_invalid(res->port_id, ENABLED_WARN)) 4912 return; 4913 if (!port_is_stopped(res->port_id)) { 4914 printf("Please stop port %d first\n", res->port_id); 4915 return; 4916 } 4917 4918 if (!strcmp(res->mode, "set")) 4919 ports[res->port_id].tunnel_tso_segsz = res->tso_segsz; 4920 4921 dev_info = check_tunnel_tso_nic_support(res->port_id); 4922 if (ports[res->port_id].tunnel_tso_segsz == 0) { 4923 ports[res->port_id].dev_conf.txmode.offloads &= 4924 ~(DEV_TX_OFFLOAD_VXLAN_TNL_TSO | 4925 DEV_TX_OFFLOAD_GRE_TNL_TSO | 4926 DEV_TX_OFFLOAD_IPIP_TNL_TSO | 4927 DEV_TX_OFFLOAD_GENEVE_TNL_TSO | 4928 DEV_TX_OFFLOAD_IP_TNL_TSO | 4929 DEV_TX_OFFLOAD_UDP_TNL_TSO); 4930 printf("TSO for tunneled packets is disabled\n"); 4931 } else { 4932 uint64_t tso_offloads = (DEV_TX_OFFLOAD_VXLAN_TNL_TSO | 4933 DEV_TX_OFFLOAD_GRE_TNL_TSO | 4934 DEV_TX_OFFLOAD_IPIP_TNL_TSO | 4935 DEV_TX_OFFLOAD_GENEVE_TNL_TSO | 4936 DEV_TX_OFFLOAD_IP_TNL_TSO | 4937 DEV_TX_OFFLOAD_UDP_TNL_TSO); 4938 4939 ports[res->port_id].dev_conf.txmode.offloads |= 4940 (tso_offloads & dev_info.tx_offload_capa); 4941 printf("TSO segment size for tunneled packets is %d\n", 4942 ports[res->port_id].tunnel_tso_segsz); 4943 4944 /* Below conditions are needed to make it work: 4945 * (1) tunnel TSO is supported by the NIC; 4946 * (2) "csum parse_tunnel" must be set so that tunneled pkts 4947 * are recognized; 4948 * (3) for tunneled pkts with outer L3 of IPv4, 4949 * "csum set outer-ip" must be set to hw, because after tso, 4950 * total_len of outer IP header is changed, and the checksum 4951 * of outer IP header calculated by sw should be wrong; that 4952 * is not necessary for IPv6 tunneled pkts because there's no 4953 * checksum in IP header anymore. 4954 */ 4955 4956 if (!ports[res->port_id].parse_tunnel) 4957 printf("Warning: csum parse_tunnel must be set " 4958 "so that tunneled packets are recognized\n"); 4959 if (!(ports[res->port_id].dev_conf.txmode.offloads & 4960 DEV_TX_OFFLOAD_OUTER_IPV4_CKSUM)) 4961 printf("Warning: csum set outer-ip must be set to hw " 4962 "if outer L3 is IPv4; not necessary for IPv6\n"); 4963 } 4964 4965 cmd_config_queue_tx_offloads(&ports[res->port_id]); 4966 cmd_reconfig_device_queue(res->port_id, 1, 1); 4967 } 4968 4969 cmdline_parse_token_string_t cmd_tunnel_tso_set_tso = 4970 TOKEN_STRING_INITIALIZER(struct cmd_tunnel_tso_set_result, 4971 tso, "tunnel_tso"); 4972 cmdline_parse_token_string_t cmd_tunnel_tso_set_mode = 4973 TOKEN_STRING_INITIALIZER(struct cmd_tunnel_tso_set_result, 4974 mode, "set"); 4975 cmdline_parse_token_num_t cmd_tunnel_tso_set_tso_segsz = 4976 TOKEN_NUM_INITIALIZER(struct cmd_tunnel_tso_set_result, 4977 tso_segsz, RTE_UINT16); 4978 cmdline_parse_token_num_t cmd_tunnel_tso_set_portid = 4979 TOKEN_NUM_INITIALIZER(struct cmd_tunnel_tso_set_result, 4980 port_id, RTE_UINT16); 4981 4982 cmdline_parse_inst_t cmd_tunnel_tso_set = { 4983 .f = cmd_tunnel_tso_set_parsed, 4984 .data = NULL, 4985 .help_str = "tunnel_tso set <tso_segsz> <port_id>: " 4986 "Set TSO segment size of tunneled packets for csum engine " 4987 "(0 to disable)", 4988 .tokens = { 4989 (void *)&cmd_tunnel_tso_set_tso, 4990 (void *)&cmd_tunnel_tso_set_mode, 4991 (void *)&cmd_tunnel_tso_set_tso_segsz, 4992 (void *)&cmd_tunnel_tso_set_portid, 4993 NULL, 4994 }, 4995 }; 4996 4997 cmdline_parse_token_string_t cmd_tunnel_tso_show_mode = 4998 TOKEN_STRING_INITIALIZER(struct cmd_tunnel_tso_set_result, 4999 mode, "show"); 5000 5001 5002 cmdline_parse_inst_t cmd_tunnel_tso_show = { 5003 .f = cmd_tunnel_tso_set_parsed, 5004 .data = NULL, 5005 .help_str = "tunnel_tso show <port_id> " 5006 "Show TSO segment size of tunneled packets for csum engine", 5007 .tokens = { 5008 (void *)&cmd_tunnel_tso_set_tso, 5009 (void *)&cmd_tunnel_tso_show_mode, 5010 (void *)&cmd_tunnel_tso_set_portid, 5011 NULL, 5012 }, 5013 }; 5014 5015 /* *** SET GRO FOR A PORT *** */ 5016 struct cmd_gro_enable_result { 5017 cmdline_fixed_string_t cmd_set; 5018 cmdline_fixed_string_t cmd_port; 5019 cmdline_fixed_string_t cmd_keyword; 5020 cmdline_fixed_string_t cmd_onoff; 5021 portid_t cmd_pid; 5022 }; 5023 5024 static void 5025 cmd_gro_enable_parsed(void *parsed_result, 5026 __rte_unused struct cmdline *cl, 5027 __rte_unused void *data) 5028 { 5029 struct cmd_gro_enable_result *res; 5030 5031 res = parsed_result; 5032 if (!strcmp(res->cmd_keyword, "gro")) 5033 setup_gro(res->cmd_onoff, res->cmd_pid); 5034 } 5035 5036 cmdline_parse_token_string_t cmd_gro_enable_set = 5037 TOKEN_STRING_INITIALIZER(struct cmd_gro_enable_result, 5038 cmd_set, "set"); 5039 cmdline_parse_token_string_t cmd_gro_enable_port = 5040 TOKEN_STRING_INITIALIZER(struct cmd_gro_enable_result, 5041 cmd_keyword, "port"); 5042 cmdline_parse_token_num_t cmd_gro_enable_pid = 5043 TOKEN_NUM_INITIALIZER(struct cmd_gro_enable_result, 5044 cmd_pid, RTE_UINT16); 5045 cmdline_parse_token_string_t cmd_gro_enable_keyword = 5046 TOKEN_STRING_INITIALIZER(struct cmd_gro_enable_result, 5047 cmd_keyword, "gro"); 5048 cmdline_parse_token_string_t cmd_gro_enable_onoff = 5049 TOKEN_STRING_INITIALIZER(struct cmd_gro_enable_result, 5050 cmd_onoff, "on#off"); 5051 5052 cmdline_parse_inst_t cmd_gro_enable = { 5053 .f = cmd_gro_enable_parsed, 5054 .data = NULL, 5055 .help_str = "set port <port_id> gro on|off", 5056 .tokens = { 5057 (void *)&cmd_gro_enable_set, 5058 (void *)&cmd_gro_enable_port, 5059 (void *)&cmd_gro_enable_pid, 5060 (void *)&cmd_gro_enable_keyword, 5061 (void *)&cmd_gro_enable_onoff, 5062 NULL, 5063 }, 5064 }; 5065 5066 /* *** DISPLAY GRO CONFIGURATION *** */ 5067 struct cmd_gro_show_result { 5068 cmdline_fixed_string_t cmd_show; 5069 cmdline_fixed_string_t cmd_port; 5070 cmdline_fixed_string_t cmd_keyword; 5071 portid_t cmd_pid; 5072 }; 5073 5074 static void 5075 cmd_gro_show_parsed(void *parsed_result, 5076 __rte_unused struct cmdline *cl, 5077 __rte_unused void *data) 5078 { 5079 struct cmd_gro_show_result *res; 5080 5081 res = parsed_result; 5082 if (!strcmp(res->cmd_keyword, "gro")) 5083 show_gro(res->cmd_pid); 5084 } 5085 5086 cmdline_parse_token_string_t cmd_gro_show_show = 5087 TOKEN_STRING_INITIALIZER(struct cmd_gro_show_result, 5088 cmd_show, "show"); 5089 cmdline_parse_token_string_t cmd_gro_show_port = 5090 TOKEN_STRING_INITIALIZER(struct cmd_gro_show_result, 5091 cmd_port, "port"); 5092 cmdline_parse_token_num_t cmd_gro_show_pid = 5093 TOKEN_NUM_INITIALIZER(struct cmd_gro_show_result, 5094 cmd_pid, RTE_UINT16); 5095 cmdline_parse_token_string_t cmd_gro_show_keyword = 5096 TOKEN_STRING_INITIALIZER(struct cmd_gro_show_result, 5097 cmd_keyword, "gro"); 5098 5099 cmdline_parse_inst_t cmd_gro_show = { 5100 .f = cmd_gro_show_parsed, 5101 .data = NULL, 5102 .help_str = "show port <port_id> gro", 5103 .tokens = { 5104 (void *)&cmd_gro_show_show, 5105 (void *)&cmd_gro_show_port, 5106 (void *)&cmd_gro_show_pid, 5107 (void *)&cmd_gro_show_keyword, 5108 NULL, 5109 }, 5110 }; 5111 5112 /* *** SET FLUSH CYCLES FOR GRO *** */ 5113 struct cmd_gro_flush_result { 5114 cmdline_fixed_string_t cmd_set; 5115 cmdline_fixed_string_t cmd_keyword; 5116 cmdline_fixed_string_t cmd_flush; 5117 uint8_t cmd_cycles; 5118 }; 5119 5120 static void 5121 cmd_gro_flush_parsed(void *parsed_result, 5122 __rte_unused struct cmdline *cl, 5123 __rte_unused void *data) 5124 { 5125 struct cmd_gro_flush_result *res; 5126 5127 res = parsed_result; 5128 if ((!strcmp(res->cmd_keyword, "gro")) && 5129 (!strcmp(res->cmd_flush, "flush"))) 5130 setup_gro_flush_cycles(res->cmd_cycles); 5131 } 5132 5133 cmdline_parse_token_string_t cmd_gro_flush_set = 5134 TOKEN_STRING_INITIALIZER(struct cmd_gro_flush_result, 5135 cmd_set, "set"); 5136 cmdline_parse_token_string_t cmd_gro_flush_keyword = 5137 TOKEN_STRING_INITIALIZER(struct cmd_gro_flush_result, 5138 cmd_keyword, "gro"); 5139 cmdline_parse_token_string_t cmd_gro_flush_flush = 5140 TOKEN_STRING_INITIALIZER(struct cmd_gro_flush_result, 5141 cmd_flush, "flush"); 5142 cmdline_parse_token_num_t cmd_gro_flush_cycles = 5143 TOKEN_NUM_INITIALIZER(struct cmd_gro_flush_result, 5144 cmd_cycles, RTE_UINT8); 5145 5146 cmdline_parse_inst_t cmd_gro_flush = { 5147 .f = cmd_gro_flush_parsed, 5148 .data = NULL, 5149 .help_str = "set gro flush <cycles>", 5150 .tokens = { 5151 (void *)&cmd_gro_flush_set, 5152 (void *)&cmd_gro_flush_keyword, 5153 (void *)&cmd_gro_flush_flush, 5154 (void *)&cmd_gro_flush_cycles, 5155 NULL, 5156 }, 5157 }; 5158 5159 /* *** ENABLE/DISABLE GSO *** */ 5160 struct cmd_gso_enable_result { 5161 cmdline_fixed_string_t cmd_set; 5162 cmdline_fixed_string_t cmd_port; 5163 cmdline_fixed_string_t cmd_keyword; 5164 cmdline_fixed_string_t cmd_mode; 5165 portid_t cmd_pid; 5166 }; 5167 5168 static void 5169 cmd_gso_enable_parsed(void *parsed_result, 5170 __rte_unused struct cmdline *cl, 5171 __rte_unused void *data) 5172 { 5173 struct cmd_gso_enable_result *res; 5174 5175 res = parsed_result; 5176 if (!strcmp(res->cmd_keyword, "gso")) 5177 setup_gso(res->cmd_mode, res->cmd_pid); 5178 } 5179 5180 cmdline_parse_token_string_t cmd_gso_enable_set = 5181 TOKEN_STRING_INITIALIZER(struct cmd_gso_enable_result, 5182 cmd_set, "set"); 5183 cmdline_parse_token_string_t cmd_gso_enable_port = 5184 TOKEN_STRING_INITIALIZER(struct cmd_gso_enable_result, 5185 cmd_port, "port"); 5186 cmdline_parse_token_string_t cmd_gso_enable_keyword = 5187 TOKEN_STRING_INITIALIZER(struct cmd_gso_enable_result, 5188 cmd_keyword, "gso"); 5189 cmdline_parse_token_string_t cmd_gso_enable_mode = 5190 TOKEN_STRING_INITIALIZER(struct cmd_gso_enable_result, 5191 cmd_mode, "on#off"); 5192 cmdline_parse_token_num_t cmd_gso_enable_pid = 5193 TOKEN_NUM_INITIALIZER(struct cmd_gso_enable_result, 5194 cmd_pid, RTE_UINT16); 5195 5196 cmdline_parse_inst_t cmd_gso_enable = { 5197 .f = cmd_gso_enable_parsed, 5198 .data = NULL, 5199 .help_str = "set port <port_id> gso on|off", 5200 .tokens = { 5201 (void *)&cmd_gso_enable_set, 5202 (void *)&cmd_gso_enable_port, 5203 (void *)&cmd_gso_enable_pid, 5204 (void *)&cmd_gso_enable_keyword, 5205 (void *)&cmd_gso_enable_mode, 5206 NULL, 5207 }, 5208 }; 5209 5210 /* *** SET MAX PACKET LENGTH FOR GSO SEGMENTS *** */ 5211 struct cmd_gso_size_result { 5212 cmdline_fixed_string_t cmd_set; 5213 cmdline_fixed_string_t cmd_keyword; 5214 cmdline_fixed_string_t cmd_segsz; 5215 uint16_t cmd_size; 5216 }; 5217 5218 static void 5219 cmd_gso_size_parsed(void *parsed_result, 5220 __rte_unused struct cmdline *cl, 5221 __rte_unused void *data) 5222 { 5223 struct cmd_gso_size_result *res = parsed_result; 5224 5225 if (test_done == 0) { 5226 printf("Before setting GSO segsz, please first" 5227 " stop forwarding\n"); 5228 return; 5229 } 5230 5231 if (!strcmp(res->cmd_keyword, "gso") && 5232 !strcmp(res->cmd_segsz, "segsz")) { 5233 if (res->cmd_size < RTE_GSO_SEG_SIZE_MIN) 5234 printf("gso_size should be larger than %zu." 5235 " Please input a legal value\n", 5236 RTE_GSO_SEG_SIZE_MIN); 5237 else 5238 gso_max_segment_size = res->cmd_size; 5239 } 5240 } 5241 5242 cmdline_parse_token_string_t cmd_gso_size_set = 5243 TOKEN_STRING_INITIALIZER(struct cmd_gso_size_result, 5244 cmd_set, "set"); 5245 cmdline_parse_token_string_t cmd_gso_size_keyword = 5246 TOKEN_STRING_INITIALIZER(struct cmd_gso_size_result, 5247 cmd_keyword, "gso"); 5248 cmdline_parse_token_string_t cmd_gso_size_segsz = 5249 TOKEN_STRING_INITIALIZER(struct cmd_gso_size_result, 5250 cmd_segsz, "segsz"); 5251 cmdline_parse_token_num_t cmd_gso_size_size = 5252 TOKEN_NUM_INITIALIZER(struct cmd_gso_size_result, 5253 cmd_size, RTE_UINT16); 5254 5255 cmdline_parse_inst_t cmd_gso_size = { 5256 .f = cmd_gso_size_parsed, 5257 .data = NULL, 5258 .help_str = "set gso segsz <length>", 5259 .tokens = { 5260 (void *)&cmd_gso_size_set, 5261 (void *)&cmd_gso_size_keyword, 5262 (void *)&cmd_gso_size_segsz, 5263 (void *)&cmd_gso_size_size, 5264 NULL, 5265 }, 5266 }; 5267 5268 /* *** SHOW GSO CONFIGURATION *** */ 5269 struct cmd_gso_show_result { 5270 cmdline_fixed_string_t cmd_show; 5271 cmdline_fixed_string_t cmd_port; 5272 cmdline_fixed_string_t cmd_keyword; 5273 portid_t cmd_pid; 5274 }; 5275 5276 static void 5277 cmd_gso_show_parsed(void *parsed_result, 5278 __rte_unused struct cmdline *cl, 5279 __rte_unused void *data) 5280 { 5281 struct cmd_gso_show_result *res = parsed_result; 5282 5283 if (!rte_eth_dev_is_valid_port(res->cmd_pid)) { 5284 printf("invalid port id %u\n", res->cmd_pid); 5285 return; 5286 } 5287 if (!strcmp(res->cmd_keyword, "gso")) { 5288 if (gso_ports[res->cmd_pid].enable) { 5289 printf("Max GSO'd packet size: %uB\n" 5290 "Supported GSO types: TCP/IPv4, " 5291 "UDP/IPv4, VxLAN with inner " 5292 "TCP/IPv4 packet, GRE with inner " 5293 "TCP/IPv4 packet\n", 5294 gso_max_segment_size); 5295 } else 5296 printf("GSO is not enabled on Port %u\n", res->cmd_pid); 5297 } 5298 } 5299 5300 cmdline_parse_token_string_t cmd_gso_show_show = 5301 TOKEN_STRING_INITIALIZER(struct cmd_gso_show_result, 5302 cmd_show, "show"); 5303 cmdline_parse_token_string_t cmd_gso_show_port = 5304 TOKEN_STRING_INITIALIZER(struct cmd_gso_show_result, 5305 cmd_port, "port"); 5306 cmdline_parse_token_string_t cmd_gso_show_keyword = 5307 TOKEN_STRING_INITIALIZER(struct cmd_gso_show_result, 5308 cmd_keyword, "gso"); 5309 cmdline_parse_token_num_t cmd_gso_show_pid = 5310 TOKEN_NUM_INITIALIZER(struct cmd_gso_show_result, 5311 cmd_pid, RTE_UINT16); 5312 5313 cmdline_parse_inst_t cmd_gso_show = { 5314 .f = cmd_gso_show_parsed, 5315 .data = NULL, 5316 .help_str = "show port <port_id> gso", 5317 .tokens = { 5318 (void *)&cmd_gso_show_show, 5319 (void *)&cmd_gso_show_port, 5320 (void *)&cmd_gso_show_pid, 5321 (void *)&cmd_gso_show_keyword, 5322 NULL, 5323 }, 5324 }; 5325 5326 /* *** ENABLE/DISABLE FLUSH ON RX STREAMS *** */ 5327 struct cmd_set_flush_rx { 5328 cmdline_fixed_string_t set; 5329 cmdline_fixed_string_t flush_rx; 5330 cmdline_fixed_string_t mode; 5331 }; 5332 5333 static void 5334 cmd_set_flush_rx_parsed(void *parsed_result, 5335 __rte_unused struct cmdline *cl, 5336 __rte_unused void *data) 5337 { 5338 struct cmd_set_flush_rx *res = parsed_result; 5339 no_flush_rx = (uint8_t)((strcmp(res->mode, "on") == 0) ? 0 : 1); 5340 } 5341 5342 cmdline_parse_token_string_t cmd_setflushrx_set = 5343 TOKEN_STRING_INITIALIZER(struct cmd_set_flush_rx, 5344 set, "set"); 5345 cmdline_parse_token_string_t cmd_setflushrx_flush_rx = 5346 TOKEN_STRING_INITIALIZER(struct cmd_set_flush_rx, 5347 flush_rx, "flush_rx"); 5348 cmdline_parse_token_string_t cmd_setflushrx_mode = 5349 TOKEN_STRING_INITIALIZER(struct cmd_set_flush_rx, 5350 mode, "on#off"); 5351 5352 5353 cmdline_parse_inst_t cmd_set_flush_rx = { 5354 .f = cmd_set_flush_rx_parsed, 5355 .help_str = "set flush_rx on|off: Enable/Disable flush on rx streams", 5356 .data = NULL, 5357 .tokens = { 5358 (void *)&cmd_setflushrx_set, 5359 (void *)&cmd_setflushrx_flush_rx, 5360 (void *)&cmd_setflushrx_mode, 5361 NULL, 5362 }, 5363 }; 5364 5365 /* *** ENABLE/DISABLE LINK STATUS CHECK *** */ 5366 struct cmd_set_link_check { 5367 cmdline_fixed_string_t set; 5368 cmdline_fixed_string_t link_check; 5369 cmdline_fixed_string_t mode; 5370 }; 5371 5372 static void 5373 cmd_set_link_check_parsed(void *parsed_result, 5374 __rte_unused struct cmdline *cl, 5375 __rte_unused void *data) 5376 { 5377 struct cmd_set_link_check *res = parsed_result; 5378 no_link_check = (uint8_t)((strcmp(res->mode, "on") == 0) ? 0 : 1); 5379 } 5380 5381 cmdline_parse_token_string_t cmd_setlinkcheck_set = 5382 TOKEN_STRING_INITIALIZER(struct cmd_set_link_check, 5383 set, "set"); 5384 cmdline_parse_token_string_t cmd_setlinkcheck_link_check = 5385 TOKEN_STRING_INITIALIZER(struct cmd_set_link_check, 5386 link_check, "link_check"); 5387 cmdline_parse_token_string_t cmd_setlinkcheck_mode = 5388 TOKEN_STRING_INITIALIZER(struct cmd_set_link_check, 5389 mode, "on#off"); 5390 5391 5392 cmdline_parse_inst_t cmd_set_link_check = { 5393 .f = cmd_set_link_check_parsed, 5394 .help_str = "set link_check on|off: Enable/Disable link status check " 5395 "when starting/stopping a port", 5396 .data = NULL, 5397 .tokens = { 5398 (void *)&cmd_setlinkcheck_set, 5399 (void *)&cmd_setlinkcheck_link_check, 5400 (void *)&cmd_setlinkcheck_mode, 5401 NULL, 5402 }, 5403 }; 5404 5405 /* *** SET NIC BYPASS MODE *** */ 5406 struct cmd_set_bypass_mode_result { 5407 cmdline_fixed_string_t set; 5408 cmdline_fixed_string_t bypass; 5409 cmdline_fixed_string_t mode; 5410 cmdline_fixed_string_t value; 5411 portid_t port_id; 5412 }; 5413 5414 static void 5415 cmd_set_bypass_mode_parsed(void *parsed_result, 5416 __rte_unused struct cmdline *cl, 5417 __rte_unused void *data) 5418 { 5419 struct cmd_set_bypass_mode_result *res = parsed_result; 5420 portid_t port_id = res->port_id; 5421 int32_t rc = -EINVAL; 5422 5423 #if defined RTE_NET_IXGBE && defined RTE_LIBRTE_IXGBE_BYPASS 5424 uint32_t bypass_mode = RTE_PMD_IXGBE_BYPASS_MODE_NORMAL; 5425 5426 if (!strcmp(res->value, "bypass")) 5427 bypass_mode = RTE_PMD_IXGBE_BYPASS_MODE_BYPASS; 5428 else if (!strcmp(res->value, "isolate")) 5429 bypass_mode = RTE_PMD_IXGBE_BYPASS_MODE_ISOLATE; 5430 else 5431 bypass_mode = RTE_PMD_IXGBE_BYPASS_MODE_NORMAL; 5432 5433 /* Set the bypass mode for the relevant port. */ 5434 rc = rte_pmd_ixgbe_bypass_state_set(port_id, &bypass_mode); 5435 #endif 5436 if (rc != 0) 5437 printf("\t Failed to set bypass mode for port = %d.\n", port_id); 5438 } 5439 5440 cmdline_parse_token_string_t cmd_setbypass_mode_set = 5441 TOKEN_STRING_INITIALIZER(struct cmd_set_bypass_mode_result, 5442 set, "set"); 5443 cmdline_parse_token_string_t cmd_setbypass_mode_bypass = 5444 TOKEN_STRING_INITIALIZER(struct cmd_set_bypass_mode_result, 5445 bypass, "bypass"); 5446 cmdline_parse_token_string_t cmd_setbypass_mode_mode = 5447 TOKEN_STRING_INITIALIZER(struct cmd_set_bypass_mode_result, 5448 mode, "mode"); 5449 cmdline_parse_token_string_t cmd_setbypass_mode_value = 5450 TOKEN_STRING_INITIALIZER(struct cmd_set_bypass_mode_result, 5451 value, "normal#bypass#isolate"); 5452 cmdline_parse_token_num_t cmd_setbypass_mode_port = 5453 TOKEN_NUM_INITIALIZER(struct cmd_set_bypass_mode_result, 5454 port_id, RTE_UINT16); 5455 5456 cmdline_parse_inst_t cmd_set_bypass_mode = { 5457 .f = cmd_set_bypass_mode_parsed, 5458 .help_str = "set bypass mode normal|bypass|isolate <port_id>: " 5459 "Set the NIC bypass mode for port_id", 5460 .data = NULL, 5461 .tokens = { 5462 (void *)&cmd_setbypass_mode_set, 5463 (void *)&cmd_setbypass_mode_bypass, 5464 (void *)&cmd_setbypass_mode_mode, 5465 (void *)&cmd_setbypass_mode_value, 5466 (void *)&cmd_setbypass_mode_port, 5467 NULL, 5468 }, 5469 }; 5470 5471 /* *** SET NIC BYPASS EVENT *** */ 5472 struct cmd_set_bypass_event_result { 5473 cmdline_fixed_string_t set; 5474 cmdline_fixed_string_t bypass; 5475 cmdline_fixed_string_t event; 5476 cmdline_fixed_string_t event_value; 5477 cmdline_fixed_string_t mode; 5478 cmdline_fixed_string_t mode_value; 5479 portid_t port_id; 5480 }; 5481 5482 static void 5483 cmd_set_bypass_event_parsed(void *parsed_result, 5484 __rte_unused struct cmdline *cl, 5485 __rte_unused void *data) 5486 { 5487 int32_t rc = -EINVAL; 5488 struct cmd_set_bypass_event_result *res = parsed_result; 5489 portid_t port_id = res->port_id; 5490 5491 #if defined RTE_NET_IXGBE && defined RTE_LIBRTE_IXGBE_BYPASS 5492 uint32_t bypass_event = RTE_PMD_IXGBE_BYPASS_EVENT_NONE; 5493 uint32_t bypass_mode = RTE_PMD_IXGBE_BYPASS_MODE_NORMAL; 5494 5495 if (!strcmp(res->event_value, "timeout")) 5496 bypass_event = RTE_PMD_IXGBE_BYPASS_EVENT_TIMEOUT; 5497 else if (!strcmp(res->event_value, "os_on")) 5498 bypass_event = RTE_PMD_IXGBE_BYPASS_EVENT_OS_ON; 5499 else if (!strcmp(res->event_value, "os_off")) 5500 bypass_event = RTE_PMD_IXGBE_BYPASS_EVENT_OS_OFF; 5501 else if (!strcmp(res->event_value, "power_on")) 5502 bypass_event = RTE_PMD_IXGBE_BYPASS_EVENT_POWER_ON; 5503 else if (!strcmp(res->event_value, "power_off")) 5504 bypass_event = RTE_PMD_IXGBE_BYPASS_EVENT_POWER_OFF; 5505 else 5506 bypass_event = RTE_PMD_IXGBE_BYPASS_EVENT_NONE; 5507 5508 if (!strcmp(res->mode_value, "bypass")) 5509 bypass_mode = RTE_PMD_IXGBE_BYPASS_MODE_BYPASS; 5510 else if (!strcmp(res->mode_value, "isolate")) 5511 bypass_mode = RTE_PMD_IXGBE_BYPASS_MODE_ISOLATE; 5512 else 5513 bypass_mode = RTE_PMD_IXGBE_BYPASS_MODE_NORMAL; 5514 5515 /* Set the watchdog timeout. */ 5516 if (bypass_event == RTE_PMD_IXGBE_BYPASS_EVENT_TIMEOUT) { 5517 5518 rc = -EINVAL; 5519 if (RTE_PMD_IXGBE_BYPASS_TMT_VALID(bypass_timeout)) { 5520 rc = rte_pmd_ixgbe_bypass_wd_timeout_store(port_id, 5521 bypass_timeout); 5522 } 5523 if (rc != 0) { 5524 printf("Failed to set timeout value %u " 5525 "for port %d, errto code: %d.\n", 5526 bypass_timeout, port_id, rc); 5527 } 5528 } 5529 5530 /* Set the bypass event to transition to bypass mode. */ 5531 rc = rte_pmd_ixgbe_bypass_event_store(port_id, bypass_event, 5532 bypass_mode); 5533 #endif 5534 5535 if (rc != 0) 5536 printf("\t Failed to set bypass event for port = %d.\n", 5537 port_id); 5538 } 5539 5540 cmdline_parse_token_string_t cmd_setbypass_event_set = 5541 TOKEN_STRING_INITIALIZER(struct cmd_set_bypass_event_result, 5542 set, "set"); 5543 cmdline_parse_token_string_t cmd_setbypass_event_bypass = 5544 TOKEN_STRING_INITIALIZER(struct cmd_set_bypass_event_result, 5545 bypass, "bypass"); 5546 cmdline_parse_token_string_t cmd_setbypass_event_event = 5547 TOKEN_STRING_INITIALIZER(struct cmd_set_bypass_event_result, 5548 event, "event"); 5549 cmdline_parse_token_string_t cmd_setbypass_event_event_value = 5550 TOKEN_STRING_INITIALIZER(struct cmd_set_bypass_event_result, 5551 event_value, "none#timeout#os_off#os_on#power_on#power_off"); 5552 cmdline_parse_token_string_t cmd_setbypass_event_mode = 5553 TOKEN_STRING_INITIALIZER(struct cmd_set_bypass_event_result, 5554 mode, "mode"); 5555 cmdline_parse_token_string_t cmd_setbypass_event_mode_value = 5556 TOKEN_STRING_INITIALIZER(struct cmd_set_bypass_event_result, 5557 mode_value, "normal#bypass#isolate"); 5558 cmdline_parse_token_num_t cmd_setbypass_event_port = 5559 TOKEN_NUM_INITIALIZER(struct cmd_set_bypass_event_result, 5560 port_id, RTE_UINT16); 5561 5562 cmdline_parse_inst_t cmd_set_bypass_event = { 5563 .f = cmd_set_bypass_event_parsed, 5564 .help_str = "set bypass event none|timeout|os_on|os_off|power_on|" 5565 "power_off mode normal|bypass|isolate <port_id>: " 5566 "Set the NIC bypass event mode for port_id", 5567 .data = NULL, 5568 .tokens = { 5569 (void *)&cmd_setbypass_event_set, 5570 (void *)&cmd_setbypass_event_bypass, 5571 (void *)&cmd_setbypass_event_event, 5572 (void *)&cmd_setbypass_event_event_value, 5573 (void *)&cmd_setbypass_event_mode, 5574 (void *)&cmd_setbypass_event_mode_value, 5575 (void *)&cmd_setbypass_event_port, 5576 NULL, 5577 }, 5578 }; 5579 5580 5581 /* *** SET NIC BYPASS TIMEOUT *** */ 5582 struct cmd_set_bypass_timeout_result { 5583 cmdline_fixed_string_t set; 5584 cmdline_fixed_string_t bypass; 5585 cmdline_fixed_string_t timeout; 5586 cmdline_fixed_string_t value; 5587 }; 5588 5589 static void 5590 cmd_set_bypass_timeout_parsed(void *parsed_result, 5591 __rte_unused struct cmdline *cl, 5592 __rte_unused void *data) 5593 { 5594 __rte_unused struct cmd_set_bypass_timeout_result *res = parsed_result; 5595 5596 #if defined RTE_NET_IXGBE && defined RTE_LIBRTE_IXGBE_BYPASS 5597 if (!strcmp(res->value, "1.5")) 5598 bypass_timeout = RTE_PMD_IXGBE_BYPASS_TMT_1_5_SEC; 5599 else if (!strcmp(res->value, "2")) 5600 bypass_timeout = RTE_PMD_IXGBE_BYPASS_TMT_2_SEC; 5601 else if (!strcmp(res->value, "3")) 5602 bypass_timeout = RTE_PMD_IXGBE_BYPASS_TMT_3_SEC; 5603 else if (!strcmp(res->value, "4")) 5604 bypass_timeout = RTE_PMD_IXGBE_BYPASS_TMT_4_SEC; 5605 else if (!strcmp(res->value, "8")) 5606 bypass_timeout = RTE_PMD_IXGBE_BYPASS_TMT_8_SEC; 5607 else if (!strcmp(res->value, "16")) 5608 bypass_timeout = RTE_PMD_IXGBE_BYPASS_TMT_16_SEC; 5609 else if (!strcmp(res->value, "32")) 5610 bypass_timeout = RTE_PMD_IXGBE_BYPASS_TMT_32_SEC; 5611 else 5612 bypass_timeout = RTE_PMD_IXGBE_BYPASS_TMT_OFF; 5613 #endif 5614 } 5615 5616 cmdline_parse_token_string_t cmd_setbypass_timeout_set = 5617 TOKEN_STRING_INITIALIZER(struct cmd_set_bypass_timeout_result, 5618 set, "set"); 5619 cmdline_parse_token_string_t cmd_setbypass_timeout_bypass = 5620 TOKEN_STRING_INITIALIZER(struct cmd_set_bypass_timeout_result, 5621 bypass, "bypass"); 5622 cmdline_parse_token_string_t cmd_setbypass_timeout_timeout = 5623 TOKEN_STRING_INITIALIZER(struct cmd_set_bypass_timeout_result, 5624 timeout, "timeout"); 5625 cmdline_parse_token_string_t cmd_setbypass_timeout_value = 5626 TOKEN_STRING_INITIALIZER(struct cmd_set_bypass_timeout_result, 5627 value, "0#1.5#2#3#4#8#16#32"); 5628 5629 cmdline_parse_inst_t cmd_set_bypass_timeout = { 5630 .f = cmd_set_bypass_timeout_parsed, 5631 .help_str = "set bypass timeout 0|1.5|2|3|4|8|16|32: " 5632 "Set the NIC bypass watchdog timeout in seconds", 5633 .data = NULL, 5634 .tokens = { 5635 (void *)&cmd_setbypass_timeout_set, 5636 (void *)&cmd_setbypass_timeout_bypass, 5637 (void *)&cmd_setbypass_timeout_timeout, 5638 (void *)&cmd_setbypass_timeout_value, 5639 NULL, 5640 }, 5641 }; 5642 5643 /* *** SHOW NIC BYPASS MODE *** */ 5644 struct cmd_show_bypass_config_result { 5645 cmdline_fixed_string_t show; 5646 cmdline_fixed_string_t bypass; 5647 cmdline_fixed_string_t config; 5648 portid_t port_id; 5649 }; 5650 5651 static void 5652 cmd_show_bypass_config_parsed(void *parsed_result, 5653 __rte_unused struct cmdline *cl, 5654 __rte_unused void *data) 5655 { 5656 struct cmd_show_bypass_config_result *res = parsed_result; 5657 portid_t port_id = res->port_id; 5658 int rc = -EINVAL; 5659 #if defined RTE_NET_IXGBE && defined RTE_LIBRTE_IXGBE_BYPASS 5660 uint32_t event_mode; 5661 uint32_t bypass_mode; 5662 uint32_t timeout = bypass_timeout; 5663 unsigned int i; 5664 5665 static const char * const timeouts[RTE_PMD_IXGBE_BYPASS_TMT_NUM] = 5666 {"off", "1.5", "2", "3", "4", "8", "16", "32"}; 5667 static const char * const modes[RTE_PMD_IXGBE_BYPASS_MODE_NUM] = 5668 {"UNKNOWN", "normal", "bypass", "isolate"}; 5669 static const char * const events[RTE_PMD_IXGBE_BYPASS_EVENT_NUM] = { 5670 "NONE", 5671 "OS/board on", 5672 "power supply on", 5673 "OS/board off", 5674 "power supply off", 5675 "timeout"}; 5676 5677 /* Display the bypass mode.*/ 5678 if (rte_pmd_ixgbe_bypass_state_show(port_id, &bypass_mode) != 0) { 5679 printf("\tFailed to get bypass mode for port = %d\n", port_id); 5680 return; 5681 } 5682 else { 5683 if (!RTE_PMD_IXGBE_BYPASS_MODE_VALID(bypass_mode)) 5684 bypass_mode = RTE_PMD_IXGBE_BYPASS_MODE_NONE; 5685 5686 printf("\tbypass mode = %s\n", modes[bypass_mode]); 5687 } 5688 5689 /* Display the bypass timeout.*/ 5690 if (!RTE_PMD_IXGBE_BYPASS_TMT_VALID(timeout)) 5691 timeout = RTE_PMD_IXGBE_BYPASS_TMT_OFF; 5692 5693 printf("\tbypass timeout = %s\n", timeouts[timeout]); 5694 5695 /* Display the bypass events and associated modes. */ 5696 for (i = RTE_PMD_IXGBE_BYPASS_EVENT_START; i < RTE_DIM(events); i++) { 5697 5698 if (rte_pmd_ixgbe_bypass_event_show(port_id, i, &event_mode)) { 5699 printf("\tFailed to get bypass mode for event = %s\n", 5700 events[i]); 5701 } else { 5702 if (!RTE_PMD_IXGBE_BYPASS_MODE_VALID(event_mode)) 5703 event_mode = RTE_PMD_IXGBE_BYPASS_MODE_NONE; 5704 5705 printf("\tbypass event: %-16s = %s\n", events[i], 5706 modes[event_mode]); 5707 } 5708 } 5709 #endif 5710 if (rc != 0) 5711 printf("\tFailed to get bypass configuration for port = %d\n", 5712 port_id); 5713 } 5714 5715 cmdline_parse_token_string_t cmd_showbypass_config_show = 5716 TOKEN_STRING_INITIALIZER(struct cmd_show_bypass_config_result, 5717 show, "show"); 5718 cmdline_parse_token_string_t cmd_showbypass_config_bypass = 5719 TOKEN_STRING_INITIALIZER(struct cmd_show_bypass_config_result, 5720 bypass, "bypass"); 5721 cmdline_parse_token_string_t cmd_showbypass_config_config = 5722 TOKEN_STRING_INITIALIZER(struct cmd_show_bypass_config_result, 5723 config, "config"); 5724 cmdline_parse_token_num_t cmd_showbypass_config_port = 5725 TOKEN_NUM_INITIALIZER(struct cmd_show_bypass_config_result, 5726 port_id, RTE_UINT16); 5727 5728 cmdline_parse_inst_t cmd_show_bypass_config = { 5729 .f = cmd_show_bypass_config_parsed, 5730 .help_str = "show bypass config <port_id>: " 5731 "Show the NIC bypass config for port_id", 5732 .data = NULL, 5733 .tokens = { 5734 (void *)&cmd_showbypass_config_show, 5735 (void *)&cmd_showbypass_config_bypass, 5736 (void *)&cmd_showbypass_config_config, 5737 (void *)&cmd_showbypass_config_port, 5738 NULL, 5739 }, 5740 }; 5741 5742 #ifdef RTE_NET_BOND 5743 /* *** SET BONDING MODE *** */ 5744 struct cmd_set_bonding_mode_result { 5745 cmdline_fixed_string_t set; 5746 cmdline_fixed_string_t bonding; 5747 cmdline_fixed_string_t mode; 5748 uint8_t value; 5749 portid_t port_id; 5750 }; 5751 5752 static void cmd_set_bonding_mode_parsed(void *parsed_result, 5753 __rte_unused struct cmdline *cl, 5754 __rte_unused void *data) 5755 { 5756 struct cmd_set_bonding_mode_result *res = parsed_result; 5757 portid_t port_id = res->port_id; 5758 5759 /* Set the bonding mode for the relevant port. */ 5760 if (0 != rte_eth_bond_mode_set(port_id, res->value)) 5761 printf("\t Failed to set bonding mode for port = %d.\n", port_id); 5762 } 5763 5764 cmdline_parse_token_string_t cmd_setbonding_mode_set = 5765 TOKEN_STRING_INITIALIZER(struct cmd_set_bonding_mode_result, 5766 set, "set"); 5767 cmdline_parse_token_string_t cmd_setbonding_mode_bonding = 5768 TOKEN_STRING_INITIALIZER(struct cmd_set_bonding_mode_result, 5769 bonding, "bonding"); 5770 cmdline_parse_token_string_t cmd_setbonding_mode_mode = 5771 TOKEN_STRING_INITIALIZER(struct cmd_set_bonding_mode_result, 5772 mode, "mode"); 5773 cmdline_parse_token_num_t cmd_setbonding_mode_value = 5774 TOKEN_NUM_INITIALIZER(struct cmd_set_bonding_mode_result, 5775 value, RTE_UINT8); 5776 cmdline_parse_token_num_t cmd_setbonding_mode_port = 5777 TOKEN_NUM_INITIALIZER(struct cmd_set_bonding_mode_result, 5778 port_id, RTE_UINT16); 5779 5780 cmdline_parse_inst_t cmd_set_bonding_mode = { 5781 .f = cmd_set_bonding_mode_parsed, 5782 .help_str = "set bonding mode <mode_value> <port_id>: " 5783 "Set the bonding mode for port_id", 5784 .data = NULL, 5785 .tokens = { 5786 (void *) &cmd_setbonding_mode_set, 5787 (void *) &cmd_setbonding_mode_bonding, 5788 (void *) &cmd_setbonding_mode_mode, 5789 (void *) &cmd_setbonding_mode_value, 5790 (void *) &cmd_setbonding_mode_port, 5791 NULL 5792 } 5793 }; 5794 5795 /* *** SET BONDING SLOW_QUEUE SW/HW *** */ 5796 struct cmd_set_bonding_lacp_dedicated_queues_result { 5797 cmdline_fixed_string_t set; 5798 cmdline_fixed_string_t bonding; 5799 cmdline_fixed_string_t lacp; 5800 cmdline_fixed_string_t dedicated_queues; 5801 portid_t port_id; 5802 cmdline_fixed_string_t mode; 5803 }; 5804 5805 static void cmd_set_bonding_lacp_dedicated_queues_parsed(void *parsed_result, 5806 __rte_unused struct cmdline *cl, 5807 __rte_unused void *data) 5808 { 5809 struct cmd_set_bonding_lacp_dedicated_queues_result *res = parsed_result; 5810 portid_t port_id = res->port_id; 5811 struct rte_port *port; 5812 5813 port = &ports[port_id]; 5814 5815 /** Check if the port is not started **/ 5816 if (port->port_status != RTE_PORT_STOPPED) { 5817 printf("Please stop port %d first\n", port_id); 5818 return; 5819 } 5820 5821 if (!strcmp(res->mode, "enable")) { 5822 if (rte_eth_bond_8023ad_dedicated_queues_enable(port_id) == 0) 5823 printf("Dedicate queues for LACP control packets" 5824 " enabled\n"); 5825 else 5826 printf("Enabling dedicate queues for LACP control " 5827 "packets on port %d failed\n", port_id); 5828 } else if (!strcmp(res->mode, "disable")) { 5829 if (rte_eth_bond_8023ad_dedicated_queues_disable(port_id) == 0) 5830 printf("Dedicated queues for LACP control packets " 5831 "disabled\n"); 5832 else 5833 printf("Disabling dedicated queues for LACP control " 5834 "traffic on port %d failed\n", port_id); 5835 } 5836 } 5837 5838 cmdline_parse_token_string_t cmd_setbonding_lacp_dedicated_queues_set = 5839 TOKEN_STRING_INITIALIZER(struct cmd_set_bonding_lacp_dedicated_queues_result, 5840 set, "set"); 5841 cmdline_parse_token_string_t cmd_setbonding_lacp_dedicated_queues_bonding = 5842 TOKEN_STRING_INITIALIZER(struct cmd_set_bonding_lacp_dedicated_queues_result, 5843 bonding, "bonding"); 5844 cmdline_parse_token_string_t cmd_setbonding_lacp_dedicated_queues_lacp = 5845 TOKEN_STRING_INITIALIZER(struct cmd_set_bonding_lacp_dedicated_queues_result, 5846 lacp, "lacp"); 5847 cmdline_parse_token_string_t cmd_setbonding_lacp_dedicated_queues_dedicated_queues = 5848 TOKEN_STRING_INITIALIZER(struct cmd_set_bonding_lacp_dedicated_queues_result, 5849 dedicated_queues, "dedicated_queues"); 5850 cmdline_parse_token_num_t cmd_setbonding_lacp_dedicated_queues_port_id = 5851 TOKEN_NUM_INITIALIZER(struct cmd_set_bonding_lacp_dedicated_queues_result, 5852 port_id, RTE_UINT16); 5853 cmdline_parse_token_string_t cmd_setbonding_lacp_dedicated_queues_mode = 5854 TOKEN_STRING_INITIALIZER(struct cmd_set_bonding_lacp_dedicated_queues_result, 5855 mode, "enable#disable"); 5856 5857 cmdline_parse_inst_t cmd_set_lacp_dedicated_queues = { 5858 .f = cmd_set_bonding_lacp_dedicated_queues_parsed, 5859 .help_str = "set bonding lacp dedicated_queues <port_id> " 5860 "enable|disable: " 5861 "Enable/disable dedicated queues for LACP control traffic for port_id", 5862 .data = NULL, 5863 .tokens = { 5864 (void *)&cmd_setbonding_lacp_dedicated_queues_set, 5865 (void *)&cmd_setbonding_lacp_dedicated_queues_bonding, 5866 (void *)&cmd_setbonding_lacp_dedicated_queues_lacp, 5867 (void *)&cmd_setbonding_lacp_dedicated_queues_dedicated_queues, 5868 (void *)&cmd_setbonding_lacp_dedicated_queues_port_id, 5869 (void *)&cmd_setbonding_lacp_dedicated_queues_mode, 5870 NULL 5871 } 5872 }; 5873 5874 /* *** SET BALANCE XMIT POLICY *** */ 5875 struct cmd_set_bonding_balance_xmit_policy_result { 5876 cmdline_fixed_string_t set; 5877 cmdline_fixed_string_t bonding; 5878 cmdline_fixed_string_t balance_xmit_policy; 5879 portid_t port_id; 5880 cmdline_fixed_string_t policy; 5881 }; 5882 5883 static void cmd_set_bonding_balance_xmit_policy_parsed(void *parsed_result, 5884 __rte_unused struct cmdline *cl, 5885 __rte_unused void *data) 5886 { 5887 struct cmd_set_bonding_balance_xmit_policy_result *res = parsed_result; 5888 portid_t port_id = res->port_id; 5889 uint8_t policy; 5890 5891 if (!strcmp(res->policy, "l2")) { 5892 policy = BALANCE_XMIT_POLICY_LAYER2; 5893 } else if (!strcmp(res->policy, "l23")) { 5894 policy = BALANCE_XMIT_POLICY_LAYER23; 5895 } else if (!strcmp(res->policy, "l34")) { 5896 policy = BALANCE_XMIT_POLICY_LAYER34; 5897 } else { 5898 printf("\t Invalid xmit policy selection"); 5899 return; 5900 } 5901 5902 /* Set the bonding mode for the relevant port. */ 5903 if (0 != rte_eth_bond_xmit_policy_set(port_id, policy)) { 5904 printf("\t Failed to set bonding balance xmit policy for port = %d.\n", 5905 port_id); 5906 } 5907 } 5908 5909 cmdline_parse_token_string_t cmd_setbonding_balance_xmit_policy_set = 5910 TOKEN_STRING_INITIALIZER(struct cmd_set_bonding_balance_xmit_policy_result, 5911 set, "set"); 5912 cmdline_parse_token_string_t cmd_setbonding_balance_xmit_policy_bonding = 5913 TOKEN_STRING_INITIALIZER(struct cmd_set_bonding_balance_xmit_policy_result, 5914 bonding, "bonding"); 5915 cmdline_parse_token_string_t cmd_setbonding_balance_xmit_policy_balance_xmit_policy = 5916 TOKEN_STRING_INITIALIZER(struct cmd_set_bonding_balance_xmit_policy_result, 5917 balance_xmit_policy, "balance_xmit_policy"); 5918 cmdline_parse_token_num_t cmd_setbonding_balance_xmit_policy_port = 5919 TOKEN_NUM_INITIALIZER(struct cmd_set_bonding_balance_xmit_policy_result, 5920 port_id, RTE_UINT16); 5921 cmdline_parse_token_string_t cmd_setbonding_balance_xmit_policy_policy = 5922 TOKEN_STRING_INITIALIZER(struct cmd_set_bonding_balance_xmit_policy_result, 5923 policy, "l2#l23#l34"); 5924 5925 cmdline_parse_inst_t cmd_set_balance_xmit_policy = { 5926 .f = cmd_set_bonding_balance_xmit_policy_parsed, 5927 .help_str = "set bonding balance_xmit_policy <port_id> " 5928 "l2|l23|l34: " 5929 "Set the bonding balance_xmit_policy for port_id", 5930 .data = NULL, 5931 .tokens = { 5932 (void *)&cmd_setbonding_balance_xmit_policy_set, 5933 (void *)&cmd_setbonding_balance_xmit_policy_bonding, 5934 (void *)&cmd_setbonding_balance_xmit_policy_balance_xmit_policy, 5935 (void *)&cmd_setbonding_balance_xmit_policy_port, 5936 (void *)&cmd_setbonding_balance_xmit_policy_policy, 5937 NULL 5938 } 5939 }; 5940 5941 /* *** SHOW NIC BONDING CONFIGURATION *** */ 5942 struct cmd_show_bonding_config_result { 5943 cmdline_fixed_string_t show; 5944 cmdline_fixed_string_t bonding; 5945 cmdline_fixed_string_t config; 5946 portid_t port_id; 5947 }; 5948 5949 static void cmd_show_bonding_config_parsed(void *parsed_result, 5950 __rte_unused struct cmdline *cl, 5951 __rte_unused void *data) 5952 { 5953 struct cmd_show_bonding_config_result *res = parsed_result; 5954 int bonding_mode, agg_mode; 5955 portid_t slaves[RTE_MAX_ETHPORTS]; 5956 int num_slaves, num_active_slaves; 5957 int primary_id; 5958 int i; 5959 portid_t port_id = res->port_id; 5960 5961 /* Display the bonding mode.*/ 5962 bonding_mode = rte_eth_bond_mode_get(port_id); 5963 if (bonding_mode < 0) { 5964 printf("\tFailed to get bonding mode for port = %d\n", port_id); 5965 return; 5966 } else 5967 printf("\tBonding mode: %d\n", bonding_mode); 5968 5969 if (bonding_mode == BONDING_MODE_BALANCE) { 5970 int balance_xmit_policy; 5971 5972 balance_xmit_policy = rte_eth_bond_xmit_policy_get(port_id); 5973 if (balance_xmit_policy < 0) { 5974 printf("\tFailed to get balance xmit policy for port = %d\n", 5975 port_id); 5976 return; 5977 } else { 5978 printf("\tBalance Xmit Policy: "); 5979 5980 switch (balance_xmit_policy) { 5981 case BALANCE_XMIT_POLICY_LAYER2: 5982 printf("BALANCE_XMIT_POLICY_LAYER2"); 5983 break; 5984 case BALANCE_XMIT_POLICY_LAYER23: 5985 printf("BALANCE_XMIT_POLICY_LAYER23"); 5986 break; 5987 case BALANCE_XMIT_POLICY_LAYER34: 5988 printf("BALANCE_XMIT_POLICY_LAYER34"); 5989 break; 5990 } 5991 printf("\n"); 5992 } 5993 } 5994 5995 if (bonding_mode == BONDING_MODE_8023AD) { 5996 agg_mode = rte_eth_bond_8023ad_agg_selection_get(port_id); 5997 printf("\tIEEE802.3AD Aggregator Mode: "); 5998 switch (agg_mode) { 5999 case AGG_BANDWIDTH: 6000 printf("bandwidth"); 6001 break; 6002 case AGG_STABLE: 6003 printf("stable"); 6004 break; 6005 case AGG_COUNT: 6006 printf("count"); 6007 break; 6008 } 6009 printf("\n"); 6010 } 6011 6012 num_slaves = rte_eth_bond_slaves_get(port_id, slaves, RTE_MAX_ETHPORTS); 6013 6014 if (num_slaves < 0) { 6015 printf("\tFailed to get slave list for port = %d\n", port_id); 6016 return; 6017 } 6018 if (num_slaves > 0) { 6019 printf("\tSlaves (%d): [", num_slaves); 6020 for (i = 0; i < num_slaves - 1; i++) 6021 printf("%d ", slaves[i]); 6022 6023 printf("%d]\n", slaves[num_slaves - 1]); 6024 } else { 6025 printf("\tSlaves: []\n"); 6026 6027 } 6028 6029 num_active_slaves = rte_eth_bond_active_slaves_get(port_id, slaves, 6030 RTE_MAX_ETHPORTS); 6031 6032 if (num_active_slaves < 0) { 6033 printf("\tFailed to get active slave list for port = %d\n", port_id); 6034 return; 6035 } 6036 if (num_active_slaves > 0) { 6037 printf("\tActive Slaves (%d): [", num_active_slaves); 6038 for (i = 0; i < num_active_slaves - 1; i++) 6039 printf("%d ", slaves[i]); 6040 6041 printf("%d]\n", slaves[num_active_slaves - 1]); 6042 6043 } else { 6044 printf("\tActive Slaves: []\n"); 6045 6046 } 6047 6048 primary_id = rte_eth_bond_primary_get(port_id); 6049 if (primary_id < 0) { 6050 printf("\tFailed to get primary slave for port = %d\n", port_id); 6051 return; 6052 } else 6053 printf("\tPrimary: [%d]\n", primary_id); 6054 6055 } 6056 6057 cmdline_parse_token_string_t cmd_showbonding_config_show = 6058 TOKEN_STRING_INITIALIZER(struct cmd_show_bonding_config_result, 6059 show, "show"); 6060 cmdline_parse_token_string_t cmd_showbonding_config_bonding = 6061 TOKEN_STRING_INITIALIZER(struct cmd_show_bonding_config_result, 6062 bonding, "bonding"); 6063 cmdline_parse_token_string_t cmd_showbonding_config_config = 6064 TOKEN_STRING_INITIALIZER(struct cmd_show_bonding_config_result, 6065 config, "config"); 6066 cmdline_parse_token_num_t cmd_showbonding_config_port = 6067 TOKEN_NUM_INITIALIZER(struct cmd_show_bonding_config_result, 6068 port_id, RTE_UINT16); 6069 6070 cmdline_parse_inst_t cmd_show_bonding_config = { 6071 .f = cmd_show_bonding_config_parsed, 6072 .help_str = "show bonding config <port_id>: " 6073 "Show the bonding config for port_id", 6074 .data = NULL, 6075 .tokens = { 6076 (void *)&cmd_showbonding_config_show, 6077 (void *)&cmd_showbonding_config_bonding, 6078 (void *)&cmd_showbonding_config_config, 6079 (void *)&cmd_showbonding_config_port, 6080 NULL 6081 } 6082 }; 6083 6084 /* *** SET BONDING PRIMARY *** */ 6085 struct cmd_set_bonding_primary_result { 6086 cmdline_fixed_string_t set; 6087 cmdline_fixed_string_t bonding; 6088 cmdline_fixed_string_t primary; 6089 portid_t slave_id; 6090 portid_t port_id; 6091 }; 6092 6093 static void cmd_set_bonding_primary_parsed(void *parsed_result, 6094 __rte_unused struct cmdline *cl, 6095 __rte_unused void *data) 6096 { 6097 struct cmd_set_bonding_primary_result *res = parsed_result; 6098 portid_t master_port_id = res->port_id; 6099 portid_t slave_port_id = res->slave_id; 6100 6101 /* Set the primary slave for a bonded device. */ 6102 if (0 != rte_eth_bond_primary_set(master_port_id, slave_port_id)) { 6103 printf("\t Failed to set primary slave for port = %d.\n", 6104 master_port_id); 6105 return; 6106 } 6107 init_port_config(); 6108 } 6109 6110 cmdline_parse_token_string_t cmd_setbonding_primary_set = 6111 TOKEN_STRING_INITIALIZER(struct cmd_set_bonding_primary_result, 6112 set, "set"); 6113 cmdline_parse_token_string_t cmd_setbonding_primary_bonding = 6114 TOKEN_STRING_INITIALIZER(struct cmd_set_bonding_primary_result, 6115 bonding, "bonding"); 6116 cmdline_parse_token_string_t cmd_setbonding_primary_primary = 6117 TOKEN_STRING_INITIALIZER(struct cmd_set_bonding_primary_result, 6118 primary, "primary"); 6119 cmdline_parse_token_num_t cmd_setbonding_primary_slave = 6120 TOKEN_NUM_INITIALIZER(struct cmd_set_bonding_primary_result, 6121 slave_id, RTE_UINT16); 6122 cmdline_parse_token_num_t cmd_setbonding_primary_port = 6123 TOKEN_NUM_INITIALIZER(struct cmd_set_bonding_primary_result, 6124 port_id, RTE_UINT16); 6125 6126 cmdline_parse_inst_t cmd_set_bonding_primary = { 6127 .f = cmd_set_bonding_primary_parsed, 6128 .help_str = "set bonding primary <slave_id> <port_id>: " 6129 "Set the primary slave for port_id", 6130 .data = NULL, 6131 .tokens = { 6132 (void *)&cmd_setbonding_primary_set, 6133 (void *)&cmd_setbonding_primary_bonding, 6134 (void *)&cmd_setbonding_primary_primary, 6135 (void *)&cmd_setbonding_primary_slave, 6136 (void *)&cmd_setbonding_primary_port, 6137 NULL 6138 } 6139 }; 6140 6141 /* *** ADD SLAVE *** */ 6142 struct cmd_add_bonding_slave_result { 6143 cmdline_fixed_string_t add; 6144 cmdline_fixed_string_t bonding; 6145 cmdline_fixed_string_t slave; 6146 portid_t slave_id; 6147 portid_t port_id; 6148 }; 6149 6150 static void cmd_add_bonding_slave_parsed(void *parsed_result, 6151 __rte_unused struct cmdline *cl, 6152 __rte_unused void *data) 6153 { 6154 struct cmd_add_bonding_slave_result *res = parsed_result; 6155 portid_t master_port_id = res->port_id; 6156 portid_t slave_port_id = res->slave_id; 6157 6158 /* add the slave for a bonded device. */ 6159 if (0 != rte_eth_bond_slave_add(master_port_id, slave_port_id)) { 6160 printf("\t Failed to add slave %d to master port = %d.\n", 6161 slave_port_id, master_port_id); 6162 return; 6163 } 6164 init_port_config(); 6165 set_port_slave_flag(slave_port_id); 6166 } 6167 6168 cmdline_parse_token_string_t cmd_addbonding_slave_add = 6169 TOKEN_STRING_INITIALIZER(struct cmd_add_bonding_slave_result, 6170 add, "add"); 6171 cmdline_parse_token_string_t cmd_addbonding_slave_bonding = 6172 TOKEN_STRING_INITIALIZER(struct cmd_add_bonding_slave_result, 6173 bonding, "bonding"); 6174 cmdline_parse_token_string_t cmd_addbonding_slave_slave = 6175 TOKEN_STRING_INITIALIZER(struct cmd_add_bonding_slave_result, 6176 slave, "slave"); 6177 cmdline_parse_token_num_t cmd_addbonding_slave_slaveid = 6178 TOKEN_NUM_INITIALIZER(struct cmd_add_bonding_slave_result, 6179 slave_id, RTE_UINT16); 6180 cmdline_parse_token_num_t cmd_addbonding_slave_port = 6181 TOKEN_NUM_INITIALIZER(struct cmd_add_bonding_slave_result, 6182 port_id, RTE_UINT16); 6183 6184 cmdline_parse_inst_t cmd_add_bonding_slave = { 6185 .f = cmd_add_bonding_slave_parsed, 6186 .help_str = "add bonding slave <slave_id> <port_id>: " 6187 "Add a slave device to a bonded device", 6188 .data = NULL, 6189 .tokens = { 6190 (void *)&cmd_addbonding_slave_add, 6191 (void *)&cmd_addbonding_slave_bonding, 6192 (void *)&cmd_addbonding_slave_slave, 6193 (void *)&cmd_addbonding_slave_slaveid, 6194 (void *)&cmd_addbonding_slave_port, 6195 NULL 6196 } 6197 }; 6198 6199 /* *** REMOVE SLAVE *** */ 6200 struct cmd_remove_bonding_slave_result { 6201 cmdline_fixed_string_t remove; 6202 cmdline_fixed_string_t bonding; 6203 cmdline_fixed_string_t slave; 6204 portid_t slave_id; 6205 portid_t port_id; 6206 }; 6207 6208 static void cmd_remove_bonding_slave_parsed(void *parsed_result, 6209 __rte_unused struct cmdline *cl, 6210 __rte_unused void *data) 6211 { 6212 struct cmd_remove_bonding_slave_result *res = parsed_result; 6213 portid_t master_port_id = res->port_id; 6214 portid_t slave_port_id = res->slave_id; 6215 6216 /* remove the slave from a bonded device. */ 6217 if (0 != rte_eth_bond_slave_remove(master_port_id, slave_port_id)) { 6218 printf("\t Failed to remove slave %d from master port = %d.\n", 6219 slave_port_id, master_port_id); 6220 return; 6221 } 6222 init_port_config(); 6223 clear_port_slave_flag(slave_port_id); 6224 } 6225 6226 cmdline_parse_token_string_t cmd_removebonding_slave_remove = 6227 TOKEN_STRING_INITIALIZER(struct cmd_remove_bonding_slave_result, 6228 remove, "remove"); 6229 cmdline_parse_token_string_t cmd_removebonding_slave_bonding = 6230 TOKEN_STRING_INITIALIZER(struct cmd_remove_bonding_slave_result, 6231 bonding, "bonding"); 6232 cmdline_parse_token_string_t cmd_removebonding_slave_slave = 6233 TOKEN_STRING_INITIALIZER(struct cmd_remove_bonding_slave_result, 6234 slave, "slave"); 6235 cmdline_parse_token_num_t cmd_removebonding_slave_slaveid = 6236 TOKEN_NUM_INITIALIZER(struct cmd_remove_bonding_slave_result, 6237 slave_id, RTE_UINT16); 6238 cmdline_parse_token_num_t cmd_removebonding_slave_port = 6239 TOKEN_NUM_INITIALIZER(struct cmd_remove_bonding_slave_result, 6240 port_id, RTE_UINT16); 6241 6242 cmdline_parse_inst_t cmd_remove_bonding_slave = { 6243 .f = cmd_remove_bonding_slave_parsed, 6244 .help_str = "remove bonding slave <slave_id> <port_id>: " 6245 "Remove a slave device from a bonded device", 6246 .data = NULL, 6247 .tokens = { 6248 (void *)&cmd_removebonding_slave_remove, 6249 (void *)&cmd_removebonding_slave_bonding, 6250 (void *)&cmd_removebonding_slave_slave, 6251 (void *)&cmd_removebonding_slave_slaveid, 6252 (void *)&cmd_removebonding_slave_port, 6253 NULL 6254 } 6255 }; 6256 6257 /* *** CREATE BONDED DEVICE *** */ 6258 struct cmd_create_bonded_device_result { 6259 cmdline_fixed_string_t create; 6260 cmdline_fixed_string_t bonded; 6261 cmdline_fixed_string_t device; 6262 uint8_t mode; 6263 uint8_t socket; 6264 }; 6265 6266 static int bond_dev_num = 0; 6267 6268 static void cmd_create_bonded_device_parsed(void *parsed_result, 6269 __rte_unused struct cmdline *cl, 6270 __rte_unused void *data) 6271 { 6272 struct cmd_create_bonded_device_result *res = parsed_result; 6273 char ethdev_name[RTE_ETH_NAME_MAX_LEN]; 6274 int port_id; 6275 int ret; 6276 6277 if (test_done == 0) { 6278 printf("Please stop forwarding first\n"); 6279 return; 6280 } 6281 6282 snprintf(ethdev_name, RTE_ETH_NAME_MAX_LEN, "net_bonding_testpmd_%d", 6283 bond_dev_num++); 6284 6285 /* Create a new bonded device. */ 6286 port_id = rte_eth_bond_create(ethdev_name, res->mode, res->socket); 6287 if (port_id < 0) { 6288 printf("\t Failed to create bonded device.\n"); 6289 return; 6290 } else { 6291 printf("Created new bonded device %s on (port %d).\n", ethdev_name, 6292 port_id); 6293 6294 /* Update number of ports */ 6295 nb_ports = rte_eth_dev_count_avail(); 6296 reconfig(port_id, res->socket); 6297 ret = rte_eth_promiscuous_enable(port_id); 6298 if (ret != 0) 6299 printf("Failed to enable promiscuous mode for port %u: %s - ignore\n", 6300 port_id, rte_strerror(-ret)); 6301 6302 ports[port_id].need_setup = 0; 6303 ports[port_id].port_status = RTE_PORT_STOPPED; 6304 } 6305 6306 } 6307 6308 cmdline_parse_token_string_t cmd_createbonded_device_create = 6309 TOKEN_STRING_INITIALIZER(struct cmd_create_bonded_device_result, 6310 create, "create"); 6311 cmdline_parse_token_string_t cmd_createbonded_device_bonded = 6312 TOKEN_STRING_INITIALIZER(struct cmd_create_bonded_device_result, 6313 bonded, "bonded"); 6314 cmdline_parse_token_string_t cmd_createbonded_device_device = 6315 TOKEN_STRING_INITIALIZER(struct cmd_create_bonded_device_result, 6316 device, "device"); 6317 cmdline_parse_token_num_t cmd_createbonded_device_mode = 6318 TOKEN_NUM_INITIALIZER(struct cmd_create_bonded_device_result, 6319 mode, RTE_UINT8); 6320 cmdline_parse_token_num_t cmd_createbonded_device_socket = 6321 TOKEN_NUM_INITIALIZER(struct cmd_create_bonded_device_result, 6322 socket, RTE_UINT8); 6323 6324 cmdline_parse_inst_t cmd_create_bonded_device = { 6325 .f = cmd_create_bonded_device_parsed, 6326 .help_str = "create bonded device <mode> <socket>: " 6327 "Create a new bonded device with specific bonding mode and socket", 6328 .data = NULL, 6329 .tokens = { 6330 (void *)&cmd_createbonded_device_create, 6331 (void *)&cmd_createbonded_device_bonded, 6332 (void *)&cmd_createbonded_device_device, 6333 (void *)&cmd_createbonded_device_mode, 6334 (void *)&cmd_createbonded_device_socket, 6335 NULL 6336 } 6337 }; 6338 6339 /* *** SET MAC ADDRESS IN BONDED DEVICE *** */ 6340 struct cmd_set_bond_mac_addr_result { 6341 cmdline_fixed_string_t set; 6342 cmdline_fixed_string_t bonding; 6343 cmdline_fixed_string_t mac_addr; 6344 uint16_t port_num; 6345 struct rte_ether_addr address; 6346 }; 6347 6348 static void cmd_set_bond_mac_addr_parsed(void *parsed_result, 6349 __rte_unused struct cmdline *cl, 6350 __rte_unused void *data) 6351 { 6352 struct cmd_set_bond_mac_addr_result *res = parsed_result; 6353 int ret; 6354 6355 if (port_id_is_invalid(res->port_num, ENABLED_WARN)) 6356 return; 6357 6358 ret = rte_eth_bond_mac_address_set(res->port_num, &res->address); 6359 6360 /* check the return value and print it if is < 0 */ 6361 if (ret < 0) 6362 printf("set_bond_mac_addr error: (%s)\n", strerror(-ret)); 6363 } 6364 6365 cmdline_parse_token_string_t cmd_set_bond_mac_addr_set = 6366 TOKEN_STRING_INITIALIZER(struct cmd_set_bond_mac_addr_result, set, "set"); 6367 cmdline_parse_token_string_t cmd_set_bond_mac_addr_bonding = 6368 TOKEN_STRING_INITIALIZER(struct cmd_set_bond_mac_addr_result, bonding, 6369 "bonding"); 6370 cmdline_parse_token_string_t cmd_set_bond_mac_addr_mac = 6371 TOKEN_STRING_INITIALIZER(struct cmd_set_bond_mac_addr_result, mac_addr, 6372 "mac_addr"); 6373 cmdline_parse_token_num_t cmd_set_bond_mac_addr_portnum = 6374 TOKEN_NUM_INITIALIZER(struct cmd_set_bond_mac_addr_result, 6375 port_num, RTE_UINT16); 6376 cmdline_parse_token_etheraddr_t cmd_set_bond_mac_addr_addr = 6377 TOKEN_ETHERADDR_INITIALIZER(struct cmd_set_bond_mac_addr_result, address); 6378 6379 cmdline_parse_inst_t cmd_set_bond_mac_addr = { 6380 .f = cmd_set_bond_mac_addr_parsed, 6381 .data = (void *) 0, 6382 .help_str = "set bonding mac_addr <port_id> <mac_addr>", 6383 .tokens = { 6384 (void *)&cmd_set_bond_mac_addr_set, 6385 (void *)&cmd_set_bond_mac_addr_bonding, 6386 (void *)&cmd_set_bond_mac_addr_mac, 6387 (void *)&cmd_set_bond_mac_addr_portnum, 6388 (void *)&cmd_set_bond_mac_addr_addr, 6389 NULL 6390 } 6391 }; 6392 6393 6394 /* *** SET LINK STATUS MONITORING POLLING PERIOD ON BONDED DEVICE *** */ 6395 struct cmd_set_bond_mon_period_result { 6396 cmdline_fixed_string_t set; 6397 cmdline_fixed_string_t bonding; 6398 cmdline_fixed_string_t mon_period; 6399 uint16_t port_num; 6400 uint32_t period_ms; 6401 }; 6402 6403 static void cmd_set_bond_mon_period_parsed(void *parsed_result, 6404 __rte_unused struct cmdline *cl, 6405 __rte_unused void *data) 6406 { 6407 struct cmd_set_bond_mon_period_result *res = parsed_result; 6408 int ret; 6409 6410 ret = rte_eth_bond_link_monitoring_set(res->port_num, res->period_ms); 6411 6412 /* check the return value and print it if is < 0 */ 6413 if (ret < 0) 6414 printf("set_bond_mac_addr error: (%s)\n", strerror(-ret)); 6415 } 6416 6417 cmdline_parse_token_string_t cmd_set_bond_mon_period_set = 6418 TOKEN_STRING_INITIALIZER(struct cmd_set_bond_mon_period_result, 6419 set, "set"); 6420 cmdline_parse_token_string_t cmd_set_bond_mon_period_bonding = 6421 TOKEN_STRING_INITIALIZER(struct cmd_set_bond_mon_period_result, 6422 bonding, "bonding"); 6423 cmdline_parse_token_string_t cmd_set_bond_mon_period_mon_period = 6424 TOKEN_STRING_INITIALIZER(struct cmd_set_bond_mon_period_result, 6425 mon_period, "mon_period"); 6426 cmdline_parse_token_num_t cmd_set_bond_mon_period_portnum = 6427 TOKEN_NUM_INITIALIZER(struct cmd_set_bond_mon_period_result, 6428 port_num, RTE_UINT16); 6429 cmdline_parse_token_num_t cmd_set_bond_mon_period_period_ms = 6430 TOKEN_NUM_INITIALIZER(struct cmd_set_bond_mon_period_result, 6431 period_ms, RTE_UINT32); 6432 6433 cmdline_parse_inst_t cmd_set_bond_mon_period = { 6434 .f = cmd_set_bond_mon_period_parsed, 6435 .data = (void *) 0, 6436 .help_str = "set bonding mon_period <port_id> <period_ms>", 6437 .tokens = { 6438 (void *)&cmd_set_bond_mon_period_set, 6439 (void *)&cmd_set_bond_mon_period_bonding, 6440 (void *)&cmd_set_bond_mon_period_mon_period, 6441 (void *)&cmd_set_bond_mon_period_portnum, 6442 (void *)&cmd_set_bond_mon_period_period_ms, 6443 NULL 6444 } 6445 }; 6446 6447 6448 6449 struct cmd_set_bonding_agg_mode_policy_result { 6450 cmdline_fixed_string_t set; 6451 cmdline_fixed_string_t bonding; 6452 cmdline_fixed_string_t agg_mode; 6453 uint16_t port_num; 6454 cmdline_fixed_string_t policy; 6455 }; 6456 6457 6458 static void 6459 cmd_set_bonding_agg_mode(void *parsed_result, 6460 __rte_unused struct cmdline *cl, 6461 __rte_unused void *data) 6462 { 6463 struct cmd_set_bonding_agg_mode_policy_result *res = parsed_result; 6464 uint8_t policy = AGG_BANDWIDTH; 6465 6466 if (!strcmp(res->policy, "bandwidth")) 6467 policy = AGG_BANDWIDTH; 6468 else if (!strcmp(res->policy, "stable")) 6469 policy = AGG_STABLE; 6470 else if (!strcmp(res->policy, "count")) 6471 policy = AGG_COUNT; 6472 6473 rte_eth_bond_8023ad_agg_selection_set(res->port_num, policy); 6474 } 6475 6476 6477 cmdline_parse_token_string_t cmd_set_bonding_agg_mode_set = 6478 TOKEN_STRING_INITIALIZER(struct cmd_set_bonding_agg_mode_policy_result, 6479 set, "set"); 6480 cmdline_parse_token_string_t cmd_set_bonding_agg_mode_bonding = 6481 TOKEN_STRING_INITIALIZER(struct cmd_set_bonding_agg_mode_policy_result, 6482 bonding, "bonding"); 6483 6484 cmdline_parse_token_string_t cmd_set_bonding_agg_mode_agg_mode = 6485 TOKEN_STRING_INITIALIZER(struct cmd_set_bonding_agg_mode_policy_result, 6486 agg_mode, "agg_mode"); 6487 6488 cmdline_parse_token_num_t cmd_set_bonding_agg_mode_portnum = 6489 TOKEN_NUM_INITIALIZER(struct cmd_set_bonding_agg_mode_policy_result, 6490 port_num, RTE_UINT16); 6491 6492 cmdline_parse_token_string_t cmd_set_bonding_agg_mode_policy_string = 6493 TOKEN_STRING_INITIALIZER( 6494 struct cmd_set_bonding_balance_xmit_policy_result, 6495 policy, "stable#bandwidth#count"); 6496 6497 cmdline_parse_inst_t cmd_set_bonding_agg_mode_policy = { 6498 .f = cmd_set_bonding_agg_mode, 6499 .data = (void *) 0, 6500 .help_str = "set bonding mode IEEE802.3AD aggregator policy <port_id> <agg_name>", 6501 .tokens = { 6502 (void *)&cmd_set_bonding_agg_mode_set, 6503 (void *)&cmd_set_bonding_agg_mode_bonding, 6504 (void *)&cmd_set_bonding_agg_mode_agg_mode, 6505 (void *)&cmd_set_bonding_agg_mode_portnum, 6506 (void *)&cmd_set_bonding_agg_mode_policy_string, 6507 NULL 6508 } 6509 }; 6510 6511 6512 #endif /* RTE_NET_BOND */ 6513 6514 /* *** SET FORWARDING MODE *** */ 6515 struct cmd_set_fwd_mode_result { 6516 cmdline_fixed_string_t set; 6517 cmdline_fixed_string_t fwd; 6518 cmdline_fixed_string_t mode; 6519 }; 6520 6521 static void cmd_set_fwd_mode_parsed(void *parsed_result, 6522 __rte_unused struct cmdline *cl, 6523 __rte_unused void *data) 6524 { 6525 struct cmd_set_fwd_mode_result *res = parsed_result; 6526 6527 retry_enabled = 0; 6528 set_pkt_forwarding_mode(res->mode); 6529 } 6530 6531 cmdline_parse_token_string_t cmd_setfwd_set = 6532 TOKEN_STRING_INITIALIZER(struct cmd_set_fwd_mode_result, set, "set"); 6533 cmdline_parse_token_string_t cmd_setfwd_fwd = 6534 TOKEN_STRING_INITIALIZER(struct cmd_set_fwd_mode_result, fwd, "fwd"); 6535 cmdline_parse_token_string_t cmd_setfwd_mode = 6536 TOKEN_STRING_INITIALIZER(struct cmd_set_fwd_mode_result, mode, 6537 "" /* defined at init */); 6538 6539 cmdline_parse_inst_t cmd_set_fwd_mode = { 6540 .f = cmd_set_fwd_mode_parsed, 6541 .data = NULL, 6542 .help_str = NULL, /* defined at init */ 6543 .tokens = { 6544 (void *)&cmd_setfwd_set, 6545 (void *)&cmd_setfwd_fwd, 6546 (void *)&cmd_setfwd_mode, 6547 NULL, 6548 }, 6549 }; 6550 6551 static void cmd_set_fwd_mode_init(void) 6552 { 6553 char *modes, *c; 6554 static char token[128]; 6555 static char help[256]; 6556 cmdline_parse_token_string_t *token_struct; 6557 6558 modes = list_pkt_forwarding_modes(); 6559 snprintf(help, sizeof(help), "set fwd %s: " 6560 "Set packet forwarding mode", modes); 6561 cmd_set_fwd_mode.help_str = help; 6562 6563 /* string token separator is # */ 6564 for (c = token; *modes != '\0'; modes++) 6565 if (*modes == '|') 6566 *c++ = '#'; 6567 else 6568 *c++ = *modes; 6569 token_struct = (cmdline_parse_token_string_t*)cmd_set_fwd_mode.tokens[2]; 6570 token_struct->string_data.str = token; 6571 } 6572 6573 /* *** SET RETRY FORWARDING MODE *** */ 6574 struct cmd_set_fwd_retry_mode_result { 6575 cmdline_fixed_string_t set; 6576 cmdline_fixed_string_t fwd; 6577 cmdline_fixed_string_t mode; 6578 cmdline_fixed_string_t retry; 6579 }; 6580 6581 static void cmd_set_fwd_retry_mode_parsed(void *parsed_result, 6582 __rte_unused struct cmdline *cl, 6583 __rte_unused void *data) 6584 { 6585 struct cmd_set_fwd_retry_mode_result *res = parsed_result; 6586 6587 retry_enabled = 1; 6588 set_pkt_forwarding_mode(res->mode); 6589 } 6590 6591 cmdline_parse_token_string_t cmd_setfwd_retry_set = 6592 TOKEN_STRING_INITIALIZER(struct cmd_set_fwd_retry_mode_result, 6593 set, "set"); 6594 cmdline_parse_token_string_t cmd_setfwd_retry_fwd = 6595 TOKEN_STRING_INITIALIZER(struct cmd_set_fwd_retry_mode_result, 6596 fwd, "fwd"); 6597 cmdline_parse_token_string_t cmd_setfwd_retry_mode = 6598 TOKEN_STRING_INITIALIZER(struct cmd_set_fwd_retry_mode_result, 6599 mode, 6600 "" /* defined at init */); 6601 cmdline_parse_token_string_t cmd_setfwd_retry_retry = 6602 TOKEN_STRING_INITIALIZER(struct cmd_set_fwd_retry_mode_result, 6603 retry, "retry"); 6604 6605 cmdline_parse_inst_t cmd_set_fwd_retry_mode = { 6606 .f = cmd_set_fwd_retry_mode_parsed, 6607 .data = NULL, 6608 .help_str = NULL, /* defined at init */ 6609 .tokens = { 6610 (void *)&cmd_setfwd_retry_set, 6611 (void *)&cmd_setfwd_retry_fwd, 6612 (void *)&cmd_setfwd_retry_mode, 6613 (void *)&cmd_setfwd_retry_retry, 6614 NULL, 6615 }, 6616 }; 6617 6618 static void cmd_set_fwd_retry_mode_init(void) 6619 { 6620 char *modes, *c; 6621 static char token[128]; 6622 static char help[256]; 6623 cmdline_parse_token_string_t *token_struct; 6624 6625 modes = list_pkt_forwarding_retry_modes(); 6626 snprintf(help, sizeof(help), "set fwd %s retry: " 6627 "Set packet forwarding mode with retry", modes); 6628 cmd_set_fwd_retry_mode.help_str = help; 6629 6630 /* string token separator is # */ 6631 for (c = token; *modes != '\0'; modes++) 6632 if (*modes == '|') 6633 *c++ = '#'; 6634 else 6635 *c++ = *modes; 6636 token_struct = (cmdline_parse_token_string_t *) 6637 cmd_set_fwd_retry_mode.tokens[2]; 6638 token_struct->string_data.str = token; 6639 } 6640 6641 /* *** SET BURST TX DELAY TIME RETRY NUMBER *** */ 6642 struct cmd_set_burst_tx_retry_result { 6643 cmdline_fixed_string_t set; 6644 cmdline_fixed_string_t burst; 6645 cmdline_fixed_string_t tx; 6646 cmdline_fixed_string_t delay; 6647 uint32_t time; 6648 cmdline_fixed_string_t retry; 6649 uint32_t retry_num; 6650 }; 6651 6652 static void cmd_set_burst_tx_retry_parsed(void *parsed_result, 6653 __rte_unused struct cmdline *cl, 6654 __rte_unused void *data) 6655 { 6656 struct cmd_set_burst_tx_retry_result *res = parsed_result; 6657 6658 if (!strcmp(res->set, "set") && !strcmp(res->burst, "burst") 6659 && !strcmp(res->tx, "tx")) { 6660 if (!strcmp(res->delay, "delay")) 6661 burst_tx_delay_time = res->time; 6662 if (!strcmp(res->retry, "retry")) 6663 burst_tx_retry_num = res->retry_num; 6664 } 6665 6666 } 6667 6668 cmdline_parse_token_string_t cmd_set_burst_tx_retry_set = 6669 TOKEN_STRING_INITIALIZER(struct cmd_set_burst_tx_retry_result, set, "set"); 6670 cmdline_parse_token_string_t cmd_set_burst_tx_retry_burst = 6671 TOKEN_STRING_INITIALIZER(struct cmd_set_burst_tx_retry_result, burst, 6672 "burst"); 6673 cmdline_parse_token_string_t cmd_set_burst_tx_retry_tx = 6674 TOKEN_STRING_INITIALIZER(struct cmd_set_burst_tx_retry_result, tx, "tx"); 6675 cmdline_parse_token_string_t cmd_set_burst_tx_retry_delay = 6676 TOKEN_STRING_INITIALIZER(struct cmd_set_burst_tx_retry_result, delay, "delay"); 6677 cmdline_parse_token_num_t cmd_set_burst_tx_retry_time = 6678 TOKEN_NUM_INITIALIZER(struct cmd_set_burst_tx_retry_result, time, 6679 RTE_UINT32); 6680 cmdline_parse_token_string_t cmd_set_burst_tx_retry_retry = 6681 TOKEN_STRING_INITIALIZER(struct cmd_set_burst_tx_retry_result, retry, "retry"); 6682 cmdline_parse_token_num_t cmd_set_burst_tx_retry_retry_num = 6683 TOKEN_NUM_INITIALIZER(struct cmd_set_burst_tx_retry_result, retry_num, 6684 RTE_UINT32); 6685 6686 cmdline_parse_inst_t cmd_set_burst_tx_retry = { 6687 .f = cmd_set_burst_tx_retry_parsed, 6688 .help_str = "set burst tx delay <delay_usec> retry <num_retry>", 6689 .tokens = { 6690 (void *)&cmd_set_burst_tx_retry_set, 6691 (void *)&cmd_set_burst_tx_retry_burst, 6692 (void *)&cmd_set_burst_tx_retry_tx, 6693 (void *)&cmd_set_burst_tx_retry_delay, 6694 (void *)&cmd_set_burst_tx_retry_time, 6695 (void *)&cmd_set_burst_tx_retry_retry, 6696 (void *)&cmd_set_burst_tx_retry_retry_num, 6697 NULL, 6698 }, 6699 }; 6700 6701 /* *** SET PROMISC MODE *** */ 6702 struct cmd_set_promisc_mode_result { 6703 cmdline_fixed_string_t set; 6704 cmdline_fixed_string_t promisc; 6705 cmdline_fixed_string_t port_all; /* valid if "allports" argument == 1 */ 6706 uint16_t port_num; /* valid if "allports" argument == 0 */ 6707 cmdline_fixed_string_t mode; 6708 }; 6709 6710 static void cmd_set_promisc_mode_parsed(void *parsed_result, 6711 __rte_unused struct cmdline *cl, 6712 void *allports) 6713 { 6714 struct cmd_set_promisc_mode_result *res = parsed_result; 6715 int enable; 6716 portid_t i; 6717 6718 if (!strcmp(res->mode, "on")) 6719 enable = 1; 6720 else 6721 enable = 0; 6722 6723 /* all ports */ 6724 if (allports) { 6725 RTE_ETH_FOREACH_DEV(i) 6726 eth_set_promisc_mode(i, enable); 6727 } else { 6728 eth_set_promisc_mode(res->port_num, enable); 6729 } 6730 } 6731 6732 cmdline_parse_token_string_t cmd_setpromisc_set = 6733 TOKEN_STRING_INITIALIZER(struct cmd_set_promisc_mode_result, set, "set"); 6734 cmdline_parse_token_string_t cmd_setpromisc_promisc = 6735 TOKEN_STRING_INITIALIZER(struct cmd_set_promisc_mode_result, promisc, 6736 "promisc"); 6737 cmdline_parse_token_string_t cmd_setpromisc_portall = 6738 TOKEN_STRING_INITIALIZER(struct cmd_set_promisc_mode_result, port_all, 6739 "all"); 6740 cmdline_parse_token_num_t cmd_setpromisc_portnum = 6741 TOKEN_NUM_INITIALIZER(struct cmd_set_promisc_mode_result, port_num, 6742 RTE_UINT16); 6743 cmdline_parse_token_string_t cmd_setpromisc_mode = 6744 TOKEN_STRING_INITIALIZER(struct cmd_set_promisc_mode_result, mode, 6745 "on#off"); 6746 6747 cmdline_parse_inst_t cmd_set_promisc_mode_all = { 6748 .f = cmd_set_promisc_mode_parsed, 6749 .data = (void *)1, 6750 .help_str = "set promisc all on|off: Set promisc mode for all ports", 6751 .tokens = { 6752 (void *)&cmd_setpromisc_set, 6753 (void *)&cmd_setpromisc_promisc, 6754 (void *)&cmd_setpromisc_portall, 6755 (void *)&cmd_setpromisc_mode, 6756 NULL, 6757 }, 6758 }; 6759 6760 cmdline_parse_inst_t cmd_set_promisc_mode_one = { 6761 .f = cmd_set_promisc_mode_parsed, 6762 .data = (void *)0, 6763 .help_str = "set promisc <port_id> on|off: Set promisc mode on port_id", 6764 .tokens = { 6765 (void *)&cmd_setpromisc_set, 6766 (void *)&cmd_setpromisc_promisc, 6767 (void *)&cmd_setpromisc_portnum, 6768 (void *)&cmd_setpromisc_mode, 6769 NULL, 6770 }, 6771 }; 6772 6773 /* *** SET ALLMULTI MODE *** */ 6774 struct cmd_set_allmulti_mode_result { 6775 cmdline_fixed_string_t set; 6776 cmdline_fixed_string_t allmulti; 6777 cmdline_fixed_string_t port_all; /* valid if "allports" argument == 1 */ 6778 uint16_t port_num; /* valid if "allports" argument == 0 */ 6779 cmdline_fixed_string_t mode; 6780 }; 6781 6782 static void cmd_set_allmulti_mode_parsed(void *parsed_result, 6783 __rte_unused struct cmdline *cl, 6784 void *allports) 6785 { 6786 struct cmd_set_allmulti_mode_result *res = parsed_result; 6787 int enable; 6788 portid_t i; 6789 6790 if (!strcmp(res->mode, "on")) 6791 enable = 1; 6792 else 6793 enable = 0; 6794 6795 /* all ports */ 6796 if (allports) { 6797 RTE_ETH_FOREACH_DEV(i) { 6798 eth_set_allmulticast_mode(i, enable); 6799 } 6800 } 6801 else { 6802 eth_set_allmulticast_mode(res->port_num, enable); 6803 } 6804 } 6805 6806 cmdline_parse_token_string_t cmd_setallmulti_set = 6807 TOKEN_STRING_INITIALIZER(struct cmd_set_allmulti_mode_result, set, "set"); 6808 cmdline_parse_token_string_t cmd_setallmulti_allmulti = 6809 TOKEN_STRING_INITIALIZER(struct cmd_set_allmulti_mode_result, allmulti, 6810 "allmulti"); 6811 cmdline_parse_token_string_t cmd_setallmulti_portall = 6812 TOKEN_STRING_INITIALIZER(struct cmd_set_allmulti_mode_result, port_all, 6813 "all"); 6814 cmdline_parse_token_num_t cmd_setallmulti_portnum = 6815 TOKEN_NUM_INITIALIZER(struct cmd_set_allmulti_mode_result, port_num, 6816 RTE_UINT16); 6817 cmdline_parse_token_string_t cmd_setallmulti_mode = 6818 TOKEN_STRING_INITIALIZER(struct cmd_set_allmulti_mode_result, mode, 6819 "on#off"); 6820 6821 cmdline_parse_inst_t cmd_set_allmulti_mode_all = { 6822 .f = cmd_set_allmulti_mode_parsed, 6823 .data = (void *)1, 6824 .help_str = "set allmulti all on|off: Set allmulti mode for all ports", 6825 .tokens = { 6826 (void *)&cmd_setallmulti_set, 6827 (void *)&cmd_setallmulti_allmulti, 6828 (void *)&cmd_setallmulti_portall, 6829 (void *)&cmd_setallmulti_mode, 6830 NULL, 6831 }, 6832 }; 6833 6834 cmdline_parse_inst_t cmd_set_allmulti_mode_one = { 6835 .f = cmd_set_allmulti_mode_parsed, 6836 .data = (void *)0, 6837 .help_str = "set allmulti <port_id> on|off: " 6838 "Set allmulti mode on port_id", 6839 .tokens = { 6840 (void *)&cmd_setallmulti_set, 6841 (void *)&cmd_setallmulti_allmulti, 6842 (void *)&cmd_setallmulti_portnum, 6843 (void *)&cmd_setallmulti_mode, 6844 NULL, 6845 }, 6846 }; 6847 6848 /* *** SETUP ETHERNET LINK FLOW CONTROL *** */ 6849 struct cmd_link_flow_ctrl_set_result { 6850 cmdline_fixed_string_t set; 6851 cmdline_fixed_string_t flow_ctrl; 6852 cmdline_fixed_string_t rx; 6853 cmdline_fixed_string_t rx_lfc_mode; 6854 cmdline_fixed_string_t tx; 6855 cmdline_fixed_string_t tx_lfc_mode; 6856 cmdline_fixed_string_t mac_ctrl_frame_fwd; 6857 cmdline_fixed_string_t mac_ctrl_frame_fwd_mode; 6858 cmdline_fixed_string_t autoneg_str; 6859 cmdline_fixed_string_t autoneg; 6860 cmdline_fixed_string_t hw_str; 6861 uint32_t high_water; 6862 cmdline_fixed_string_t lw_str; 6863 uint32_t low_water; 6864 cmdline_fixed_string_t pt_str; 6865 uint16_t pause_time; 6866 cmdline_fixed_string_t xon_str; 6867 uint16_t send_xon; 6868 portid_t port_id; 6869 }; 6870 6871 cmdline_parse_token_string_t cmd_lfc_set_set = 6872 TOKEN_STRING_INITIALIZER(struct cmd_link_flow_ctrl_set_result, 6873 set, "set"); 6874 cmdline_parse_token_string_t cmd_lfc_set_flow_ctrl = 6875 TOKEN_STRING_INITIALIZER(struct cmd_link_flow_ctrl_set_result, 6876 flow_ctrl, "flow_ctrl"); 6877 cmdline_parse_token_string_t cmd_lfc_set_rx = 6878 TOKEN_STRING_INITIALIZER(struct cmd_link_flow_ctrl_set_result, 6879 rx, "rx"); 6880 cmdline_parse_token_string_t cmd_lfc_set_rx_mode = 6881 TOKEN_STRING_INITIALIZER(struct cmd_link_flow_ctrl_set_result, 6882 rx_lfc_mode, "on#off"); 6883 cmdline_parse_token_string_t cmd_lfc_set_tx = 6884 TOKEN_STRING_INITIALIZER(struct cmd_link_flow_ctrl_set_result, 6885 tx, "tx"); 6886 cmdline_parse_token_string_t cmd_lfc_set_tx_mode = 6887 TOKEN_STRING_INITIALIZER(struct cmd_link_flow_ctrl_set_result, 6888 tx_lfc_mode, "on#off"); 6889 cmdline_parse_token_string_t cmd_lfc_set_high_water_str = 6890 TOKEN_STRING_INITIALIZER(struct cmd_link_flow_ctrl_set_result, 6891 hw_str, "high_water"); 6892 cmdline_parse_token_num_t cmd_lfc_set_high_water = 6893 TOKEN_NUM_INITIALIZER(struct cmd_link_flow_ctrl_set_result, 6894 high_water, RTE_UINT32); 6895 cmdline_parse_token_string_t cmd_lfc_set_low_water_str = 6896 TOKEN_STRING_INITIALIZER(struct cmd_link_flow_ctrl_set_result, 6897 lw_str, "low_water"); 6898 cmdline_parse_token_num_t cmd_lfc_set_low_water = 6899 TOKEN_NUM_INITIALIZER(struct cmd_link_flow_ctrl_set_result, 6900 low_water, RTE_UINT32); 6901 cmdline_parse_token_string_t cmd_lfc_set_pause_time_str = 6902 TOKEN_STRING_INITIALIZER(struct cmd_link_flow_ctrl_set_result, 6903 pt_str, "pause_time"); 6904 cmdline_parse_token_num_t cmd_lfc_set_pause_time = 6905 TOKEN_NUM_INITIALIZER(struct cmd_link_flow_ctrl_set_result, 6906 pause_time, RTE_UINT16); 6907 cmdline_parse_token_string_t cmd_lfc_set_send_xon_str = 6908 TOKEN_STRING_INITIALIZER(struct cmd_link_flow_ctrl_set_result, 6909 xon_str, "send_xon"); 6910 cmdline_parse_token_num_t cmd_lfc_set_send_xon = 6911 TOKEN_NUM_INITIALIZER(struct cmd_link_flow_ctrl_set_result, 6912 send_xon, RTE_UINT16); 6913 cmdline_parse_token_string_t cmd_lfc_set_mac_ctrl_frame_fwd_mode = 6914 TOKEN_STRING_INITIALIZER(struct cmd_link_flow_ctrl_set_result, 6915 mac_ctrl_frame_fwd, "mac_ctrl_frame_fwd"); 6916 cmdline_parse_token_string_t cmd_lfc_set_mac_ctrl_frame_fwd = 6917 TOKEN_STRING_INITIALIZER(struct cmd_link_flow_ctrl_set_result, 6918 mac_ctrl_frame_fwd_mode, "on#off"); 6919 cmdline_parse_token_string_t cmd_lfc_set_autoneg_str = 6920 TOKEN_STRING_INITIALIZER(struct cmd_link_flow_ctrl_set_result, 6921 autoneg_str, "autoneg"); 6922 cmdline_parse_token_string_t cmd_lfc_set_autoneg = 6923 TOKEN_STRING_INITIALIZER(struct cmd_link_flow_ctrl_set_result, 6924 autoneg, "on#off"); 6925 cmdline_parse_token_num_t cmd_lfc_set_portid = 6926 TOKEN_NUM_INITIALIZER(struct cmd_link_flow_ctrl_set_result, 6927 port_id, RTE_UINT16); 6928 6929 /* forward declaration */ 6930 static void 6931 cmd_link_flow_ctrl_set_parsed(void *parsed_result, struct cmdline *cl, 6932 void *data); 6933 6934 cmdline_parse_inst_t cmd_link_flow_control_set = { 6935 .f = cmd_link_flow_ctrl_set_parsed, 6936 .data = NULL, 6937 .help_str = "set flow_ctrl rx on|off tx on|off <high_water> " 6938 "<low_water> <pause_time> <send_xon> mac_ctrl_frame_fwd on|off " 6939 "autoneg on|off <port_id>: Configure the Ethernet flow control", 6940 .tokens = { 6941 (void *)&cmd_lfc_set_set, 6942 (void *)&cmd_lfc_set_flow_ctrl, 6943 (void *)&cmd_lfc_set_rx, 6944 (void *)&cmd_lfc_set_rx_mode, 6945 (void *)&cmd_lfc_set_tx, 6946 (void *)&cmd_lfc_set_tx_mode, 6947 (void *)&cmd_lfc_set_high_water, 6948 (void *)&cmd_lfc_set_low_water, 6949 (void *)&cmd_lfc_set_pause_time, 6950 (void *)&cmd_lfc_set_send_xon, 6951 (void *)&cmd_lfc_set_mac_ctrl_frame_fwd_mode, 6952 (void *)&cmd_lfc_set_mac_ctrl_frame_fwd, 6953 (void *)&cmd_lfc_set_autoneg_str, 6954 (void *)&cmd_lfc_set_autoneg, 6955 (void *)&cmd_lfc_set_portid, 6956 NULL, 6957 }, 6958 }; 6959 6960 cmdline_parse_inst_t cmd_link_flow_control_set_rx = { 6961 .f = cmd_link_flow_ctrl_set_parsed, 6962 .data = (void *)&cmd_link_flow_control_set_rx, 6963 .help_str = "set flow_ctrl rx on|off <port_id>: " 6964 "Change rx flow control parameter", 6965 .tokens = { 6966 (void *)&cmd_lfc_set_set, 6967 (void *)&cmd_lfc_set_flow_ctrl, 6968 (void *)&cmd_lfc_set_rx, 6969 (void *)&cmd_lfc_set_rx_mode, 6970 (void *)&cmd_lfc_set_portid, 6971 NULL, 6972 }, 6973 }; 6974 6975 cmdline_parse_inst_t cmd_link_flow_control_set_tx = { 6976 .f = cmd_link_flow_ctrl_set_parsed, 6977 .data = (void *)&cmd_link_flow_control_set_tx, 6978 .help_str = "set flow_ctrl tx on|off <port_id>: " 6979 "Change tx flow control parameter", 6980 .tokens = { 6981 (void *)&cmd_lfc_set_set, 6982 (void *)&cmd_lfc_set_flow_ctrl, 6983 (void *)&cmd_lfc_set_tx, 6984 (void *)&cmd_lfc_set_tx_mode, 6985 (void *)&cmd_lfc_set_portid, 6986 NULL, 6987 }, 6988 }; 6989 6990 cmdline_parse_inst_t cmd_link_flow_control_set_hw = { 6991 .f = cmd_link_flow_ctrl_set_parsed, 6992 .data = (void *)&cmd_link_flow_control_set_hw, 6993 .help_str = "set flow_ctrl high_water <value> <port_id>: " 6994 "Change high water flow control parameter", 6995 .tokens = { 6996 (void *)&cmd_lfc_set_set, 6997 (void *)&cmd_lfc_set_flow_ctrl, 6998 (void *)&cmd_lfc_set_high_water_str, 6999 (void *)&cmd_lfc_set_high_water, 7000 (void *)&cmd_lfc_set_portid, 7001 NULL, 7002 }, 7003 }; 7004 7005 cmdline_parse_inst_t cmd_link_flow_control_set_lw = { 7006 .f = cmd_link_flow_ctrl_set_parsed, 7007 .data = (void *)&cmd_link_flow_control_set_lw, 7008 .help_str = "set flow_ctrl low_water <value> <port_id>: " 7009 "Change low water flow control parameter", 7010 .tokens = { 7011 (void *)&cmd_lfc_set_set, 7012 (void *)&cmd_lfc_set_flow_ctrl, 7013 (void *)&cmd_lfc_set_low_water_str, 7014 (void *)&cmd_lfc_set_low_water, 7015 (void *)&cmd_lfc_set_portid, 7016 NULL, 7017 }, 7018 }; 7019 7020 cmdline_parse_inst_t cmd_link_flow_control_set_pt = { 7021 .f = cmd_link_flow_ctrl_set_parsed, 7022 .data = (void *)&cmd_link_flow_control_set_pt, 7023 .help_str = "set flow_ctrl pause_time <value> <port_id>: " 7024 "Change pause time flow control parameter", 7025 .tokens = { 7026 (void *)&cmd_lfc_set_set, 7027 (void *)&cmd_lfc_set_flow_ctrl, 7028 (void *)&cmd_lfc_set_pause_time_str, 7029 (void *)&cmd_lfc_set_pause_time, 7030 (void *)&cmd_lfc_set_portid, 7031 NULL, 7032 }, 7033 }; 7034 7035 cmdline_parse_inst_t cmd_link_flow_control_set_xon = { 7036 .f = cmd_link_flow_ctrl_set_parsed, 7037 .data = (void *)&cmd_link_flow_control_set_xon, 7038 .help_str = "set flow_ctrl send_xon <value> <port_id>: " 7039 "Change send_xon flow control parameter", 7040 .tokens = { 7041 (void *)&cmd_lfc_set_set, 7042 (void *)&cmd_lfc_set_flow_ctrl, 7043 (void *)&cmd_lfc_set_send_xon_str, 7044 (void *)&cmd_lfc_set_send_xon, 7045 (void *)&cmd_lfc_set_portid, 7046 NULL, 7047 }, 7048 }; 7049 7050 cmdline_parse_inst_t cmd_link_flow_control_set_macfwd = { 7051 .f = cmd_link_flow_ctrl_set_parsed, 7052 .data = (void *)&cmd_link_flow_control_set_macfwd, 7053 .help_str = "set flow_ctrl mac_ctrl_frame_fwd on|off <port_id>: " 7054 "Change mac ctrl fwd flow control parameter", 7055 .tokens = { 7056 (void *)&cmd_lfc_set_set, 7057 (void *)&cmd_lfc_set_flow_ctrl, 7058 (void *)&cmd_lfc_set_mac_ctrl_frame_fwd_mode, 7059 (void *)&cmd_lfc_set_mac_ctrl_frame_fwd, 7060 (void *)&cmd_lfc_set_portid, 7061 NULL, 7062 }, 7063 }; 7064 7065 cmdline_parse_inst_t cmd_link_flow_control_set_autoneg = { 7066 .f = cmd_link_flow_ctrl_set_parsed, 7067 .data = (void *)&cmd_link_flow_control_set_autoneg, 7068 .help_str = "set flow_ctrl autoneg on|off <port_id>: " 7069 "Change autoneg flow control parameter", 7070 .tokens = { 7071 (void *)&cmd_lfc_set_set, 7072 (void *)&cmd_lfc_set_flow_ctrl, 7073 (void *)&cmd_lfc_set_autoneg_str, 7074 (void *)&cmd_lfc_set_autoneg, 7075 (void *)&cmd_lfc_set_portid, 7076 NULL, 7077 }, 7078 }; 7079 7080 static void 7081 cmd_link_flow_ctrl_set_parsed(void *parsed_result, 7082 __rte_unused struct cmdline *cl, 7083 void *data) 7084 { 7085 struct cmd_link_flow_ctrl_set_result *res = parsed_result; 7086 cmdline_parse_inst_t *cmd = data; 7087 struct rte_eth_fc_conf fc_conf; 7088 int rx_fc_en = 0; 7089 int tx_fc_en = 0; 7090 int ret; 7091 7092 /* 7093 * Rx on/off, flow control is enabled/disabled on RX side. This can indicate 7094 * the RTE_FC_TX_PAUSE, Transmit pause frame at the Rx side. 7095 * Tx on/off, flow control is enabled/disabled on TX side. This can indicate 7096 * the RTE_FC_RX_PAUSE, Respond to the pause frame at the Tx side. 7097 */ 7098 static enum rte_eth_fc_mode rx_tx_onoff_2_lfc_mode[2][2] = { 7099 {RTE_FC_NONE, RTE_FC_TX_PAUSE}, {RTE_FC_RX_PAUSE, RTE_FC_FULL} 7100 }; 7101 7102 /* Partial command line, retrieve current configuration */ 7103 if (cmd) { 7104 ret = rte_eth_dev_flow_ctrl_get(res->port_id, &fc_conf); 7105 if (ret != 0) { 7106 printf("cannot get current flow ctrl parameters, return" 7107 "code = %d\n", ret); 7108 return; 7109 } 7110 7111 if ((fc_conf.mode == RTE_FC_RX_PAUSE) || 7112 (fc_conf.mode == RTE_FC_FULL)) 7113 rx_fc_en = 1; 7114 if ((fc_conf.mode == RTE_FC_TX_PAUSE) || 7115 (fc_conf.mode == RTE_FC_FULL)) 7116 tx_fc_en = 1; 7117 } 7118 7119 if (!cmd || cmd == &cmd_link_flow_control_set_rx) 7120 rx_fc_en = (!strcmp(res->rx_lfc_mode, "on")) ? 1 : 0; 7121 7122 if (!cmd || cmd == &cmd_link_flow_control_set_tx) 7123 tx_fc_en = (!strcmp(res->tx_lfc_mode, "on")) ? 1 : 0; 7124 7125 fc_conf.mode = rx_tx_onoff_2_lfc_mode[rx_fc_en][tx_fc_en]; 7126 7127 if (!cmd || cmd == &cmd_link_flow_control_set_hw) 7128 fc_conf.high_water = res->high_water; 7129 7130 if (!cmd || cmd == &cmd_link_flow_control_set_lw) 7131 fc_conf.low_water = res->low_water; 7132 7133 if (!cmd || cmd == &cmd_link_flow_control_set_pt) 7134 fc_conf.pause_time = res->pause_time; 7135 7136 if (!cmd || cmd == &cmd_link_flow_control_set_xon) 7137 fc_conf.send_xon = res->send_xon; 7138 7139 if (!cmd || cmd == &cmd_link_flow_control_set_macfwd) { 7140 if (!strcmp(res->mac_ctrl_frame_fwd_mode, "on")) 7141 fc_conf.mac_ctrl_frame_fwd = 1; 7142 else 7143 fc_conf.mac_ctrl_frame_fwd = 0; 7144 } 7145 7146 if (!cmd || cmd == &cmd_link_flow_control_set_autoneg) 7147 fc_conf.autoneg = (!strcmp(res->autoneg, "on")) ? 1 : 0; 7148 7149 ret = rte_eth_dev_flow_ctrl_set(res->port_id, &fc_conf); 7150 if (ret != 0) 7151 printf("bad flow contrl parameter, return code = %d \n", ret); 7152 } 7153 7154 /* *** SETUP ETHERNET PRIORITY FLOW CONTROL *** */ 7155 struct cmd_priority_flow_ctrl_set_result { 7156 cmdline_fixed_string_t set; 7157 cmdline_fixed_string_t pfc_ctrl; 7158 cmdline_fixed_string_t rx; 7159 cmdline_fixed_string_t rx_pfc_mode; 7160 cmdline_fixed_string_t tx; 7161 cmdline_fixed_string_t tx_pfc_mode; 7162 uint32_t high_water; 7163 uint32_t low_water; 7164 uint16_t pause_time; 7165 uint8_t priority; 7166 portid_t port_id; 7167 }; 7168 7169 static void 7170 cmd_priority_flow_ctrl_set_parsed(void *parsed_result, 7171 __rte_unused struct cmdline *cl, 7172 __rte_unused void *data) 7173 { 7174 struct cmd_priority_flow_ctrl_set_result *res = parsed_result; 7175 struct rte_eth_pfc_conf pfc_conf; 7176 int rx_fc_enable, tx_fc_enable; 7177 int ret; 7178 7179 /* 7180 * Rx on/off, flow control is enabled/disabled on RX side. This can indicate 7181 * the RTE_FC_TX_PAUSE, Transmit pause frame at the Rx side. 7182 * Tx on/off, flow control is enabled/disabled on TX side. This can indicate 7183 * the RTE_FC_RX_PAUSE, Respond to the pause frame at the Tx side. 7184 */ 7185 static enum rte_eth_fc_mode rx_tx_onoff_2_pfc_mode[2][2] = { 7186 {RTE_FC_NONE, RTE_FC_TX_PAUSE}, {RTE_FC_RX_PAUSE, RTE_FC_FULL} 7187 }; 7188 7189 memset(&pfc_conf, 0, sizeof(struct rte_eth_pfc_conf)); 7190 rx_fc_enable = (!strncmp(res->rx_pfc_mode, "on",2)) ? 1 : 0; 7191 tx_fc_enable = (!strncmp(res->tx_pfc_mode, "on",2)) ? 1 : 0; 7192 pfc_conf.fc.mode = rx_tx_onoff_2_pfc_mode[rx_fc_enable][tx_fc_enable]; 7193 pfc_conf.fc.high_water = res->high_water; 7194 pfc_conf.fc.low_water = res->low_water; 7195 pfc_conf.fc.pause_time = res->pause_time; 7196 pfc_conf.priority = res->priority; 7197 7198 ret = rte_eth_dev_priority_flow_ctrl_set(res->port_id, &pfc_conf); 7199 if (ret != 0) 7200 printf("bad priority flow contrl parameter, return code = %d \n", ret); 7201 } 7202 7203 cmdline_parse_token_string_t cmd_pfc_set_set = 7204 TOKEN_STRING_INITIALIZER(struct cmd_priority_flow_ctrl_set_result, 7205 set, "set"); 7206 cmdline_parse_token_string_t cmd_pfc_set_flow_ctrl = 7207 TOKEN_STRING_INITIALIZER(struct cmd_priority_flow_ctrl_set_result, 7208 pfc_ctrl, "pfc_ctrl"); 7209 cmdline_parse_token_string_t cmd_pfc_set_rx = 7210 TOKEN_STRING_INITIALIZER(struct cmd_priority_flow_ctrl_set_result, 7211 rx, "rx"); 7212 cmdline_parse_token_string_t cmd_pfc_set_rx_mode = 7213 TOKEN_STRING_INITIALIZER(struct cmd_priority_flow_ctrl_set_result, 7214 rx_pfc_mode, "on#off"); 7215 cmdline_parse_token_string_t cmd_pfc_set_tx = 7216 TOKEN_STRING_INITIALIZER(struct cmd_priority_flow_ctrl_set_result, 7217 tx, "tx"); 7218 cmdline_parse_token_string_t cmd_pfc_set_tx_mode = 7219 TOKEN_STRING_INITIALIZER(struct cmd_priority_flow_ctrl_set_result, 7220 tx_pfc_mode, "on#off"); 7221 cmdline_parse_token_num_t cmd_pfc_set_high_water = 7222 TOKEN_NUM_INITIALIZER(struct cmd_priority_flow_ctrl_set_result, 7223 high_water, RTE_UINT32); 7224 cmdline_parse_token_num_t cmd_pfc_set_low_water = 7225 TOKEN_NUM_INITIALIZER(struct cmd_priority_flow_ctrl_set_result, 7226 low_water, RTE_UINT32); 7227 cmdline_parse_token_num_t cmd_pfc_set_pause_time = 7228 TOKEN_NUM_INITIALIZER(struct cmd_priority_flow_ctrl_set_result, 7229 pause_time, RTE_UINT16); 7230 cmdline_parse_token_num_t cmd_pfc_set_priority = 7231 TOKEN_NUM_INITIALIZER(struct cmd_priority_flow_ctrl_set_result, 7232 priority, RTE_UINT8); 7233 cmdline_parse_token_num_t cmd_pfc_set_portid = 7234 TOKEN_NUM_INITIALIZER(struct cmd_priority_flow_ctrl_set_result, 7235 port_id, RTE_UINT16); 7236 7237 cmdline_parse_inst_t cmd_priority_flow_control_set = { 7238 .f = cmd_priority_flow_ctrl_set_parsed, 7239 .data = NULL, 7240 .help_str = "set pfc_ctrl rx on|off tx on|off <high_water> <low_water> " 7241 "<pause_time> <priority> <port_id>: " 7242 "Configure the Ethernet priority flow control", 7243 .tokens = { 7244 (void *)&cmd_pfc_set_set, 7245 (void *)&cmd_pfc_set_flow_ctrl, 7246 (void *)&cmd_pfc_set_rx, 7247 (void *)&cmd_pfc_set_rx_mode, 7248 (void *)&cmd_pfc_set_tx, 7249 (void *)&cmd_pfc_set_tx_mode, 7250 (void *)&cmd_pfc_set_high_water, 7251 (void *)&cmd_pfc_set_low_water, 7252 (void *)&cmd_pfc_set_pause_time, 7253 (void *)&cmd_pfc_set_priority, 7254 (void *)&cmd_pfc_set_portid, 7255 NULL, 7256 }, 7257 }; 7258 7259 /* *** RESET CONFIGURATION *** */ 7260 struct cmd_reset_result { 7261 cmdline_fixed_string_t reset; 7262 cmdline_fixed_string_t def; 7263 }; 7264 7265 static void cmd_reset_parsed(__rte_unused void *parsed_result, 7266 struct cmdline *cl, 7267 __rte_unused void *data) 7268 { 7269 cmdline_printf(cl, "Reset to default forwarding configuration...\n"); 7270 set_def_fwd_config(); 7271 } 7272 7273 cmdline_parse_token_string_t cmd_reset_set = 7274 TOKEN_STRING_INITIALIZER(struct cmd_reset_result, reset, "set"); 7275 cmdline_parse_token_string_t cmd_reset_def = 7276 TOKEN_STRING_INITIALIZER(struct cmd_reset_result, def, 7277 "default"); 7278 7279 cmdline_parse_inst_t cmd_reset = { 7280 .f = cmd_reset_parsed, 7281 .data = NULL, 7282 .help_str = "set default: Reset default forwarding configuration", 7283 .tokens = { 7284 (void *)&cmd_reset_set, 7285 (void *)&cmd_reset_def, 7286 NULL, 7287 }, 7288 }; 7289 7290 /* *** START FORWARDING *** */ 7291 struct cmd_start_result { 7292 cmdline_fixed_string_t start; 7293 }; 7294 7295 cmdline_parse_token_string_t cmd_start_start = 7296 TOKEN_STRING_INITIALIZER(struct cmd_start_result, start, "start"); 7297 7298 static void cmd_start_parsed(__rte_unused void *parsed_result, 7299 __rte_unused struct cmdline *cl, 7300 __rte_unused void *data) 7301 { 7302 start_packet_forwarding(0); 7303 } 7304 7305 cmdline_parse_inst_t cmd_start = { 7306 .f = cmd_start_parsed, 7307 .data = NULL, 7308 .help_str = "start: Start packet forwarding", 7309 .tokens = { 7310 (void *)&cmd_start_start, 7311 NULL, 7312 }, 7313 }; 7314 7315 /* *** START FORWARDING WITH ONE TX BURST FIRST *** */ 7316 struct cmd_start_tx_first_result { 7317 cmdline_fixed_string_t start; 7318 cmdline_fixed_string_t tx_first; 7319 }; 7320 7321 static void 7322 cmd_start_tx_first_parsed(__rte_unused void *parsed_result, 7323 __rte_unused struct cmdline *cl, 7324 __rte_unused void *data) 7325 { 7326 start_packet_forwarding(1); 7327 } 7328 7329 cmdline_parse_token_string_t cmd_start_tx_first_start = 7330 TOKEN_STRING_INITIALIZER(struct cmd_start_tx_first_result, start, 7331 "start"); 7332 cmdline_parse_token_string_t cmd_start_tx_first_tx_first = 7333 TOKEN_STRING_INITIALIZER(struct cmd_start_tx_first_result, 7334 tx_first, "tx_first"); 7335 7336 cmdline_parse_inst_t cmd_start_tx_first = { 7337 .f = cmd_start_tx_first_parsed, 7338 .data = NULL, 7339 .help_str = "start tx_first: Start packet forwarding, " 7340 "after sending 1 burst of packets", 7341 .tokens = { 7342 (void *)&cmd_start_tx_first_start, 7343 (void *)&cmd_start_tx_first_tx_first, 7344 NULL, 7345 }, 7346 }; 7347 7348 /* *** START FORWARDING WITH N TX BURST FIRST *** */ 7349 struct cmd_start_tx_first_n_result { 7350 cmdline_fixed_string_t start; 7351 cmdline_fixed_string_t tx_first; 7352 uint32_t tx_num; 7353 }; 7354 7355 static void 7356 cmd_start_tx_first_n_parsed(void *parsed_result, 7357 __rte_unused struct cmdline *cl, 7358 __rte_unused void *data) 7359 { 7360 struct cmd_start_tx_first_n_result *res = parsed_result; 7361 7362 start_packet_forwarding(res->tx_num); 7363 } 7364 7365 cmdline_parse_token_string_t cmd_start_tx_first_n_start = 7366 TOKEN_STRING_INITIALIZER(struct cmd_start_tx_first_n_result, 7367 start, "start"); 7368 cmdline_parse_token_string_t cmd_start_tx_first_n_tx_first = 7369 TOKEN_STRING_INITIALIZER(struct cmd_start_tx_first_n_result, 7370 tx_first, "tx_first"); 7371 cmdline_parse_token_num_t cmd_start_tx_first_n_tx_num = 7372 TOKEN_NUM_INITIALIZER(struct cmd_start_tx_first_n_result, 7373 tx_num, RTE_UINT32); 7374 7375 cmdline_parse_inst_t cmd_start_tx_first_n = { 7376 .f = cmd_start_tx_first_n_parsed, 7377 .data = NULL, 7378 .help_str = "start tx_first <num>: " 7379 "packet forwarding, after sending <num> bursts of packets", 7380 .tokens = { 7381 (void *)&cmd_start_tx_first_n_start, 7382 (void *)&cmd_start_tx_first_n_tx_first, 7383 (void *)&cmd_start_tx_first_n_tx_num, 7384 NULL, 7385 }, 7386 }; 7387 7388 /* *** SET LINK UP *** */ 7389 struct cmd_set_link_up_result { 7390 cmdline_fixed_string_t set; 7391 cmdline_fixed_string_t link_up; 7392 cmdline_fixed_string_t port; 7393 portid_t port_id; 7394 }; 7395 7396 cmdline_parse_token_string_t cmd_set_link_up_set = 7397 TOKEN_STRING_INITIALIZER(struct cmd_set_link_up_result, set, "set"); 7398 cmdline_parse_token_string_t cmd_set_link_up_link_up = 7399 TOKEN_STRING_INITIALIZER(struct cmd_set_link_up_result, link_up, 7400 "link-up"); 7401 cmdline_parse_token_string_t cmd_set_link_up_port = 7402 TOKEN_STRING_INITIALIZER(struct cmd_set_link_up_result, port, "port"); 7403 cmdline_parse_token_num_t cmd_set_link_up_port_id = 7404 TOKEN_NUM_INITIALIZER(struct cmd_set_link_up_result, port_id, 7405 RTE_UINT16); 7406 7407 static void cmd_set_link_up_parsed(__rte_unused void *parsed_result, 7408 __rte_unused struct cmdline *cl, 7409 __rte_unused void *data) 7410 { 7411 struct cmd_set_link_up_result *res = parsed_result; 7412 dev_set_link_up(res->port_id); 7413 } 7414 7415 cmdline_parse_inst_t cmd_set_link_up = { 7416 .f = cmd_set_link_up_parsed, 7417 .data = NULL, 7418 .help_str = "set link-up port <port id>", 7419 .tokens = { 7420 (void *)&cmd_set_link_up_set, 7421 (void *)&cmd_set_link_up_link_up, 7422 (void *)&cmd_set_link_up_port, 7423 (void *)&cmd_set_link_up_port_id, 7424 NULL, 7425 }, 7426 }; 7427 7428 /* *** SET LINK DOWN *** */ 7429 struct cmd_set_link_down_result { 7430 cmdline_fixed_string_t set; 7431 cmdline_fixed_string_t link_down; 7432 cmdline_fixed_string_t port; 7433 portid_t port_id; 7434 }; 7435 7436 cmdline_parse_token_string_t cmd_set_link_down_set = 7437 TOKEN_STRING_INITIALIZER(struct cmd_set_link_down_result, set, "set"); 7438 cmdline_parse_token_string_t cmd_set_link_down_link_down = 7439 TOKEN_STRING_INITIALIZER(struct cmd_set_link_down_result, link_down, 7440 "link-down"); 7441 cmdline_parse_token_string_t cmd_set_link_down_port = 7442 TOKEN_STRING_INITIALIZER(struct cmd_set_link_down_result, port, "port"); 7443 cmdline_parse_token_num_t cmd_set_link_down_port_id = 7444 TOKEN_NUM_INITIALIZER(struct cmd_set_link_down_result, port_id, 7445 RTE_UINT16); 7446 7447 static void cmd_set_link_down_parsed( 7448 __rte_unused void *parsed_result, 7449 __rte_unused struct cmdline *cl, 7450 __rte_unused void *data) 7451 { 7452 struct cmd_set_link_down_result *res = parsed_result; 7453 dev_set_link_down(res->port_id); 7454 } 7455 7456 cmdline_parse_inst_t cmd_set_link_down = { 7457 .f = cmd_set_link_down_parsed, 7458 .data = NULL, 7459 .help_str = "set link-down port <port id>", 7460 .tokens = { 7461 (void *)&cmd_set_link_down_set, 7462 (void *)&cmd_set_link_down_link_down, 7463 (void *)&cmd_set_link_down_port, 7464 (void *)&cmd_set_link_down_port_id, 7465 NULL, 7466 }, 7467 }; 7468 7469 /* *** SHOW CFG *** */ 7470 struct cmd_showcfg_result { 7471 cmdline_fixed_string_t show; 7472 cmdline_fixed_string_t cfg; 7473 cmdline_fixed_string_t what; 7474 }; 7475 7476 static void cmd_showcfg_parsed(void *parsed_result, 7477 __rte_unused struct cmdline *cl, 7478 __rte_unused void *data) 7479 { 7480 struct cmd_showcfg_result *res = parsed_result; 7481 if (!strcmp(res->what, "rxtx")) 7482 rxtx_config_display(); 7483 else if (!strcmp(res->what, "cores")) 7484 fwd_lcores_config_display(); 7485 else if (!strcmp(res->what, "fwd")) 7486 pkt_fwd_config_display(&cur_fwd_config); 7487 else if (!strcmp(res->what, "rxoffs")) 7488 show_rx_pkt_offsets(); 7489 else if (!strcmp(res->what, "rxpkts")) 7490 show_rx_pkt_segments(); 7491 else if (!strcmp(res->what, "txpkts")) 7492 show_tx_pkt_segments(); 7493 else if (!strcmp(res->what, "txtimes")) 7494 show_tx_pkt_times(); 7495 } 7496 7497 cmdline_parse_token_string_t cmd_showcfg_show = 7498 TOKEN_STRING_INITIALIZER(struct cmd_showcfg_result, show, "show"); 7499 cmdline_parse_token_string_t cmd_showcfg_port = 7500 TOKEN_STRING_INITIALIZER(struct cmd_showcfg_result, cfg, "config"); 7501 cmdline_parse_token_string_t cmd_showcfg_what = 7502 TOKEN_STRING_INITIALIZER(struct cmd_showcfg_result, what, 7503 "rxtx#cores#fwd#rxoffs#rxpkts#txpkts#txtimes"); 7504 7505 cmdline_parse_inst_t cmd_showcfg = { 7506 .f = cmd_showcfg_parsed, 7507 .data = NULL, 7508 .help_str = "show config rxtx|cores|fwd|rxoffs|rxpkts|txpkts|txtimes", 7509 .tokens = { 7510 (void *)&cmd_showcfg_show, 7511 (void *)&cmd_showcfg_port, 7512 (void *)&cmd_showcfg_what, 7513 NULL, 7514 }, 7515 }; 7516 7517 /* *** SHOW ALL PORT INFO *** */ 7518 struct cmd_showportall_result { 7519 cmdline_fixed_string_t show; 7520 cmdline_fixed_string_t port; 7521 cmdline_fixed_string_t what; 7522 cmdline_fixed_string_t all; 7523 }; 7524 7525 static void cmd_showportall_parsed(void *parsed_result, 7526 __rte_unused struct cmdline *cl, 7527 __rte_unused void *data) 7528 { 7529 portid_t i; 7530 7531 struct cmd_showportall_result *res = parsed_result; 7532 if (!strcmp(res->show, "clear")) { 7533 if (!strcmp(res->what, "stats")) 7534 RTE_ETH_FOREACH_DEV(i) 7535 nic_stats_clear(i); 7536 else if (!strcmp(res->what, "xstats")) 7537 RTE_ETH_FOREACH_DEV(i) 7538 nic_xstats_clear(i); 7539 } else if (!strcmp(res->what, "info")) 7540 RTE_ETH_FOREACH_DEV(i) 7541 port_infos_display(i); 7542 else if (!strcmp(res->what, "summary")) { 7543 port_summary_header_display(); 7544 RTE_ETH_FOREACH_DEV(i) 7545 port_summary_display(i); 7546 } 7547 else if (!strcmp(res->what, "stats")) 7548 RTE_ETH_FOREACH_DEV(i) 7549 nic_stats_display(i); 7550 else if (!strcmp(res->what, "xstats")) 7551 RTE_ETH_FOREACH_DEV(i) 7552 nic_xstats_display(i); 7553 #if defined(RTE_NET_I40E) || defined(RTE_NET_IXGBE) 7554 else if (!strcmp(res->what, "fdir")) 7555 RTE_ETH_FOREACH_DEV(i) 7556 fdir_get_infos(i); 7557 #endif 7558 else if (!strcmp(res->what, "dcb_tc")) 7559 RTE_ETH_FOREACH_DEV(i) 7560 port_dcb_info_display(i); 7561 else if (!strcmp(res->what, "cap")) 7562 RTE_ETH_FOREACH_DEV(i) 7563 port_offload_cap_display(i); 7564 } 7565 7566 cmdline_parse_token_string_t cmd_showportall_show = 7567 TOKEN_STRING_INITIALIZER(struct cmd_showportall_result, show, 7568 "show#clear"); 7569 cmdline_parse_token_string_t cmd_showportall_port = 7570 TOKEN_STRING_INITIALIZER(struct cmd_showportall_result, port, "port"); 7571 cmdline_parse_token_string_t cmd_showportall_what = 7572 TOKEN_STRING_INITIALIZER(struct cmd_showportall_result, what, 7573 "info#summary#stats#xstats#fdir#dcb_tc#cap"); 7574 cmdline_parse_token_string_t cmd_showportall_all = 7575 TOKEN_STRING_INITIALIZER(struct cmd_showportall_result, all, "all"); 7576 cmdline_parse_inst_t cmd_showportall = { 7577 .f = cmd_showportall_parsed, 7578 .data = NULL, 7579 .help_str = "show|clear port " 7580 "info|summary|stats|xstats|fdir|dcb_tc|cap all", 7581 .tokens = { 7582 (void *)&cmd_showportall_show, 7583 (void *)&cmd_showportall_port, 7584 (void *)&cmd_showportall_what, 7585 (void *)&cmd_showportall_all, 7586 NULL, 7587 }, 7588 }; 7589 7590 /* *** SHOW PORT INFO *** */ 7591 struct cmd_showport_result { 7592 cmdline_fixed_string_t show; 7593 cmdline_fixed_string_t port; 7594 cmdline_fixed_string_t what; 7595 uint16_t portnum; 7596 }; 7597 7598 static void cmd_showport_parsed(void *parsed_result, 7599 __rte_unused struct cmdline *cl, 7600 __rte_unused void *data) 7601 { 7602 struct cmd_showport_result *res = parsed_result; 7603 if (!strcmp(res->show, "clear")) { 7604 if (!strcmp(res->what, "stats")) 7605 nic_stats_clear(res->portnum); 7606 else if (!strcmp(res->what, "xstats")) 7607 nic_xstats_clear(res->portnum); 7608 } else if (!strcmp(res->what, "info")) 7609 port_infos_display(res->portnum); 7610 else if (!strcmp(res->what, "summary")) { 7611 port_summary_header_display(); 7612 port_summary_display(res->portnum); 7613 } 7614 else if (!strcmp(res->what, "stats")) 7615 nic_stats_display(res->portnum); 7616 else if (!strcmp(res->what, "xstats")) 7617 nic_xstats_display(res->portnum); 7618 #if defined(RTE_NET_I40E) || defined(RTE_NET_IXGBE) 7619 else if (!strcmp(res->what, "fdir")) 7620 fdir_get_infos(res->portnum); 7621 #endif 7622 else if (!strcmp(res->what, "dcb_tc")) 7623 port_dcb_info_display(res->portnum); 7624 else if (!strcmp(res->what, "cap")) 7625 port_offload_cap_display(res->portnum); 7626 } 7627 7628 cmdline_parse_token_string_t cmd_showport_show = 7629 TOKEN_STRING_INITIALIZER(struct cmd_showport_result, show, 7630 "show#clear"); 7631 cmdline_parse_token_string_t cmd_showport_port = 7632 TOKEN_STRING_INITIALIZER(struct cmd_showport_result, port, "port"); 7633 cmdline_parse_token_string_t cmd_showport_what = 7634 TOKEN_STRING_INITIALIZER(struct cmd_showport_result, what, 7635 "info#summary#stats#xstats#fdir#dcb_tc#cap"); 7636 cmdline_parse_token_num_t cmd_showport_portnum = 7637 TOKEN_NUM_INITIALIZER(struct cmd_showport_result, portnum, RTE_UINT16); 7638 7639 cmdline_parse_inst_t cmd_showport = { 7640 .f = cmd_showport_parsed, 7641 .data = NULL, 7642 .help_str = "show|clear port " 7643 "info|summary|stats|xstats|fdir|dcb_tc|cap " 7644 "<port_id>", 7645 .tokens = { 7646 (void *)&cmd_showport_show, 7647 (void *)&cmd_showport_port, 7648 (void *)&cmd_showport_what, 7649 (void *)&cmd_showport_portnum, 7650 NULL, 7651 }, 7652 }; 7653 7654 /* *** SHOW DEVICE INFO *** */ 7655 struct cmd_showdevice_result { 7656 cmdline_fixed_string_t show; 7657 cmdline_fixed_string_t device; 7658 cmdline_fixed_string_t what; 7659 cmdline_fixed_string_t identifier; 7660 }; 7661 7662 static void cmd_showdevice_parsed(void *parsed_result, 7663 __rte_unused struct cmdline *cl, 7664 __rte_unused void *data) 7665 { 7666 struct cmd_showdevice_result *res = parsed_result; 7667 if (!strcmp(res->what, "info")) { 7668 if (!strcmp(res->identifier, "all")) 7669 device_infos_display(NULL); 7670 else 7671 device_infos_display(res->identifier); 7672 } 7673 } 7674 7675 cmdline_parse_token_string_t cmd_showdevice_show = 7676 TOKEN_STRING_INITIALIZER(struct cmd_showdevice_result, show, 7677 "show"); 7678 cmdline_parse_token_string_t cmd_showdevice_device = 7679 TOKEN_STRING_INITIALIZER(struct cmd_showdevice_result, device, "device"); 7680 cmdline_parse_token_string_t cmd_showdevice_what = 7681 TOKEN_STRING_INITIALIZER(struct cmd_showdevice_result, what, 7682 "info"); 7683 cmdline_parse_token_string_t cmd_showdevice_identifier = 7684 TOKEN_STRING_INITIALIZER(struct cmd_showdevice_result, 7685 identifier, NULL); 7686 7687 cmdline_parse_inst_t cmd_showdevice = { 7688 .f = cmd_showdevice_parsed, 7689 .data = NULL, 7690 .help_str = "show device info <identifier>|all", 7691 .tokens = { 7692 (void *)&cmd_showdevice_show, 7693 (void *)&cmd_showdevice_device, 7694 (void *)&cmd_showdevice_what, 7695 (void *)&cmd_showdevice_identifier, 7696 NULL, 7697 }, 7698 }; 7699 7700 /* *** SHOW MODULE EEPROM/EEPROM port INFO *** */ 7701 struct cmd_showeeprom_result { 7702 cmdline_fixed_string_t show; 7703 cmdline_fixed_string_t port; 7704 uint16_t portnum; 7705 cmdline_fixed_string_t type; 7706 }; 7707 7708 static void cmd_showeeprom_parsed(void *parsed_result, 7709 __rte_unused struct cmdline *cl, 7710 __rte_unused void *data) 7711 { 7712 struct cmd_showeeprom_result *res = parsed_result; 7713 7714 if (!strcmp(res->type, "eeprom")) 7715 port_eeprom_display(res->portnum); 7716 else if (!strcmp(res->type, "module_eeprom")) 7717 port_module_eeprom_display(res->portnum); 7718 else 7719 printf("Unknown argument\n"); 7720 } 7721 7722 cmdline_parse_token_string_t cmd_showeeprom_show = 7723 TOKEN_STRING_INITIALIZER(struct cmd_showeeprom_result, show, "show"); 7724 cmdline_parse_token_string_t cmd_showeeprom_port = 7725 TOKEN_STRING_INITIALIZER(struct cmd_showeeprom_result, port, "port"); 7726 cmdline_parse_token_num_t cmd_showeeprom_portnum = 7727 TOKEN_NUM_INITIALIZER(struct cmd_showeeprom_result, portnum, 7728 RTE_UINT16); 7729 cmdline_parse_token_string_t cmd_showeeprom_type = 7730 TOKEN_STRING_INITIALIZER(struct cmd_showeeprom_result, type, "module_eeprom#eeprom"); 7731 7732 cmdline_parse_inst_t cmd_showeeprom = { 7733 .f = cmd_showeeprom_parsed, 7734 .data = NULL, 7735 .help_str = "show port <port_id> module_eeprom|eeprom", 7736 .tokens = { 7737 (void *)&cmd_showeeprom_show, 7738 (void *)&cmd_showeeprom_port, 7739 (void *)&cmd_showeeprom_portnum, 7740 (void *)&cmd_showeeprom_type, 7741 NULL, 7742 }, 7743 }; 7744 7745 /* *** SHOW QUEUE INFO *** */ 7746 struct cmd_showqueue_result { 7747 cmdline_fixed_string_t show; 7748 cmdline_fixed_string_t type; 7749 cmdline_fixed_string_t what; 7750 uint16_t portnum; 7751 uint16_t queuenum; 7752 }; 7753 7754 static void 7755 cmd_showqueue_parsed(void *parsed_result, 7756 __rte_unused struct cmdline *cl, 7757 __rte_unused void *data) 7758 { 7759 struct cmd_showqueue_result *res = parsed_result; 7760 7761 if (!strcmp(res->type, "rxq")) 7762 rx_queue_infos_display(res->portnum, res->queuenum); 7763 else if (!strcmp(res->type, "txq")) 7764 tx_queue_infos_display(res->portnum, res->queuenum); 7765 } 7766 7767 cmdline_parse_token_string_t cmd_showqueue_show = 7768 TOKEN_STRING_INITIALIZER(struct cmd_showqueue_result, show, "show"); 7769 cmdline_parse_token_string_t cmd_showqueue_type = 7770 TOKEN_STRING_INITIALIZER(struct cmd_showqueue_result, type, "rxq#txq"); 7771 cmdline_parse_token_string_t cmd_showqueue_what = 7772 TOKEN_STRING_INITIALIZER(struct cmd_showqueue_result, what, "info"); 7773 cmdline_parse_token_num_t cmd_showqueue_portnum = 7774 TOKEN_NUM_INITIALIZER(struct cmd_showqueue_result, portnum, 7775 RTE_UINT16); 7776 cmdline_parse_token_num_t cmd_showqueue_queuenum = 7777 TOKEN_NUM_INITIALIZER(struct cmd_showqueue_result, queuenum, 7778 RTE_UINT16); 7779 7780 cmdline_parse_inst_t cmd_showqueue = { 7781 .f = cmd_showqueue_parsed, 7782 .data = NULL, 7783 .help_str = "show rxq|txq info <port_id> <queue_id>", 7784 .tokens = { 7785 (void *)&cmd_showqueue_show, 7786 (void *)&cmd_showqueue_type, 7787 (void *)&cmd_showqueue_what, 7788 (void *)&cmd_showqueue_portnum, 7789 (void *)&cmd_showqueue_queuenum, 7790 NULL, 7791 }, 7792 }; 7793 7794 /* show/clear fwd engine statistics */ 7795 struct fwd_result { 7796 cmdline_fixed_string_t action; 7797 cmdline_fixed_string_t fwd; 7798 cmdline_fixed_string_t stats; 7799 cmdline_fixed_string_t all; 7800 }; 7801 7802 cmdline_parse_token_string_t cmd_fwd_action = 7803 TOKEN_STRING_INITIALIZER(struct fwd_result, action, "show#clear"); 7804 cmdline_parse_token_string_t cmd_fwd_fwd = 7805 TOKEN_STRING_INITIALIZER(struct fwd_result, fwd, "fwd"); 7806 cmdline_parse_token_string_t cmd_fwd_stats = 7807 TOKEN_STRING_INITIALIZER(struct fwd_result, stats, "stats"); 7808 cmdline_parse_token_string_t cmd_fwd_all = 7809 TOKEN_STRING_INITIALIZER(struct fwd_result, all, "all"); 7810 7811 static void 7812 cmd_showfwdall_parsed(void *parsed_result, 7813 __rte_unused struct cmdline *cl, 7814 __rte_unused void *data) 7815 { 7816 struct fwd_result *res = parsed_result; 7817 7818 if (!strcmp(res->action, "show")) 7819 fwd_stats_display(); 7820 else 7821 fwd_stats_reset(); 7822 } 7823 7824 static cmdline_parse_inst_t cmd_showfwdall = { 7825 .f = cmd_showfwdall_parsed, 7826 .data = NULL, 7827 .help_str = "show|clear fwd stats all", 7828 .tokens = { 7829 (void *)&cmd_fwd_action, 7830 (void *)&cmd_fwd_fwd, 7831 (void *)&cmd_fwd_stats, 7832 (void *)&cmd_fwd_all, 7833 NULL, 7834 }, 7835 }; 7836 7837 /* *** READ PORT REGISTER *** */ 7838 struct cmd_read_reg_result { 7839 cmdline_fixed_string_t read; 7840 cmdline_fixed_string_t reg; 7841 portid_t port_id; 7842 uint32_t reg_off; 7843 }; 7844 7845 static void 7846 cmd_read_reg_parsed(void *parsed_result, 7847 __rte_unused struct cmdline *cl, 7848 __rte_unused void *data) 7849 { 7850 struct cmd_read_reg_result *res = parsed_result; 7851 port_reg_display(res->port_id, res->reg_off); 7852 } 7853 7854 cmdline_parse_token_string_t cmd_read_reg_read = 7855 TOKEN_STRING_INITIALIZER(struct cmd_read_reg_result, read, "read"); 7856 cmdline_parse_token_string_t cmd_read_reg_reg = 7857 TOKEN_STRING_INITIALIZER(struct cmd_read_reg_result, reg, "reg"); 7858 cmdline_parse_token_num_t cmd_read_reg_port_id = 7859 TOKEN_NUM_INITIALIZER(struct cmd_read_reg_result, port_id, RTE_UINT16); 7860 cmdline_parse_token_num_t cmd_read_reg_reg_off = 7861 TOKEN_NUM_INITIALIZER(struct cmd_read_reg_result, reg_off, RTE_UINT32); 7862 7863 cmdline_parse_inst_t cmd_read_reg = { 7864 .f = cmd_read_reg_parsed, 7865 .data = NULL, 7866 .help_str = "read reg <port_id> <reg_off>", 7867 .tokens = { 7868 (void *)&cmd_read_reg_read, 7869 (void *)&cmd_read_reg_reg, 7870 (void *)&cmd_read_reg_port_id, 7871 (void *)&cmd_read_reg_reg_off, 7872 NULL, 7873 }, 7874 }; 7875 7876 /* *** READ PORT REGISTER BIT FIELD *** */ 7877 struct cmd_read_reg_bit_field_result { 7878 cmdline_fixed_string_t read; 7879 cmdline_fixed_string_t regfield; 7880 portid_t port_id; 7881 uint32_t reg_off; 7882 uint8_t bit1_pos; 7883 uint8_t bit2_pos; 7884 }; 7885 7886 static void 7887 cmd_read_reg_bit_field_parsed(void *parsed_result, 7888 __rte_unused struct cmdline *cl, 7889 __rte_unused void *data) 7890 { 7891 struct cmd_read_reg_bit_field_result *res = parsed_result; 7892 port_reg_bit_field_display(res->port_id, res->reg_off, 7893 res->bit1_pos, res->bit2_pos); 7894 } 7895 7896 cmdline_parse_token_string_t cmd_read_reg_bit_field_read = 7897 TOKEN_STRING_INITIALIZER(struct cmd_read_reg_bit_field_result, read, 7898 "read"); 7899 cmdline_parse_token_string_t cmd_read_reg_bit_field_regfield = 7900 TOKEN_STRING_INITIALIZER(struct cmd_read_reg_bit_field_result, 7901 regfield, "regfield"); 7902 cmdline_parse_token_num_t cmd_read_reg_bit_field_port_id = 7903 TOKEN_NUM_INITIALIZER(struct cmd_read_reg_bit_field_result, port_id, 7904 RTE_UINT16); 7905 cmdline_parse_token_num_t cmd_read_reg_bit_field_reg_off = 7906 TOKEN_NUM_INITIALIZER(struct cmd_read_reg_bit_field_result, reg_off, 7907 RTE_UINT32); 7908 cmdline_parse_token_num_t cmd_read_reg_bit_field_bit1_pos = 7909 TOKEN_NUM_INITIALIZER(struct cmd_read_reg_bit_field_result, bit1_pos, 7910 RTE_UINT8); 7911 cmdline_parse_token_num_t cmd_read_reg_bit_field_bit2_pos = 7912 TOKEN_NUM_INITIALIZER(struct cmd_read_reg_bit_field_result, bit2_pos, 7913 RTE_UINT8); 7914 7915 cmdline_parse_inst_t cmd_read_reg_bit_field = { 7916 .f = cmd_read_reg_bit_field_parsed, 7917 .data = NULL, 7918 .help_str = "read regfield <port_id> <reg_off> <bit_x> <bit_y>: " 7919 "Read register bit field between bit_x and bit_y included", 7920 .tokens = { 7921 (void *)&cmd_read_reg_bit_field_read, 7922 (void *)&cmd_read_reg_bit_field_regfield, 7923 (void *)&cmd_read_reg_bit_field_port_id, 7924 (void *)&cmd_read_reg_bit_field_reg_off, 7925 (void *)&cmd_read_reg_bit_field_bit1_pos, 7926 (void *)&cmd_read_reg_bit_field_bit2_pos, 7927 NULL, 7928 }, 7929 }; 7930 7931 /* *** READ PORT REGISTER BIT *** */ 7932 struct cmd_read_reg_bit_result { 7933 cmdline_fixed_string_t read; 7934 cmdline_fixed_string_t regbit; 7935 portid_t port_id; 7936 uint32_t reg_off; 7937 uint8_t bit_pos; 7938 }; 7939 7940 static void 7941 cmd_read_reg_bit_parsed(void *parsed_result, 7942 __rte_unused struct cmdline *cl, 7943 __rte_unused void *data) 7944 { 7945 struct cmd_read_reg_bit_result *res = parsed_result; 7946 port_reg_bit_display(res->port_id, res->reg_off, res->bit_pos); 7947 } 7948 7949 cmdline_parse_token_string_t cmd_read_reg_bit_read = 7950 TOKEN_STRING_INITIALIZER(struct cmd_read_reg_bit_result, read, "read"); 7951 cmdline_parse_token_string_t cmd_read_reg_bit_regbit = 7952 TOKEN_STRING_INITIALIZER(struct cmd_read_reg_bit_result, 7953 regbit, "regbit"); 7954 cmdline_parse_token_num_t cmd_read_reg_bit_port_id = 7955 TOKEN_NUM_INITIALIZER(struct cmd_read_reg_bit_result, port_id, 7956 RTE_UINT16); 7957 cmdline_parse_token_num_t cmd_read_reg_bit_reg_off = 7958 TOKEN_NUM_INITIALIZER(struct cmd_read_reg_bit_result, reg_off, 7959 RTE_UINT32); 7960 cmdline_parse_token_num_t cmd_read_reg_bit_bit_pos = 7961 TOKEN_NUM_INITIALIZER(struct cmd_read_reg_bit_result, bit_pos, 7962 RTE_UINT8); 7963 7964 cmdline_parse_inst_t cmd_read_reg_bit = { 7965 .f = cmd_read_reg_bit_parsed, 7966 .data = NULL, 7967 .help_str = "read regbit <port_id> <reg_off> <bit_x>: 0 <= bit_x <= 31", 7968 .tokens = { 7969 (void *)&cmd_read_reg_bit_read, 7970 (void *)&cmd_read_reg_bit_regbit, 7971 (void *)&cmd_read_reg_bit_port_id, 7972 (void *)&cmd_read_reg_bit_reg_off, 7973 (void *)&cmd_read_reg_bit_bit_pos, 7974 NULL, 7975 }, 7976 }; 7977 7978 /* *** WRITE PORT REGISTER *** */ 7979 struct cmd_write_reg_result { 7980 cmdline_fixed_string_t write; 7981 cmdline_fixed_string_t reg; 7982 portid_t port_id; 7983 uint32_t reg_off; 7984 uint32_t value; 7985 }; 7986 7987 static void 7988 cmd_write_reg_parsed(void *parsed_result, 7989 __rte_unused struct cmdline *cl, 7990 __rte_unused void *data) 7991 { 7992 struct cmd_write_reg_result *res = parsed_result; 7993 port_reg_set(res->port_id, res->reg_off, res->value); 7994 } 7995 7996 cmdline_parse_token_string_t cmd_write_reg_write = 7997 TOKEN_STRING_INITIALIZER(struct cmd_write_reg_result, write, "write"); 7998 cmdline_parse_token_string_t cmd_write_reg_reg = 7999 TOKEN_STRING_INITIALIZER(struct cmd_write_reg_result, reg, "reg"); 8000 cmdline_parse_token_num_t cmd_write_reg_port_id = 8001 TOKEN_NUM_INITIALIZER(struct cmd_write_reg_result, port_id, RTE_UINT16); 8002 cmdline_parse_token_num_t cmd_write_reg_reg_off = 8003 TOKEN_NUM_INITIALIZER(struct cmd_write_reg_result, reg_off, RTE_UINT32); 8004 cmdline_parse_token_num_t cmd_write_reg_value = 8005 TOKEN_NUM_INITIALIZER(struct cmd_write_reg_result, value, RTE_UINT32); 8006 8007 cmdline_parse_inst_t cmd_write_reg = { 8008 .f = cmd_write_reg_parsed, 8009 .data = NULL, 8010 .help_str = "write reg <port_id> <reg_off> <reg_value>", 8011 .tokens = { 8012 (void *)&cmd_write_reg_write, 8013 (void *)&cmd_write_reg_reg, 8014 (void *)&cmd_write_reg_port_id, 8015 (void *)&cmd_write_reg_reg_off, 8016 (void *)&cmd_write_reg_value, 8017 NULL, 8018 }, 8019 }; 8020 8021 /* *** WRITE PORT REGISTER BIT FIELD *** */ 8022 struct cmd_write_reg_bit_field_result { 8023 cmdline_fixed_string_t write; 8024 cmdline_fixed_string_t regfield; 8025 portid_t port_id; 8026 uint32_t reg_off; 8027 uint8_t bit1_pos; 8028 uint8_t bit2_pos; 8029 uint32_t value; 8030 }; 8031 8032 static void 8033 cmd_write_reg_bit_field_parsed(void *parsed_result, 8034 __rte_unused struct cmdline *cl, 8035 __rte_unused void *data) 8036 { 8037 struct cmd_write_reg_bit_field_result *res = parsed_result; 8038 port_reg_bit_field_set(res->port_id, res->reg_off, 8039 res->bit1_pos, res->bit2_pos, res->value); 8040 } 8041 8042 cmdline_parse_token_string_t cmd_write_reg_bit_field_write = 8043 TOKEN_STRING_INITIALIZER(struct cmd_write_reg_bit_field_result, write, 8044 "write"); 8045 cmdline_parse_token_string_t cmd_write_reg_bit_field_regfield = 8046 TOKEN_STRING_INITIALIZER(struct cmd_write_reg_bit_field_result, 8047 regfield, "regfield"); 8048 cmdline_parse_token_num_t cmd_write_reg_bit_field_port_id = 8049 TOKEN_NUM_INITIALIZER(struct cmd_write_reg_bit_field_result, port_id, 8050 RTE_UINT16); 8051 cmdline_parse_token_num_t cmd_write_reg_bit_field_reg_off = 8052 TOKEN_NUM_INITIALIZER(struct cmd_write_reg_bit_field_result, reg_off, 8053 RTE_UINT32); 8054 cmdline_parse_token_num_t cmd_write_reg_bit_field_bit1_pos = 8055 TOKEN_NUM_INITIALIZER(struct cmd_write_reg_bit_field_result, bit1_pos, 8056 RTE_UINT8); 8057 cmdline_parse_token_num_t cmd_write_reg_bit_field_bit2_pos = 8058 TOKEN_NUM_INITIALIZER(struct cmd_write_reg_bit_field_result, bit2_pos, 8059 RTE_UINT8); 8060 cmdline_parse_token_num_t cmd_write_reg_bit_field_value = 8061 TOKEN_NUM_INITIALIZER(struct cmd_write_reg_bit_field_result, value, 8062 RTE_UINT32); 8063 8064 cmdline_parse_inst_t cmd_write_reg_bit_field = { 8065 .f = cmd_write_reg_bit_field_parsed, 8066 .data = NULL, 8067 .help_str = "write regfield <port_id> <reg_off> <bit_x> <bit_y> " 8068 "<reg_value>: " 8069 "Set register bit field between bit_x and bit_y included", 8070 .tokens = { 8071 (void *)&cmd_write_reg_bit_field_write, 8072 (void *)&cmd_write_reg_bit_field_regfield, 8073 (void *)&cmd_write_reg_bit_field_port_id, 8074 (void *)&cmd_write_reg_bit_field_reg_off, 8075 (void *)&cmd_write_reg_bit_field_bit1_pos, 8076 (void *)&cmd_write_reg_bit_field_bit2_pos, 8077 (void *)&cmd_write_reg_bit_field_value, 8078 NULL, 8079 }, 8080 }; 8081 8082 /* *** WRITE PORT REGISTER BIT *** */ 8083 struct cmd_write_reg_bit_result { 8084 cmdline_fixed_string_t write; 8085 cmdline_fixed_string_t regbit; 8086 portid_t port_id; 8087 uint32_t reg_off; 8088 uint8_t bit_pos; 8089 uint8_t value; 8090 }; 8091 8092 static void 8093 cmd_write_reg_bit_parsed(void *parsed_result, 8094 __rte_unused struct cmdline *cl, 8095 __rte_unused void *data) 8096 { 8097 struct cmd_write_reg_bit_result *res = parsed_result; 8098 port_reg_bit_set(res->port_id, res->reg_off, res->bit_pos, res->value); 8099 } 8100 8101 cmdline_parse_token_string_t cmd_write_reg_bit_write = 8102 TOKEN_STRING_INITIALIZER(struct cmd_write_reg_bit_result, write, 8103 "write"); 8104 cmdline_parse_token_string_t cmd_write_reg_bit_regbit = 8105 TOKEN_STRING_INITIALIZER(struct cmd_write_reg_bit_result, 8106 regbit, "regbit"); 8107 cmdline_parse_token_num_t cmd_write_reg_bit_port_id = 8108 TOKEN_NUM_INITIALIZER(struct cmd_write_reg_bit_result, port_id, 8109 RTE_UINT16); 8110 cmdline_parse_token_num_t cmd_write_reg_bit_reg_off = 8111 TOKEN_NUM_INITIALIZER(struct cmd_write_reg_bit_result, reg_off, 8112 RTE_UINT32); 8113 cmdline_parse_token_num_t cmd_write_reg_bit_bit_pos = 8114 TOKEN_NUM_INITIALIZER(struct cmd_write_reg_bit_result, bit_pos, 8115 RTE_UINT8); 8116 cmdline_parse_token_num_t cmd_write_reg_bit_value = 8117 TOKEN_NUM_INITIALIZER(struct cmd_write_reg_bit_result, value, 8118 RTE_UINT8); 8119 8120 cmdline_parse_inst_t cmd_write_reg_bit = { 8121 .f = cmd_write_reg_bit_parsed, 8122 .data = NULL, 8123 .help_str = "write regbit <port_id> <reg_off> <bit_x> 0|1: " 8124 "0 <= bit_x <= 31", 8125 .tokens = { 8126 (void *)&cmd_write_reg_bit_write, 8127 (void *)&cmd_write_reg_bit_regbit, 8128 (void *)&cmd_write_reg_bit_port_id, 8129 (void *)&cmd_write_reg_bit_reg_off, 8130 (void *)&cmd_write_reg_bit_bit_pos, 8131 (void *)&cmd_write_reg_bit_value, 8132 NULL, 8133 }, 8134 }; 8135 8136 /* *** READ A RING DESCRIPTOR OF A PORT RX/TX QUEUE *** */ 8137 struct cmd_read_rxd_txd_result { 8138 cmdline_fixed_string_t read; 8139 cmdline_fixed_string_t rxd_txd; 8140 portid_t port_id; 8141 uint16_t queue_id; 8142 uint16_t desc_id; 8143 }; 8144 8145 static void 8146 cmd_read_rxd_txd_parsed(void *parsed_result, 8147 __rte_unused struct cmdline *cl, 8148 __rte_unused void *data) 8149 { 8150 struct cmd_read_rxd_txd_result *res = parsed_result; 8151 8152 if (!strcmp(res->rxd_txd, "rxd")) 8153 rx_ring_desc_display(res->port_id, res->queue_id, res->desc_id); 8154 else if (!strcmp(res->rxd_txd, "txd")) 8155 tx_ring_desc_display(res->port_id, res->queue_id, res->desc_id); 8156 } 8157 8158 cmdline_parse_token_string_t cmd_read_rxd_txd_read = 8159 TOKEN_STRING_INITIALIZER(struct cmd_read_rxd_txd_result, read, "read"); 8160 cmdline_parse_token_string_t cmd_read_rxd_txd_rxd_txd = 8161 TOKEN_STRING_INITIALIZER(struct cmd_read_rxd_txd_result, rxd_txd, 8162 "rxd#txd"); 8163 cmdline_parse_token_num_t cmd_read_rxd_txd_port_id = 8164 TOKEN_NUM_INITIALIZER(struct cmd_read_rxd_txd_result, port_id, 8165 RTE_UINT16); 8166 cmdline_parse_token_num_t cmd_read_rxd_txd_queue_id = 8167 TOKEN_NUM_INITIALIZER(struct cmd_read_rxd_txd_result, queue_id, 8168 RTE_UINT16); 8169 cmdline_parse_token_num_t cmd_read_rxd_txd_desc_id = 8170 TOKEN_NUM_INITIALIZER(struct cmd_read_rxd_txd_result, desc_id, 8171 RTE_UINT16); 8172 8173 cmdline_parse_inst_t cmd_read_rxd_txd = { 8174 .f = cmd_read_rxd_txd_parsed, 8175 .data = NULL, 8176 .help_str = "read rxd|txd <port_id> <queue_id> <desc_id>", 8177 .tokens = { 8178 (void *)&cmd_read_rxd_txd_read, 8179 (void *)&cmd_read_rxd_txd_rxd_txd, 8180 (void *)&cmd_read_rxd_txd_port_id, 8181 (void *)&cmd_read_rxd_txd_queue_id, 8182 (void *)&cmd_read_rxd_txd_desc_id, 8183 NULL, 8184 }, 8185 }; 8186 8187 /* *** QUIT *** */ 8188 struct cmd_quit_result { 8189 cmdline_fixed_string_t quit; 8190 }; 8191 8192 static void cmd_quit_parsed(__rte_unused void *parsed_result, 8193 struct cmdline *cl, 8194 __rte_unused void *data) 8195 { 8196 cmdline_quit(cl); 8197 } 8198 8199 cmdline_parse_token_string_t cmd_quit_quit = 8200 TOKEN_STRING_INITIALIZER(struct cmd_quit_result, quit, "quit"); 8201 8202 cmdline_parse_inst_t cmd_quit = { 8203 .f = cmd_quit_parsed, 8204 .data = NULL, 8205 .help_str = "quit: Exit application", 8206 .tokens = { 8207 (void *)&cmd_quit_quit, 8208 NULL, 8209 }, 8210 }; 8211 8212 /* *** ADD/REMOVE MAC ADDRESS FROM A PORT *** */ 8213 struct cmd_mac_addr_result { 8214 cmdline_fixed_string_t mac_addr_cmd; 8215 cmdline_fixed_string_t what; 8216 uint16_t port_num; 8217 struct rte_ether_addr address; 8218 }; 8219 8220 static void cmd_mac_addr_parsed(void *parsed_result, 8221 __rte_unused struct cmdline *cl, 8222 __rte_unused void *data) 8223 { 8224 struct cmd_mac_addr_result *res = parsed_result; 8225 int ret; 8226 8227 if (strcmp(res->what, "add") == 0) 8228 ret = rte_eth_dev_mac_addr_add(res->port_num, &res->address, 0); 8229 else if (strcmp(res->what, "set") == 0) 8230 ret = rte_eth_dev_default_mac_addr_set(res->port_num, 8231 &res->address); 8232 else 8233 ret = rte_eth_dev_mac_addr_remove(res->port_num, &res->address); 8234 8235 /* check the return value and print it if is < 0 */ 8236 if(ret < 0) 8237 printf("mac_addr_cmd error: (%s)\n", strerror(-ret)); 8238 8239 } 8240 8241 cmdline_parse_token_string_t cmd_mac_addr_cmd = 8242 TOKEN_STRING_INITIALIZER(struct cmd_mac_addr_result, mac_addr_cmd, 8243 "mac_addr"); 8244 cmdline_parse_token_string_t cmd_mac_addr_what = 8245 TOKEN_STRING_INITIALIZER(struct cmd_mac_addr_result, what, 8246 "add#remove#set"); 8247 cmdline_parse_token_num_t cmd_mac_addr_portnum = 8248 TOKEN_NUM_INITIALIZER(struct cmd_mac_addr_result, port_num, 8249 RTE_UINT16); 8250 cmdline_parse_token_etheraddr_t cmd_mac_addr_addr = 8251 TOKEN_ETHERADDR_INITIALIZER(struct cmd_mac_addr_result, address); 8252 8253 cmdline_parse_inst_t cmd_mac_addr = { 8254 .f = cmd_mac_addr_parsed, 8255 .data = (void *)0, 8256 .help_str = "mac_addr add|remove|set <port_id> <mac_addr>: " 8257 "Add/Remove/Set MAC address on port_id", 8258 .tokens = { 8259 (void *)&cmd_mac_addr_cmd, 8260 (void *)&cmd_mac_addr_what, 8261 (void *)&cmd_mac_addr_portnum, 8262 (void *)&cmd_mac_addr_addr, 8263 NULL, 8264 }, 8265 }; 8266 8267 /* *** SET THE PEER ADDRESS FOR CERTAIN PORT *** */ 8268 struct cmd_eth_peer_result { 8269 cmdline_fixed_string_t set; 8270 cmdline_fixed_string_t eth_peer; 8271 portid_t port_id; 8272 cmdline_fixed_string_t peer_addr; 8273 }; 8274 8275 static void cmd_set_eth_peer_parsed(void *parsed_result, 8276 __rte_unused struct cmdline *cl, 8277 __rte_unused void *data) 8278 { 8279 struct cmd_eth_peer_result *res = parsed_result; 8280 8281 if (test_done == 0) { 8282 printf("Please stop forwarding first\n"); 8283 return; 8284 } 8285 if (!strcmp(res->eth_peer, "eth-peer")) { 8286 set_fwd_eth_peer(res->port_id, res->peer_addr); 8287 fwd_config_setup(); 8288 } 8289 } 8290 cmdline_parse_token_string_t cmd_eth_peer_set = 8291 TOKEN_STRING_INITIALIZER(struct cmd_eth_peer_result, set, "set"); 8292 cmdline_parse_token_string_t cmd_eth_peer = 8293 TOKEN_STRING_INITIALIZER(struct cmd_eth_peer_result, eth_peer, "eth-peer"); 8294 cmdline_parse_token_num_t cmd_eth_peer_port_id = 8295 TOKEN_NUM_INITIALIZER(struct cmd_eth_peer_result, port_id, 8296 RTE_UINT16); 8297 cmdline_parse_token_string_t cmd_eth_peer_addr = 8298 TOKEN_STRING_INITIALIZER(struct cmd_eth_peer_result, peer_addr, NULL); 8299 8300 cmdline_parse_inst_t cmd_set_fwd_eth_peer = { 8301 .f = cmd_set_eth_peer_parsed, 8302 .data = NULL, 8303 .help_str = "set eth-peer <port_id> <peer_mac>", 8304 .tokens = { 8305 (void *)&cmd_eth_peer_set, 8306 (void *)&cmd_eth_peer, 8307 (void *)&cmd_eth_peer_port_id, 8308 (void *)&cmd_eth_peer_addr, 8309 NULL, 8310 }, 8311 }; 8312 8313 /* *** CONFIGURE QUEUE STATS COUNTER MAPPINGS *** */ 8314 struct cmd_set_qmap_result { 8315 cmdline_fixed_string_t set; 8316 cmdline_fixed_string_t qmap; 8317 cmdline_fixed_string_t what; 8318 portid_t port_id; 8319 uint16_t queue_id; 8320 uint8_t map_value; 8321 }; 8322 8323 static void 8324 cmd_set_qmap_parsed(void *parsed_result, 8325 __rte_unused struct cmdline *cl, 8326 __rte_unused void *data) 8327 { 8328 struct cmd_set_qmap_result *res = parsed_result; 8329 int is_rx = (strcmp(res->what, "tx") == 0) ? 0 : 1; 8330 8331 set_qmap(res->port_id, (uint8_t)is_rx, res->queue_id, res->map_value); 8332 } 8333 8334 cmdline_parse_token_string_t cmd_setqmap_set = 8335 TOKEN_STRING_INITIALIZER(struct cmd_set_qmap_result, 8336 set, "set"); 8337 cmdline_parse_token_string_t cmd_setqmap_qmap = 8338 TOKEN_STRING_INITIALIZER(struct cmd_set_qmap_result, 8339 qmap, "stat_qmap"); 8340 cmdline_parse_token_string_t cmd_setqmap_what = 8341 TOKEN_STRING_INITIALIZER(struct cmd_set_qmap_result, 8342 what, "tx#rx"); 8343 cmdline_parse_token_num_t cmd_setqmap_portid = 8344 TOKEN_NUM_INITIALIZER(struct cmd_set_qmap_result, 8345 port_id, RTE_UINT16); 8346 cmdline_parse_token_num_t cmd_setqmap_queueid = 8347 TOKEN_NUM_INITIALIZER(struct cmd_set_qmap_result, 8348 queue_id, RTE_UINT16); 8349 cmdline_parse_token_num_t cmd_setqmap_mapvalue = 8350 TOKEN_NUM_INITIALIZER(struct cmd_set_qmap_result, 8351 map_value, RTE_UINT8); 8352 8353 cmdline_parse_inst_t cmd_set_qmap = { 8354 .f = cmd_set_qmap_parsed, 8355 .data = NULL, 8356 .help_str = "set stat_qmap rx|tx <port_id> <queue_id> <map_value>: " 8357 "Set statistics mapping value on tx|rx queue_id of port_id", 8358 .tokens = { 8359 (void *)&cmd_setqmap_set, 8360 (void *)&cmd_setqmap_qmap, 8361 (void *)&cmd_setqmap_what, 8362 (void *)&cmd_setqmap_portid, 8363 (void *)&cmd_setqmap_queueid, 8364 (void *)&cmd_setqmap_mapvalue, 8365 NULL, 8366 }, 8367 }; 8368 8369 /* *** SET OPTION TO HIDE ZERO VALUES FOR XSTATS DISPLAY *** */ 8370 struct cmd_set_xstats_hide_zero_result { 8371 cmdline_fixed_string_t keyword; 8372 cmdline_fixed_string_t name; 8373 cmdline_fixed_string_t on_off; 8374 }; 8375 8376 static void 8377 cmd_set_xstats_hide_zero_parsed(void *parsed_result, 8378 __rte_unused struct cmdline *cl, 8379 __rte_unused void *data) 8380 { 8381 struct cmd_set_xstats_hide_zero_result *res; 8382 uint16_t on_off = 0; 8383 8384 res = parsed_result; 8385 on_off = !strcmp(res->on_off, "on") ? 1 : 0; 8386 set_xstats_hide_zero(on_off); 8387 } 8388 8389 cmdline_parse_token_string_t cmd_set_xstats_hide_zero_keyword = 8390 TOKEN_STRING_INITIALIZER(struct cmd_set_xstats_hide_zero_result, 8391 keyword, "set"); 8392 cmdline_parse_token_string_t cmd_set_xstats_hide_zero_name = 8393 TOKEN_STRING_INITIALIZER(struct cmd_set_xstats_hide_zero_result, 8394 name, "xstats-hide-zero"); 8395 cmdline_parse_token_string_t cmd_set_xstats_hide_zero_on_off = 8396 TOKEN_STRING_INITIALIZER(struct cmd_set_xstats_hide_zero_result, 8397 on_off, "on#off"); 8398 8399 cmdline_parse_inst_t cmd_set_xstats_hide_zero = { 8400 .f = cmd_set_xstats_hide_zero_parsed, 8401 .data = NULL, 8402 .help_str = "set xstats-hide-zero on|off", 8403 .tokens = { 8404 (void *)&cmd_set_xstats_hide_zero_keyword, 8405 (void *)&cmd_set_xstats_hide_zero_name, 8406 (void *)&cmd_set_xstats_hide_zero_on_off, 8407 NULL, 8408 }, 8409 }; 8410 8411 /* *** SET OPTION TO ENABLE MEASUREMENT OF CPU CYCLES *** */ 8412 struct cmd_set_record_core_cycles_result { 8413 cmdline_fixed_string_t keyword; 8414 cmdline_fixed_string_t name; 8415 cmdline_fixed_string_t on_off; 8416 }; 8417 8418 static void 8419 cmd_set_record_core_cycles_parsed(void *parsed_result, 8420 __rte_unused struct cmdline *cl, 8421 __rte_unused void *data) 8422 { 8423 struct cmd_set_record_core_cycles_result *res; 8424 uint16_t on_off = 0; 8425 8426 res = parsed_result; 8427 on_off = !strcmp(res->on_off, "on") ? 1 : 0; 8428 set_record_core_cycles(on_off); 8429 } 8430 8431 cmdline_parse_token_string_t cmd_set_record_core_cycles_keyword = 8432 TOKEN_STRING_INITIALIZER(struct cmd_set_record_core_cycles_result, 8433 keyword, "set"); 8434 cmdline_parse_token_string_t cmd_set_record_core_cycles_name = 8435 TOKEN_STRING_INITIALIZER(struct cmd_set_record_core_cycles_result, 8436 name, "record-core-cycles"); 8437 cmdline_parse_token_string_t cmd_set_record_core_cycles_on_off = 8438 TOKEN_STRING_INITIALIZER(struct cmd_set_record_core_cycles_result, 8439 on_off, "on#off"); 8440 8441 cmdline_parse_inst_t cmd_set_record_core_cycles = { 8442 .f = cmd_set_record_core_cycles_parsed, 8443 .data = NULL, 8444 .help_str = "set record-core-cycles on|off", 8445 .tokens = { 8446 (void *)&cmd_set_record_core_cycles_keyword, 8447 (void *)&cmd_set_record_core_cycles_name, 8448 (void *)&cmd_set_record_core_cycles_on_off, 8449 NULL, 8450 }, 8451 }; 8452 8453 /* *** SET OPTION TO ENABLE DISPLAY OF RX AND TX BURSTS *** */ 8454 struct cmd_set_record_burst_stats_result { 8455 cmdline_fixed_string_t keyword; 8456 cmdline_fixed_string_t name; 8457 cmdline_fixed_string_t on_off; 8458 }; 8459 8460 static void 8461 cmd_set_record_burst_stats_parsed(void *parsed_result, 8462 __rte_unused struct cmdline *cl, 8463 __rte_unused void *data) 8464 { 8465 struct cmd_set_record_burst_stats_result *res; 8466 uint16_t on_off = 0; 8467 8468 res = parsed_result; 8469 on_off = !strcmp(res->on_off, "on") ? 1 : 0; 8470 set_record_burst_stats(on_off); 8471 } 8472 8473 cmdline_parse_token_string_t cmd_set_record_burst_stats_keyword = 8474 TOKEN_STRING_INITIALIZER(struct cmd_set_record_burst_stats_result, 8475 keyword, "set"); 8476 cmdline_parse_token_string_t cmd_set_record_burst_stats_name = 8477 TOKEN_STRING_INITIALIZER(struct cmd_set_record_burst_stats_result, 8478 name, "record-burst-stats"); 8479 cmdline_parse_token_string_t cmd_set_record_burst_stats_on_off = 8480 TOKEN_STRING_INITIALIZER(struct cmd_set_record_burst_stats_result, 8481 on_off, "on#off"); 8482 8483 cmdline_parse_inst_t cmd_set_record_burst_stats = { 8484 .f = cmd_set_record_burst_stats_parsed, 8485 .data = NULL, 8486 .help_str = "set record-burst-stats on|off", 8487 .tokens = { 8488 (void *)&cmd_set_record_burst_stats_keyword, 8489 (void *)&cmd_set_record_burst_stats_name, 8490 (void *)&cmd_set_record_burst_stats_on_off, 8491 NULL, 8492 }, 8493 }; 8494 8495 /* *** CONFIGURE UNICAST HASH TABLE *** */ 8496 struct cmd_set_uc_hash_table { 8497 cmdline_fixed_string_t set; 8498 cmdline_fixed_string_t port; 8499 portid_t port_id; 8500 cmdline_fixed_string_t what; 8501 struct rte_ether_addr address; 8502 cmdline_fixed_string_t mode; 8503 }; 8504 8505 static void 8506 cmd_set_uc_hash_parsed(void *parsed_result, 8507 __rte_unused struct cmdline *cl, 8508 __rte_unused void *data) 8509 { 8510 int ret=0; 8511 struct cmd_set_uc_hash_table *res = parsed_result; 8512 8513 int is_on = (strcmp(res->mode, "on") == 0) ? 1 : 0; 8514 8515 if (strcmp(res->what, "uta") == 0) 8516 ret = rte_eth_dev_uc_hash_table_set(res->port_id, 8517 &res->address,(uint8_t)is_on); 8518 if (ret < 0) 8519 printf("bad unicast hash table parameter, return code = %d \n", ret); 8520 8521 } 8522 8523 cmdline_parse_token_string_t cmd_set_uc_hash_set = 8524 TOKEN_STRING_INITIALIZER(struct cmd_set_uc_hash_table, 8525 set, "set"); 8526 cmdline_parse_token_string_t cmd_set_uc_hash_port = 8527 TOKEN_STRING_INITIALIZER(struct cmd_set_uc_hash_table, 8528 port, "port"); 8529 cmdline_parse_token_num_t cmd_set_uc_hash_portid = 8530 TOKEN_NUM_INITIALIZER(struct cmd_set_uc_hash_table, 8531 port_id, RTE_UINT16); 8532 cmdline_parse_token_string_t cmd_set_uc_hash_what = 8533 TOKEN_STRING_INITIALIZER(struct cmd_set_uc_hash_table, 8534 what, "uta"); 8535 cmdline_parse_token_etheraddr_t cmd_set_uc_hash_mac = 8536 TOKEN_ETHERADDR_INITIALIZER(struct cmd_set_uc_hash_table, 8537 address); 8538 cmdline_parse_token_string_t cmd_set_uc_hash_mode = 8539 TOKEN_STRING_INITIALIZER(struct cmd_set_uc_hash_table, 8540 mode, "on#off"); 8541 8542 cmdline_parse_inst_t cmd_set_uc_hash_filter = { 8543 .f = cmd_set_uc_hash_parsed, 8544 .data = NULL, 8545 .help_str = "set port <port_id> uta <mac_addr> on|off)", 8546 .tokens = { 8547 (void *)&cmd_set_uc_hash_set, 8548 (void *)&cmd_set_uc_hash_port, 8549 (void *)&cmd_set_uc_hash_portid, 8550 (void *)&cmd_set_uc_hash_what, 8551 (void *)&cmd_set_uc_hash_mac, 8552 (void *)&cmd_set_uc_hash_mode, 8553 NULL, 8554 }, 8555 }; 8556 8557 struct cmd_set_uc_all_hash_table { 8558 cmdline_fixed_string_t set; 8559 cmdline_fixed_string_t port; 8560 portid_t port_id; 8561 cmdline_fixed_string_t what; 8562 cmdline_fixed_string_t value; 8563 cmdline_fixed_string_t mode; 8564 }; 8565 8566 static void 8567 cmd_set_uc_all_hash_parsed(void *parsed_result, 8568 __rte_unused struct cmdline *cl, 8569 __rte_unused void *data) 8570 { 8571 int ret=0; 8572 struct cmd_set_uc_all_hash_table *res = parsed_result; 8573 8574 int is_on = (strcmp(res->mode, "on") == 0) ? 1 : 0; 8575 8576 if ((strcmp(res->what, "uta") == 0) && 8577 (strcmp(res->value, "all") == 0)) 8578 ret = rte_eth_dev_uc_all_hash_table_set(res->port_id,(uint8_t) is_on); 8579 if (ret < 0) 8580 printf("bad unicast hash table parameter," 8581 "return code = %d \n", ret); 8582 } 8583 8584 cmdline_parse_token_string_t cmd_set_uc_all_hash_set = 8585 TOKEN_STRING_INITIALIZER(struct cmd_set_uc_all_hash_table, 8586 set, "set"); 8587 cmdline_parse_token_string_t cmd_set_uc_all_hash_port = 8588 TOKEN_STRING_INITIALIZER(struct cmd_set_uc_all_hash_table, 8589 port, "port"); 8590 cmdline_parse_token_num_t cmd_set_uc_all_hash_portid = 8591 TOKEN_NUM_INITIALIZER(struct cmd_set_uc_all_hash_table, 8592 port_id, RTE_UINT16); 8593 cmdline_parse_token_string_t cmd_set_uc_all_hash_what = 8594 TOKEN_STRING_INITIALIZER(struct cmd_set_uc_all_hash_table, 8595 what, "uta"); 8596 cmdline_parse_token_string_t cmd_set_uc_all_hash_value = 8597 TOKEN_STRING_INITIALIZER(struct cmd_set_uc_all_hash_table, 8598 value,"all"); 8599 cmdline_parse_token_string_t cmd_set_uc_all_hash_mode = 8600 TOKEN_STRING_INITIALIZER(struct cmd_set_uc_all_hash_table, 8601 mode, "on#off"); 8602 8603 cmdline_parse_inst_t cmd_set_uc_all_hash_filter = { 8604 .f = cmd_set_uc_all_hash_parsed, 8605 .data = NULL, 8606 .help_str = "set port <port_id> uta all on|off", 8607 .tokens = { 8608 (void *)&cmd_set_uc_all_hash_set, 8609 (void *)&cmd_set_uc_all_hash_port, 8610 (void *)&cmd_set_uc_all_hash_portid, 8611 (void *)&cmd_set_uc_all_hash_what, 8612 (void *)&cmd_set_uc_all_hash_value, 8613 (void *)&cmd_set_uc_all_hash_mode, 8614 NULL, 8615 }, 8616 }; 8617 8618 /* *** CONFIGURE VF TRAFFIC CONTROL *** */ 8619 struct cmd_set_vf_traffic { 8620 cmdline_fixed_string_t set; 8621 cmdline_fixed_string_t port; 8622 portid_t port_id; 8623 cmdline_fixed_string_t vf; 8624 uint8_t vf_id; 8625 cmdline_fixed_string_t what; 8626 cmdline_fixed_string_t mode; 8627 }; 8628 8629 static void 8630 cmd_set_vf_traffic_parsed(void *parsed_result, 8631 __rte_unused struct cmdline *cl, 8632 __rte_unused void *data) 8633 { 8634 struct cmd_set_vf_traffic *res = parsed_result; 8635 int is_rx = (strcmp(res->what, "rx") == 0) ? 1 : 0; 8636 int is_on = (strcmp(res->mode, "on") == 0) ? 1 : 0; 8637 8638 set_vf_traffic(res->port_id, (uint8_t)is_rx, res->vf_id,(uint8_t) is_on); 8639 } 8640 8641 cmdline_parse_token_string_t cmd_setvf_traffic_set = 8642 TOKEN_STRING_INITIALIZER(struct cmd_set_vf_traffic, 8643 set, "set"); 8644 cmdline_parse_token_string_t cmd_setvf_traffic_port = 8645 TOKEN_STRING_INITIALIZER(struct cmd_set_vf_traffic, 8646 port, "port"); 8647 cmdline_parse_token_num_t cmd_setvf_traffic_portid = 8648 TOKEN_NUM_INITIALIZER(struct cmd_set_vf_traffic, 8649 port_id, RTE_UINT16); 8650 cmdline_parse_token_string_t cmd_setvf_traffic_vf = 8651 TOKEN_STRING_INITIALIZER(struct cmd_set_vf_traffic, 8652 vf, "vf"); 8653 cmdline_parse_token_num_t cmd_setvf_traffic_vfid = 8654 TOKEN_NUM_INITIALIZER(struct cmd_set_vf_traffic, 8655 vf_id, RTE_UINT8); 8656 cmdline_parse_token_string_t cmd_setvf_traffic_what = 8657 TOKEN_STRING_INITIALIZER(struct cmd_set_vf_traffic, 8658 what, "tx#rx"); 8659 cmdline_parse_token_string_t cmd_setvf_traffic_mode = 8660 TOKEN_STRING_INITIALIZER(struct cmd_set_vf_traffic, 8661 mode, "on#off"); 8662 8663 cmdline_parse_inst_t cmd_set_vf_traffic = { 8664 .f = cmd_set_vf_traffic_parsed, 8665 .data = NULL, 8666 .help_str = "set port <port_id> vf <vf_id> rx|tx on|off", 8667 .tokens = { 8668 (void *)&cmd_setvf_traffic_set, 8669 (void *)&cmd_setvf_traffic_port, 8670 (void *)&cmd_setvf_traffic_portid, 8671 (void *)&cmd_setvf_traffic_vf, 8672 (void *)&cmd_setvf_traffic_vfid, 8673 (void *)&cmd_setvf_traffic_what, 8674 (void *)&cmd_setvf_traffic_mode, 8675 NULL, 8676 }, 8677 }; 8678 8679 /* *** CONFIGURE VF RECEIVE MODE *** */ 8680 struct cmd_set_vf_rxmode { 8681 cmdline_fixed_string_t set; 8682 cmdline_fixed_string_t port; 8683 portid_t port_id; 8684 cmdline_fixed_string_t vf; 8685 uint8_t vf_id; 8686 cmdline_fixed_string_t what; 8687 cmdline_fixed_string_t mode; 8688 cmdline_fixed_string_t on; 8689 }; 8690 8691 static void 8692 cmd_set_vf_rxmode_parsed(void *parsed_result, 8693 __rte_unused struct cmdline *cl, 8694 __rte_unused void *data) 8695 { 8696 int ret = -ENOTSUP; 8697 uint16_t vf_rxmode = 0; 8698 struct cmd_set_vf_rxmode *res = parsed_result; 8699 8700 int is_on = (strcmp(res->on, "on") == 0) ? 1 : 0; 8701 if (!strcmp(res->what,"rxmode")) { 8702 if (!strcmp(res->mode, "AUPE")) 8703 vf_rxmode |= ETH_VMDQ_ACCEPT_UNTAG; 8704 else if (!strcmp(res->mode, "ROPE")) 8705 vf_rxmode |= ETH_VMDQ_ACCEPT_HASH_UC; 8706 else if (!strcmp(res->mode, "BAM")) 8707 vf_rxmode |= ETH_VMDQ_ACCEPT_BROADCAST; 8708 else if (!strncmp(res->mode, "MPE",3)) 8709 vf_rxmode |= ETH_VMDQ_ACCEPT_MULTICAST; 8710 } 8711 8712 RTE_SET_USED(is_on); 8713 8714 #ifdef RTE_NET_IXGBE 8715 if (ret == -ENOTSUP) 8716 ret = rte_pmd_ixgbe_set_vf_rxmode(res->port_id, res->vf_id, 8717 vf_rxmode, (uint8_t)is_on); 8718 #endif 8719 #ifdef RTE_NET_BNXT 8720 if (ret == -ENOTSUP) 8721 ret = rte_pmd_bnxt_set_vf_rxmode(res->port_id, res->vf_id, 8722 vf_rxmode, (uint8_t)is_on); 8723 #endif 8724 if (ret < 0) 8725 printf("bad VF receive mode parameter, return code = %d \n", 8726 ret); 8727 } 8728 8729 cmdline_parse_token_string_t cmd_set_vf_rxmode_set = 8730 TOKEN_STRING_INITIALIZER(struct cmd_set_vf_rxmode, 8731 set, "set"); 8732 cmdline_parse_token_string_t cmd_set_vf_rxmode_port = 8733 TOKEN_STRING_INITIALIZER(struct cmd_set_vf_rxmode, 8734 port, "port"); 8735 cmdline_parse_token_num_t cmd_set_vf_rxmode_portid = 8736 TOKEN_NUM_INITIALIZER(struct cmd_set_vf_rxmode, 8737 port_id, RTE_UINT16); 8738 cmdline_parse_token_string_t cmd_set_vf_rxmode_vf = 8739 TOKEN_STRING_INITIALIZER(struct cmd_set_vf_rxmode, 8740 vf, "vf"); 8741 cmdline_parse_token_num_t cmd_set_vf_rxmode_vfid = 8742 TOKEN_NUM_INITIALIZER(struct cmd_set_vf_rxmode, 8743 vf_id, RTE_UINT8); 8744 cmdline_parse_token_string_t cmd_set_vf_rxmode_what = 8745 TOKEN_STRING_INITIALIZER(struct cmd_set_vf_rxmode, 8746 what, "rxmode"); 8747 cmdline_parse_token_string_t cmd_set_vf_rxmode_mode = 8748 TOKEN_STRING_INITIALIZER(struct cmd_set_vf_rxmode, 8749 mode, "AUPE#ROPE#BAM#MPE"); 8750 cmdline_parse_token_string_t cmd_set_vf_rxmode_on = 8751 TOKEN_STRING_INITIALIZER(struct cmd_set_vf_rxmode, 8752 on, "on#off"); 8753 8754 cmdline_parse_inst_t cmd_set_vf_rxmode = { 8755 .f = cmd_set_vf_rxmode_parsed, 8756 .data = NULL, 8757 .help_str = "set port <port_id> vf <vf_id> rxmode " 8758 "AUPE|ROPE|BAM|MPE on|off", 8759 .tokens = { 8760 (void *)&cmd_set_vf_rxmode_set, 8761 (void *)&cmd_set_vf_rxmode_port, 8762 (void *)&cmd_set_vf_rxmode_portid, 8763 (void *)&cmd_set_vf_rxmode_vf, 8764 (void *)&cmd_set_vf_rxmode_vfid, 8765 (void *)&cmd_set_vf_rxmode_what, 8766 (void *)&cmd_set_vf_rxmode_mode, 8767 (void *)&cmd_set_vf_rxmode_on, 8768 NULL, 8769 }, 8770 }; 8771 8772 /* *** ADD MAC ADDRESS FILTER FOR A VF OF A PORT *** */ 8773 struct cmd_vf_mac_addr_result { 8774 cmdline_fixed_string_t mac_addr_cmd; 8775 cmdline_fixed_string_t what; 8776 cmdline_fixed_string_t port; 8777 uint16_t port_num; 8778 cmdline_fixed_string_t vf; 8779 uint8_t vf_num; 8780 struct rte_ether_addr address; 8781 }; 8782 8783 static void cmd_vf_mac_addr_parsed(void *parsed_result, 8784 __rte_unused struct cmdline *cl, 8785 __rte_unused void *data) 8786 { 8787 struct cmd_vf_mac_addr_result *res = parsed_result; 8788 int ret = -ENOTSUP; 8789 8790 if (strcmp(res->what, "add") != 0) 8791 return; 8792 8793 #ifdef RTE_NET_I40E 8794 if (ret == -ENOTSUP) 8795 ret = rte_pmd_i40e_add_vf_mac_addr(res->port_num, res->vf_num, 8796 &res->address); 8797 #endif 8798 #ifdef RTE_NET_BNXT 8799 if (ret == -ENOTSUP) 8800 ret = rte_pmd_bnxt_mac_addr_add(res->port_num, &res->address, 8801 res->vf_num); 8802 #endif 8803 8804 if(ret < 0) 8805 printf("vf_mac_addr_cmd error: (%s)\n", strerror(-ret)); 8806 8807 } 8808 8809 cmdline_parse_token_string_t cmd_vf_mac_addr_cmd = 8810 TOKEN_STRING_INITIALIZER(struct cmd_vf_mac_addr_result, 8811 mac_addr_cmd,"mac_addr"); 8812 cmdline_parse_token_string_t cmd_vf_mac_addr_what = 8813 TOKEN_STRING_INITIALIZER(struct cmd_vf_mac_addr_result, 8814 what,"add"); 8815 cmdline_parse_token_string_t cmd_vf_mac_addr_port = 8816 TOKEN_STRING_INITIALIZER(struct cmd_vf_mac_addr_result, 8817 port,"port"); 8818 cmdline_parse_token_num_t cmd_vf_mac_addr_portnum = 8819 TOKEN_NUM_INITIALIZER(struct cmd_vf_mac_addr_result, 8820 port_num, RTE_UINT16); 8821 cmdline_parse_token_string_t cmd_vf_mac_addr_vf = 8822 TOKEN_STRING_INITIALIZER(struct cmd_vf_mac_addr_result, 8823 vf,"vf"); 8824 cmdline_parse_token_num_t cmd_vf_mac_addr_vfnum = 8825 TOKEN_NUM_INITIALIZER(struct cmd_vf_mac_addr_result, 8826 vf_num, RTE_UINT8); 8827 cmdline_parse_token_etheraddr_t cmd_vf_mac_addr_addr = 8828 TOKEN_ETHERADDR_INITIALIZER(struct cmd_vf_mac_addr_result, 8829 address); 8830 8831 cmdline_parse_inst_t cmd_vf_mac_addr_filter = { 8832 .f = cmd_vf_mac_addr_parsed, 8833 .data = (void *)0, 8834 .help_str = "mac_addr add port <port_id> vf <vf_id> <mac_addr>: " 8835 "Add MAC address filtering for a VF on port_id", 8836 .tokens = { 8837 (void *)&cmd_vf_mac_addr_cmd, 8838 (void *)&cmd_vf_mac_addr_what, 8839 (void *)&cmd_vf_mac_addr_port, 8840 (void *)&cmd_vf_mac_addr_portnum, 8841 (void *)&cmd_vf_mac_addr_vf, 8842 (void *)&cmd_vf_mac_addr_vfnum, 8843 (void *)&cmd_vf_mac_addr_addr, 8844 NULL, 8845 }, 8846 }; 8847 8848 /* *** ADD/REMOVE A VLAN IDENTIFIER TO/FROM A PORT VLAN RX FILTER *** */ 8849 struct cmd_vf_rx_vlan_filter { 8850 cmdline_fixed_string_t rx_vlan; 8851 cmdline_fixed_string_t what; 8852 uint16_t vlan_id; 8853 cmdline_fixed_string_t port; 8854 portid_t port_id; 8855 cmdline_fixed_string_t vf; 8856 uint64_t vf_mask; 8857 }; 8858 8859 static void 8860 cmd_vf_rx_vlan_filter_parsed(void *parsed_result, 8861 __rte_unused struct cmdline *cl, 8862 __rte_unused void *data) 8863 { 8864 struct cmd_vf_rx_vlan_filter *res = parsed_result; 8865 int ret = -ENOTSUP; 8866 8867 __rte_unused int is_add = (strcmp(res->what, "add") == 0) ? 1 : 0; 8868 8869 #ifdef RTE_NET_IXGBE 8870 if (ret == -ENOTSUP) 8871 ret = rte_pmd_ixgbe_set_vf_vlan_filter(res->port_id, 8872 res->vlan_id, res->vf_mask, is_add); 8873 #endif 8874 #ifdef RTE_NET_I40E 8875 if (ret == -ENOTSUP) 8876 ret = rte_pmd_i40e_set_vf_vlan_filter(res->port_id, 8877 res->vlan_id, res->vf_mask, is_add); 8878 #endif 8879 #ifdef RTE_NET_BNXT 8880 if (ret == -ENOTSUP) 8881 ret = rte_pmd_bnxt_set_vf_vlan_filter(res->port_id, 8882 res->vlan_id, res->vf_mask, is_add); 8883 #endif 8884 8885 switch (ret) { 8886 case 0: 8887 break; 8888 case -EINVAL: 8889 printf("invalid vlan_id %d or vf_mask %"PRIu64"\n", 8890 res->vlan_id, res->vf_mask); 8891 break; 8892 case -ENODEV: 8893 printf("invalid port_id %d\n", res->port_id); 8894 break; 8895 case -ENOTSUP: 8896 printf("function not implemented or supported\n"); 8897 break; 8898 default: 8899 printf("programming error: (%s)\n", strerror(-ret)); 8900 } 8901 } 8902 8903 cmdline_parse_token_string_t cmd_vf_rx_vlan_filter_rx_vlan = 8904 TOKEN_STRING_INITIALIZER(struct cmd_vf_rx_vlan_filter, 8905 rx_vlan, "rx_vlan"); 8906 cmdline_parse_token_string_t cmd_vf_rx_vlan_filter_what = 8907 TOKEN_STRING_INITIALIZER(struct cmd_vf_rx_vlan_filter, 8908 what, "add#rm"); 8909 cmdline_parse_token_num_t cmd_vf_rx_vlan_filter_vlanid = 8910 TOKEN_NUM_INITIALIZER(struct cmd_vf_rx_vlan_filter, 8911 vlan_id, RTE_UINT16); 8912 cmdline_parse_token_string_t cmd_vf_rx_vlan_filter_port = 8913 TOKEN_STRING_INITIALIZER(struct cmd_vf_rx_vlan_filter, 8914 port, "port"); 8915 cmdline_parse_token_num_t cmd_vf_rx_vlan_filter_portid = 8916 TOKEN_NUM_INITIALIZER(struct cmd_vf_rx_vlan_filter, 8917 port_id, RTE_UINT16); 8918 cmdline_parse_token_string_t cmd_vf_rx_vlan_filter_vf = 8919 TOKEN_STRING_INITIALIZER(struct cmd_vf_rx_vlan_filter, 8920 vf, "vf"); 8921 cmdline_parse_token_num_t cmd_vf_rx_vlan_filter_vf_mask = 8922 TOKEN_NUM_INITIALIZER(struct cmd_vf_rx_vlan_filter, 8923 vf_mask, RTE_UINT64); 8924 8925 cmdline_parse_inst_t cmd_vf_rxvlan_filter = { 8926 .f = cmd_vf_rx_vlan_filter_parsed, 8927 .data = NULL, 8928 .help_str = "rx_vlan add|rm <vlan_id> port <port_id> vf <vf_mask>: " 8929 "(vf_mask = hexadecimal VF mask)", 8930 .tokens = { 8931 (void *)&cmd_vf_rx_vlan_filter_rx_vlan, 8932 (void *)&cmd_vf_rx_vlan_filter_what, 8933 (void *)&cmd_vf_rx_vlan_filter_vlanid, 8934 (void *)&cmd_vf_rx_vlan_filter_port, 8935 (void *)&cmd_vf_rx_vlan_filter_portid, 8936 (void *)&cmd_vf_rx_vlan_filter_vf, 8937 (void *)&cmd_vf_rx_vlan_filter_vf_mask, 8938 NULL, 8939 }, 8940 }; 8941 8942 /* *** SET RATE LIMIT FOR A QUEUE OF A PORT *** */ 8943 struct cmd_queue_rate_limit_result { 8944 cmdline_fixed_string_t set; 8945 cmdline_fixed_string_t port; 8946 uint16_t port_num; 8947 cmdline_fixed_string_t queue; 8948 uint8_t queue_num; 8949 cmdline_fixed_string_t rate; 8950 uint16_t rate_num; 8951 }; 8952 8953 static void cmd_queue_rate_limit_parsed(void *parsed_result, 8954 __rte_unused struct cmdline *cl, 8955 __rte_unused void *data) 8956 { 8957 struct cmd_queue_rate_limit_result *res = parsed_result; 8958 int ret = 0; 8959 8960 if ((strcmp(res->set, "set") == 0) && (strcmp(res->port, "port") == 0) 8961 && (strcmp(res->queue, "queue") == 0) 8962 && (strcmp(res->rate, "rate") == 0)) 8963 ret = set_queue_rate_limit(res->port_num, res->queue_num, 8964 res->rate_num); 8965 if (ret < 0) 8966 printf("queue_rate_limit_cmd error: (%s)\n", strerror(-ret)); 8967 8968 } 8969 8970 cmdline_parse_token_string_t cmd_queue_rate_limit_set = 8971 TOKEN_STRING_INITIALIZER(struct cmd_queue_rate_limit_result, 8972 set, "set"); 8973 cmdline_parse_token_string_t cmd_queue_rate_limit_port = 8974 TOKEN_STRING_INITIALIZER(struct cmd_queue_rate_limit_result, 8975 port, "port"); 8976 cmdline_parse_token_num_t cmd_queue_rate_limit_portnum = 8977 TOKEN_NUM_INITIALIZER(struct cmd_queue_rate_limit_result, 8978 port_num, RTE_UINT16); 8979 cmdline_parse_token_string_t cmd_queue_rate_limit_queue = 8980 TOKEN_STRING_INITIALIZER(struct cmd_queue_rate_limit_result, 8981 queue, "queue"); 8982 cmdline_parse_token_num_t cmd_queue_rate_limit_queuenum = 8983 TOKEN_NUM_INITIALIZER(struct cmd_queue_rate_limit_result, 8984 queue_num, RTE_UINT8); 8985 cmdline_parse_token_string_t cmd_queue_rate_limit_rate = 8986 TOKEN_STRING_INITIALIZER(struct cmd_queue_rate_limit_result, 8987 rate, "rate"); 8988 cmdline_parse_token_num_t cmd_queue_rate_limit_ratenum = 8989 TOKEN_NUM_INITIALIZER(struct cmd_queue_rate_limit_result, 8990 rate_num, RTE_UINT16); 8991 8992 cmdline_parse_inst_t cmd_queue_rate_limit = { 8993 .f = cmd_queue_rate_limit_parsed, 8994 .data = (void *)0, 8995 .help_str = "set port <port_id> queue <queue_id> rate <rate_value>: " 8996 "Set rate limit for a queue on port_id", 8997 .tokens = { 8998 (void *)&cmd_queue_rate_limit_set, 8999 (void *)&cmd_queue_rate_limit_port, 9000 (void *)&cmd_queue_rate_limit_portnum, 9001 (void *)&cmd_queue_rate_limit_queue, 9002 (void *)&cmd_queue_rate_limit_queuenum, 9003 (void *)&cmd_queue_rate_limit_rate, 9004 (void *)&cmd_queue_rate_limit_ratenum, 9005 NULL, 9006 }, 9007 }; 9008 9009 /* *** SET RATE LIMIT FOR A VF OF A PORT *** */ 9010 struct cmd_vf_rate_limit_result { 9011 cmdline_fixed_string_t set; 9012 cmdline_fixed_string_t port; 9013 uint16_t port_num; 9014 cmdline_fixed_string_t vf; 9015 uint8_t vf_num; 9016 cmdline_fixed_string_t rate; 9017 uint16_t rate_num; 9018 cmdline_fixed_string_t q_msk; 9019 uint64_t q_msk_val; 9020 }; 9021 9022 static void cmd_vf_rate_limit_parsed(void *parsed_result, 9023 __rte_unused struct cmdline *cl, 9024 __rte_unused void *data) 9025 { 9026 struct cmd_vf_rate_limit_result *res = parsed_result; 9027 int ret = 0; 9028 9029 if ((strcmp(res->set, "set") == 0) && (strcmp(res->port, "port") == 0) 9030 && (strcmp(res->vf, "vf") == 0) 9031 && (strcmp(res->rate, "rate") == 0) 9032 && (strcmp(res->q_msk, "queue_mask") == 0)) 9033 ret = set_vf_rate_limit(res->port_num, res->vf_num, 9034 res->rate_num, res->q_msk_val); 9035 if (ret < 0) 9036 printf("vf_rate_limit_cmd error: (%s)\n", strerror(-ret)); 9037 9038 } 9039 9040 cmdline_parse_token_string_t cmd_vf_rate_limit_set = 9041 TOKEN_STRING_INITIALIZER(struct cmd_vf_rate_limit_result, 9042 set, "set"); 9043 cmdline_parse_token_string_t cmd_vf_rate_limit_port = 9044 TOKEN_STRING_INITIALIZER(struct cmd_vf_rate_limit_result, 9045 port, "port"); 9046 cmdline_parse_token_num_t cmd_vf_rate_limit_portnum = 9047 TOKEN_NUM_INITIALIZER(struct cmd_vf_rate_limit_result, 9048 port_num, RTE_UINT16); 9049 cmdline_parse_token_string_t cmd_vf_rate_limit_vf = 9050 TOKEN_STRING_INITIALIZER(struct cmd_vf_rate_limit_result, 9051 vf, "vf"); 9052 cmdline_parse_token_num_t cmd_vf_rate_limit_vfnum = 9053 TOKEN_NUM_INITIALIZER(struct cmd_vf_rate_limit_result, 9054 vf_num, RTE_UINT8); 9055 cmdline_parse_token_string_t cmd_vf_rate_limit_rate = 9056 TOKEN_STRING_INITIALIZER(struct cmd_vf_rate_limit_result, 9057 rate, "rate"); 9058 cmdline_parse_token_num_t cmd_vf_rate_limit_ratenum = 9059 TOKEN_NUM_INITIALIZER(struct cmd_vf_rate_limit_result, 9060 rate_num, RTE_UINT16); 9061 cmdline_parse_token_string_t cmd_vf_rate_limit_q_msk = 9062 TOKEN_STRING_INITIALIZER(struct cmd_vf_rate_limit_result, 9063 q_msk, "queue_mask"); 9064 cmdline_parse_token_num_t cmd_vf_rate_limit_q_msk_val = 9065 TOKEN_NUM_INITIALIZER(struct cmd_vf_rate_limit_result, 9066 q_msk_val, RTE_UINT64); 9067 9068 cmdline_parse_inst_t cmd_vf_rate_limit = { 9069 .f = cmd_vf_rate_limit_parsed, 9070 .data = (void *)0, 9071 .help_str = "set port <port_id> vf <vf_id> rate <rate_value> " 9072 "queue_mask <queue_mask_value>: " 9073 "Set rate limit for queues of VF on port_id", 9074 .tokens = { 9075 (void *)&cmd_vf_rate_limit_set, 9076 (void *)&cmd_vf_rate_limit_port, 9077 (void *)&cmd_vf_rate_limit_portnum, 9078 (void *)&cmd_vf_rate_limit_vf, 9079 (void *)&cmd_vf_rate_limit_vfnum, 9080 (void *)&cmd_vf_rate_limit_rate, 9081 (void *)&cmd_vf_rate_limit_ratenum, 9082 (void *)&cmd_vf_rate_limit_q_msk, 9083 (void *)&cmd_vf_rate_limit_q_msk_val, 9084 NULL, 9085 }, 9086 }; 9087 9088 /* *** CONFIGURE TUNNEL UDP PORT *** */ 9089 struct cmd_tunnel_udp_config { 9090 cmdline_fixed_string_t cmd; 9091 cmdline_fixed_string_t what; 9092 uint16_t udp_port; 9093 portid_t port_id; 9094 }; 9095 9096 static void 9097 cmd_tunnel_udp_config_parsed(void *parsed_result, 9098 __rte_unused struct cmdline *cl, 9099 __rte_unused void *data) 9100 { 9101 struct cmd_tunnel_udp_config *res = parsed_result; 9102 struct rte_eth_udp_tunnel tunnel_udp; 9103 int ret; 9104 9105 tunnel_udp.udp_port = res->udp_port; 9106 9107 if (!strcmp(res->cmd, "rx_vxlan_port")) 9108 tunnel_udp.prot_type = RTE_TUNNEL_TYPE_VXLAN; 9109 9110 if (!strcmp(res->what, "add")) 9111 ret = rte_eth_dev_udp_tunnel_port_add(res->port_id, 9112 &tunnel_udp); 9113 else 9114 ret = rte_eth_dev_udp_tunnel_port_delete(res->port_id, 9115 &tunnel_udp); 9116 9117 if (ret < 0) 9118 printf("udp tunneling add error: (%s)\n", strerror(-ret)); 9119 } 9120 9121 cmdline_parse_token_string_t cmd_tunnel_udp_config_cmd = 9122 TOKEN_STRING_INITIALIZER(struct cmd_tunnel_udp_config, 9123 cmd, "rx_vxlan_port"); 9124 cmdline_parse_token_string_t cmd_tunnel_udp_config_what = 9125 TOKEN_STRING_INITIALIZER(struct cmd_tunnel_udp_config, 9126 what, "add#rm"); 9127 cmdline_parse_token_num_t cmd_tunnel_udp_config_udp_port = 9128 TOKEN_NUM_INITIALIZER(struct cmd_tunnel_udp_config, 9129 udp_port, RTE_UINT16); 9130 cmdline_parse_token_num_t cmd_tunnel_udp_config_port_id = 9131 TOKEN_NUM_INITIALIZER(struct cmd_tunnel_udp_config, 9132 port_id, RTE_UINT16); 9133 9134 cmdline_parse_inst_t cmd_tunnel_udp_config = { 9135 .f = cmd_tunnel_udp_config_parsed, 9136 .data = (void *)0, 9137 .help_str = "rx_vxlan_port add|rm <udp_port> <port_id>: " 9138 "Add/Remove a tunneling UDP port filter", 9139 .tokens = { 9140 (void *)&cmd_tunnel_udp_config_cmd, 9141 (void *)&cmd_tunnel_udp_config_what, 9142 (void *)&cmd_tunnel_udp_config_udp_port, 9143 (void *)&cmd_tunnel_udp_config_port_id, 9144 NULL, 9145 }, 9146 }; 9147 9148 struct cmd_config_tunnel_udp_port { 9149 cmdline_fixed_string_t port; 9150 cmdline_fixed_string_t config; 9151 portid_t port_id; 9152 cmdline_fixed_string_t udp_tunnel_port; 9153 cmdline_fixed_string_t action; 9154 cmdline_fixed_string_t tunnel_type; 9155 uint16_t udp_port; 9156 }; 9157 9158 static void 9159 cmd_cfg_tunnel_udp_port_parsed(void *parsed_result, 9160 __rte_unused struct cmdline *cl, 9161 __rte_unused void *data) 9162 { 9163 struct cmd_config_tunnel_udp_port *res = parsed_result; 9164 struct rte_eth_udp_tunnel tunnel_udp; 9165 int ret = 0; 9166 9167 if (port_id_is_invalid(res->port_id, ENABLED_WARN)) 9168 return; 9169 9170 tunnel_udp.udp_port = res->udp_port; 9171 9172 if (!strcmp(res->tunnel_type, "vxlan")) { 9173 tunnel_udp.prot_type = RTE_TUNNEL_TYPE_VXLAN; 9174 } else if (!strcmp(res->tunnel_type, "geneve")) { 9175 tunnel_udp.prot_type = RTE_TUNNEL_TYPE_GENEVE; 9176 } else if (!strcmp(res->tunnel_type, "vxlan-gpe")) { 9177 tunnel_udp.prot_type = RTE_TUNNEL_TYPE_VXLAN_GPE; 9178 } else { 9179 printf("Invalid tunnel type\n"); 9180 return; 9181 } 9182 9183 if (!strcmp(res->action, "add")) 9184 ret = rte_eth_dev_udp_tunnel_port_add(res->port_id, 9185 &tunnel_udp); 9186 else 9187 ret = rte_eth_dev_udp_tunnel_port_delete(res->port_id, 9188 &tunnel_udp); 9189 9190 if (ret < 0) 9191 printf("udp tunneling port add error: (%s)\n", strerror(-ret)); 9192 } 9193 9194 cmdline_parse_token_string_t cmd_config_tunnel_udp_port_port = 9195 TOKEN_STRING_INITIALIZER(struct cmd_config_tunnel_udp_port, port, 9196 "port"); 9197 cmdline_parse_token_string_t cmd_config_tunnel_udp_port_config = 9198 TOKEN_STRING_INITIALIZER(struct cmd_config_tunnel_udp_port, config, 9199 "config"); 9200 cmdline_parse_token_num_t cmd_config_tunnel_udp_port_port_id = 9201 TOKEN_NUM_INITIALIZER(struct cmd_config_tunnel_udp_port, port_id, 9202 RTE_UINT16); 9203 cmdline_parse_token_string_t cmd_config_tunnel_udp_port_tunnel_port = 9204 TOKEN_STRING_INITIALIZER(struct cmd_config_tunnel_udp_port, 9205 udp_tunnel_port, 9206 "udp_tunnel_port"); 9207 cmdline_parse_token_string_t cmd_config_tunnel_udp_port_action = 9208 TOKEN_STRING_INITIALIZER(struct cmd_config_tunnel_udp_port, action, 9209 "add#rm"); 9210 cmdline_parse_token_string_t cmd_config_tunnel_udp_port_tunnel_type = 9211 TOKEN_STRING_INITIALIZER(struct cmd_config_tunnel_udp_port, tunnel_type, 9212 "vxlan#geneve#vxlan-gpe"); 9213 cmdline_parse_token_num_t cmd_config_tunnel_udp_port_value = 9214 TOKEN_NUM_INITIALIZER(struct cmd_config_tunnel_udp_port, udp_port, 9215 RTE_UINT16); 9216 9217 cmdline_parse_inst_t cmd_cfg_tunnel_udp_port = { 9218 .f = cmd_cfg_tunnel_udp_port_parsed, 9219 .data = NULL, 9220 .help_str = "port config <port_id> udp_tunnel_port add|rm vxlan|geneve|vxlan-gpe <udp_port>", 9221 .tokens = { 9222 (void *)&cmd_config_tunnel_udp_port_port, 9223 (void *)&cmd_config_tunnel_udp_port_config, 9224 (void *)&cmd_config_tunnel_udp_port_port_id, 9225 (void *)&cmd_config_tunnel_udp_port_tunnel_port, 9226 (void *)&cmd_config_tunnel_udp_port_action, 9227 (void *)&cmd_config_tunnel_udp_port_tunnel_type, 9228 (void *)&cmd_config_tunnel_udp_port_value, 9229 NULL, 9230 }, 9231 }; 9232 9233 /* *** CONFIGURE VM MIRROR VLAN/POOL RULE *** */ 9234 struct cmd_set_mirror_mask_result { 9235 cmdline_fixed_string_t set; 9236 cmdline_fixed_string_t port; 9237 portid_t port_id; 9238 cmdline_fixed_string_t mirror; 9239 uint8_t rule_id; 9240 cmdline_fixed_string_t what; 9241 cmdline_fixed_string_t value; 9242 cmdline_fixed_string_t dstpool; 9243 uint8_t dstpool_id; 9244 cmdline_fixed_string_t on; 9245 }; 9246 9247 cmdline_parse_token_string_t cmd_mirror_mask_set = 9248 TOKEN_STRING_INITIALIZER(struct cmd_set_mirror_mask_result, 9249 set, "set"); 9250 cmdline_parse_token_string_t cmd_mirror_mask_port = 9251 TOKEN_STRING_INITIALIZER(struct cmd_set_mirror_mask_result, 9252 port, "port"); 9253 cmdline_parse_token_num_t cmd_mirror_mask_portid = 9254 TOKEN_NUM_INITIALIZER(struct cmd_set_mirror_mask_result, 9255 port_id, RTE_UINT16); 9256 cmdline_parse_token_string_t cmd_mirror_mask_mirror = 9257 TOKEN_STRING_INITIALIZER(struct cmd_set_mirror_mask_result, 9258 mirror, "mirror-rule"); 9259 cmdline_parse_token_num_t cmd_mirror_mask_ruleid = 9260 TOKEN_NUM_INITIALIZER(struct cmd_set_mirror_mask_result, 9261 rule_id, RTE_UINT8); 9262 cmdline_parse_token_string_t cmd_mirror_mask_what = 9263 TOKEN_STRING_INITIALIZER(struct cmd_set_mirror_mask_result, 9264 what, "pool-mirror-up#pool-mirror-down" 9265 "#vlan-mirror"); 9266 cmdline_parse_token_string_t cmd_mirror_mask_value = 9267 TOKEN_STRING_INITIALIZER(struct cmd_set_mirror_mask_result, 9268 value, NULL); 9269 cmdline_parse_token_string_t cmd_mirror_mask_dstpool = 9270 TOKEN_STRING_INITIALIZER(struct cmd_set_mirror_mask_result, 9271 dstpool, "dst-pool"); 9272 cmdline_parse_token_num_t cmd_mirror_mask_poolid = 9273 TOKEN_NUM_INITIALIZER(struct cmd_set_mirror_mask_result, 9274 dstpool_id, RTE_UINT8); 9275 cmdline_parse_token_string_t cmd_mirror_mask_on = 9276 TOKEN_STRING_INITIALIZER(struct cmd_set_mirror_mask_result, 9277 on, "on#off"); 9278 9279 static void 9280 cmd_set_mirror_mask_parsed(void *parsed_result, 9281 __rte_unused struct cmdline *cl, 9282 __rte_unused void *data) 9283 { 9284 int ret,nb_item,i; 9285 struct cmd_set_mirror_mask_result *res = parsed_result; 9286 struct rte_eth_mirror_conf mr_conf; 9287 9288 memset(&mr_conf, 0, sizeof(struct rte_eth_mirror_conf)); 9289 9290 unsigned int vlan_list[ETH_MIRROR_MAX_VLANS]; 9291 9292 mr_conf.dst_pool = res->dstpool_id; 9293 9294 if (!strcmp(res->what, "pool-mirror-up")) { 9295 mr_conf.pool_mask = strtoull(res->value, NULL, 16); 9296 mr_conf.rule_type = ETH_MIRROR_VIRTUAL_POOL_UP; 9297 } else if (!strcmp(res->what, "pool-mirror-down")) { 9298 mr_conf.pool_mask = strtoull(res->value, NULL, 16); 9299 mr_conf.rule_type = ETH_MIRROR_VIRTUAL_POOL_DOWN; 9300 } else if (!strcmp(res->what, "vlan-mirror")) { 9301 mr_conf.rule_type = ETH_MIRROR_VLAN; 9302 nb_item = parse_item_list(res->value, "vlan", 9303 ETH_MIRROR_MAX_VLANS, vlan_list, 1); 9304 if (nb_item <= 0) 9305 return; 9306 9307 for (i = 0; i < nb_item; i++) { 9308 if (vlan_list[i] > RTE_ETHER_MAX_VLAN_ID) { 9309 printf("Invalid vlan_id: must be < 4096\n"); 9310 return; 9311 } 9312 9313 mr_conf.vlan.vlan_id[i] = (uint16_t)vlan_list[i]; 9314 mr_conf.vlan.vlan_mask |= 1ULL << i; 9315 } 9316 } 9317 9318 if (!strcmp(res->on, "on")) 9319 ret = rte_eth_mirror_rule_set(res->port_id, &mr_conf, 9320 res->rule_id, 1); 9321 else 9322 ret = rte_eth_mirror_rule_set(res->port_id, &mr_conf, 9323 res->rule_id, 0); 9324 if (ret < 0) 9325 printf("mirror rule add error: (%s)\n", strerror(-ret)); 9326 } 9327 9328 cmdline_parse_inst_t cmd_set_mirror_mask = { 9329 .f = cmd_set_mirror_mask_parsed, 9330 .data = NULL, 9331 .help_str = "set port <port_id> mirror-rule <rule_id> " 9332 "pool-mirror-up|pool-mirror-down|vlan-mirror " 9333 "<pool_mask|vlan_id[,vlan_id]*> dst-pool <pool_id> on|off", 9334 .tokens = { 9335 (void *)&cmd_mirror_mask_set, 9336 (void *)&cmd_mirror_mask_port, 9337 (void *)&cmd_mirror_mask_portid, 9338 (void *)&cmd_mirror_mask_mirror, 9339 (void *)&cmd_mirror_mask_ruleid, 9340 (void *)&cmd_mirror_mask_what, 9341 (void *)&cmd_mirror_mask_value, 9342 (void *)&cmd_mirror_mask_dstpool, 9343 (void *)&cmd_mirror_mask_poolid, 9344 (void *)&cmd_mirror_mask_on, 9345 NULL, 9346 }, 9347 }; 9348 9349 /* *** CONFIGURE VM MIRROR UPLINK/DOWNLINK RULE *** */ 9350 struct cmd_set_mirror_link_result { 9351 cmdline_fixed_string_t set; 9352 cmdline_fixed_string_t port; 9353 portid_t port_id; 9354 cmdline_fixed_string_t mirror; 9355 uint8_t rule_id; 9356 cmdline_fixed_string_t what; 9357 cmdline_fixed_string_t dstpool; 9358 uint8_t dstpool_id; 9359 cmdline_fixed_string_t on; 9360 }; 9361 9362 cmdline_parse_token_string_t cmd_mirror_link_set = 9363 TOKEN_STRING_INITIALIZER(struct cmd_set_mirror_link_result, 9364 set, "set"); 9365 cmdline_parse_token_string_t cmd_mirror_link_port = 9366 TOKEN_STRING_INITIALIZER(struct cmd_set_mirror_link_result, 9367 port, "port"); 9368 cmdline_parse_token_num_t cmd_mirror_link_portid = 9369 TOKEN_NUM_INITIALIZER(struct cmd_set_mirror_link_result, 9370 port_id, RTE_UINT16); 9371 cmdline_parse_token_string_t cmd_mirror_link_mirror = 9372 TOKEN_STRING_INITIALIZER(struct cmd_set_mirror_link_result, 9373 mirror, "mirror-rule"); 9374 cmdline_parse_token_num_t cmd_mirror_link_ruleid = 9375 TOKEN_NUM_INITIALIZER(struct cmd_set_mirror_link_result, 9376 rule_id, RTE_UINT8); 9377 cmdline_parse_token_string_t cmd_mirror_link_what = 9378 TOKEN_STRING_INITIALIZER(struct cmd_set_mirror_link_result, 9379 what, "uplink-mirror#downlink-mirror"); 9380 cmdline_parse_token_string_t cmd_mirror_link_dstpool = 9381 TOKEN_STRING_INITIALIZER(struct cmd_set_mirror_link_result, 9382 dstpool, "dst-pool"); 9383 cmdline_parse_token_num_t cmd_mirror_link_poolid = 9384 TOKEN_NUM_INITIALIZER(struct cmd_set_mirror_link_result, 9385 dstpool_id, RTE_UINT8); 9386 cmdline_parse_token_string_t cmd_mirror_link_on = 9387 TOKEN_STRING_INITIALIZER(struct cmd_set_mirror_link_result, 9388 on, "on#off"); 9389 9390 static void 9391 cmd_set_mirror_link_parsed(void *parsed_result, 9392 __rte_unused struct cmdline *cl, 9393 __rte_unused void *data) 9394 { 9395 int ret; 9396 struct cmd_set_mirror_link_result *res = parsed_result; 9397 struct rte_eth_mirror_conf mr_conf; 9398 9399 memset(&mr_conf, 0, sizeof(struct rte_eth_mirror_conf)); 9400 if (!strcmp(res->what, "uplink-mirror")) 9401 mr_conf.rule_type = ETH_MIRROR_UPLINK_PORT; 9402 else 9403 mr_conf.rule_type = ETH_MIRROR_DOWNLINK_PORT; 9404 9405 mr_conf.dst_pool = res->dstpool_id; 9406 9407 if (!strcmp(res->on, "on")) 9408 ret = rte_eth_mirror_rule_set(res->port_id, &mr_conf, 9409 res->rule_id, 1); 9410 else 9411 ret = rte_eth_mirror_rule_set(res->port_id, &mr_conf, 9412 res->rule_id, 0); 9413 9414 /* check the return value and print it if is < 0 */ 9415 if (ret < 0) 9416 printf("mirror rule add error: (%s)\n", strerror(-ret)); 9417 9418 } 9419 9420 cmdline_parse_inst_t cmd_set_mirror_link = { 9421 .f = cmd_set_mirror_link_parsed, 9422 .data = NULL, 9423 .help_str = "set port <port_id> mirror-rule <rule_id> " 9424 "uplink-mirror|downlink-mirror dst-pool <pool_id> on|off", 9425 .tokens = { 9426 (void *)&cmd_mirror_link_set, 9427 (void *)&cmd_mirror_link_port, 9428 (void *)&cmd_mirror_link_portid, 9429 (void *)&cmd_mirror_link_mirror, 9430 (void *)&cmd_mirror_link_ruleid, 9431 (void *)&cmd_mirror_link_what, 9432 (void *)&cmd_mirror_link_dstpool, 9433 (void *)&cmd_mirror_link_poolid, 9434 (void *)&cmd_mirror_link_on, 9435 NULL, 9436 }, 9437 }; 9438 9439 /* *** RESET VM MIRROR RULE *** */ 9440 struct cmd_rm_mirror_rule_result { 9441 cmdline_fixed_string_t reset; 9442 cmdline_fixed_string_t port; 9443 portid_t port_id; 9444 cmdline_fixed_string_t mirror; 9445 uint8_t rule_id; 9446 }; 9447 9448 cmdline_parse_token_string_t cmd_rm_mirror_rule_reset = 9449 TOKEN_STRING_INITIALIZER(struct cmd_rm_mirror_rule_result, 9450 reset, "reset"); 9451 cmdline_parse_token_string_t cmd_rm_mirror_rule_port = 9452 TOKEN_STRING_INITIALIZER(struct cmd_rm_mirror_rule_result, 9453 port, "port"); 9454 cmdline_parse_token_num_t cmd_rm_mirror_rule_portid = 9455 TOKEN_NUM_INITIALIZER(struct cmd_rm_mirror_rule_result, 9456 port_id, RTE_UINT16); 9457 cmdline_parse_token_string_t cmd_rm_mirror_rule_mirror = 9458 TOKEN_STRING_INITIALIZER(struct cmd_rm_mirror_rule_result, 9459 mirror, "mirror-rule"); 9460 cmdline_parse_token_num_t cmd_rm_mirror_rule_ruleid = 9461 TOKEN_NUM_INITIALIZER(struct cmd_rm_mirror_rule_result, 9462 rule_id, RTE_UINT8); 9463 9464 static void 9465 cmd_reset_mirror_rule_parsed(void *parsed_result, 9466 __rte_unused struct cmdline *cl, 9467 __rte_unused void *data) 9468 { 9469 int ret; 9470 struct cmd_set_mirror_link_result *res = parsed_result; 9471 /* check rule_id */ 9472 ret = rte_eth_mirror_rule_reset(res->port_id,res->rule_id); 9473 if(ret < 0) 9474 printf("mirror rule remove error: (%s)\n", strerror(-ret)); 9475 } 9476 9477 cmdline_parse_inst_t cmd_reset_mirror_rule = { 9478 .f = cmd_reset_mirror_rule_parsed, 9479 .data = NULL, 9480 .help_str = "reset port <port_id> mirror-rule <rule_id>", 9481 .tokens = { 9482 (void *)&cmd_rm_mirror_rule_reset, 9483 (void *)&cmd_rm_mirror_rule_port, 9484 (void *)&cmd_rm_mirror_rule_portid, 9485 (void *)&cmd_rm_mirror_rule_mirror, 9486 (void *)&cmd_rm_mirror_rule_ruleid, 9487 NULL, 9488 }, 9489 }; 9490 9491 /* ******************************************************************************** */ 9492 9493 struct cmd_dump_result { 9494 cmdline_fixed_string_t dump; 9495 }; 9496 9497 static void 9498 dump_struct_sizes(void) 9499 { 9500 #define DUMP_SIZE(t) printf("sizeof(" #t ") = %u\n", (unsigned)sizeof(t)); 9501 DUMP_SIZE(struct rte_mbuf); 9502 DUMP_SIZE(struct rte_mempool); 9503 DUMP_SIZE(struct rte_ring); 9504 #undef DUMP_SIZE 9505 } 9506 9507 9508 /* Dump the socket memory statistics on console */ 9509 static void 9510 dump_socket_mem(FILE *f) 9511 { 9512 struct rte_malloc_socket_stats socket_stats; 9513 unsigned int i; 9514 size_t total = 0; 9515 size_t alloc = 0; 9516 size_t free = 0; 9517 unsigned int n_alloc = 0; 9518 unsigned int n_free = 0; 9519 static size_t last_allocs; 9520 static size_t last_total; 9521 9522 9523 for (i = 0; i < RTE_MAX_NUMA_NODES; i++) { 9524 if (rte_malloc_get_socket_stats(i, &socket_stats) || 9525 !socket_stats.heap_totalsz_bytes) 9526 continue; 9527 total += socket_stats.heap_totalsz_bytes; 9528 alloc += socket_stats.heap_allocsz_bytes; 9529 free += socket_stats.heap_freesz_bytes; 9530 n_alloc += socket_stats.alloc_count; 9531 n_free += socket_stats.free_count; 9532 fprintf(f, 9533 "Socket %u: size(M) total: %.6lf alloc: %.6lf(%.3lf%%) free: %.6lf \tcount alloc: %-4u free: %u\n", 9534 i, 9535 (double)socket_stats.heap_totalsz_bytes / (1024 * 1024), 9536 (double)socket_stats.heap_allocsz_bytes / (1024 * 1024), 9537 (double)socket_stats.heap_allocsz_bytes * 100 / 9538 (double)socket_stats.heap_totalsz_bytes, 9539 (double)socket_stats.heap_freesz_bytes / (1024 * 1024), 9540 socket_stats.alloc_count, 9541 socket_stats.free_count); 9542 } 9543 fprintf(f, 9544 "Total : size(M) total: %.6lf alloc: %.6lf(%.3lf%%) free: %.6lf \tcount alloc: %-4u free: %u\n", 9545 (double)total / (1024 * 1024), (double)alloc / (1024 * 1024), 9546 (double)alloc * 100 / (double)total, 9547 (double)free / (1024 * 1024), 9548 n_alloc, n_free); 9549 if (last_allocs) 9550 fprintf(stdout, "Memory total change: %.6lf(M), allocation change: %.6lf(M)\n", 9551 ((double)total - (double)last_total) / (1024 * 1024), 9552 (double)(alloc - (double)last_allocs) / 1024 / 1024); 9553 last_allocs = alloc; 9554 last_total = total; 9555 } 9556 9557 static void cmd_dump_parsed(void *parsed_result, 9558 __rte_unused struct cmdline *cl, 9559 __rte_unused void *data) 9560 { 9561 struct cmd_dump_result *res = parsed_result; 9562 9563 if (!strcmp(res->dump, "dump_physmem")) 9564 rte_dump_physmem_layout(stdout); 9565 else if (!strcmp(res->dump, "dump_socket_mem")) 9566 dump_socket_mem(stdout); 9567 else if (!strcmp(res->dump, "dump_memzone")) 9568 rte_memzone_dump(stdout); 9569 else if (!strcmp(res->dump, "dump_struct_sizes")) 9570 dump_struct_sizes(); 9571 else if (!strcmp(res->dump, "dump_ring")) 9572 rte_ring_list_dump(stdout); 9573 else if (!strcmp(res->dump, "dump_mempool")) 9574 rte_mempool_list_dump(stdout); 9575 else if (!strcmp(res->dump, "dump_devargs")) 9576 rte_devargs_dump(stdout); 9577 else if (!strcmp(res->dump, "dump_log_types")) 9578 rte_log_dump(stdout); 9579 } 9580 9581 cmdline_parse_token_string_t cmd_dump_dump = 9582 TOKEN_STRING_INITIALIZER(struct cmd_dump_result, dump, 9583 "dump_physmem#" 9584 "dump_memzone#" 9585 "dump_socket_mem#" 9586 "dump_struct_sizes#" 9587 "dump_ring#" 9588 "dump_mempool#" 9589 "dump_devargs#" 9590 "dump_log_types"); 9591 9592 cmdline_parse_inst_t cmd_dump = { 9593 .f = cmd_dump_parsed, /* function to call */ 9594 .data = NULL, /* 2nd arg of func */ 9595 .help_str = "Dump status", 9596 .tokens = { /* token list, NULL terminated */ 9597 (void *)&cmd_dump_dump, 9598 NULL, 9599 }, 9600 }; 9601 9602 /* ******************************************************************************** */ 9603 9604 struct cmd_dump_one_result { 9605 cmdline_fixed_string_t dump; 9606 cmdline_fixed_string_t name; 9607 }; 9608 9609 static void cmd_dump_one_parsed(void *parsed_result, struct cmdline *cl, 9610 __rte_unused void *data) 9611 { 9612 struct cmd_dump_one_result *res = parsed_result; 9613 9614 if (!strcmp(res->dump, "dump_ring")) { 9615 struct rte_ring *r; 9616 r = rte_ring_lookup(res->name); 9617 if (r == NULL) { 9618 cmdline_printf(cl, "Cannot find ring\n"); 9619 return; 9620 } 9621 rte_ring_dump(stdout, r); 9622 } else if (!strcmp(res->dump, "dump_mempool")) { 9623 struct rte_mempool *mp; 9624 mp = rte_mempool_lookup(res->name); 9625 if (mp == NULL) { 9626 cmdline_printf(cl, "Cannot find mempool\n"); 9627 return; 9628 } 9629 rte_mempool_dump(stdout, mp); 9630 } 9631 } 9632 9633 cmdline_parse_token_string_t cmd_dump_one_dump = 9634 TOKEN_STRING_INITIALIZER(struct cmd_dump_one_result, dump, 9635 "dump_ring#dump_mempool"); 9636 9637 cmdline_parse_token_string_t cmd_dump_one_name = 9638 TOKEN_STRING_INITIALIZER(struct cmd_dump_one_result, name, NULL); 9639 9640 cmdline_parse_inst_t cmd_dump_one = { 9641 .f = cmd_dump_one_parsed, /* function to call */ 9642 .data = NULL, /* 2nd arg of func */ 9643 .help_str = "dump_ring|dump_mempool <name>: Dump one ring/mempool", 9644 .tokens = { /* token list, NULL terminated */ 9645 (void *)&cmd_dump_one_dump, 9646 (void *)&cmd_dump_one_name, 9647 NULL, 9648 }, 9649 }; 9650 9651 /* *** queue region set *** */ 9652 struct cmd_queue_region_result { 9653 cmdline_fixed_string_t set; 9654 cmdline_fixed_string_t port; 9655 portid_t port_id; 9656 cmdline_fixed_string_t cmd; 9657 cmdline_fixed_string_t region; 9658 uint8_t region_id; 9659 cmdline_fixed_string_t queue_start_index; 9660 uint8_t queue_id; 9661 cmdline_fixed_string_t queue_num; 9662 uint8_t queue_num_value; 9663 }; 9664 9665 static void 9666 cmd_queue_region_parsed(void *parsed_result, 9667 __rte_unused struct cmdline *cl, 9668 __rte_unused void *data) 9669 { 9670 struct cmd_queue_region_result *res = parsed_result; 9671 int ret = -ENOTSUP; 9672 #ifdef RTE_NET_I40E 9673 struct rte_pmd_i40e_queue_region_conf region_conf; 9674 enum rte_pmd_i40e_queue_region_op op_type; 9675 #endif 9676 9677 if (port_id_is_invalid(res->port_id, ENABLED_WARN)) 9678 return; 9679 9680 #ifdef RTE_NET_I40E 9681 memset(®ion_conf, 0, sizeof(region_conf)); 9682 op_type = RTE_PMD_I40E_RSS_QUEUE_REGION_SET; 9683 region_conf.region_id = res->region_id; 9684 region_conf.queue_num = res->queue_num_value; 9685 region_conf.queue_start_index = res->queue_id; 9686 9687 ret = rte_pmd_i40e_rss_queue_region_conf(res->port_id, 9688 op_type, ®ion_conf); 9689 #endif 9690 9691 switch (ret) { 9692 case 0: 9693 break; 9694 case -ENOTSUP: 9695 printf("function not implemented or supported\n"); 9696 break; 9697 default: 9698 printf("queue region config error: (%s)\n", strerror(-ret)); 9699 } 9700 } 9701 9702 cmdline_parse_token_string_t cmd_queue_region_set = 9703 TOKEN_STRING_INITIALIZER(struct cmd_queue_region_result, 9704 set, "set"); 9705 cmdline_parse_token_string_t cmd_queue_region_port = 9706 TOKEN_STRING_INITIALIZER(struct cmd_queue_region_result, port, "port"); 9707 cmdline_parse_token_num_t cmd_queue_region_port_id = 9708 TOKEN_NUM_INITIALIZER(struct cmd_queue_region_result, 9709 port_id, RTE_UINT16); 9710 cmdline_parse_token_string_t cmd_queue_region_cmd = 9711 TOKEN_STRING_INITIALIZER(struct cmd_queue_region_result, 9712 cmd, "queue-region"); 9713 cmdline_parse_token_string_t cmd_queue_region_id = 9714 TOKEN_STRING_INITIALIZER(struct cmd_queue_region_result, 9715 region, "region_id"); 9716 cmdline_parse_token_num_t cmd_queue_region_index = 9717 TOKEN_NUM_INITIALIZER(struct cmd_queue_region_result, 9718 region_id, RTE_UINT8); 9719 cmdline_parse_token_string_t cmd_queue_region_queue_start_index = 9720 TOKEN_STRING_INITIALIZER(struct cmd_queue_region_result, 9721 queue_start_index, "queue_start_index"); 9722 cmdline_parse_token_num_t cmd_queue_region_queue_id = 9723 TOKEN_NUM_INITIALIZER(struct cmd_queue_region_result, 9724 queue_id, RTE_UINT8); 9725 cmdline_parse_token_string_t cmd_queue_region_queue_num = 9726 TOKEN_STRING_INITIALIZER(struct cmd_queue_region_result, 9727 queue_num, "queue_num"); 9728 cmdline_parse_token_num_t cmd_queue_region_queue_num_value = 9729 TOKEN_NUM_INITIALIZER(struct cmd_queue_region_result, 9730 queue_num_value, RTE_UINT8); 9731 9732 cmdline_parse_inst_t cmd_queue_region = { 9733 .f = cmd_queue_region_parsed, 9734 .data = NULL, 9735 .help_str = "set port <port_id> queue-region region_id <value> " 9736 "queue_start_index <value> queue_num <value>: Set a queue region", 9737 .tokens = { 9738 (void *)&cmd_queue_region_set, 9739 (void *)&cmd_queue_region_port, 9740 (void *)&cmd_queue_region_port_id, 9741 (void *)&cmd_queue_region_cmd, 9742 (void *)&cmd_queue_region_id, 9743 (void *)&cmd_queue_region_index, 9744 (void *)&cmd_queue_region_queue_start_index, 9745 (void *)&cmd_queue_region_queue_id, 9746 (void *)&cmd_queue_region_queue_num, 9747 (void *)&cmd_queue_region_queue_num_value, 9748 NULL, 9749 }, 9750 }; 9751 9752 /* *** queue region and flowtype set *** */ 9753 struct cmd_region_flowtype_result { 9754 cmdline_fixed_string_t set; 9755 cmdline_fixed_string_t port; 9756 portid_t port_id; 9757 cmdline_fixed_string_t cmd; 9758 cmdline_fixed_string_t region; 9759 uint8_t region_id; 9760 cmdline_fixed_string_t flowtype; 9761 uint8_t flowtype_id; 9762 }; 9763 9764 static void 9765 cmd_region_flowtype_parsed(void *parsed_result, 9766 __rte_unused struct cmdline *cl, 9767 __rte_unused void *data) 9768 { 9769 struct cmd_region_flowtype_result *res = parsed_result; 9770 int ret = -ENOTSUP; 9771 #ifdef RTE_NET_I40E 9772 struct rte_pmd_i40e_queue_region_conf region_conf; 9773 enum rte_pmd_i40e_queue_region_op op_type; 9774 #endif 9775 9776 if (port_id_is_invalid(res->port_id, ENABLED_WARN)) 9777 return; 9778 9779 #ifdef RTE_NET_I40E 9780 memset(®ion_conf, 0, sizeof(region_conf)); 9781 9782 op_type = RTE_PMD_I40E_RSS_QUEUE_REGION_FLOWTYPE_SET; 9783 region_conf.region_id = res->region_id; 9784 region_conf.hw_flowtype = res->flowtype_id; 9785 9786 ret = rte_pmd_i40e_rss_queue_region_conf(res->port_id, 9787 op_type, ®ion_conf); 9788 #endif 9789 9790 switch (ret) { 9791 case 0: 9792 break; 9793 case -ENOTSUP: 9794 printf("function not implemented or supported\n"); 9795 break; 9796 default: 9797 printf("region flowtype config error: (%s)\n", strerror(-ret)); 9798 } 9799 } 9800 9801 cmdline_parse_token_string_t cmd_region_flowtype_set = 9802 TOKEN_STRING_INITIALIZER(struct cmd_region_flowtype_result, 9803 set, "set"); 9804 cmdline_parse_token_string_t cmd_region_flowtype_port = 9805 TOKEN_STRING_INITIALIZER(struct cmd_region_flowtype_result, 9806 port, "port"); 9807 cmdline_parse_token_num_t cmd_region_flowtype_port_index = 9808 TOKEN_NUM_INITIALIZER(struct cmd_region_flowtype_result, 9809 port_id, RTE_UINT16); 9810 cmdline_parse_token_string_t cmd_region_flowtype_cmd = 9811 TOKEN_STRING_INITIALIZER(struct cmd_region_flowtype_result, 9812 cmd, "queue-region"); 9813 cmdline_parse_token_string_t cmd_region_flowtype_index = 9814 TOKEN_STRING_INITIALIZER(struct cmd_region_flowtype_result, 9815 region, "region_id"); 9816 cmdline_parse_token_num_t cmd_region_flowtype_id = 9817 TOKEN_NUM_INITIALIZER(struct cmd_region_flowtype_result, 9818 region_id, RTE_UINT8); 9819 cmdline_parse_token_string_t cmd_region_flowtype_flow_index = 9820 TOKEN_STRING_INITIALIZER(struct cmd_region_flowtype_result, 9821 flowtype, "flowtype"); 9822 cmdline_parse_token_num_t cmd_region_flowtype_flow_id = 9823 TOKEN_NUM_INITIALIZER(struct cmd_region_flowtype_result, 9824 flowtype_id, RTE_UINT8); 9825 cmdline_parse_inst_t cmd_region_flowtype = { 9826 .f = cmd_region_flowtype_parsed, 9827 .data = NULL, 9828 .help_str = "set port <port_id> queue-region region_id <value> " 9829 "flowtype <value>: Set a flowtype region index", 9830 .tokens = { 9831 (void *)&cmd_region_flowtype_set, 9832 (void *)&cmd_region_flowtype_port, 9833 (void *)&cmd_region_flowtype_port_index, 9834 (void *)&cmd_region_flowtype_cmd, 9835 (void *)&cmd_region_flowtype_index, 9836 (void *)&cmd_region_flowtype_id, 9837 (void *)&cmd_region_flowtype_flow_index, 9838 (void *)&cmd_region_flowtype_flow_id, 9839 NULL, 9840 }, 9841 }; 9842 9843 /* *** User Priority (UP) to queue region (region_id) set *** */ 9844 struct cmd_user_priority_region_result { 9845 cmdline_fixed_string_t set; 9846 cmdline_fixed_string_t port; 9847 portid_t port_id; 9848 cmdline_fixed_string_t cmd; 9849 cmdline_fixed_string_t user_priority; 9850 uint8_t user_priority_id; 9851 cmdline_fixed_string_t region; 9852 uint8_t region_id; 9853 }; 9854 9855 static void 9856 cmd_user_priority_region_parsed(void *parsed_result, 9857 __rte_unused struct cmdline *cl, 9858 __rte_unused void *data) 9859 { 9860 struct cmd_user_priority_region_result *res = parsed_result; 9861 int ret = -ENOTSUP; 9862 #ifdef RTE_NET_I40E 9863 struct rte_pmd_i40e_queue_region_conf region_conf; 9864 enum rte_pmd_i40e_queue_region_op op_type; 9865 #endif 9866 9867 if (port_id_is_invalid(res->port_id, ENABLED_WARN)) 9868 return; 9869 9870 #ifdef RTE_NET_I40E 9871 memset(®ion_conf, 0, sizeof(region_conf)); 9872 op_type = RTE_PMD_I40E_RSS_QUEUE_REGION_USER_PRIORITY_SET; 9873 region_conf.user_priority = res->user_priority_id; 9874 region_conf.region_id = res->region_id; 9875 9876 ret = rte_pmd_i40e_rss_queue_region_conf(res->port_id, 9877 op_type, ®ion_conf); 9878 #endif 9879 9880 switch (ret) { 9881 case 0: 9882 break; 9883 case -ENOTSUP: 9884 printf("function not implemented or supported\n"); 9885 break; 9886 default: 9887 printf("user_priority region config error: (%s)\n", 9888 strerror(-ret)); 9889 } 9890 } 9891 9892 cmdline_parse_token_string_t cmd_user_priority_region_set = 9893 TOKEN_STRING_INITIALIZER(struct cmd_user_priority_region_result, 9894 set, "set"); 9895 cmdline_parse_token_string_t cmd_user_priority_region_port = 9896 TOKEN_STRING_INITIALIZER(struct cmd_user_priority_region_result, 9897 port, "port"); 9898 cmdline_parse_token_num_t cmd_user_priority_region_port_index = 9899 TOKEN_NUM_INITIALIZER(struct cmd_user_priority_region_result, 9900 port_id, RTE_UINT16); 9901 cmdline_parse_token_string_t cmd_user_priority_region_cmd = 9902 TOKEN_STRING_INITIALIZER(struct cmd_user_priority_region_result, 9903 cmd, "queue-region"); 9904 cmdline_parse_token_string_t cmd_user_priority_region_UP = 9905 TOKEN_STRING_INITIALIZER(struct cmd_user_priority_region_result, 9906 user_priority, "UP"); 9907 cmdline_parse_token_num_t cmd_user_priority_region_UP_id = 9908 TOKEN_NUM_INITIALIZER(struct cmd_user_priority_region_result, 9909 user_priority_id, RTE_UINT8); 9910 cmdline_parse_token_string_t cmd_user_priority_region_region = 9911 TOKEN_STRING_INITIALIZER(struct cmd_user_priority_region_result, 9912 region, "region_id"); 9913 cmdline_parse_token_num_t cmd_user_priority_region_region_id = 9914 TOKEN_NUM_INITIALIZER(struct cmd_user_priority_region_result, 9915 region_id, RTE_UINT8); 9916 9917 cmdline_parse_inst_t cmd_user_priority_region = { 9918 .f = cmd_user_priority_region_parsed, 9919 .data = NULL, 9920 .help_str = "set port <port_id> queue-region UP <value> " 9921 "region_id <value>: Set the mapping of User Priority (UP) " 9922 "to queue region (region_id) ", 9923 .tokens = { 9924 (void *)&cmd_user_priority_region_set, 9925 (void *)&cmd_user_priority_region_port, 9926 (void *)&cmd_user_priority_region_port_index, 9927 (void *)&cmd_user_priority_region_cmd, 9928 (void *)&cmd_user_priority_region_UP, 9929 (void *)&cmd_user_priority_region_UP_id, 9930 (void *)&cmd_user_priority_region_region, 9931 (void *)&cmd_user_priority_region_region_id, 9932 NULL, 9933 }, 9934 }; 9935 9936 /* *** flush all queue region related configuration *** */ 9937 struct cmd_flush_queue_region_result { 9938 cmdline_fixed_string_t set; 9939 cmdline_fixed_string_t port; 9940 portid_t port_id; 9941 cmdline_fixed_string_t cmd; 9942 cmdline_fixed_string_t flush; 9943 cmdline_fixed_string_t what; 9944 }; 9945 9946 static void 9947 cmd_flush_queue_region_parsed(void *parsed_result, 9948 __rte_unused struct cmdline *cl, 9949 __rte_unused void *data) 9950 { 9951 struct cmd_flush_queue_region_result *res = parsed_result; 9952 int ret = -ENOTSUP; 9953 #ifdef RTE_NET_I40E 9954 struct rte_pmd_i40e_queue_region_conf region_conf; 9955 enum rte_pmd_i40e_queue_region_op op_type; 9956 #endif 9957 9958 if (port_id_is_invalid(res->port_id, ENABLED_WARN)) 9959 return; 9960 9961 #ifdef RTE_NET_I40E 9962 memset(®ion_conf, 0, sizeof(region_conf)); 9963 9964 if (strcmp(res->what, "on") == 0) 9965 op_type = RTE_PMD_I40E_RSS_QUEUE_REGION_ALL_FLUSH_ON; 9966 else 9967 op_type = RTE_PMD_I40E_RSS_QUEUE_REGION_ALL_FLUSH_OFF; 9968 9969 ret = rte_pmd_i40e_rss_queue_region_conf(res->port_id, 9970 op_type, ®ion_conf); 9971 #endif 9972 9973 switch (ret) { 9974 case 0: 9975 break; 9976 case -ENOTSUP: 9977 printf("function not implemented or supported\n"); 9978 break; 9979 default: 9980 printf("queue region config flush error: (%s)\n", 9981 strerror(-ret)); 9982 } 9983 } 9984 9985 cmdline_parse_token_string_t cmd_flush_queue_region_set = 9986 TOKEN_STRING_INITIALIZER(struct cmd_flush_queue_region_result, 9987 set, "set"); 9988 cmdline_parse_token_string_t cmd_flush_queue_region_port = 9989 TOKEN_STRING_INITIALIZER(struct cmd_flush_queue_region_result, 9990 port, "port"); 9991 cmdline_parse_token_num_t cmd_flush_queue_region_port_index = 9992 TOKEN_NUM_INITIALIZER(struct cmd_flush_queue_region_result, 9993 port_id, RTE_UINT16); 9994 cmdline_parse_token_string_t cmd_flush_queue_region_cmd = 9995 TOKEN_STRING_INITIALIZER(struct cmd_flush_queue_region_result, 9996 cmd, "queue-region"); 9997 cmdline_parse_token_string_t cmd_flush_queue_region_flush = 9998 TOKEN_STRING_INITIALIZER(struct cmd_flush_queue_region_result, 9999 flush, "flush"); 10000 cmdline_parse_token_string_t cmd_flush_queue_region_what = 10001 TOKEN_STRING_INITIALIZER(struct cmd_flush_queue_region_result, 10002 what, "on#off"); 10003 10004 cmdline_parse_inst_t cmd_flush_queue_region = { 10005 .f = cmd_flush_queue_region_parsed, 10006 .data = NULL, 10007 .help_str = "set port <port_id> queue-region flush on|off" 10008 ": flush all queue region related configuration", 10009 .tokens = { 10010 (void *)&cmd_flush_queue_region_set, 10011 (void *)&cmd_flush_queue_region_port, 10012 (void *)&cmd_flush_queue_region_port_index, 10013 (void *)&cmd_flush_queue_region_cmd, 10014 (void *)&cmd_flush_queue_region_flush, 10015 (void *)&cmd_flush_queue_region_what, 10016 NULL, 10017 }, 10018 }; 10019 10020 /* *** get all queue region related configuration info *** */ 10021 struct cmd_show_queue_region_info { 10022 cmdline_fixed_string_t show; 10023 cmdline_fixed_string_t port; 10024 portid_t port_id; 10025 cmdline_fixed_string_t cmd; 10026 }; 10027 10028 static void 10029 cmd_show_queue_region_info_parsed(void *parsed_result, 10030 __rte_unused struct cmdline *cl, 10031 __rte_unused void *data) 10032 { 10033 struct cmd_show_queue_region_info *res = parsed_result; 10034 int ret = -ENOTSUP; 10035 #ifdef RTE_NET_I40E 10036 struct rte_pmd_i40e_queue_regions rte_pmd_regions; 10037 enum rte_pmd_i40e_queue_region_op op_type; 10038 #endif 10039 10040 if (port_id_is_invalid(res->port_id, ENABLED_WARN)) 10041 return; 10042 10043 #ifdef RTE_NET_I40E 10044 memset(&rte_pmd_regions, 0, sizeof(rte_pmd_regions)); 10045 10046 op_type = RTE_PMD_I40E_RSS_QUEUE_REGION_INFO_GET; 10047 10048 ret = rte_pmd_i40e_rss_queue_region_conf(res->port_id, 10049 op_type, &rte_pmd_regions); 10050 10051 port_queue_region_info_display(res->port_id, &rte_pmd_regions); 10052 #endif 10053 10054 switch (ret) { 10055 case 0: 10056 break; 10057 case -ENOTSUP: 10058 printf("function not implemented or supported\n"); 10059 break; 10060 default: 10061 printf("queue region config info show error: (%s)\n", 10062 strerror(-ret)); 10063 } 10064 } 10065 10066 cmdline_parse_token_string_t cmd_show_queue_region_info_get = 10067 TOKEN_STRING_INITIALIZER(struct cmd_show_queue_region_info, 10068 show, "show"); 10069 cmdline_parse_token_string_t cmd_show_queue_region_info_port = 10070 TOKEN_STRING_INITIALIZER(struct cmd_show_queue_region_info, 10071 port, "port"); 10072 cmdline_parse_token_num_t cmd_show_queue_region_info_port_index = 10073 TOKEN_NUM_INITIALIZER(struct cmd_show_queue_region_info, 10074 port_id, RTE_UINT16); 10075 cmdline_parse_token_string_t cmd_show_queue_region_info_cmd = 10076 TOKEN_STRING_INITIALIZER(struct cmd_show_queue_region_info, 10077 cmd, "queue-region"); 10078 10079 cmdline_parse_inst_t cmd_show_queue_region_info_all = { 10080 .f = cmd_show_queue_region_info_parsed, 10081 .data = NULL, 10082 .help_str = "show port <port_id> queue-region" 10083 ": show all queue region related configuration info", 10084 .tokens = { 10085 (void *)&cmd_show_queue_region_info_get, 10086 (void *)&cmd_show_queue_region_info_port, 10087 (void *)&cmd_show_queue_region_info_port_index, 10088 (void *)&cmd_show_queue_region_info_cmd, 10089 NULL, 10090 }, 10091 }; 10092 10093 /* *** Filters Control *** */ 10094 10095 #define IPV4_ADDR_TO_UINT(ip_addr, ip) \ 10096 do { \ 10097 if ((ip_addr).family == AF_INET) \ 10098 (ip) = (ip_addr).addr.ipv4.s_addr; \ 10099 else { \ 10100 printf("invalid parameter.\n"); \ 10101 return; \ 10102 } \ 10103 } while (0) 10104 10105 #define IPV6_ADDR_TO_ARRAY(ip_addr, ip) \ 10106 do { \ 10107 if ((ip_addr).family == AF_INET6) \ 10108 rte_memcpy(&(ip), \ 10109 &((ip_addr).addr.ipv6), \ 10110 sizeof(struct in6_addr)); \ 10111 else { \ 10112 printf("invalid parameter.\n"); \ 10113 return; \ 10114 } \ 10115 } while (0) 10116 10117 #ifdef RTE_NET_I40E 10118 10119 static uint16_t 10120 str2flowtype(char *string) 10121 { 10122 uint8_t i = 0; 10123 static const struct { 10124 char str[32]; 10125 uint16_t type; 10126 } flowtype_str[] = { 10127 {"raw", RTE_ETH_FLOW_RAW}, 10128 {"ipv4", RTE_ETH_FLOW_IPV4}, 10129 {"ipv4-frag", RTE_ETH_FLOW_FRAG_IPV4}, 10130 {"ipv4-tcp", RTE_ETH_FLOW_NONFRAG_IPV4_TCP}, 10131 {"ipv4-udp", RTE_ETH_FLOW_NONFRAG_IPV4_UDP}, 10132 {"ipv4-sctp", RTE_ETH_FLOW_NONFRAG_IPV4_SCTP}, 10133 {"ipv4-other", RTE_ETH_FLOW_NONFRAG_IPV4_OTHER}, 10134 {"ipv6", RTE_ETH_FLOW_IPV6}, 10135 {"ipv6-frag", RTE_ETH_FLOW_FRAG_IPV6}, 10136 {"ipv6-tcp", RTE_ETH_FLOW_NONFRAG_IPV6_TCP}, 10137 {"ipv6-udp", RTE_ETH_FLOW_NONFRAG_IPV6_UDP}, 10138 {"ipv6-sctp", RTE_ETH_FLOW_NONFRAG_IPV6_SCTP}, 10139 {"ipv6-other", RTE_ETH_FLOW_NONFRAG_IPV6_OTHER}, 10140 {"l2_payload", RTE_ETH_FLOW_L2_PAYLOAD}, 10141 }; 10142 10143 for (i = 0; i < RTE_DIM(flowtype_str); i++) { 10144 if (!strcmp(flowtype_str[i].str, string)) 10145 return flowtype_str[i].type; 10146 } 10147 10148 if (isdigit(string[0]) && atoi(string) > 0 && atoi(string) < 64) 10149 return (uint16_t)atoi(string); 10150 10151 return RTE_ETH_FLOW_UNKNOWN; 10152 } 10153 10154 /* *** deal with flow director filter *** */ 10155 struct cmd_flow_director_result { 10156 cmdline_fixed_string_t flow_director_filter; 10157 portid_t port_id; 10158 cmdline_fixed_string_t mode; 10159 cmdline_fixed_string_t mode_value; 10160 cmdline_fixed_string_t ops; 10161 cmdline_fixed_string_t flow; 10162 cmdline_fixed_string_t flow_type; 10163 cmdline_fixed_string_t drop; 10164 cmdline_fixed_string_t queue; 10165 uint16_t queue_id; 10166 cmdline_fixed_string_t fd_id; 10167 uint32_t fd_id_value; 10168 cmdline_fixed_string_t packet; 10169 char filepath[]; 10170 }; 10171 10172 static void 10173 cmd_flow_director_filter_parsed(void *parsed_result, 10174 __rte_unused struct cmdline *cl, 10175 __rte_unused void *data) 10176 { 10177 struct cmd_flow_director_result *res = parsed_result; 10178 int ret = 0; 10179 struct rte_pmd_i40e_flow_type_mapping 10180 mapping[RTE_PMD_I40E_FLOW_TYPE_MAX]; 10181 struct rte_pmd_i40e_pkt_template_conf conf; 10182 uint16_t flow_type = str2flowtype(res->flow_type); 10183 uint16_t i, port = res->port_id; 10184 uint8_t add; 10185 10186 memset(&conf, 0, sizeof(conf)); 10187 10188 if (flow_type == RTE_ETH_FLOW_UNKNOWN) { 10189 printf("Invalid flow type specified.\n"); 10190 return; 10191 } 10192 ret = rte_pmd_i40e_flow_type_mapping_get(res->port_id, 10193 mapping); 10194 if (ret) 10195 return; 10196 if (mapping[flow_type].pctype == 0ULL) { 10197 printf("Invalid flow type specified.\n"); 10198 return; 10199 } 10200 for (i = 0; i < RTE_PMD_I40E_PCTYPE_MAX; i++) { 10201 if (mapping[flow_type].pctype & (1ULL << i)) { 10202 conf.input.pctype = i; 10203 break; 10204 } 10205 } 10206 10207 conf.input.packet = open_file(res->filepath, 10208 &conf.input.length); 10209 if (!conf.input.packet) 10210 return; 10211 if (!strcmp(res->drop, "drop")) 10212 conf.action.behavior = 10213 RTE_PMD_I40E_PKT_TEMPLATE_REJECT; 10214 else 10215 conf.action.behavior = 10216 RTE_PMD_I40E_PKT_TEMPLATE_ACCEPT; 10217 conf.action.report_status = 10218 RTE_PMD_I40E_PKT_TEMPLATE_REPORT_ID; 10219 conf.action.rx_queue = res->queue_id; 10220 conf.soft_id = res->fd_id_value; 10221 add = strcmp(res->ops, "del") ? 1 : 0; 10222 ret = rte_pmd_i40e_flow_add_del_packet_template(port, 10223 &conf, 10224 add); 10225 if (ret < 0) 10226 printf("flow director config error: (%s)\n", 10227 strerror(-ret)); 10228 close_file(conf.input.packet); 10229 } 10230 10231 cmdline_parse_token_string_t cmd_flow_director_filter = 10232 TOKEN_STRING_INITIALIZER(struct cmd_flow_director_result, 10233 flow_director_filter, "flow_director_filter"); 10234 cmdline_parse_token_num_t cmd_flow_director_port_id = 10235 TOKEN_NUM_INITIALIZER(struct cmd_flow_director_result, 10236 port_id, RTE_UINT16); 10237 cmdline_parse_token_string_t cmd_flow_director_ops = 10238 TOKEN_STRING_INITIALIZER(struct cmd_flow_director_result, 10239 ops, "add#del#update"); 10240 cmdline_parse_token_string_t cmd_flow_director_flow = 10241 TOKEN_STRING_INITIALIZER(struct cmd_flow_director_result, 10242 flow, "flow"); 10243 cmdline_parse_token_string_t cmd_flow_director_flow_type = 10244 TOKEN_STRING_INITIALIZER(struct cmd_flow_director_result, 10245 flow_type, NULL); 10246 cmdline_parse_token_string_t cmd_flow_director_drop = 10247 TOKEN_STRING_INITIALIZER(struct cmd_flow_director_result, 10248 drop, "drop#fwd"); 10249 cmdline_parse_token_string_t cmd_flow_director_queue = 10250 TOKEN_STRING_INITIALIZER(struct cmd_flow_director_result, 10251 queue, "queue"); 10252 cmdline_parse_token_num_t cmd_flow_director_queue_id = 10253 TOKEN_NUM_INITIALIZER(struct cmd_flow_director_result, 10254 queue_id, RTE_UINT16); 10255 cmdline_parse_token_string_t cmd_flow_director_fd_id = 10256 TOKEN_STRING_INITIALIZER(struct cmd_flow_director_result, 10257 fd_id, "fd_id"); 10258 cmdline_parse_token_num_t cmd_flow_director_fd_id_value = 10259 TOKEN_NUM_INITIALIZER(struct cmd_flow_director_result, 10260 fd_id_value, RTE_UINT32); 10261 10262 cmdline_parse_token_string_t cmd_flow_director_mode = 10263 TOKEN_STRING_INITIALIZER(struct cmd_flow_director_result, 10264 mode, "mode"); 10265 cmdline_parse_token_string_t cmd_flow_director_mode_raw = 10266 TOKEN_STRING_INITIALIZER(struct cmd_flow_director_result, 10267 mode_value, "raw"); 10268 cmdline_parse_token_string_t cmd_flow_director_packet = 10269 TOKEN_STRING_INITIALIZER(struct cmd_flow_director_result, 10270 packet, "packet"); 10271 cmdline_parse_token_string_t cmd_flow_director_filepath = 10272 TOKEN_STRING_INITIALIZER(struct cmd_flow_director_result, 10273 filepath, NULL); 10274 10275 cmdline_parse_inst_t cmd_add_del_raw_flow_director = { 10276 .f = cmd_flow_director_filter_parsed, 10277 .data = NULL, 10278 .help_str = "flow_director_filter ... : Add or delete a raw flow " 10279 "director entry on NIC", 10280 .tokens = { 10281 (void *)&cmd_flow_director_filter, 10282 (void *)&cmd_flow_director_port_id, 10283 (void *)&cmd_flow_director_mode, 10284 (void *)&cmd_flow_director_mode_raw, 10285 (void *)&cmd_flow_director_ops, 10286 (void *)&cmd_flow_director_flow, 10287 (void *)&cmd_flow_director_flow_type, 10288 (void *)&cmd_flow_director_drop, 10289 (void *)&cmd_flow_director_queue, 10290 (void *)&cmd_flow_director_queue_id, 10291 (void *)&cmd_flow_director_fd_id, 10292 (void *)&cmd_flow_director_fd_id_value, 10293 (void *)&cmd_flow_director_packet, 10294 (void *)&cmd_flow_director_filepath, 10295 NULL, 10296 }, 10297 }; 10298 10299 #endif /* RTE_NET_I40E */ 10300 10301 /* *** deal with flow director mask *** */ 10302 struct cmd_flow_director_mask_result { 10303 cmdline_fixed_string_t flow_director_mask; 10304 portid_t port_id; 10305 cmdline_fixed_string_t mode; 10306 cmdline_fixed_string_t mode_value; 10307 cmdline_fixed_string_t vlan; 10308 uint16_t vlan_mask; 10309 cmdline_fixed_string_t src_mask; 10310 cmdline_ipaddr_t ipv4_src; 10311 cmdline_ipaddr_t ipv6_src; 10312 uint16_t port_src; 10313 cmdline_fixed_string_t dst_mask; 10314 cmdline_ipaddr_t ipv4_dst; 10315 cmdline_ipaddr_t ipv6_dst; 10316 uint16_t port_dst; 10317 cmdline_fixed_string_t mac; 10318 uint8_t mac_addr_byte_mask; 10319 cmdline_fixed_string_t tunnel_id; 10320 uint32_t tunnel_id_mask; 10321 cmdline_fixed_string_t tunnel_type; 10322 uint8_t tunnel_type_mask; 10323 }; 10324 10325 static void 10326 cmd_flow_director_mask_parsed(void *parsed_result, 10327 __rte_unused struct cmdline *cl, 10328 __rte_unused void *data) 10329 { 10330 struct cmd_flow_director_mask_result *res = parsed_result; 10331 struct rte_eth_fdir_masks *mask; 10332 struct rte_port *port; 10333 10334 port = &ports[res->port_id]; 10335 /** Check if the port is not started **/ 10336 if (port->port_status != RTE_PORT_STOPPED) { 10337 printf("Please stop port %d first\n", res->port_id); 10338 return; 10339 } 10340 10341 mask = &port->dev_conf.fdir_conf.mask; 10342 10343 if (fdir_conf.mode == RTE_FDIR_MODE_PERFECT_MAC_VLAN) { 10344 if (strcmp(res->mode_value, "MAC-VLAN")) { 10345 printf("Please set mode to MAC-VLAN.\n"); 10346 return; 10347 } 10348 10349 mask->vlan_tci_mask = rte_cpu_to_be_16(res->vlan_mask); 10350 } else if (fdir_conf.mode == RTE_FDIR_MODE_PERFECT_TUNNEL) { 10351 if (strcmp(res->mode_value, "Tunnel")) { 10352 printf("Please set mode to Tunnel.\n"); 10353 return; 10354 } 10355 10356 mask->vlan_tci_mask = rte_cpu_to_be_16(res->vlan_mask); 10357 mask->mac_addr_byte_mask = res->mac_addr_byte_mask; 10358 mask->tunnel_id_mask = rte_cpu_to_be_32(res->tunnel_id_mask); 10359 mask->tunnel_type_mask = res->tunnel_type_mask; 10360 } else { 10361 if (strcmp(res->mode_value, "IP")) { 10362 printf("Please set mode to IP.\n"); 10363 return; 10364 } 10365 10366 mask->vlan_tci_mask = rte_cpu_to_be_16(res->vlan_mask); 10367 IPV4_ADDR_TO_UINT(res->ipv4_src, mask->ipv4_mask.src_ip); 10368 IPV4_ADDR_TO_UINT(res->ipv4_dst, mask->ipv4_mask.dst_ip); 10369 IPV6_ADDR_TO_ARRAY(res->ipv6_src, mask->ipv6_mask.src_ip); 10370 IPV6_ADDR_TO_ARRAY(res->ipv6_dst, mask->ipv6_mask.dst_ip); 10371 mask->src_port_mask = rte_cpu_to_be_16(res->port_src); 10372 mask->dst_port_mask = rte_cpu_to_be_16(res->port_dst); 10373 } 10374 10375 cmd_reconfig_device_queue(res->port_id, 1, 1); 10376 } 10377 10378 cmdline_parse_token_string_t cmd_flow_director_mask = 10379 TOKEN_STRING_INITIALIZER(struct cmd_flow_director_mask_result, 10380 flow_director_mask, "flow_director_mask"); 10381 cmdline_parse_token_num_t cmd_flow_director_mask_port_id = 10382 TOKEN_NUM_INITIALIZER(struct cmd_flow_director_mask_result, 10383 port_id, RTE_UINT16); 10384 cmdline_parse_token_string_t cmd_flow_director_mask_vlan = 10385 TOKEN_STRING_INITIALIZER(struct cmd_flow_director_mask_result, 10386 vlan, "vlan"); 10387 cmdline_parse_token_num_t cmd_flow_director_mask_vlan_value = 10388 TOKEN_NUM_INITIALIZER(struct cmd_flow_director_mask_result, 10389 vlan_mask, RTE_UINT16); 10390 cmdline_parse_token_string_t cmd_flow_director_mask_src = 10391 TOKEN_STRING_INITIALIZER(struct cmd_flow_director_mask_result, 10392 src_mask, "src_mask"); 10393 cmdline_parse_token_ipaddr_t cmd_flow_director_mask_ipv4_src = 10394 TOKEN_IPADDR_INITIALIZER(struct cmd_flow_director_mask_result, 10395 ipv4_src); 10396 cmdline_parse_token_ipaddr_t cmd_flow_director_mask_ipv6_src = 10397 TOKEN_IPADDR_INITIALIZER(struct cmd_flow_director_mask_result, 10398 ipv6_src); 10399 cmdline_parse_token_num_t cmd_flow_director_mask_port_src = 10400 TOKEN_NUM_INITIALIZER(struct cmd_flow_director_mask_result, 10401 port_src, RTE_UINT16); 10402 cmdline_parse_token_string_t cmd_flow_director_mask_dst = 10403 TOKEN_STRING_INITIALIZER(struct cmd_flow_director_mask_result, 10404 dst_mask, "dst_mask"); 10405 cmdline_parse_token_ipaddr_t cmd_flow_director_mask_ipv4_dst = 10406 TOKEN_IPADDR_INITIALIZER(struct cmd_flow_director_mask_result, 10407 ipv4_dst); 10408 cmdline_parse_token_ipaddr_t cmd_flow_director_mask_ipv6_dst = 10409 TOKEN_IPADDR_INITIALIZER(struct cmd_flow_director_mask_result, 10410 ipv6_dst); 10411 cmdline_parse_token_num_t cmd_flow_director_mask_port_dst = 10412 TOKEN_NUM_INITIALIZER(struct cmd_flow_director_mask_result, 10413 port_dst, RTE_UINT16); 10414 10415 cmdline_parse_token_string_t cmd_flow_director_mask_mode = 10416 TOKEN_STRING_INITIALIZER(struct cmd_flow_director_mask_result, 10417 mode, "mode"); 10418 cmdline_parse_token_string_t cmd_flow_director_mask_mode_ip = 10419 TOKEN_STRING_INITIALIZER(struct cmd_flow_director_mask_result, 10420 mode_value, "IP"); 10421 cmdline_parse_token_string_t cmd_flow_director_mask_mode_mac_vlan = 10422 TOKEN_STRING_INITIALIZER(struct cmd_flow_director_mask_result, 10423 mode_value, "MAC-VLAN"); 10424 cmdline_parse_token_string_t cmd_flow_director_mask_mode_tunnel = 10425 TOKEN_STRING_INITIALIZER(struct cmd_flow_director_mask_result, 10426 mode_value, "Tunnel"); 10427 cmdline_parse_token_string_t cmd_flow_director_mask_mac = 10428 TOKEN_STRING_INITIALIZER(struct cmd_flow_director_mask_result, 10429 mac, "mac"); 10430 cmdline_parse_token_num_t cmd_flow_director_mask_mac_value = 10431 TOKEN_NUM_INITIALIZER(struct cmd_flow_director_mask_result, 10432 mac_addr_byte_mask, RTE_UINT8); 10433 cmdline_parse_token_string_t cmd_flow_director_mask_tunnel_type = 10434 TOKEN_STRING_INITIALIZER(struct cmd_flow_director_mask_result, 10435 tunnel_type, "tunnel-type"); 10436 cmdline_parse_token_num_t cmd_flow_director_mask_tunnel_type_value = 10437 TOKEN_NUM_INITIALIZER(struct cmd_flow_director_mask_result, 10438 tunnel_type_mask, RTE_UINT8); 10439 cmdline_parse_token_string_t cmd_flow_director_mask_tunnel_id = 10440 TOKEN_STRING_INITIALIZER(struct cmd_flow_director_mask_result, 10441 tunnel_id, "tunnel-id"); 10442 cmdline_parse_token_num_t cmd_flow_director_mask_tunnel_id_value = 10443 TOKEN_NUM_INITIALIZER(struct cmd_flow_director_mask_result, 10444 tunnel_id_mask, RTE_UINT32); 10445 10446 cmdline_parse_inst_t cmd_set_flow_director_ip_mask = { 10447 .f = cmd_flow_director_mask_parsed, 10448 .data = NULL, 10449 .help_str = "flow_director_mask ... : " 10450 "Set IP mode flow director's mask on NIC", 10451 .tokens = { 10452 (void *)&cmd_flow_director_mask, 10453 (void *)&cmd_flow_director_mask_port_id, 10454 (void *)&cmd_flow_director_mask_mode, 10455 (void *)&cmd_flow_director_mask_mode_ip, 10456 (void *)&cmd_flow_director_mask_vlan, 10457 (void *)&cmd_flow_director_mask_vlan_value, 10458 (void *)&cmd_flow_director_mask_src, 10459 (void *)&cmd_flow_director_mask_ipv4_src, 10460 (void *)&cmd_flow_director_mask_ipv6_src, 10461 (void *)&cmd_flow_director_mask_port_src, 10462 (void *)&cmd_flow_director_mask_dst, 10463 (void *)&cmd_flow_director_mask_ipv4_dst, 10464 (void *)&cmd_flow_director_mask_ipv6_dst, 10465 (void *)&cmd_flow_director_mask_port_dst, 10466 NULL, 10467 }, 10468 }; 10469 10470 cmdline_parse_inst_t cmd_set_flow_director_mac_vlan_mask = { 10471 .f = cmd_flow_director_mask_parsed, 10472 .data = NULL, 10473 .help_str = "flow_director_mask ... : Set MAC VLAN mode " 10474 "flow director's mask on NIC", 10475 .tokens = { 10476 (void *)&cmd_flow_director_mask, 10477 (void *)&cmd_flow_director_mask_port_id, 10478 (void *)&cmd_flow_director_mask_mode, 10479 (void *)&cmd_flow_director_mask_mode_mac_vlan, 10480 (void *)&cmd_flow_director_mask_vlan, 10481 (void *)&cmd_flow_director_mask_vlan_value, 10482 NULL, 10483 }, 10484 }; 10485 10486 cmdline_parse_inst_t cmd_set_flow_director_tunnel_mask = { 10487 .f = cmd_flow_director_mask_parsed, 10488 .data = NULL, 10489 .help_str = "flow_director_mask ... : Set tunnel mode " 10490 "flow director's mask on NIC", 10491 .tokens = { 10492 (void *)&cmd_flow_director_mask, 10493 (void *)&cmd_flow_director_mask_port_id, 10494 (void *)&cmd_flow_director_mask_mode, 10495 (void *)&cmd_flow_director_mask_mode_tunnel, 10496 (void *)&cmd_flow_director_mask_vlan, 10497 (void *)&cmd_flow_director_mask_vlan_value, 10498 (void *)&cmd_flow_director_mask_mac, 10499 (void *)&cmd_flow_director_mask_mac_value, 10500 (void *)&cmd_flow_director_mask_tunnel_type, 10501 (void *)&cmd_flow_director_mask_tunnel_type_value, 10502 (void *)&cmd_flow_director_mask_tunnel_id, 10503 (void *)&cmd_flow_director_mask_tunnel_id_value, 10504 NULL, 10505 }, 10506 }; 10507 10508 /* *** deal with flow director flexible payload configuration *** */ 10509 struct cmd_flow_director_flexpayload_result { 10510 cmdline_fixed_string_t flow_director_flexpayload; 10511 portid_t port_id; 10512 cmdline_fixed_string_t payload_layer; 10513 cmdline_fixed_string_t payload_cfg; 10514 }; 10515 10516 static inline int 10517 parse_offsets(const char *q_arg, uint16_t *offsets, uint16_t max_num) 10518 { 10519 char s[256]; 10520 const char *p, *p0 = q_arg; 10521 char *end; 10522 unsigned long int_fld; 10523 char *str_fld[max_num]; 10524 int i; 10525 unsigned size; 10526 int ret = -1; 10527 10528 p = strchr(p0, '('); 10529 if (p == NULL) 10530 return -1; 10531 ++p; 10532 p0 = strchr(p, ')'); 10533 if (p0 == NULL) 10534 return -1; 10535 10536 size = p0 - p; 10537 if (size >= sizeof(s)) 10538 return -1; 10539 10540 snprintf(s, sizeof(s), "%.*s", size, p); 10541 ret = rte_strsplit(s, sizeof(s), str_fld, max_num, ','); 10542 if (ret < 0 || ret > max_num) 10543 return -1; 10544 for (i = 0; i < ret; i++) { 10545 errno = 0; 10546 int_fld = strtoul(str_fld[i], &end, 0); 10547 if (errno != 0 || *end != '\0' || int_fld > UINT16_MAX) 10548 return -1; 10549 offsets[i] = (uint16_t)int_fld; 10550 } 10551 return ret; 10552 } 10553 10554 static void 10555 cmd_flow_director_flxpld_parsed(void *parsed_result, 10556 __rte_unused struct cmdline *cl, 10557 __rte_unused void *data) 10558 { 10559 struct cmd_flow_director_flexpayload_result *res = parsed_result; 10560 struct rte_eth_flex_payload_cfg flex_cfg; 10561 struct rte_port *port; 10562 int ret = 0; 10563 10564 port = &ports[res->port_id]; 10565 /** Check if the port is not started **/ 10566 if (port->port_status != RTE_PORT_STOPPED) { 10567 printf("Please stop port %d first\n", res->port_id); 10568 return; 10569 } 10570 10571 memset(&flex_cfg, 0, sizeof(struct rte_eth_flex_payload_cfg)); 10572 10573 if (!strcmp(res->payload_layer, "raw")) 10574 flex_cfg.type = RTE_ETH_RAW_PAYLOAD; 10575 else if (!strcmp(res->payload_layer, "l2")) 10576 flex_cfg.type = RTE_ETH_L2_PAYLOAD; 10577 else if (!strcmp(res->payload_layer, "l3")) 10578 flex_cfg.type = RTE_ETH_L3_PAYLOAD; 10579 else if (!strcmp(res->payload_layer, "l4")) 10580 flex_cfg.type = RTE_ETH_L4_PAYLOAD; 10581 10582 ret = parse_offsets(res->payload_cfg, flex_cfg.src_offset, 10583 RTE_ETH_FDIR_MAX_FLEXLEN); 10584 if (ret < 0) { 10585 printf("error: Cannot parse flex payload input.\n"); 10586 return; 10587 } 10588 10589 fdir_set_flex_payload(res->port_id, &flex_cfg); 10590 cmd_reconfig_device_queue(res->port_id, 1, 1); 10591 } 10592 10593 cmdline_parse_token_string_t cmd_flow_director_flexpayload = 10594 TOKEN_STRING_INITIALIZER(struct cmd_flow_director_flexpayload_result, 10595 flow_director_flexpayload, 10596 "flow_director_flex_payload"); 10597 cmdline_parse_token_num_t cmd_flow_director_flexpayload_port_id = 10598 TOKEN_NUM_INITIALIZER(struct cmd_flow_director_flexpayload_result, 10599 port_id, RTE_UINT16); 10600 cmdline_parse_token_string_t cmd_flow_director_flexpayload_payload_layer = 10601 TOKEN_STRING_INITIALIZER(struct cmd_flow_director_flexpayload_result, 10602 payload_layer, "raw#l2#l3#l4"); 10603 cmdline_parse_token_string_t cmd_flow_director_flexpayload_payload_cfg = 10604 TOKEN_STRING_INITIALIZER(struct cmd_flow_director_flexpayload_result, 10605 payload_cfg, NULL); 10606 10607 cmdline_parse_inst_t cmd_set_flow_director_flex_payload = { 10608 .f = cmd_flow_director_flxpld_parsed, 10609 .data = NULL, 10610 .help_str = "flow_director_flexpayload ... : " 10611 "Set flow director's flex payload on NIC", 10612 .tokens = { 10613 (void *)&cmd_flow_director_flexpayload, 10614 (void *)&cmd_flow_director_flexpayload_port_id, 10615 (void *)&cmd_flow_director_flexpayload_payload_layer, 10616 (void *)&cmd_flow_director_flexpayload_payload_cfg, 10617 NULL, 10618 }, 10619 }; 10620 10621 /* Generic flow interface command. */ 10622 extern cmdline_parse_inst_t cmd_flow; 10623 10624 /* *** ADD/REMOVE A MULTICAST MAC ADDRESS TO/FROM A PORT *** */ 10625 struct cmd_mcast_addr_result { 10626 cmdline_fixed_string_t mcast_addr_cmd; 10627 cmdline_fixed_string_t what; 10628 uint16_t port_num; 10629 struct rte_ether_addr mc_addr; 10630 }; 10631 10632 static void cmd_mcast_addr_parsed(void *parsed_result, 10633 __rte_unused struct cmdline *cl, 10634 __rte_unused void *data) 10635 { 10636 struct cmd_mcast_addr_result *res = parsed_result; 10637 10638 if (!rte_is_multicast_ether_addr(&res->mc_addr)) { 10639 printf("Invalid multicast addr %02X:%02X:%02X:%02X:%02X:%02X\n", 10640 res->mc_addr.addr_bytes[0], res->mc_addr.addr_bytes[1], 10641 res->mc_addr.addr_bytes[2], res->mc_addr.addr_bytes[3], 10642 res->mc_addr.addr_bytes[4], res->mc_addr.addr_bytes[5]); 10643 return; 10644 } 10645 if (strcmp(res->what, "add") == 0) 10646 mcast_addr_add(res->port_num, &res->mc_addr); 10647 else 10648 mcast_addr_remove(res->port_num, &res->mc_addr); 10649 } 10650 10651 cmdline_parse_token_string_t cmd_mcast_addr_cmd = 10652 TOKEN_STRING_INITIALIZER(struct cmd_mcast_addr_result, 10653 mcast_addr_cmd, "mcast_addr"); 10654 cmdline_parse_token_string_t cmd_mcast_addr_what = 10655 TOKEN_STRING_INITIALIZER(struct cmd_mcast_addr_result, what, 10656 "add#remove"); 10657 cmdline_parse_token_num_t cmd_mcast_addr_portnum = 10658 TOKEN_NUM_INITIALIZER(struct cmd_mcast_addr_result, port_num, 10659 RTE_UINT16); 10660 cmdline_parse_token_etheraddr_t cmd_mcast_addr_addr = 10661 TOKEN_ETHERADDR_INITIALIZER(struct cmd_mac_addr_result, address); 10662 10663 cmdline_parse_inst_t cmd_mcast_addr = { 10664 .f = cmd_mcast_addr_parsed, 10665 .data = (void *)0, 10666 .help_str = "mcast_addr add|remove <port_id> <mcast_addr>: " 10667 "Add/Remove multicast MAC address on port_id", 10668 .tokens = { 10669 (void *)&cmd_mcast_addr_cmd, 10670 (void *)&cmd_mcast_addr_what, 10671 (void *)&cmd_mcast_addr_portnum, 10672 (void *)&cmd_mcast_addr_addr, 10673 NULL, 10674 }, 10675 }; 10676 10677 /* vf vlan anti spoof configuration */ 10678 10679 /* Common result structure for vf vlan anti spoof */ 10680 struct cmd_vf_vlan_anti_spoof_result { 10681 cmdline_fixed_string_t set; 10682 cmdline_fixed_string_t vf; 10683 cmdline_fixed_string_t vlan; 10684 cmdline_fixed_string_t antispoof; 10685 portid_t port_id; 10686 uint32_t vf_id; 10687 cmdline_fixed_string_t on_off; 10688 }; 10689 10690 /* Common CLI fields for vf vlan anti spoof enable disable */ 10691 cmdline_parse_token_string_t cmd_vf_vlan_anti_spoof_set = 10692 TOKEN_STRING_INITIALIZER 10693 (struct cmd_vf_vlan_anti_spoof_result, 10694 set, "set"); 10695 cmdline_parse_token_string_t cmd_vf_vlan_anti_spoof_vf = 10696 TOKEN_STRING_INITIALIZER 10697 (struct cmd_vf_vlan_anti_spoof_result, 10698 vf, "vf"); 10699 cmdline_parse_token_string_t cmd_vf_vlan_anti_spoof_vlan = 10700 TOKEN_STRING_INITIALIZER 10701 (struct cmd_vf_vlan_anti_spoof_result, 10702 vlan, "vlan"); 10703 cmdline_parse_token_string_t cmd_vf_vlan_anti_spoof_antispoof = 10704 TOKEN_STRING_INITIALIZER 10705 (struct cmd_vf_vlan_anti_spoof_result, 10706 antispoof, "antispoof"); 10707 cmdline_parse_token_num_t cmd_vf_vlan_anti_spoof_port_id = 10708 TOKEN_NUM_INITIALIZER 10709 (struct cmd_vf_vlan_anti_spoof_result, 10710 port_id, RTE_UINT16); 10711 cmdline_parse_token_num_t cmd_vf_vlan_anti_spoof_vf_id = 10712 TOKEN_NUM_INITIALIZER 10713 (struct cmd_vf_vlan_anti_spoof_result, 10714 vf_id, RTE_UINT32); 10715 cmdline_parse_token_string_t cmd_vf_vlan_anti_spoof_on_off = 10716 TOKEN_STRING_INITIALIZER 10717 (struct cmd_vf_vlan_anti_spoof_result, 10718 on_off, "on#off"); 10719 10720 static void 10721 cmd_set_vf_vlan_anti_spoof_parsed( 10722 void *parsed_result, 10723 __rte_unused struct cmdline *cl, 10724 __rte_unused void *data) 10725 { 10726 struct cmd_vf_vlan_anti_spoof_result *res = parsed_result; 10727 int ret = -ENOTSUP; 10728 10729 __rte_unused int is_on = (strcmp(res->on_off, "on") == 0) ? 1 : 0; 10730 10731 if (port_id_is_invalid(res->port_id, ENABLED_WARN)) 10732 return; 10733 10734 #ifdef RTE_NET_IXGBE 10735 if (ret == -ENOTSUP) 10736 ret = rte_pmd_ixgbe_set_vf_vlan_anti_spoof(res->port_id, 10737 res->vf_id, is_on); 10738 #endif 10739 #ifdef RTE_NET_I40E 10740 if (ret == -ENOTSUP) 10741 ret = rte_pmd_i40e_set_vf_vlan_anti_spoof(res->port_id, 10742 res->vf_id, is_on); 10743 #endif 10744 #ifdef RTE_NET_BNXT 10745 if (ret == -ENOTSUP) 10746 ret = rte_pmd_bnxt_set_vf_vlan_anti_spoof(res->port_id, 10747 res->vf_id, is_on); 10748 #endif 10749 10750 switch (ret) { 10751 case 0: 10752 break; 10753 case -EINVAL: 10754 printf("invalid vf_id %d\n", res->vf_id); 10755 break; 10756 case -ENODEV: 10757 printf("invalid port_id %d\n", res->port_id); 10758 break; 10759 case -ENOTSUP: 10760 printf("function not implemented\n"); 10761 break; 10762 default: 10763 printf("programming error: (%s)\n", strerror(-ret)); 10764 } 10765 } 10766 10767 cmdline_parse_inst_t cmd_set_vf_vlan_anti_spoof = { 10768 .f = cmd_set_vf_vlan_anti_spoof_parsed, 10769 .data = NULL, 10770 .help_str = "set vf vlan antispoof <port_id> <vf_id> on|off", 10771 .tokens = { 10772 (void *)&cmd_vf_vlan_anti_spoof_set, 10773 (void *)&cmd_vf_vlan_anti_spoof_vf, 10774 (void *)&cmd_vf_vlan_anti_spoof_vlan, 10775 (void *)&cmd_vf_vlan_anti_spoof_antispoof, 10776 (void *)&cmd_vf_vlan_anti_spoof_port_id, 10777 (void *)&cmd_vf_vlan_anti_spoof_vf_id, 10778 (void *)&cmd_vf_vlan_anti_spoof_on_off, 10779 NULL, 10780 }, 10781 }; 10782 10783 /* vf mac anti spoof configuration */ 10784 10785 /* Common result structure for vf mac anti spoof */ 10786 struct cmd_vf_mac_anti_spoof_result { 10787 cmdline_fixed_string_t set; 10788 cmdline_fixed_string_t vf; 10789 cmdline_fixed_string_t mac; 10790 cmdline_fixed_string_t antispoof; 10791 portid_t port_id; 10792 uint32_t vf_id; 10793 cmdline_fixed_string_t on_off; 10794 }; 10795 10796 /* Common CLI fields for vf mac anti spoof enable disable */ 10797 cmdline_parse_token_string_t cmd_vf_mac_anti_spoof_set = 10798 TOKEN_STRING_INITIALIZER 10799 (struct cmd_vf_mac_anti_spoof_result, 10800 set, "set"); 10801 cmdline_parse_token_string_t cmd_vf_mac_anti_spoof_vf = 10802 TOKEN_STRING_INITIALIZER 10803 (struct cmd_vf_mac_anti_spoof_result, 10804 vf, "vf"); 10805 cmdline_parse_token_string_t cmd_vf_mac_anti_spoof_mac = 10806 TOKEN_STRING_INITIALIZER 10807 (struct cmd_vf_mac_anti_spoof_result, 10808 mac, "mac"); 10809 cmdline_parse_token_string_t cmd_vf_mac_anti_spoof_antispoof = 10810 TOKEN_STRING_INITIALIZER 10811 (struct cmd_vf_mac_anti_spoof_result, 10812 antispoof, "antispoof"); 10813 cmdline_parse_token_num_t cmd_vf_mac_anti_spoof_port_id = 10814 TOKEN_NUM_INITIALIZER 10815 (struct cmd_vf_mac_anti_spoof_result, 10816 port_id, RTE_UINT16); 10817 cmdline_parse_token_num_t cmd_vf_mac_anti_spoof_vf_id = 10818 TOKEN_NUM_INITIALIZER 10819 (struct cmd_vf_mac_anti_spoof_result, 10820 vf_id, RTE_UINT32); 10821 cmdline_parse_token_string_t cmd_vf_mac_anti_spoof_on_off = 10822 TOKEN_STRING_INITIALIZER 10823 (struct cmd_vf_mac_anti_spoof_result, 10824 on_off, "on#off"); 10825 10826 static void 10827 cmd_set_vf_mac_anti_spoof_parsed( 10828 void *parsed_result, 10829 __rte_unused struct cmdline *cl, 10830 __rte_unused void *data) 10831 { 10832 struct cmd_vf_mac_anti_spoof_result *res = parsed_result; 10833 int ret = -ENOTSUP; 10834 10835 __rte_unused int is_on = (strcmp(res->on_off, "on") == 0) ? 1 : 0; 10836 10837 if (port_id_is_invalid(res->port_id, ENABLED_WARN)) 10838 return; 10839 10840 #ifdef RTE_NET_IXGBE 10841 if (ret == -ENOTSUP) 10842 ret = rte_pmd_ixgbe_set_vf_mac_anti_spoof(res->port_id, 10843 res->vf_id, is_on); 10844 #endif 10845 #ifdef RTE_NET_I40E 10846 if (ret == -ENOTSUP) 10847 ret = rte_pmd_i40e_set_vf_mac_anti_spoof(res->port_id, 10848 res->vf_id, is_on); 10849 #endif 10850 #ifdef RTE_NET_BNXT 10851 if (ret == -ENOTSUP) 10852 ret = rte_pmd_bnxt_set_vf_mac_anti_spoof(res->port_id, 10853 res->vf_id, is_on); 10854 #endif 10855 10856 switch (ret) { 10857 case 0: 10858 break; 10859 case -EINVAL: 10860 printf("invalid vf_id %d or is_on %d\n", res->vf_id, is_on); 10861 break; 10862 case -ENODEV: 10863 printf("invalid port_id %d\n", res->port_id); 10864 break; 10865 case -ENOTSUP: 10866 printf("function not implemented\n"); 10867 break; 10868 default: 10869 printf("programming error: (%s)\n", strerror(-ret)); 10870 } 10871 } 10872 10873 cmdline_parse_inst_t cmd_set_vf_mac_anti_spoof = { 10874 .f = cmd_set_vf_mac_anti_spoof_parsed, 10875 .data = NULL, 10876 .help_str = "set vf mac antispoof <port_id> <vf_id> on|off", 10877 .tokens = { 10878 (void *)&cmd_vf_mac_anti_spoof_set, 10879 (void *)&cmd_vf_mac_anti_spoof_vf, 10880 (void *)&cmd_vf_mac_anti_spoof_mac, 10881 (void *)&cmd_vf_mac_anti_spoof_antispoof, 10882 (void *)&cmd_vf_mac_anti_spoof_port_id, 10883 (void *)&cmd_vf_mac_anti_spoof_vf_id, 10884 (void *)&cmd_vf_mac_anti_spoof_on_off, 10885 NULL, 10886 }, 10887 }; 10888 10889 /* vf vlan strip queue configuration */ 10890 10891 /* Common result structure for vf mac anti spoof */ 10892 struct cmd_vf_vlan_stripq_result { 10893 cmdline_fixed_string_t set; 10894 cmdline_fixed_string_t vf; 10895 cmdline_fixed_string_t vlan; 10896 cmdline_fixed_string_t stripq; 10897 portid_t port_id; 10898 uint16_t vf_id; 10899 cmdline_fixed_string_t on_off; 10900 }; 10901 10902 /* Common CLI fields for vf vlan strip enable disable */ 10903 cmdline_parse_token_string_t cmd_vf_vlan_stripq_set = 10904 TOKEN_STRING_INITIALIZER 10905 (struct cmd_vf_vlan_stripq_result, 10906 set, "set"); 10907 cmdline_parse_token_string_t cmd_vf_vlan_stripq_vf = 10908 TOKEN_STRING_INITIALIZER 10909 (struct cmd_vf_vlan_stripq_result, 10910 vf, "vf"); 10911 cmdline_parse_token_string_t cmd_vf_vlan_stripq_vlan = 10912 TOKEN_STRING_INITIALIZER 10913 (struct cmd_vf_vlan_stripq_result, 10914 vlan, "vlan"); 10915 cmdline_parse_token_string_t cmd_vf_vlan_stripq_stripq = 10916 TOKEN_STRING_INITIALIZER 10917 (struct cmd_vf_vlan_stripq_result, 10918 stripq, "stripq"); 10919 cmdline_parse_token_num_t cmd_vf_vlan_stripq_port_id = 10920 TOKEN_NUM_INITIALIZER 10921 (struct cmd_vf_vlan_stripq_result, 10922 port_id, RTE_UINT16); 10923 cmdline_parse_token_num_t cmd_vf_vlan_stripq_vf_id = 10924 TOKEN_NUM_INITIALIZER 10925 (struct cmd_vf_vlan_stripq_result, 10926 vf_id, RTE_UINT16); 10927 cmdline_parse_token_string_t cmd_vf_vlan_stripq_on_off = 10928 TOKEN_STRING_INITIALIZER 10929 (struct cmd_vf_vlan_stripq_result, 10930 on_off, "on#off"); 10931 10932 static void 10933 cmd_set_vf_vlan_stripq_parsed( 10934 void *parsed_result, 10935 __rte_unused struct cmdline *cl, 10936 __rte_unused void *data) 10937 { 10938 struct cmd_vf_vlan_stripq_result *res = parsed_result; 10939 int ret = -ENOTSUP; 10940 10941 __rte_unused int is_on = (strcmp(res->on_off, "on") == 0) ? 1 : 0; 10942 10943 if (port_id_is_invalid(res->port_id, ENABLED_WARN)) 10944 return; 10945 10946 #ifdef RTE_NET_IXGBE 10947 if (ret == -ENOTSUP) 10948 ret = rte_pmd_ixgbe_set_vf_vlan_stripq(res->port_id, 10949 res->vf_id, is_on); 10950 #endif 10951 #ifdef RTE_NET_I40E 10952 if (ret == -ENOTSUP) 10953 ret = rte_pmd_i40e_set_vf_vlan_stripq(res->port_id, 10954 res->vf_id, is_on); 10955 #endif 10956 #ifdef RTE_NET_BNXT 10957 if (ret == -ENOTSUP) 10958 ret = rte_pmd_bnxt_set_vf_vlan_stripq(res->port_id, 10959 res->vf_id, is_on); 10960 #endif 10961 10962 switch (ret) { 10963 case 0: 10964 break; 10965 case -EINVAL: 10966 printf("invalid vf_id %d or is_on %d\n", res->vf_id, is_on); 10967 break; 10968 case -ENODEV: 10969 printf("invalid port_id %d\n", res->port_id); 10970 break; 10971 case -ENOTSUP: 10972 printf("function not implemented\n"); 10973 break; 10974 default: 10975 printf("programming error: (%s)\n", strerror(-ret)); 10976 } 10977 } 10978 10979 cmdline_parse_inst_t cmd_set_vf_vlan_stripq = { 10980 .f = cmd_set_vf_vlan_stripq_parsed, 10981 .data = NULL, 10982 .help_str = "set vf vlan stripq <port_id> <vf_id> on|off", 10983 .tokens = { 10984 (void *)&cmd_vf_vlan_stripq_set, 10985 (void *)&cmd_vf_vlan_stripq_vf, 10986 (void *)&cmd_vf_vlan_stripq_vlan, 10987 (void *)&cmd_vf_vlan_stripq_stripq, 10988 (void *)&cmd_vf_vlan_stripq_port_id, 10989 (void *)&cmd_vf_vlan_stripq_vf_id, 10990 (void *)&cmd_vf_vlan_stripq_on_off, 10991 NULL, 10992 }, 10993 }; 10994 10995 /* vf vlan insert configuration */ 10996 10997 /* Common result structure for vf vlan insert */ 10998 struct cmd_vf_vlan_insert_result { 10999 cmdline_fixed_string_t set; 11000 cmdline_fixed_string_t vf; 11001 cmdline_fixed_string_t vlan; 11002 cmdline_fixed_string_t insert; 11003 portid_t port_id; 11004 uint16_t vf_id; 11005 uint16_t vlan_id; 11006 }; 11007 11008 /* Common CLI fields for vf vlan insert enable disable */ 11009 cmdline_parse_token_string_t cmd_vf_vlan_insert_set = 11010 TOKEN_STRING_INITIALIZER 11011 (struct cmd_vf_vlan_insert_result, 11012 set, "set"); 11013 cmdline_parse_token_string_t cmd_vf_vlan_insert_vf = 11014 TOKEN_STRING_INITIALIZER 11015 (struct cmd_vf_vlan_insert_result, 11016 vf, "vf"); 11017 cmdline_parse_token_string_t cmd_vf_vlan_insert_vlan = 11018 TOKEN_STRING_INITIALIZER 11019 (struct cmd_vf_vlan_insert_result, 11020 vlan, "vlan"); 11021 cmdline_parse_token_string_t cmd_vf_vlan_insert_insert = 11022 TOKEN_STRING_INITIALIZER 11023 (struct cmd_vf_vlan_insert_result, 11024 insert, "insert"); 11025 cmdline_parse_token_num_t cmd_vf_vlan_insert_port_id = 11026 TOKEN_NUM_INITIALIZER 11027 (struct cmd_vf_vlan_insert_result, 11028 port_id, RTE_UINT16); 11029 cmdline_parse_token_num_t cmd_vf_vlan_insert_vf_id = 11030 TOKEN_NUM_INITIALIZER 11031 (struct cmd_vf_vlan_insert_result, 11032 vf_id, RTE_UINT16); 11033 cmdline_parse_token_num_t cmd_vf_vlan_insert_vlan_id = 11034 TOKEN_NUM_INITIALIZER 11035 (struct cmd_vf_vlan_insert_result, 11036 vlan_id, RTE_UINT16); 11037 11038 static void 11039 cmd_set_vf_vlan_insert_parsed( 11040 void *parsed_result, 11041 __rte_unused struct cmdline *cl, 11042 __rte_unused void *data) 11043 { 11044 struct cmd_vf_vlan_insert_result *res = parsed_result; 11045 int ret = -ENOTSUP; 11046 11047 if (port_id_is_invalid(res->port_id, ENABLED_WARN)) 11048 return; 11049 11050 #ifdef RTE_NET_IXGBE 11051 if (ret == -ENOTSUP) 11052 ret = rte_pmd_ixgbe_set_vf_vlan_insert(res->port_id, res->vf_id, 11053 res->vlan_id); 11054 #endif 11055 #ifdef RTE_NET_I40E 11056 if (ret == -ENOTSUP) 11057 ret = rte_pmd_i40e_set_vf_vlan_insert(res->port_id, res->vf_id, 11058 res->vlan_id); 11059 #endif 11060 #ifdef RTE_NET_BNXT 11061 if (ret == -ENOTSUP) 11062 ret = rte_pmd_bnxt_set_vf_vlan_insert(res->port_id, res->vf_id, 11063 res->vlan_id); 11064 #endif 11065 11066 switch (ret) { 11067 case 0: 11068 break; 11069 case -EINVAL: 11070 printf("invalid vf_id %d or vlan_id %d\n", res->vf_id, res->vlan_id); 11071 break; 11072 case -ENODEV: 11073 printf("invalid port_id %d\n", res->port_id); 11074 break; 11075 case -ENOTSUP: 11076 printf("function not implemented\n"); 11077 break; 11078 default: 11079 printf("programming error: (%s)\n", strerror(-ret)); 11080 } 11081 } 11082 11083 cmdline_parse_inst_t cmd_set_vf_vlan_insert = { 11084 .f = cmd_set_vf_vlan_insert_parsed, 11085 .data = NULL, 11086 .help_str = "set vf vlan insert <port_id> <vf_id> <vlan_id>", 11087 .tokens = { 11088 (void *)&cmd_vf_vlan_insert_set, 11089 (void *)&cmd_vf_vlan_insert_vf, 11090 (void *)&cmd_vf_vlan_insert_vlan, 11091 (void *)&cmd_vf_vlan_insert_insert, 11092 (void *)&cmd_vf_vlan_insert_port_id, 11093 (void *)&cmd_vf_vlan_insert_vf_id, 11094 (void *)&cmd_vf_vlan_insert_vlan_id, 11095 NULL, 11096 }, 11097 }; 11098 11099 /* tx loopback configuration */ 11100 11101 /* Common result structure for tx loopback */ 11102 struct cmd_tx_loopback_result { 11103 cmdline_fixed_string_t set; 11104 cmdline_fixed_string_t tx; 11105 cmdline_fixed_string_t loopback; 11106 portid_t port_id; 11107 cmdline_fixed_string_t on_off; 11108 }; 11109 11110 /* Common CLI fields for tx loopback enable disable */ 11111 cmdline_parse_token_string_t cmd_tx_loopback_set = 11112 TOKEN_STRING_INITIALIZER 11113 (struct cmd_tx_loopback_result, 11114 set, "set"); 11115 cmdline_parse_token_string_t cmd_tx_loopback_tx = 11116 TOKEN_STRING_INITIALIZER 11117 (struct cmd_tx_loopback_result, 11118 tx, "tx"); 11119 cmdline_parse_token_string_t cmd_tx_loopback_loopback = 11120 TOKEN_STRING_INITIALIZER 11121 (struct cmd_tx_loopback_result, 11122 loopback, "loopback"); 11123 cmdline_parse_token_num_t cmd_tx_loopback_port_id = 11124 TOKEN_NUM_INITIALIZER 11125 (struct cmd_tx_loopback_result, 11126 port_id, RTE_UINT16); 11127 cmdline_parse_token_string_t cmd_tx_loopback_on_off = 11128 TOKEN_STRING_INITIALIZER 11129 (struct cmd_tx_loopback_result, 11130 on_off, "on#off"); 11131 11132 static void 11133 cmd_set_tx_loopback_parsed( 11134 void *parsed_result, 11135 __rte_unused struct cmdline *cl, 11136 __rte_unused void *data) 11137 { 11138 struct cmd_tx_loopback_result *res = parsed_result; 11139 int ret = -ENOTSUP; 11140 11141 __rte_unused int is_on = (strcmp(res->on_off, "on") == 0) ? 1 : 0; 11142 11143 if (port_id_is_invalid(res->port_id, ENABLED_WARN)) 11144 return; 11145 11146 #ifdef RTE_NET_IXGBE 11147 if (ret == -ENOTSUP) 11148 ret = rte_pmd_ixgbe_set_tx_loopback(res->port_id, is_on); 11149 #endif 11150 #ifdef RTE_NET_I40E 11151 if (ret == -ENOTSUP) 11152 ret = rte_pmd_i40e_set_tx_loopback(res->port_id, is_on); 11153 #endif 11154 #ifdef RTE_NET_BNXT 11155 if (ret == -ENOTSUP) 11156 ret = rte_pmd_bnxt_set_tx_loopback(res->port_id, is_on); 11157 #endif 11158 #if defined RTE_BUS_DPAA && defined RTE_NET_DPAA 11159 if (ret == -ENOTSUP) 11160 ret = rte_pmd_dpaa_set_tx_loopback(res->port_id, is_on); 11161 #endif 11162 11163 switch (ret) { 11164 case 0: 11165 break; 11166 case -EINVAL: 11167 printf("invalid is_on %d\n", is_on); 11168 break; 11169 case -ENODEV: 11170 printf("invalid port_id %d\n", res->port_id); 11171 break; 11172 case -ENOTSUP: 11173 printf("function not implemented\n"); 11174 break; 11175 default: 11176 printf("programming error: (%s)\n", strerror(-ret)); 11177 } 11178 } 11179 11180 cmdline_parse_inst_t cmd_set_tx_loopback = { 11181 .f = cmd_set_tx_loopback_parsed, 11182 .data = NULL, 11183 .help_str = "set tx loopback <port_id> on|off", 11184 .tokens = { 11185 (void *)&cmd_tx_loopback_set, 11186 (void *)&cmd_tx_loopback_tx, 11187 (void *)&cmd_tx_loopback_loopback, 11188 (void *)&cmd_tx_loopback_port_id, 11189 (void *)&cmd_tx_loopback_on_off, 11190 NULL, 11191 }, 11192 }; 11193 11194 /* all queues drop enable configuration */ 11195 11196 /* Common result structure for all queues drop enable */ 11197 struct cmd_all_queues_drop_en_result { 11198 cmdline_fixed_string_t set; 11199 cmdline_fixed_string_t all; 11200 cmdline_fixed_string_t queues; 11201 cmdline_fixed_string_t drop; 11202 portid_t port_id; 11203 cmdline_fixed_string_t on_off; 11204 }; 11205 11206 /* Common CLI fields for tx loopback enable disable */ 11207 cmdline_parse_token_string_t cmd_all_queues_drop_en_set = 11208 TOKEN_STRING_INITIALIZER 11209 (struct cmd_all_queues_drop_en_result, 11210 set, "set"); 11211 cmdline_parse_token_string_t cmd_all_queues_drop_en_all = 11212 TOKEN_STRING_INITIALIZER 11213 (struct cmd_all_queues_drop_en_result, 11214 all, "all"); 11215 cmdline_parse_token_string_t cmd_all_queues_drop_en_queues = 11216 TOKEN_STRING_INITIALIZER 11217 (struct cmd_all_queues_drop_en_result, 11218 queues, "queues"); 11219 cmdline_parse_token_string_t cmd_all_queues_drop_en_drop = 11220 TOKEN_STRING_INITIALIZER 11221 (struct cmd_all_queues_drop_en_result, 11222 drop, "drop"); 11223 cmdline_parse_token_num_t cmd_all_queues_drop_en_port_id = 11224 TOKEN_NUM_INITIALIZER 11225 (struct cmd_all_queues_drop_en_result, 11226 port_id, RTE_UINT16); 11227 cmdline_parse_token_string_t cmd_all_queues_drop_en_on_off = 11228 TOKEN_STRING_INITIALIZER 11229 (struct cmd_all_queues_drop_en_result, 11230 on_off, "on#off"); 11231 11232 static void 11233 cmd_set_all_queues_drop_en_parsed( 11234 void *parsed_result, 11235 __rte_unused struct cmdline *cl, 11236 __rte_unused void *data) 11237 { 11238 struct cmd_all_queues_drop_en_result *res = parsed_result; 11239 int ret = -ENOTSUP; 11240 int is_on = (strcmp(res->on_off, "on") == 0) ? 1 : 0; 11241 11242 if (port_id_is_invalid(res->port_id, ENABLED_WARN)) 11243 return; 11244 11245 #ifdef RTE_NET_IXGBE 11246 if (ret == -ENOTSUP) 11247 ret = rte_pmd_ixgbe_set_all_queues_drop_en(res->port_id, is_on); 11248 #endif 11249 #ifdef RTE_NET_BNXT 11250 if (ret == -ENOTSUP) 11251 ret = rte_pmd_bnxt_set_all_queues_drop_en(res->port_id, is_on); 11252 #endif 11253 switch (ret) { 11254 case 0: 11255 break; 11256 case -EINVAL: 11257 printf("invalid is_on %d\n", is_on); 11258 break; 11259 case -ENODEV: 11260 printf("invalid port_id %d\n", res->port_id); 11261 break; 11262 case -ENOTSUP: 11263 printf("function not implemented\n"); 11264 break; 11265 default: 11266 printf("programming error: (%s)\n", strerror(-ret)); 11267 } 11268 } 11269 11270 cmdline_parse_inst_t cmd_set_all_queues_drop_en = { 11271 .f = cmd_set_all_queues_drop_en_parsed, 11272 .data = NULL, 11273 .help_str = "set all queues drop <port_id> on|off", 11274 .tokens = { 11275 (void *)&cmd_all_queues_drop_en_set, 11276 (void *)&cmd_all_queues_drop_en_all, 11277 (void *)&cmd_all_queues_drop_en_queues, 11278 (void *)&cmd_all_queues_drop_en_drop, 11279 (void *)&cmd_all_queues_drop_en_port_id, 11280 (void *)&cmd_all_queues_drop_en_on_off, 11281 NULL, 11282 }, 11283 }; 11284 11285 /* vf split drop enable configuration */ 11286 11287 /* Common result structure for vf split drop enable */ 11288 struct cmd_vf_split_drop_en_result { 11289 cmdline_fixed_string_t set; 11290 cmdline_fixed_string_t vf; 11291 cmdline_fixed_string_t split; 11292 cmdline_fixed_string_t drop; 11293 portid_t port_id; 11294 uint16_t vf_id; 11295 cmdline_fixed_string_t on_off; 11296 }; 11297 11298 /* Common CLI fields for vf split drop enable disable */ 11299 cmdline_parse_token_string_t cmd_vf_split_drop_en_set = 11300 TOKEN_STRING_INITIALIZER 11301 (struct cmd_vf_split_drop_en_result, 11302 set, "set"); 11303 cmdline_parse_token_string_t cmd_vf_split_drop_en_vf = 11304 TOKEN_STRING_INITIALIZER 11305 (struct cmd_vf_split_drop_en_result, 11306 vf, "vf"); 11307 cmdline_parse_token_string_t cmd_vf_split_drop_en_split = 11308 TOKEN_STRING_INITIALIZER 11309 (struct cmd_vf_split_drop_en_result, 11310 split, "split"); 11311 cmdline_parse_token_string_t cmd_vf_split_drop_en_drop = 11312 TOKEN_STRING_INITIALIZER 11313 (struct cmd_vf_split_drop_en_result, 11314 drop, "drop"); 11315 cmdline_parse_token_num_t cmd_vf_split_drop_en_port_id = 11316 TOKEN_NUM_INITIALIZER 11317 (struct cmd_vf_split_drop_en_result, 11318 port_id, RTE_UINT16); 11319 cmdline_parse_token_num_t cmd_vf_split_drop_en_vf_id = 11320 TOKEN_NUM_INITIALIZER 11321 (struct cmd_vf_split_drop_en_result, 11322 vf_id, RTE_UINT16); 11323 cmdline_parse_token_string_t cmd_vf_split_drop_en_on_off = 11324 TOKEN_STRING_INITIALIZER 11325 (struct cmd_vf_split_drop_en_result, 11326 on_off, "on#off"); 11327 11328 static void 11329 cmd_set_vf_split_drop_en_parsed( 11330 void *parsed_result, 11331 __rte_unused struct cmdline *cl, 11332 __rte_unused void *data) 11333 { 11334 struct cmd_vf_split_drop_en_result *res = parsed_result; 11335 int ret = -ENOTSUP; 11336 int is_on = (strcmp(res->on_off, "on") == 0) ? 1 : 0; 11337 11338 if (port_id_is_invalid(res->port_id, ENABLED_WARN)) 11339 return; 11340 11341 #ifdef RTE_NET_IXGBE 11342 ret = rte_pmd_ixgbe_set_vf_split_drop_en(res->port_id, res->vf_id, 11343 is_on); 11344 #endif 11345 switch (ret) { 11346 case 0: 11347 break; 11348 case -EINVAL: 11349 printf("invalid vf_id %d or is_on %d\n", res->vf_id, is_on); 11350 break; 11351 case -ENODEV: 11352 printf("invalid port_id %d\n", res->port_id); 11353 break; 11354 case -ENOTSUP: 11355 printf("not supported on port %d\n", res->port_id); 11356 break; 11357 default: 11358 printf("programming error: (%s)\n", strerror(-ret)); 11359 } 11360 } 11361 11362 cmdline_parse_inst_t cmd_set_vf_split_drop_en = { 11363 .f = cmd_set_vf_split_drop_en_parsed, 11364 .data = NULL, 11365 .help_str = "set vf split drop <port_id> <vf_id> on|off", 11366 .tokens = { 11367 (void *)&cmd_vf_split_drop_en_set, 11368 (void *)&cmd_vf_split_drop_en_vf, 11369 (void *)&cmd_vf_split_drop_en_split, 11370 (void *)&cmd_vf_split_drop_en_drop, 11371 (void *)&cmd_vf_split_drop_en_port_id, 11372 (void *)&cmd_vf_split_drop_en_vf_id, 11373 (void *)&cmd_vf_split_drop_en_on_off, 11374 NULL, 11375 }, 11376 }; 11377 11378 /* vf mac address configuration */ 11379 11380 /* Common result structure for vf mac address */ 11381 struct cmd_set_vf_mac_addr_result { 11382 cmdline_fixed_string_t set; 11383 cmdline_fixed_string_t vf; 11384 cmdline_fixed_string_t mac; 11385 cmdline_fixed_string_t addr; 11386 portid_t port_id; 11387 uint16_t vf_id; 11388 struct rte_ether_addr mac_addr; 11389 11390 }; 11391 11392 /* Common CLI fields for vf split drop enable disable */ 11393 cmdline_parse_token_string_t cmd_set_vf_mac_addr_set = 11394 TOKEN_STRING_INITIALIZER 11395 (struct cmd_set_vf_mac_addr_result, 11396 set, "set"); 11397 cmdline_parse_token_string_t cmd_set_vf_mac_addr_vf = 11398 TOKEN_STRING_INITIALIZER 11399 (struct cmd_set_vf_mac_addr_result, 11400 vf, "vf"); 11401 cmdline_parse_token_string_t cmd_set_vf_mac_addr_mac = 11402 TOKEN_STRING_INITIALIZER 11403 (struct cmd_set_vf_mac_addr_result, 11404 mac, "mac"); 11405 cmdline_parse_token_string_t cmd_set_vf_mac_addr_addr = 11406 TOKEN_STRING_INITIALIZER 11407 (struct cmd_set_vf_mac_addr_result, 11408 addr, "addr"); 11409 cmdline_parse_token_num_t cmd_set_vf_mac_addr_port_id = 11410 TOKEN_NUM_INITIALIZER 11411 (struct cmd_set_vf_mac_addr_result, 11412 port_id, RTE_UINT16); 11413 cmdline_parse_token_num_t cmd_set_vf_mac_addr_vf_id = 11414 TOKEN_NUM_INITIALIZER 11415 (struct cmd_set_vf_mac_addr_result, 11416 vf_id, RTE_UINT16); 11417 cmdline_parse_token_etheraddr_t cmd_set_vf_mac_addr_mac_addr = 11418 TOKEN_ETHERADDR_INITIALIZER(struct cmd_set_vf_mac_addr_result, 11419 mac_addr); 11420 11421 static void 11422 cmd_set_vf_mac_addr_parsed( 11423 void *parsed_result, 11424 __rte_unused struct cmdline *cl, 11425 __rte_unused void *data) 11426 { 11427 struct cmd_set_vf_mac_addr_result *res = parsed_result; 11428 int ret = -ENOTSUP; 11429 11430 if (port_id_is_invalid(res->port_id, ENABLED_WARN)) 11431 return; 11432 11433 #ifdef RTE_NET_IXGBE 11434 if (ret == -ENOTSUP) 11435 ret = rte_pmd_ixgbe_set_vf_mac_addr(res->port_id, res->vf_id, 11436 &res->mac_addr); 11437 #endif 11438 #ifdef RTE_NET_I40E 11439 if (ret == -ENOTSUP) 11440 ret = rte_pmd_i40e_set_vf_mac_addr(res->port_id, res->vf_id, 11441 &res->mac_addr); 11442 #endif 11443 #ifdef RTE_NET_BNXT 11444 if (ret == -ENOTSUP) 11445 ret = rte_pmd_bnxt_set_vf_mac_addr(res->port_id, res->vf_id, 11446 &res->mac_addr); 11447 #endif 11448 11449 switch (ret) { 11450 case 0: 11451 break; 11452 case -EINVAL: 11453 printf("invalid vf_id %d or mac_addr\n", res->vf_id); 11454 break; 11455 case -ENODEV: 11456 printf("invalid port_id %d\n", res->port_id); 11457 break; 11458 case -ENOTSUP: 11459 printf("function not implemented\n"); 11460 break; 11461 default: 11462 printf("programming error: (%s)\n", strerror(-ret)); 11463 } 11464 } 11465 11466 cmdline_parse_inst_t cmd_set_vf_mac_addr = { 11467 .f = cmd_set_vf_mac_addr_parsed, 11468 .data = NULL, 11469 .help_str = "set vf mac addr <port_id> <vf_id> <mac_addr>", 11470 .tokens = { 11471 (void *)&cmd_set_vf_mac_addr_set, 11472 (void *)&cmd_set_vf_mac_addr_vf, 11473 (void *)&cmd_set_vf_mac_addr_mac, 11474 (void *)&cmd_set_vf_mac_addr_addr, 11475 (void *)&cmd_set_vf_mac_addr_port_id, 11476 (void *)&cmd_set_vf_mac_addr_vf_id, 11477 (void *)&cmd_set_vf_mac_addr_mac_addr, 11478 NULL, 11479 }, 11480 }; 11481 11482 /* MACsec configuration */ 11483 11484 /* Common result structure for MACsec offload enable */ 11485 struct cmd_macsec_offload_on_result { 11486 cmdline_fixed_string_t set; 11487 cmdline_fixed_string_t macsec; 11488 cmdline_fixed_string_t offload; 11489 portid_t port_id; 11490 cmdline_fixed_string_t on; 11491 cmdline_fixed_string_t encrypt; 11492 cmdline_fixed_string_t en_on_off; 11493 cmdline_fixed_string_t replay_protect; 11494 cmdline_fixed_string_t rp_on_off; 11495 }; 11496 11497 /* Common CLI fields for MACsec offload disable */ 11498 cmdline_parse_token_string_t cmd_macsec_offload_on_set = 11499 TOKEN_STRING_INITIALIZER 11500 (struct cmd_macsec_offload_on_result, 11501 set, "set"); 11502 cmdline_parse_token_string_t cmd_macsec_offload_on_macsec = 11503 TOKEN_STRING_INITIALIZER 11504 (struct cmd_macsec_offload_on_result, 11505 macsec, "macsec"); 11506 cmdline_parse_token_string_t cmd_macsec_offload_on_offload = 11507 TOKEN_STRING_INITIALIZER 11508 (struct cmd_macsec_offload_on_result, 11509 offload, "offload"); 11510 cmdline_parse_token_num_t cmd_macsec_offload_on_port_id = 11511 TOKEN_NUM_INITIALIZER 11512 (struct cmd_macsec_offload_on_result, 11513 port_id, RTE_UINT16); 11514 cmdline_parse_token_string_t cmd_macsec_offload_on_on = 11515 TOKEN_STRING_INITIALIZER 11516 (struct cmd_macsec_offload_on_result, 11517 on, "on"); 11518 cmdline_parse_token_string_t cmd_macsec_offload_on_encrypt = 11519 TOKEN_STRING_INITIALIZER 11520 (struct cmd_macsec_offload_on_result, 11521 encrypt, "encrypt"); 11522 cmdline_parse_token_string_t cmd_macsec_offload_on_en_on_off = 11523 TOKEN_STRING_INITIALIZER 11524 (struct cmd_macsec_offload_on_result, 11525 en_on_off, "on#off"); 11526 cmdline_parse_token_string_t cmd_macsec_offload_on_replay_protect = 11527 TOKEN_STRING_INITIALIZER 11528 (struct cmd_macsec_offload_on_result, 11529 replay_protect, "replay-protect"); 11530 cmdline_parse_token_string_t cmd_macsec_offload_on_rp_on_off = 11531 TOKEN_STRING_INITIALIZER 11532 (struct cmd_macsec_offload_on_result, 11533 rp_on_off, "on#off"); 11534 11535 static void 11536 cmd_set_macsec_offload_on_parsed( 11537 void *parsed_result, 11538 __rte_unused struct cmdline *cl, 11539 __rte_unused void *data) 11540 { 11541 struct cmd_macsec_offload_on_result *res = parsed_result; 11542 int ret = -ENOTSUP; 11543 portid_t port_id = res->port_id; 11544 int en = (strcmp(res->en_on_off, "on") == 0) ? 1 : 0; 11545 int rp = (strcmp(res->rp_on_off, "on") == 0) ? 1 : 0; 11546 struct rte_eth_dev_info dev_info; 11547 11548 if (port_id_is_invalid(port_id, ENABLED_WARN)) 11549 return; 11550 if (!port_is_stopped(port_id)) { 11551 printf("Please stop port %d first\n", port_id); 11552 return; 11553 } 11554 11555 ret = eth_dev_info_get_print_err(port_id, &dev_info); 11556 if (ret != 0) 11557 return; 11558 11559 if (dev_info.tx_offload_capa & DEV_TX_OFFLOAD_MACSEC_INSERT) { 11560 #ifdef RTE_NET_IXGBE 11561 ret = rte_pmd_ixgbe_macsec_enable(port_id, en, rp); 11562 #endif 11563 } 11564 RTE_SET_USED(en); 11565 RTE_SET_USED(rp); 11566 11567 switch (ret) { 11568 case 0: 11569 ports[port_id].dev_conf.txmode.offloads |= 11570 DEV_TX_OFFLOAD_MACSEC_INSERT; 11571 cmd_reconfig_device_queue(port_id, 1, 1); 11572 break; 11573 case -ENODEV: 11574 printf("invalid port_id %d\n", port_id); 11575 break; 11576 case -ENOTSUP: 11577 printf("not supported on port %d\n", port_id); 11578 break; 11579 default: 11580 printf("programming error: (%s)\n", strerror(-ret)); 11581 } 11582 } 11583 11584 cmdline_parse_inst_t cmd_set_macsec_offload_on = { 11585 .f = cmd_set_macsec_offload_on_parsed, 11586 .data = NULL, 11587 .help_str = "set macsec offload <port_id> on " 11588 "encrypt on|off replay-protect on|off", 11589 .tokens = { 11590 (void *)&cmd_macsec_offload_on_set, 11591 (void *)&cmd_macsec_offload_on_macsec, 11592 (void *)&cmd_macsec_offload_on_offload, 11593 (void *)&cmd_macsec_offload_on_port_id, 11594 (void *)&cmd_macsec_offload_on_on, 11595 (void *)&cmd_macsec_offload_on_encrypt, 11596 (void *)&cmd_macsec_offload_on_en_on_off, 11597 (void *)&cmd_macsec_offload_on_replay_protect, 11598 (void *)&cmd_macsec_offload_on_rp_on_off, 11599 NULL, 11600 }, 11601 }; 11602 11603 /* Common result structure for MACsec offload disable */ 11604 struct cmd_macsec_offload_off_result { 11605 cmdline_fixed_string_t set; 11606 cmdline_fixed_string_t macsec; 11607 cmdline_fixed_string_t offload; 11608 portid_t port_id; 11609 cmdline_fixed_string_t off; 11610 }; 11611 11612 /* Common CLI fields for MACsec offload disable */ 11613 cmdline_parse_token_string_t cmd_macsec_offload_off_set = 11614 TOKEN_STRING_INITIALIZER 11615 (struct cmd_macsec_offload_off_result, 11616 set, "set"); 11617 cmdline_parse_token_string_t cmd_macsec_offload_off_macsec = 11618 TOKEN_STRING_INITIALIZER 11619 (struct cmd_macsec_offload_off_result, 11620 macsec, "macsec"); 11621 cmdline_parse_token_string_t cmd_macsec_offload_off_offload = 11622 TOKEN_STRING_INITIALIZER 11623 (struct cmd_macsec_offload_off_result, 11624 offload, "offload"); 11625 cmdline_parse_token_num_t cmd_macsec_offload_off_port_id = 11626 TOKEN_NUM_INITIALIZER 11627 (struct cmd_macsec_offload_off_result, 11628 port_id, RTE_UINT16); 11629 cmdline_parse_token_string_t cmd_macsec_offload_off_off = 11630 TOKEN_STRING_INITIALIZER 11631 (struct cmd_macsec_offload_off_result, 11632 off, "off"); 11633 11634 static void 11635 cmd_set_macsec_offload_off_parsed( 11636 void *parsed_result, 11637 __rte_unused struct cmdline *cl, 11638 __rte_unused void *data) 11639 { 11640 struct cmd_macsec_offload_off_result *res = parsed_result; 11641 int ret = -ENOTSUP; 11642 struct rte_eth_dev_info dev_info; 11643 portid_t port_id = res->port_id; 11644 11645 if (port_id_is_invalid(port_id, ENABLED_WARN)) 11646 return; 11647 if (!port_is_stopped(port_id)) { 11648 printf("Please stop port %d first\n", port_id); 11649 return; 11650 } 11651 11652 ret = eth_dev_info_get_print_err(port_id, &dev_info); 11653 if (ret != 0) 11654 return; 11655 11656 if (dev_info.tx_offload_capa & DEV_TX_OFFLOAD_MACSEC_INSERT) { 11657 #ifdef RTE_NET_IXGBE 11658 ret = rte_pmd_ixgbe_macsec_disable(port_id); 11659 #endif 11660 } 11661 switch (ret) { 11662 case 0: 11663 ports[port_id].dev_conf.txmode.offloads &= 11664 ~DEV_TX_OFFLOAD_MACSEC_INSERT; 11665 cmd_reconfig_device_queue(port_id, 1, 1); 11666 break; 11667 case -ENODEV: 11668 printf("invalid port_id %d\n", port_id); 11669 break; 11670 case -ENOTSUP: 11671 printf("not supported on port %d\n", port_id); 11672 break; 11673 default: 11674 printf("programming error: (%s)\n", strerror(-ret)); 11675 } 11676 } 11677 11678 cmdline_parse_inst_t cmd_set_macsec_offload_off = { 11679 .f = cmd_set_macsec_offload_off_parsed, 11680 .data = NULL, 11681 .help_str = "set macsec offload <port_id> off", 11682 .tokens = { 11683 (void *)&cmd_macsec_offload_off_set, 11684 (void *)&cmd_macsec_offload_off_macsec, 11685 (void *)&cmd_macsec_offload_off_offload, 11686 (void *)&cmd_macsec_offload_off_port_id, 11687 (void *)&cmd_macsec_offload_off_off, 11688 NULL, 11689 }, 11690 }; 11691 11692 /* Common result structure for MACsec secure connection configure */ 11693 struct cmd_macsec_sc_result { 11694 cmdline_fixed_string_t set; 11695 cmdline_fixed_string_t macsec; 11696 cmdline_fixed_string_t sc; 11697 cmdline_fixed_string_t tx_rx; 11698 portid_t port_id; 11699 struct rte_ether_addr mac; 11700 uint16_t pi; 11701 }; 11702 11703 /* Common CLI fields for MACsec secure connection configure */ 11704 cmdline_parse_token_string_t cmd_macsec_sc_set = 11705 TOKEN_STRING_INITIALIZER 11706 (struct cmd_macsec_sc_result, 11707 set, "set"); 11708 cmdline_parse_token_string_t cmd_macsec_sc_macsec = 11709 TOKEN_STRING_INITIALIZER 11710 (struct cmd_macsec_sc_result, 11711 macsec, "macsec"); 11712 cmdline_parse_token_string_t cmd_macsec_sc_sc = 11713 TOKEN_STRING_INITIALIZER 11714 (struct cmd_macsec_sc_result, 11715 sc, "sc"); 11716 cmdline_parse_token_string_t cmd_macsec_sc_tx_rx = 11717 TOKEN_STRING_INITIALIZER 11718 (struct cmd_macsec_sc_result, 11719 tx_rx, "tx#rx"); 11720 cmdline_parse_token_num_t cmd_macsec_sc_port_id = 11721 TOKEN_NUM_INITIALIZER 11722 (struct cmd_macsec_sc_result, 11723 port_id, RTE_UINT16); 11724 cmdline_parse_token_etheraddr_t cmd_macsec_sc_mac = 11725 TOKEN_ETHERADDR_INITIALIZER 11726 (struct cmd_macsec_sc_result, 11727 mac); 11728 cmdline_parse_token_num_t cmd_macsec_sc_pi = 11729 TOKEN_NUM_INITIALIZER 11730 (struct cmd_macsec_sc_result, 11731 pi, RTE_UINT16); 11732 11733 static void 11734 cmd_set_macsec_sc_parsed( 11735 void *parsed_result, 11736 __rte_unused struct cmdline *cl, 11737 __rte_unused void *data) 11738 { 11739 struct cmd_macsec_sc_result *res = parsed_result; 11740 int ret = -ENOTSUP; 11741 int is_tx = (strcmp(res->tx_rx, "tx") == 0) ? 1 : 0; 11742 11743 #ifdef RTE_NET_IXGBE 11744 ret = is_tx ? 11745 rte_pmd_ixgbe_macsec_config_txsc(res->port_id, 11746 res->mac.addr_bytes) : 11747 rte_pmd_ixgbe_macsec_config_rxsc(res->port_id, 11748 res->mac.addr_bytes, res->pi); 11749 #endif 11750 RTE_SET_USED(is_tx); 11751 11752 switch (ret) { 11753 case 0: 11754 break; 11755 case -ENODEV: 11756 printf("invalid port_id %d\n", res->port_id); 11757 break; 11758 case -ENOTSUP: 11759 printf("not supported on port %d\n", res->port_id); 11760 break; 11761 default: 11762 printf("programming error: (%s)\n", strerror(-ret)); 11763 } 11764 } 11765 11766 cmdline_parse_inst_t cmd_set_macsec_sc = { 11767 .f = cmd_set_macsec_sc_parsed, 11768 .data = NULL, 11769 .help_str = "set macsec sc tx|rx <port_id> <mac> <pi>", 11770 .tokens = { 11771 (void *)&cmd_macsec_sc_set, 11772 (void *)&cmd_macsec_sc_macsec, 11773 (void *)&cmd_macsec_sc_sc, 11774 (void *)&cmd_macsec_sc_tx_rx, 11775 (void *)&cmd_macsec_sc_port_id, 11776 (void *)&cmd_macsec_sc_mac, 11777 (void *)&cmd_macsec_sc_pi, 11778 NULL, 11779 }, 11780 }; 11781 11782 /* Common result structure for MACsec secure connection configure */ 11783 struct cmd_macsec_sa_result { 11784 cmdline_fixed_string_t set; 11785 cmdline_fixed_string_t macsec; 11786 cmdline_fixed_string_t sa; 11787 cmdline_fixed_string_t tx_rx; 11788 portid_t port_id; 11789 uint8_t idx; 11790 uint8_t an; 11791 uint32_t pn; 11792 cmdline_fixed_string_t key; 11793 }; 11794 11795 /* Common CLI fields for MACsec secure connection configure */ 11796 cmdline_parse_token_string_t cmd_macsec_sa_set = 11797 TOKEN_STRING_INITIALIZER 11798 (struct cmd_macsec_sa_result, 11799 set, "set"); 11800 cmdline_parse_token_string_t cmd_macsec_sa_macsec = 11801 TOKEN_STRING_INITIALIZER 11802 (struct cmd_macsec_sa_result, 11803 macsec, "macsec"); 11804 cmdline_parse_token_string_t cmd_macsec_sa_sa = 11805 TOKEN_STRING_INITIALIZER 11806 (struct cmd_macsec_sa_result, 11807 sa, "sa"); 11808 cmdline_parse_token_string_t cmd_macsec_sa_tx_rx = 11809 TOKEN_STRING_INITIALIZER 11810 (struct cmd_macsec_sa_result, 11811 tx_rx, "tx#rx"); 11812 cmdline_parse_token_num_t cmd_macsec_sa_port_id = 11813 TOKEN_NUM_INITIALIZER 11814 (struct cmd_macsec_sa_result, 11815 port_id, RTE_UINT16); 11816 cmdline_parse_token_num_t cmd_macsec_sa_idx = 11817 TOKEN_NUM_INITIALIZER 11818 (struct cmd_macsec_sa_result, 11819 idx, RTE_UINT8); 11820 cmdline_parse_token_num_t cmd_macsec_sa_an = 11821 TOKEN_NUM_INITIALIZER 11822 (struct cmd_macsec_sa_result, 11823 an, RTE_UINT8); 11824 cmdline_parse_token_num_t cmd_macsec_sa_pn = 11825 TOKEN_NUM_INITIALIZER 11826 (struct cmd_macsec_sa_result, 11827 pn, RTE_UINT32); 11828 cmdline_parse_token_string_t cmd_macsec_sa_key = 11829 TOKEN_STRING_INITIALIZER 11830 (struct cmd_macsec_sa_result, 11831 key, NULL); 11832 11833 static void 11834 cmd_set_macsec_sa_parsed( 11835 void *parsed_result, 11836 __rte_unused struct cmdline *cl, 11837 __rte_unused void *data) 11838 { 11839 struct cmd_macsec_sa_result *res = parsed_result; 11840 int ret = -ENOTSUP; 11841 int is_tx = (strcmp(res->tx_rx, "tx") == 0) ? 1 : 0; 11842 uint8_t key[16] = { 0 }; 11843 uint8_t xdgt0; 11844 uint8_t xdgt1; 11845 int key_len; 11846 int i; 11847 11848 key_len = strlen(res->key) / 2; 11849 if (key_len > 16) 11850 key_len = 16; 11851 11852 for (i = 0; i < key_len; i++) { 11853 xdgt0 = parse_and_check_key_hexa_digit(res->key, (i * 2)); 11854 if (xdgt0 == 0xFF) 11855 return; 11856 xdgt1 = parse_and_check_key_hexa_digit(res->key, (i * 2) + 1); 11857 if (xdgt1 == 0xFF) 11858 return; 11859 key[i] = (uint8_t) ((xdgt0 * 16) + xdgt1); 11860 } 11861 11862 #ifdef RTE_NET_IXGBE 11863 ret = is_tx ? 11864 rte_pmd_ixgbe_macsec_select_txsa(res->port_id, 11865 res->idx, res->an, res->pn, key) : 11866 rte_pmd_ixgbe_macsec_select_rxsa(res->port_id, 11867 res->idx, res->an, res->pn, key); 11868 #endif 11869 RTE_SET_USED(is_tx); 11870 RTE_SET_USED(key); 11871 11872 switch (ret) { 11873 case 0: 11874 break; 11875 case -EINVAL: 11876 printf("invalid idx %d or an %d\n", res->idx, res->an); 11877 break; 11878 case -ENODEV: 11879 printf("invalid port_id %d\n", res->port_id); 11880 break; 11881 case -ENOTSUP: 11882 printf("not supported on port %d\n", res->port_id); 11883 break; 11884 default: 11885 printf("programming error: (%s)\n", strerror(-ret)); 11886 } 11887 } 11888 11889 cmdline_parse_inst_t cmd_set_macsec_sa = { 11890 .f = cmd_set_macsec_sa_parsed, 11891 .data = NULL, 11892 .help_str = "set macsec sa tx|rx <port_id> <idx> <an> <pn> <key>", 11893 .tokens = { 11894 (void *)&cmd_macsec_sa_set, 11895 (void *)&cmd_macsec_sa_macsec, 11896 (void *)&cmd_macsec_sa_sa, 11897 (void *)&cmd_macsec_sa_tx_rx, 11898 (void *)&cmd_macsec_sa_port_id, 11899 (void *)&cmd_macsec_sa_idx, 11900 (void *)&cmd_macsec_sa_an, 11901 (void *)&cmd_macsec_sa_pn, 11902 (void *)&cmd_macsec_sa_key, 11903 NULL, 11904 }, 11905 }; 11906 11907 /* VF unicast promiscuous mode configuration */ 11908 11909 /* Common result structure for VF unicast promiscuous mode */ 11910 struct cmd_vf_promisc_result { 11911 cmdline_fixed_string_t set; 11912 cmdline_fixed_string_t vf; 11913 cmdline_fixed_string_t promisc; 11914 portid_t port_id; 11915 uint32_t vf_id; 11916 cmdline_fixed_string_t on_off; 11917 }; 11918 11919 /* Common CLI fields for VF unicast promiscuous mode enable disable */ 11920 cmdline_parse_token_string_t cmd_vf_promisc_set = 11921 TOKEN_STRING_INITIALIZER 11922 (struct cmd_vf_promisc_result, 11923 set, "set"); 11924 cmdline_parse_token_string_t cmd_vf_promisc_vf = 11925 TOKEN_STRING_INITIALIZER 11926 (struct cmd_vf_promisc_result, 11927 vf, "vf"); 11928 cmdline_parse_token_string_t cmd_vf_promisc_promisc = 11929 TOKEN_STRING_INITIALIZER 11930 (struct cmd_vf_promisc_result, 11931 promisc, "promisc"); 11932 cmdline_parse_token_num_t cmd_vf_promisc_port_id = 11933 TOKEN_NUM_INITIALIZER 11934 (struct cmd_vf_promisc_result, 11935 port_id, RTE_UINT16); 11936 cmdline_parse_token_num_t cmd_vf_promisc_vf_id = 11937 TOKEN_NUM_INITIALIZER 11938 (struct cmd_vf_promisc_result, 11939 vf_id, RTE_UINT32); 11940 cmdline_parse_token_string_t cmd_vf_promisc_on_off = 11941 TOKEN_STRING_INITIALIZER 11942 (struct cmd_vf_promisc_result, 11943 on_off, "on#off"); 11944 11945 static void 11946 cmd_set_vf_promisc_parsed( 11947 void *parsed_result, 11948 __rte_unused struct cmdline *cl, 11949 __rte_unused void *data) 11950 { 11951 struct cmd_vf_promisc_result *res = parsed_result; 11952 int ret = -ENOTSUP; 11953 11954 __rte_unused int is_on = (strcmp(res->on_off, "on") == 0) ? 1 : 0; 11955 11956 if (port_id_is_invalid(res->port_id, ENABLED_WARN)) 11957 return; 11958 11959 #ifdef RTE_NET_I40E 11960 ret = rte_pmd_i40e_set_vf_unicast_promisc(res->port_id, 11961 res->vf_id, is_on); 11962 #endif 11963 11964 switch (ret) { 11965 case 0: 11966 break; 11967 case -EINVAL: 11968 printf("invalid vf_id %d\n", res->vf_id); 11969 break; 11970 case -ENODEV: 11971 printf("invalid port_id %d\n", res->port_id); 11972 break; 11973 case -ENOTSUP: 11974 printf("function not implemented\n"); 11975 break; 11976 default: 11977 printf("programming error: (%s)\n", strerror(-ret)); 11978 } 11979 } 11980 11981 cmdline_parse_inst_t cmd_set_vf_promisc = { 11982 .f = cmd_set_vf_promisc_parsed, 11983 .data = NULL, 11984 .help_str = "set vf promisc <port_id> <vf_id> on|off: " 11985 "Set unicast promiscuous mode for a VF from the PF", 11986 .tokens = { 11987 (void *)&cmd_vf_promisc_set, 11988 (void *)&cmd_vf_promisc_vf, 11989 (void *)&cmd_vf_promisc_promisc, 11990 (void *)&cmd_vf_promisc_port_id, 11991 (void *)&cmd_vf_promisc_vf_id, 11992 (void *)&cmd_vf_promisc_on_off, 11993 NULL, 11994 }, 11995 }; 11996 11997 /* VF multicast promiscuous mode configuration */ 11998 11999 /* Common result structure for VF multicast promiscuous mode */ 12000 struct cmd_vf_allmulti_result { 12001 cmdline_fixed_string_t set; 12002 cmdline_fixed_string_t vf; 12003 cmdline_fixed_string_t allmulti; 12004 portid_t port_id; 12005 uint32_t vf_id; 12006 cmdline_fixed_string_t on_off; 12007 }; 12008 12009 /* Common CLI fields for VF multicast promiscuous mode enable disable */ 12010 cmdline_parse_token_string_t cmd_vf_allmulti_set = 12011 TOKEN_STRING_INITIALIZER 12012 (struct cmd_vf_allmulti_result, 12013 set, "set"); 12014 cmdline_parse_token_string_t cmd_vf_allmulti_vf = 12015 TOKEN_STRING_INITIALIZER 12016 (struct cmd_vf_allmulti_result, 12017 vf, "vf"); 12018 cmdline_parse_token_string_t cmd_vf_allmulti_allmulti = 12019 TOKEN_STRING_INITIALIZER 12020 (struct cmd_vf_allmulti_result, 12021 allmulti, "allmulti"); 12022 cmdline_parse_token_num_t cmd_vf_allmulti_port_id = 12023 TOKEN_NUM_INITIALIZER 12024 (struct cmd_vf_allmulti_result, 12025 port_id, RTE_UINT16); 12026 cmdline_parse_token_num_t cmd_vf_allmulti_vf_id = 12027 TOKEN_NUM_INITIALIZER 12028 (struct cmd_vf_allmulti_result, 12029 vf_id, RTE_UINT32); 12030 cmdline_parse_token_string_t cmd_vf_allmulti_on_off = 12031 TOKEN_STRING_INITIALIZER 12032 (struct cmd_vf_allmulti_result, 12033 on_off, "on#off"); 12034 12035 static void 12036 cmd_set_vf_allmulti_parsed( 12037 void *parsed_result, 12038 __rte_unused struct cmdline *cl, 12039 __rte_unused void *data) 12040 { 12041 struct cmd_vf_allmulti_result *res = parsed_result; 12042 int ret = -ENOTSUP; 12043 12044 __rte_unused int is_on = (strcmp(res->on_off, "on") == 0) ? 1 : 0; 12045 12046 if (port_id_is_invalid(res->port_id, ENABLED_WARN)) 12047 return; 12048 12049 #ifdef RTE_NET_I40E 12050 ret = rte_pmd_i40e_set_vf_multicast_promisc(res->port_id, 12051 res->vf_id, is_on); 12052 #endif 12053 12054 switch (ret) { 12055 case 0: 12056 break; 12057 case -EINVAL: 12058 printf("invalid vf_id %d\n", res->vf_id); 12059 break; 12060 case -ENODEV: 12061 printf("invalid port_id %d\n", res->port_id); 12062 break; 12063 case -ENOTSUP: 12064 printf("function not implemented\n"); 12065 break; 12066 default: 12067 printf("programming error: (%s)\n", strerror(-ret)); 12068 } 12069 } 12070 12071 cmdline_parse_inst_t cmd_set_vf_allmulti = { 12072 .f = cmd_set_vf_allmulti_parsed, 12073 .data = NULL, 12074 .help_str = "set vf allmulti <port_id> <vf_id> on|off: " 12075 "Set multicast promiscuous mode for a VF from the PF", 12076 .tokens = { 12077 (void *)&cmd_vf_allmulti_set, 12078 (void *)&cmd_vf_allmulti_vf, 12079 (void *)&cmd_vf_allmulti_allmulti, 12080 (void *)&cmd_vf_allmulti_port_id, 12081 (void *)&cmd_vf_allmulti_vf_id, 12082 (void *)&cmd_vf_allmulti_on_off, 12083 NULL, 12084 }, 12085 }; 12086 12087 /* vf broadcast mode configuration */ 12088 12089 /* Common result structure for vf broadcast */ 12090 struct cmd_set_vf_broadcast_result { 12091 cmdline_fixed_string_t set; 12092 cmdline_fixed_string_t vf; 12093 cmdline_fixed_string_t broadcast; 12094 portid_t port_id; 12095 uint16_t vf_id; 12096 cmdline_fixed_string_t on_off; 12097 }; 12098 12099 /* Common CLI fields for vf broadcast enable disable */ 12100 cmdline_parse_token_string_t cmd_set_vf_broadcast_set = 12101 TOKEN_STRING_INITIALIZER 12102 (struct cmd_set_vf_broadcast_result, 12103 set, "set"); 12104 cmdline_parse_token_string_t cmd_set_vf_broadcast_vf = 12105 TOKEN_STRING_INITIALIZER 12106 (struct cmd_set_vf_broadcast_result, 12107 vf, "vf"); 12108 cmdline_parse_token_string_t cmd_set_vf_broadcast_broadcast = 12109 TOKEN_STRING_INITIALIZER 12110 (struct cmd_set_vf_broadcast_result, 12111 broadcast, "broadcast"); 12112 cmdline_parse_token_num_t cmd_set_vf_broadcast_port_id = 12113 TOKEN_NUM_INITIALIZER 12114 (struct cmd_set_vf_broadcast_result, 12115 port_id, RTE_UINT16); 12116 cmdline_parse_token_num_t cmd_set_vf_broadcast_vf_id = 12117 TOKEN_NUM_INITIALIZER 12118 (struct cmd_set_vf_broadcast_result, 12119 vf_id, RTE_UINT16); 12120 cmdline_parse_token_string_t cmd_set_vf_broadcast_on_off = 12121 TOKEN_STRING_INITIALIZER 12122 (struct cmd_set_vf_broadcast_result, 12123 on_off, "on#off"); 12124 12125 static void 12126 cmd_set_vf_broadcast_parsed( 12127 void *parsed_result, 12128 __rte_unused struct cmdline *cl, 12129 __rte_unused void *data) 12130 { 12131 struct cmd_set_vf_broadcast_result *res = parsed_result; 12132 int ret = -ENOTSUP; 12133 12134 __rte_unused int is_on = (strcmp(res->on_off, "on") == 0) ? 1 : 0; 12135 12136 if (port_id_is_invalid(res->port_id, ENABLED_WARN)) 12137 return; 12138 12139 #ifdef RTE_NET_I40E 12140 ret = rte_pmd_i40e_set_vf_broadcast(res->port_id, 12141 res->vf_id, is_on); 12142 #endif 12143 12144 switch (ret) { 12145 case 0: 12146 break; 12147 case -EINVAL: 12148 printf("invalid vf_id %d or is_on %d\n", res->vf_id, is_on); 12149 break; 12150 case -ENODEV: 12151 printf("invalid port_id %d\n", res->port_id); 12152 break; 12153 case -ENOTSUP: 12154 printf("function not implemented\n"); 12155 break; 12156 default: 12157 printf("programming error: (%s)\n", strerror(-ret)); 12158 } 12159 } 12160 12161 cmdline_parse_inst_t cmd_set_vf_broadcast = { 12162 .f = cmd_set_vf_broadcast_parsed, 12163 .data = NULL, 12164 .help_str = "set vf broadcast <port_id> <vf_id> on|off", 12165 .tokens = { 12166 (void *)&cmd_set_vf_broadcast_set, 12167 (void *)&cmd_set_vf_broadcast_vf, 12168 (void *)&cmd_set_vf_broadcast_broadcast, 12169 (void *)&cmd_set_vf_broadcast_port_id, 12170 (void *)&cmd_set_vf_broadcast_vf_id, 12171 (void *)&cmd_set_vf_broadcast_on_off, 12172 NULL, 12173 }, 12174 }; 12175 12176 /* vf vlan tag configuration */ 12177 12178 /* Common result structure for vf vlan tag */ 12179 struct cmd_set_vf_vlan_tag_result { 12180 cmdline_fixed_string_t set; 12181 cmdline_fixed_string_t vf; 12182 cmdline_fixed_string_t vlan; 12183 cmdline_fixed_string_t tag; 12184 portid_t port_id; 12185 uint16_t vf_id; 12186 cmdline_fixed_string_t on_off; 12187 }; 12188 12189 /* Common CLI fields for vf vlan tag enable disable */ 12190 cmdline_parse_token_string_t cmd_set_vf_vlan_tag_set = 12191 TOKEN_STRING_INITIALIZER 12192 (struct cmd_set_vf_vlan_tag_result, 12193 set, "set"); 12194 cmdline_parse_token_string_t cmd_set_vf_vlan_tag_vf = 12195 TOKEN_STRING_INITIALIZER 12196 (struct cmd_set_vf_vlan_tag_result, 12197 vf, "vf"); 12198 cmdline_parse_token_string_t cmd_set_vf_vlan_tag_vlan = 12199 TOKEN_STRING_INITIALIZER 12200 (struct cmd_set_vf_vlan_tag_result, 12201 vlan, "vlan"); 12202 cmdline_parse_token_string_t cmd_set_vf_vlan_tag_tag = 12203 TOKEN_STRING_INITIALIZER 12204 (struct cmd_set_vf_vlan_tag_result, 12205 tag, "tag"); 12206 cmdline_parse_token_num_t cmd_set_vf_vlan_tag_port_id = 12207 TOKEN_NUM_INITIALIZER 12208 (struct cmd_set_vf_vlan_tag_result, 12209 port_id, RTE_UINT16); 12210 cmdline_parse_token_num_t cmd_set_vf_vlan_tag_vf_id = 12211 TOKEN_NUM_INITIALIZER 12212 (struct cmd_set_vf_vlan_tag_result, 12213 vf_id, RTE_UINT16); 12214 cmdline_parse_token_string_t cmd_set_vf_vlan_tag_on_off = 12215 TOKEN_STRING_INITIALIZER 12216 (struct cmd_set_vf_vlan_tag_result, 12217 on_off, "on#off"); 12218 12219 static void 12220 cmd_set_vf_vlan_tag_parsed( 12221 void *parsed_result, 12222 __rte_unused struct cmdline *cl, 12223 __rte_unused void *data) 12224 { 12225 struct cmd_set_vf_vlan_tag_result *res = parsed_result; 12226 int ret = -ENOTSUP; 12227 12228 __rte_unused int is_on = (strcmp(res->on_off, "on") == 0) ? 1 : 0; 12229 12230 if (port_id_is_invalid(res->port_id, ENABLED_WARN)) 12231 return; 12232 12233 #ifdef RTE_NET_I40E 12234 ret = rte_pmd_i40e_set_vf_vlan_tag(res->port_id, 12235 res->vf_id, is_on); 12236 #endif 12237 12238 switch (ret) { 12239 case 0: 12240 break; 12241 case -EINVAL: 12242 printf("invalid vf_id %d or is_on %d\n", res->vf_id, is_on); 12243 break; 12244 case -ENODEV: 12245 printf("invalid port_id %d\n", res->port_id); 12246 break; 12247 case -ENOTSUP: 12248 printf("function not implemented\n"); 12249 break; 12250 default: 12251 printf("programming error: (%s)\n", strerror(-ret)); 12252 } 12253 } 12254 12255 cmdline_parse_inst_t cmd_set_vf_vlan_tag = { 12256 .f = cmd_set_vf_vlan_tag_parsed, 12257 .data = NULL, 12258 .help_str = "set vf vlan tag <port_id> <vf_id> on|off", 12259 .tokens = { 12260 (void *)&cmd_set_vf_vlan_tag_set, 12261 (void *)&cmd_set_vf_vlan_tag_vf, 12262 (void *)&cmd_set_vf_vlan_tag_vlan, 12263 (void *)&cmd_set_vf_vlan_tag_tag, 12264 (void *)&cmd_set_vf_vlan_tag_port_id, 12265 (void *)&cmd_set_vf_vlan_tag_vf_id, 12266 (void *)&cmd_set_vf_vlan_tag_on_off, 12267 NULL, 12268 }, 12269 }; 12270 12271 /* Common definition of VF and TC TX bandwidth configuration */ 12272 struct cmd_vf_tc_bw_result { 12273 cmdline_fixed_string_t set; 12274 cmdline_fixed_string_t vf; 12275 cmdline_fixed_string_t tc; 12276 cmdline_fixed_string_t tx; 12277 cmdline_fixed_string_t min_bw; 12278 cmdline_fixed_string_t max_bw; 12279 cmdline_fixed_string_t strict_link_prio; 12280 portid_t port_id; 12281 uint16_t vf_id; 12282 uint8_t tc_no; 12283 uint32_t bw; 12284 cmdline_fixed_string_t bw_list; 12285 uint8_t tc_map; 12286 }; 12287 12288 cmdline_parse_token_string_t cmd_vf_tc_bw_set = 12289 TOKEN_STRING_INITIALIZER 12290 (struct cmd_vf_tc_bw_result, 12291 set, "set"); 12292 cmdline_parse_token_string_t cmd_vf_tc_bw_vf = 12293 TOKEN_STRING_INITIALIZER 12294 (struct cmd_vf_tc_bw_result, 12295 vf, "vf"); 12296 cmdline_parse_token_string_t cmd_vf_tc_bw_tc = 12297 TOKEN_STRING_INITIALIZER 12298 (struct cmd_vf_tc_bw_result, 12299 tc, "tc"); 12300 cmdline_parse_token_string_t cmd_vf_tc_bw_tx = 12301 TOKEN_STRING_INITIALIZER 12302 (struct cmd_vf_tc_bw_result, 12303 tx, "tx"); 12304 cmdline_parse_token_string_t cmd_vf_tc_bw_strict_link_prio = 12305 TOKEN_STRING_INITIALIZER 12306 (struct cmd_vf_tc_bw_result, 12307 strict_link_prio, "strict-link-priority"); 12308 cmdline_parse_token_string_t cmd_vf_tc_bw_min_bw = 12309 TOKEN_STRING_INITIALIZER 12310 (struct cmd_vf_tc_bw_result, 12311 min_bw, "min-bandwidth"); 12312 cmdline_parse_token_string_t cmd_vf_tc_bw_max_bw = 12313 TOKEN_STRING_INITIALIZER 12314 (struct cmd_vf_tc_bw_result, 12315 max_bw, "max-bandwidth"); 12316 cmdline_parse_token_num_t cmd_vf_tc_bw_port_id = 12317 TOKEN_NUM_INITIALIZER 12318 (struct cmd_vf_tc_bw_result, 12319 port_id, RTE_UINT16); 12320 cmdline_parse_token_num_t cmd_vf_tc_bw_vf_id = 12321 TOKEN_NUM_INITIALIZER 12322 (struct cmd_vf_tc_bw_result, 12323 vf_id, RTE_UINT16); 12324 cmdline_parse_token_num_t cmd_vf_tc_bw_tc_no = 12325 TOKEN_NUM_INITIALIZER 12326 (struct cmd_vf_tc_bw_result, 12327 tc_no, RTE_UINT8); 12328 cmdline_parse_token_num_t cmd_vf_tc_bw_bw = 12329 TOKEN_NUM_INITIALIZER 12330 (struct cmd_vf_tc_bw_result, 12331 bw, RTE_UINT32); 12332 cmdline_parse_token_string_t cmd_vf_tc_bw_bw_list = 12333 TOKEN_STRING_INITIALIZER 12334 (struct cmd_vf_tc_bw_result, 12335 bw_list, NULL); 12336 cmdline_parse_token_num_t cmd_vf_tc_bw_tc_map = 12337 TOKEN_NUM_INITIALIZER 12338 (struct cmd_vf_tc_bw_result, 12339 tc_map, RTE_UINT8); 12340 12341 /* VF max bandwidth setting */ 12342 static void 12343 cmd_vf_max_bw_parsed( 12344 void *parsed_result, 12345 __rte_unused struct cmdline *cl, 12346 __rte_unused void *data) 12347 { 12348 struct cmd_vf_tc_bw_result *res = parsed_result; 12349 int ret = -ENOTSUP; 12350 12351 if (port_id_is_invalid(res->port_id, ENABLED_WARN)) 12352 return; 12353 12354 #ifdef RTE_NET_I40E 12355 ret = rte_pmd_i40e_set_vf_max_bw(res->port_id, 12356 res->vf_id, res->bw); 12357 #endif 12358 12359 switch (ret) { 12360 case 0: 12361 break; 12362 case -EINVAL: 12363 printf("invalid vf_id %d or bandwidth %d\n", 12364 res->vf_id, res->bw); 12365 break; 12366 case -ENODEV: 12367 printf("invalid port_id %d\n", res->port_id); 12368 break; 12369 case -ENOTSUP: 12370 printf("function not implemented\n"); 12371 break; 12372 default: 12373 printf("programming error: (%s)\n", strerror(-ret)); 12374 } 12375 } 12376 12377 cmdline_parse_inst_t cmd_vf_max_bw = { 12378 .f = cmd_vf_max_bw_parsed, 12379 .data = NULL, 12380 .help_str = "set vf tx max-bandwidth <port_id> <vf_id> <bandwidth>", 12381 .tokens = { 12382 (void *)&cmd_vf_tc_bw_set, 12383 (void *)&cmd_vf_tc_bw_vf, 12384 (void *)&cmd_vf_tc_bw_tx, 12385 (void *)&cmd_vf_tc_bw_max_bw, 12386 (void *)&cmd_vf_tc_bw_port_id, 12387 (void *)&cmd_vf_tc_bw_vf_id, 12388 (void *)&cmd_vf_tc_bw_bw, 12389 NULL, 12390 }, 12391 }; 12392 12393 static int 12394 vf_tc_min_bw_parse_bw_list(uint8_t *bw_list, 12395 uint8_t *tc_num, 12396 char *str) 12397 { 12398 uint32_t size; 12399 const char *p, *p0 = str; 12400 char s[256]; 12401 char *end; 12402 char *str_fld[16]; 12403 uint16_t i; 12404 int ret; 12405 12406 p = strchr(p0, '('); 12407 if (p == NULL) { 12408 printf("The bandwidth-list should be '(bw1, bw2, ...)'\n"); 12409 return -1; 12410 } 12411 p++; 12412 p0 = strchr(p, ')'); 12413 if (p0 == NULL) { 12414 printf("The bandwidth-list should be '(bw1, bw2, ...)'\n"); 12415 return -1; 12416 } 12417 size = p0 - p; 12418 if (size >= sizeof(s)) { 12419 printf("The string size exceeds the internal buffer size\n"); 12420 return -1; 12421 } 12422 snprintf(s, sizeof(s), "%.*s", size, p); 12423 ret = rte_strsplit(s, sizeof(s), str_fld, 16, ','); 12424 if (ret <= 0) { 12425 printf("Failed to get the bandwidth list. "); 12426 return -1; 12427 } 12428 *tc_num = ret; 12429 for (i = 0; i < ret; i++) 12430 bw_list[i] = (uint8_t)strtoul(str_fld[i], &end, 0); 12431 12432 return 0; 12433 } 12434 12435 /* TC min bandwidth setting */ 12436 static void 12437 cmd_vf_tc_min_bw_parsed( 12438 void *parsed_result, 12439 __rte_unused struct cmdline *cl, 12440 __rte_unused void *data) 12441 { 12442 struct cmd_vf_tc_bw_result *res = parsed_result; 12443 uint8_t tc_num; 12444 uint8_t bw[16]; 12445 int ret = -ENOTSUP; 12446 12447 if (port_id_is_invalid(res->port_id, ENABLED_WARN)) 12448 return; 12449 12450 ret = vf_tc_min_bw_parse_bw_list(bw, &tc_num, res->bw_list); 12451 if (ret) 12452 return; 12453 12454 #ifdef RTE_NET_I40E 12455 ret = rte_pmd_i40e_set_vf_tc_bw_alloc(res->port_id, res->vf_id, 12456 tc_num, bw); 12457 #endif 12458 12459 switch (ret) { 12460 case 0: 12461 break; 12462 case -EINVAL: 12463 printf("invalid vf_id %d or bandwidth\n", res->vf_id); 12464 break; 12465 case -ENODEV: 12466 printf("invalid port_id %d\n", res->port_id); 12467 break; 12468 case -ENOTSUP: 12469 printf("function not implemented\n"); 12470 break; 12471 default: 12472 printf("programming error: (%s)\n", strerror(-ret)); 12473 } 12474 } 12475 12476 cmdline_parse_inst_t cmd_vf_tc_min_bw = { 12477 .f = cmd_vf_tc_min_bw_parsed, 12478 .data = NULL, 12479 .help_str = "set vf tc tx min-bandwidth <port_id> <vf_id>" 12480 " <bw1, bw2, ...>", 12481 .tokens = { 12482 (void *)&cmd_vf_tc_bw_set, 12483 (void *)&cmd_vf_tc_bw_vf, 12484 (void *)&cmd_vf_tc_bw_tc, 12485 (void *)&cmd_vf_tc_bw_tx, 12486 (void *)&cmd_vf_tc_bw_min_bw, 12487 (void *)&cmd_vf_tc_bw_port_id, 12488 (void *)&cmd_vf_tc_bw_vf_id, 12489 (void *)&cmd_vf_tc_bw_bw_list, 12490 NULL, 12491 }, 12492 }; 12493 12494 static void 12495 cmd_tc_min_bw_parsed( 12496 void *parsed_result, 12497 __rte_unused struct cmdline *cl, 12498 __rte_unused void *data) 12499 { 12500 struct cmd_vf_tc_bw_result *res = parsed_result; 12501 struct rte_port *port; 12502 uint8_t tc_num; 12503 uint8_t bw[16]; 12504 int ret = -ENOTSUP; 12505 12506 if (port_id_is_invalid(res->port_id, ENABLED_WARN)) 12507 return; 12508 12509 port = &ports[res->port_id]; 12510 /** Check if the port is not started **/ 12511 if (port->port_status != RTE_PORT_STOPPED) { 12512 printf("Please stop port %d first\n", res->port_id); 12513 return; 12514 } 12515 12516 ret = vf_tc_min_bw_parse_bw_list(bw, &tc_num, res->bw_list); 12517 if (ret) 12518 return; 12519 12520 #ifdef RTE_NET_IXGBE 12521 ret = rte_pmd_ixgbe_set_tc_bw_alloc(res->port_id, tc_num, bw); 12522 #endif 12523 12524 switch (ret) { 12525 case 0: 12526 break; 12527 case -EINVAL: 12528 printf("invalid bandwidth\n"); 12529 break; 12530 case -ENODEV: 12531 printf("invalid port_id %d\n", res->port_id); 12532 break; 12533 case -ENOTSUP: 12534 printf("function not implemented\n"); 12535 break; 12536 default: 12537 printf("programming error: (%s)\n", strerror(-ret)); 12538 } 12539 } 12540 12541 cmdline_parse_inst_t cmd_tc_min_bw = { 12542 .f = cmd_tc_min_bw_parsed, 12543 .data = NULL, 12544 .help_str = "set tc tx min-bandwidth <port_id> <bw1, bw2, ...>", 12545 .tokens = { 12546 (void *)&cmd_vf_tc_bw_set, 12547 (void *)&cmd_vf_tc_bw_tc, 12548 (void *)&cmd_vf_tc_bw_tx, 12549 (void *)&cmd_vf_tc_bw_min_bw, 12550 (void *)&cmd_vf_tc_bw_port_id, 12551 (void *)&cmd_vf_tc_bw_bw_list, 12552 NULL, 12553 }, 12554 }; 12555 12556 /* TC max bandwidth setting */ 12557 static void 12558 cmd_vf_tc_max_bw_parsed( 12559 void *parsed_result, 12560 __rte_unused struct cmdline *cl, 12561 __rte_unused void *data) 12562 { 12563 struct cmd_vf_tc_bw_result *res = parsed_result; 12564 int ret = -ENOTSUP; 12565 12566 if (port_id_is_invalid(res->port_id, ENABLED_WARN)) 12567 return; 12568 12569 #ifdef RTE_NET_I40E 12570 ret = rte_pmd_i40e_set_vf_tc_max_bw(res->port_id, res->vf_id, 12571 res->tc_no, res->bw); 12572 #endif 12573 12574 switch (ret) { 12575 case 0: 12576 break; 12577 case -EINVAL: 12578 printf("invalid vf_id %d, tc_no %d or bandwidth %d\n", 12579 res->vf_id, res->tc_no, res->bw); 12580 break; 12581 case -ENODEV: 12582 printf("invalid port_id %d\n", res->port_id); 12583 break; 12584 case -ENOTSUP: 12585 printf("function not implemented\n"); 12586 break; 12587 default: 12588 printf("programming error: (%s)\n", strerror(-ret)); 12589 } 12590 } 12591 12592 cmdline_parse_inst_t cmd_vf_tc_max_bw = { 12593 .f = cmd_vf_tc_max_bw_parsed, 12594 .data = NULL, 12595 .help_str = "set vf tc tx max-bandwidth <port_id> <vf_id> <tc_no>" 12596 " <bandwidth>", 12597 .tokens = { 12598 (void *)&cmd_vf_tc_bw_set, 12599 (void *)&cmd_vf_tc_bw_vf, 12600 (void *)&cmd_vf_tc_bw_tc, 12601 (void *)&cmd_vf_tc_bw_tx, 12602 (void *)&cmd_vf_tc_bw_max_bw, 12603 (void *)&cmd_vf_tc_bw_port_id, 12604 (void *)&cmd_vf_tc_bw_vf_id, 12605 (void *)&cmd_vf_tc_bw_tc_no, 12606 (void *)&cmd_vf_tc_bw_bw, 12607 NULL, 12608 }, 12609 }; 12610 12611 /** Set VXLAN encapsulation details */ 12612 struct cmd_set_vxlan_result { 12613 cmdline_fixed_string_t set; 12614 cmdline_fixed_string_t vxlan; 12615 cmdline_fixed_string_t pos_token; 12616 cmdline_fixed_string_t ip_version; 12617 uint32_t vlan_present:1; 12618 uint32_t vni; 12619 uint16_t udp_src; 12620 uint16_t udp_dst; 12621 cmdline_ipaddr_t ip_src; 12622 cmdline_ipaddr_t ip_dst; 12623 uint16_t tci; 12624 uint8_t tos; 12625 uint8_t ttl; 12626 struct rte_ether_addr eth_src; 12627 struct rte_ether_addr eth_dst; 12628 }; 12629 12630 cmdline_parse_token_string_t cmd_set_vxlan_set = 12631 TOKEN_STRING_INITIALIZER(struct cmd_set_vxlan_result, set, "set"); 12632 cmdline_parse_token_string_t cmd_set_vxlan_vxlan = 12633 TOKEN_STRING_INITIALIZER(struct cmd_set_vxlan_result, vxlan, "vxlan"); 12634 cmdline_parse_token_string_t cmd_set_vxlan_vxlan_tos_ttl = 12635 TOKEN_STRING_INITIALIZER(struct cmd_set_vxlan_result, vxlan, 12636 "vxlan-tos-ttl"); 12637 cmdline_parse_token_string_t cmd_set_vxlan_vxlan_with_vlan = 12638 TOKEN_STRING_INITIALIZER(struct cmd_set_vxlan_result, vxlan, 12639 "vxlan-with-vlan"); 12640 cmdline_parse_token_string_t cmd_set_vxlan_ip_version = 12641 TOKEN_STRING_INITIALIZER(struct cmd_set_vxlan_result, pos_token, 12642 "ip-version"); 12643 cmdline_parse_token_string_t cmd_set_vxlan_ip_version_value = 12644 TOKEN_STRING_INITIALIZER(struct cmd_set_vxlan_result, ip_version, 12645 "ipv4#ipv6"); 12646 cmdline_parse_token_string_t cmd_set_vxlan_vni = 12647 TOKEN_STRING_INITIALIZER(struct cmd_set_vxlan_result, pos_token, 12648 "vni"); 12649 cmdline_parse_token_num_t cmd_set_vxlan_vni_value = 12650 TOKEN_NUM_INITIALIZER(struct cmd_set_vxlan_result, vni, RTE_UINT32); 12651 cmdline_parse_token_string_t cmd_set_vxlan_udp_src = 12652 TOKEN_STRING_INITIALIZER(struct cmd_set_vxlan_result, pos_token, 12653 "udp-src"); 12654 cmdline_parse_token_num_t cmd_set_vxlan_udp_src_value = 12655 TOKEN_NUM_INITIALIZER(struct cmd_set_vxlan_result, udp_src, RTE_UINT16); 12656 cmdline_parse_token_string_t cmd_set_vxlan_udp_dst = 12657 TOKEN_STRING_INITIALIZER(struct cmd_set_vxlan_result, pos_token, 12658 "udp-dst"); 12659 cmdline_parse_token_num_t cmd_set_vxlan_udp_dst_value = 12660 TOKEN_NUM_INITIALIZER(struct cmd_set_vxlan_result, udp_dst, RTE_UINT16); 12661 cmdline_parse_token_string_t cmd_set_vxlan_ip_tos = 12662 TOKEN_STRING_INITIALIZER(struct cmd_set_vxlan_result, pos_token, 12663 "ip-tos"); 12664 cmdline_parse_token_num_t cmd_set_vxlan_ip_tos_value = 12665 TOKEN_NUM_INITIALIZER(struct cmd_set_vxlan_result, tos, RTE_UINT8); 12666 cmdline_parse_token_string_t cmd_set_vxlan_ip_ttl = 12667 TOKEN_STRING_INITIALIZER(struct cmd_set_vxlan_result, pos_token, 12668 "ip-ttl"); 12669 cmdline_parse_token_num_t cmd_set_vxlan_ip_ttl_value = 12670 TOKEN_NUM_INITIALIZER(struct cmd_set_vxlan_result, ttl, RTE_UINT8); 12671 cmdline_parse_token_string_t cmd_set_vxlan_ip_src = 12672 TOKEN_STRING_INITIALIZER(struct cmd_set_vxlan_result, pos_token, 12673 "ip-src"); 12674 cmdline_parse_token_ipaddr_t cmd_set_vxlan_ip_src_value = 12675 TOKEN_IPADDR_INITIALIZER(struct cmd_set_vxlan_result, ip_src); 12676 cmdline_parse_token_string_t cmd_set_vxlan_ip_dst = 12677 TOKEN_STRING_INITIALIZER(struct cmd_set_vxlan_result, pos_token, 12678 "ip-dst"); 12679 cmdline_parse_token_ipaddr_t cmd_set_vxlan_ip_dst_value = 12680 TOKEN_IPADDR_INITIALIZER(struct cmd_set_vxlan_result, ip_dst); 12681 cmdline_parse_token_string_t cmd_set_vxlan_vlan = 12682 TOKEN_STRING_INITIALIZER(struct cmd_set_vxlan_result, pos_token, 12683 "vlan-tci"); 12684 cmdline_parse_token_num_t cmd_set_vxlan_vlan_value = 12685 TOKEN_NUM_INITIALIZER(struct cmd_set_vxlan_result, tci, RTE_UINT16); 12686 cmdline_parse_token_string_t cmd_set_vxlan_eth_src = 12687 TOKEN_STRING_INITIALIZER(struct cmd_set_vxlan_result, pos_token, 12688 "eth-src"); 12689 cmdline_parse_token_etheraddr_t cmd_set_vxlan_eth_src_value = 12690 TOKEN_ETHERADDR_INITIALIZER(struct cmd_set_vxlan_result, eth_src); 12691 cmdline_parse_token_string_t cmd_set_vxlan_eth_dst = 12692 TOKEN_STRING_INITIALIZER(struct cmd_set_vxlan_result, pos_token, 12693 "eth-dst"); 12694 cmdline_parse_token_etheraddr_t cmd_set_vxlan_eth_dst_value = 12695 TOKEN_ETHERADDR_INITIALIZER(struct cmd_set_vxlan_result, eth_dst); 12696 12697 static void cmd_set_vxlan_parsed(void *parsed_result, 12698 __rte_unused struct cmdline *cl, 12699 __rte_unused void *data) 12700 { 12701 struct cmd_set_vxlan_result *res = parsed_result; 12702 union { 12703 uint32_t vxlan_id; 12704 uint8_t vni[4]; 12705 } id = { 12706 .vxlan_id = rte_cpu_to_be_32(res->vni) & RTE_BE32(0x00ffffff), 12707 }; 12708 12709 vxlan_encap_conf.select_tos_ttl = 0; 12710 if (strcmp(res->vxlan, "vxlan") == 0) 12711 vxlan_encap_conf.select_vlan = 0; 12712 else if (strcmp(res->vxlan, "vxlan-with-vlan") == 0) 12713 vxlan_encap_conf.select_vlan = 1; 12714 else if (strcmp(res->vxlan, "vxlan-tos-ttl") == 0) { 12715 vxlan_encap_conf.select_vlan = 0; 12716 vxlan_encap_conf.select_tos_ttl = 1; 12717 } 12718 if (strcmp(res->ip_version, "ipv4") == 0) 12719 vxlan_encap_conf.select_ipv4 = 1; 12720 else if (strcmp(res->ip_version, "ipv6") == 0) 12721 vxlan_encap_conf.select_ipv4 = 0; 12722 else 12723 return; 12724 rte_memcpy(vxlan_encap_conf.vni, &id.vni[1], 3); 12725 vxlan_encap_conf.udp_src = rte_cpu_to_be_16(res->udp_src); 12726 vxlan_encap_conf.udp_dst = rte_cpu_to_be_16(res->udp_dst); 12727 vxlan_encap_conf.ip_tos = res->tos; 12728 vxlan_encap_conf.ip_ttl = res->ttl; 12729 if (vxlan_encap_conf.select_ipv4) { 12730 IPV4_ADDR_TO_UINT(res->ip_src, vxlan_encap_conf.ipv4_src); 12731 IPV4_ADDR_TO_UINT(res->ip_dst, vxlan_encap_conf.ipv4_dst); 12732 } else { 12733 IPV6_ADDR_TO_ARRAY(res->ip_src, vxlan_encap_conf.ipv6_src); 12734 IPV6_ADDR_TO_ARRAY(res->ip_dst, vxlan_encap_conf.ipv6_dst); 12735 } 12736 if (vxlan_encap_conf.select_vlan) 12737 vxlan_encap_conf.vlan_tci = rte_cpu_to_be_16(res->tci); 12738 rte_memcpy(vxlan_encap_conf.eth_src, res->eth_src.addr_bytes, 12739 RTE_ETHER_ADDR_LEN); 12740 rte_memcpy(vxlan_encap_conf.eth_dst, res->eth_dst.addr_bytes, 12741 RTE_ETHER_ADDR_LEN); 12742 } 12743 12744 cmdline_parse_inst_t cmd_set_vxlan = { 12745 .f = cmd_set_vxlan_parsed, 12746 .data = NULL, 12747 .help_str = "set vxlan ip-version ipv4|ipv6 vni <vni> udp-src" 12748 " <udp-src> udp-dst <udp-dst> ip-src <ip-src> ip-dst <ip-dst>" 12749 " eth-src <eth-src> eth-dst <eth-dst>", 12750 .tokens = { 12751 (void *)&cmd_set_vxlan_set, 12752 (void *)&cmd_set_vxlan_vxlan, 12753 (void *)&cmd_set_vxlan_ip_version, 12754 (void *)&cmd_set_vxlan_ip_version_value, 12755 (void *)&cmd_set_vxlan_vni, 12756 (void *)&cmd_set_vxlan_vni_value, 12757 (void *)&cmd_set_vxlan_udp_src, 12758 (void *)&cmd_set_vxlan_udp_src_value, 12759 (void *)&cmd_set_vxlan_udp_dst, 12760 (void *)&cmd_set_vxlan_udp_dst_value, 12761 (void *)&cmd_set_vxlan_ip_src, 12762 (void *)&cmd_set_vxlan_ip_src_value, 12763 (void *)&cmd_set_vxlan_ip_dst, 12764 (void *)&cmd_set_vxlan_ip_dst_value, 12765 (void *)&cmd_set_vxlan_eth_src, 12766 (void *)&cmd_set_vxlan_eth_src_value, 12767 (void *)&cmd_set_vxlan_eth_dst, 12768 (void *)&cmd_set_vxlan_eth_dst_value, 12769 NULL, 12770 }, 12771 }; 12772 12773 cmdline_parse_inst_t cmd_set_vxlan_tos_ttl = { 12774 .f = cmd_set_vxlan_parsed, 12775 .data = NULL, 12776 .help_str = "set vxlan-tos-ttl ip-version ipv4|ipv6 vni <vni> udp-src" 12777 " <udp-src> udp-dst <udp-dst> ip-tos <ip-tos> ip-ttl <ip-ttl>" 12778 " ip-src <ip-src> ip-dst <ip-dst> eth-src <eth-src>" 12779 " eth-dst <eth-dst>", 12780 .tokens = { 12781 (void *)&cmd_set_vxlan_set, 12782 (void *)&cmd_set_vxlan_vxlan_tos_ttl, 12783 (void *)&cmd_set_vxlan_ip_version, 12784 (void *)&cmd_set_vxlan_ip_version_value, 12785 (void *)&cmd_set_vxlan_vni, 12786 (void *)&cmd_set_vxlan_vni_value, 12787 (void *)&cmd_set_vxlan_udp_src, 12788 (void *)&cmd_set_vxlan_udp_src_value, 12789 (void *)&cmd_set_vxlan_udp_dst, 12790 (void *)&cmd_set_vxlan_udp_dst_value, 12791 (void *)&cmd_set_vxlan_ip_tos, 12792 (void *)&cmd_set_vxlan_ip_tos_value, 12793 (void *)&cmd_set_vxlan_ip_ttl, 12794 (void *)&cmd_set_vxlan_ip_ttl_value, 12795 (void *)&cmd_set_vxlan_ip_src, 12796 (void *)&cmd_set_vxlan_ip_src_value, 12797 (void *)&cmd_set_vxlan_ip_dst, 12798 (void *)&cmd_set_vxlan_ip_dst_value, 12799 (void *)&cmd_set_vxlan_eth_src, 12800 (void *)&cmd_set_vxlan_eth_src_value, 12801 (void *)&cmd_set_vxlan_eth_dst, 12802 (void *)&cmd_set_vxlan_eth_dst_value, 12803 NULL, 12804 }, 12805 }; 12806 12807 cmdline_parse_inst_t cmd_set_vxlan_with_vlan = { 12808 .f = cmd_set_vxlan_parsed, 12809 .data = NULL, 12810 .help_str = "set vxlan-with-vlan ip-version ipv4|ipv6 vni <vni>" 12811 " udp-src <udp-src> udp-dst <udp-dst> ip-src <ip-src> ip-dst" 12812 " <ip-dst> vlan-tci <vlan-tci> eth-src <eth-src> eth-dst" 12813 " <eth-dst>", 12814 .tokens = { 12815 (void *)&cmd_set_vxlan_set, 12816 (void *)&cmd_set_vxlan_vxlan_with_vlan, 12817 (void *)&cmd_set_vxlan_ip_version, 12818 (void *)&cmd_set_vxlan_ip_version_value, 12819 (void *)&cmd_set_vxlan_vni, 12820 (void *)&cmd_set_vxlan_vni_value, 12821 (void *)&cmd_set_vxlan_udp_src, 12822 (void *)&cmd_set_vxlan_udp_src_value, 12823 (void *)&cmd_set_vxlan_udp_dst, 12824 (void *)&cmd_set_vxlan_udp_dst_value, 12825 (void *)&cmd_set_vxlan_ip_src, 12826 (void *)&cmd_set_vxlan_ip_src_value, 12827 (void *)&cmd_set_vxlan_ip_dst, 12828 (void *)&cmd_set_vxlan_ip_dst_value, 12829 (void *)&cmd_set_vxlan_vlan, 12830 (void *)&cmd_set_vxlan_vlan_value, 12831 (void *)&cmd_set_vxlan_eth_src, 12832 (void *)&cmd_set_vxlan_eth_src_value, 12833 (void *)&cmd_set_vxlan_eth_dst, 12834 (void *)&cmd_set_vxlan_eth_dst_value, 12835 NULL, 12836 }, 12837 }; 12838 12839 /** Set NVGRE encapsulation details */ 12840 struct cmd_set_nvgre_result { 12841 cmdline_fixed_string_t set; 12842 cmdline_fixed_string_t nvgre; 12843 cmdline_fixed_string_t pos_token; 12844 cmdline_fixed_string_t ip_version; 12845 uint32_t tni; 12846 cmdline_ipaddr_t ip_src; 12847 cmdline_ipaddr_t ip_dst; 12848 uint16_t tci; 12849 struct rte_ether_addr eth_src; 12850 struct rte_ether_addr eth_dst; 12851 }; 12852 12853 cmdline_parse_token_string_t cmd_set_nvgre_set = 12854 TOKEN_STRING_INITIALIZER(struct cmd_set_nvgre_result, set, "set"); 12855 cmdline_parse_token_string_t cmd_set_nvgre_nvgre = 12856 TOKEN_STRING_INITIALIZER(struct cmd_set_nvgre_result, nvgre, "nvgre"); 12857 cmdline_parse_token_string_t cmd_set_nvgre_nvgre_with_vlan = 12858 TOKEN_STRING_INITIALIZER(struct cmd_set_nvgre_result, nvgre, 12859 "nvgre-with-vlan"); 12860 cmdline_parse_token_string_t cmd_set_nvgre_ip_version = 12861 TOKEN_STRING_INITIALIZER(struct cmd_set_nvgre_result, pos_token, 12862 "ip-version"); 12863 cmdline_parse_token_string_t cmd_set_nvgre_ip_version_value = 12864 TOKEN_STRING_INITIALIZER(struct cmd_set_nvgre_result, ip_version, 12865 "ipv4#ipv6"); 12866 cmdline_parse_token_string_t cmd_set_nvgre_tni = 12867 TOKEN_STRING_INITIALIZER(struct cmd_set_nvgre_result, pos_token, 12868 "tni"); 12869 cmdline_parse_token_num_t cmd_set_nvgre_tni_value = 12870 TOKEN_NUM_INITIALIZER(struct cmd_set_nvgre_result, tni, RTE_UINT32); 12871 cmdline_parse_token_string_t cmd_set_nvgre_ip_src = 12872 TOKEN_STRING_INITIALIZER(struct cmd_set_nvgre_result, pos_token, 12873 "ip-src"); 12874 cmdline_parse_token_num_t cmd_set_nvgre_ip_src_value = 12875 TOKEN_IPADDR_INITIALIZER(struct cmd_set_nvgre_result, ip_src); 12876 cmdline_parse_token_string_t cmd_set_nvgre_ip_dst = 12877 TOKEN_STRING_INITIALIZER(struct cmd_set_nvgre_result, pos_token, 12878 "ip-dst"); 12879 cmdline_parse_token_ipaddr_t cmd_set_nvgre_ip_dst_value = 12880 TOKEN_IPADDR_INITIALIZER(struct cmd_set_nvgre_result, ip_dst); 12881 cmdline_parse_token_string_t cmd_set_nvgre_vlan = 12882 TOKEN_STRING_INITIALIZER(struct cmd_set_nvgre_result, pos_token, 12883 "vlan-tci"); 12884 cmdline_parse_token_num_t cmd_set_nvgre_vlan_value = 12885 TOKEN_NUM_INITIALIZER(struct cmd_set_nvgre_result, tci, RTE_UINT16); 12886 cmdline_parse_token_string_t cmd_set_nvgre_eth_src = 12887 TOKEN_STRING_INITIALIZER(struct cmd_set_nvgre_result, pos_token, 12888 "eth-src"); 12889 cmdline_parse_token_etheraddr_t cmd_set_nvgre_eth_src_value = 12890 TOKEN_ETHERADDR_INITIALIZER(struct cmd_set_nvgre_result, eth_src); 12891 cmdline_parse_token_string_t cmd_set_nvgre_eth_dst = 12892 TOKEN_STRING_INITIALIZER(struct cmd_set_nvgre_result, pos_token, 12893 "eth-dst"); 12894 cmdline_parse_token_etheraddr_t cmd_set_nvgre_eth_dst_value = 12895 TOKEN_ETHERADDR_INITIALIZER(struct cmd_set_nvgre_result, eth_dst); 12896 12897 static void cmd_set_nvgre_parsed(void *parsed_result, 12898 __rte_unused struct cmdline *cl, 12899 __rte_unused void *data) 12900 { 12901 struct cmd_set_nvgre_result *res = parsed_result; 12902 union { 12903 uint32_t nvgre_tni; 12904 uint8_t tni[4]; 12905 } id = { 12906 .nvgre_tni = rte_cpu_to_be_32(res->tni) & RTE_BE32(0x00ffffff), 12907 }; 12908 12909 if (strcmp(res->nvgre, "nvgre") == 0) 12910 nvgre_encap_conf.select_vlan = 0; 12911 else if (strcmp(res->nvgre, "nvgre-with-vlan") == 0) 12912 nvgre_encap_conf.select_vlan = 1; 12913 if (strcmp(res->ip_version, "ipv4") == 0) 12914 nvgre_encap_conf.select_ipv4 = 1; 12915 else if (strcmp(res->ip_version, "ipv6") == 0) 12916 nvgre_encap_conf.select_ipv4 = 0; 12917 else 12918 return; 12919 rte_memcpy(nvgre_encap_conf.tni, &id.tni[1], 3); 12920 if (nvgre_encap_conf.select_ipv4) { 12921 IPV4_ADDR_TO_UINT(res->ip_src, nvgre_encap_conf.ipv4_src); 12922 IPV4_ADDR_TO_UINT(res->ip_dst, nvgre_encap_conf.ipv4_dst); 12923 } else { 12924 IPV6_ADDR_TO_ARRAY(res->ip_src, nvgre_encap_conf.ipv6_src); 12925 IPV6_ADDR_TO_ARRAY(res->ip_dst, nvgre_encap_conf.ipv6_dst); 12926 } 12927 if (nvgre_encap_conf.select_vlan) 12928 nvgre_encap_conf.vlan_tci = rte_cpu_to_be_16(res->tci); 12929 rte_memcpy(nvgre_encap_conf.eth_src, res->eth_src.addr_bytes, 12930 RTE_ETHER_ADDR_LEN); 12931 rte_memcpy(nvgre_encap_conf.eth_dst, res->eth_dst.addr_bytes, 12932 RTE_ETHER_ADDR_LEN); 12933 } 12934 12935 cmdline_parse_inst_t cmd_set_nvgre = { 12936 .f = cmd_set_nvgre_parsed, 12937 .data = NULL, 12938 .help_str = "set nvgre ip-version <ipv4|ipv6> tni <tni> ip-src" 12939 " <ip-src> ip-dst <ip-dst> eth-src <eth-src>" 12940 " eth-dst <eth-dst>", 12941 .tokens = { 12942 (void *)&cmd_set_nvgre_set, 12943 (void *)&cmd_set_nvgre_nvgre, 12944 (void *)&cmd_set_nvgre_ip_version, 12945 (void *)&cmd_set_nvgre_ip_version_value, 12946 (void *)&cmd_set_nvgre_tni, 12947 (void *)&cmd_set_nvgre_tni_value, 12948 (void *)&cmd_set_nvgre_ip_src, 12949 (void *)&cmd_set_nvgre_ip_src_value, 12950 (void *)&cmd_set_nvgre_ip_dst, 12951 (void *)&cmd_set_nvgre_ip_dst_value, 12952 (void *)&cmd_set_nvgre_eth_src, 12953 (void *)&cmd_set_nvgre_eth_src_value, 12954 (void *)&cmd_set_nvgre_eth_dst, 12955 (void *)&cmd_set_nvgre_eth_dst_value, 12956 NULL, 12957 }, 12958 }; 12959 12960 cmdline_parse_inst_t cmd_set_nvgre_with_vlan = { 12961 .f = cmd_set_nvgre_parsed, 12962 .data = NULL, 12963 .help_str = "set nvgre-with-vlan ip-version <ipv4|ipv6> tni <tni>" 12964 " ip-src <ip-src> ip-dst <ip-dst> vlan-tci <vlan-tci>" 12965 " eth-src <eth-src> eth-dst <eth-dst>", 12966 .tokens = { 12967 (void *)&cmd_set_nvgre_set, 12968 (void *)&cmd_set_nvgre_nvgre_with_vlan, 12969 (void *)&cmd_set_nvgre_ip_version, 12970 (void *)&cmd_set_nvgre_ip_version_value, 12971 (void *)&cmd_set_nvgre_tni, 12972 (void *)&cmd_set_nvgre_tni_value, 12973 (void *)&cmd_set_nvgre_ip_src, 12974 (void *)&cmd_set_nvgre_ip_src_value, 12975 (void *)&cmd_set_nvgre_ip_dst, 12976 (void *)&cmd_set_nvgre_ip_dst_value, 12977 (void *)&cmd_set_nvgre_vlan, 12978 (void *)&cmd_set_nvgre_vlan_value, 12979 (void *)&cmd_set_nvgre_eth_src, 12980 (void *)&cmd_set_nvgre_eth_src_value, 12981 (void *)&cmd_set_nvgre_eth_dst, 12982 (void *)&cmd_set_nvgre_eth_dst_value, 12983 NULL, 12984 }, 12985 }; 12986 12987 /** Set L2 encapsulation details */ 12988 struct cmd_set_l2_encap_result { 12989 cmdline_fixed_string_t set; 12990 cmdline_fixed_string_t l2_encap; 12991 cmdline_fixed_string_t pos_token; 12992 cmdline_fixed_string_t ip_version; 12993 uint32_t vlan_present:1; 12994 uint16_t tci; 12995 struct rte_ether_addr eth_src; 12996 struct rte_ether_addr eth_dst; 12997 }; 12998 12999 cmdline_parse_token_string_t cmd_set_l2_encap_set = 13000 TOKEN_STRING_INITIALIZER(struct cmd_set_l2_encap_result, set, "set"); 13001 cmdline_parse_token_string_t cmd_set_l2_encap_l2_encap = 13002 TOKEN_STRING_INITIALIZER(struct cmd_set_l2_encap_result, l2_encap, "l2_encap"); 13003 cmdline_parse_token_string_t cmd_set_l2_encap_l2_encap_with_vlan = 13004 TOKEN_STRING_INITIALIZER(struct cmd_set_l2_encap_result, l2_encap, 13005 "l2_encap-with-vlan"); 13006 cmdline_parse_token_string_t cmd_set_l2_encap_ip_version = 13007 TOKEN_STRING_INITIALIZER(struct cmd_set_l2_encap_result, pos_token, 13008 "ip-version"); 13009 cmdline_parse_token_string_t cmd_set_l2_encap_ip_version_value = 13010 TOKEN_STRING_INITIALIZER(struct cmd_set_l2_encap_result, ip_version, 13011 "ipv4#ipv6"); 13012 cmdline_parse_token_string_t cmd_set_l2_encap_vlan = 13013 TOKEN_STRING_INITIALIZER(struct cmd_set_l2_encap_result, pos_token, 13014 "vlan-tci"); 13015 cmdline_parse_token_num_t cmd_set_l2_encap_vlan_value = 13016 TOKEN_NUM_INITIALIZER(struct cmd_set_l2_encap_result, tci, RTE_UINT16); 13017 cmdline_parse_token_string_t cmd_set_l2_encap_eth_src = 13018 TOKEN_STRING_INITIALIZER(struct cmd_set_l2_encap_result, pos_token, 13019 "eth-src"); 13020 cmdline_parse_token_etheraddr_t cmd_set_l2_encap_eth_src_value = 13021 TOKEN_ETHERADDR_INITIALIZER(struct cmd_set_l2_encap_result, eth_src); 13022 cmdline_parse_token_string_t cmd_set_l2_encap_eth_dst = 13023 TOKEN_STRING_INITIALIZER(struct cmd_set_l2_encap_result, pos_token, 13024 "eth-dst"); 13025 cmdline_parse_token_etheraddr_t cmd_set_l2_encap_eth_dst_value = 13026 TOKEN_ETHERADDR_INITIALIZER(struct cmd_set_l2_encap_result, eth_dst); 13027 13028 static void cmd_set_l2_encap_parsed(void *parsed_result, 13029 __rte_unused struct cmdline *cl, 13030 __rte_unused void *data) 13031 { 13032 struct cmd_set_l2_encap_result *res = parsed_result; 13033 13034 if (strcmp(res->l2_encap, "l2_encap") == 0) 13035 l2_encap_conf.select_vlan = 0; 13036 else if (strcmp(res->l2_encap, "l2_encap-with-vlan") == 0) 13037 l2_encap_conf.select_vlan = 1; 13038 if (strcmp(res->ip_version, "ipv4") == 0) 13039 l2_encap_conf.select_ipv4 = 1; 13040 else if (strcmp(res->ip_version, "ipv6") == 0) 13041 l2_encap_conf.select_ipv4 = 0; 13042 else 13043 return; 13044 if (l2_encap_conf.select_vlan) 13045 l2_encap_conf.vlan_tci = rte_cpu_to_be_16(res->tci); 13046 rte_memcpy(l2_encap_conf.eth_src, res->eth_src.addr_bytes, 13047 RTE_ETHER_ADDR_LEN); 13048 rte_memcpy(l2_encap_conf.eth_dst, res->eth_dst.addr_bytes, 13049 RTE_ETHER_ADDR_LEN); 13050 } 13051 13052 cmdline_parse_inst_t cmd_set_l2_encap = { 13053 .f = cmd_set_l2_encap_parsed, 13054 .data = NULL, 13055 .help_str = "set l2_encap ip-version ipv4|ipv6" 13056 " eth-src <eth-src> eth-dst <eth-dst>", 13057 .tokens = { 13058 (void *)&cmd_set_l2_encap_set, 13059 (void *)&cmd_set_l2_encap_l2_encap, 13060 (void *)&cmd_set_l2_encap_ip_version, 13061 (void *)&cmd_set_l2_encap_ip_version_value, 13062 (void *)&cmd_set_l2_encap_eth_src, 13063 (void *)&cmd_set_l2_encap_eth_src_value, 13064 (void *)&cmd_set_l2_encap_eth_dst, 13065 (void *)&cmd_set_l2_encap_eth_dst_value, 13066 NULL, 13067 }, 13068 }; 13069 13070 cmdline_parse_inst_t cmd_set_l2_encap_with_vlan = { 13071 .f = cmd_set_l2_encap_parsed, 13072 .data = NULL, 13073 .help_str = "set l2_encap-with-vlan ip-version ipv4|ipv6" 13074 " vlan-tci <vlan-tci> eth-src <eth-src> eth-dst <eth-dst>", 13075 .tokens = { 13076 (void *)&cmd_set_l2_encap_set, 13077 (void *)&cmd_set_l2_encap_l2_encap_with_vlan, 13078 (void *)&cmd_set_l2_encap_ip_version, 13079 (void *)&cmd_set_l2_encap_ip_version_value, 13080 (void *)&cmd_set_l2_encap_vlan, 13081 (void *)&cmd_set_l2_encap_vlan_value, 13082 (void *)&cmd_set_l2_encap_eth_src, 13083 (void *)&cmd_set_l2_encap_eth_src_value, 13084 (void *)&cmd_set_l2_encap_eth_dst, 13085 (void *)&cmd_set_l2_encap_eth_dst_value, 13086 NULL, 13087 }, 13088 }; 13089 13090 /** Set L2 decapsulation details */ 13091 struct cmd_set_l2_decap_result { 13092 cmdline_fixed_string_t set; 13093 cmdline_fixed_string_t l2_decap; 13094 cmdline_fixed_string_t pos_token; 13095 uint32_t vlan_present:1; 13096 }; 13097 13098 cmdline_parse_token_string_t cmd_set_l2_decap_set = 13099 TOKEN_STRING_INITIALIZER(struct cmd_set_l2_decap_result, set, "set"); 13100 cmdline_parse_token_string_t cmd_set_l2_decap_l2_decap = 13101 TOKEN_STRING_INITIALIZER(struct cmd_set_l2_decap_result, l2_decap, 13102 "l2_decap"); 13103 cmdline_parse_token_string_t cmd_set_l2_decap_l2_decap_with_vlan = 13104 TOKEN_STRING_INITIALIZER(struct cmd_set_l2_decap_result, l2_decap, 13105 "l2_decap-with-vlan"); 13106 13107 static void cmd_set_l2_decap_parsed(void *parsed_result, 13108 __rte_unused struct cmdline *cl, 13109 __rte_unused void *data) 13110 { 13111 struct cmd_set_l2_decap_result *res = parsed_result; 13112 13113 if (strcmp(res->l2_decap, "l2_decap") == 0) 13114 l2_decap_conf.select_vlan = 0; 13115 else if (strcmp(res->l2_decap, "l2_decap-with-vlan") == 0) 13116 l2_decap_conf.select_vlan = 1; 13117 } 13118 13119 cmdline_parse_inst_t cmd_set_l2_decap = { 13120 .f = cmd_set_l2_decap_parsed, 13121 .data = NULL, 13122 .help_str = "set l2_decap", 13123 .tokens = { 13124 (void *)&cmd_set_l2_decap_set, 13125 (void *)&cmd_set_l2_decap_l2_decap, 13126 NULL, 13127 }, 13128 }; 13129 13130 cmdline_parse_inst_t cmd_set_l2_decap_with_vlan = { 13131 .f = cmd_set_l2_decap_parsed, 13132 .data = NULL, 13133 .help_str = "set l2_decap-with-vlan", 13134 .tokens = { 13135 (void *)&cmd_set_l2_decap_set, 13136 (void *)&cmd_set_l2_decap_l2_decap_with_vlan, 13137 NULL, 13138 }, 13139 }; 13140 13141 /** Set MPLSoGRE encapsulation details */ 13142 struct cmd_set_mplsogre_encap_result { 13143 cmdline_fixed_string_t set; 13144 cmdline_fixed_string_t mplsogre; 13145 cmdline_fixed_string_t pos_token; 13146 cmdline_fixed_string_t ip_version; 13147 uint32_t vlan_present:1; 13148 uint32_t label; 13149 cmdline_ipaddr_t ip_src; 13150 cmdline_ipaddr_t ip_dst; 13151 uint16_t tci; 13152 struct rte_ether_addr eth_src; 13153 struct rte_ether_addr eth_dst; 13154 }; 13155 13156 cmdline_parse_token_string_t cmd_set_mplsogre_encap_set = 13157 TOKEN_STRING_INITIALIZER(struct cmd_set_mplsogre_encap_result, set, 13158 "set"); 13159 cmdline_parse_token_string_t cmd_set_mplsogre_encap_mplsogre_encap = 13160 TOKEN_STRING_INITIALIZER(struct cmd_set_mplsogre_encap_result, mplsogre, 13161 "mplsogre_encap"); 13162 cmdline_parse_token_string_t cmd_set_mplsogre_encap_mplsogre_encap_with_vlan = 13163 TOKEN_STRING_INITIALIZER(struct cmd_set_mplsogre_encap_result, 13164 mplsogre, "mplsogre_encap-with-vlan"); 13165 cmdline_parse_token_string_t cmd_set_mplsogre_encap_ip_version = 13166 TOKEN_STRING_INITIALIZER(struct cmd_set_mplsogre_encap_result, 13167 pos_token, "ip-version"); 13168 cmdline_parse_token_string_t cmd_set_mplsogre_encap_ip_version_value = 13169 TOKEN_STRING_INITIALIZER(struct cmd_set_mplsogre_encap_result, 13170 ip_version, "ipv4#ipv6"); 13171 cmdline_parse_token_string_t cmd_set_mplsogre_encap_label = 13172 TOKEN_STRING_INITIALIZER(struct cmd_set_mplsogre_encap_result, 13173 pos_token, "label"); 13174 cmdline_parse_token_num_t cmd_set_mplsogre_encap_label_value = 13175 TOKEN_NUM_INITIALIZER(struct cmd_set_mplsogre_encap_result, label, 13176 RTE_UINT32); 13177 cmdline_parse_token_string_t cmd_set_mplsogre_encap_ip_src = 13178 TOKEN_STRING_INITIALIZER(struct cmd_set_mplsogre_encap_result, 13179 pos_token, "ip-src"); 13180 cmdline_parse_token_ipaddr_t cmd_set_mplsogre_encap_ip_src_value = 13181 TOKEN_IPADDR_INITIALIZER(struct cmd_set_mplsogre_encap_result, ip_src); 13182 cmdline_parse_token_string_t cmd_set_mplsogre_encap_ip_dst = 13183 TOKEN_STRING_INITIALIZER(struct cmd_set_mplsogre_encap_result, 13184 pos_token, "ip-dst"); 13185 cmdline_parse_token_ipaddr_t cmd_set_mplsogre_encap_ip_dst_value = 13186 TOKEN_IPADDR_INITIALIZER(struct cmd_set_mplsogre_encap_result, ip_dst); 13187 cmdline_parse_token_string_t cmd_set_mplsogre_encap_vlan = 13188 TOKEN_STRING_INITIALIZER(struct cmd_set_mplsogre_encap_result, 13189 pos_token, "vlan-tci"); 13190 cmdline_parse_token_num_t cmd_set_mplsogre_encap_vlan_value = 13191 TOKEN_NUM_INITIALIZER(struct cmd_set_mplsogre_encap_result, tci, 13192 RTE_UINT16); 13193 cmdline_parse_token_string_t cmd_set_mplsogre_encap_eth_src = 13194 TOKEN_STRING_INITIALIZER(struct cmd_set_mplsogre_encap_result, 13195 pos_token, "eth-src"); 13196 cmdline_parse_token_etheraddr_t cmd_set_mplsogre_encap_eth_src_value = 13197 TOKEN_ETHERADDR_INITIALIZER(struct cmd_set_mplsogre_encap_result, 13198 eth_src); 13199 cmdline_parse_token_string_t cmd_set_mplsogre_encap_eth_dst = 13200 TOKEN_STRING_INITIALIZER(struct cmd_set_mplsogre_encap_result, 13201 pos_token, "eth-dst"); 13202 cmdline_parse_token_etheraddr_t cmd_set_mplsogre_encap_eth_dst_value = 13203 TOKEN_ETHERADDR_INITIALIZER(struct cmd_set_mplsogre_encap_result, 13204 eth_dst); 13205 13206 static void cmd_set_mplsogre_encap_parsed(void *parsed_result, 13207 __rte_unused struct cmdline *cl, 13208 __rte_unused void *data) 13209 { 13210 struct cmd_set_mplsogre_encap_result *res = parsed_result; 13211 union { 13212 uint32_t mplsogre_label; 13213 uint8_t label[4]; 13214 } id = { 13215 .mplsogre_label = rte_cpu_to_be_32(res->label<<12), 13216 }; 13217 13218 if (strcmp(res->mplsogre, "mplsogre_encap") == 0) 13219 mplsogre_encap_conf.select_vlan = 0; 13220 else if (strcmp(res->mplsogre, "mplsogre_encap-with-vlan") == 0) 13221 mplsogre_encap_conf.select_vlan = 1; 13222 if (strcmp(res->ip_version, "ipv4") == 0) 13223 mplsogre_encap_conf.select_ipv4 = 1; 13224 else if (strcmp(res->ip_version, "ipv6") == 0) 13225 mplsogre_encap_conf.select_ipv4 = 0; 13226 else 13227 return; 13228 rte_memcpy(mplsogre_encap_conf.label, &id.label, 3); 13229 if (mplsogre_encap_conf.select_ipv4) { 13230 IPV4_ADDR_TO_UINT(res->ip_src, mplsogre_encap_conf.ipv4_src); 13231 IPV4_ADDR_TO_UINT(res->ip_dst, mplsogre_encap_conf.ipv4_dst); 13232 } else { 13233 IPV6_ADDR_TO_ARRAY(res->ip_src, mplsogre_encap_conf.ipv6_src); 13234 IPV6_ADDR_TO_ARRAY(res->ip_dst, mplsogre_encap_conf.ipv6_dst); 13235 } 13236 if (mplsogre_encap_conf.select_vlan) 13237 mplsogre_encap_conf.vlan_tci = rte_cpu_to_be_16(res->tci); 13238 rte_memcpy(mplsogre_encap_conf.eth_src, res->eth_src.addr_bytes, 13239 RTE_ETHER_ADDR_LEN); 13240 rte_memcpy(mplsogre_encap_conf.eth_dst, res->eth_dst.addr_bytes, 13241 RTE_ETHER_ADDR_LEN); 13242 } 13243 13244 cmdline_parse_inst_t cmd_set_mplsogre_encap = { 13245 .f = cmd_set_mplsogre_encap_parsed, 13246 .data = NULL, 13247 .help_str = "set mplsogre_encap ip-version ipv4|ipv6 label <label>" 13248 " ip-src <ip-src> ip-dst <ip-dst> eth-src <eth-src>" 13249 " eth-dst <eth-dst>", 13250 .tokens = { 13251 (void *)&cmd_set_mplsogre_encap_set, 13252 (void *)&cmd_set_mplsogre_encap_mplsogre_encap, 13253 (void *)&cmd_set_mplsogre_encap_ip_version, 13254 (void *)&cmd_set_mplsogre_encap_ip_version_value, 13255 (void *)&cmd_set_mplsogre_encap_label, 13256 (void *)&cmd_set_mplsogre_encap_label_value, 13257 (void *)&cmd_set_mplsogre_encap_ip_src, 13258 (void *)&cmd_set_mplsogre_encap_ip_src_value, 13259 (void *)&cmd_set_mplsogre_encap_ip_dst, 13260 (void *)&cmd_set_mplsogre_encap_ip_dst_value, 13261 (void *)&cmd_set_mplsogre_encap_eth_src, 13262 (void *)&cmd_set_mplsogre_encap_eth_src_value, 13263 (void *)&cmd_set_mplsogre_encap_eth_dst, 13264 (void *)&cmd_set_mplsogre_encap_eth_dst_value, 13265 NULL, 13266 }, 13267 }; 13268 13269 cmdline_parse_inst_t cmd_set_mplsogre_encap_with_vlan = { 13270 .f = cmd_set_mplsogre_encap_parsed, 13271 .data = NULL, 13272 .help_str = "set mplsogre_encap-with-vlan ip-version ipv4|ipv6" 13273 " label <label> ip-src <ip-src> ip-dst <ip-dst>" 13274 " vlan-tci <vlan-tci> eth-src <eth-src> eth-dst <eth-dst>", 13275 .tokens = { 13276 (void *)&cmd_set_mplsogre_encap_set, 13277 (void *)&cmd_set_mplsogre_encap_mplsogre_encap_with_vlan, 13278 (void *)&cmd_set_mplsogre_encap_ip_version, 13279 (void *)&cmd_set_mplsogre_encap_ip_version_value, 13280 (void *)&cmd_set_mplsogre_encap_label, 13281 (void *)&cmd_set_mplsogre_encap_label_value, 13282 (void *)&cmd_set_mplsogre_encap_ip_src, 13283 (void *)&cmd_set_mplsogre_encap_ip_src_value, 13284 (void *)&cmd_set_mplsogre_encap_ip_dst, 13285 (void *)&cmd_set_mplsogre_encap_ip_dst_value, 13286 (void *)&cmd_set_mplsogre_encap_vlan, 13287 (void *)&cmd_set_mplsogre_encap_vlan_value, 13288 (void *)&cmd_set_mplsogre_encap_eth_src, 13289 (void *)&cmd_set_mplsogre_encap_eth_src_value, 13290 (void *)&cmd_set_mplsogre_encap_eth_dst, 13291 (void *)&cmd_set_mplsogre_encap_eth_dst_value, 13292 NULL, 13293 }, 13294 }; 13295 13296 /** Set MPLSoGRE decapsulation details */ 13297 struct cmd_set_mplsogre_decap_result { 13298 cmdline_fixed_string_t set; 13299 cmdline_fixed_string_t mplsogre; 13300 cmdline_fixed_string_t pos_token; 13301 cmdline_fixed_string_t ip_version; 13302 uint32_t vlan_present:1; 13303 }; 13304 13305 cmdline_parse_token_string_t cmd_set_mplsogre_decap_set = 13306 TOKEN_STRING_INITIALIZER(struct cmd_set_mplsogre_decap_result, set, 13307 "set"); 13308 cmdline_parse_token_string_t cmd_set_mplsogre_decap_mplsogre_decap = 13309 TOKEN_STRING_INITIALIZER(struct cmd_set_mplsogre_decap_result, mplsogre, 13310 "mplsogre_decap"); 13311 cmdline_parse_token_string_t cmd_set_mplsogre_decap_mplsogre_decap_with_vlan = 13312 TOKEN_STRING_INITIALIZER(struct cmd_set_mplsogre_decap_result, 13313 mplsogre, "mplsogre_decap-with-vlan"); 13314 cmdline_parse_token_string_t cmd_set_mplsogre_decap_ip_version = 13315 TOKEN_STRING_INITIALIZER(struct cmd_set_mplsogre_decap_result, 13316 pos_token, "ip-version"); 13317 cmdline_parse_token_string_t cmd_set_mplsogre_decap_ip_version_value = 13318 TOKEN_STRING_INITIALIZER(struct cmd_set_mplsogre_decap_result, 13319 ip_version, "ipv4#ipv6"); 13320 13321 static void cmd_set_mplsogre_decap_parsed(void *parsed_result, 13322 __rte_unused struct cmdline *cl, 13323 __rte_unused void *data) 13324 { 13325 struct cmd_set_mplsogre_decap_result *res = parsed_result; 13326 13327 if (strcmp(res->mplsogre, "mplsogre_decap") == 0) 13328 mplsogre_decap_conf.select_vlan = 0; 13329 else if (strcmp(res->mplsogre, "mplsogre_decap-with-vlan") == 0) 13330 mplsogre_decap_conf.select_vlan = 1; 13331 if (strcmp(res->ip_version, "ipv4") == 0) 13332 mplsogre_decap_conf.select_ipv4 = 1; 13333 else if (strcmp(res->ip_version, "ipv6") == 0) 13334 mplsogre_decap_conf.select_ipv4 = 0; 13335 } 13336 13337 cmdline_parse_inst_t cmd_set_mplsogre_decap = { 13338 .f = cmd_set_mplsogre_decap_parsed, 13339 .data = NULL, 13340 .help_str = "set mplsogre_decap ip-version ipv4|ipv6", 13341 .tokens = { 13342 (void *)&cmd_set_mplsogre_decap_set, 13343 (void *)&cmd_set_mplsogre_decap_mplsogre_decap, 13344 (void *)&cmd_set_mplsogre_decap_ip_version, 13345 (void *)&cmd_set_mplsogre_decap_ip_version_value, 13346 NULL, 13347 }, 13348 }; 13349 13350 cmdline_parse_inst_t cmd_set_mplsogre_decap_with_vlan = { 13351 .f = cmd_set_mplsogre_decap_parsed, 13352 .data = NULL, 13353 .help_str = "set mplsogre_decap-with-vlan ip-version ipv4|ipv6", 13354 .tokens = { 13355 (void *)&cmd_set_mplsogre_decap_set, 13356 (void *)&cmd_set_mplsogre_decap_mplsogre_decap_with_vlan, 13357 (void *)&cmd_set_mplsogre_decap_ip_version, 13358 (void *)&cmd_set_mplsogre_decap_ip_version_value, 13359 NULL, 13360 }, 13361 }; 13362 13363 /** Set MPLSoUDP encapsulation details */ 13364 struct cmd_set_mplsoudp_encap_result { 13365 cmdline_fixed_string_t set; 13366 cmdline_fixed_string_t mplsoudp; 13367 cmdline_fixed_string_t pos_token; 13368 cmdline_fixed_string_t ip_version; 13369 uint32_t vlan_present:1; 13370 uint32_t label; 13371 uint16_t udp_src; 13372 uint16_t udp_dst; 13373 cmdline_ipaddr_t ip_src; 13374 cmdline_ipaddr_t ip_dst; 13375 uint16_t tci; 13376 struct rte_ether_addr eth_src; 13377 struct rte_ether_addr eth_dst; 13378 }; 13379 13380 cmdline_parse_token_string_t cmd_set_mplsoudp_encap_set = 13381 TOKEN_STRING_INITIALIZER(struct cmd_set_mplsoudp_encap_result, set, 13382 "set"); 13383 cmdline_parse_token_string_t cmd_set_mplsoudp_encap_mplsoudp_encap = 13384 TOKEN_STRING_INITIALIZER(struct cmd_set_mplsoudp_encap_result, mplsoudp, 13385 "mplsoudp_encap"); 13386 cmdline_parse_token_string_t cmd_set_mplsoudp_encap_mplsoudp_encap_with_vlan = 13387 TOKEN_STRING_INITIALIZER(struct cmd_set_mplsoudp_encap_result, 13388 mplsoudp, "mplsoudp_encap-with-vlan"); 13389 cmdline_parse_token_string_t cmd_set_mplsoudp_encap_ip_version = 13390 TOKEN_STRING_INITIALIZER(struct cmd_set_mplsoudp_encap_result, 13391 pos_token, "ip-version"); 13392 cmdline_parse_token_string_t cmd_set_mplsoudp_encap_ip_version_value = 13393 TOKEN_STRING_INITIALIZER(struct cmd_set_mplsoudp_encap_result, 13394 ip_version, "ipv4#ipv6"); 13395 cmdline_parse_token_string_t cmd_set_mplsoudp_encap_label = 13396 TOKEN_STRING_INITIALIZER(struct cmd_set_mplsoudp_encap_result, 13397 pos_token, "label"); 13398 cmdline_parse_token_num_t cmd_set_mplsoudp_encap_label_value = 13399 TOKEN_NUM_INITIALIZER(struct cmd_set_mplsoudp_encap_result, label, 13400 RTE_UINT32); 13401 cmdline_parse_token_string_t cmd_set_mplsoudp_encap_udp_src = 13402 TOKEN_STRING_INITIALIZER(struct cmd_set_mplsoudp_encap_result, 13403 pos_token, "udp-src"); 13404 cmdline_parse_token_num_t cmd_set_mplsoudp_encap_udp_src_value = 13405 TOKEN_NUM_INITIALIZER(struct cmd_set_mplsoudp_encap_result, udp_src, 13406 RTE_UINT16); 13407 cmdline_parse_token_string_t cmd_set_mplsoudp_encap_udp_dst = 13408 TOKEN_STRING_INITIALIZER(struct cmd_set_mplsoudp_encap_result, 13409 pos_token, "udp-dst"); 13410 cmdline_parse_token_num_t cmd_set_mplsoudp_encap_udp_dst_value = 13411 TOKEN_NUM_INITIALIZER(struct cmd_set_mplsoudp_encap_result, udp_dst, 13412 RTE_UINT16); 13413 cmdline_parse_token_string_t cmd_set_mplsoudp_encap_ip_src = 13414 TOKEN_STRING_INITIALIZER(struct cmd_set_mplsoudp_encap_result, 13415 pos_token, "ip-src"); 13416 cmdline_parse_token_ipaddr_t cmd_set_mplsoudp_encap_ip_src_value = 13417 TOKEN_IPADDR_INITIALIZER(struct cmd_set_mplsoudp_encap_result, ip_src); 13418 cmdline_parse_token_string_t cmd_set_mplsoudp_encap_ip_dst = 13419 TOKEN_STRING_INITIALIZER(struct cmd_set_mplsoudp_encap_result, 13420 pos_token, "ip-dst"); 13421 cmdline_parse_token_ipaddr_t cmd_set_mplsoudp_encap_ip_dst_value = 13422 TOKEN_IPADDR_INITIALIZER(struct cmd_set_mplsoudp_encap_result, ip_dst); 13423 cmdline_parse_token_string_t cmd_set_mplsoudp_encap_vlan = 13424 TOKEN_STRING_INITIALIZER(struct cmd_set_mplsoudp_encap_result, 13425 pos_token, "vlan-tci"); 13426 cmdline_parse_token_num_t cmd_set_mplsoudp_encap_vlan_value = 13427 TOKEN_NUM_INITIALIZER(struct cmd_set_mplsoudp_encap_result, tci, 13428 RTE_UINT16); 13429 cmdline_parse_token_string_t cmd_set_mplsoudp_encap_eth_src = 13430 TOKEN_STRING_INITIALIZER(struct cmd_set_mplsoudp_encap_result, 13431 pos_token, "eth-src"); 13432 cmdline_parse_token_etheraddr_t cmd_set_mplsoudp_encap_eth_src_value = 13433 TOKEN_ETHERADDR_INITIALIZER(struct cmd_set_mplsoudp_encap_result, 13434 eth_src); 13435 cmdline_parse_token_string_t cmd_set_mplsoudp_encap_eth_dst = 13436 TOKEN_STRING_INITIALIZER(struct cmd_set_mplsoudp_encap_result, 13437 pos_token, "eth-dst"); 13438 cmdline_parse_token_etheraddr_t cmd_set_mplsoudp_encap_eth_dst_value = 13439 TOKEN_ETHERADDR_INITIALIZER(struct cmd_set_mplsoudp_encap_result, 13440 eth_dst); 13441 13442 static void cmd_set_mplsoudp_encap_parsed(void *parsed_result, 13443 __rte_unused struct cmdline *cl, 13444 __rte_unused void *data) 13445 { 13446 struct cmd_set_mplsoudp_encap_result *res = parsed_result; 13447 union { 13448 uint32_t mplsoudp_label; 13449 uint8_t label[4]; 13450 } id = { 13451 .mplsoudp_label = rte_cpu_to_be_32(res->label<<12), 13452 }; 13453 13454 if (strcmp(res->mplsoudp, "mplsoudp_encap") == 0) 13455 mplsoudp_encap_conf.select_vlan = 0; 13456 else if (strcmp(res->mplsoudp, "mplsoudp_encap-with-vlan") == 0) 13457 mplsoudp_encap_conf.select_vlan = 1; 13458 if (strcmp(res->ip_version, "ipv4") == 0) 13459 mplsoudp_encap_conf.select_ipv4 = 1; 13460 else if (strcmp(res->ip_version, "ipv6") == 0) 13461 mplsoudp_encap_conf.select_ipv4 = 0; 13462 else 13463 return; 13464 rte_memcpy(mplsoudp_encap_conf.label, &id.label, 3); 13465 mplsoudp_encap_conf.udp_src = rte_cpu_to_be_16(res->udp_src); 13466 mplsoudp_encap_conf.udp_dst = rte_cpu_to_be_16(res->udp_dst); 13467 if (mplsoudp_encap_conf.select_ipv4) { 13468 IPV4_ADDR_TO_UINT(res->ip_src, mplsoudp_encap_conf.ipv4_src); 13469 IPV4_ADDR_TO_UINT(res->ip_dst, mplsoudp_encap_conf.ipv4_dst); 13470 } else { 13471 IPV6_ADDR_TO_ARRAY(res->ip_src, mplsoudp_encap_conf.ipv6_src); 13472 IPV6_ADDR_TO_ARRAY(res->ip_dst, mplsoudp_encap_conf.ipv6_dst); 13473 } 13474 if (mplsoudp_encap_conf.select_vlan) 13475 mplsoudp_encap_conf.vlan_tci = rte_cpu_to_be_16(res->tci); 13476 rte_memcpy(mplsoudp_encap_conf.eth_src, res->eth_src.addr_bytes, 13477 RTE_ETHER_ADDR_LEN); 13478 rte_memcpy(mplsoudp_encap_conf.eth_dst, res->eth_dst.addr_bytes, 13479 RTE_ETHER_ADDR_LEN); 13480 } 13481 13482 cmdline_parse_inst_t cmd_set_mplsoudp_encap = { 13483 .f = cmd_set_mplsoudp_encap_parsed, 13484 .data = NULL, 13485 .help_str = "set mplsoudp_encap ip-version ipv4|ipv6 label <label>" 13486 " udp-src <udp-src> udp-dst <udp-dst> ip-src <ip-src>" 13487 " ip-dst <ip-dst> eth-src <eth-src> eth-dst <eth-dst>", 13488 .tokens = { 13489 (void *)&cmd_set_mplsoudp_encap_set, 13490 (void *)&cmd_set_mplsoudp_encap_mplsoudp_encap, 13491 (void *)&cmd_set_mplsoudp_encap_ip_version, 13492 (void *)&cmd_set_mplsoudp_encap_ip_version_value, 13493 (void *)&cmd_set_mplsoudp_encap_label, 13494 (void *)&cmd_set_mplsoudp_encap_label_value, 13495 (void *)&cmd_set_mplsoudp_encap_udp_src, 13496 (void *)&cmd_set_mplsoudp_encap_udp_src_value, 13497 (void *)&cmd_set_mplsoudp_encap_udp_dst, 13498 (void *)&cmd_set_mplsoudp_encap_udp_dst_value, 13499 (void *)&cmd_set_mplsoudp_encap_ip_src, 13500 (void *)&cmd_set_mplsoudp_encap_ip_src_value, 13501 (void *)&cmd_set_mplsoudp_encap_ip_dst, 13502 (void *)&cmd_set_mplsoudp_encap_ip_dst_value, 13503 (void *)&cmd_set_mplsoudp_encap_eth_src, 13504 (void *)&cmd_set_mplsoudp_encap_eth_src_value, 13505 (void *)&cmd_set_mplsoudp_encap_eth_dst, 13506 (void *)&cmd_set_mplsoudp_encap_eth_dst_value, 13507 NULL, 13508 }, 13509 }; 13510 13511 cmdline_parse_inst_t cmd_set_mplsoudp_encap_with_vlan = { 13512 .f = cmd_set_mplsoudp_encap_parsed, 13513 .data = NULL, 13514 .help_str = "set mplsoudp_encap-with-vlan ip-version ipv4|ipv6" 13515 " label <label> udp-src <udp-src> udp-dst <udp-dst>" 13516 " ip-src <ip-src> ip-dst <ip-dst> vlan-tci <vlan-tci>" 13517 " eth-src <eth-src> eth-dst <eth-dst>", 13518 .tokens = { 13519 (void *)&cmd_set_mplsoudp_encap_set, 13520 (void *)&cmd_set_mplsoudp_encap_mplsoudp_encap_with_vlan, 13521 (void *)&cmd_set_mplsoudp_encap_ip_version, 13522 (void *)&cmd_set_mplsoudp_encap_ip_version_value, 13523 (void *)&cmd_set_mplsoudp_encap_label, 13524 (void *)&cmd_set_mplsoudp_encap_label_value, 13525 (void *)&cmd_set_mplsoudp_encap_udp_src, 13526 (void *)&cmd_set_mplsoudp_encap_udp_src_value, 13527 (void *)&cmd_set_mplsoudp_encap_udp_dst, 13528 (void *)&cmd_set_mplsoudp_encap_udp_dst_value, 13529 (void *)&cmd_set_mplsoudp_encap_ip_src, 13530 (void *)&cmd_set_mplsoudp_encap_ip_src_value, 13531 (void *)&cmd_set_mplsoudp_encap_ip_dst, 13532 (void *)&cmd_set_mplsoudp_encap_ip_dst_value, 13533 (void *)&cmd_set_mplsoudp_encap_vlan, 13534 (void *)&cmd_set_mplsoudp_encap_vlan_value, 13535 (void *)&cmd_set_mplsoudp_encap_eth_src, 13536 (void *)&cmd_set_mplsoudp_encap_eth_src_value, 13537 (void *)&cmd_set_mplsoudp_encap_eth_dst, 13538 (void *)&cmd_set_mplsoudp_encap_eth_dst_value, 13539 NULL, 13540 }, 13541 }; 13542 13543 /** Set MPLSoUDP decapsulation details */ 13544 struct cmd_set_mplsoudp_decap_result { 13545 cmdline_fixed_string_t set; 13546 cmdline_fixed_string_t mplsoudp; 13547 cmdline_fixed_string_t pos_token; 13548 cmdline_fixed_string_t ip_version; 13549 uint32_t vlan_present:1; 13550 }; 13551 13552 cmdline_parse_token_string_t cmd_set_mplsoudp_decap_set = 13553 TOKEN_STRING_INITIALIZER(struct cmd_set_mplsoudp_decap_result, set, 13554 "set"); 13555 cmdline_parse_token_string_t cmd_set_mplsoudp_decap_mplsoudp_decap = 13556 TOKEN_STRING_INITIALIZER(struct cmd_set_mplsoudp_decap_result, mplsoudp, 13557 "mplsoudp_decap"); 13558 cmdline_parse_token_string_t cmd_set_mplsoudp_decap_mplsoudp_decap_with_vlan = 13559 TOKEN_STRING_INITIALIZER(struct cmd_set_mplsoudp_decap_result, 13560 mplsoudp, "mplsoudp_decap-with-vlan"); 13561 cmdline_parse_token_string_t cmd_set_mplsoudp_decap_ip_version = 13562 TOKEN_STRING_INITIALIZER(struct cmd_set_mplsoudp_decap_result, 13563 pos_token, "ip-version"); 13564 cmdline_parse_token_string_t cmd_set_mplsoudp_decap_ip_version_value = 13565 TOKEN_STRING_INITIALIZER(struct cmd_set_mplsoudp_decap_result, 13566 ip_version, "ipv4#ipv6"); 13567 13568 static void cmd_set_mplsoudp_decap_parsed(void *parsed_result, 13569 __rte_unused struct cmdline *cl, 13570 __rte_unused void *data) 13571 { 13572 struct cmd_set_mplsoudp_decap_result *res = parsed_result; 13573 13574 if (strcmp(res->mplsoudp, "mplsoudp_decap") == 0) 13575 mplsoudp_decap_conf.select_vlan = 0; 13576 else if (strcmp(res->mplsoudp, "mplsoudp_decap-with-vlan") == 0) 13577 mplsoudp_decap_conf.select_vlan = 1; 13578 if (strcmp(res->ip_version, "ipv4") == 0) 13579 mplsoudp_decap_conf.select_ipv4 = 1; 13580 else if (strcmp(res->ip_version, "ipv6") == 0) 13581 mplsoudp_decap_conf.select_ipv4 = 0; 13582 } 13583 13584 cmdline_parse_inst_t cmd_set_mplsoudp_decap = { 13585 .f = cmd_set_mplsoudp_decap_parsed, 13586 .data = NULL, 13587 .help_str = "set mplsoudp_decap ip-version ipv4|ipv6", 13588 .tokens = { 13589 (void *)&cmd_set_mplsoudp_decap_set, 13590 (void *)&cmd_set_mplsoudp_decap_mplsoudp_decap, 13591 (void *)&cmd_set_mplsoudp_decap_ip_version, 13592 (void *)&cmd_set_mplsoudp_decap_ip_version_value, 13593 NULL, 13594 }, 13595 }; 13596 13597 cmdline_parse_inst_t cmd_set_mplsoudp_decap_with_vlan = { 13598 .f = cmd_set_mplsoudp_decap_parsed, 13599 .data = NULL, 13600 .help_str = "set mplsoudp_decap-with-vlan ip-version ipv4|ipv6", 13601 .tokens = { 13602 (void *)&cmd_set_mplsoudp_decap_set, 13603 (void *)&cmd_set_mplsoudp_decap_mplsoudp_decap_with_vlan, 13604 (void *)&cmd_set_mplsoudp_decap_ip_version, 13605 (void *)&cmd_set_mplsoudp_decap_ip_version_value, 13606 NULL, 13607 }, 13608 }; 13609 13610 /* Strict link priority scheduling mode setting */ 13611 static void 13612 cmd_strict_link_prio_parsed( 13613 void *parsed_result, 13614 __rte_unused struct cmdline *cl, 13615 __rte_unused void *data) 13616 { 13617 struct cmd_vf_tc_bw_result *res = parsed_result; 13618 int ret = -ENOTSUP; 13619 13620 if (port_id_is_invalid(res->port_id, ENABLED_WARN)) 13621 return; 13622 13623 #ifdef RTE_NET_I40E 13624 ret = rte_pmd_i40e_set_tc_strict_prio(res->port_id, res->tc_map); 13625 #endif 13626 13627 switch (ret) { 13628 case 0: 13629 break; 13630 case -EINVAL: 13631 printf("invalid tc_bitmap 0x%x\n", res->tc_map); 13632 break; 13633 case -ENODEV: 13634 printf("invalid port_id %d\n", res->port_id); 13635 break; 13636 case -ENOTSUP: 13637 printf("function not implemented\n"); 13638 break; 13639 default: 13640 printf("programming error: (%s)\n", strerror(-ret)); 13641 } 13642 } 13643 13644 cmdline_parse_inst_t cmd_strict_link_prio = { 13645 .f = cmd_strict_link_prio_parsed, 13646 .data = NULL, 13647 .help_str = "set tx strict-link-priority <port_id> <tc_bitmap>", 13648 .tokens = { 13649 (void *)&cmd_vf_tc_bw_set, 13650 (void *)&cmd_vf_tc_bw_tx, 13651 (void *)&cmd_vf_tc_bw_strict_link_prio, 13652 (void *)&cmd_vf_tc_bw_port_id, 13653 (void *)&cmd_vf_tc_bw_tc_map, 13654 NULL, 13655 }, 13656 }; 13657 13658 /* Load dynamic device personalization*/ 13659 struct cmd_ddp_add_result { 13660 cmdline_fixed_string_t ddp; 13661 cmdline_fixed_string_t add; 13662 portid_t port_id; 13663 char filepath[]; 13664 }; 13665 13666 cmdline_parse_token_string_t cmd_ddp_add_ddp = 13667 TOKEN_STRING_INITIALIZER(struct cmd_ddp_add_result, ddp, "ddp"); 13668 cmdline_parse_token_string_t cmd_ddp_add_add = 13669 TOKEN_STRING_INITIALIZER(struct cmd_ddp_add_result, add, "add"); 13670 cmdline_parse_token_num_t cmd_ddp_add_port_id = 13671 TOKEN_NUM_INITIALIZER(struct cmd_ddp_add_result, port_id, 13672 RTE_UINT16); 13673 cmdline_parse_token_string_t cmd_ddp_add_filepath = 13674 TOKEN_STRING_INITIALIZER(struct cmd_ddp_add_result, filepath, NULL); 13675 13676 static void 13677 cmd_ddp_add_parsed( 13678 void *parsed_result, 13679 __rte_unused struct cmdline *cl, 13680 __rte_unused void *data) 13681 { 13682 struct cmd_ddp_add_result *res = parsed_result; 13683 uint8_t *buff; 13684 uint32_t size; 13685 char *filepath; 13686 char *file_fld[2]; 13687 int file_num; 13688 int ret = -ENOTSUP; 13689 13690 if (!all_ports_stopped()) { 13691 printf("Please stop all ports first\n"); 13692 return; 13693 } 13694 13695 filepath = strdup(res->filepath); 13696 if (filepath == NULL) { 13697 printf("Failed to allocate memory\n"); 13698 return; 13699 } 13700 file_num = rte_strsplit(filepath, strlen(filepath), file_fld, 2, ','); 13701 13702 buff = open_file(file_fld[0], &size); 13703 if (!buff) { 13704 free((void *)filepath); 13705 return; 13706 } 13707 13708 #ifdef RTE_NET_I40E 13709 if (ret == -ENOTSUP) 13710 ret = rte_pmd_i40e_process_ddp_package(res->port_id, 13711 buff, size, 13712 RTE_PMD_I40E_PKG_OP_WR_ADD); 13713 #endif 13714 13715 if (ret == -EEXIST) 13716 printf("Profile has already existed.\n"); 13717 else if (ret < 0) 13718 printf("Failed to load profile.\n"); 13719 else if (file_num == 2) 13720 save_file(file_fld[1], buff, size); 13721 13722 close_file(buff); 13723 free((void *)filepath); 13724 } 13725 13726 cmdline_parse_inst_t cmd_ddp_add = { 13727 .f = cmd_ddp_add_parsed, 13728 .data = NULL, 13729 .help_str = "ddp add <port_id> <profile_path[,backup_profile_path]>", 13730 .tokens = { 13731 (void *)&cmd_ddp_add_ddp, 13732 (void *)&cmd_ddp_add_add, 13733 (void *)&cmd_ddp_add_port_id, 13734 (void *)&cmd_ddp_add_filepath, 13735 NULL, 13736 }, 13737 }; 13738 13739 /* Delete dynamic device personalization*/ 13740 struct cmd_ddp_del_result { 13741 cmdline_fixed_string_t ddp; 13742 cmdline_fixed_string_t del; 13743 portid_t port_id; 13744 char filepath[]; 13745 }; 13746 13747 cmdline_parse_token_string_t cmd_ddp_del_ddp = 13748 TOKEN_STRING_INITIALIZER(struct cmd_ddp_del_result, ddp, "ddp"); 13749 cmdline_parse_token_string_t cmd_ddp_del_del = 13750 TOKEN_STRING_INITIALIZER(struct cmd_ddp_del_result, del, "del"); 13751 cmdline_parse_token_num_t cmd_ddp_del_port_id = 13752 TOKEN_NUM_INITIALIZER(struct cmd_ddp_del_result, port_id, RTE_UINT16); 13753 cmdline_parse_token_string_t cmd_ddp_del_filepath = 13754 TOKEN_STRING_INITIALIZER(struct cmd_ddp_del_result, filepath, NULL); 13755 13756 static void 13757 cmd_ddp_del_parsed( 13758 void *parsed_result, 13759 __rte_unused struct cmdline *cl, 13760 __rte_unused void *data) 13761 { 13762 struct cmd_ddp_del_result *res = parsed_result; 13763 uint8_t *buff; 13764 uint32_t size; 13765 int ret = -ENOTSUP; 13766 13767 if (!all_ports_stopped()) { 13768 printf("Please stop all ports first\n"); 13769 return; 13770 } 13771 13772 buff = open_file(res->filepath, &size); 13773 if (!buff) 13774 return; 13775 13776 #ifdef RTE_NET_I40E 13777 if (ret == -ENOTSUP) 13778 ret = rte_pmd_i40e_process_ddp_package(res->port_id, 13779 buff, size, 13780 RTE_PMD_I40E_PKG_OP_WR_DEL); 13781 #endif 13782 13783 if (ret == -EACCES) 13784 printf("Profile does not exist.\n"); 13785 else if (ret < 0) 13786 printf("Failed to delete profile.\n"); 13787 13788 close_file(buff); 13789 } 13790 13791 cmdline_parse_inst_t cmd_ddp_del = { 13792 .f = cmd_ddp_del_parsed, 13793 .data = NULL, 13794 .help_str = "ddp del <port_id> <backup_profile_path>", 13795 .tokens = { 13796 (void *)&cmd_ddp_del_ddp, 13797 (void *)&cmd_ddp_del_del, 13798 (void *)&cmd_ddp_del_port_id, 13799 (void *)&cmd_ddp_del_filepath, 13800 NULL, 13801 }, 13802 }; 13803 13804 /* Get dynamic device personalization profile info */ 13805 struct cmd_ddp_info_result { 13806 cmdline_fixed_string_t ddp; 13807 cmdline_fixed_string_t get; 13808 cmdline_fixed_string_t info; 13809 char filepath[]; 13810 }; 13811 13812 cmdline_parse_token_string_t cmd_ddp_info_ddp = 13813 TOKEN_STRING_INITIALIZER(struct cmd_ddp_info_result, ddp, "ddp"); 13814 cmdline_parse_token_string_t cmd_ddp_info_get = 13815 TOKEN_STRING_INITIALIZER(struct cmd_ddp_info_result, get, "get"); 13816 cmdline_parse_token_string_t cmd_ddp_info_info = 13817 TOKEN_STRING_INITIALIZER(struct cmd_ddp_info_result, info, "info"); 13818 cmdline_parse_token_string_t cmd_ddp_info_filepath = 13819 TOKEN_STRING_INITIALIZER(struct cmd_ddp_info_result, filepath, NULL); 13820 13821 static void 13822 cmd_ddp_info_parsed( 13823 void *parsed_result, 13824 __rte_unused struct cmdline *cl, 13825 __rte_unused void *data) 13826 { 13827 struct cmd_ddp_info_result *res = parsed_result; 13828 uint8_t *pkg; 13829 uint32_t pkg_size; 13830 int ret = -ENOTSUP; 13831 #ifdef RTE_NET_I40E 13832 uint32_t i, j, n; 13833 uint8_t *buff; 13834 uint32_t buff_size = 0; 13835 struct rte_pmd_i40e_profile_info info; 13836 uint32_t dev_num = 0; 13837 struct rte_pmd_i40e_ddp_device_id *devs; 13838 uint32_t proto_num = 0; 13839 struct rte_pmd_i40e_proto_info *proto = NULL; 13840 uint32_t pctype_num = 0; 13841 struct rte_pmd_i40e_ptype_info *pctype; 13842 uint32_t ptype_num = 0; 13843 struct rte_pmd_i40e_ptype_info *ptype; 13844 uint8_t proto_id; 13845 13846 #endif 13847 13848 pkg = open_file(res->filepath, &pkg_size); 13849 if (!pkg) 13850 return; 13851 13852 #ifdef RTE_NET_I40E 13853 ret = rte_pmd_i40e_get_ddp_info(pkg, pkg_size, 13854 (uint8_t *)&info, sizeof(info), 13855 RTE_PMD_I40E_PKG_INFO_GLOBAL_HEADER); 13856 if (!ret) { 13857 printf("Global Track id: 0x%x\n", info.track_id); 13858 printf("Global Version: %d.%d.%d.%d\n", 13859 info.version.major, 13860 info.version.minor, 13861 info.version.update, 13862 info.version.draft); 13863 printf("Global Package name: %s\n\n", info.name); 13864 } 13865 13866 ret = rte_pmd_i40e_get_ddp_info(pkg, pkg_size, 13867 (uint8_t *)&info, sizeof(info), 13868 RTE_PMD_I40E_PKG_INFO_HEADER); 13869 if (!ret) { 13870 printf("i40e Profile Track id: 0x%x\n", info.track_id); 13871 printf("i40e Profile Version: %d.%d.%d.%d\n", 13872 info.version.major, 13873 info.version.minor, 13874 info.version.update, 13875 info.version.draft); 13876 printf("i40e Profile name: %s\n\n", info.name); 13877 } 13878 13879 ret = rte_pmd_i40e_get_ddp_info(pkg, pkg_size, 13880 (uint8_t *)&buff_size, sizeof(buff_size), 13881 RTE_PMD_I40E_PKG_INFO_GLOBAL_NOTES_SIZE); 13882 if (!ret && buff_size) { 13883 buff = (uint8_t *)malloc(buff_size); 13884 if (buff) { 13885 ret = rte_pmd_i40e_get_ddp_info(pkg, pkg_size, 13886 buff, buff_size, 13887 RTE_PMD_I40E_PKG_INFO_GLOBAL_NOTES); 13888 if (!ret) 13889 printf("Package Notes:\n%s\n\n", buff); 13890 free(buff); 13891 } 13892 } 13893 13894 ret = rte_pmd_i40e_get_ddp_info(pkg, pkg_size, 13895 (uint8_t *)&dev_num, sizeof(dev_num), 13896 RTE_PMD_I40E_PKG_INFO_DEVID_NUM); 13897 if (!ret && dev_num) { 13898 buff_size = dev_num * sizeof(struct rte_pmd_i40e_ddp_device_id); 13899 devs = (struct rte_pmd_i40e_ddp_device_id *)malloc(buff_size); 13900 if (devs) { 13901 ret = rte_pmd_i40e_get_ddp_info(pkg, pkg_size, 13902 (uint8_t *)devs, buff_size, 13903 RTE_PMD_I40E_PKG_INFO_DEVID_LIST); 13904 if (!ret) { 13905 printf("List of supported devices:\n"); 13906 for (i = 0; i < dev_num; i++) { 13907 printf(" %04X:%04X %04X:%04X\n", 13908 devs[i].vendor_dev_id >> 16, 13909 devs[i].vendor_dev_id & 0xFFFF, 13910 devs[i].sub_vendor_dev_id >> 16, 13911 devs[i].sub_vendor_dev_id & 0xFFFF); 13912 } 13913 printf("\n"); 13914 } 13915 free(devs); 13916 } 13917 } 13918 13919 /* get information about protocols and packet types */ 13920 ret = rte_pmd_i40e_get_ddp_info(pkg, pkg_size, 13921 (uint8_t *)&proto_num, sizeof(proto_num), 13922 RTE_PMD_I40E_PKG_INFO_PROTOCOL_NUM); 13923 if (ret || !proto_num) 13924 goto no_print_return; 13925 13926 buff_size = proto_num * sizeof(struct rte_pmd_i40e_proto_info); 13927 proto = (struct rte_pmd_i40e_proto_info *)malloc(buff_size); 13928 if (!proto) 13929 goto no_print_return; 13930 13931 ret = rte_pmd_i40e_get_ddp_info(pkg, pkg_size, (uint8_t *)proto, 13932 buff_size, 13933 RTE_PMD_I40E_PKG_INFO_PROTOCOL_LIST); 13934 if (!ret) { 13935 printf("List of used protocols:\n"); 13936 for (i = 0; i < proto_num; i++) 13937 printf(" %2u: %s\n", proto[i].proto_id, 13938 proto[i].name); 13939 printf("\n"); 13940 } 13941 ret = rte_pmd_i40e_get_ddp_info(pkg, pkg_size, 13942 (uint8_t *)&pctype_num, sizeof(pctype_num), 13943 RTE_PMD_I40E_PKG_INFO_PCTYPE_NUM); 13944 if (ret || !pctype_num) 13945 goto no_print_pctypes; 13946 13947 buff_size = pctype_num * sizeof(struct rte_pmd_i40e_ptype_info); 13948 pctype = (struct rte_pmd_i40e_ptype_info *)malloc(buff_size); 13949 if (!pctype) 13950 goto no_print_pctypes; 13951 13952 ret = rte_pmd_i40e_get_ddp_info(pkg, pkg_size, (uint8_t *)pctype, 13953 buff_size, 13954 RTE_PMD_I40E_PKG_INFO_PCTYPE_LIST); 13955 if (ret) { 13956 free(pctype); 13957 goto no_print_pctypes; 13958 } 13959 13960 printf("List of defined packet classification types:\n"); 13961 for (i = 0; i < pctype_num; i++) { 13962 printf(" %2u:", pctype[i].ptype_id); 13963 for (j = 0; j < RTE_PMD_I40E_PROTO_NUM; j++) { 13964 proto_id = pctype[i].protocols[j]; 13965 if (proto_id != RTE_PMD_I40E_PROTO_UNUSED) { 13966 for (n = 0; n < proto_num; n++) { 13967 if (proto[n].proto_id == proto_id) { 13968 printf(" %s", proto[n].name); 13969 break; 13970 } 13971 } 13972 } 13973 } 13974 printf("\n"); 13975 } 13976 printf("\n"); 13977 free(pctype); 13978 13979 no_print_pctypes: 13980 13981 ret = rte_pmd_i40e_get_ddp_info(pkg, pkg_size, (uint8_t *)&ptype_num, 13982 sizeof(ptype_num), 13983 RTE_PMD_I40E_PKG_INFO_PTYPE_NUM); 13984 if (ret || !ptype_num) 13985 goto no_print_return; 13986 13987 buff_size = ptype_num * sizeof(struct rte_pmd_i40e_ptype_info); 13988 ptype = (struct rte_pmd_i40e_ptype_info *)malloc(buff_size); 13989 if (!ptype) 13990 goto no_print_return; 13991 13992 ret = rte_pmd_i40e_get_ddp_info(pkg, pkg_size, (uint8_t *)ptype, 13993 buff_size, 13994 RTE_PMD_I40E_PKG_INFO_PTYPE_LIST); 13995 if (ret) { 13996 free(ptype); 13997 goto no_print_return; 13998 } 13999 printf("List of defined packet types:\n"); 14000 for (i = 0; i < ptype_num; i++) { 14001 printf(" %2u:", ptype[i].ptype_id); 14002 for (j = 0; j < RTE_PMD_I40E_PROTO_NUM; j++) { 14003 proto_id = ptype[i].protocols[j]; 14004 if (proto_id != RTE_PMD_I40E_PROTO_UNUSED) { 14005 for (n = 0; n < proto_num; n++) { 14006 if (proto[n].proto_id == proto_id) { 14007 printf(" %s", proto[n].name); 14008 break; 14009 } 14010 } 14011 } 14012 } 14013 printf("\n"); 14014 } 14015 free(ptype); 14016 printf("\n"); 14017 14018 ret = 0; 14019 no_print_return: 14020 if (proto) 14021 free(proto); 14022 #endif 14023 if (ret == -ENOTSUP) 14024 printf("Function not supported in PMD driver\n"); 14025 close_file(pkg); 14026 } 14027 14028 cmdline_parse_inst_t cmd_ddp_get_info = { 14029 .f = cmd_ddp_info_parsed, 14030 .data = NULL, 14031 .help_str = "ddp get info <profile_path>", 14032 .tokens = { 14033 (void *)&cmd_ddp_info_ddp, 14034 (void *)&cmd_ddp_info_get, 14035 (void *)&cmd_ddp_info_info, 14036 (void *)&cmd_ddp_info_filepath, 14037 NULL, 14038 }, 14039 }; 14040 14041 /* Get dynamic device personalization profile info list*/ 14042 #define PROFILE_INFO_SIZE 48 14043 #define MAX_PROFILE_NUM 16 14044 14045 struct cmd_ddp_get_list_result { 14046 cmdline_fixed_string_t ddp; 14047 cmdline_fixed_string_t get; 14048 cmdline_fixed_string_t list; 14049 portid_t port_id; 14050 }; 14051 14052 cmdline_parse_token_string_t cmd_ddp_get_list_ddp = 14053 TOKEN_STRING_INITIALIZER(struct cmd_ddp_get_list_result, ddp, "ddp"); 14054 cmdline_parse_token_string_t cmd_ddp_get_list_get = 14055 TOKEN_STRING_INITIALIZER(struct cmd_ddp_get_list_result, get, "get"); 14056 cmdline_parse_token_string_t cmd_ddp_get_list_list = 14057 TOKEN_STRING_INITIALIZER(struct cmd_ddp_get_list_result, list, "list"); 14058 cmdline_parse_token_num_t cmd_ddp_get_list_port_id = 14059 TOKEN_NUM_INITIALIZER(struct cmd_ddp_get_list_result, port_id, 14060 RTE_UINT16); 14061 14062 static void 14063 cmd_ddp_get_list_parsed( 14064 __rte_unused void *parsed_result, 14065 __rte_unused struct cmdline *cl, 14066 __rte_unused void *data) 14067 { 14068 #ifdef RTE_NET_I40E 14069 struct cmd_ddp_get_list_result *res = parsed_result; 14070 struct rte_pmd_i40e_profile_list *p_list; 14071 struct rte_pmd_i40e_profile_info *p_info; 14072 uint32_t p_num; 14073 uint32_t size; 14074 uint32_t i; 14075 #endif 14076 int ret = -ENOTSUP; 14077 14078 #ifdef RTE_NET_I40E 14079 size = PROFILE_INFO_SIZE * MAX_PROFILE_NUM + 4; 14080 p_list = (struct rte_pmd_i40e_profile_list *)malloc(size); 14081 if (!p_list) { 14082 printf("%s: Failed to malloc buffer\n", __func__); 14083 return; 14084 } 14085 14086 if (ret == -ENOTSUP) 14087 ret = rte_pmd_i40e_get_ddp_list(res->port_id, 14088 (uint8_t *)p_list, size); 14089 14090 if (!ret) { 14091 p_num = p_list->p_count; 14092 printf("Profile number is: %d\n\n", p_num); 14093 14094 for (i = 0; i < p_num; i++) { 14095 p_info = &p_list->p_info[i]; 14096 printf("Profile %d:\n", i); 14097 printf("Track id: 0x%x\n", p_info->track_id); 14098 printf("Version: %d.%d.%d.%d\n", 14099 p_info->version.major, 14100 p_info->version.minor, 14101 p_info->version.update, 14102 p_info->version.draft); 14103 printf("Profile name: %s\n\n", p_info->name); 14104 } 14105 } 14106 14107 free(p_list); 14108 #endif 14109 14110 if (ret < 0) 14111 printf("Failed to get ddp list\n"); 14112 } 14113 14114 cmdline_parse_inst_t cmd_ddp_get_list = { 14115 .f = cmd_ddp_get_list_parsed, 14116 .data = NULL, 14117 .help_str = "ddp get list <port_id>", 14118 .tokens = { 14119 (void *)&cmd_ddp_get_list_ddp, 14120 (void *)&cmd_ddp_get_list_get, 14121 (void *)&cmd_ddp_get_list_list, 14122 (void *)&cmd_ddp_get_list_port_id, 14123 NULL, 14124 }, 14125 }; 14126 14127 /* Configure input set */ 14128 struct cmd_cfg_input_set_result { 14129 cmdline_fixed_string_t port; 14130 cmdline_fixed_string_t cfg; 14131 portid_t port_id; 14132 cmdline_fixed_string_t pctype; 14133 uint8_t pctype_id; 14134 cmdline_fixed_string_t inset_type; 14135 cmdline_fixed_string_t opt; 14136 cmdline_fixed_string_t field; 14137 uint8_t field_idx; 14138 }; 14139 14140 static void 14141 cmd_cfg_input_set_parsed( 14142 __rte_unused void *parsed_result, 14143 __rte_unused struct cmdline *cl, 14144 __rte_unused void *data) 14145 { 14146 #ifdef RTE_NET_I40E 14147 struct cmd_cfg_input_set_result *res = parsed_result; 14148 enum rte_pmd_i40e_inset_type inset_type = INSET_NONE; 14149 struct rte_pmd_i40e_inset inset; 14150 #endif 14151 int ret = -ENOTSUP; 14152 14153 if (!all_ports_stopped()) { 14154 printf("Please stop all ports first\n"); 14155 return; 14156 } 14157 14158 #ifdef RTE_NET_I40E 14159 if (!strcmp(res->inset_type, "hash_inset")) 14160 inset_type = INSET_HASH; 14161 else if (!strcmp(res->inset_type, "fdir_inset")) 14162 inset_type = INSET_FDIR; 14163 else if (!strcmp(res->inset_type, "fdir_flx_inset")) 14164 inset_type = INSET_FDIR_FLX; 14165 ret = rte_pmd_i40e_inset_get(res->port_id, res->pctype_id, 14166 &inset, inset_type); 14167 if (ret) { 14168 printf("Failed to get input set.\n"); 14169 return; 14170 } 14171 14172 if (!strcmp(res->opt, "get")) { 14173 ret = rte_pmd_i40e_inset_field_get(inset.inset, 14174 res->field_idx); 14175 if (ret) 14176 printf("Field index %d is enabled.\n", res->field_idx); 14177 else 14178 printf("Field index %d is disabled.\n", res->field_idx); 14179 return; 14180 } else if (!strcmp(res->opt, "set")) 14181 ret = rte_pmd_i40e_inset_field_set(&inset.inset, 14182 res->field_idx); 14183 else if (!strcmp(res->opt, "clear")) 14184 ret = rte_pmd_i40e_inset_field_clear(&inset.inset, 14185 res->field_idx); 14186 if (ret) { 14187 printf("Failed to configure input set field.\n"); 14188 return; 14189 } 14190 14191 ret = rte_pmd_i40e_inset_set(res->port_id, res->pctype_id, 14192 &inset, inset_type); 14193 if (ret) { 14194 printf("Failed to set input set.\n"); 14195 return; 14196 } 14197 #endif 14198 14199 if (ret == -ENOTSUP) 14200 printf("Function not supported\n"); 14201 } 14202 14203 cmdline_parse_token_string_t cmd_cfg_input_set_port = 14204 TOKEN_STRING_INITIALIZER(struct cmd_cfg_input_set_result, 14205 port, "port"); 14206 cmdline_parse_token_string_t cmd_cfg_input_set_cfg = 14207 TOKEN_STRING_INITIALIZER(struct cmd_cfg_input_set_result, 14208 cfg, "config"); 14209 cmdline_parse_token_num_t cmd_cfg_input_set_port_id = 14210 TOKEN_NUM_INITIALIZER(struct cmd_cfg_input_set_result, 14211 port_id, RTE_UINT16); 14212 cmdline_parse_token_string_t cmd_cfg_input_set_pctype = 14213 TOKEN_STRING_INITIALIZER(struct cmd_cfg_input_set_result, 14214 pctype, "pctype"); 14215 cmdline_parse_token_num_t cmd_cfg_input_set_pctype_id = 14216 TOKEN_NUM_INITIALIZER(struct cmd_cfg_input_set_result, 14217 pctype_id, RTE_UINT8); 14218 cmdline_parse_token_string_t cmd_cfg_input_set_inset_type = 14219 TOKEN_STRING_INITIALIZER(struct cmd_cfg_input_set_result, 14220 inset_type, 14221 "hash_inset#fdir_inset#fdir_flx_inset"); 14222 cmdline_parse_token_string_t cmd_cfg_input_set_opt = 14223 TOKEN_STRING_INITIALIZER(struct cmd_cfg_input_set_result, 14224 opt, "get#set#clear"); 14225 cmdline_parse_token_string_t cmd_cfg_input_set_field = 14226 TOKEN_STRING_INITIALIZER(struct cmd_cfg_input_set_result, 14227 field, "field"); 14228 cmdline_parse_token_num_t cmd_cfg_input_set_field_idx = 14229 TOKEN_NUM_INITIALIZER(struct cmd_cfg_input_set_result, 14230 field_idx, RTE_UINT8); 14231 14232 cmdline_parse_inst_t cmd_cfg_input_set = { 14233 .f = cmd_cfg_input_set_parsed, 14234 .data = NULL, 14235 .help_str = "port config <port_id> pctype <pctype_id> hash_inset|" 14236 "fdir_inset|fdir_flx_inset get|set|clear field <field_idx>", 14237 .tokens = { 14238 (void *)&cmd_cfg_input_set_port, 14239 (void *)&cmd_cfg_input_set_cfg, 14240 (void *)&cmd_cfg_input_set_port_id, 14241 (void *)&cmd_cfg_input_set_pctype, 14242 (void *)&cmd_cfg_input_set_pctype_id, 14243 (void *)&cmd_cfg_input_set_inset_type, 14244 (void *)&cmd_cfg_input_set_opt, 14245 (void *)&cmd_cfg_input_set_field, 14246 (void *)&cmd_cfg_input_set_field_idx, 14247 NULL, 14248 }, 14249 }; 14250 14251 /* Clear input set */ 14252 struct cmd_clear_input_set_result { 14253 cmdline_fixed_string_t port; 14254 cmdline_fixed_string_t cfg; 14255 portid_t port_id; 14256 cmdline_fixed_string_t pctype; 14257 uint8_t pctype_id; 14258 cmdline_fixed_string_t inset_type; 14259 cmdline_fixed_string_t clear; 14260 cmdline_fixed_string_t all; 14261 }; 14262 14263 static void 14264 cmd_clear_input_set_parsed( 14265 __rte_unused void *parsed_result, 14266 __rte_unused struct cmdline *cl, 14267 __rte_unused void *data) 14268 { 14269 #ifdef RTE_NET_I40E 14270 struct cmd_clear_input_set_result *res = parsed_result; 14271 enum rte_pmd_i40e_inset_type inset_type = INSET_NONE; 14272 struct rte_pmd_i40e_inset inset; 14273 #endif 14274 int ret = -ENOTSUP; 14275 14276 if (!all_ports_stopped()) { 14277 printf("Please stop all ports first\n"); 14278 return; 14279 } 14280 14281 #ifdef RTE_NET_I40E 14282 if (!strcmp(res->inset_type, "hash_inset")) 14283 inset_type = INSET_HASH; 14284 else if (!strcmp(res->inset_type, "fdir_inset")) 14285 inset_type = INSET_FDIR; 14286 else if (!strcmp(res->inset_type, "fdir_flx_inset")) 14287 inset_type = INSET_FDIR_FLX; 14288 14289 memset(&inset, 0, sizeof(inset)); 14290 14291 ret = rte_pmd_i40e_inset_set(res->port_id, res->pctype_id, 14292 &inset, inset_type); 14293 if (ret) { 14294 printf("Failed to clear input set.\n"); 14295 return; 14296 } 14297 14298 #endif 14299 14300 if (ret == -ENOTSUP) 14301 printf("Function not supported\n"); 14302 } 14303 14304 cmdline_parse_token_string_t cmd_clear_input_set_port = 14305 TOKEN_STRING_INITIALIZER(struct cmd_clear_input_set_result, 14306 port, "port"); 14307 cmdline_parse_token_string_t cmd_clear_input_set_cfg = 14308 TOKEN_STRING_INITIALIZER(struct cmd_clear_input_set_result, 14309 cfg, "config"); 14310 cmdline_parse_token_num_t cmd_clear_input_set_port_id = 14311 TOKEN_NUM_INITIALIZER(struct cmd_clear_input_set_result, 14312 port_id, RTE_UINT16); 14313 cmdline_parse_token_string_t cmd_clear_input_set_pctype = 14314 TOKEN_STRING_INITIALIZER(struct cmd_clear_input_set_result, 14315 pctype, "pctype"); 14316 cmdline_parse_token_num_t cmd_clear_input_set_pctype_id = 14317 TOKEN_NUM_INITIALIZER(struct cmd_clear_input_set_result, 14318 pctype_id, RTE_UINT8); 14319 cmdline_parse_token_string_t cmd_clear_input_set_inset_type = 14320 TOKEN_STRING_INITIALIZER(struct cmd_clear_input_set_result, 14321 inset_type, 14322 "hash_inset#fdir_inset#fdir_flx_inset"); 14323 cmdline_parse_token_string_t cmd_clear_input_set_clear = 14324 TOKEN_STRING_INITIALIZER(struct cmd_clear_input_set_result, 14325 clear, "clear"); 14326 cmdline_parse_token_string_t cmd_clear_input_set_all = 14327 TOKEN_STRING_INITIALIZER(struct cmd_clear_input_set_result, 14328 all, "all"); 14329 14330 cmdline_parse_inst_t cmd_clear_input_set = { 14331 .f = cmd_clear_input_set_parsed, 14332 .data = NULL, 14333 .help_str = "port config <port_id> pctype <pctype_id> hash_inset|" 14334 "fdir_inset|fdir_flx_inset clear all", 14335 .tokens = { 14336 (void *)&cmd_clear_input_set_port, 14337 (void *)&cmd_clear_input_set_cfg, 14338 (void *)&cmd_clear_input_set_port_id, 14339 (void *)&cmd_clear_input_set_pctype, 14340 (void *)&cmd_clear_input_set_pctype_id, 14341 (void *)&cmd_clear_input_set_inset_type, 14342 (void *)&cmd_clear_input_set_clear, 14343 (void *)&cmd_clear_input_set_all, 14344 NULL, 14345 }, 14346 }; 14347 14348 /* show vf stats */ 14349 14350 /* Common result structure for show vf stats */ 14351 struct cmd_show_vf_stats_result { 14352 cmdline_fixed_string_t show; 14353 cmdline_fixed_string_t vf; 14354 cmdline_fixed_string_t stats; 14355 portid_t port_id; 14356 uint16_t vf_id; 14357 }; 14358 14359 /* Common CLI fields show vf stats*/ 14360 cmdline_parse_token_string_t cmd_show_vf_stats_show = 14361 TOKEN_STRING_INITIALIZER 14362 (struct cmd_show_vf_stats_result, 14363 show, "show"); 14364 cmdline_parse_token_string_t cmd_show_vf_stats_vf = 14365 TOKEN_STRING_INITIALIZER 14366 (struct cmd_show_vf_stats_result, 14367 vf, "vf"); 14368 cmdline_parse_token_string_t cmd_show_vf_stats_stats = 14369 TOKEN_STRING_INITIALIZER 14370 (struct cmd_show_vf_stats_result, 14371 stats, "stats"); 14372 cmdline_parse_token_num_t cmd_show_vf_stats_port_id = 14373 TOKEN_NUM_INITIALIZER 14374 (struct cmd_show_vf_stats_result, 14375 port_id, RTE_UINT16); 14376 cmdline_parse_token_num_t cmd_show_vf_stats_vf_id = 14377 TOKEN_NUM_INITIALIZER 14378 (struct cmd_show_vf_stats_result, 14379 vf_id, RTE_UINT16); 14380 14381 static void 14382 cmd_show_vf_stats_parsed( 14383 void *parsed_result, 14384 __rte_unused struct cmdline *cl, 14385 __rte_unused void *data) 14386 { 14387 struct cmd_show_vf_stats_result *res = parsed_result; 14388 struct rte_eth_stats stats; 14389 int ret = -ENOTSUP; 14390 static const char *nic_stats_border = "########################"; 14391 14392 if (port_id_is_invalid(res->port_id, ENABLED_WARN)) 14393 return; 14394 14395 memset(&stats, 0, sizeof(stats)); 14396 14397 #ifdef RTE_NET_I40E 14398 if (ret == -ENOTSUP) 14399 ret = rte_pmd_i40e_get_vf_stats(res->port_id, 14400 res->vf_id, 14401 &stats); 14402 #endif 14403 #ifdef RTE_NET_BNXT 14404 if (ret == -ENOTSUP) 14405 ret = rte_pmd_bnxt_get_vf_stats(res->port_id, 14406 res->vf_id, 14407 &stats); 14408 #endif 14409 14410 switch (ret) { 14411 case 0: 14412 break; 14413 case -EINVAL: 14414 printf("invalid vf_id %d\n", res->vf_id); 14415 break; 14416 case -ENODEV: 14417 printf("invalid port_id %d\n", res->port_id); 14418 break; 14419 case -ENOTSUP: 14420 printf("function not implemented\n"); 14421 break; 14422 default: 14423 printf("programming error: (%s)\n", strerror(-ret)); 14424 } 14425 14426 printf("\n %s NIC statistics for port %-2d vf %-2d %s\n", 14427 nic_stats_border, res->port_id, res->vf_id, nic_stats_border); 14428 14429 printf(" RX-packets: %-10"PRIu64" RX-missed: %-10"PRIu64" RX-bytes: " 14430 "%-"PRIu64"\n", 14431 stats.ipackets, stats.imissed, stats.ibytes); 14432 printf(" RX-errors: %-"PRIu64"\n", stats.ierrors); 14433 printf(" RX-nombuf: %-10"PRIu64"\n", 14434 stats.rx_nombuf); 14435 printf(" TX-packets: %-10"PRIu64" TX-errors: %-10"PRIu64" TX-bytes: " 14436 "%-"PRIu64"\n", 14437 stats.opackets, stats.oerrors, stats.obytes); 14438 14439 printf(" %s############################%s\n", 14440 nic_stats_border, nic_stats_border); 14441 } 14442 14443 cmdline_parse_inst_t cmd_show_vf_stats = { 14444 .f = cmd_show_vf_stats_parsed, 14445 .data = NULL, 14446 .help_str = "show vf stats <port_id> <vf_id>", 14447 .tokens = { 14448 (void *)&cmd_show_vf_stats_show, 14449 (void *)&cmd_show_vf_stats_vf, 14450 (void *)&cmd_show_vf_stats_stats, 14451 (void *)&cmd_show_vf_stats_port_id, 14452 (void *)&cmd_show_vf_stats_vf_id, 14453 NULL, 14454 }, 14455 }; 14456 14457 /* clear vf stats */ 14458 14459 /* Common result structure for clear vf stats */ 14460 struct cmd_clear_vf_stats_result { 14461 cmdline_fixed_string_t clear; 14462 cmdline_fixed_string_t vf; 14463 cmdline_fixed_string_t stats; 14464 portid_t port_id; 14465 uint16_t vf_id; 14466 }; 14467 14468 /* Common CLI fields clear vf stats*/ 14469 cmdline_parse_token_string_t cmd_clear_vf_stats_clear = 14470 TOKEN_STRING_INITIALIZER 14471 (struct cmd_clear_vf_stats_result, 14472 clear, "clear"); 14473 cmdline_parse_token_string_t cmd_clear_vf_stats_vf = 14474 TOKEN_STRING_INITIALIZER 14475 (struct cmd_clear_vf_stats_result, 14476 vf, "vf"); 14477 cmdline_parse_token_string_t cmd_clear_vf_stats_stats = 14478 TOKEN_STRING_INITIALIZER 14479 (struct cmd_clear_vf_stats_result, 14480 stats, "stats"); 14481 cmdline_parse_token_num_t cmd_clear_vf_stats_port_id = 14482 TOKEN_NUM_INITIALIZER 14483 (struct cmd_clear_vf_stats_result, 14484 port_id, RTE_UINT16); 14485 cmdline_parse_token_num_t cmd_clear_vf_stats_vf_id = 14486 TOKEN_NUM_INITIALIZER 14487 (struct cmd_clear_vf_stats_result, 14488 vf_id, RTE_UINT16); 14489 14490 static void 14491 cmd_clear_vf_stats_parsed( 14492 void *parsed_result, 14493 __rte_unused struct cmdline *cl, 14494 __rte_unused void *data) 14495 { 14496 struct cmd_clear_vf_stats_result *res = parsed_result; 14497 int ret = -ENOTSUP; 14498 14499 if (port_id_is_invalid(res->port_id, ENABLED_WARN)) 14500 return; 14501 14502 #ifdef RTE_NET_I40E 14503 if (ret == -ENOTSUP) 14504 ret = rte_pmd_i40e_reset_vf_stats(res->port_id, 14505 res->vf_id); 14506 #endif 14507 #ifdef RTE_NET_BNXT 14508 if (ret == -ENOTSUP) 14509 ret = rte_pmd_bnxt_reset_vf_stats(res->port_id, 14510 res->vf_id); 14511 #endif 14512 14513 switch (ret) { 14514 case 0: 14515 break; 14516 case -EINVAL: 14517 printf("invalid vf_id %d\n", res->vf_id); 14518 break; 14519 case -ENODEV: 14520 printf("invalid port_id %d\n", res->port_id); 14521 break; 14522 case -ENOTSUP: 14523 printf("function not implemented\n"); 14524 break; 14525 default: 14526 printf("programming error: (%s)\n", strerror(-ret)); 14527 } 14528 } 14529 14530 cmdline_parse_inst_t cmd_clear_vf_stats = { 14531 .f = cmd_clear_vf_stats_parsed, 14532 .data = NULL, 14533 .help_str = "clear vf stats <port_id> <vf_id>", 14534 .tokens = { 14535 (void *)&cmd_clear_vf_stats_clear, 14536 (void *)&cmd_clear_vf_stats_vf, 14537 (void *)&cmd_clear_vf_stats_stats, 14538 (void *)&cmd_clear_vf_stats_port_id, 14539 (void *)&cmd_clear_vf_stats_vf_id, 14540 NULL, 14541 }, 14542 }; 14543 14544 /* port config pctype mapping reset */ 14545 14546 /* Common result structure for port config pctype mapping reset */ 14547 struct cmd_pctype_mapping_reset_result { 14548 cmdline_fixed_string_t port; 14549 cmdline_fixed_string_t config; 14550 portid_t port_id; 14551 cmdline_fixed_string_t pctype; 14552 cmdline_fixed_string_t mapping; 14553 cmdline_fixed_string_t reset; 14554 }; 14555 14556 /* Common CLI fields for port config pctype mapping reset*/ 14557 cmdline_parse_token_string_t cmd_pctype_mapping_reset_port = 14558 TOKEN_STRING_INITIALIZER 14559 (struct cmd_pctype_mapping_reset_result, 14560 port, "port"); 14561 cmdline_parse_token_string_t cmd_pctype_mapping_reset_config = 14562 TOKEN_STRING_INITIALIZER 14563 (struct cmd_pctype_mapping_reset_result, 14564 config, "config"); 14565 cmdline_parse_token_num_t cmd_pctype_mapping_reset_port_id = 14566 TOKEN_NUM_INITIALIZER 14567 (struct cmd_pctype_mapping_reset_result, 14568 port_id, RTE_UINT16); 14569 cmdline_parse_token_string_t cmd_pctype_mapping_reset_pctype = 14570 TOKEN_STRING_INITIALIZER 14571 (struct cmd_pctype_mapping_reset_result, 14572 pctype, "pctype"); 14573 cmdline_parse_token_string_t cmd_pctype_mapping_reset_mapping = 14574 TOKEN_STRING_INITIALIZER 14575 (struct cmd_pctype_mapping_reset_result, 14576 mapping, "mapping"); 14577 cmdline_parse_token_string_t cmd_pctype_mapping_reset_reset = 14578 TOKEN_STRING_INITIALIZER 14579 (struct cmd_pctype_mapping_reset_result, 14580 reset, "reset"); 14581 14582 static void 14583 cmd_pctype_mapping_reset_parsed( 14584 void *parsed_result, 14585 __rte_unused struct cmdline *cl, 14586 __rte_unused void *data) 14587 { 14588 struct cmd_pctype_mapping_reset_result *res = parsed_result; 14589 int ret = -ENOTSUP; 14590 14591 if (port_id_is_invalid(res->port_id, ENABLED_WARN)) 14592 return; 14593 14594 #ifdef RTE_NET_I40E 14595 ret = rte_pmd_i40e_flow_type_mapping_reset(res->port_id); 14596 #endif 14597 14598 switch (ret) { 14599 case 0: 14600 break; 14601 case -ENODEV: 14602 printf("invalid port_id %d\n", res->port_id); 14603 break; 14604 case -ENOTSUP: 14605 printf("function not implemented\n"); 14606 break; 14607 default: 14608 printf("programming error: (%s)\n", strerror(-ret)); 14609 } 14610 } 14611 14612 cmdline_parse_inst_t cmd_pctype_mapping_reset = { 14613 .f = cmd_pctype_mapping_reset_parsed, 14614 .data = NULL, 14615 .help_str = "port config <port_id> pctype mapping reset", 14616 .tokens = { 14617 (void *)&cmd_pctype_mapping_reset_port, 14618 (void *)&cmd_pctype_mapping_reset_config, 14619 (void *)&cmd_pctype_mapping_reset_port_id, 14620 (void *)&cmd_pctype_mapping_reset_pctype, 14621 (void *)&cmd_pctype_mapping_reset_mapping, 14622 (void *)&cmd_pctype_mapping_reset_reset, 14623 NULL, 14624 }, 14625 }; 14626 14627 /* show port pctype mapping */ 14628 14629 /* Common result structure for show port pctype mapping */ 14630 struct cmd_pctype_mapping_get_result { 14631 cmdline_fixed_string_t show; 14632 cmdline_fixed_string_t port; 14633 portid_t port_id; 14634 cmdline_fixed_string_t pctype; 14635 cmdline_fixed_string_t mapping; 14636 }; 14637 14638 /* Common CLI fields for pctype mapping get */ 14639 cmdline_parse_token_string_t cmd_pctype_mapping_get_show = 14640 TOKEN_STRING_INITIALIZER 14641 (struct cmd_pctype_mapping_get_result, 14642 show, "show"); 14643 cmdline_parse_token_string_t cmd_pctype_mapping_get_port = 14644 TOKEN_STRING_INITIALIZER 14645 (struct cmd_pctype_mapping_get_result, 14646 port, "port"); 14647 cmdline_parse_token_num_t cmd_pctype_mapping_get_port_id = 14648 TOKEN_NUM_INITIALIZER 14649 (struct cmd_pctype_mapping_get_result, 14650 port_id, RTE_UINT16); 14651 cmdline_parse_token_string_t cmd_pctype_mapping_get_pctype = 14652 TOKEN_STRING_INITIALIZER 14653 (struct cmd_pctype_mapping_get_result, 14654 pctype, "pctype"); 14655 cmdline_parse_token_string_t cmd_pctype_mapping_get_mapping = 14656 TOKEN_STRING_INITIALIZER 14657 (struct cmd_pctype_mapping_get_result, 14658 mapping, "mapping"); 14659 14660 static void 14661 cmd_pctype_mapping_get_parsed( 14662 void *parsed_result, 14663 __rte_unused struct cmdline *cl, 14664 __rte_unused void *data) 14665 { 14666 struct cmd_pctype_mapping_get_result *res = parsed_result; 14667 int ret = -ENOTSUP; 14668 #ifdef RTE_NET_I40E 14669 struct rte_pmd_i40e_flow_type_mapping 14670 mapping[RTE_PMD_I40E_FLOW_TYPE_MAX]; 14671 int i, j, first_pctype; 14672 #endif 14673 14674 if (port_id_is_invalid(res->port_id, ENABLED_WARN)) 14675 return; 14676 14677 #ifdef RTE_NET_I40E 14678 ret = rte_pmd_i40e_flow_type_mapping_get(res->port_id, mapping); 14679 #endif 14680 14681 switch (ret) { 14682 case 0: 14683 break; 14684 case -ENODEV: 14685 printf("invalid port_id %d\n", res->port_id); 14686 return; 14687 case -ENOTSUP: 14688 printf("function not implemented\n"); 14689 return; 14690 default: 14691 printf("programming error: (%s)\n", strerror(-ret)); 14692 return; 14693 } 14694 14695 #ifdef RTE_NET_I40E 14696 for (i = 0; i < RTE_PMD_I40E_FLOW_TYPE_MAX; i++) { 14697 if (mapping[i].pctype != 0ULL) { 14698 first_pctype = 1; 14699 14700 printf("pctype: "); 14701 for (j = 0; j < RTE_PMD_I40E_PCTYPE_MAX; j++) { 14702 if (mapping[i].pctype & (1ULL << j)) { 14703 printf(first_pctype ? 14704 "%02d" : ",%02d", j); 14705 first_pctype = 0; 14706 } 14707 } 14708 printf(" -> flowtype: %02d\n", mapping[i].flow_type); 14709 } 14710 } 14711 #endif 14712 } 14713 14714 cmdline_parse_inst_t cmd_pctype_mapping_get = { 14715 .f = cmd_pctype_mapping_get_parsed, 14716 .data = NULL, 14717 .help_str = "show port <port_id> pctype mapping", 14718 .tokens = { 14719 (void *)&cmd_pctype_mapping_get_show, 14720 (void *)&cmd_pctype_mapping_get_port, 14721 (void *)&cmd_pctype_mapping_get_port_id, 14722 (void *)&cmd_pctype_mapping_get_pctype, 14723 (void *)&cmd_pctype_mapping_get_mapping, 14724 NULL, 14725 }, 14726 }; 14727 14728 /* port config pctype mapping update */ 14729 14730 /* Common result structure for port config pctype mapping update */ 14731 struct cmd_pctype_mapping_update_result { 14732 cmdline_fixed_string_t port; 14733 cmdline_fixed_string_t config; 14734 portid_t port_id; 14735 cmdline_fixed_string_t pctype; 14736 cmdline_fixed_string_t mapping; 14737 cmdline_fixed_string_t update; 14738 cmdline_fixed_string_t pctype_list; 14739 uint16_t flow_type; 14740 }; 14741 14742 /* Common CLI fields for pctype mapping update*/ 14743 cmdline_parse_token_string_t cmd_pctype_mapping_update_port = 14744 TOKEN_STRING_INITIALIZER 14745 (struct cmd_pctype_mapping_update_result, 14746 port, "port"); 14747 cmdline_parse_token_string_t cmd_pctype_mapping_update_config = 14748 TOKEN_STRING_INITIALIZER 14749 (struct cmd_pctype_mapping_update_result, 14750 config, "config"); 14751 cmdline_parse_token_num_t cmd_pctype_mapping_update_port_id = 14752 TOKEN_NUM_INITIALIZER 14753 (struct cmd_pctype_mapping_update_result, 14754 port_id, RTE_UINT16); 14755 cmdline_parse_token_string_t cmd_pctype_mapping_update_pctype = 14756 TOKEN_STRING_INITIALIZER 14757 (struct cmd_pctype_mapping_update_result, 14758 pctype, "pctype"); 14759 cmdline_parse_token_string_t cmd_pctype_mapping_update_mapping = 14760 TOKEN_STRING_INITIALIZER 14761 (struct cmd_pctype_mapping_update_result, 14762 mapping, "mapping"); 14763 cmdline_parse_token_string_t cmd_pctype_mapping_update_update = 14764 TOKEN_STRING_INITIALIZER 14765 (struct cmd_pctype_mapping_update_result, 14766 update, "update"); 14767 cmdline_parse_token_string_t cmd_pctype_mapping_update_pc_type = 14768 TOKEN_STRING_INITIALIZER 14769 (struct cmd_pctype_mapping_update_result, 14770 pctype_list, NULL); 14771 cmdline_parse_token_num_t cmd_pctype_mapping_update_flow_type = 14772 TOKEN_NUM_INITIALIZER 14773 (struct cmd_pctype_mapping_update_result, 14774 flow_type, RTE_UINT16); 14775 14776 static void 14777 cmd_pctype_mapping_update_parsed( 14778 void *parsed_result, 14779 __rte_unused struct cmdline *cl, 14780 __rte_unused void *data) 14781 { 14782 struct cmd_pctype_mapping_update_result *res = parsed_result; 14783 int ret = -ENOTSUP; 14784 #ifdef RTE_NET_I40E 14785 struct rte_pmd_i40e_flow_type_mapping mapping; 14786 unsigned int i; 14787 unsigned int nb_item; 14788 unsigned int pctype_list[RTE_PMD_I40E_PCTYPE_MAX]; 14789 #endif 14790 14791 if (port_id_is_invalid(res->port_id, ENABLED_WARN)) 14792 return; 14793 14794 #ifdef RTE_NET_I40E 14795 nb_item = parse_item_list(res->pctype_list, "pctypes", 14796 RTE_PMD_I40E_PCTYPE_MAX, pctype_list, 1); 14797 mapping.flow_type = res->flow_type; 14798 for (i = 0, mapping.pctype = 0ULL; i < nb_item; i++) 14799 mapping.pctype |= (1ULL << pctype_list[i]); 14800 ret = rte_pmd_i40e_flow_type_mapping_update(res->port_id, 14801 &mapping, 14802 1, 14803 0); 14804 #endif 14805 14806 switch (ret) { 14807 case 0: 14808 break; 14809 case -EINVAL: 14810 printf("invalid pctype or flow type\n"); 14811 break; 14812 case -ENODEV: 14813 printf("invalid port_id %d\n", res->port_id); 14814 break; 14815 case -ENOTSUP: 14816 printf("function not implemented\n"); 14817 break; 14818 default: 14819 printf("programming error: (%s)\n", strerror(-ret)); 14820 } 14821 } 14822 14823 cmdline_parse_inst_t cmd_pctype_mapping_update = { 14824 .f = cmd_pctype_mapping_update_parsed, 14825 .data = NULL, 14826 .help_str = "port config <port_id> pctype mapping update" 14827 " <pctype_id_0,[pctype_id_1]*> <flowtype_id>", 14828 .tokens = { 14829 (void *)&cmd_pctype_mapping_update_port, 14830 (void *)&cmd_pctype_mapping_update_config, 14831 (void *)&cmd_pctype_mapping_update_port_id, 14832 (void *)&cmd_pctype_mapping_update_pctype, 14833 (void *)&cmd_pctype_mapping_update_mapping, 14834 (void *)&cmd_pctype_mapping_update_update, 14835 (void *)&cmd_pctype_mapping_update_pc_type, 14836 (void *)&cmd_pctype_mapping_update_flow_type, 14837 NULL, 14838 }, 14839 }; 14840 14841 /* ptype mapping get */ 14842 14843 /* Common result structure for ptype mapping get */ 14844 struct cmd_ptype_mapping_get_result { 14845 cmdline_fixed_string_t ptype; 14846 cmdline_fixed_string_t mapping; 14847 cmdline_fixed_string_t get; 14848 portid_t port_id; 14849 uint8_t valid_only; 14850 }; 14851 14852 /* Common CLI fields for ptype mapping get */ 14853 cmdline_parse_token_string_t cmd_ptype_mapping_get_ptype = 14854 TOKEN_STRING_INITIALIZER 14855 (struct cmd_ptype_mapping_get_result, 14856 ptype, "ptype"); 14857 cmdline_parse_token_string_t cmd_ptype_mapping_get_mapping = 14858 TOKEN_STRING_INITIALIZER 14859 (struct cmd_ptype_mapping_get_result, 14860 mapping, "mapping"); 14861 cmdline_parse_token_string_t cmd_ptype_mapping_get_get = 14862 TOKEN_STRING_INITIALIZER 14863 (struct cmd_ptype_mapping_get_result, 14864 get, "get"); 14865 cmdline_parse_token_num_t cmd_ptype_mapping_get_port_id = 14866 TOKEN_NUM_INITIALIZER 14867 (struct cmd_ptype_mapping_get_result, 14868 port_id, RTE_UINT16); 14869 cmdline_parse_token_num_t cmd_ptype_mapping_get_valid_only = 14870 TOKEN_NUM_INITIALIZER 14871 (struct cmd_ptype_mapping_get_result, 14872 valid_only, RTE_UINT8); 14873 14874 static void 14875 cmd_ptype_mapping_get_parsed( 14876 void *parsed_result, 14877 __rte_unused struct cmdline *cl, 14878 __rte_unused void *data) 14879 { 14880 struct cmd_ptype_mapping_get_result *res = parsed_result; 14881 int ret = -ENOTSUP; 14882 #ifdef RTE_NET_I40E 14883 int max_ptype_num = 256; 14884 struct rte_pmd_i40e_ptype_mapping mapping[max_ptype_num]; 14885 uint16_t count; 14886 int i; 14887 #endif 14888 14889 if (port_id_is_invalid(res->port_id, ENABLED_WARN)) 14890 return; 14891 14892 #ifdef RTE_NET_I40E 14893 ret = rte_pmd_i40e_ptype_mapping_get(res->port_id, 14894 mapping, 14895 max_ptype_num, 14896 &count, 14897 res->valid_only); 14898 #endif 14899 14900 switch (ret) { 14901 case 0: 14902 break; 14903 case -ENODEV: 14904 printf("invalid port_id %d\n", res->port_id); 14905 break; 14906 case -ENOTSUP: 14907 printf("function not implemented\n"); 14908 break; 14909 default: 14910 printf("programming error: (%s)\n", strerror(-ret)); 14911 } 14912 14913 #ifdef RTE_NET_I40E 14914 if (!ret) { 14915 for (i = 0; i < count; i++) 14916 printf("%3d\t0x%08x\n", 14917 mapping[i].hw_ptype, mapping[i].sw_ptype); 14918 } 14919 #endif 14920 } 14921 14922 cmdline_parse_inst_t cmd_ptype_mapping_get = { 14923 .f = cmd_ptype_mapping_get_parsed, 14924 .data = NULL, 14925 .help_str = "ptype mapping get <port_id> <valid_only>", 14926 .tokens = { 14927 (void *)&cmd_ptype_mapping_get_ptype, 14928 (void *)&cmd_ptype_mapping_get_mapping, 14929 (void *)&cmd_ptype_mapping_get_get, 14930 (void *)&cmd_ptype_mapping_get_port_id, 14931 (void *)&cmd_ptype_mapping_get_valid_only, 14932 NULL, 14933 }, 14934 }; 14935 14936 /* ptype mapping replace */ 14937 14938 /* Common result structure for ptype mapping replace */ 14939 struct cmd_ptype_mapping_replace_result { 14940 cmdline_fixed_string_t ptype; 14941 cmdline_fixed_string_t mapping; 14942 cmdline_fixed_string_t replace; 14943 portid_t port_id; 14944 uint32_t target; 14945 uint8_t mask; 14946 uint32_t pkt_type; 14947 }; 14948 14949 /* Common CLI fields for ptype mapping replace */ 14950 cmdline_parse_token_string_t cmd_ptype_mapping_replace_ptype = 14951 TOKEN_STRING_INITIALIZER 14952 (struct cmd_ptype_mapping_replace_result, 14953 ptype, "ptype"); 14954 cmdline_parse_token_string_t cmd_ptype_mapping_replace_mapping = 14955 TOKEN_STRING_INITIALIZER 14956 (struct cmd_ptype_mapping_replace_result, 14957 mapping, "mapping"); 14958 cmdline_parse_token_string_t cmd_ptype_mapping_replace_replace = 14959 TOKEN_STRING_INITIALIZER 14960 (struct cmd_ptype_mapping_replace_result, 14961 replace, "replace"); 14962 cmdline_parse_token_num_t cmd_ptype_mapping_replace_port_id = 14963 TOKEN_NUM_INITIALIZER 14964 (struct cmd_ptype_mapping_replace_result, 14965 port_id, RTE_UINT16); 14966 cmdline_parse_token_num_t cmd_ptype_mapping_replace_target = 14967 TOKEN_NUM_INITIALIZER 14968 (struct cmd_ptype_mapping_replace_result, 14969 target, RTE_UINT32); 14970 cmdline_parse_token_num_t cmd_ptype_mapping_replace_mask = 14971 TOKEN_NUM_INITIALIZER 14972 (struct cmd_ptype_mapping_replace_result, 14973 mask, RTE_UINT8); 14974 cmdline_parse_token_num_t cmd_ptype_mapping_replace_pkt_type = 14975 TOKEN_NUM_INITIALIZER 14976 (struct cmd_ptype_mapping_replace_result, 14977 pkt_type, RTE_UINT32); 14978 14979 static void 14980 cmd_ptype_mapping_replace_parsed( 14981 void *parsed_result, 14982 __rte_unused struct cmdline *cl, 14983 __rte_unused void *data) 14984 { 14985 struct cmd_ptype_mapping_replace_result *res = parsed_result; 14986 int ret = -ENOTSUP; 14987 14988 if (port_id_is_invalid(res->port_id, ENABLED_WARN)) 14989 return; 14990 14991 #ifdef RTE_NET_I40E 14992 ret = rte_pmd_i40e_ptype_mapping_replace(res->port_id, 14993 res->target, 14994 res->mask, 14995 res->pkt_type); 14996 #endif 14997 14998 switch (ret) { 14999 case 0: 15000 break; 15001 case -EINVAL: 15002 printf("invalid ptype 0x%8x or 0x%8x\n", 15003 res->target, res->pkt_type); 15004 break; 15005 case -ENODEV: 15006 printf("invalid port_id %d\n", res->port_id); 15007 break; 15008 case -ENOTSUP: 15009 printf("function not implemented\n"); 15010 break; 15011 default: 15012 printf("programming error: (%s)\n", strerror(-ret)); 15013 } 15014 } 15015 15016 cmdline_parse_inst_t cmd_ptype_mapping_replace = { 15017 .f = cmd_ptype_mapping_replace_parsed, 15018 .data = NULL, 15019 .help_str = 15020 "ptype mapping replace <port_id> <target> <mask> <pkt_type>", 15021 .tokens = { 15022 (void *)&cmd_ptype_mapping_replace_ptype, 15023 (void *)&cmd_ptype_mapping_replace_mapping, 15024 (void *)&cmd_ptype_mapping_replace_replace, 15025 (void *)&cmd_ptype_mapping_replace_port_id, 15026 (void *)&cmd_ptype_mapping_replace_target, 15027 (void *)&cmd_ptype_mapping_replace_mask, 15028 (void *)&cmd_ptype_mapping_replace_pkt_type, 15029 NULL, 15030 }, 15031 }; 15032 15033 /* ptype mapping reset */ 15034 15035 /* Common result structure for ptype mapping reset */ 15036 struct cmd_ptype_mapping_reset_result { 15037 cmdline_fixed_string_t ptype; 15038 cmdline_fixed_string_t mapping; 15039 cmdline_fixed_string_t reset; 15040 portid_t port_id; 15041 }; 15042 15043 /* Common CLI fields for ptype mapping reset*/ 15044 cmdline_parse_token_string_t cmd_ptype_mapping_reset_ptype = 15045 TOKEN_STRING_INITIALIZER 15046 (struct cmd_ptype_mapping_reset_result, 15047 ptype, "ptype"); 15048 cmdline_parse_token_string_t cmd_ptype_mapping_reset_mapping = 15049 TOKEN_STRING_INITIALIZER 15050 (struct cmd_ptype_mapping_reset_result, 15051 mapping, "mapping"); 15052 cmdline_parse_token_string_t cmd_ptype_mapping_reset_reset = 15053 TOKEN_STRING_INITIALIZER 15054 (struct cmd_ptype_mapping_reset_result, 15055 reset, "reset"); 15056 cmdline_parse_token_num_t cmd_ptype_mapping_reset_port_id = 15057 TOKEN_NUM_INITIALIZER 15058 (struct cmd_ptype_mapping_reset_result, 15059 port_id, RTE_UINT16); 15060 15061 static void 15062 cmd_ptype_mapping_reset_parsed( 15063 void *parsed_result, 15064 __rte_unused struct cmdline *cl, 15065 __rte_unused void *data) 15066 { 15067 struct cmd_ptype_mapping_reset_result *res = parsed_result; 15068 int ret = -ENOTSUP; 15069 15070 if (port_id_is_invalid(res->port_id, ENABLED_WARN)) 15071 return; 15072 15073 #ifdef RTE_NET_I40E 15074 ret = rte_pmd_i40e_ptype_mapping_reset(res->port_id); 15075 #endif 15076 15077 switch (ret) { 15078 case 0: 15079 break; 15080 case -ENODEV: 15081 printf("invalid port_id %d\n", res->port_id); 15082 break; 15083 case -ENOTSUP: 15084 printf("function not implemented\n"); 15085 break; 15086 default: 15087 printf("programming error: (%s)\n", strerror(-ret)); 15088 } 15089 } 15090 15091 cmdline_parse_inst_t cmd_ptype_mapping_reset = { 15092 .f = cmd_ptype_mapping_reset_parsed, 15093 .data = NULL, 15094 .help_str = "ptype mapping reset <port_id>", 15095 .tokens = { 15096 (void *)&cmd_ptype_mapping_reset_ptype, 15097 (void *)&cmd_ptype_mapping_reset_mapping, 15098 (void *)&cmd_ptype_mapping_reset_reset, 15099 (void *)&cmd_ptype_mapping_reset_port_id, 15100 NULL, 15101 }, 15102 }; 15103 15104 /* ptype mapping update */ 15105 15106 /* Common result structure for ptype mapping update */ 15107 struct cmd_ptype_mapping_update_result { 15108 cmdline_fixed_string_t ptype; 15109 cmdline_fixed_string_t mapping; 15110 cmdline_fixed_string_t reset; 15111 portid_t port_id; 15112 uint8_t hw_ptype; 15113 uint32_t sw_ptype; 15114 }; 15115 15116 /* Common CLI fields for ptype mapping update*/ 15117 cmdline_parse_token_string_t cmd_ptype_mapping_update_ptype = 15118 TOKEN_STRING_INITIALIZER 15119 (struct cmd_ptype_mapping_update_result, 15120 ptype, "ptype"); 15121 cmdline_parse_token_string_t cmd_ptype_mapping_update_mapping = 15122 TOKEN_STRING_INITIALIZER 15123 (struct cmd_ptype_mapping_update_result, 15124 mapping, "mapping"); 15125 cmdline_parse_token_string_t cmd_ptype_mapping_update_update = 15126 TOKEN_STRING_INITIALIZER 15127 (struct cmd_ptype_mapping_update_result, 15128 reset, "update"); 15129 cmdline_parse_token_num_t cmd_ptype_mapping_update_port_id = 15130 TOKEN_NUM_INITIALIZER 15131 (struct cmd_ptype_mapping_update_result, 15132 port_id, RTE_UINT16); 15133 cmdline_parse_token_num_t cmd_ptype_mapping_update_hw_ptype = 15134 TOKEN_NUM_INITIALIZER 15135 (struct cmd_ptype_mapping_update_result, 15136 hw_ptype, RTE_UINT8); 15137 cmdline_parse_token_num_t cmd_ptype_mapping_update_sw_ptype = 15138 TOKEN_NUM_INITIALIZER 15139 (struct cmd_ptype_mapping_update_result, 15140 sw_ptype, RTE_UINT32); 15141 15142 static void 15143 cmd_ptype_mapping_update_parsed( 15144 void *parsed_result, 15145 __rte_unused struct cmdline *cl, 15146 __rte_unused void *data) 15147 { 15148 struct cmd_ptype_mapping_update_result *res = parsed_result; 15149 int ret = -ENOTSUP; 15150 #ifdef RTE_NET_I40E 15151 struct rte_pmd_i40e_ptype_mapping mapping; 15152 #endif 15153 if (port_id_is_invalid(res->port_id, ENABLED_WARN)) 15154 return; 15155 15156 #ifdef RTE_NET_I40E 15157 mapping.hw_ptype = res->hw_ptype; 15158 mapping.sw_ptype = res->sw_ptype; 15159 ret = rte_pmd_i40e_ptype_mapping_update(res->port_id, 15160 &mapping, 15161 1, 15162 0); 15163 #endif 15164 15165 switch (ret) { 15166 case 0: 15167 break; 15168 case -EINVAL: 15169 printf("invalid ptype 0x%8x\n", res->sw_ptype); 15170 break; 15171 case -ENODEV: 15172 printf("invalid port_id %d\n", res->port_id); 15173 break; 15174 case -ENOTSUP: 15175 printf("function not implemented\n"); 15176 break; 15177 default: 15178 printf("programming error: (%s)\n", strerror(-ret)); 15179 } 15180 } 15181 15182 cmdline_parse_inst_t cmd_ptype_mapping_update = { 15183 .f = cmd_ptype_mapping_update_parsed, 15184 .data = NULL, 15185 .help_str = "ptype mapping update <port_id> <hw_ptype> <sw_ptype>", 15186 .tokens = { 15187 (void *)&cmd_ptype_mapping_update_ptype, 15188 (void *)&cmd_ptype_mapping_update_mapping, 15189 (void *)&cmd_ptype_mapping_update_update, 15190 (void *)&cmd_ptype_mapping_update_port_id, 15191 (void *)&cmd_ptype_mapping_update_hw_ptype, 15192 (void *)&cmd_ptype_mapping_update_sw_ptype, 15193 NULL, 15194 }, 15195 }; 15196 15197 /* Common result structure for file commands */ 15198 struct cmd_cmdfile_result { 15199 cmdline_fixed_string_t load; 15200 cmdline_fixed_string_t filename; 15201 }; 15202 15203 /* Common CLI fields for file commands */ 15204 cmdline_parse_token_string_t cmd_load_cmdfile = 15205 TOKEN_STRING_INITIALIZER(struct cmd_cmdfile_result, load, "load"); 15206 cmdline_parse_token_string_t cmd_load_cmdfile_filename = 15207 TOKEN_STRING_INITIALIZER(struct cmd_cmdfile_result, filename, NULL); 15208 15209 static void 15210 cmd_load_from_file_parsed( 15211 void *parsed_result, 15212 __rte_unused struct cmdline *cl, 15213 __rte_unused void *data) 15214 { 15215 struct cmd_cmdfile_result *res = parsed_result; 15216 15217 cmdline_read_from_file(res->filename); 15218 } 15219 15220 cmdline_parse_inst_t cmd_load_from_file = { 15221 .f = cmd_load_from_file_parsed, 15222 .data = NULL, 15223 .help_str = "load <filename>", 15224 .tokens = { 15225 (void *)&cmd_load_cmdfile, 15226 (void *)&cmd_load_cmdfile_filename, 15227 NULL, 15228 }, 15229 }; 15230 15231 /* Get Rx offloads capabilities */ 15232 struct cmd_rx_offload_get_capa_result { 15233 cmdline_fixed_string_t show; 15234 cmdline_fixed_string_t port; 15235 portid_t port_id; 15236 cmdline_fixed_string_t rx_offload; 15237 cmdline_fixed_string_t capabilities; 15238 }; 15239 15240 cmdline_parse_token_string_t cmd_rx_offload_get_capa_show = 15241 TOKEN_STRING_INITIALIZER 15242 (struct cmd_rx_offload_get_capa_result, 15243 show, "show"); 15244 cmdline_parse_token_string_t cmd_rx_offload_get_capa_port = 15245 TOKEN_STRING_INITIALIZER 15246 (struct cmd_rx_offload_get_capa_result, 15247 port, "port"); 15248 cmdline_parse_token_num_t cmd_rx_offload_get_capa_port_id = 15249 TOKEN_NUM_INITIALIZER 15250 (struct cmd_rx_offload_get_capa_result, 15251 port_id, RTE_UINT16); 15252 cmdline_parse_token_string_t cmd_rx_offload_get_capa_rx_offload = 15253 TOKEN_STRING_INITIALIZER 15254 (struct cmd_rx_offload_get_capa_result, 15255 rx_offload, "rx_offload"); 15256 cmdline_parse_token_string_t cmd_rx_offload_get_capa_capabilities = 15257 TOKEN_STRING_INITIALIZER 15258 (struct cmd_rx_offload_get_capa_result, 15259 capabilities, "capabilities"); 15260 15261 static void 15262 print_rx_offloads(uint64_t offloads) 15263 { 15264 uint64_t single_offload; 15265 int begin; 15266 int end; 15267 int bit; 15268 15269 if (offloads == 0) 15270 return; 15271 15272 begin = __builtin_ctzll(offloads); 15273 end = sizeof(offloads) * CHAR_BIT - __builtin_clzll(offloads); 15274 15275 single_offload = 1ULL << begin; 15276 for (bit = begin; bit < end; bit++) { 15277 if (offloads & single_offload) 15278 printf(" %s", 15279 rte_eth_dev_rx_offload_name(single_offload)); 15280 single_offload <<= 1; 15281 } 15282 } 15283 15284 static void 15285 cmd_rx_offload_get_capa_parsed( 15286 void *parsed_result, 15287 __rte_unused struct cmdline *cl, 15288 __rte_unused void *data) 15289 { 15290 struct cmd_rx_offload_get_capa_result *res = parsed_result; 15291 struct rte_eth_dev_info dev_info; 15292 portid_t port_id = res->port_id; 15293 uint64_t queue_offloads; 15294 uint64_t port_offloads; 15295 int ret; 15296 15297 ret = eth_dev_info_get_print_err(port_id, &dev_info); 15298 if (ret != 0) 15299 return; 15300 15301 queue_offloads = dev_info.rx_queue_offload_capa; 15302 port_offloads = dev_info.rx_offload_capa ^ queue_offloads; 15303 15304 printf("Rx Offloading Capabilities of port %d :\n", port_id); 15305 printf(" Per Queue :"); 15306 print_rx_offloads(queue_offloads); 15307 15308 printf("\n"); 15309 printf(" Per Port :"); 15310 print_rx_offloads(port_offloads); 15311 printf("\n\n"); 15312 } 15313 15314 cmdline_parse_inst_t cmd_rx_offload_get_capa = { 15315 .f = cmd_rx_offload_get_capa_parsed, 15316 .data = NULL, 15317 .help_str = "show port <port_id> rx_offload capabilities", 15318 .tokens = { 15319 (void *)&cmd_rx_offload_get_capa_show, 15320 (void *)&cmd_rx_offload_get_capa_port, 15321 (void *)&cmd_rx_offload_get_capa_port_id, 15322 (void *)&cmd_rx_offload_get_capa_rx_offload, 15323 (void *)&cmd_rx_offload_get_capa_capabilities, 15324 NULL, 15325 } 15326 }; 15327 15328 /* Get Rx offloads configuration */ 15329 struct cmd_rx_offload_get_configuration_result { 15330 cmdline_fixed_string_t show; 15331 cmdline_fixed_string_t port; 15332 portid_t port_id; 15333 cmdline_fixed_string_t rx_offload; 15334 cmdline_fixed_string_t configuration; 15335 }; 15336 15337 cmdline_parse_token_string_t cmd_rx_offload_get_configuration_show = 15338 TOKEN_STRING_INITIALIZER 15339 (struct cmd_rx_offload_get_configuration_result, 15340 show, "show"); 15341 cmdline_parse_token_string_t cmd_rx_offload_get_configuration_port = 15342 TOKEN_STRING_INITIALIZER 15343 (struct cmd_rx_offload_get_configuration_result, 15344 port, "port"); 15345 cmdline_parse_token_num_t cmd_rx_offload_get_configuration_port_id = 15346 TOKEN_NUM_INITIALIZER 15347 (struct cmd_rx_offload_get_configuration_result, 15348 port_id, RTE_UINT16); 15349 cmdline_parse_token_string_t cmd_rx_offload_get_configuration_rx_offload = 15350 TOKEN_STRING_INITIALIZER 15351 (struct cmd_rx_offload_get_configuration_result, 15352 rx_offload, "rx_offload"); 15353 cmdline_parse_token_string_t cmd_rx_offload_get_configuration_configuration = 15354 TOKEN_STRING_INITIALIZER 15355 (struct cmd_rx_offload_get_configuration_result, 15356 configuration, "configuration"); 15357 15358 static void 15359 cmd_rx_offload_get_configuration_parsed( 15360 void *parsed_result, 15361 __rte_unused struct cmdline *cl, 15362 __rte_unused void *data) 15363 { 15364 struct cmd_rx_offload_get_configuration_result *res = parsed_result; 15365 struct rte_eth_dev_info dev_info; 15366 portid_t port_id = res->port_id; 15367 struct rte_port *port = &ports[port_id]; 15368 uint64_t port_offloads; 15369 uint64_t queue_offloads; 15370 uint16_t nb_rx_queues; 15371 int q; 15372 int ret; 15373 15374 printf("Rx Offloading Configuration of port %d :\n", port_id); 15375 15376 port_offloads = port->dev_conf.rxmode.offloads; 15377 printf(" Port :"); 15378 print_rx_offloads(port_offloads); 15379 printf("\n"); 15380 15381 ret = eth_dev_info_get_print_err(port_id, &dev_info); 15382 if (ret != 0) 15383 return; 15384 15385 nb_rx_queues = dev_info.nb_rx_queues; 15386 for (q = 0; q < nb_rx_queues; q++) { 15387 queue_offloads = port->rx_conf[q].offloads; 15388 printf(" Queue[%2d] :", q); 15389 print_rx_offloads(queue_offloads); 15390 printf("\n"); 15391 } 15392 printf("\n"); 15393 } 15394 15395 cmdline_parse_inst_t cmd_rx_offload_get_configuration = { 15396 .f = cmd_rx_offload_get_configuration_parsed, 15397 .data = NULL, 15398 .help_str = "show port <port_id> rx_offload configuration", 15399 .tokens = { 15400 (void *)&cmd_rx_offload_get_configuration_show, 15401 (void *)&cmd_rx_offload_get_configuration_port, 15402 (void *)&cmd_rx_offload_get_configuration_port_id, 15403 (void *)&cmd_rx_offload_get_configuration_rx_offload, 15404 (void *)&cmd_rx_offload_get_configuration_configuration, 15405 NULL, 15406 } 15407 }; 15408 15409 /* Enable/Disable a per port offloading */ 15410 struct cmd_config_per_port_rx_offload_result { 15411 cmdline_fixed_string_t port; 15412 cmdline_fixed_string_t config; 15413 portid_t port_id; 15414 cmdline_fixed_string_t rx_offload; 15415 cmdline_fixed_string_t offload; 15416 cmdline_fixed_string_t on_off; 15417 }; 15418 15419 cmdline_parse_token_string_t cmd_config_per_port_rx_offload_result_port = 15420 TOKEN_STRING_INITIALIZER 15421 (struct cmd_config_per_port_rx_offload_result, 15422 port, "port"); 15423 cmdline_parse_token_string_t cmd_config_per_port_rx_offload_result_config = 15424 TOKEN_STRING_INITIALIZER 15425 (struct cmd_config_per_port_rx_offload_result, 15426 config, "config"); 15427 cmdline_parse_token_num_t cmd_config_per_port_rx_offload_result_port_id = 15428 TOKEN_NUM_INITIALIZER 15429 (struct cmd_config_per_port_rx_offload_result, 15430 port_id, RTE_UINT16); 15431 cmdline_parse_token_string_t cmd_config_per_port_rx_offload_result_rx_offload = 15432 TOKEN_STRING_INITIALIZER 15433 (struct cmd_config_per_port_rx_offload_result, 15434 rx_offload, "rx_offload"); 15435 cmdline_parse_token_string_t cmd_config_per_port_rx_offload_result_offload = 15436 TOKEN_STRING_INITIALIZER 15437 (struct cmd_config_per_port_rx_offload_result, 15438 offload, "vlan_strip#ipv4_cksum#udp_cksum#tcp_cksum#tcp_lro#" 15439 "qinq_strip#outer_ipv4_cksum#macsec_strip#" 15440 "header_split#vlan_filter#vlan_extend#jumbo_frame#" 15441 "scatter#buffer_split#timestamp#security#" 15442 "keep_crc#rss_hash"); 15443 cmdline_parse_token_string_t cmd_config_per_port_rx_offload_result_on_off = 15444 TOKEN_STRING_INITIALIZER 15445 (struct cmd_config_per_port_rx_offload_result, 15446 on_off, "on#off"); 15447 15448 static uint64_t 15449 search_rx_offload(const char *name) 15450 { 15451 uint64_t single_offload; 15452 const char *single_name; 15453 int found = 0; 15454 unsigned int bit; 15455 15456 single_offload = 1; 15457 for (bit = 0; bit < sizeof(single_offload) * CHAR_BIT; bit++) { 15458 single_name = rte_eth_dev_rx_offload_name(single_offload); 15459 if (!strcasecmp(single_name, name)) { 15460 found = 1; 15461 break; 15462 } 15463 single_offload <<= 1; 15464 } 15465 15466 if (found) 15467 return single_offload; 15468 15469 return 0; 15470 } 15471 15472 static void 15473 cmd_config_per_port_rx_offload_parsed(void *parsed_result, 15474 __rte_unused struct cmdline *cl, 15475 __rte_unused void *data) 15476 { 15477 struct cmd_config_per_port_rx_offload_result *res = parsed_result; 15478 portid_t port_id = res->port_id; 15479 struct rte_eth_dev_info dev_info; 15480 struct rte_port *port = &ports[port_id]; 15481 uint64_t single_offload; 15482 uint16_t nb_rx_queues; 15483 int q; 15484 int ret; 15485 15486 if (port->port_status != RTE_PORT_STOPPED) { 15487 printf("Error: Can't config offload when Port %d " 15488 "is not stopped\n", port_id); 15489 return; 15490 } 15491 15492 single_offload = search_rx_offload(res->offload); 15493 if (single_offload == 0) { 15494 printf("Unknown offload name: %s\n", res->offload); 15495 return; 15496 } 15497 15498 ret = eth_dev_info_get_print_err(port_id, &dev_info); 15499 if (ret != 0) 15500 return; 15501 15502 nb_rx_queues = dev_info.nb_rx_queues; 15503 if (!strcmp(res->on_off, "on")) { 15504 port->dev_conf.rxmode.offloads |= single_offload; 15505 for (q = 0; q < nb_rx_queues; q++) 15506 port->rx_conf[q].offloads |= single_offload; 15507 } else { 15508 port->dev_conf.rxmode.offloads &= ~single_offload; 15509 for (q = 0; q < nb_rx_queues; q++) 15510 port->rx_conf[q].offloads &= ~single_offload; 15511 } 15512 15513 cmd_reconfig_device_queue(port_id, 1, 1); 15514 } 15515 15516 cmdline_parse_inst_t cmd_config_per_port_rx_offload = { 15517 .f = cmd_config_per_port_rx_offload_parsed, 15518 .data = NULL, 15519 .help_str = "port config <port_id> rx_offload vlan_strip|ipv4_cksum|" 15520 "udp_cksum|tcp_cksum|tcp_lro|qinq_strip|outer_ipv4_cksum|" 15521 "macsec_strip|header_split|vlan_filter|vlan_extend|" 15522 "jumbo_frame|scatter|buffer_split|timestamp|security|" 15523 "keep_crc|rss_hash on|off", 15524 .tokens = { 15525 (void *)&cmd_config_per_port_rx_offload_result_port, 15526 (void *)&cmd_config_per_port_rx_offload_result_config, 15527 (void *)&cmd_config_per_port_rx_offload_result_port_id, 15528 (void *)&cmd_config_per_port_rx_offload_result_rx_offload, 15529 (void *)&cmd_config_per_port_rx_offload_result_offload, 15530 (void *)&cmd_config_per_port_rx_offload_result_on_off, 15531 NULL, 15532 } 15533 }; 15534 15535 /* Enable/Disable a per queue offloading */ 15536 struct cmd_config_per_queue_rx_offload_result { 15537 cmdline_fixed_string_t port; 15538 portid_t port_id; 15539 cmdline_fixed_string_t rxq; 15540 uint16_t queue_id; 15541 cmdline_fixed_string_t rx_offload; 15542 cmdline_fixed_string_t offload; 15543 cmdline_fixed_string_t on_off; 15544 }; 15545 15546 cmdline_parse_token_string_t cmd_config_per_queue_rx_offload_result_port = 15547 TOKEN_STRING_INITIALIZER 15548 (struct cmd_config_per_queue_rx_offload_result, 15549 port, "port"); 15550 cmdline_parse_token_num_t cmd_config_per_queue_rx_offload_result_port_id = 15551 TOKEN_NUM_INITIALIZER 15552 (struct cmd_config_per_queue_rx_offload_result, 15553 port_id, RTE_UINT16); 15554 cmdline_parse_token_string_t cmd_config_per_queue_rx_offload_result_rxq = 15555 TOKEN_STRING_INITIALIZER 15556 (struct cmd_config_per_queue_rx_offload_result, 15557 rxq, "rxq"); 15558 cmdline_parse_token_num_t cmd_config_per_queue_rx_offload_result_queue_id = 15559 TOKEN_NUM_INITIALIZER 15560 (struct cmd_config_per_queue_rx_offload_result, 15561 queue_id, RTE_UINT16); 15562 cmdline_parse_token_string_t cmd_config_per_queue_rx_offload_result_rxoffload = 15563 TOKEN_STRING_INITIALIZER 15564 (struct cmd_config_per_queue_rx_offload_result, 15565 rx_offload, "rx_offload"); 15566 cmdline_parse_token_string_t cmd_config_per_queue_rx_offload_result_offload = 15567 TOKEN_STRING_INITIALIZER 15568 (struct cmd_config_per_queue_rx_offload_result, 15569 offload, "vlan_strip#ipv4_cksum#udp_cksum#tcp_cksum#tcp_lro#" 15570 "qinq_strip#outer_ipv4_cksum#macsec_strip#" 15571 "header_split#vlan_filter#vlan_extend#jumbo_frame#" 15572 "scatter#buffer_split#timestamp#security#keep_crc"); 15573 cmdline_parse_token_string_t cmd_config_per_queue_rx_offload_result_on_off = 15574 TOKEN_STRING_INITIALIZER 15575 (struct cmd_config_per_queue_rx_offload_result, 15576 on_off, "on#off"); 15577 15578 static void 15579 cmd_config_per_queue_rx_offload_parsed(void *parsed_result, 15580 __rte_unused struct cmdline *cl, 15581 __rte_unused void *data) 15582 { 15583 struct cmd_config_per_queue_rx_offload_result *res = parsed_result; 15584 struct rte_eth_dev_info dev_info; 15585 portid_t port_id = res->port_id; 15586 uint16_t queue_id = res->queue_id; 15587 struct rte_port *port = &ports[port_id]; 15588 uint64_t single_offload; 15589 int ret; 15590 15591 if (port->port_status != RTE_PORT_STOPPED) { 15592 printf("Error: Can't config offload when Port %d " 15593 "is not stopped\n", port_id); 15594 return; 15595 } 15596 15597 ret = eth_dev_info_get_print_err(port_id, &dev_info); 15598 if (ret != 0) 15599 return; 15600 15601 if (queue_id >= dev_info.nb_rx_queues) { 15602 printf("Error: input queue_id should be 0 ... " 15603 "%d\n", dev_info.nb_rx_queues - 1); 15604 return; 15605 } 15606 15607 single_offload = search_rx_offload(res->offload); 15608 if (single_offload == 0) { 15609 printf("Unknown offload name: %s\n", res->offload); 15610 return; 15611 } 15612 15613 if (!strcmp(res->on_off, "on")) 15614 port->rx_conf[queue_id].offloads |= single_offload; 15615 else 15616 port->rx_conf[queue_id].offloads &= ~single_offload; 15617 15618 cmd_reconfig_device_queue(port_id, 1, 1); 15619 } 15620 15621 cmdline_parse_inst_t cmd_config_per_queue_rx_offload = { 15622 .f = cmd_config_per_queue_rx_offload_parsed, 15623 .data = NULL, 15624 .help_str = "port <port_id> rxq <queue_id> rx_offload " 15625 "vlan_strip|ipv4_cksum|" 15626 "udp_cksum|tcp_cksum|tcp_lro|qinq_strip|outer_ipv4_cksum|" 15627 "macsec_strip|header_split|vlan_filter|vlan_extend|" 15628 "jumbo_frame|scatter|buffer_split|timestamp|security|" 15629 "keep_crc on|off", 15630 .tokens = { 15631 (void *)&cmd_config_per_queue_rx_offload_result_port, 15632 (void *)&cmd_config_per_queue_rx_offload_result_port_id, 15633 (void *)&cmd_config_per_queue_rx_offload_result_rxq, 15634 (void *)&cmd_config_per_queue_rx_offload_result_queue_id, 15635 (void *)&cmd_config_per_queue_rx_offload_result_rxoffload, 15636 (void *)&cmd_config_per_queue_rx_offload_result_offload, 15637 (void *)&cmd_config_per_queue_rx_offload_result_on_off, 15638 NULL, 15639 } 15640 }; 15641 15642 /* Get Tx offloads capabilities */ 15643 struct cmd_tx_offload_get_capa_result { 15644 cmdline_fixed_string_t show; 15645 cmdline_fixed_string_t port; 15646 portid_t port_id; 15647 cmdline_fixed_string_t tx_offload; 15648 cmdline_fixed_string_t capabilities; 15649 }; 15650 15651 cmdline_parse_token_string_t cmd_tx_offload_get_capa_show = 15652 TOKEN_STRING_INITIALIZER 15653 (struct cmd_tx_offload_get_capa_result, 15654 show, "show"); 15655 cmdline_parse_token_string_t cmd_tx_offload_get_capa_port = 15656 TOKEN_STRING_INITIALIZER 15657 (struct cmd_tx_offload_get_capa_result, 15658 port, "port"); 15659 cmdline_parse_token_num_t cmd_tx_offload_get_capa_port_id = 15660 TOKEN_NUM_INITIALIZER 15661 (struct cmd_tx_offload_get_capa_result, 15662 port_id, RTE_UINT16); 15663 cmdline_parse_token_string_t cmd_tx_offload_get_capa_tx_offload = 15664 TOKEN_STRING_INITIALIZER 15665 (struct cmd_tx_offload_get_capa_result, 15666 tx_offload, "tx_offload"); 15667 cmdline_parse_token_string_t cmd_tx_offload_get_capa_capabilities = 15668 TOKEN_STRING_INITIALIZER 15669 (struct cmd_tx_offload_get_capa_result, 15670 capabilities, "capabilities"); 15671 15672 static void 15673 print_tx_offloads(uint64_t offloads) 15674 { 15675 uint64_t single_offload; 15676 int begin; 15677 int end; 15678 int bit; 15679 15680 if (offloads == 0) 15681 return; 15682 15683 begin = __builtin_ctzll(offloads); 15684 end = sizeof(offloads) * CHAR_BIT - __builtin_clzll(offloads); 15685 15686 single_offload = 1ULL << begin; 15687 for (bit = begin; bit < end; bit++) { 15688 if (offloads & single_offload) 15689 printf(" %s", 15690 rte_eth_dev_tx_offload_name(single_offload)); 15691 single_offload <<= 1; 15692 } 15693 } 15694 15695 static void 15696 cmd_tx_offload_get_capa_parsed( 15697 void *parsed_result, 15698 __rte_unused struct cmdline *cl, 15699 __rte_unused void *data) 15700 { 15701 struct cmd_tx_offload_get_capa_result *res = parsed_result; 15702 struct rte_eth_dev_info dev_info; 15703 portid_t port_id = res->port_id; 15704 uint64_t queue_offloads; 15705 uint64_t port_offloads; 15706 int ret; 15707 15708 ret = eth_dev_info_get_print_err(port_id, &dev_info); 15709 if (ret != 0) 15710 return; 15711 15712 queue_offloads = dev_info.tx_queue_offload_capa; 15713 port_offloads = dev_info.tx_offload_capa ^ queue_offloads; 15714 15715 printf("Tx Offloading Capabilities of port %d :\n", port_id); 15716 printf(" Per Queue :"); 15717 print_tx_offloads(queue_offloads); 15718 15719 printf("\n"); 15720 printf(" Per Port :"); 15721 print_tx_offloads(port_offloads); 15722 printf("\n\n"); 15723 } 15724 15725 cmdline_parse_inst_t cmd_tx_offload_get_capa = { 15726 .f = cmd_tx_offload_get_capa_parsed, 15727 .data = NULL, 15728 .help_str = "show port <port_id> tx_offload capabilities", 15729 .tokens = { 15730 (void *)&cmd_tx_offload_get_capa_show, 15731 (void *)&cmd_tx_offload_get_capa_port, 15732 (void *)&cmd_tx_offload_get_capa_port_id, 15733 (void *)&cmd_tx_offload_get_capa_tx_offload, 15734 (void *)&cmd_tx_offload_get_capa_capabilities, 15735 NULL, 15736 } 15737 }; 15738 15739 /* Get Tx offloads configuration */ 15740 struct cmd_tx_offload_get_configuration_result { 15741 cmdline_fixed_string_t show; 15742 cmdline_fixed_string_t port; 15743 portid_t port_id; 15744 cmdline_fixed_string_t tx_offload; 15745 cmdline_fixed_string_t configuration; 15746 }; 15747 15748 cmdline_parse_token_string_t cmd_tx_offload_get_configuration_show = 15749 TOKEN_STRING_INITIALIZER 15750 (struct cmd_tx_offload_get_configuration_result, 15751 show, "show"); 15752 cmdline_parse_token_string_t cmd_tx_offload_get_configuration_port = 15753 TOKEN_STRING_INITIALIZER 15754 (struct cmd_tx_offload_get_configuration_result, 15755 port, "port"); 15756 cmdline_parse_token_num_t cmd_tx_offload_get_configuration_port_id = 15757 TOKEN_NUM_INITIALIZER 15758 (struct cmd_tx_offload_get_configuration_result, 15759 port_id, RTE_UINT16); 15760 cmdline_parse_token_string_t cmd_tx_offload_get_configuration_tx_offload = 15761 TOKEN_STRING_INITIALIZER 15762 (struct cmd_tx_offload_get_configuration_result, 15763 tx_offload, "tx_offload"); 15764 cmdline_parse_token_string_t cmd_tx_offload_get_configuration_configuration = 15765 TOKEN_STRING_INITIALIZER 15766 (struct cmd_tx_offload_get_configuration_result, 15767 configuration, "configuration"); 15768 15769 static void 15770 cmd_tx_offload_get_configuration_parsed( 15771 void *parsed_result, 15772 __rte_unused struct cmdline *cl, 15773 __rte_unused void *data) 15774 { 15775 struct cmd_tx_offload_get_configuration_result *res = parsed_result; 15776 struct rte_eth_dev_info dev_info; 15777 portid_t port_id = res->port_id; 15778 struct rte_port *port = &ports[port_id]; 15779 uint64_t port_offloads; 15780 uint64_t queue_offloads; 15781 uint16_t nb_tx_queues; 15782 int q; 15783 int ret; 15784 15785 printf("Tx Offloading Configuration of port %d :\n", port_id); 15786 15787 port_offloads = port->dev_conf.txmode.offloads; 15788 printf(" Port :"); 15789 print_tx_offloads(port_offloads); 15790 printf("\n"); 15791 15792 ret = eth_dev_info_get_print_err(port_id, &dev_info); 15793 if (ret != 0) 15794 return; 15795 15796 nb_tx_queues = dev_info.nb_tx_queues; 15797 for (q = 0; q < nb_tx_queues; q++) { 15798 queue_offloads = port->tx_conf[q].offloads; 15799 printf(" Queue[%2d] :", q); 15800 print_tx_offloads(queue_offloads); 15801 printf("\n"); 15802 } 15803 printf("\n"); 15804 } 15805 15806 cmdline_parse_inst_t cmd_tx_offload_get_configuration = { 15807 .f = cmd_tx_offload_get_configuration_parsed, 15808 .data = NULL, 15809 .help_str = "show port <port_id> tx_offload configuration", 15810 .tokens = { 15811 (void *)&cmd_tx_offload_get_configuration_show, 15812 (void *)&cmd_tx_offload_get_configuration_port, 15813 (void *)&cmd_tx_offload_get_configuration_port_id, 15814 (void *)&cmd_tx_offload_get_configuration_tx_offload, 15815 (void *)&cmd_tx_offload_get_configuration_configuration, 15816 NULL, 15817 } 15818 }; 15819 15820 /* Enable/Disable a per port offloading */ 15821 struct cmd_config_per_port_tx_offload_result { 15822 cmdline_fixed_string_t port; 15823 cmdline_fixed_string_t config; 15824 portid_t port_id; 15825 cmdline_fixed_string_t tx_offload; 15826 cmdline_fixed_string_t offload; 15827 cmdline_fixed_string_t on_off; 15828 }; 15829 15830 cmdline_parse_token_string_t cmd_config_per_port_tx_offload_result_port = 15831 TOKEN_STRING_INITIALIZER 15832 (struct cmd_config_per_port_tx_offload_result, 15833 port, "port"); 15834 cmdline_parse_token_string_t cmd_config_per_port_tx_offload_result_config = 15835 TOKEN_STRING_INITIALIZER 15836 (struct cmd_config_per_port_tx_offload_result, 15837 config, "config"); 15838 cmdline_parse_token_num_t cmd_config_per_port_tx_offload_result_port_id = 15839 TOKEN_NUM_INITIALIZER 15840 (struct cmd_config_per_port_tx_offload_result, 15841 port_id, RTE_UINT16); 15842 cmdline_parse_token_string_t cmd_config_per_port_tx_offload_result_tx_offload = 15843 TOKEN_STRING_INITIALIZER 15844 (struct cmd_config_per_port_tx_offload_result, 15845 tx_offload, "tx_offload"); 15846 cmdline_parse_token_string_t cmd_config_per_port_tx_offload_result_offload = 15847 TOKEN_STRING_INITIALIZER 15848 (struct cmd_config_per_port_tx_offload_result, 15849 offload, "vlan_insert#ipv4_cksum#udp_cksum#tcp_cksum#" 15850 "sctp_cksum#tcp_tso#udp_tso#outer_ipv4_cksum#" 15851 "qinq_insert#vxlan_tnl_tso#gre_tnl_tso#" 15852 "ipip_tnl_tso#geneve_tnl_tso#macsec_insert#" 15853 "mt_lockfree#multi_segs#mbuf_fast_free#security#" 15854 "send_on_timestamp"); 15855 cmdline_parse_token_string_t cmd_config_per_port_tx_offload_result_on_off = 15856 TOKEN_STRING_INITIALIZER 15857 (struct cmd_config_per_port_tx_offload_result, 15858 on_off, "on#off"); 15859 15860 static uint64_t 15861 search_tx_offload(const char *name) 15862 { 15863 uint64_t single_offload; 15864 const char *single_name; 15865 int found = 0; 15866 unsigned int bit; 15867 15868 single_offload = 1; 15869 for (bit = 0; bit < sizeof(single_offload) * CHAR_BIT; bit++) { 15870 single_name = rte_eth_dev_tx_offload_name(single_offload); 15871 if (single_name == NULL) 15872 break; 15873 if (!strcasecmp(single_name, name)) { 15874 found = 1; 15875 break; 15876 } else if (!strcasecmp(single_name, "UNKNOWN")) 15877 break; 15878 single_offload <<= 1; 15879 } 15880 15881 if (found) 15882 return single_offload; 15883 15884 return 0; 15885 } 15886 15887 static void 15888 cmd_config_per_port_tx_offload_parsed(void *parsed_result, 15889 __rte_unused struct cmdline *cl, 15890 __rte_unused void *data) 15891 { 15892 struct cmd_config_per_port_tx_offload_result *res = parsed_result; 15893 portid_t port_id = res->port_id; 15894 struct rte_eth_dev_info dev_info; 15895 struct rte_port *port = &ports[port_id]; 15896 uint64_t single_offload; 15897 uint16_t nb_tx_queues; 15898 int q; 15899 int ret; 15900 15901 if (port->port_status != RTE_PORT_STOPPED) { 15902 printf("Error: Can't config offload when Port %d " 15903 "is not stopped\n", port_id); 15904 return; 15905 } 15906 15907 single_offload = search_tx_offload(res->offload); 15908 if (single_offload == 0) { 15909 printf("Unknown offload name: %s\n", res->offload); 15910 return; 15911 } 15912 15913 ret = eth_dev_info_get_print_err(port_id, &dev_info); 15914 if (ret != 0) 15915 return; 15916 15917 nb_tx_queues = dev_info.nb_tx_queues; 15918 if (!strcmp(res->on_off, "on")) { 15919 port->dev_conf.txmode.offloads |= single_offload; 15920 for (q = 0; q < nb_tx_queues; q++) 15921 port->tx_conf[q].offloads |= single_offload; 15922 } else { 15923 port->dev_conf.txmode.offloads &= ~single_offload; 15924 for (q = 0; q < nb_tx_queues; q++) 15925 port->tx_conf[q].offloads &= ~single_offload; 15926 } 15927 15928 cmd_reconfig_device_queue(port_id, 1, 1); 15929 } 15930 15931 cmdline_parse_inst_t cmd_config_per_port_tx_offload = { 15932 .f = cmd_config_per_port_tx_offload_parsed, 15933 .data = NULL, 15934 .help_str = "port config <port_id> tx_offload " 15935 "vlan_insert|ipv4_cksum|udp_cksum|tcp_cksum|" 15936 "sctp_cksum|tcp_tso|udp_tso|outer_ipv4_cksum|" 15937 "qinq_insert|vxlan_tnl_tso|gre_tnl_tso|" 15938 "ipip_tnl_tso|geneve_tnl_tso|macsec_insert|" 15939 "mt_lockfree|multi_segs|mbuf_fast_free|security|" 15940 "send_on_timestamp on|off", 15941 .tokens = { 15942 (void *)&cmd_config_per_port_tx_offload_result_port, 15943 (void *)&cmd_config_per_port_tx_offload_result_config, 15944 (void *)&cmd_config_per_port_tx_offload_result_port_id, 15945 (void *)&cmd_config_per_port_tx_offload_result_tx_offload, 15946 (void *)&cmd_config_per_port_tx_offload_result_offload, 15947 (void *)&cmd_config_per_port_tx_offload_result_on_off, 15948 NULL, 15949 } 15950 }; 15951 15952 /* Enable/Disable a per queue offloading */ 15953 struct cmd_config_per_queue_tx_offload_result { 15954 cmdline_fixed_string_t port; 15955 portid_t port_id; 15956 cmdline_fixed_string_t txq; 15957 uint16_t queue_id; 15958 cmdline_fixed_string_t tx_offload; 15959 cmdline_fixed_string_t offload; 15960 cmdline_fixed_string_t on_off; 15961 }; 15962 15963 cmdline_parse_token_string_t cmd_config_per_queue_tx_offload_result_port = 15964 TOKEN_STRING_INITIALIZER 15965 (struct cmd_config_per_queue_tx_offload_result, 15966 port, "port"); 15967 cmdline_parse_token_num_t cmd_config_per_queue_tx_offload_result_port_id = 15968 TOKEN_NUM_INITIALIZER 15969 (struct cmd_config_per_queue_tx_offload_result, 15970 port_id, RTE_UINT16); 15971 cmdline_parse_token_string_t cmd_config_per_queue_tx_offload_result_txq = 15972 TOKEN_STRING_INITIALIZER 15973 (struct cmd_config_per_queue_tx_offload_result, 15974 txq, "txq"); 15975 cmdline_parse_token_num_t cmd_config_per_queue_tx_offload_result_queue_id = 15976 TOKEN_NUM_INITIALIZER 15977 (struct cmd_config_per_queue_tx_offload_result, 15978 queue_id, RTE_UINT16); 15979 cmdline_parse_token_string_t cmd_config_per_queue_tx_offload_result_txoffload = 15980 TOKEN_STRING_INITIALIZER 15981 (struct cmd_config_per_queue_tx_offload_result, 15982 tx_offload, "tx_offload"); 15983 cmdline_parse_token_string_t cmd_config_per_queue_tx_offload_result_offload = 15984 TOKEN_STRING_INITIALIZER 15985 (struct cmd_config_per_queue_tx_offload_result, 15986 offload, "vlan_insert#ipv4_cksum#udp_cksum#tcp_cksum#" 15987 "sctp_cksum#tcp_tso#udp_tso#outer_ipv4_cksum#" 15988 "qinq_insert#vxlan_tnl_tso#gre_tnl_tso#" 15989 "ipip_tnl_tso#geneve_tnl_tso#macsec_insert#" 15990 "mt_lockfree#multi_segs#mbuf_fast_free#security"); 15991 cmdline_parse_token_string_t cmd_config_per_queue_tx_offload_result_on_off = 15992 TOKEN_STRING_INITIALIZER 15993 (struct cmd_config_per_queue_tx_offload_result, 15994 on_off, "on#off"); 15995 15996 static void 15997 cmd_config_per_queue_tx_offload_parsed(void *parsed_result, 15998 __rte_unused struct cmdline *cl, 15999 __rte_unused void *data) 16000 { 16001 struct cmd_config_per_queue_tx_offload_result *res = parsed_result; 16002 struct rte_eth_dev_info dev_info; 16003 portid_t port_id = res->port_id; 16004 uint16_t queue_id = res->queue_id; 16005 struct rte_port *port = &ports[port_id]; 16006 uint64_t single_offload; 16007 int ret; 16008 16009 if (port->port_status != RTE_PORT_STOPPED) { 16010 printf("Error: Can't config offload when Port %d " 16011 "is not stopped\n", port_id); 16012 return; 16013 } 16014 16015 ret = eth_dev_info_get_print_err(port_id, &dev_info); 16016 if (ret != 0) 16017 return; 16018 16019 if (queue_id >= dev_info.nb_tx_queues) { 16020 printf("Error: input queue_id should be 0 ... " 16021 "%d\n", dev_info.nb_tx_queues - 1); 16022 return; 16023 } 16024 16025 single_offload = search_tx_offload(res->offload); 16026 if (single_offload == 0) { 16027 printf("Unknown offload name: %s\n", res->offload); 16028 return; 16029 } 16030 16031 if (!strcmp(res->on_off, "on")) 16032 port->tx_conf[queue_id].offloads |= single_offload; 16033 else 16034 port->tx_conf[queue_id].offloads &= ~single_offload; 16035 16036 cmd_reconfig_device_queue(port_id, 1, 1); 16037 } 16038 16039 cmdline_parse_inst_t cmd_config_per_queue_tx_offload = { 16040 .f = cmd_config_per_queue_tx_offload_parsed, 16041 .data = NULL, 16042 .help_str = "port <port_id> txq <queue_id> tx_offload " 16043 "vlan_insert|ipv4_cksum|udp_cksum|tcp_cksum|" 16044 "sctp_cksum|tcp_tso|udp_tso|outer_ipv4_cksum|" 16045 "qinq_insert|vxlan_tnl_tso|gre_tnl_tso|" 16046 "ipip_tnl_tso|geneve_tnl_tso|macsec_insert|" 16047 "mt_lockfree|multi_segs|mbuf_fast_free|security " 16048 "on|off", 16049 .tokens = { 16050 (void *)&cmd_config_per_queue_tx_offload_result_port, 16051 (void *)&cmd_config_per_queue_tx_offload_result_port_id, 16052 (void *)&cmd_config_per_queue_tx_offload_result_txq, 16053 (void *)&cmd_config_per_queue_tx_offload_result_queue_id, 16054 (void *)&cmd_config_per_queue_tx_offload_result_txoffload, 16055 (void *)&cmd_config_per_queue_tx_offload_result_offload, 16056 (void *)&cmd_config_per_queue_tx_offload_result_on_off, 16057 NULL, 16058 } 16059 }; 16060 16061 /* *** configure tx_metadata for specific port *** */ 16062 struct cmd_config_tx_metadata_specific_result { 16063 cmdline_fixed_string_t port; 16064 cmdline_fixed_string_t keyword; 16065 uint16_t port_id; 16066 cmdline_fixed_string_t item; 16067 uint32_t value; 16068 }; 16069 16070 static void 16071 cmd_config_tx_metadata_specific_parsed(void *parsed_result, 16072 __rte_unused struct cmdline *cl, 16073 __rte_unused void *data) 16074 { 16075 struct cmd_config_tx_metadata_specific_result *res = parsed_result; 16076 16077 if (port_id_is_invalid(res->port_id, ENABLED_WARN)) 16078 return; 16079 ports[res->port_id].tx_metadata = res->value; 16080 /* Add/remove callback to insert valid metadata in every Tx packet. */ 16081 if (ports[res->port_id].tx_metadata) 16082 add_tx_md_callback(res->port_id); 16083 else 16084 remove_tx_md_callback(res->port_id); 16085 rte_flow_dynf_metadata_register(); 16086 } 16087 16088 cmdline_parse_token_string_t cmd_config_tx_metadata_specific_port = 16089 TOKEN_STRING_INITIALIZER(struct cmd_config_tx_metadata_specific_result, 16090 port, "port"); 16091 cmdline_parse_token_string_t cmd_config_tx_metadata_specific_keyword = 16092 TOKEN_STRING_INITIALIZER(struct cmd_config_tx_metadata_specific_result, 16093 keyword, "config"); 16094 cmdline_parse_token_num_t cmd_config_tx_metadata_specific_id = 16095 TOKEN_NUM_INITIALIZER(struct cmd_config_tx_metadata_specific_result, 16096 port_id, RTE_UINT16); 16097 cmdline_parse_token_string_t cmd_config_tx_metadata_specific_item = 16098 TOKEN_STRING_INITIALIZER(struct cmd_config_tx_metadata_specific_result, 16099 item, "tx_metadata"); 16100 cmdline_parse_token_num_t cmd_config_tx_metadata_specific_value = 16101 TOKEN_NUM_INITIALIZER(struct cmd_config_tx_metadata_specific_result, 16102 value, RTE_UINT32); 16103 16104 cmdline_parse_inst_t cmd_config_tx_metadata_specific = { 16105 .f = cmd_config_tx_metadata_specific_parsed, 16106 .data = NULL, 16107 .help_str = "port config <port_id> tx_metadata <value>", 16108 .tokens = { 16109 (void *)&cmd_config_tx_metadata_specific_port, 16110 (void *)&cmd_config_tx_metadata_specific_keyword, 16111 (void *)&cmd_config_tx_metadata_specific_id, 16112 (void *)&cmd_config_tx_metadata_specific_item, 16113 (void *)&cmd_config_tx_metadata_specific_value, 16114 NULL, 16115 }, 16116 }; 16117 16118 /* *** set dynf *** */ 16119 struct cmd_config_tx_dynf_specific_result { 16120 cmdline_fixed_string_t port; 16121 cmdline_fixed_string_t keyword; 16122 uint16_t port_id; 16123 cmdline_fixed_string_t item; 16124 cmdline_fixed_string_t name; 16125 cmdline_fixed_string_t value; 16126 }; 16127 16128 static void 16129 cmd_config_dynf_specific_parsed(void *parsed_result, 16130 __rte_unused struct cmdline *cl, 16131 __rte_unused void *data) 16132 { 16133 struct cmd_config_tx_dynf_specific_result *res = parsed_result; 16134 struct rte_mbuf_dynflag desc_flag; 16135 int flag; 16136 uint64_t old_port_flags; 16137 16138 if (port_id_is_invalid(res->port_id, ENABLED_WARN)) 16139 return; 16140 flag = rte_mbuf_dynflag_lookup(res->name, NULL); 16141 if (flag <= 0) { 16142 if (strlcpy(desc_flag.name, res->name, 16143 RTE_MBUF_DYN_NAMESIZE) >= RTE_MBUF_DYN_NAMESIZE) { 16144 printf("Flag name too long\n"); 16145 return; 16146 } 16147 desc_flag.flags = 0; 16148 flag = rte_mbuf_dynflag_register(&desc_flag); 16149 if (flag < 0) { 16150 printf("Can't register flag\n"); 16151 return; 16152 } 16153 strcpy(dynf_names[flag], desc_flag.name); 16154 } 16155 old_port_flags = ports[res->port_id].mbuf_dynf; 16156 if (!strcmp(res->value, "set")) { 16157 ports[res->port_id].mbuf_dynf |= 1UL << flag; 16158 if (old_port_flags == 0) 16159 add_tx_dynf_callback(res->port_id); 16160 } else { 16161 ports[res->port_id].mbuf_dynf &= ~(1UL << flag); 16162 if (ports[res->port_id].mbuf_dynf == 0) 16163 remove_tx_dynf_callback(res->port_id); 16164 } 16165 } 16166 16167 cmdline_parse_token_string_t cmd_config_tx_dynf_specific_port = 16168 TOKEN_STRING_INITIALIZER(struct cmd_config_tx_dynf_specific_result, 16169 keyword, "port"); 16170 cmdline_parse_token_string_t cmd_config_tx_dynf_specific_keyword = 16171 TOKEN_STRING_INITIALIZER(struct cmd_config_tx_dynf_specific_result, 16172 keyword, "config"); 16173 cmdline_parse_token_num_t cmd_config_tx_dynf_specific_port_id = 16174 TOKEN_NUM_INITIALIZER(struct cmd_config_tx_dynf_specific_result, 16175 port_id, RTE_UINT16); 16176 cmdline_parse_token_string_t cmd_config_tx_dynf_specific_item = 16177 TOKEN_STRING_INITIALIZER(struct cmd_config_tx_dynf_specific_result, 16178 item, "dynf"); 16179 cmdline_parse_token_string_t cmd_config_tx_dynf_specific_name = 16180 TOKEN_STRING_INITIALIZER(struct cmd_config_tx_dynf_specific_result, 16181 name, NULL); 16182 cmdline_parse_token_string_t cmd_config_tx_dynf_specific_value = 16183 TOKEN_STRING_INITIALIZER(struct cmd_config_tx_dynf_specific_result, 16184 value, "set#clear"); 16185 16186 cmdline_parse_inst_t cmd_config_tx_dynf_specific = { 16187 .f = cmd_config_dynf_specific_parsed, 16188 .data = NULL, 16189 .help_str = "port config <port id> dynf <name> set|clear", 16190 .tokens = { 16191 (void *)&cmd_config_tx_dynf_specific_port, 16192 (void *)&cmd_config_tx_dynf_specific_keyword, 16193 (void *)&cmd_config_tx_dynf_specific_port_id, 16194 (void *)&cmd_config_tx_dynf_specific_item, 16195 (void *)&cmd_config_tx_dynf_specific_name, 16196 (void *)&cmd_config_tx_dynf_specific_value, 16197 NULL, 16198 }, 16199 }; 16200 16201 /* *** display tx_metadata per port configuration *** */ 16202 struct cmd_show_tx_metadata_result { 16203 cmdline_fixed_string_t cmd_show; 16204 cmdline_fixed_string_t cmd_port; 16205 cmdline_fixed_string_t cmd_keyword; 16206 portid_t cmd_pid; 16207 }; 16208 16209 static void 16210 cmd_show_tx_metadata_parsed(void *parsed_result, 16211 __rte_unused struct cmdline *cl, 16212 __rte_unused void *data) 16213 { 16214 struct cmd_show_tx_metadata_result *res = parsed_result; 16215 16216 if (!rte_eth_dev_is_valid_port(res->cmd_pid)) { 16217 printf("invalid port id %u\n", res->cmd_pid); 16218 return; 16219 } 16220 if (!strcmp(res->cmd_keyword, "tx_metadata")) { 16221 printf("Port %u tx_metadata: %u\n", res->cmd_pid, 16222 ports[res->cmd_pid].tx_metadata); 16223 } 16224 } 16225 16226 cmdline_parse_token_string_t cmd_show_tx_metadata_show = 16227 TOKEN_STRING_INITIALIZER(struct cmd_show_tx_metadata_result, 16228 cmd_show, "show"); 16229 cmdline_parse_token_string_t cmd_show_tx_metadata_port = 16230 TOKEN_STRING_INITIALIZER(struct cmd_show_tx_metadata_result, 16231 cmd_port, "port"); 16232 cmdline_parse_token_num_t cmd_show_tx_metadata_pid = 16233 TOKEN_NUM_INITIALIZER(struct cmd_show_tx_metadata_result, 16234 cmd_pid, RTE_UINT16); 16235 cmdline_parse_token_string_t cmd_show_tx_metadata_keyword = 16236 TOKEN_STRING_INITIALIZER(struct cmd_show_tx_metadata_result, 16237 cmd_keyword, "tx_metadata"); 16238 16239 cmdline_parse_inst_t cmd_show_tx_metadata = { 16240 .f = cmd_show_tx_metadata_parsed, 16241 .data = NULL, 16242 .help_str = "show port <port_id> tx_metadata", 16243 .tokens = { 16244 (void *)&cmd_show_tx_metadata_show, 16245 (void *)&cmd_show_tx_metadata_port, 16246 (void *)&cmd_show_tx_metadata_pid, 16247 (void *)&cmd_show_tx_metadata_keyword, 16248 NULL, 16249 }, 16250 }; 16251 16252 /* *** show fec capability per port configuration *** */ 16253 struct cmd_show_fec_capability_result { 16254 cmdline_fixed_string_t cmd_show; 16255 cmdline_fixed_string_t cmd_port; 16256 cmdline_fixed_string_t cmd_fec; 16257 cmdline_fixed_string_t cmd_keyword; 16258 portid_t cmd_pid; 16259 }; 16260 16261 static void 16262 cmd_show_fec_capability_parsed(void *parsed_result, 16263 __rte_unused struct cmdline *cl, 16264 __rte_unused void *data) 16265 { 16266 #define FEC_CAP_NUM 2 16267 struct cmd_show_fec_capability_result *res = parsed_result; 16268 struct rte_eth_fec_capa speed_fec_capa[FEC_CAP_NUM]; 16269 unsigned int num = FEC_CAP_NUM; 16270 unsigned int ret_num; 16271 int ret; 16272 16273 if (!rte_eth_dev_is_valid_port(res->cmd_pid)) { 16274 printf("Invalid port id %u\n", res->cmd_pid); 16275 return; 16276 } 16277 16278 ret = rte_eth_fec_get_capability(res->cmd_pid, speed_fec_capa, num); 16279 if (ret == -ENOTSUP) { 16280 printf("Function not implemented\n"); 16281 return; 16282 } else if (ret < 0) { 16283 printf("Get FEC capability failed\n"); 16284 return; 16285 } 16286 16287 ret_num = (unsigned int)ret; 16288 show_fec_capability(ret_num, speed_fec_capa); 16289 } 16290 16291 cmdline_parse_token_string_t cmd_show_fec_capability_show = 16292 TOKEN_STRING_INITIALIZER(struct cmd_show_fec_capability_result, 16293 cmd_show, "show"); 16294 cmdline_parse_token_string_t cmd_show_fec_capability_port = 16295 TOKEN_STRING_INITIALIZER(struct cmd_show_fec_capability_result, 16296 cmd_port, "port"); 16297 cmdline_parse_token_num_t cmd_show_fec_capability_pid = 16298 TOKEN_NUM_INITIALIZER(struct cmd_show_fec_capability_result, 16299 cmd_pid, RTE_UINT16); 16300 cmdline_parse_token_string_t cmd_show_fec_capability_fec = 16301 TOKEN_STRING_INITIALIZER(struct cmd_show_fec_capability_result, 16302 cmd_fec, "fec"); 16303 cmdline_parse_token_string_t cmd_show_fec_capability_keyword = 16304 TOKEN_STRING_INITIALIZER(struct cmd_show_fec_capability_result, 16305 cmd_keyword, "capabilities"); 16306 16307 cmdline_parse_inst_t cmd_show_capability = { 16308 .f = cmd_show_fec_capability_parsed, 16309 .data = NULL, 16310 .help_str = "show port <port_id> fec capabilities", 16311 .tokens = { 16312 (void *)&cmd_show_fec_capability_show, 16313 (void *)&cmd_show_fec_capability_port, 16314 (void *)&cmd_show_fec_capability_pid, 16315 (void *)&cmd_show_fec_capability_fec, 16316 (void *)&cmd_show_fec_capability_keyword, 16317 NULL, 16318 }, 16319 }; 16320 16321 /* *** show fec mode per port configuration *** */ 16322 struct cmd_show_fec_metadata_result { 16323 cmdline_fixed_string_t cmd_show; 16324 cmdline_fixed_string_t cmd_port; 16325 cmdline_fixed_string_t cmd_keyword; 16326 portid_t cmd_pid; 16327 }; 16328 16329 static void 16330 cmd_show_fec_mode_parsed(void *parsed_result, 16331 __rte_unused struct cmdline *cl, 16332 __rte_unused void *data) 16333 { 16334 #define FEC_NAME_SIZE 16 16335 struct cmd_show_fec_metadata_result *res = parsed_result; 16336 uint32_t mode; 16337 char buf[FEC_NAME_SIZE]; 16338 int ret; 16339 16340 if (!rte_eth_dev_is_valid_port(res->cmd_pid)) { 16341 printf("Invalid port id %u\n", res->cmd_pid); 16342 return; 16343 } 16344 ret = rte_eth_fec_get(res->cmd_pid, &mode); 16345 if (ret == -ENOTSUP) { 16346 printf("Function not implemented\n"); 16347 return; 16348 } else if (ret < 0) { 16349 printf("Get FEC mode failed\n"); 16350 return; 16351 } 16352 16353 switch (mode) { 16354 case RTE_ETH_FEC_MODE_CAPA_MASK(NOFEC): 16355 strlcpy(buf, "off", sizeof(buf)); 16356 break; 16357 case RTE_ETH_FEC_MODE_CAPA_MASK(AUTO): 16358 strlcpy(buf, "auto", sizeof(buf)); 16359 break; 16360 case RTE_ETH_FEC_MODE_CAPA_MASK(BASER): 16361 strlcpy(buf, "baser", sizeof(buf)); 16362 break; 16363 case RTE_ETH_FEC_MODE_CAPA_MASK(RS): 16364 strlcpy(buf, "rs", sizeof(buf)); 16365 break; 16366 default: 16367 return; 16368 } 16369 16370 printf("%s\n", buf); 16371 } 16372 16373 cmdline_parse_token_string_t cmd_show_fec_mode_show = 16374 TOKEN_STRING_INITIALIZER(struct cmd_show_fec_metadata_result, 16375 cmd_show, "show"); 16376 cmdline_parse_token_string_t cmd_show_fec_mode_port = 16377 TOKEN_STRING_INITIALIZER(struct cmd_show_fec_metadata_result, 16378 cmd_port, "port"); 16379 cmdline_parse_token_num_t cmd_show_fec_mode_pid = 16380 TOKEN_NUM_INITIALIZER(struct cmd_show_fec_metadata_result, 16381 cmd_pid, RTE_UINT16); 16382 cmdline_parse_token_string_t cmd_show_fec_mode_keyword = 16383 TOKEN_STRING_INITIALIZER(struct cmd_show_fec_metadata_result, 16384 cmd_keyword, "fec_mode"); 16385 16386 cmdline_parse_inst_t cmd_show_fec_mode = { 16387 .f = cmd_show_fec_mode_parsed, 16388 .data = NULL, 16389 .help_str = "show port <port_id> fec_mode", 16390 .tokens = { 16391 (void *)&cmd_show_fec_mode_show, 16392 (void *)&cmd_show_fec_mode_port, 16393 (void *)&cmd_show_fec_mode_pid, 16394 (void *)&cmd_show_fec_mode_keyword, 16395 NULL, 16396 }, 16397 }; 16398 16399 /* *** set fec mode per port configuration *** */ 16400 struct cmd_set_port_fec_mode { 16401 cmdline_fixed_string_t set; 16402 cmdline_fixed_string_t port; 16403 portid_t port_id; 16404 cmdline_fixed_string_t fec_mode; 16405 cmdline_fixed_string_t fec_value; 16406 }; 16407 16408 /* Common CLI fields for set fec mode */ 16409 cmdline_parse_token_string_t cmd_set_port_fec_mode_set = 16410 TOKEN_STRING_INITIALIZER 16411 (struct cmd_set_port_fec_mode, 16412 set, "set"); 16413 cmdline_parse_token_string_t cmd_set_port_fec_mode_port = 16414 TOKEN_STRING_INITIALIZER 16415 (struct cmd_set_port_fec_mode, 16416 port, "port"); 16417 cmdline_parse_token_num_t cmd_set_port_fec_mode_port_id = 16418 TOKEN_NUM_INITIALIZER 16419 (struct cmd_set_port_fec_mode, 16420 port_id, RTE_UINT16); 16421 cmdline_parse_token_string_t cmd_set_port_fec_mode_str = 16422 TOKEN_STRING_INITIALIZER 16423 (struct cmd_set_port_fec_mode, 16424 fec_mode, "fec_mode"); 16425 cmdline_parse_token_string_t cmd_set_port_fec_mode_value = 16426 TOKEN_STRING_INITIALIZER 16427 (struct cmd_set_port_fec_mode, 16428 fec_value, NULL); 16429 16430 static void 16431 cmd_set_port_fec_mode_parsed( 16432 void *parsed_result, 16433 __rte_unused struct cmdline *cl, 16434 __rte_unused void *data) 16435 { 16436 struct cmd_set_port_fec_mode *res = parsed_result; 16437 uint16_t port_id = res->port_id; 16438 uint32_t mode; 16439 int ret; 16440 16441 ret = parse_fec_mode(res->fec_value, &mode); 16442 if (ret < 0) { 16443 printf("Unknown fec mode: %s for Port %d\n", res->fec_value, 16444 port_id); 16445 return; 16446 } 16447 16448 ret = rte_eth_fec_set(port_id, mode); 16449 if (ret == -ENOTSUP) { 16450 printf("Function not implemented\n"); 16451 return; 16452 } else if (ret < 0) { 16453 printf("Set FEC mode failed\n"); 16454 return; 16455 } 16456 } 16457 16458 cmdline_parse_inst_t cmd_set_fec_mode = { 16459 .f = cmd_set_port_fec_mode_parsed, 16460 .data = NULL, 16461 .help_str = "set port <port_id> fec_mode auto|off|rs|baser", 16462 .tokens = { 16463 (void *)&cmd_set_port_fec_mode_set, 16464 (void *)&cmd_set_port_fec_mode_port, 16465 (void *)&cmd_set_port_fec_mode_port_id, 16466 (void *)&cmd_set_port_fec_mode_str, 16467 (void *)&cmd_set_port_fec_mode_value, 16468 NULL, 16469 }, 16470 }; 16471 16472 /* show port supported ptypes */ 16473 16474 /* Common result structure for show port ptypes */ 16475 struct cmd_show_port_supported_ptypes_result { 16476 cmdline_fixed_string_t show; 16477 cmdline_fixed_string_t port; 16478 portid_t port_id; 16479 cmdline_fixed_string_t ptypes; 16480 }; 16481 16482 /* Common CLI fields for show port ptypes */ 16483 cmdline_parse_token_string_t cmd_show_port_supported_ptypes_show = 16484 TOKEN_STRING_INITIALIZER 16485 (struct cmd_show_port_supported_ptypes_result, 16486 show, "show"); 16487 cmdline_parse_token_string_t cmd_show_port_supported_ptypes_port = 16488 TOKEN_STRING_INITIALIZER 16489 (struct cmd_show_port_supported_ptypes_result, 16490 port, "port"); 16491 cmdline_parse_token_num_t cmd_show_port_supported_ptypes_port_id = 16492 TOKEN_NUM_INITIALIZER 16493 (struct cmd_show_port_supported_ptypes_result, 16494 port_id, RTE_UINT16); 16495 cmdline_parse_token_string_t cmd_show_port_supported_ptypes_ptypes = 16496 TOKEN_STRING_INITIALIZER 16497 (struct cmd_show_port_supported_ptypes_result, 16498 ptypes, "ptypes"); 16499 16500 static void 16501 cmd_show_port_supported_ptypes_parsed( 16502 void *parsed_result, 16503 __rte_unused struct cmdline *cl, 16504 __rte_unused void *data) 16505 { 16506 #define RSVD_PTYPE_MASK 0xf0000000 16507 #define MAX_PTYPES_PER_LAYER 16 16508 #define LTYPE_NAMESIZE 32 16509 #define PTYPE_NAMESIZE 256 16510 struct cmd_show_port_supported_ptypes_result *res = parsed_result; 16511 char buf[PTYPE_NAMESIZE], ltype[LTYPE_NAMESIZE]; 16512 uint32_t ptype_mask = RTE_PTYPE_L2_MASK; 16513 uint32_t ptypes[MAX_PTYPES_PER_LAYER]; 16514 uint16_t port_id = res->port_id; 16515 int ret, i; 16516 16517 ret = rte_eth_dev_get_supported_ptypes(port_id, ptype_mask, NULL, 0); 16518 if (ret < 0) 16519 return; 16520 16521 while (ptype_mask != RSVD_PTYPE_MASK) { 16522 16523 switch (ptype_mask) { 16524 case RTE_PTYPE_L2_MASK: 16525 strlcpy(ltype, "L2", sizeof(ltype)); 16526 break; 16527 case RTE_PTYPE_L3_MASK: 16528 strlcpy(ltype, "L3", sizeof(ltype)); 16529 break; 16530 case RTE_PTYPE_L4_MASK: 16531 strlcpy(ltype, "L4", sizeof(ltype)); 16532 break; 16533 case RTE_PTYPE_TUNNEL_MASK: 16534 strlcpy(ltype, "Tunnel", sizeof(ltype)); 16535 break; 16536 case RTE_PTYPE_INNER_L2_MASK: 16537 strlcpy(ltype, "Inner L2", sizeof(ltype)); 16538 break; 16539 case RTE_PTYPE_INNER_L3_MASK: 16540 strlcpy(ltype, "Inner L3", sizeof(ltype)); 16541 break; 16542 case RTE_PTYPE_INNER_L4_MASK: 16543 strlcpy(ltype, "Inner L4", sizeof(ltype)); 16544 break; 16545 default: 16546 return; 16547 } 16548 16549 ret = rte_eth_dev_get_supported_ptypes(res->port_id, 16550 ptype_mask, ptypes, 16551 MAX_PTYPES_PER_LAYER); 16552 16553 if (ret > 0) 16554 printf("Supported %s ptypes:\n", ltype); 16555 else 16556 printf("%s ptypes unsupported\n", ltype); 16557 16558 for (i = 0; i < ret; ++i) { 16559 rte_get_ptype_name(ptypes[i], buf, sizeof(buf)); 16560 printf("%s\n", buf); 16561 } 16562 16563 ptype_mask <<= 4; 16564 } 16565 } 16566 16567 cmdline_parse_inst_t cmd_show_port_supported_ptypes = { 16568 .f = cmd_show_port_supported_ptypes_parsed, 16569 .data = NULL, 16570 .help_str = "show port <port_id> ptypes", 16571 .tokens = { 16572 (void *)&cmd_show_port_supported_ptypes_show, 16573 (void *)&cmd_show_port_supported_ptypes_port, 16574 (void *)&cmd_show_port_supported_ptypes_port_id, 16575 (void *)&cmd_show_port_supported_ptypes_ptypes, 16576 NULL, 16577 }, 16578 }; 16579 16580 /* *** display rx/tx descriptor status *** */ 16581 struct cmd_show_rx_tx_desc_status_result { 16582 cmdline_fixed_string_t cmd_show; 16583 cmdline_fixed_string_t cmd_port; 16584 cmdline_fixed_string_t cmd_keyword; 16585 cmdline_fixed_string_t cmd_desc; 16586 cmdline_fixed_string_t cmd_status; 16587 portid_t cmd_pid; 16588 portid_t cmd_qid; 16589 portid_t cmd_did; 16590 }; 16591 16592 static void 16593 cmd_show_rx_tx_desc_status_parsed(void *parsed_result, 16594 __rte_unused struct cmdline *cl, 16595 __rte_unused void *data) 16596 { 16597 struct cmd_show_rx_tx_desc_status_result *res = parsed_result; 16598 int rc; 16599 16600 if (!rte_eth_dev_is_valid_port(res->cmd_pid)) { 16601 printf("invalid port id %u\n", res->cmd_pid); 16602 return; 16603 } 16604 16605 if (!strcmp(res->cmd_keyword, "rxq")) { 16606 rc = rte_eth_rx_descriptor_status(res->cmd_pid, res->cmd_qid, 16607 res->cmd_did); 16608 if (rc < 0) { 16609 printf("Invalid queueid = %d\n", res->cmd_qid); 16610 return; 16611 } 16612 if (rc == RTE_ETH_RX_DESC_AVAIL) 16613 printf("Desc status = AVAILABLE\n"); 16614 else if (rc == RTE_ETH_RX_DESC_DONE) 16615 printf("Desc status = DONE\n"); 16616 else 16617 printf("Desc status = UNAVAILABLE\n"); 16618 } else if (!strcmp(res->cmd_keyword, "txq")) { 16619 rc = rte_eth_tx_descriptor_status(res->cmd_pid, res->cmd_qid, 16620 res->cmd_did); 16621 if (rc < 0) { 16622 printf("Invalid queueid = %d\n", res->cmd_qid); 16623 return; 16624 } 16625 if (rc == RTE_ETH_TX_DESC_FULL) 16626 printf("Desc status = FULL\n"); 16627 else if (rc == RTE_ETH_TX_DESC_DONE) 16628 printf("Desc status = DONE\n"); 16629 else 16630 printf("Desc status = UNAVAILABLE\n"); 16631 } 16632 } 16633 16634 cmdline_parse_token_string_t cmd_show_rx_tx_desc_status_show = 16635 TOKEN_STRING_INITIALIZER(struct cmd_show_rx_tx_desc_status_result, 16636 cmd_show, "show"); 16637 cmdline_parse_token_string_t cmd_show_rx_tx_desc_status_port = 16638 TOKEN_STRING_INITIALIZER(struct cmd_show_rx_tx_desc_status_result, 16639 cmd_port, "port"); 16640 cmdline_parse_token_num_t cmd_show_rx_tx_desc_status_pid = 16641 TOKEN_NUM_INITIALIZER(struct cmd_show_rx_tx_desc_status_result, 16642 cmd_pid, RTE_UINT16); 16643 cmdline_parse_token_string_t cmd_show_rx_tx_desc_status_keyword = 16644 TOKEN_STRING_INITIALIZER(struct cmd_show_rx_tx_desc_status_result, 16645 cmd_keyword, "rxq#txq"); 16646 cmdline_parse_token_num_t cmd_show_rx_tx_desc_status_qid = 16647 TOKEN_NUM_INITIALIZER(struct cmd_show_rx_tx_desc_status_result, 16648 cmd_qid, RTE_UINT16); 16649 cmdline_parse_token_string_t cmd_show_rx_tx_desc_status_desc = 16650 TOKEN_STRING_INITIALIZER(struct cmd_show_rx_tx_desc_status_result, 16651 cmd_desc, "desc"); 16652 cmdline_parse_token_num_t cmd_show_rx_tx_desc_status_did = 16653 TOKEN_NUM_INITIALIZER(struct cmd_show_rx_tx_desc_status_result, 16654 cmd_did, RTE_UINT16); 16655 cmdline_parse_token_string_t cmd_show_rx_tx_desc_status_status = 16656 TOKEN_STRING_INITIALIZER(struct cmd_show_rx_tx_desc_status_result, 16657 cmd_status, "status"); 16658 cmdline_parse_inst_t cmd_show_rx_tx_desc_status = { 16659 .f = cmd_show_rx_tx_desc_status_parsed, 16660 .data = NULL, 16661 .help_str = "show port <port_id> rxq|txq <queue_id> desc <desc_id> " 16662 "status", 16663 .tokens = { 16664 (void *)&cmd_show_rx_tx_desc_status_show, 16665 (void *)&cmd_show_rx_tx_desc_status_port, 16666 (void *)&cmd_show_rx_tx_desc_status_pid, 16667 (void *)&cmd_show_rx_tx_desc_status_keyword, 16668 (void *)&cmd_show_rx_tx_desc_status_qid, 16669 (void *)&cmd_show_rx_tx_desc_status_desc, 16670 (void *)&cmd_show_rx_tx_desc_status_did, 16671 (void *)&cmd_show_rx_tx_desc_status_status, 16672 NULL, 16673 }, 16674 }; 16675 16676 /* Common result structure for set port ptypes */ 16677 struct cmd_set_port_ptypes_result { 16678 cmdline_fixed_string_t set; 16679 cmdline_fixed_string_t port; 16680 portid_t port_id; 16681 cmdline_fixed_string_t ptype_mask; 16682 uint32_t mask; 16683 }; 16684 16685 /* Common CLI fields for set port ptypes */ 16686 cmdline_parse_token_string_t cmd_set_port_ptypes_set = 16687 TOKEN_STRING_INITIALIZER 16688 (struct cmd_set_port_ptypes_result, 16689 set, "set"); 16690 cmdline_parse_token_string_t cmd_set_port_ptypes_port = 16691 TOKEN_STRING_INITIALIZER 16692 (struct cmd_set_port_ptypes_result, 16693 port, "port"); 16694 cmdline_parse_token_num_t cmd_set_port_ptypes_port_id = 16695 TOKEN_NUM_INITIALIZER 16696 (struct cmd_set_port_ptypes_result, 16697 port_id, RTE_UINT16); 16698 cmdline_parse_token_string_t cmd_set_port_ptypes_mask_str = 16699 TOKEN_STRING_INITIALIZER 16700 (struct cmd_set_port_ptypes_result, 16701 ptype_mask, "ptype_mask"); 16702 cmdline_parse_token_num_t cmd_set_port_ptypes_mask_u32 = 16703 TOKEN_NUM_INITIALIZER 16704 (struct cmd_set_port_ptypes_result, 16705 mask, RTE_UINT32); 16706 16707 static void 16708 cmd_set_port_ptypes_parsed( 16709 void *parsed_result, 16710 __rte_unused struct cmdline *cl, 16711 __rte_unused void *data) 16712 { 16713 struct cmd_set_port_ptypes_result *res = parsed_result; 16714 #define PTYPE_NAMESIZE 256 16715 char ptype_name[PTYPE_NAMESIZE]; 16716 uint16_t port_id = res->port_id; 16717 uint32_t ptype_mask = res->mask; 16718 int ret, i; 16719 16720 ret = rte_eth_dev_get_supported_ptypes(port_id, RTE_PTYPE_ALL_MASK, 16721 NULL, 0); 16722 if (ret <= 0) { 16723 printf("Port %d doesn't support any ptypes.\n", port_id); 16724 return; 16725 } 16726 16727 uint32_t ptypes[ret]; 16728 16729 ret = rte_eth_dev_set_ptypes(port_id, ptype_mask, ptypes, ret); 16730 if (ret < 0) { 16731 printf("Unable to set requested ptypes for Port %d\n", port_id); 16732 return; 16733 } 16734 16735 printf("Successfully set following ptypes for Port %d\n", port_id); 16736 for (i = 0; i < ret && ptypes[i] != RTE_PTYPE_UNKNOWN; i++) { 16737 rte_get_ptype_name(ptypes[i], ptype_name, sizeof(ptype_name)); 16738 printf("%s\n", ptype_name); 16739 } 16740 16741 clear_ptypes = false; 16742 } 16743 16744 cmdline_parse_inst_t cmd_set_port_ptypes = { 16745 .f = cmd_set_port_ptypes_parsed, 16746 .data = NULL, 16747 .help_str = "set port <port_id> ptype_mask <mask>", 16748 .tokens = { 16749 (void *)&cmd_set_port_ptypes_set, 16750 (void *)&cmd_set_port_ptypes_port, 16751 (void *)&cmd_set_port_ptypes_port_id, 16752 (void *)&cmd_set_port_ptypes_mask_str, 16753 (void *)&cmd_set_port_ptypes_mask_u32, 16754 NULL, 16755 }, 16756 }; 16757 16758 /* *** display mac addresses added to a port *** */ 16759 struct cmd_showport_macs_result { 16760 cmdline_fixed_string_t cmd_show; 16761 cmdline_fixed_string_t cmd_port; 16762 cmdline_fixed_string_t cmd_keyword; 16763 portid_t cmd_pid; 16764 }; 16765 16766 static void 16767 cmd_showport_macs_parsed(void *parsed_result, 16768 __rte_unused struct cmdline *cl, 16769 __rte_unused void *data) 16770 { 16771 struct cmd_showport_macs_result *res = parsed_result; 16772 16773 if (port_id_is_invalid(res->cmd_pid, ENABLED_WARN)) 16774 return; 16775 16776 if (!strcmp(res->cmd_keyword, "macs")) 16777 show_macs(res->cmd_pid); 16778 else if (!strcmp(res->cmd_keyword, "mcast_macs")) 16779 show_mcast_macs(res->cmd_pid); 16780 } 16781 16782 cmdline_parse_token_string_t cmd_showport_macs_show = 16783 TOKEN_STRING_INITIALIZER(struct cmd_showport_macs_result, 16784 cmd_show, "show"); 16785 cmdline_parse_token_string_t cmd_showport_macs_port = 16786 TOKEN_STRING_INITIALIZER(struct cmd_showport_macs_result, 16787 cmd_port, "port"); 16788 cmdline_parse_token_num_t cmd_showport_macs_pid = 16789 TOKEN_NUM_INITIALIZER(struct cmd_showport_macs_result, 16790 cmd_pid, RTE_UINT16); 16791 cmdline_parse_token_string_t cmd_showport_macs_keyword = 16792 TOKEN_STRING_INITIALIZER(struct cmd_showport_macs_result, 16793 cmd_keyword, "macs#mcast_macs"); 16794 16795 cmdline_parse_inst_t cmd_showport_macs = { 16796 .f = cmd_showport_macs_parsed, 16797 .data = NULL, 16798 .help_str = "show port <port_id> macs|mcast_macs", 16799 .tokens = { 16800 (void *)&cmd_showport_macs_show, 16801 (void *)&cmd_showport_macs_port, 16802 (void *)&cmd_showport_macs_pid, 16803 (void *)&cmd_showport_macs_keyword, 16804 NULL, 16805 }, 16806 }; 16807 16808 /* ******************************************************************************** */ 16809 16810 /* list of instructions */ 16811 cmdline_parse_ctx_t main_ctx[] = { 16812 (cmdline_parse_inst_t *)&cmd_help_brief, 16813 (cmdline_parse_inst_t *)&cmd_help_long, 16814 (cmdline_parse_inst_t *)&cmd_quit, 16815 (cmdline_parse_inst_t *)&cmd_load_from_file, 16816 (cmdline_parse_inst_t *)&cmd_showport, 16817 (cmdline_parse_inst_t *)&cmd_showqueue, 16818 (cmdline_parse_inst_t *)&cmd_showeeprom, 16819 (cmdline_parse_inst_t *)&cmd_showportall, 16820 (cmdline_parse_inst_t *)&cmd_showdevice, 16821 (cmdline_parse_inst_t *)&cmd_showcfg, 16822 (cmdline_parse_inst_t *)&cmd_showfwdall, 16823 (cmdline_parse_inst_t *)&cmd_start, 16824 (cmdline_parse_inst_t *)&cmd_start_tx_first, 16825 (cmdline_parse_inst_t *)&cmd_start_tx_first_n, 16826 (cmdline_parse_inst_t *)&cmd_set_link_up, 16827 (cmdline_parse_inst_t *)&cmd_set_link_down, 16828 (cmdline_parse_inst_t *)&cmd_reset, 16829 (cmdline_parse_inst_t *)&cmd_set_numbers, 16830 (cmdline_parse_inst_t *)&cmd_set_log, 16831 (cmdline_parse_inst_t *)&cmd_set_rxoffs, 16832 (cmdline_parse_inst_t *)&cmd_set_rxpkts, 16833 (cmdline_parse_inst_t *)&cmd_set_txpkts, 16834 (cmdline_parse_inst_t *)&cmd_set_txsplit, 16835 (cmdline_parse_inst_t *)&cmd_set_txtimes, 16836 (cmdline_parse_inst_t *)&cmd_set_fwd_list, 16837 (cmdline_parse_inst_t *)&cmd_set_fwd_mask, 16838 (cmdline_parse_inst_t *)&cmd_set_fwd_mode, 16839 (cmdline_parse_inst_t *)&cmd_set_fwd_retry_mode, 16840 (cmdline_parse_inst_t *)&cmd_set_burst_tx_retry, 16841 (cmdline_parse_inst_t *)&cmd_set_promisc_mode_one, 16842 (cmdline_parse_inst_t *)&cmd_set_promisc_mode_all, 16843 (cmdline_parse_inst_t *)&cmd_set_allmulti_mode_one, 16844 (cmdline_parse_inst_t *)&cmd_set_allmulti_mode_all, 16845 (cmdline_parse_inst_t *)&cmd_set_flush_rx, 16846 (cmdline_parse_inst_t *)&cmd_set_link_check, 16847 (cmdline_parse_inst_t *)&cmd_set_bypass_mode, 16848 (cmdline_parse_inst_t *)&cmd_set_bypass_event, 16849 (cmdline_parse_inst_t *)&cmd_set_bypass_timeout, 16850 (cmdline_parse_inst_t *)&cmd_show_bypass_config, 16851 #ifdef RTE_NET_BOND 16852 (cmdline_parse_inst_t *) &cmd_set_bonding_mode, 16853 (cmdline_parse_inst_t *) &cmd_show_bonding_config, 16854 (cmdline_parse_inst_t *) &cmd_set_bonding_primary, 16855 (cmdline_parse_inst_t *) &cmd_add_bonding_slave, 16856 (cmdline_parse_inst_t *) &cmd_remove_bonding_slave, 16857 (cmdline_parse_inst_t *) &cmd_create_bonded_device, 16858 (cmdline_parse_inst_t *) &cmd_set_bond_mac_addr, 16859 (cmdline_parse_inst_t *) &cmd_set_balance_xmit_policy, 16860 (cmdline_parse_inst_t *) &cmd_set_bond_mon_period, 16861 (cmdline_parse_inst_t *) &cmd_set_lacp_dedicated_queues, 16862 (cmdline_parse_inst_t *) &cmd_set_bonding_agg_mode_policy, 16863 #endif 16864 (cmdline_parse_inst_t *)&cmd_vlan_offload, 16865 (cmdline_parse_inst_t *)&cmd_vlan_tpid, 16866 (cmdline_parse_inst_t *)&cmd_rx_vlan_filter_all, 16867 (cmdline_parse_inst_t *)&cmd_rx_vlan_filter, 16868 (cmdline_parse_inst_t *)&cmd_tx_vlan_set, 16869 (cmdline_parse_inst_t *)&cmd_tx_vlan_set_qinq, 16870 (cmdline_parse_inst_t *)&cmd_tx_vlan_reset, 16871 (cmdline_parse_inst_t *)&cmd_tx_vlan_set_pvid, 16872 (cmdline_parse_inst_t *)&cmd_csum_set, 16873 (cmdline_parse_inst_t *)&cmd_csum_show, 16874 (cmdline_parse_inst_t *)&cmd_csum_tunnel, 16875 (cmdline_parse_inst_t *)&cmd_tso_set, 16876 (cmdline_parse_inst_t *)&cmd_tso_show, 16877 (cmdline_parse_inst_t *)&cmd_tunnel_tso_set, 16878 (cmdline_parse_inst_t *)&cmd_tunnel_tso_show, 16879 (cmdline_parse_inst_t *)&cmd_gro_enable, 16880 (cmdline_parse_inst_t *)&cmd_gro_flush, 16881 (cmdline_parse_inst_t *)&cmd_gro_show, 16882 (cmdline_parse_inst_t *)&cmd_gso_enable, 16883 (cmdline_parse_inst_t *)&cmd_gso_size, 16884 (cmdline_parse_inst_t *)&cmd_gso_show, 16885 (cmdline_parse_inst_t *)&cmd_link_flow_control_set, 16886 (cmdline_parse_inst_t *)&cmd_link_flow_control_set_rx, 16887 (cmdline_parse_inst_t *)&cmd_link_flow_control_set_tx, 16888 (cmdline_parse_inst_t *)&cmd_link_flow_control_set_hw, 16889 (cmdline_parse_inst_t *)&cmd_link_flow_control_set_lw, 16890 (cmdline_parse_inst_t *)&cmd_link_flow_control_set_pt, 16891 (cmdline_parse_inst_t *)&cmd_link_flow_control_set_xon, 16892 (cmdline_parse_inst_t *)&cmd_link_flow_control_set_macfwd, 16893 (cmdline_parse_inst_t *)&cmd_link_flow_control_set_autoneg, 16894 (cmdline_parse_inst_t *)&cmd_priority_flow_control_set, 16895 (cmdline_parse_inst_t *)&cmd_config_dcb, 16896 (cmdline_parse_inst_t *)&cmd_read_reg, 16897 (cmdline_parse_inst_t *)&cmd_read_reg_bit_field, 16898 (cmdline_parse_inst_t *)&cmd_read_reg_bit, 16899 (cmdline_parse_inst_t *)&cmd_write_reg, 16900 (cmdline_parse_inst_t *)&cmd_write_reg_bit_field, 16901 (cmdline_parse_inst_t *)&cmd_write_reg_bit, 16902 (cmdline_parse_inst_t *)&cmd_read_rxd_txd, 16903 (cmdline_parse_inst_t *)&cmd_stop, 16904 (cmdline_parse_inst_t *)&cmd_mac_addr, 16905 (cmdline_parse_inst_t *)&cmd_set_fwd_eth_peer, 16906 (cmdline_parse_inst_t *)&cmd_set_qmap, 16907 (cmdline_parse_inst_t *)&cmd_set_xstats_hide_zero, 16908 (cmdline_parse_inst_t *)&cmd_set_record_core_cycles, 16909 (cmdline_parse_inst_t *)&cmd_set_record_burst_stats, 16910 (cmdline_parse_inst_t *)&cmd_operate_port, 16911 (cmdline_parse_inst_t *)&cmd_operate_specific_port, 16912 (cmdline_parse_inst_t *)&cmd_operate_attach_port, 16913 (cmdline_parse_inst_t *)&cmd_operate_detach_port, 16914 (cmdline_parse_inst_t *)&cmd_operate_detach_device, 16915 (cmdline_parse_inst_t *)&cmd_set_port_setup_on, 16916 (cmdline_parse_inst_t *)&cmd_config_speed_all, 16917 (cmdline_parse_inst_t *)&cmd_config_speed_specific, 16918 (cmdline_parse_inst_t *)&cmd_config_loopback_all, 16919 (cmdline_parse_inst_t *)&cmd_config_loopback_specific, 16920 (cmdline_parse_inst_t *)&cmd_config_rx_tx, 16921 (cmdline_parse_inst_t *)&cmd_config_mtu, 16922 (cmdline_parse_inst_t *)&cmd_config_max_pkt_len, 16923 (cmdline_parse_inst_t *)&cmd_config_max_lro_pkt_size, 16924 (cmdline_parse_inst_t *)&cmd_config_rx_mode_flag, 16925 (cmdline_parse_inst_t *)&cmd_config_rss, 16926 (cmdline_parse_inst_t *)&cmd_config_rxtx_ring_size, 16927 (cmdline_parse_inst_t *)&cmd_config_rxtx_queue, 16928 (cmdline_parse_inst_t *)&cmd_config_deferred_start_rxtx_queue, 16929 (cmdline_parse_inst_t *)&cmd_setup_rxtx_queue, 16930 (cmdline_parse_inst_t *)&cmd_config_rss_reta, 16931 (cmdline_parse_inst_t *)&cmd_showport_reta, 16932 (cmdline_parse_inst_t *)&cmd_showport_macs, 16933 (cmdline_parse_inst_t *)&cmd_config_burst, 16934 (cmdline_parse_inst_t *)&cmd_config_thresh, 16935 (cmdline_parse_inst_t *)&cmd_config_threshold, 16936 (cmdline_parse_inst_t *)&cmd_set_uc_hash_filter, 16937 (cmdline_parse_inst_t *)&cmd_set_uc_all_hash_filter, 16938 (cmdline_parse_inst_t *)&cmd_vf_mac_addr_filter, 16939 (cmdline_parse_inst_t *)&cmd_queue_rate_limit, 16940 (cmdline_parse_inst_t *)&cmd_tunnel_udp_config, 16941 (cmdline_parse_inst_t *)&cmd_set_mirror_mask, 16942 (cmdline_parse_inst_t *)&cmd_set_mirror_link, 16943 (cmdline_parse_inst_t *)&cmd_reset_mirror_rule, 16944 (cmdline_parse_inst_t *)&cmd_showport_rss_hash, 16945 (cmdline_parse_inst_t *)&cmd_showport_rss_hash_key, 16946 (cmdline_parse_inst_t *)&cmd_config_rss_hash_key, 16947 (cmdline_parse_inst_t *)&cmd_dump, 16948 (cmdline_parse_inst_t *)&cmd_dump_one, 16949 #ifdef RTE_NET_I40E 16950 (cmdline_parse_inst_t *)&cmd_add_del_raw_flow_director, 16951 #endif 16952 (cmdline_parse_inst_t *)&cmd_set_flow_director_ip_mask, 16953 (cmdline_parse_inst_t *)&cmd_set_flow_director_mac_vlan_mask, 16954 (cmdline_parse_inst_t *)&cmd_set_flow_director_tunnel_mask, 16955 (cmdline_parse_inst_t *)&cmd_set_flow_director_flex_payload, 16956 (cmdline_parse_inst_t *)&cmd_flow, 16957 (cmdline_parse_inst_t *)&cmd_show_port_meter_cap, 16958 (cmdline_parse_inst_t *)&cmd_add_port_meter_profile_srtcm, 16959 (cmdline_parse_inst_t *)&cmd_add_port_meter_profile_trtcm, 16960 (cmdline_parse_inst_t *)&cmd_del_port_meter_profile, 16961 (cmdline_parse_inst_t *)&cmd_create_port_meter, 16962 (cmdline_parse_inst_t *)&cmd_enable_port_meter, 16963 (cmdline_parse_inst_t *)&cmd_disable_port_meter, 16964 (cmdline_parse_inst_t *)&cmd_del_port_meter, 16965 (cmdline_parse_inst_t *)&cmd_set_port_meter_profile, 16966 (cmdline_parse_inst_t *)&cmd_set_port_meter_dscp_table, 16967 (cmdline_parse_inst_t *)&cmd_set_port_meter_policer_action, 16968 (cmdline_parse_inst_t *)&cmd_set_port_meter_stats_mask, 16969 (cmdline_parse_inst_t *)&cmd_show_port_meter_stats, 16970 (cmdline_parse_inst_t *)&cmd_mcast_addr, 16971 (cmdline_parse_inst_t *)&cmd_set_vf_vlan_anti_spoof, 16972 (cmdline_parse_inst_t *)&cmd_set_vf_mac_anti_spoof, 16973 (cmdline_parse_inst_t *)&cmd_set_vf_vlan_stripq, 16974 (cmdline_parse_inst_t *)&cmd_set_vf_vlan_insert, 16975 (cmdline_parse_inst_t *)&cmd_set_tx_loopback, 16976 (cmdline_parse_inst_t *)&cmd_set_all_queues_drop_en, 16977 (cmdline_parse_inst_t *)&cmd_set_vf_split_drop_en, 16978 (cmdline_parse_inst_t *)&cmd_set_macsec_offload_on, 16979 (cmdline_parse_inst_t *)&cmd_set_macsec_offload_off, 16980 (cmdline_parse_inst_t *)&cmd_set_macsec_sc, 16981 (cmdline_parse_inst_t *)&cmd_set_macsec_sa, 16982 (cmdline_parse_inst_t *)&cmd_set_vf_traffic, 16983 (cmdline_parse_inst_t *)&cmd_set_vf_rxmode, 16984 (cmdline_parse_inst_t *)&cmd_vf_rate_limit, 16985 (cmdline_parse_inst_t *)&cmd_vf_rxvlan_filter, 16986 (cmdline_parse_inst_t *)&cmd_set_vf_mac_addr, 16987 (cmdline_parse_inst_t *)&cmd_set_vf_promisc, 16988 (cmdline_parse_inst_t *)&cmd_set_vf_allmulti, 16989 (cmdline_parse_inst_t *)&cmd_set_vf_broadcast, 16990 (cmdline_parse_inst_t *)&cmd_set_vf_vlan_tag, 16991 (cmdline_parse_inst_t *)&cmd_vf_max_bw, 16992 (cmdline_parse_inst_t *)&cmd_vf_tc_min_bw, 16993 (cmdline_parse_inst_t *)&cmd_vf_tc_max_bw, 16994 (cmdline_parse_inst_t *)&cmd_strict_link_prio, 16995 (cmdline_parse_inst_t *)&cmd_tc_min_bw, 16996 (cmdline_parse_inst_t *)&cmd_set_vxlan, 16997 (cmdline_parse_inst_t *)&cmd_set_vxlan_tos_ttl, 16998 (cmdline_parse_inst_t *)&cmd_set_vxlan_with_vlan, 16999 (cmdline_parse_inst_t *)&cmd_set_nvgre, 17000 (cmdline_parse_inst_t *)&cmd_set_nvgre_with_vlan, 17001 (cmdline_parse_inst_t *)&cmd_set_l2_encap, 17002 (cmdline_parse_inst_t *)&cmd_set_l2_encap_with_vlan, 17003 (cmdline_parse_inst_t *)&cmd_set_l2_decap, 17004 (cmdline_parse_inst_t *)&cmd_set_l2_decap_with_vlan, 17005 (cmdline_parse_inst_t *)&cmd_set_mplsogre_encap, 17006 (cmdline_parse_inst_t *)&cmd_set_mplsogre_encap_with_vlan, 17007 (cmdline_parse_inst_t *)&cmd_set_mplsogre_decap, 17008 (cmdline_parse_inst_t *)&cmd_set_mplsogre_decap_with_vlan, 17009 (cmdline_parse_inst_t *)&cmd_set_mplsoudp_encap, 17010 (cmdline_parse_inst_t *)&cmd_set_mplsoudp_encap_with_vlan, 17011 (cmdline_parse_inst_t *)&cmd_set_mplsoudp_decap, 17012 (cmdline_parse_inst_t *)&cmd_set_mplsoudp_decap_with_vlan, 17013 (cmdline_parse_inst_t *)&cmd_ddp_add, 17014 (cmdline_parse_inst_t *)&cmd_ddp_del, 17015 (cmdline_parse_inst_t *)&cmd_ddp_get_list, 17016 (cmdline_parse_inst_t *)&cmd_ddp_get_info, 17017 (cmdline_parse_inst_t *)&cmd_cfg_input_set, 17018 (cmdline_parse_inst_t *)&cmd_clear_input_set, 17019 (cmdline_parse_inst_t *)&cmd_show_vf_stats, 17020 (cmdline_parse_inst_t *)&cmd_clear_vf_stats, 17021 (cmdline_parse_inst_t *)&cmd_show_port_supported_ptypes, 17022 (cmdline_parse_inst_t *)&cmd_set_port_ptypes, 17023 (cmdline_parse_inst_t *)&cmd_ptype_mapping_get, 17024 (cmdline_parse_inst_t *)&cmd_ptype_mapping_replace, 17025 (cmdline_parse_inst_t *)&cmd_ptype_mapping_reset, 17026 (cmdline_parse_inst_t *)&cmd_ptype_mapping_update, 17027 17028 (cmdline_parse_inst_t *)&cmd_pctype_mapping_get, 17029 (cmdline_parse_inst_t *)&cmd_pctype_mapping_reset, 17030 (cmdline_parse_inst_t *)&cmd_pctype_mapping_update, 17031 (cmdline_parse_inst_t *)&cmd_queue_region, 17032 (cmdline_parse_inst_t *)&cmd_region_flowtype, 17033 (cmdline_parse_inst_t *)&cmd_user_priority_region, 17034 (cmdline_parse_inst_t *)&cmd_flush_queue_region, 17035 (cmdline_parse_inst_t *)&cmd_show_queue_region_info_all, 17036 (cmdline_parse_inst_t *)&cmd_show_port_tm_cap, 17037 (cmdline_parse_inst_t *)&cmd_show_port_tm_level_cap, 17038 (cmdline_parse_inst_t *)&cmd_show_port_tm_node_cap, 17039 (cmdline_parse_inst_t *)&cmd_show_port_tm_node_type, 17040 (cmdline_parse_inst_t *)&cmd_show_port_tm_node_stats, 17041 (cmdline_parse_inst_t *)&cmd_add_port_tm_node_shaper_profile, 17042 (cmdline_parse_inst_t *)&cmd_del_port_tm_node_shaper_profile, 17043 (cmdline_parse_inst_t *)&cmd_add_port_tm_node_shared_shaper, 17044 (cmdline_parse_inst_t *)&cmd_del_port_tm_node_shared_shaper, 17045 (cmdline_parse_inst_t *)&cmd_add_port_tm_node_wred_profile, 17046 (cmdline_parse_inst_t *)&cmd_del_port_tm_node_wred_profile, 17047 (cmdline_parse_inst_t *)&cmd_set_port_tm_node_shaper_profile, 17048 (cmdline_parse_inst_t *)&cmd_add_port_tm_nonleaf_node, 17049 (cmdline_parse_inst_t *)&cmd_add_port_tm_nonleaf_node_pmode, 17050 (cmdline_parse_inst_t *)&cmd_add_port_tm_leaf_node, 17051 (cmdline_parse_inst_t *)&cmd_del_port_tm_node, 17052 (cmdline_parse_inst_t *)&cmd_set_port_tm_node_parent, 17053 (cmdline_parse_inst_t *)&cmd_suspend_port_tm_node, 17054 (cmdline_parse_inst_t *)&cmd_resume_port_tm_node, 17055 (cmdline_parse_inst_t *)&cmd_port_tm_hierarchy_commit, 17056 (cmdline_parse_inst_t *)&cmd_port_tm_mark_ip_ecn, 17057 (cmdline_parse_inst_t *)&cmd_port_tm_mark_ip_dscp, 17058 (cmdline_parse_inst_t *)&cmd_port_tm_mark_vlan_dei, 17059 (cmdline_parse_inst_t *)&cmd_cfg_tunnel_udp_port, 17060 (cmdline_parse_inst_t *)&cmd_rx_offload_get_capa, 17061 (cmdline_parse_inst_t *)&cmd_rx_offload_get_configuration, 17062 (cmdline_parse_inst_t *)&cmd_config_per_port_rx_offload, 17063 (cmdline_parse_inst_t *)&cmd_config_per_queue_rx_offload, 17064 (cmdline_parse_inst_t *)&cmd_tx_offload_get_capa, 17065 (cmdline_parse_inst_t *)&cmd_tx_offload_get_configuration, 17066 (cmdline_parse_inst_t *)&cmd_config_per_port_tx_offload, 17067 (cmdline_parse_inst_t *)&cmd_config_per_queue_tx_offload, 17068 #ifdef RTE_LIB_BPF 17069 (cmdline_parse_inst_t *)&cmd_operate_bpf_ld_parse, 17070 (cmdline_parse_inst_t *)&cmd_operate_bpf_unld_parse, 17071 #endif 17072 (cmdline_parse_inst_t *)&cmd_config_tx_metadata_specific, 17073 (cmdline_parse_inst_t *)&cmd_show_tx_metadata, 17074 (cmdline_parse_inst_t *)&cmd_show_rx_tx_desc_status, 17075 (cmdline_parse_inst_t *)&cmd_set_raw, 17076 (cmdline_parse_inst_t *)&cmd_show_set_raw, 17077 (cmdline_parse_inst_t *)&cmd_show_set_raw_all, 17078 (cmdline_parse_inst_t *)&cmd_config_tx_dynf_specific, 17079 (cmdline_parse_inst_t *)&cmd_show_fec_mode, 17080 (cmdline_parse_inst_t *)&cmd_set_fec_mode, 17081 (cmdline_parse_inst_t *)&cmd_show_capability, 17082 NULL, 17083 }; 17084 17085 /* read cmdline commands from file */ 17086 void 17087 cmdline_read_from_file(const char *filename) 17088 { 17089 struct cmdline *cl; 17090 17091 cl = cmdline_file_new(main_ctx, "testpmd> ", filename); 17092 if (cl == NULL) { 17093 printf("Failed to create file based cmdline context: %s\n", 17094 filename); 17095 return; 17096 } 17097 17098 cmdline_interact(cl); 17099 cmdline_quit(cl); 17100 17101 cmdline_free(cl); 17102 17103 printf("Read CLI commands from %s\n", filename); 17104 } 17105 17106 /* prompt function, called from main on MAIN lcore */ 17107 void 17108 prompt(void) 17109 { 17110 /* initialize non-constant commands */ 17111 cmd_set_fwd_mode_init(); 17112 cmd_set_fwd_retry_mode_init(); 17113 17114 testpmd_cl = cmdline_stdin_new(main_ctx, "testpmd> "); 17115 if (testpmd_cl == NULL) 17116 return; 17117 cmdline_interact(testpmd_cl); 17118 cmdline_stdin_exit(testpmd_cl); 17119 } 17120 17121 void 17122 prompt_exit(void) 17123 { 17124 if (testpmd_cl != NULL) 17125 cmdline_quit(testpmd_cl); 17126 } 17127 17128 static void 17129 cmd_reconfig_device_queue(portid_t id, uint8_t dev, uint8_t queue) 17130 { 17131 if (id == (portid_t)RTE_PORT_ALL) { 17132 portid_t pid; 17133 17134 RTE_ETH_FOREACH_DEV(pid) { 17135 /* check if need_reconfig has been set to 1 */ 17136 if (ports[pid].need_reconfig == 0) 17137 ports[pid].need_reconfig = dev; 17138 /* check if need_reconfig_queues has been set to 1 */ 17139 if (ports[pid].need_reconfig_queues == 0) 17140 ports[pid].need_reconfig_queues = queue; 17141 } 17142 } else if (!port_id_is_invalid(id, DISABLED_WARN)) { 17143 /* check if need_reconfig has been set to 1 */ 17144 if (ports[id].need_reconfig == 0) 17145 ports[id].need_reconfig = dev; 17146 /* check if need_reconfig_queues has been set to 1 */ 17147 if (ports[id].need_reconfig_queues == 0) 17148 ports[id].need_reconfig_queues = queue; 17149 } 17150 } 17151