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) (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) rxq (queue_id) desc used count\n" 250 " Show current number of filled receive" 251 " packet descriptors.\n\n" 252 253 "show port (port_id) macs|mcast_macs" 254 " Display list of mac addresses added to port.\n\n" 255 256 "show port (port_id) fec capabilities" 257 " Show fec capabilities of a port.\n\n" 258 259 "show port (port_id) fec_mode" 260 " Show fec mode of a port.\n\n" 261 ); 262 } 263 264 if (show_all || !strcmp(res->section, "config")) { 265 cmdline_printf( 266 cl, 267 "\n" 268 "Configuration:\n" 269 "--------------\n" 270 "Configuration changes only become active when" 271 " forwarding is started/restarted.\n\n" 272 273 "set default\n" 274 " Reset forwarding to the default configuration.\n\n" 275 276 "set verbose (level)\n" 277 " Set the debug verbosity level X.\n\n" 278 279 "set log global|(type) (level)\n" 280 " Set the log level.\n\n" 281 282 "set nbport (num)\n" 283 " Set number of ports.\n\n" 284 285 "set nbcore (num)\n" 286 " Set number of cores.\n\n" 287 288 "set coremask (mask)\n" 289 " Set the forwarding cores hexadecimal mask.\n\n" 290 291 "set portmask (mask)\n" 292 " Set the forwarding ports hexadecimal mask.\n\n" 293 294 "set burst (num)\n" 295 " Set number of packets per burst.\n\n" 296 297 "set burst tx delay (microseconds) retry (num)\n" 298 " Set the transmit delay time and number of retries," 299 " effective when retry is enabled.\n\n" 300 301 "set rxoffs (x[,y]*)\n" 302 " Set the offset of each packet segment on" 303 " receiving if split feature is engaged." 304 " Affects only the queues configured with split" 305 " offloads.\n\n" 306 307 "set rxpkts (x[,y]*)\n" 308 " Set the length of each segment to scatter" 309 " packets on receiving if split feature is engaged." 310 " Affects only the queues configured with split" 311 " offloads.\n\n" 312 313 "set txpkts (x[,y]*)\n" 314 " Set the length of each segment of TXONLY" 315 " and optionally CSUM packets.\n\n" 316 317 "set txsplit (off|on|rand)\n" 318 " Set the split policy for the TX packets." 319 " Right now only applicable for CSUM and TXONLY" 320 " modes\n\n" 321 322 "set txtimes (x, y)\n" 323 " Set the scheduling on timestamps" 324 " timings for the TXONLY mode\n\n" 325 326 "set corelist (x[,y]*)\n" 327 " Set the list of forwarding cores.\n\n" 328 329 "set portlist (x[,y]*)\n" 330 " Set the list of forwarding ports.\n\n" 331 332 "set port setup on (iterator|event)\n" 333 " Select how attached port is retrieved for setup.\n\n" 334 335 "set tx loopback (port_id) (on|off)\n" 336 " Enable or disable tx loopback.\n\n" 337 338 "set all queues drop (port_id) (on|off)\n" 339 " Set drop enable bit for all queues.\n\n" 340 341 "set vf split drop (port_id) (vf_id) (on|off)\n" 342 " Set split drop enable bit for a VF from the PF.\n\n" 343 344 "set vf mac antispoof (port_id) (vf_id) (on|off).\n" 345 " Set MAC antispoof for a VF from the PF.\n\n" 346 347 "set macsec offload (port_id) on encrypt (on|off) replay-protect (on|off)\n" 348 " Enable MACsec offload.\n\n" 349 350 "set macsec offload (port_id) off\n" 351 " Disable MACsec offload.\n\n" 352 353 "set macsec sc (tx|rx) (port_id) (mac) (pi)\n" 354 " Configure MACsec secure connection (SC).\n\n" 355 356 "set macsec sa (tx|rx) (port_id) (idx) (an) (pn) (key)\n" 357 " Configure MACsec secure association (SA).\n\n" 358 359 "set vf broadcast (port_id) (vf_id) (on|off)\n" 360 " Set VF broadcast for a VF from the PF.\n\n" 361 362 "vlan set stripq (on|off) (port_id,queue_id)\n" 363 " Set the VLAN strip for a queue on a port.\n\n" 364 365 "set vf vlan stripq (port_id) (vf_id) (on|off)\n" 366 " Set the VLAN strip for all queues in a pool for a VF from the PF.\n\n" 367 368 "set vf vlan insert (port_id) (vf_id) (vlan_id)\n" 369 " Set VLAN insert for a VF from the PF.\n\n" 370 371 "set vf vlan antispoof (port_id) (vf_id) (on|off)\n" 372 " Set VLAN antispoof for a VF from the PF.\n\n" 373 374 "set vf vlan tag (port_id) (vf_id) (on|off)\n" 375 " Set VLAN tag for a VF from the PF.\n\n" 376 377 "set vf tx max-bandwidth (port_id) (vf_id) (bandwidth)\n" 378 " Set a VF's max bandwidth(Mbps).\n\n" 379 380 "set vf tc tx min-bandwidth (port_id) (vf_id) (bw1, bw2, ...)\n" 381 " Set all TCs' min bandwidth(%%) on a VF.\n\n" 382 383 "set vf tc tx max-bandwidth (port_id) (vf_id) (tc_no) (bandwidth)\n" 384 " Set a TC's max bandwidth(Mbps) on a VF.\n\n" 385 386 "set tx strict-link-priority (port_id) (tc_bitmap)\n" 387 " Set some TCs' strict link priority mode on a physical port.\n\n" 388 389 "set tc tx min-bandwidth (port_id) (bw1, bw2, ...)\n" 390 " Set all TCs' min bandwidth(%%) for all PF and VFs.\n\n" 391 392 "vlan set (strip|filter|qinq_strip|extend) (on|off) (port_id)\n" 393 " Set the VLAN strip or filter or qinq strip or extend\n\n" 394 395 "vlan set (inner|outer) tpid (value) (port_id)\n" 396 " Set the VLAN TPID for Packet Filtering on" 397 " a port\n\n" 398 399 "rx_vlan add (vlan_id|all) (port_id)\n" 400 " Add a vlan_id, or all identifiers, to the set" 401 " of VLAN identifiers filtered by port_id.\n\n" 402 403 "rx_vlan rm (vlan_id|all) (port_id)\n" 404 " Remove a vlan_id, or all identifiers, from the set" 405 " of VLAN identifiers filtered by port_id.\n\n" 406 407 "rx_vlan add (vlan_id) port (port_id) vf (vf_mask)\n" 408 " Add a vlan_id, to the set of VLAN identifiers" 409 "filtered for VF(s) from port_id.\n\n" 410 411 "rx_vlan rm (vlan_id) port (port_id) vf (vf_mask)\n" 412 " Remove a vlan_id, to the set of VLAN identifiers" 413 "filtered for VF(s) from port_id.\n\n" 414 415 "rx_vxlan_port add (udp_port) (port_id)\n" 416 " Add an UDP port for VXLAN packet filter on a port\n\n" 417 418 "rx_vxlan_port rm (udp_port) (port_id)\n" 419 " Remove an UDP port for VXLAN packet filter on a port\n\n" 420 421 "tx_vlan set (port_id) vlan_id[, vlan_id_outer]\n" 422 " Set hardware insertion of VLAN IDs (single or double VLAN " 423 "depends on the number of VLAN IDs) in packets sent on a port.\n\n" 424 425 "tx_vlan set pvid port_id vlan_id (on|off)\n" 426 " Set port based TX VLAN insertion.\n\n" 427 428 "tx_vlan reset (port_id)\n" 429 " Disable hardware insertion of a VLAN header in" 430 " packets sent on a port.\n\n" 431 432 "csum set (ip|udp|tcp|sctp|outer-ip|outer-udp) (hw|sw) (port_id)\n" 433 " Select hardware or software calculation of the" 434 " checksum when transmitting a packet using the" 435 " csum forward engine.\n" 436 " ip|udp|tcp|sctp always concern the inner layer.\n" 437 " outer-ip concerns the outer IP layer in" 438 " outer-udp concerns the outer UDP layer in" 439 " case the packet is recognized as a tunnel packet by" 440 " the forward engine (vxlan, gre and ipip are supported)\n" 441 " Please check the NIC datasheet for HW limits.\n\n" 442 443 "csum parse-tunnel (on|off) (tx_port_id)\n" 444 " If disabled, treat tunnel packets as non-tunneled" 445 " packets (treat inner headers as payload). The port\n" 446 " argument is the port used for TX in csum forward" 447 " engine.\n\n" 448 449 "csum show (port_id)\n" 450 " Display tx checksum offload configuration\n\n" 451 452 "tso set (segsize) (portid)\n" 453 " Enable TCP Segmentation Offload in csum forward" 454 " engine.\n" 455 " Please check the NIC datasheet for HW limits.\n\n" 456 457 "tso show (portid)" 458 " Display the status of TCP Segmentation Offload.\n\n" 459 460 "set port (port_id) gro on|off\n" 461 " Enable or disable Generic Receive Offload in" 462 " csum forwarding engine.\n\n" 463 464 "show port (port_id) gro\n" 465 " Display GRO configuration.\n\n" 466 467 "set gro flush (cycles)\n" 468 " Set the cycle to flush GROed packets from" 469 " reassembly tables.\n\n" 470 471 "set port (port_id) gso (on|off)" 472 " Enable or disable Generic Segmentation Offload in" 473 " csum forwarding engine.\n\n" 474 475 "set gso segsz (length)\n" 476 " Set max packet length for output GSO segments," 477 " including packet header and payload.\n\n" 478 479 "show port (port_id) gso\n" 480 " Show GSO configuration.\n\n" 481 482 "set fwd (%s)\n" 483 " Set packet forwarding mode.\n\n" 484 485 "mac_addr add (port_id) (XX:XX:XX:XX:XX:XX)\n" 486 " Add a MAC address on port_id.\n\n" 487 488 "mac_addr remove (port_id) (XX:XX:XX:XX:XX:XX)\n" 489 " Remove a MAC address from port_id.\n\n" 490 491 "mac_addr set (port_id) (XX:XX:XX:XX:XX:XX)\n" 492 " Set the default MAC address for port_id.\n\n" 493 494 "mac_addr add port (port_id) vf (vf_id) (mac_address)\n" 495 " Add a MAC address for a VF on the port.\n\n" 496 497 "set vf mac addr (port_id) (vf_id) (XX:XX:XX:XX:XX:XX)\n" 498 " Set the MAC address for a VF from the PF.\n\n" 499 500 "set eth-peer (port_id) (peer_addr)\n" 501 " set the peer address for certain port.\n\n" 502 503 "set port (port_id) uta (mac_address|all) (on|off)\n" 504 " Add/Remove a or all unicast hash filter(s)" 505 "from port X.\n\n" 506 507 "set promisc (port_id|all) (on|off)\n" 508 " Set the promiscuous mode on port_id, or all.\n\n" 509 510 "set allmulti (port_id|all) (on|off)\n" 511 " Set the allmulti mode on port_id, or all.\n\n" 512 513 "set vf promisc (port_id) (vf_id) (on|off)\n" 514 " Set unicast promiscuous mode for a VF from the PF.\n\n" 515 516 "set vf allmulti (port_id) (vf_id) (on|off)\n" 517 " Set multicast promiscuous mode for a VF from the PF.\n\n" 518 519 "set flow_ctrl rx (on|off) tx (on|off) (high_water)" 520 " (low_water) (pause_time) (send_xon) mac_ctrl_frame_fwd" 521 " (on|off) autoneg (on|off) (port_id)\n" 522 "set flow_ctrl rx (on|off) (portid)\n" 523 "set flow_ctrl tx (on|off) (portid)\n" 524 "set flow_ctrl high_water (high_water) (portid)\n" 525 "set flow_ctrl low_water (low_water) (portid)\n" 526 "set flow_ctrl pause_time (pause_time) (portid)\n" 527 "set flow_ctrl send_xon (send_xon) (portid)\n" 528 "set flow_ctrl mac_ctrl_frame_fwd (on|off) (portid)\n" 529 "set flow_ctrl autoneg (on|off) (port_id)\n" 530 " Set the link flow control parameter on a port.\n\n" 531 532 "set pfc_ctrl rx (on|off) tx (on|off) (high_water)" 533 " (low_water) (pause_time) (priority) (port_id)\n" 534 " Set the priority flow control parameter on a" 535 " port.\n\n" 536 537 "set stat_qmap (tx|rx) (port_id) (queue_id) (qmapping)\n" 538 " Set statistics mapping (qmapping 0..15) for RX/TX" 539 " queue on port.\n" 540 " e.g., 'set stat_qmap rx 0 2 5' sets rx queue 2" 541 " on port 0 to mapping 5.\n\n" 542 543 "set xstats-hide-zero on|off\n" 544 " Set the option to hide the zero values" 545 " for xstats display.\n" 546 547 "set record-core-cycles on|off\n" 548 " Set the option to enable measurement of CPU cycles.\n" 549 550 "set record-burst-stats on|off\n" 551 " Set the option to enable display of RX and TX bursts.\n" 552 553 "set port (port_id) vf (vf_id) rx|tx on|off\n" 554 " Enable/Disable a VF receive/tranmit from a port\n\n" 555 556 "set port (port_id) vf (vf_id) rxmode (AUPE|ROPE|BAM" 557 "|MPE) (on|off)\n" 558 " AUPE:accepts untagged VLAN;" 559 "ROPE:accept unicast hash\n\n" 560 " BAM:accepts broadcast packets;" 561 "MPE:accepts all multicast packets\n\n" 562 " Enable/Disable a VF receive mode of a port\n\n" 563 564 "set port (port_id) queue (queue_id) rate (rate_num)\n" 565 " Set rate limit for a queue of a port\n\n" 566 567 "set port (port_id) vf (vf_id) rate (rate_num) " 568 "queue_mask (queue_mask_value)\n" 569 " Set rate limit for queues in VF of a port\n\n" 570 571 "set port (port_id) mirror-rule (rule_id)" 572 " (pool-mirror-up|pool-mirror-down|vlan-mirror)" 573 " (poolmask|vlanid[,vlanid]*) dst-pool (pool_id) (on|off)\n" 574 " Set pool or vlan type mirror rule on a port.\n" 575 " e.g., 'set port 0 mirror-rule 0 vlan-mirror 0,1" 576 " dst-pool 0 on' enable mirror traffic with vlan 0,1" 577 " to pool 0.\n\n" 578 579 "set port (port_id) mirror-rule (rule_id)" 580 " (uplink-mirror|downlink-mirror) dst-pool" 581 " (pool_id) (on|off)\n" 582 " Set uplink or downlink type mirror rule on a port.\n" 583 " e.g., 'set port 0 mirror-rule 0 uplink-mirror dst-pool" 584 " 0 on' enable mirror income traffic to pool 0.\n\n" 585 586 "reset port (port_id) mirror-rule (rule_id)\n" 587 " Reset a mirror rule.\n\n" 588 589 "set flush_rx (on|off)\n" 590 " Flush (default) or don't flush RX streams before" 591 " forwarding. Mainly used with PCAP drivers.\n\n" 592 593 "set bypass mode (normal|bypass|isolate) (port_id)\n" 594 " Set the bypass mode for the lowest port on bypass enabled" 595 " NIC.\n\n" 596 597 "set bypass event (timeout|os_on|os_off|power_on|power_off) " 598 "mode (normal|bypass|isolate) (port_id)\n" 599 " Set the event required to initiate specified bypass mode for" 600 " the lowest port on a bypass enabled NIC where:\n" 601 " timeout = enable bypass after watchdog timeout.\n" 602 " os_on = enable bypass when OS/board is powered on.\n" 603 " os_off = enable bypass when OS/board is powered off.\n" 604 " power_on = enable bypass when power supply is turned on.\n" 605 " power_off = enable bypass when power supply is turned off." 606 "\n\n" 607 608 "set bypass timeout (0|1.5|2|3|4|8|16|32)\n" 609 " Set the bypass watchdog timeout to 'n' seconds" 610 " where 0 = instant.\n\n" 611 612 "show bypass config (port_id)\n" 613 " Show the bypass configuration for a bypass enabled NIC" 614 " using the lowest port on the NIC.\n\n" 615 616 #ifdef RTE_NET_BOND 617 "create bonded device (mode) (socket)\n" 618 " Create a new bonded device with specific bonding mode and socket.\n\n" 619 620 "add bonding slave (slave_id) (port_id)\n" 621 " Add a slave device to a bonded device.\n\n" 622 623 "remove bonding slave (slave_id) (port_id)\n" 624 " Remove a slave device from a bonded device.\n\n" 625 626 "set bonding mode (value) (port_id)\n" 627 " Set the bonding mode on a bonded device.\n\n" 628 629 "set bonding primary (slave_id) (port_id)\n" 630 " Set the primary slave for a bonded device.\n\n" 631 632 "show bonding config (port_id)\n" 633 " Show the bonding config for port_id.\n\n" 634 635 "set bonding mac_addr (port_id) (address)\n" 636 " Set the MAC address of a bonded device.\n\n" 637 638 "set bonding mode IEEE802.3AD aggregator policy (port_id) (agg_name)" 639 " Set Aggregation mode for IEEE802.3AD (mode 4)" 640 641 "set bonding balance_xmit_policy (port_id) (l2|l23|l34)\n" 642 " Set the transmit balance policy for bonded device running in balance mode.\n\n" 643 644 "set bonding mon_period (port_id) (value)\n" 645 " Set the bonding link status monitoring polling period in ms.\n\n" 646 647 "set bonding lacp dedicated_queues <port_id> (enable|disable)\n" 648 " Enable/disable dedicated queues for LACP control traffic.\n\n" 649 650 #endif 651 "set link-up port (port_id)\n" 652 " Set link up for a port.\n\n" 653 654 "set link-down port (port_id)\n" 655 " Set link down for a port.\n\n" 656 657 "ddp add (port_id) (profile_path[,backup_profile_path])\n" 658 " Load a profile package on a port\n\n" 659 660 "ddp del (port_id) (backup_profile_path)\n" 661 " Delete a profile package from a port\n\n" 662 663 "ptype mapping get (port_id) (valid_only)\n" 664 " Get ptype mapping on a port\n\n" 665 666 "ptype mapping replace (port_id) (target) (mask) (pky_type)\n" 667 " Replace target with the pkt_type in ptype mapping\n\n" 668 669 "ptype mapping reset (port_id)\n" 670 " Reset ptype mapping on a port\n\n" 671 672 "ptype mapping update (port_id) (hw_ptype) (sw_ptype)\n" 673 " Update a ptype mapping item on a port\n\n" 674 675 "set port (port_id) ptype_mask (ptype_mask)\n" 676 " set packet types classification for a specific port\n\n" 677 678 "set port (port_id) queue-region region_id (value) " 679 "queue_start_index (value) queue_num (value)\n" 680 " Set a queue region on a port\n\n" 681 682 "set port (port_id) queue-region region_id (value) " 683 "flowtype (value)\n" 684 " Set a flowtype region index on a port\n\n" 685 686 "set port (port_id) queue-region UP (value) region_id (value)\n" 687 " Set the mapping of User Priority to " 688 "queue region on a port\n\n" 689 690 "set port (port_id) queue-region flush (on|off)\n" 691 " flush all queue region related configuration\n\n" 692 693 "show port meter cap (port_id)\n" 694 " Show port meter capability information\n\n" 695 696 "add port meter profile srtcm_rfc2697 (port_id) (profile_id) (cir) (cbs) (ebs)\n" 697 " meter profile add - srtcm rfc 2697\n\n" 698 699 "add port meter profile trtcm_rfc2698 (port_id) (profile_id) (cir) (pir) (cbs) (pbs)\n" 700 " meter profile add - trtcm rfc 2698\n\n" 701 702 "add port meter profile trtcm_rfc4115 (port_id) (profile_id) (cir) (eir) (cbs) (ebs)\n" 703 " meter profile add - trtcm rfc 4115\n\n" 704 705 "del port meter profile (port_id) (profile_id)\n" 706 " meter profile delete\n\n" 707 708 "create port meter (port_id) (mtr_id) (profile_id) (meter_enable)\n" 709 "(g_action) (y_action) (r_action) (stats_mask) (shared)\n" 710 "(use_pre_meter_color) [(dscp_tbl_entry0) (dscp_tbl_entry1)...\n" 711 "(dscp_tbl_entry63)]\n" 712 " meter create\n\n" 713 714 "enable port meter (port_id) (mtr_id)\n" 715 " meter enable\n\n" 716 717 "disable port meter (port_id) (mtr_id)\n" 718 " meter disable\n\n" 719 720 "del port meter (port_id) (mtr_id)\n" 721 " meter delete\n\n" 722 723 "set port meter profile (port_id) (mtr_id) (profile_id)\n" 724 " meter update meter profile\n\n" 725 726 "set port meter dscp table (port_id) (mtr_id) [(dscp_tbl_entry0)\n" 727 "(dscp_tbl_entry1)...(dscp_tbl_entry63)]\n" 728 " update meter dscp table entries\n\n" 729 730 "set port meter policer action (port_id) (mtr_id) (action_mask)\n" 731 "(action0) [(action1) (action2)]\n" 732 " meter update policer action\n\n" 733 734 "set port meter stats mask (port_id) (mtr_id) (stats_mask)\n" 735 " meter update stats\n\n" 736 737 "show port (port_id) queue-region\n" 738 " show all queue region related configuration info\n\n" 739 740 "set port (port_id) fec_mode auto|off|rs|baser\n" 741 " set fec mode for a specific port\n\n" 742 743 , list_pkt_forwarding_modes() 744 ); 745 } 746 747 if (show_all || !strcmp(res->section, "ports")) { 748 749 cmdline_printf( 750 cl, 751 "\n" 752 "Port Operations:\n" 753 "----------------\n\n" 754 755 "port start (port_id|all)\n" 756 " Start all ports or port_id.\n\n" 757 758 "port stop (port_id|all)\n" 759 " Stop all ports or port_id.\n\n" 760 761 "port close (port_id|all)\n" 762 " Close all ports or port_id.\n\n" 763 764 "port reset (port_id|all)\n" 765 " Reset all ports or port_id.\n\n" 766 767 "port attach (ident)\n" 768 " Attach physical or virtual dev by pci address or virtual device name\n\n" 769 770 "port detach (port_id)\n" 771 " Detach physical or virtual dev by port_id\n\n" 772 773 "port config (port_id|all)" 774 " speed (10|100|1000|10000|25000|40000|50000|100000|200000|auto)" 775 " duplex (half|full|auto)\n" 776 " Set speed and duplex for all ports or port_id\n\n" 777 778 "port config (port_id|all) loopback (mode)\n" 779 " Set loopback mode for all ports or port_id\n\n" 780 781 "port config all (rxq|txq|rxd|txd) (value)\n" 782 " Set number for rxq/txq/rxd/txd.\n\n" 783 784 "port config all max-pkt-len (value)\n" 785 " Set the max packet length.\n\n" 786 787 "port config all max-lro-pkt-size (value)\n" 788 " Set the max LRO aggregated packet size.\n\n" 789 790 "port config all drop-en (on|off)\n" 791 " Enable or disable packet drop on all RX queues of all ports when no " 792 "receive buffers available.\n\n" 793 794 "port config all rss (all|default|ip|tcp|udp|sctp|" 795 "ether|port|vxlan|geneve|nvgre|vxlan-gpe|ecpri|mpls|none|level-default|" 796 "level-outer|level-inner|<flowtype_id>)\n" 797 " Set the RSS mode.\n\n" 798 799 "port config port-id rss reta (hash,queue)[,(hash,queue)]\n" 800 " Set the RSS redirection table.\n\n" 801 802 "port config (port_id) dcb vt (on|off) (traffic_class)" 803 " pfc (on|off)\n" 804 " Set the DCB mode.\n\n" 805 806 "port config all burst (value)\n" 807 " Set the number of packets per burst.\n\n" 808 809 "port config all (txpt|txht|txwt|rxpt|rxht|rxwt)" 810 " (value)\n" 811 " Set the ring prefetch/host/writeback threshold" 812 " for tx/rx queue.\n\n" 813 814 "port config all (txfreet|txrst|rxfreet) (value)\n" 815 " Set free threshold for rx/tx, or set" 816 " tx rs bit threshold.\n\n" 817 "port config mtu X value\n" 818 " Set the MTU of port X to a given value\n\n" 819 820 "port config (port_id) (rxq|txq) (queue_id) ring_size (value)\n" 821 " Set a rx/tx queue's ring size configuration, the new" 822 " value will take effect after command that (re-)start the port" 823 " or command that setup the specific queue\n\n" 824 825 "port (port_id) (rxq|txq) (queue_id) (start|stop)\n" 826 " Start/stop a rx/tx queue of port X. Only take effect" 827 " when port X is started\n\n" 828 829 "port (port_id) (rxq|txq) (queue_id) deferred_start (on|off)\n" 830 " Switch on/off a deferred start of port X rx/tx queue. Only" 831 " take effect when port X is stopped.\n\n" 832 833 "port (port_id) (rxq|txq) (queue_id) setup\n" 834 " Setup a rx/tx queue of port X.\n\n" 835 836 "port config (port_id) pctype mapping reset\n" 837 " Reset flow type to pctype mapping on a port\n\n" 838 839 "port config (port_id) pctype mapping update" 840 " (pctype_id_0[,pctype_id_1]*) (flow_type_id)\n" 841 " Update a flow type to pctype mapping item on a port\n\n" 842 843 "port config (port_id) pctype (pctype_id) hash_inset|" 844 "fdir_inset|fdir_flx_inset get|set|clear field\n" 845 " (field_idx)\n" 846 " Configure RSS|FDIR|FDIR_FLX input set for some pctype\n\n" 847 848 "port config (port_id) pctype (pctype_id) hash_inset|" 849 "fdir_inset|fdir_flx_inset clear all" 850 " Clear RSS|FDIR|FDIR_FLX input set completely for some pctype\n\n" 851 852 "port config (port_id) udp_tunnel_port add|rm vxlan|geneve|ecpri (udp_port)\n\n" 853 " Add/remove UDP tunnel port for tunneling offload\n\n" 854 855 "port config <port_id> rx_offload vlan_strip|" 856 "ipv4_cksum|udp_cksum|tcp_cksum|tcp_lro|qinq_strip|" 857 "outer_ipv4_cksum|macsec_strip|header_split|" 858 "vlan_filter|vlan_extend|jumbo_frame|scatter|" 859 "buffer_split|timestamp|security|keep_crc on|off\n" 860 " Enable or disable a per port Rx offloading" 861 " on all Rx queues of a port\n\n" 862 863 "port (port_id) rxq (queue_id) rx_offload vlan_strip|" 864 "ipv4_cksum|udp_cksum|tcp_cksum|tcp_lro|qinq_strip|" 865 "outer_ipv4_cksum|macsec_strip|header_split|" 866 "vlan_filter|vlan_extend|jumbo_frame|scatter|" 867 "buffer_split|timestamp|security|keep_crc on|off\n" 868 " Enable or disable a per queue Rx offloading" 869 " only on a specific Rx queue\n\n" 870 871 "port config (port_id) tx_offload vlan_insert|" 872 "ipv4_cksum|udp_cksum|tcp_cksum|sctp_cksum|tcp_tso|" 873 "udp_tso|outer_ipv4_cksum|qinq_insert|vxlan_tnl_tso|" 874 "gre_tnl_tso|ipip_tnl_tso|geneve_tnl_tso|" 875 "macsec_insert|mt_lockfree|multi_segs|mbuf_fast_free|" 876 "security on|off\n" 877 " Enable or disable a per port Tx offloading" 878 " on all Tx queues of a port\n\n" 879 880 "port (port_id) txq (queue_id) tx_offload vlan_insert|" 881 "ipv4_cksum|udp_cksum|tcp_cksum|sctp_cksum|tcp_tso|" 882 "udp_tso|outer_ipv4_cksum|qinq_insert|vxlan_tnl_tso|" 883 "gre_tnl_tso|ipip_tnl_tso|geneve_tnl_tso|macsec_insert" 884 "|mt_lockfree|multi_segs|mbuf_fast_free|security" 885 " on|off\n" 886 " Enable or disable a per queue Tx offloading" 887 " only on a specific Tx queue\n\n" 888 889 "bpf-load rx|tx (port) (queue) (J|M|B) (file_name)\n" 890 " Load an eBPF program as a callback" 891 " for particular RX/TX queue\n\n" 892 893 "bpf-unload rx|tx (port) (queue)\n" 894 " Unload previously loaded eBPF program" 895 " for particular RX/TX queue\n\n" 896 897 "port config (port_id) tx_metadata (value)\n" 898 " Set Tx metadata value per port. Testpmd will add this value" 899 " to any Tx packet sent from this port\n\n" 900 901 "port config (port_id) dynf (name) set|clear\n" 902 " Register a dynf and Set/clear this flag on Tx. " 903 "Testpmd will set this value to any Tx packet " 904 "sent from this port\n\n" 905 ); 906 } 907 908 if (show_all || !strcmp(res->section, "registers")) { 909 910 cmdline_printf( 911 cl, 912 "\n" 913 "Registers:\n" 914 "----------\n\n" 915 916 "read reg (port_id) (address)\n" 917 " Display value of a port register.\n\n" 918 919 "read regfield (port_id) (address) (bit_x) (bit_y)\n" 920 " Display a port register bit field.\n\n" 921 922 "read regbit (port_id) (address) (bit_x)\n" 923 " Display a single port register bit.\n\n" 924 925 "write reg (port_id) (address) (value)\n" 926 " Set value of a port register.\n\n" 927 928 "write regfield (port_id) (address) (bit_x) (bit_y)" 929 " (value)\n" 930 " Set bit field of a port register.\n\n" 931 932 "write regbit (port_id) (address) (bit_x) (value)\n" 933 " Set single bit value of a port register.\n\n" 934 ); 935 } 936 if (show_all || !strcmp(res->section, "filters")) { 937 938 cmdline_printf( 939 cl, 940 "\n" 941 "filters:\n" 942 "--------\n\n" 943 944 #ifdef RTE_NET_I40E 945 "flow_director_filter (port_id) mode raw (add|del|update)" 946 " flow (flow_id) (drop|fwd) queue (queue_id)" 947 " fd_id (fd_id_value) packet (packet file name)\n" 948 " Add/Del a raw type flow director filter.\n\n" 949 #endif 950 951 "flow_director_mask (port_id) mode IP vlan (vlan_value)" 952 " src_mask (ipv4_src) (ipv6_src) (src_port)" 953 " dst_mask (ipv4_dst) (ipv6_dst) (dst_port)\n" 954 " Set flow director IP mask.\n\n" 955 956 "flow_director_mask (port_id) mode MAC-VLAN" 957 " vlan (vlan_value)\n" 958 " Set flow director MAC-VLAN mask.\n\n" 959 960 "flow_director_mask (port_id) mode Tunnel" 961 " vlan (vlan_value) mac (mac_value)" 962 " tunnel-type (tunnel_type_value)" 963 " tunnel-id (tunnel_id_value)\n" 964 " Set flow director Tunnel mask.\n\n" 965 966 "flow_director_flex_payload (port_id)" 967 " (raw|l2|l3|l4) (config)\n" 968 " Configure flex payload selection.\n\n" 969 970 "flow validate {port_id}" 971 " [group {group_id}] [priority {level}]" 972 " [ingress] [egress]" 973 " pattern {item} [/ {item} [...]] / end" 974 " actions {action} [/ {action} [...]] / end\n" 975 " Check whether a flow rule can be created.\n\n" 976 977 "flow create {port_id}" 978 " [group {group_id}] [priority {level}]" 979 " [ingress] [egress]" 980 " pattern {item} [/ {item} [...]] / end" 981 " actions {action} [/ {action} [...]] / end\n" 982 " Create a flow rule.\n\n" 983 984 "flow destroy {port_id} rule {rule_id} [...]\n" 985 " Destroy specific flow rules.\n\n" 986 987 "flow flush {port_id}\n" 988 " Destroy all flow rules.\n\n" 989 990 "flow query {port_id} {rule_id} {action}\n" 991 " Query an existing flow rule.\n\n" 992 993 "flow list {port_id} [group {group_id}] [...]\n" 994 " List existing flow rules sorted by priority," 995 " filtered by group identifiers.\n\n" 996 997 "flow isolate {port_id} {boolean}\n" 998 " Restrict ingress traffic to the defined" 999 " flow rules\n\n" 1000 1001 "flow aged {port_id} [destroy]\n" 1002 " List and destroy aged flows" 1003 " flow rules\n\n" 1004 1005 "flow shared_action {port_id} create" 1006 " [action_id {shared_action_id}]" 1007 " [ingress] [egress]" 1008 " action {action} / end\n" 1009 " Create shared action.\n\n" 1010 1011 "flow shared_action {port_id} update" 1012 " {shared_action_id} action {action} / end\n" 1013 " Update shared action.\n\n" 1014 1015 "flow shared_action {port_id} destroy" 1016 " action_id {shared_action_id} [...]\n" 1017 " Destroy specific shared actions.\n\n" 1018 1019 "flow shared_action {port_id} query" 1020 " {shared_action_id}\n" 1021 " Query an existing shared action.\n\n" 1022 1023 "set vxlan ip-version (ipv4|ipv6) vni (vni) udp-src" 1024 " (udp-src) udp-dst (udp-dst) ip-src (ip-src) ip-dst" 1025 " (ip-dst) eth-src (eth-src) eth-dst (eth-dst)\n" 1026 " Configure the VXLAN encapsulation for flows.\n\n" 1027 1028 "set vxlan-with-vlan ip-version (ipv4|ipv6) vni (vni)" 1029 " udp-src (udp-src) udp-dst (udp-dst) ip-src (ip-src)" 1030 " ip-dst (ip-dst) vlan-tci (vlan-tci) eth-src (eth-src)" 1031 " eth-dst (eth-dst)\n" 1032 " Configure the VXLAN encapsulation for flows.\n\n" 1033 1034 "set vxlan-tos-ttl ip-version (ipv4|ipv6) vni (vni) udp-src" 1035 " (udp-src) udp-dst (udp-dst) ip-tos (ip-tos) ip-ttl (ip-ttl)" 1036 " ip-src (ip-src) ip-dst (ip-dst) eth-src (eth-src)" 1037 " eth-dst (eth-dst)\n" 1038 " Configure the VXLAN encapsulation for flows.\n\n" 1039 1040 "set nvgre ip-version (ipv4|ipv6) tni (tni) ip-src" 1041 " (ip-src) ip-dst (ip-dst) eth-src (eth-src) eth-dst" 1042 " (eth-dst)\n" 1043 " Configure the NVGRE encapsulation for flows.\n\n" 1044 1045 "set nvgre-with-vlan ip-version (ipv4|ipv6) tni (tni)" 1046 " ip-src (ip-src) ip-dst (ip-dst) vlan-tci (vlan-tci)" 1047 " eth-src (eth-src) eth-dst (eth-dst)\n" 1048 " Configure the NVGRE encapsulation for flows.\n\n" 1049 1050 "set raw_encap {flow items}\n" 1051 " Configure the encapsulation with raw data.\n\n" 1052 1053 "set raw_decap {flow items}\n" 1054 " Configure the decapsulation with raw data.\n\n" 1055 1056 ); 1057 } 1058 1059 if (show_all || !strcmp(res->section, "traffic_management")) { 1060 cmdline_printf( 1061 cl, 1062 "\n" 1063 "Traffic Management:\n" 1064 "--------------\n" 1065 "show port tm cap (port_id)\n" 1066 " Display the port TM capability.\n\n" 1067 1068 "show port tm level cap (port_id) (level_id)\n" 1069 " Display the port TM hierarchical level capability.\n\n" 1070 1071 "show port tm node cap (port_id) (node_id)\n" 1072 " Display the port TM node capability.\n\n" 1073 1074 "show port tm node type (port_id) (node_id)\n" 1075 " Display the port TM node type.\n\n" 1076 1077 "show port tm node stats (port_id) (node_id) (clear)\n" 1078 " Display the port TM node stats.\n\n" 1079 1080 "add port tm node shaper profile (port_id) (shaper_profile_id)" 1081 " (cmit_tb_rate) (cmit_tb_size) (peak_tb_rate) (peak_tb_size)" 1082 " (packet_length_adjust) (packet_mode)\n" 1083 " Add port tm node private shaper profile.\n\n" 1084 1085 "del port tm node shaper profile (port_id) (shaper_profile_id)\n" 1086 " Delete port tm node private shaper profile.\n\n" 1087 1088 "add port tm node shared shaper (port_id) (shared_shaper_id)" 1089 " (shaper_profile_id)\n" 1090 " Add/update port tm node shared shaper.\n\n" 1091 1092 "del port tm node shared shaper (port_id) (shared_shaper_id)\n" 1093 " Delete port tm node shared shaper.\n\n" 1094 1095 "set port tm node shaper profile (port_id) (node_id)" 1096 " (shaper_profile_id)\n" 1097 " Set port tm node shaper profile.\n\n" 1098 1099 "add port tm node wred profile (port_id) (wred_profile_id)" 1100 " (color_g) (min_th_g) (max_th_g) (maxp_inv_g) (wq_log2_g)" 1101 " (color_y) (min_th_y) (max_th_y) (maxp_inv_y) (wq_log2_y)" 1102 " (color_r) (min_th_r) (max_th_r) (maxp_inv_r) (wq_log2_r)\n" 1103 " Add port tm node wred profile.\n\n" 1104 1105 "del port tm node wred profile (port_id) (wred_profile_id)\n" 1106 " Delete port tm node wred profile.\n\n" 1107 1108 "add port tm nonleaf node (port_id) (node_id) (parent_node_id)" 1109 " (priority) (weight) (level_id) (shaper_profile_id)" 1110 " (n_sp_priorities) (stats_mask) (n_shared_shapers)" 1111 " [(shared_shaper_id_0) (shared_shaper_id_1)...]\n" 1112 " Add port tm nonleaf node.\n\n" 1113 1114 "add port tm nonleaf node pktmode (port_id) (node_id) (parent_node_id)" 1115 " (priority) (weight) (level_id) (shaper_profile_id)" 1116 " (n_sp_priorities) (stats_mask) (n_shared_shapers)" 1117 " [(shared_shaper_id_0) (shared_shaper_id_1)...]\n" 1118 " Add port tm nonleaf node with pkt mode enabled.\n\n" 1119 1120 "add port tm leaf node (port_id) (node_id) (parent_node_id)" 1121 " (priority) (weight) (level_id) (shaper_profile_id)" 1122 " (cman_mode) (wred_profile_id) (stats_mask) (n_shared_shapers)" 1123 " [(shared_shaper_id_0) (shared_shaper_id_1)...]\n" 1124 " Add port tm leaf node.\n\n" 1125 1126 "del port tm node (port_id) (node_id)\n" 1127 " Delete port tm node.\n\n" 1128 1129 "set port tm node parent (port_id) (node_id) (parent_node_id)" 1130 " (priority) (weight)\n" 1131 " Set port tm node parent.\n\n" 1132 1133 "suspend port tm node (port_id) (node_id)" 1134 " Suspend tm node.\n\n" 1135 1136 "resume port tm node (port_id) (node_id)" 1137 " Resume tm node.\n\n" 1138 1139 "port tm hierarchy commit (port_id) (clean_on_fail)\n" 1140 " Commit tm hierarchy.\n\n" 1141 1142 "set port tm mark ip_ecn (port) (green) (yellow)" 1143 " (red)\n" 1144 " Enables/Disables the traffic management marking" 1145 " for IP ECN (Explicit Congestion Notification)" 1146 " packets on a given port\n\n" 1147 1148 "set port tm mark ip_dscp (port) (green) (yellow)" 1149 " (red)\n" 1150 " Enables/Disables the traffic management marking" 1151 " on the port for IP dscp packets\n\n" 1152 1153 "set port tm mark vlan_dei (port) (green) (yellow)" 1154 " (red)\n" 1155 " Enables/Disables the traffic management marking" 1156 " on the port for VLAN packets with DEI enabled\n\n" 1157 ); 1158 } 1159 1160 if (show_all || !strcmp(res->section, "devices")) { 1161 cmdline_printf( 1162 cl, 1163 "\n" 1164 "Device Operations:\n" 1165 "--------------\n" 1166 "device detach (identifier)\n" 1167 " Detach device by identifier.\n\n" 1168 ); 1169 } 1170 1171 } 1172 1173 cmdline_parse_token_string_t cmd_help_long_help = 1174 TOKEN_STRING_INITIALIZER(struct cmd_help_long_result, help, "help"); 1175 1176 cmdline_parse_token_string_t cmd_help_long_section = 1177 TOKEN_STRING_INITIALIZER(struct cmd_help_long_result, section, 1178 "all#control#display#config#" 1179 "ports#registers#filters#traffic_management#devices"); 1180 1181 cmdline_parse_inst_t cmd_help_long = { 1182 .f = cmd_help_long_parsed, 1183 .data = NULL, 1184 .help_str = "help all|control|display|config|ports|register|" 1185 "filters|traffic_management|devices: " 1186 "Show help", 1187 .tokens = { 1188 (void *)&cmd_help_long_help, 1189 (void *)&cmd_help_long_section, 1190 NULL, 1191 }, 1192 }; 1193 1194 1195 /* *** start/stop/close all ports *** */ 1196 struct cmd_operate_port_result { 1197 cmdline_fixed_string_t keyword; 1198 cmdline_fixed_string_t name; 1199 cmdline_fixed_string_t value; 1200 }; 1201 1202 static void cmd_operate_port_parsed(void *parsed_result, 1203 __rte_unused struct cmdline *cl, 1204 __rte_unused void *data) 1205 { 1206 struct cmd_operate_port_result *res = parsed_result; 1207 1208 if (!strcmp(res->name, "start")) 1209 start_port(RTE_PORT_ALL); 1210 else if (!strcmp(res->name, "stop")) 1211 stop_port(RTE_PORT_ALL); 1212 else if (!strcmp(res->name, "close")) 1213 close_port(RTE_PORT_ALL); 1214 else if (!strcmp(res->name, "reset")) 1215 reset_port(RTE_PORT_ALL); 1216 else 1217 printf("Unknown parameter\n"); 1218 } 1219 1220 cmdline_parse_token_string_t cmd_operate_port_all_cmd = 1221 TOKEN_STRING_INITIALIZER(struct cmd_operate_port_result, keyword, 1222 "port"); 1223 cmdline_parse_token_string_t cmd_operate_port_all_port = 1224 TOKEN_STRING_INITIALIZER(struct cmd_operate_port_result, name, 1225 "start#stop#close#reset"); 1226 cmdline_parse_token_string_t cmd_operate_port_all_all = 1227 TOKEN_STRING_INITIALIZER(struct cmd_operate_port_result, value, "all"); 1228 1229 cmdline_parse_inst_t cmd_operate_port = { 1230 .f = cmd_operate_port_parsed, 1231 .data = NULL, 1232 .help_str = "port start|stop|close all: Start/Stop/Close/Reset all ports", 1233 .tokens = { 1234 (void *)&cmd_operate_port_all_cmd, 1235 (void *)&cmd_operate_port_all_port, 1236 (void *)&cmd_operate_port_all_all, 1237 NULL, 1238 }, 1239 }; 1240 1241 /* *** start/stop/close specific port *** */ 1242 struct cmd_operate_specific_port_result { 1243 cmdline_fixed_string_t keyword; 1244 cmdline_fixed_string_t name; 1245 uint8_t value; 1246 }; 1247 1248 static void cmd_operate_specific_port_parsed(void *parsed_result, 1249 __rte_unused struct cmdline *cl, 1250 __rte_unused void *data) 1251 { 1252 struct cmd_operate_specific_port_result *res = parsed_result; 1253 1254 if (!strcmp(res->name, "start")) 1255 start_port(res->value); 1256 else if (!strcmp(res->name, "stop")) 1257 stop_port(res->value); 1258 else if (!strcmp(res->name, "close")) 1259 close_port(res->value); 1260 else if (!strcmp(res->name, "reset")) 1261 reset_port(res->value); 1262 else 1263 printf("Unknown parameter\n"); 1264 } 1265 1266 cmdline_parse_token_string_t cmd_operate_specific_port_cmd = 1267 TOKEN_STRING_INITIALIZER(struct cmd_operate_specific_port_result, 1268 keyword, "port"); 1269 cmdline_parse_token_string_t cmd_operate_specific_port_port = 1270 TOKEN_STRING_INITIALIZER(struct cmd_operate_specific_port_result, 1271 name, "start#stop#close#reset"); 1272 cmdline_parse_token_num_t cmd_operate_specific_port_id = 1273 TOKEN_NUM_INITIALIZER(struct cmd_operate_specific_port_result, 1274 value, RTE_UINT8); 1275 1276 cmdline_parse_inst_t cmd_operate_specific_port = { 1277 .f = cmd_operate_specific_port_parsed, 1278 .data = NULL, 1279 .help_str = "port start|stop|close <port_id>: Start/Stop/Close/Reset port_id", 1280 .tokens = { 1281 (void *)&cmd_operate_specific_port_cmd, 1282 (void *)&cmd_operate_specific_port_port, 1283 (void *)&cmd_operate_specific_port_id, 1284 NULL, 1285 }, 1286 }; 1287 1288 /* *** enable port setup (after attach) via iterator or event *** */ 1289 struct cmd_set_port_setup_on_result { 1290 cmdline_fixed_string_t set; 1291 cmdline_fixed_string_t port; 1292 cmdline_fixed_string_t setup; 1293 cmdline_fixed_string_t on; 1294 cmdline_fixed_string_t mode; 1295 }; 1296 1297 static void cmd_set_port_setup_on_parsed(void *parsed_result, 1298 __rte_unused struct cmdline *cl, 1299 __rte_unused void *data) 1300 { 1301 struct cmd_set_port_setup_on_result *res = parsed_result; 1302 1303 if (strcmp(res->mode, "event") == 0) 1304 setup_on_probe_event = true; 1305 else if (strcmp(res->mode, "iterator") == 0) 1306 setup_on_probe_event = false; 1307 else 1308 printf("Unknown mode\n"); 1309 } 1310 1311 cmdline_parse_token_string_t cmd_set_port_setup_on_set = 1312 TOKEN_STRING_INITIALIZER(struct cmd_set_port_setup_on_result, 1313 set, "set"); 1314 cmdline_parse_token_string_t cmd_set_port_setup_on_port = 1315 TOKEN_STRING_INITIALIZER(struct cmd_set_port_setup_on_result, 1316 port, "port"); 1317 cmdline_parse_token_string_t cmd_set_port_setup_on_setup = 1318 TOKEN_STRING_INITIALIZER(struct cmd_set_port_setup_on_result, 1319 setup, "setup"); 1320 cmdline_parse_token_string_t cmd_set_port_setup_on_on = 1321 TOKEN_STRING_INITIALIZER(struct cmd_set_port_setup_on_result, 1322 on, "on"); 1323 cmdline_parse_token_string_t cmd_set_port_setup_on_mode = 1324 TOKEN_STRING_INITIALIZER(struct cmd_set_port_setup_on_result, 1325 mode, "iterator#event"); 1326 1327 cmdline_parse_inst_t cmd_set_port_setup_on = { 1328 .f = cmd_set_port_setup_on_parsed, 1329 .data = NULL, 1330 .help_str = "set port setup on iterator|event", 1331 .tokens = { 1332 (void *)&cmd_set_port_setup_on_set, 1333 (void *)&cmd_set_port_setup_on_port, 1334 (void *)&cmd_set_port_setup_on_setup, 1335 (void *)&cmd_set_port_setup_on_on, 1336 (void *)&cmd_set_port_setup_on_mode, 1337 NULL, 1338 }, 1339 }; 1340 1341 /* *** attach a specified port *** */ 1342 struct cmd_operate_attach_port_result { 1343 cmdline_fixed_string_t port; 1344 cmdline_fixed_string_t keyword; 1345 cmdline_multi_string_t identifier; 1346 }; 1347 1348 static void cmd_operate_attach_port_parsed(void *parsed_result, 1349 __rte_unused struct cmdline *cl, 1350 __rte_unused void *data) 1351 { 1352 struct cmd_operate_attach_port_result *res = parsed_result; 1353 1354 if (!strcmp(res->keyword, "attach")) 1355 attach_port(res->identifier); 1356 else 1357 printf("Unknown parameter\n"); 1358 } 1359 1360 cmdline_parse_token_string_t cmd_operate_attach_port_port = 1361 TOKEN_STRING_INITIALIZER(struct cmd_operate_attach_port_result, 1362 port, "port"); 1363 cmdline_parse_token_string_t cmd_operate_attach_port_keyword = 1364 TOKEN_STRING_INITIALIZER(struct cmd_operate_attach_port_result, 1365 keyword, "attach"); 1366 cmdline_parse_token_string_t cmd_operate_attach_port_identifier = 1367 TOKEN_STRING_INITIALIZER(struct cmd_operate_attach_port_result, 1368 identifier, TOKEN_STRING_MULTI); 1369 1370 cmdline_parse_inst_t cmd_operate_attach_port = { 1371 .f = cmd_operate_attach_port_parsed, 1372 .data = NULL, 1373 .help_str = "port attach <identifier>: " 1374 "(identifier: pci address or virtual dev name)", 1375 .tokens = { 1376 (void *)&cmd_operate_attach_port_port, 1377 (void *)&cmd_operate_attach_port_keyword, 1378 (void *)&cmd_operate_attach_port_identifier, 1379 NULL, 1380 }, 1381 }; 1382 1383 /* *** detach a specified port *** */ 1384 struct cmd_operate_detach_port_result { 1385 cmdline_fixed_string_t port; 1386 cmdline_fixed_string_t keyword; 1387 portid_t port_id; 1388 }; 1389 1390 static void cmd_operate_detach_port_parsed(void *parsed_result, 1391 __rte_unused struct cmdline *cl, 1392 __rte_unused void *data) 1393 { 1394 struct cmd_operate_detach_port_result *res = parsed_result; 1395 1396 if (!strcmp(res->keyword, "detach")) { 1397 RTE_ETH_VALID_PORTID_OR_RET(res->port_id); 1398 detach_port_device(res->port_id); 1399 } else { 1400 printf("Unknown parameter\n"); 1401 } 1402 } 1403 1404 cmdline_parse_token_string_t cmd_operate_detach_port_port = 1405 TOKEN_STRING_INITIALIZER(struct cmd_operate_detach_port_result, 1406 port, "port"); 1407 cmdline_parse_token_string_t cmd_operate_detach_port_keyword = 1408 TOKEN_STRING_INITIALIZER(struct cmd_operate_detach_port_result, 1409 keyword, "detach"); 1410 cmdline_parse_token_num_t cmd_operate_detach_port_port_id = 1411 TOKEN_NUM_INITIALIZER(struct cmd_operate_detach_port_result, 1412 port_id, RTE_UINT16); 1413 1414 cmdline_parse_inst_t cmd_operate_detach_port = { 1415 .f = cmd_operate_detach_port_parsed, 1416 .data = NULL, 1417 .help_str = "port detach <port_id>", 1418 .tokens = { 1419 (void *)&cmd_operate_detach_port_port, 1420 (void *)&cmd_operate_detach_port_keyword, 1421 (void *)&cmd_operate_detach_port_port_id, 1422 NULL, 1423 }, 1424 }; 1425 1426 /* *** detach device by identifier *** */ 1427 struct cmd_operate_detach_device_result { 1428 cmdline_fixed_string_t device; 1429 cmdline_fixed_string_t keyword; 1430 cmdline_fixed_string_t identifier; 1431 }; 1432 1433 static void cmd_operate_detach_device_parsed(void *parsed_result, 1434 __rte_unused struct cmdline *cl, 1435 __rte_unused void *data) 1436 { 1437 struct cmd_operate_detach_device_result *res = parsed_result; 1438 1439 if (!strcmp(res->keyword, "detach")) 1440 detach_devargs(res->identifier); 1441 else 1442 printf("Unknown parameter\n"); 1443 } 1444 1445 cmdline_parse_token_string_t cmd_operate_detach_device_device = 1446 TOKEN_STRING_INITIALIZER(struct cmd_operate_detach_device_result, 1447 device, "device"); 1448 cmdline_parse_token_string_t cmd_operate_detach_device_keyword = 1449 TOKEN_STRING_INITIALIZER(struct cmd_operate_detach_device_result, 1450 keyword, "detach"); 1451 cmdline_parse_token_string_t cmd_operate_detach_device_identifier = 1452 TOKEN_STRING_INITIALIZER(struct cmd_operate_detach_device_result, 1453 identifier, NULL); 1454 1455 cmdline_parse_inst_t cmd_operate_detach_device = { 1456 .f = cmd_operate_detach_device_parsed, 1457 .data = NULL, 1458 .help_str = "device detach <identifier>:" 1459 "(identifier: pci address or virtual dev name)", 1460 .tokens = { 1461 (void *)&cmd_operate_detach_device_device, 1462 (void *)&cmd_operate_detach_device_keyword, 1463 (void *)&cmd_operate_detach_device_identifier, 1464 NULL, 1465 }, 1466 }; 1467 /* *** configure speed for all ports *** */ 1468 struct cmd_config_speed_all { 1469 cmdline_fixed_string_t port; 1470 cmdline_fixed_string_t keyword; 1471 cmdline_fixed_string_t all; 1472 cmdline_fixed_string_t item1; 1473 cmdline_fixed_string_t item2; 1474 cmdline_fixed_string_t value1; 1475 cmdline_fixed_string_t value2; 1476 }; 1477 1478 static int 1479 parse_and_check_speed_duplex(char *speedstr, char *duplexstr, uint32_t *speed) 1480 { 1481 1482 int duplex; 1483 1484 if (!strcmp(duplexstr, "half")) { 1485 duplex = ETH_LINK_HALF_DUPLEX; 1486 } else if (!strcmp(duplexstr, "full")) { 1487 duplex = ETH_LINK_FULL_DUPLEX; 1488 } else if (!strcmp(duplexstr, "auto")) { 1489 duplex = ETH_LINK_FULL_DUPLEX; 1490 } else { 1491 printf("Unknown duplex parameter\n"); 1492 return -1; 1493 } 1494 1495 if (!strcmp(speedstr, "10")) { 1496 *speed = (duplex == ETH_LINK_HALF_DUPLEX) ? 1497 ETH_LINK_SPEED_10M_HD : ETH_LINK_SPEED_10M; 1498 } else if (!strcmp(speedstr, "100")) { 1499 *speed = (duplex == ETH_LINK_HALF_DUPLEX) ? 1500 ETH_LINK_SPEED_100M_HD : ETH_LINK_SPEED_100M; 1501 } else { 1502 if (duplex != ETH_LINK_FULL_DUPLEX) { 1503 printf("Invalid speed/duplex parameters\n"); 1504 return -1; 1505 } 1506 if (!strcmp(speedstr, "1000")) { 1507 *speed = ETH_LINK_SPEED_1G; 1508 } else if (!strcmp(speedstr, "10000")) { 1509 *speed = ETH_LINK_SPEED_10G; 1510 } else if (!strcmp(speedstr, "25000")) { 1511 *speed = ETH_LINK_SPEED_25G; 1512 } else if (!strcmp(speedstr, "40000")) { 1513 *speed = ETH_LINK_SPEED_40G; 1514 } else if (!strcmp(speedstr, "50000")) { 1515 *speed = ETH_LINK_SPEED_50G; 1516 } else if (!strcmp(speedstr, "100000")) { 1517 *speed = ETH_LINK_SPEED_100G; 1518 } else if (!strcmp(speedstr, "200000")) { 1519 *speed = ETH_LINK_SPEED_200G; 1520 } else if (!strcmp(speedstr, "auto")) { 1521 *speed = ETH_LINK_SPEED_AUTONEG; 1522 } else { 1523 printf("Unknown speed parameter\n"); 1524 return -1; 1525 } 1526 } 1527 1528 return 0; 1529 } 1530 1531 static void 1532 cmd_config_speed_all_parsed(void *parsed_result, 1533 __rte_unused struct cmdline *cl, 1534 __rte_unused void *data) 1535 { 1536 struct cmd_config_speed_all *res = parsed_result; 1537 uint32_t link_speed; 1538 portid_t pid; 1539 1540 if (!all_ports_stopped()) { 1541 printf("Please stop all ports first\n"); 1542 return; 1543 } 1544 1545 if (parse_and_check_speed_duplex(res->value1, res->value2, 1546 &link_speed) < 0) 1547 return; 1548 1549 RTE_ETH_FOREACH_DEV(pid) { 1550 ports[pid].dev_conf.link_speeds = link_speed; 1551 } 1552 1553 cmd_reconfig_device_queue(RTE_PORT_ALL, 1, 1); 1554 } 1555 1556 cmdline_parse_token_string_t cmd_config_speed_all_port = 1557 TOKEN_STRING_INITIALIZER(struct cmd_config_speed_all, port, "port"); 1558 cmdline_parse_token_string_t cmd_config_speed_all_keyword = 1559 TOKEN_STRING_INITIALIZER(struct cmd_config_speed_all, keyword, 1560 "config"); 1561 cmdline_parse_token_string_t cmd_config_speed_all_all = 1562 TOKEN_STRING_INITIALIZER(struct cmd_config_speed_all, all, "all"); 1563 cmdline_parse_token_string_t cmd_config_speed_all_item1 = 1564 TOKEN_STRING_INITIALIZER(struct cmd_config_speed_all, item1, "speed"); 1565 cmdline_parse_token_string_t cmd_config_speed_all_value1 = 1566 TOKEN_STRING_INITIALIZER(struct cmd_config_speed_all, value1, 1567 "10#100#1000#10000#25000#40000#50000#100000#200000#auto"); 1568 cmdline_parse_token_string_t cmd_config_speed_all_item2 = 1569 TOKEN_STRING_INITIALIZER(struct cmd_config_speed_all, item2, "duplex"); 1570 cmdline_parse_token_string_t cmd_config_speed_all_value2 = 1571 TOKEN_STRING_INITIALIZER(struct cmd_config_speed_all, value2, 1572 "half#full#auto"); 1573 1574 cmdline_parse_inst_t cmd_config_speed_all = { 1575 .f = cmd_config_speed_all_parsed, 1576 .data = NULL, 1577 .help_str = "port config all speed " 1578 "10|100|1000|10000|25000|40000|50000|100000|200000|auto duplex " 1579 "half|full|auto", 1580 .tokens = { 1581 (void *)&cmd_config_speed_all_port, 1582 (void *)&cmd_config_speed_all_keyword, 1583 (void *)&cmd_config_speed_all_all, 1584 (void *)&cmd_config_speed_all_item1, 1585 (void *)&cmd_config_speed_all_value1, 1586 (void *)&cmd_config_speed_all_item2, 1587 (void *)&cmd_config_speed_all_value2, 1588 NULL, 1589 }, 1590 }; 1591 1592 /* *** configure speed for specific port *** */ 1593 struct cmd_config_speed_specific { 1594 cmdline_fixed_string_t port; 1595 cmdline_fixed_string_t keyword; 1596 portid_t id; 1597 cmdline_fixed_string_t item1; 1598 cmdline_fixed_string_t item2; 1599 cmdline_fixed_string_t value1; 1600 cmdline_fixed_string_t value2; 1601 }; 1602 1603 static void 1604 cmd_config_speed_specific_parsed(void *parsed_result, 1605 __rte_unused struct cmdline *cl, 1606 __rte_unused void *data) 1607 { 1608 struct cmd_config_speed_specific *res = parsed_result; 1609 uint32_t link_speed; 1610 1611 if (!all_ports_stopped()) { 1612 printf("Please stop all ports first\n"); 1613 return; 1614 } 1615 1616 if (port_id_is_invalid(res->id, ENABLED_WARN)) 1617 return; 1618 1619 if (parse_and_check_speed_duplex(res->value1, res->value2, 1620 &link_speed) < 0) 1621 return; 1622 1623 ports[res->id].dev_conf.link_speeds = link_speed; 1624 1625 cmd_reconfig_device_queue(RTE_PORT_ALL, 1, 1); 1626 } 1627 1628 1629 cmdline_parse_token_string_t cmd_config_speed_specific_port = 1630 TOKEN_STRING_INITIALIZER(struct cmd_config_speed_specific, port, 1631 "port"); 1632 cmdline_parse_token_string_t cmd_config_speed_specific_keyword = 1633 TOKEN_STRING_INITIALIZER(struct cmd_config_speed_specific, keyword, 1634 "config"); 1635 cmdline_parse_token_num_t cmd_config_speed_specific_id = 1636 TOKEN_NUM_INITIALIZER(struct cmd_config_speed_specific, id, RTE_UINT16); 1637 cmdline_parse_token_string_t cmd_config_speed_specific_item1 = 1638 TOKEN_STRING_INITIALIZER(struct cmd_config_speed_specific, item1, 1639 "speed"); 1640 cmdline_parse_token_string_t cmd_config_speed_specific_value1 = 1641 TOKEN_STRING_INITIALIZER(struct cmd_config_speed_specific, value1, 1642 "10#100#1000#10000#25000#40000#50000#100000#200000#auto"); 1643 cmdline_parse_token_string_t cmd_config_speed_specific_item2 = 1644 TOKEN_STRING_INITIALIZER(struct cmd_config_speed_specific, item2, 1645 "duplex"); 1646 cmdline_parse_token_string_t cmd_config_speed_specific_value2 = 1647 TOKEN_STRING_INITIALIZER(struct cmd_config_speed_specific, value2, 1648 "half#full#auto"); 1649 1650 cmdline_parse_inst_t cmd_config_speed_specific = { 1651 .f = cmd_config_speed_specific_parsed, 1652 .data = NULL, 1653 .help_str = "port config <port_id> speed " 1654 "10|100|1000|10000|25000|40000|50000|100000|200000|auto duplex " 1655 "half|full|auto", 1656 .tokens = { 1657 (void *)&cmd_config_speed_specific_port, 1658 (void *)&cmd_config_speed_specific_keyword, 1659 (void *)&cmd_config_speed_specific_id, 1660 (void *)&cmd_config_speed_specific_item1, 1661 (void *)&cmd_config_speed_specific_value1, 1662 (void *)&cmd_config_speed_specific_item2, 1663 (void *)&cmd_config_speed_specific_value2, 1664 NULL, 1665 }, 1666 }; 1667 1668 /* *** configure loopback for all ports *** */ 1669 struct cmd_config_loopback_all { 1670 cmdline_fixed_string_t port; 1671 cmdline_fixed_string_t keyword; 1672 cmdline_fixed_string_t all; 1673 cmdline_fixed_string_t item; 1674 uint32_t mode; 1675 }; 1676 1677 static void 1678 cmd_config_loopback_all_parsed(void *parsed_result, 1679 __rte_unused struct cmdline *cl, 1680 __rte_unused void *data) 1681 { 1682 struct cmd_config_loopback_all *res = parsed_result; 1683 portid_t pid; 1684 1685 if (!all_ports_stopped()) { 1686 printf("Please stop all ports first\n"); 1687 return; 1688 } 1689 1690 RTE_ETH_FOREACH_DEV(pid) { 1691 ports[pid].dev_conf.lpbk_mode = res->mode; 1692 } 1693 1694 cmd_reconfig_device_queue(RTE_PORT_ALL, 1, 1); 1695 } 1696 1697 cmdline_parse_token_string_t cmd_config_loopback_all_port = 1698 TOKEN_STRING_INITIALIZER(struct cmd_config_loopback_all, port, "port"); 1699 cmdline_parse_token_string_t cmd_config_loopback_all_keyword = 1700 TOKEN_STRING_INITIALIZER(struct cmd_config_loopback_all, keyword, 1701 "config"); 1702 cmdline_parse_token_string_t cmd_config_loopback_all_all = 1703 TOKEN_STRING_INITIALIZER(struct cmd_config_loopback_all, all, "all"); 1704 cmdline_parse_token_string_t cmd_config_loopback_all_item = 1705 TOKEN_STRING_INITIALIZER(struct cmd_config_loopback_all, item, 1706 "loopback"); 1707 cmdline_parse_token_num_t cmd_config_loopback_all_mode = 1708 TOKEN_NUM_INITIALIZER(struct cmd_config_loopback_all, mode, RTE_UINT32); 1709 1710 cmdline_parse_inst_t cmd_config_loopback_all = { 1711 .f = cmd_config_loopback_all_parsed, 1712 .data = NULL, 1713 .help_str = "port config all loopback <mode>", 1714 .tokens = { 1715 (void *)&cmd_config_loopback_all_port, 1716 (void *)&cmd_config_loopback_all_keyword, 1717 (void *)&cmd_config_loopback_all_all, 1718 (void *)&cmd_config_loopback_all_item, 1719 (void *)&cmd_config_loopback_all_mode, 1720 NULL, 1721 }, 1722 }; 1723 1724 /* *** configure loopback for specific port *** */ 1725 struct cmd_config_loopback_specific { 1726 cmdline_fixed_string_t port; 1727 cmdline_fixed_string_t keyword; 1728 uint16_t port_id; 1729 cmdline_fixed_string_t item; 1730 uint32_t mode; 1731 }; 1732 1733 static void 1734 cmd_config_loopback_specific_parsed(void *parsed_result, 1735 __rte_unused struct cmdline *cl, 1736 __rte_unused void *data) 1737 { 1738 struct cmd_config_loopback_specific *res = parsed_result; 1739 1740 if (port_id_is_invalid(res->port_id, ENABLED_WARN)) 1741 return; 1742 1743 if (!port_is_stopped(res->port_id)) { 1744 printf("Please stop port %u first\n", res->port_id); 1745 return; 1746 } 1747 1748 ports[res->port_id].dev_conf.lpbk_mode = res->mode; 1749 1750 cmd_reconfig_device_queue(res->port_id, 1, 1); 1751 } 1752 1753 1754 cmdline_parse_token_string_t cmd_config_loopback_specific_port = 1755 TOKEN_STRING_INITIALIZER(struct cmd_config_loopback_specific, port, 1756 "port"); 1757 cmdline_parse_token_string_t cmd_config_loopback_specific_keyword = 1758 TOKEN_STRING_INITIALIZER(struct cmd_config_loopback_specific, keyword, 1759 "config"); 1760 cmdline_parse_token_num_t cmd_config_loopback_specific_id = 1761 TOKEN_NUM_INITIALIZER(struct cmd_config_loopback_specific, port_id, 1762 RTE_UINT16); 1763 cmdline_parse_token_string_t cmd_config_loopback_specific_item = 1764 TOKEN_STRING_INITIALIZER(struct cmd_config_loopback_specific, item, 1765 "loopback"); 1766 cmdline_parse_token_num_t cmd_config_loopback_specific_mode = 1767 TOKEN_NUM_INITIALIZER(struct cmd_config_loopback_specific, mode, 1768 RTE_UINT32); 1769 1770 cmdline_parse_inst_t cmd_config_loopback_specific = { 1771 .f = cmd_config_loopback_specific_parsed, 1772 .data = NULL, 1773 .help_str = "port config <port_id> loopback <mode>", 1774 .tokens = { 1775 (void *)&cmd_config_loopback_specific_port, 1776 (void *)&cmd_config_loopback_specific_keyword, 1777 (void *)&cmd_config_loopback_specific_id, 1778 (void *)&cmd_config_loopback_specific_item, 1779 (void *)&cmd_config_loopback_specific_mode, 1780 NULL, 1781 }, 1782 }; 1783 1784 /* *** configure txq/rxq, txd/rxd *** */ 1785 struct cmd_config_rx_tx { 1786 cmdline_fixed_string_t port; 1787 cmdline_fixed_string_t keyword; 1788 cmdline_fixed_string_t all; 1789 cmdline_fixed_string_t name; 1790 uint16_t value; 1791 }; 1792 1793 static void 1794 cmd_config_rx_tx_parsed(void *parsed_result, 1795 __rte_unused struct cmdline *cl, 1796 __rte_unused void *data) 1797 { 1798 struct cmd_config_rx_tx *res = parsed_result; 1799 1800 if (!all_ports_stopped()) { 1801 printf("Please stop all ports first\n"); 1802 return; 1803 } 1804 if (!strcmp(res->name, "rxq")) { 1805 if (!res->value && !nb_txq) { 1806 printf("Warning: Either rx or tx queues should be non zero\n"); 1807 return; 1808 } 1809 if (check_nb_rxq(res->value) != 0) 1810 return; 1811 nb_rxq = res->value; 1812 } 1813 else if (!strcmp(res->name, "txq")) { 1814 if (!res->value && !nb_rxq) { 1815 printf("Warning: Either rx or tx queues should be non zero\n"); 1816 return; 1817 } 1818 if (check_nb_txq(res->value) != 0) 1819 return; 1820 nb_txq = res->value; 1821 } 1822 else if (!strcmp(res->name, "rxd")) { 1823 if (check_nb_rxd(res->value) != 0) 1824 return; 1825 nb_rxd = res->value; 1826 } else if (!strcmp(res->name, "txd")) { 1827 if (check_nb_txd(res->value) != 0) 1828 return; 1829 1830 nb_txd = res->value; 1831 } else { 1832 printf("Unknown parameter\n"); 1833 return; 1834 } 1835 1836 fwd_config_setup(); 1837 1838 init_port_config(); 1839 1840 cmd_reconfig_device_queue(RTE_PORT_ALL, 1, 1); 1841 } 1842 1843 cmdline_parse_token_string_t cmd_config_rx_tx_port = 1844 TOKEN_STRING_INITIALIZER(struct cmd_config_rx_tx, port, "port"); 1845 cmdline_parse_token_string_t cmd_config_rx_tx_keyword = 1846 TOKEN_STRING_INITIALIZER(struct cmd_config_rx_tx, keyword, "config"); 1847 cmdline_parse_token_string_t cmd_config_rx_tx_all = 1848 TOKEN_STRING_INITIALIZER(struct cmd_config_rx_tx, all, "all"); 1849 cmdline_parse_token_string_t cmd_config_rx_tx_name = 1850 TOKEN_STRING_INITIALIZER(struct cmd_config_rx_tx, name, 1851 "rxq#txq#rxd#txd"); 1852 cmdline_parse_token_num_t cmd_config_rx_tx_value = 1853 TOKEN_NUM_INITIALIZER(struct cmd_config_rx_tx, value, RTE_UINT16); 1854 1855 cmdline_parse_inst_t cmd_config_rx_tx = { 1856 .f = cmd_config_rx_tx_parsed, 1857 .data = NULL, 1858 .help_str = "port config all rxq|txq|rxd|txd <value>", 1859 .tokens = { 1860 (void *)&cmd_config_rx_tx_port, 1861 (void *)&cmd_config_rx_tx_keyword, 1862 (void *)&cmd_config_rx_tx_all, 1863 (void *)&cmd_config_rx_tx_name, 1864 (void *)&cmd_config_rx_tx_value, 1865 NULL, 1866 }, 1867 }; 1868 1869 /* *** config max packet length *** */ 1870 struct cmd_config_max_pkt_len_result { 1871 cmdline_fixed_string_t port; 1872 cmdline_fixed_string_t keyword; 1873 cmdline_fixed_string_t all; 1874 cmdline_fixed_string_t name; 1875 uint32_t value; 1876 }; 1877 1878 static void 1879 cmd_config_max_pkt_len_parsed(void *parsed_result, 1880 __rte_unused struct cmdline *cl, 1881 __rte_unused void *data) 1882 { 1883 struct cmd_config_max_pkt_len_result *res = parsed_result; 1884 uint32_t max_rx_pkt_len_backup = 0; 1885 portid_t pid; 1886 int ret; 1887 1888 if (!all_ports_stopped()) { 1889 printf("Please stop all ports first\n"); 1890 return; 1891 } 1892 1893 RTE_ETH_FOREACH_DEV(pid) { 1894 struct rte_port *port = &ports[pid]; 1895 1896 if (!strcmp(res->name, "max-pkt-len")) { 1897 if (res->value < RTE_ETHER_MIN_LEN) { 1898 printf("max-pkt-len can not be less than %d\n", 1899 RTE_ETHER_MIN_LEN); 1900 return; 1901 } 1902 if (res->value == port->dev_conf.rxmode.max_rx_pkt_len) 1903 return; 1904 1905 ret = eth_dev_info_get_print_err(pid, &port->dev_info); 1906 if (ret != 0) { 1907 printf("rte_eth_dev_info_get() failed for port %u\n", 1908 pid); 1909 return; 1910 } 1911 1912 max_rx_pkt_len_backup = port->dev_conf.rxmode.max_rx_pkt_len; 1913 1914 port->dev_conf.rxmode.max_rx_pkt_len = res->value; 1915 if (update_jumbo_frame_offload(pid) != 0) 1916 port->dev_conf.rxmode.max_rx_pkt_len = max_rx_pkt_len_backup; 1917 } else { 1918 printf("Unknown parameter\n"); 1919 return; 1920 } 1921 } 1922 1923 init_port_config(); 1924 1925 cmd_reconfig_device_queue(RTE_PORT_ALL, 1, 1); 1926 } 1927 1928 cmdline_parse_token_string_t cmd_config_max_pkt_len_port = 1929 TOKEN_STRING_INITIALIZER(struct cmd_config_max_pkt_len_result, port, 1930 "port"); 1931 cmdline_parse_token_string_t cmd_config_max_pkt_len_keyword = 1932 TOKEN_STRING_INITIALIZER(struct cmd_config_max_pkt_len_result, keyword, 1933 "config"); 1934 cmdline_parse_token_string_t cmd_config_max_pkt_len_all = 1935 TOKEN_STRING_INITIALIZER(struct cmd_config_max_pkt_len_result, all, 1936 "all"); 1937 cmdline_parse_token_string_t cmd_config_max_pkt_len_name = 1938 TOKEN_STRING_INITIALIZER(struct cmd_config_max_pkt_len_result, name, 1939 "max-pkt-len"); 1940 cmdline_parse_token_num_t cmd_config_max_pkt_len_value = 1941 TOKEN_NUM_INITIALIZER(struct cmd_config_max_pkt_len_result, value, 1942 RTE_UINT32); 1943 1944 cmdline_parse_inst_t cmd_config_max_pkt_len = { 1945 .f = cmd_config_max_pkt_len_parsed, 1946 .data = NULL, 1947 .help_str = "port config all max-pkt-len <value>", 1948 .tokens = { 1949 (void *)&cmd_config_max_pkt_len_port, 1950 (void *)&cmd_config_max_pkt_len_keyword, 1951 (void *)&cmd_config_max_pkt_len_all, 1952 (void *)&cmd_config_max_pkt_len_name, 1953 (void *)&cmd_config_max_pkt_len_value, 1954 NULL, 1955 }, 1956 }; 1957 1958 /* *** config max LRO aggregated packet size *** */ 1959 struct cmd_config_max_lro_pkt_size_result { 1960 cmdline_fixed_string_t port; 1961 cmdline_fixed_string_t keyword; 1962 cmdline_fixed_string_t all; 1963 cmdline_fixed_string_t name; 1964 uint32_t value; 1965 }; 1966 1967 static void 1968 cmd_config_max_lro_pkt_size_parsed(void *parsed_result, 1969 __rte_unused struct cmdline *cl, 1970 __rte_unused void *data) 1971 { 1972 struct cmd_config_max_lro_pkt_size_result *res = parsed_result; 1973 portid_t pid; 1974 1975 if (!all_ports_stopped()) { 1976 printf("Please stop all ports first\n"); 1977 return; 1978 } 1979 1980 RTE_ETH_FOREACH_DEV(pid) { 1981 struct rte_port *port = &ports[pid]; 1982 1983 if (!strcmp(res->name, "max-lro-pkt-size")) { 1984 if (res->value == 1985 port->dev_conf.rxmode.max_lro_pkt_size) 1986 return; 1987 1988 port->dev_conf.rxmode.max_lro_pkt_size = res->value; 1989 } else { 1990 printf("Unknown parameter\n"); 1991 return; 1992 } 1993 } 1994 1995 init_port_config(); 1996 1997 cmd_reconfig_device_queue(RTE_PORT_ALL, 1, 1); 1998 } 1999 2000 cmdline_parse_token_string_t cmd_config_max_lro_pkt_size_port = 2001 TOKEN_STRING_INITIALIZER(struct cmd_config_max_lro_pkt_size_result, 2002 port, "port"); 2003 cmdline_parse_token_string_t cmd_config_max_lro_pkt_size_keyword = 2004 TOKEN_STRING_INITIALIZER(struct cmd_config_max_lro_pkt_size_result, 2005 keyword, "config"); 2006 cmdline_parse_token_string_t cmd_config_max_lro_pkt_size_all = 2007 TOKEN_STRING_INITIALIZER(struct cmd_config_max_lro_pkt_size_result, 2008 all, "all"); 2009 cmdline_parse_token_string_t cmd_config_max_lro_pkt_size_name = 2010 TOKEN_STRING_INITIALIZER(struct cmd_config_max_lro_pkt_size_result, 2011 name, "max-lro-pkt-size"); 2012 cmdline_parse_token_num_t cmd_config_max_lro_pkt_size_value = 2013 TOKEN_NUM_INITIALIZER(struct cmd_config_max_lro_pkt_size_result, 2014 value, RTE_UINT32); 2015 2016 cmdline_parse_inst_t cmd_config_max_lro_pkt_size = { 2017 .f = cmd_config_max_lro_pkt_size_parsed, 2018 .data = NULL, 2019 .help_str = "port config all max-lro-pkt-size <value>", 2020 .tokens = { 2021 (void *)&cmd_config_max_lro_pkt_size_port, 2022 (void *)&cmd_config_max_lro_pkt_size_keyword, 2023 (void *)&cmd_config_max_lro_pkt_size_all, 2024 (void *)&cmd_config_max_lro_pkt_size_name, 2025 (void *)&cmd_config_max_lro_pkt_size_value, 2026 NULL, 2027 }, 2028 }; 2029 2030 /* *** configure port MTU *** */ 2031 struct cmd_config_mtu_result { 2032 cmdline_fixed_string_t port; 2033 cmdline_fixed_string_t keyword; 2034 cmdline_fixed_string_t mtu; 2035 portid_t port_id; 2036 uint16_t value; 2037 }; 2038 2039 static void 2040 cmd_config_mtu_parsed(void *parsed_result, 2041 __rte_unused struct cmdline *cl, 2042 __rte_unused void *data) 2043 { 2044 struct cmd_config_mtu_result *res = parsed_result; 2045 2046 if (res->value < RTE_ETHER_MIN_LEN) { 2047 printf("mtu cannot be less than %d\n", RTE_ETHER_MIN_LEN); 2048 return; 2049 } 2050 port_mtu_set(res->port_id, res->value); 2051 } 2052 2053 cmdline_parse_token_string_t cmd_config_mtu_port = 2054 TOKEN_STRING_INITIALIZER(struct cmd_config_mtu_result, port, 2055 "port"); 2056 cmdline_parse_token_string_t cmd_config_mtu_keyword = 2057 TOKEN_STRING_INITIALIZER(struct cmd_config_mtu_result, keyword, 2058 "config"); 2059 cmdline_parse_token_string_t cmd_config_mtu_mtu = 2060 TOKEN_STRING_INITIALIZER(struct cmd_config_mtu_result, keyword, 2061 "mtu"); 2062 cmdline_parse_token_num_t cmd_config_mtu_port_id = 2063 TOKEN_NUM_INITIALIZER(struct cmd_config_mtu_result, port_id, 2064 RTE_UINT16); 2065 cmdline_parse_token_num_t cmd_config_mtu_value = 2066 TOKEN_NUM_INITIALIZER(struct cmd_config_mtu_result, value, 2067 RTE_UINT16); 2068 2069 cmdline_parse_inst_t cmd_config_mtu = { 2070 .f = cmd_config_mtu_parsed, 2071 .data = NULL, 2072 .help_str = "port config mtu <port_id> <value>", 2073 .tokens = { 2074 (void *)&cmd_config_mtu_port, 2075 (void *)&cmd_config_mtu_keyword, 2076 (void *)&cmd_config_mtu_mtu, 2077 (void *)&cmd_config_mtu_port_id, 2078 (void *)&cmd_config_mtu_value, 2079 NULL, 2080 }, 2081 }; 2082 2083 /* *** configure rx mode *** */ 2084 struct cmd_config_rx_mode_flag { 2085 cmdline_fixed_string_t port; 2086 cmdline_fixed_string_t keyword; 2087 cmdline_fixed_string_t all; 2088 cmdline_fixed_string_t name; 2089 cmdline_fixed_string_t value; 2090 }; 2091 2092 static void 2093 cmd_config_rx_mode_flag_parsed(void *parsed_result, 2094 __rte_unused struct cmdline *cl, 2095 __rte_unused void *data) 2096 { 2097 struct cmd_config_rx_mode_flag *res = parsed_result; 2098 2099 if (!all_ports_stopped()) { 2100 printf("Please stop all ports first\n"); 2101 return; 2102 } 2103 2104 if (!strcmp(res->name, "drop-en")) { 2105 if (!strcmp(res->value, "on")) 2106 rx_drop_en = 1; 2107 else if (!strcmp(res->value, "off")) 2108 rx_drop_en = 0; 2109 else { 2110 printf("Unknown parameter\n"); 2111 return; 2112 } 2113 } else { 2114 printf("Unknown parameter\n"); 2115 return; 2116 } 2117 2118 init_port_config(); 2119 2120 cmd_reconfig_device_queue(RTE_PORT_ALL, 1, 1); 2121 } 2122 2123 cmdline_parse_token_string_t cmd_config_rx_mode_flag_port = 2124 TOKEN_STRING_INITIALIZER(struct cmd_config_rx_mode_flag, port, "port"); 2125 cmdline_parse_token_string_t cmd_config_rx_mode_flag_keyword = 2126 TOKEN_STRING_INITIALIZER(struct cmd_config_rx_mode_flag, keyword, 2127 "config"); 2128 cmdline_parse_token_string_t cmd_config_rx_mode_flag_all = 2129 TOKEN_STRING_INITIALIZER(struct cmd_config_rx_mode_flag, all, "all"); 2130 cmdline_parse_token_string_t cmd_config_rx_mode_flag_name = 2131 TOKEN_STRING_INITIALIZER(struct cmd_config_rx_mode_flag, name, 2132 "drop-en"); 2133 cmdline_parse_token_string_t cmd_config_rx_mode_flag_value = 2134 TOKEN_STRING_INITIALIZER(struct cmd_config_rx_mode_flag, value, 2135 "on#off"); 2136 2137 cmdline_parse_inst_t cmd_config_rx_mode_flag = { 2138 .f = cmd_config_rx_mode_flag_parsed, 2139 .data = NULL, 2140 .help_str = "port config all drop-en on|off", 2141 .tokens = { 2142 (void *)&cmd_config_rx_mode_flag_port, 2143 (void *)&cmd_config_rx_mode_flag_keyword, 2144 (void *)&cmd_config_rx_mode_flag_all, 2145 (void *)&cmd_config_rx_mode_flag_name, 2146 (void *)&cmd_config_rx_mode_flag_value, 2147 NULL, 2148 }, 2149 }; 2150 2151 /* *** configure rss *** */ 2152 struct cmd_config_rss { 2153 cmdline_fixed_string_t port; 2154 cmdline_fixed_string_t keyword; 2155 cmdline_fixed_string_t all; 2156 cmdline_fixed_string_t name; 2157 cmdline_fixed_string_t value; 2158 }; 2159 2160 static void 2161 cmd_config_rss_parsed(void *parsed_result, 2162 __rte_unused struct cmdline *cl, 2163 __rte_unused void *data) 2164 { 2165 struct cmd_config_rss *res = parsed_result; 2166 struct rte_eth_rss_conf rss_conf = { .rss_key_len = 0, }; 2167 struct rte_eth_dev_info dev_info = { .flow_type_rss_offloads = 0, }; 2168 int use_default = 0; 2169 int all_updated = 1; 2170 int diag; 2171 uint16_t i; 2172 int ret; 2173 2174 if (!strcmp(res->value, "all")) 2175 rss_conf.rss_hf = ETH_RSS_ETH | ETH_RSS_VLAN | ETH_RSS_IP | 2176 ETH_RSS_TCP | ETH_RSS_UDP | ETH_RSS_SCTP | 2177 ETH_RSS_L2_PAYLOAD | ETH_RSS_L2TPV3 | ETH_RSS_ESP | 2178 ETH_RSS_AH | ETH_RSS_PFCP | ETH_RSS_GTPU | 2179 ETH_RSS_ECPRI; 2180 else if (!strcmp(res->value, "eth")) 2181 rss_conf.rss_hf = ETH_RSS_ETH; 2182 else if (!strcmp(res->value, "vlan")) 2183 rss_conf.rss_hf = ETH_RSS_VLAN; 2184 else if (!strcmp(res->value, "ip")) 2185 rss_conf.rss_hf = ETH_RSS_IP; 2186 else if (!strcmp(res->value, "udp")) 2187 rss_conf.rss_hf = ETH_RSS_UDP; 2188 else if (!strcmp(res->value, "tcp")) 2189 rss_conf.rss_hf = ETH_RSS_TCP; 2190 else if (!strcmp(res->value, "sctp")) 2191 rss_conf.rss_hf = ETH_RSS_SCTP; 2192 else if (!strcmp(res->value, "ether")) 2193 rss_conf.rss_hf = ETH_RSS_L2_PAYLOAD; 2194 else if (!strcmp(res->value, "port")) 2195 rss_conf.rss_hf = ETH_RSS_PORT; 2196 else if (!strcmp(res->value, "vxlan")) 2197 rss_conf.rss_hf = ETH_RSS_VXLAN; 2198 else if (!strcmp(res->value, "geneve")) 2199 rss_conf.rss_hf = ETH_RSS_GENEVE; 2200 else if (!strcmp(res->value, "nvgre")) 2201 rss_conf.rss_hf = ETH_RSS_NVGRE; 2202 else if (!strcmp(res->value, "l3-pre32")) 2203 rss_conf.rss_hf = RTE_ETH_RSS_L3_PRE32; 2204 else if (!strcmp(res->value, "l3-pre40")) 2205 rss_conf.rss_hf = RTE_ETH_RSS_L3_PRE40; 2206 else if (!strcmp(res->value, "l3-pre48")) 2207 rss_conf.rss_hf = RTE_ETH_RSS_L3_PRE48; 2208 else if (!strcmp(res->value, "l3-pre56")) 2209 rss_conf.rss_hf = RTE_ETH_RSS_L3_PRE56; 2210 else if (!strcmp(res->value, "l3-pre64")) 2211 rss_conf.rss_hf = RTE_ETH_RSS_L3_PRE64; 2212 else if (!strcmp(res->value, "l3-pre96")) 2213 rss_conf.rss_hf = RTE_ETH_RSS_L3_PRE96; 2214 else if (!strcmp(res->value, "l3-src-only")) 2215 rss_conf.rss_hf = ETH_RSS_L3_SRC_ONLY; 2216 else if (!strcmp(res->value, "l3-dst-only")) 2217 rss_conf.rss_hf = ETH_RSS_L3_DST_ONLY; 2218 else if (!strcmp(res->value, "l4-src-only")) 2219 rss_conf.rss_hf = ETH_RSS_L4_SRC_ONLY; 2220 else if (!strcmp(res->value, "l4-dst-only")) 2221 rss_conf.rss_hf = ETH_RSS_L4_DST_ONLY; 2222 else if (!strcmp(res->value, "l2-src-only")) 2223 rss_conf.rss_hf = ETH_RSS_L2_SRC_ONLY; 2224 else if (!strcmp(res->value, "l2-dst-only")) 2225 rss_conf.rss_hf = ETH_RSS_L2_DST_ONLY; 2226 else if (!strcmp(res->value, "l2tpv3")) 2227 rss_conf.rss_hf = ETH_RSS_L2TPV3; 2228 else if (!strcmp(res->value, "esp")) 2229 rss_conf.rss_hf = ETH_RSS_ESP; 2230 else if (!strcmp(res->value, "ah")) 2231 rss_conf.rss_hf = ETH_RSS_AH; 2232 else if (!strcmp(res->value, "pfcp")) 2233 rss_conf.rss_hf = ETH_RSS_PFCP; 2234 else if (!strcmp(res->value, "pppoe")) 2235 rss_conf.rss_hf = ETH_RSS_PPPOE; 2236 else if (!strcmp(res->value, "gtpu")) 2237 rss_conf.rss_hf = ETH_RSS_GTPU; 2238 else if (!strcmp(res->value, "ecpri")) 2239 rss_conf.rss_hf = ETH_RSS_ECPRI; 2240 else if (!strcmp(res->value, "mpls")) 2241 rss_conf.rss_hf = ETH_RSS_MPLS; 2242 else if (!strcmp(res->value, "none")) 2243 rss_conf.rss_hf = 0; 2244 else if (!strcmp(res->value, "level-default")) { 2245 rss_hf &= (~ETH_RSS_LEVEL_MASK); 2246 rss_conf.rss_hf = (rss_hf | ETH_RSS_LEVEL_PMD_DEFAULT); 2247 } else if (!strcmp(res->value, "level-outer")) { 2248 rss_hf &= (~ETH_RSS_LEVEL_MASK); 2249 rss_conf.rss_hf = (rss_hf | ETH_RSS_LEVEL_OUTERMOST); 2250 } else if (!strcmp(res->value, "level-inner")) { 2251 rss_hf &= (~ETH_RSS_LEVEL_MASK); 2252 rss_conf.rss_hf = (rss_hf | ETH_RSS_LEVEL_INNERMOST); 2253 } else if (!strcmp(res->value, "default")) 2254 use_default = 1; 2255 else if (isdigit(res->value[0]) && atoi(res->value) > 0 && 2256 atoi(res->value) < 64) 2257 rss_conf.rss_hf = 1ULL << atoi(res->value); 2258 else { 2259 printf("Unknown parameter\n"); 2260 return; 2261 } 2262 rss_conf.rss_key = NULL; 2263 /* Update global configuration for RSS types. */ 2264 RTE_ETH_FOREACH_DEV(i) { 2265 struct rte_eth_rss_conf local_rss_conf; 2266 2267 ret = eth_dev_info_get_print_err(i, &dev_info); 2268 if (ret != 0) 2269 return; 2270 2271 if (use_default) 2272 rss_conf.rss_hf = dev_info.flow_type_rss_offloads; 2273 2274 local_rss_conf = rss_conf; 2275 local_rss_conf.rss_hf = rss_conf.rss_hf & 2276 dev_info.flow_type_rss_offloads; 2277 if (local_rss_conf.rss_hf != rss_conf.rss_hf) { 2278 printf("Port %u modified RSS hash function based on hardware support," 2279 "requested:%#"PRIx64" configured:%#"PRIx64"\n", 2280 i, rss_conf.rss_hf, local_rss_conf.rss_hf); 2281 } 2282 diag = rte_eth_dev_rss_hash_update(i, &local_rss_conf); 2283 if (diag < 0) { 2284 all_updated = 0; 2285 printf("Configuration of RSS hash at ethernet port %d " 2286 "failed with error (%d): %s.\n", 2287 i, -diag, strerror(-diag)); 2288 } 2289 } 2290 if (all_updated && !use_default) { 2291 rss_hf = rss_conf.rss_hf; 2292 printf("rss_hf %#"PRIx64"\n", rss_hf); 2293 } 2294 } 2295 2296 cmdline_parse_token_string_t cmd_config_rss_port = 2297 TOKEN_STRING_INITIALIZER(struct cmd_config_rss, port, "port"); 2298 cmdline_parse_token_string_t cmd_config_rss_keyword = 2299 TOKEN_STRING_INITIALIZER(struct cmd_config_rss, keyword, "config"); 2300 cmdline_parse_token_string_t cmd_config_rss_all = 2301 TOKEN_STRING_INITIALIZER(struct cmd_config_rss, all, "all"); 2302 cmdline_parse_token_string_t cmd_config_rss_name = 2303 TOKEN_STRING_INITIALIZER(struct cmd_config_rss, name, "rss"); 2304 cmdline_parse_token_string_t cmd_config_rss_value = 2305 TOKEN_STRING_INITIALIZER(struct cmd_config_rss, value, NULL); 2306 2307 cmdline_parse_inst_t cmd_config_rss = { 2308 .f = cmd_config_rss_parsed, 2309 .data = NULL, 2310 .help_str = "port config all rss " 2311 "all|default|eth|vlan|ip|tcp|udp|sctp|ether|port|vxlan|geneve|" 2312 "nvgre|vxlan-gpe|l2tpv3|esp|ah|pfcp|ecpri|mpls|none|level-default|" 2313 "level-outer|level-inner|<flowtype_id>", 2314 .tokens = { 2315 (void *)&cmd_config_rss_port, 2316 (void *)&cmd_config_rss_keyword, 2317 (void *)&cmd_config_rss_all, 2318 (void *)&cmd_config_rss_name, 2319 (void *)&cmd_config_rss_value, 2320 NULL, 2321 }, 2322 }; 2323 2324 /* *** configure rss hash key *** */ 2325 struct cmd_config_rss_hash_key { 2326 cmdline_fixed_string_t port; 2327 cmdline_fixed_string_t config; 2328 portid_t port_id; 2329 cmdline_fixed_string_t rss_hash_key; 2330 cmdline_fixed_string_t rss_type; 2331 cmdline_fixed_string_t key; 2332 }; 2333 2334 static uint8_t 2335 hexa_digit_to_value(char hexa_digit) 2336 { 2337 if ((hexa_digit >= '0') && (hexa_digit <= '9')) 2338 return (uint8_t) (hexa_digit - '0'); 2339 if ((hexa_digit >= 'a') && (hexa_digit <= 'f')) 2340 return (uint8_t) ((hexa_digit - 'a') + 10); 2341 if ((hexa_digit >= 'A') && (hexa_digit <= 'F')) 2342 return (uint8_t) ((hexa_digit - 'A') + 10); 2343 /* Invalid hexa digit */ 2344 return 0xFF; 2345 } 2346 2347 static uint8_t 2348 parse_and_check_key_hexa_digit(char *key, int idx) 2349 { 2350 uint8_t hexa_v; 2351 2352 hexa_v = hexa_digit_to_value(key[idx]); 2353 if (hexa_v == 0xFF) 2354 printf("invalid key: character %c at position %d is not a " 2355 "valid hexa digit\n", key[idx], idx); 2356 return hexa_v; 2357 } 2358 2359 static void 2360 cmd_config_rss_hash_key_parsed(void *parsed_result, 2361 __rte_unused struct cmdline *cl, 2362 __rte_unused void *data) 2363 { 2364 struct cmd_config_rss_hash_key *res = parsed_result; 2365 uint8_t hash_key[RSS_HASH_KEY_LENGTH]; 2366 uint8_t xdgt0; 2367 uint8_t xdgt1; 2368 int i; 2369 struct rte_eth_dev_info dev_info; 2370 uint8_t hash_key_size; 2371 uint32_t key_len; 2372 int ret; 2373 2374 ret = eth_dev_info_get_print_err(res->port_id, &dev_info); 2375 if (ret != 0) 2376 return; 2377 2378 if (dev_info.hash_key_size > 0 && 2379 dev_info.hash_key_size <= sizeof(hash_key)) 2380 hash_key_size = dev_info.hash_key_size; 2381 else { 2382 printf("dev_info did not provide a valid hash key size\n"); 2383 return; 2384 } 2385 /* Check the length of the RSS hash key */ 2386 key_len = strlen(res->key); 2387 if (key_len != (hash_key_size * 2)) { 2388 printf("key length: %d invalid - key must be a string of %d" 2389 " hexa-decimal numbers\n", 2390 (int) key_len, hash_key_size * 2); 2391 return; 2392 } 2393 /* Translate RSS hash key into binary representation */ 2394 for (i = 0; i < hash_key_size; i++) { 2395 xdgt0 = parse_and_check_key_hexa_digit(res->key, (i * 2)); 2396 if (xdgt0 == 0xFF) 2397 return; 2398 xdgt1 = parse_and_check_key_hexa_digit(res->key, (i * 2) + 1); 2399 if (xdgt1 == 0xFF) 2400 return; 2401 hash_key[i] = (uint8_t) ((xdgt0 * 16) + xdgt1); 2402 } 2403 port_rss_hash_key_update(res->port_id, res->rss_type, hash_key, 2404 hash_key_size); 2405 } 2406 2407 cmdline_parse_token_string_t cmd_config_rss_hash_key_port = 2408 TOKEN_STRING_INITIALIZER(struct cmd_config_rss_hash_key, port, "port"); 2409 cmdline_parse_token_string_t cmd_config_rss_hash_key_config = 2410 TOKEN_STRING_INITIALIZER(struct cmd_config_rss_hash_key, config, 2411 "config"); 2412 cmdline_parse_token_num_t cmd_config_rss_hash_key_port_id = 2413 TOKEN_NUM_INITIALIZER(struct cmd_config_rss_hash_key, port_id, 2414 RTE_UINT16); 2415 cmdline_parse_token_string_t cmd_config_rss_hash_key_rss_hash_key = 2416 TOKEN_STRING_INITIALIZER(struct cmd_config_rss_hash_key, 2417 rss_hash_key, "rss-hash-key"); 2418 cmdline_parse_token_string_t cmd_config_rss_hash_key_rss_type = 2419 TOKEN_STRING_INITIALIZER(struct cmd_config_rss_hash_key, rss_type, 2420 "ipv4#ipv4-frag#ipv4-tcp#ipv4-udp#ipv4-sctp#" 2421 "ipv4-other#ipv6#ipv6-frag#ipv6-tcp#ipv6-udp#" 2422 "ipv6-sctp#ipv6-other#l2-payload#ipv6-ex#" 2423 "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 cmdline_parse_token_string_t cmd_config_rss_hash_key_value = 2428 TOKEN_STRING_INITIALIZER(struct cmd_config_rss_hash_key, key, NULL); 2429 2430 cmdline_parse_inst_t cmd_config_rss_hash_key = { 2431 .f = cmd_config_rss_hash_key_parsed, 2432 .data = NULL, 2433 .help_str = "port config <port_id> rss-hash-key " 2434 "ipv4|ipv4-frag|ipv4-tcp|ipv4-udp|ipv4-sctp|ipv4-other|" 2435 "ipv6|ipv6-frag|ipv6-tcp|ipv6-udp|ipv6-sctp|ipv6-other|" 2436 "l2-payload|ipv6-ex|ipv6-tcp-ex|ipv6-udp-ex|" 2437 "l3-src-only|l3-dst-only|l4-src-only|l4-dst-only|" 2438 "l2-src-only|l2-dst-only|s-vlan|c-vlan|" 2439 "l2tpv3|esp|ah|pfcp|pppoe|gtpu|ecpri " 2440 "<string of hex digits (variable length, NIC dependent)>", 2441 .tokens = { 2442 (void *)&cmd_config_rss_hash_key_port, 2443 (void *)&cmd_config_rss_hash_key_config, 2444 (void *)&cmd_config_rss_hash_key_port_id, 2445 (void *)&cmd_config_rss_hash_key_rss_hash_key, 2446 (void *)&cmd_config_rss_hash_key_rss_type, 2447 (void *)&cmd_config_rss_hash_key_value, 2448 NULL, 2449 }, 2450 }; 2451 2452 /* *** configure port rxq/txq ring size *** */ 2453 struct cmd_config_rxtx_ring_size { 2454 cmdline_fixed_string_t port; 2455 cmdline_fixed_string_t config; 2456 portid_t portid; 2457 cmdline_fixed_string_t rxtxq; 2458 uint16_t qid; 2459 cmdline_fixed_string_t rsize; 2460 uint16_t size; 2461 }; 2462 2463 static void 2464 cmd_config_rxtx_ring_size_parsed(void *parsed_result, 2465 __rte_unused struct cmdline *cl, 2466 __rte_unused void *data) 2467 { 2468 struct cmd_config_rxtx_ring_size *res = parsed_result; 2469 struct rte_port *port; 2470 uint8_t isrx; 2471 2472 if (port_id_is_invalid(res->portid, ENABLED_WARN)) 2473 return; 2474 2475 if (res->portid == (portid_t)RTE_PORT_ALL) { 2476 printf("Invalid port id\n"); 2477 return; 2478 } 2479 2480 port = &ports[res->portid]; 2481 2482 if (!strcmp(res->rxtxq, "rxq")) 2483 isrx = 1; 2484 else if (!strcmp(res->rxtxq, "txq")) 2485 isrx = 0; 2486 else { 2487 printf("Unknown parameter\n"); 2488 return; 2489 } 2490 2491 if (isrx && rx_queue_id_is_invalid(res->qid)) 2492 return; 2493 else if (!isrx && tx_queue_id_is_invalid(res->qid)) 2494 return; 2495 2496 if (isrx && res->size != 0 && res->size <= rx_free_thresh) { 2497 printf("Invalid rx ring_size, must > rx_free_thresh: %d\n", 2498 rx_free_thresh); 2499 return; 2500 } 2501 2502 if (isrx) 2503 port->nb_rx_desc[res->qid] = res->size; 2504 else 2505 port->nb_tx_desc[res->qid] = res->size; 2506 2507 cmd_reconfig_device_queue(res->portid, 0, 1); 2508 } 2509 2510 cmdline_parse_token_string_t cmd_config_rxtx_ring_size_port = 2511 TOKEN_STRING_INITIALIZER(struct cmd_config_rxtx_ring_size, 2512 port, "port"); 2513 cmdline_parse_token_string_t cmd_config_rxtx_ring_size_config = 2514 TOKEN_STRING_INITIALIZER(struct cmd_config_rxtx_ring_size, 2515 config, "config"); 2516 cmdline_parse_token_num_t cmd_config_rxtx_ring_size_portid = 2517 TOKEN_NUM_INITIALIZER(struct cmd_config_rxtx_ring_size, 2518 portid, RTE_UINT16); 2519 cmdline_parse_token_string_t cmd_config_rxtx_ring_size_rxtxq = 2520 TOKEN_STRING_INITIALIZER(struct cmd_config_rxtx_ring_size, 2521 rxtxq, "rxq#txq"); 2522 cmdline_parse_token_num_t cmd_config_rxtx_ring_size_qid = 2523 TOKEN_NUM_INITIALIZER(struct cmd_config_rxtx_ring_size, 2524 qid, RTE_UINT16); 2525 cmdline_parse_token_string_t cmd_config_rxtx_ring_size_rsize = 2526 TOKEN_STRING_INITIALIZER(struct cmd_config_rxtx_ring_size, 2527 rsize, "ring_size"); 2528 cmdline_parse_token_num_t cmd_config_rxtx_ring_size_size = 2529 TOKEN_NUM_INITIALIZER(struct cmd_config_rxtx_ring_size, 2530 size, RTE_UINT16); 2531 2532 cmdline_parse_inst_t cmd_config_rxtx_ring_size = { 2533 .f = cmd_config_rxtx_ring_size_parsed, 2534 .data = NULL, 2535 .help_str = "port config <port_id> rxq|txq <queue_id> ring_size <value>", 2536 .tokens = { 2537 (void *)&cmd_config_rxtx_ring_size_port, 2538 (void *)&cmd_config_rxtx_ring_size_config, 2539 (void *)&cmd_config_rxtx_ring_size_portid, 2540 (void *)&cmd_config_rxtx_ring_size_rxtxq, 2541 (void *)&cmd_config_rxtx_ring_size_qid, 2542 (void *)&cmd_config_rxtx_ring_size_rsize, 2543 (void *)&cmd_config_rxtx_ring_size_size, 2544 NULL, 2545 }, 2546 }; 2547 2548 /* *** configure port rxq/txq start/stop *** */ 2549 struct cmd_config_rxtx_queue { 2550 cmdline_fixed_string_t port; 2551 portid_t portid; 2552 cmdline_fixed_string_t rxtxq; 2553 uint16_t qid; 2554 cmdline_fixed_string_t opname; 2555 }; 2556 2557 static void 2558 cmd_config_rxtx_queue_parsed(void *parsed_result, 2559 __rte_unused struct cmdline *cl, 2560 __rte_unused void *data) 2561 { 2562 struct cmd_config_rxtx_queue *res = parsed_result; 2563 uint8_t isrx; 2564 uint8_t isstart; 2565 int ret = 0; 2566 2567 if (test_done == 0) { 2568 printf("Please stop forwarding first\n"); 2569 return; 2570 } 2571 2572 if (port_id_is_invalid(res->portid, ENABLED_WARN)) 2573 return; 2574 2575 if (port_is_started(res->portid) != 1) { 2576 printf("Please start port %u first\n", res->portid); 2577 return; 2578 } 2579 2580 if (!strcmp(res->rxtxq, "rxq")) 2581 isrx = 1; 2582 else if (!strcmp(res->rxtxq, "txq")) 2583 isrx = 0; 2584 else { 2585 printf("Unknown parameter\n"); 2586 return; 2587 } 2588 2589 if (isrx && rx_queue_id_is_invalid(res->qid)) 2590 return; 2591 else if (!isrx && tx_queue_id_is_invalid(res->qid)) 2592 return; 2593 2594 if (!strcmp(res->opname, "start")) 2595 isstart = 1; 2596 else if (!strcmp(res->opname, "stop")) 2597 isstart = 0; 2598 else { 2599 printf("Unknown parameter\n"); 2600 return; 2601 } 2602 2603 if (isstart && isrx) 2604 ret = rte_eth_dev_rx_queue_start(res->portid, res->qid); 2605 else if (!isstart && isrx) 2606 ret = rte_eth_dev_rx_queue_stop(res->portid, res->qid); 2607 else if (isstart && !isrx) 2608 ret = rte_eth_dev_tx_queue_start(res->portid, res->qid); 2609 else 2610 ret = rte_eth_dev_tx_queue_stop(res->portid, res->qid); 2611 2612 if (ret == -ENOTSUP) 2613 printf("Function not supported in PMD driver\n"); 2614 } 2615 2616 cmdline_parse_token_string_t cmd_config_rxtx_queue_port = 2617 TOKEN_STRING_INITIALIZER(struct cmd_config_rxtx_queue, port, "port"); 2618 cmdline_parse_token_num_t cmd_config_rxtx_queue_portid = 2619 TOKEN_NUM_INITIALIZER(struct cmd_config_rxtx_queue, portid, RTE_UINT16); 2620 cmdline_parse_token_string_t cmd_config_rxtx_queue_rxtxq = 2621 TOKEN_STRING_INITIALIZER(struct cmd_config_rxtx_queue, rxtxq, "rxq#txq"); 2622 cmdline_parse_token_num_t cmd_config_rxtx_queue_qid = 2623 TOKEN_NUM_INITIALIZER(struct cmd_config_rxtx_queue, qid, RTE_UINT16); 2624 cmdline_parse_token_string_t cmd_config_rxtx_queue_opname = 2625 TOKEN_STRING_INITIALIZER(struct cmd_config_rxtx_queue, opname, 2626 "start#stop"); 2627 2628 cmdline_parse_inst_t cmd_config_rxtx_queue = { 2629 .f = cmd_config_rxtx_queue_parsed, 2630 .data = NULL, 2631 .help_str = "port <port_id> rxq|txq <queue_id> start|stop", 2632 .tokens = { 2633 (void *)&cmd_config_rxtx_queue_port, 2634 (void *)&cmd_config_rxtx_queue_portid, 2635 (void *)&cmd_config_rxtx_queue_rxtxq, 2636 (void *)&cmd_config_rxtx_queue_qid, 2637 (void *)&cmd_config_rxtx_queue_opname, 2638 NULL, 2639 }, 2640 }; 2641 2642 /* *** configure port rxq/txq deferred start on/off *** */ 2643 struct cmd_config_deferred_start_rxtx_queue { 2644 cmdline_fixed_string_t port; 2645 portid_t port_id; 2646 cmdline_fixed_string_t rxtxq; 2647 uint16_t qid; 2648 cmdline_fixed_string_t opname; 2649 cmdline_fixed_string_t state; 2650 }; 2651 2652 static void 2653 cmd_config_deferred_start_rxtx_queue_parsed(void *parsed_result, 2654 __rte_unused struct cmdline *cl, 2655 __rte_unused void *data) 2656 { 2657 struct cmd_config_deferred_start_rxtx_queue *res = parsed_result; 2658 struct rte_port *port; 2659 uint8_t isrx; 2660 uint8_t ison; 2661 uint8_t needreconfig = 0; 2662 2663 if (port_id_is_invalid(res->port_id, ENABLED_WARN)) 2664 return; 2665 2666 if (port_is_started(res->port_id) != 0) { 2667 printf("Please stop port %u first\n", res->port_id); 2668 return; 2669 } 2670 2671 port = &ports[res->port_id]; 2672 2673 isrx = !strcmp(res->rxtxq, "rxq"); 2674 2675 if (isrx && rx_queue_id_is_invalid(res->qid)) 2676 return; 2677 else if (!isrx && tx_queue_id_is_invalid(res->qid)) 2678 return; 2679 2680 ison = !strcmp(res->state, "on"); 2681 2682 if (isrx && port->rx_conf[res->qid].rx_deferred_start != ison) { 2683 port->rx_conf[res->qid].rx_deferred_start = ison; 2684 needreconfig = 1; 2685 } else if (!isrx && port->tx_conf[res->qid].tx_deferred_start != ison) { 2686 port->tx_conf[res->qid].tx_deferred_start = ison; 2687 needreconfig = 1; 2688 } 2689 2690 if (needreconfig) 2691 cmd_reconfig_device_queue(res->port_id, 0, 1); 2692 } 2693 2694 cmdline_parse_token_string_t cmd_config_deferred_start_rxtx_queue_port = 2695 TOKEN_STRING_INITIALIZER(struct cmd_config_deferred_start_rxtx_queue, 2696 port, "port"); 2697 cmdline_parse_token_num_t cmd_config_deferred_start_rxtx_queue_port_id = 2698 TOKEN_NUM_INITIALIZER(struct cmd_config_deferred_start_rxtx_queue, 2699 port_id, RTE_UINT16); 2700 cmdline_parse_token_string_t cmd_config_deferred_start_rxtx_queue_rxtxq = 2701 TOKEN_STRING_INITIALIZER(struct cmd_config_deferred_start_rxtx_queue, 2702 rxtxq, "rxq#txq"); 2703 cmdline_parse_token_num_t cmd_config_deferred_start_rxtx_queue_qid = 2704 TOKEN_NUM_INITIALIZER(struct cmd_config_deferred_start_rxtx_queue, 2705 qid, RTE_UINT16); 2706 cmdline_parse_token_string_t cmd_config_deferred_start_rxtx_queue_opname = 2707 TOKEN_STRING_INITIALIZER(struct cmd_config_deferred_start_rxtx_queue, 2708 opname, "deferred_start"); 2709 cmdline_parse_token_string_t cmd_config_deferred_start_rxtx_queue_state = 2710 TOKEN_STRING_INITIALIZER(struct cmd_config_deferred_start_rxtx_queue, 2711 state, "on#off"); 2712 2713 cmdline_parse_inst_t cmd_config_deferred_start_rxtx_queue = { 2714 .f = cmd_config_deferred_start_rxtx_queue_parsed, 2715 .data = NULL, 2716 .help_str = "port <port_id> rxq|txq <queue_id> deferred_start on|off", 2717 .tokens = { 2718 (void *)&cmd_config_deferred_start_rxtx_queue_port, 2719 (void *)&cmd_config_deferred_start_rxtx_queue_port_id, 2720 (void *)&cmd_config_deferred_start_rxtx_queue_rxtxq, 2721 (void *)&cmd_config_deferred_start_rxtx_queue_qid, 2722 (void *)&cmd_config_deferred_start_rxtx_queue_opname, 2723 (void *)&cmd_config_deferred_start_rxtx_queue_state, 2724 NULL, 2725 }, 2726 }; 2727 2728 /* *** configure port rxq/txq setup *** */ 2729 struct cmd_setup_rxtx_queue { 2730 cmdline_fixed_string_t port; 2731 portid_t portid; 2732 cmdline_fixed_string_t rxtxq; 2733 uint16_t qid; 2734 cmdline_fixed_string_t setup; 2735 }; 2736 2737 /* Common CLI fields for queue setup */ 2738 cmdline_parse_token_string_t cmd_setup_rxtx_queue_port = 2739 TOKEN_STRING_INITIALIZER(struct cmd_setup_rxtx_queue, port, "port"); 2740 cmdline_parse_token_num_t cmd_setup_rxtx_queue_portid = 2741 TOKEN_NUM_INITIALIZER(struct cmd_setup_rxtx_queue, portid, RTE_UINT16); 2742 cmdline_parse_token_string_t cmd_setup_rxtx_queue_rxtxq = 2743 TOKEN_STRING_INITIALIZER(struct cmd_setup_rxtx_queue, rxtxq, "rxq#txq"); 2744 cmdline_parse_token_num_t cmd_setup_rxtx_queue_qid = 2745 TOKEN_NUM_INITIALIZER(struct cmd_setup_rxtx_queue, qid, RTE_UINT16); 2746 cmdline_parse_token_string_t cmd_setup_rxtx_queue_setup = 2747 TOKEN_STRING_INITIALIZER(struct cmd_setup_rxtx_queue, setup, "setup"); 2748 2749 static void 2750 cmd_setup_rxtx_queue_parsed( 2751 void *parsed_result, 2752 __rte_unused struct cmdline *cl, 2753 __rte_unused void *data) 2754 { 2755 struct cmd_setup_rxtx_queue *res = parsed_result; 2756 struct rte_port *port; 2757 struct rte_mempool *mp; 2758 unsigned int socket_id; 2759 uint8_t isrx = 0; 2760 int ret; 2761 2762 if (port_id_is_invalid(res->portid, ENABLED_WARN)) 2763 return; 2764 2765 if (res->portid == (portid_t)RTE_PORT_ALL) { 2766 printf("Invalid port id\n"); 2767 return; 2768 } 2769 2770 if (!strcmp(res->rxtxq, "rxq")) 2771 isrx = 1; 2772 else if (!strcmp(res->rxtxq, "txq")) 2773 isrx = 0; 2774 else { 2775 printf("Unknown parameter\n"); 2776 return; 2777 } 2778 2779 if (isrx && rx_queue_id_is_invalid(res->qid)) { 2780 printf("Invalid rx queue\n"); 2781 return; 2782 } else if (!isrx && tx_queue_id_is_invalid(res->qid)) { 2783 printf("Invalid tx queue\n"); 2784 return; 2785 } 2786 2787 port = &ports[res->portid]; 2788 if (isrx) { 2789 socket_id = rxring_numa[res->portid]; 2790 if (!numa_support || socket_id == NUMA_NO_CONFIG) 2791 socket_id = port->socket_id; 2792 2793 mp = mbuf_pool_find(socket_id, 0); 2794 if (mp == NULL) { 2795 printf("Failed to setup RX queue: " 2796 "No mempool allocation" 2797 " on the socket %d\n", 2798 rxring_numa[res->portid]); 2799 return; 2800 } 2801 ret = rx_queue_setup(res->portid, 2802 res->qid, 2803 port->nb_rx_desc[res->qid], 2804 socket_id, 2805 &port->rx_conf[res->qid], 2806 mp); 2807 if (ret) 2808 printf("Failed to setup RX queue\n"); 2809 } else { 2810 socket_id = txring_numa[res->portid]; 2811 if (!numa_support || socket_id == NUMA_NO_CONFIG) 2812 socket_id = port->socket_id; 2813 2814 ret = rte_eth_tx_queue_setup(res->portid, 2815 res->qid, 2816 port->nb_tx_desc[res->qid], 2817 socket_id, 2818 &port->tx_conf[res->qid]); 2819 if (ret) 2820 printf("Failed to setup TX queue\n"); 2821 } 2822 } 2823 2824 cmdline_parse_inst_t cmd_setup_rxtx_queue = { 2825 .f = cmd_setup_rxtx_queue_parsed, 2826 .data = NULL, 2827 .help_str = "port <port_id> rxq|txq <queue_idx> setup", 2828 .tokens = { 2829 (void *)&cmd_setup_rxtx_queue_port, 2830 (void *)&cmd_setup_rxtx_queue_portid, 2831 (void *)&cmd_setup_rxtx_queue_rxtxq, 2832 (void *)&cmd_setup_rxtx_queue_qid, 2833 (void *)&cmd_setup_rxtx_queue_setup, 2834 NULL, 2835 }, 2836 }; 2837 2838 2839 /* *** Configure RSS RETA *** */ 2840 struct cmd_config_rss_reta { 2841 cmdline_fixed_string_t port; 2842 cmdline_fixed_string_t keyword; 2843 portid_t port_id; 2844 cmdline_fixed_string_t name; 2845 cmdline_fixed_string_t list_name; 2846 cmdline_fixed_string_t list_of_items; 2847 }; 2848 2849 static int 2850 parse_reta_config(const char *str, 2851 struct rte_eth_rss_reta_entry64 *reta_conf, 2852 uint16_t nb_entries) 2853 { 2854 int i; 2855 unsigned size; 2856 uint16_t hash_index, idx, shift; 2857 uint16_t nb_queue; 2858 char s[256]; 2859 const char *p, *p0 = str; 2860 char *end; 2861 enum fieldnames { 2862 FLD_HASH_INDEX = 0, 2863 FLD_QUEUE, 2864 _NUM_FLD 2865 }; 2866 unsigned long int_fld[_NUM_FLD]; 2867 char *str_fld[_NUM_FLD]; 2868 2869 while ((p = strchr(p0,'(')) != NULL) { 2870 ++p; 2871 if((p0 = strchr(p,')')) == NULL) 2872 return -1; 2873 2874 size = p0 - p; 2875 if(size >= sizeof(s)) 2876 return -1; 2877 2878 snprintf(s, sizeof(s), "%.*s", size, p); 2879 if (rte_strsplit(s, sizeof(s), str_fld, _NUM_FLD, ',') != _NUM_FLD) 2880 return -1; 2881 for (i = 0; i < _NUM_FLD; i++) { 2882 errno = 0; 2883 int_fld[i] = strtoul(str_fld[i], &end, 0); 2884 if (errno != 0 || end == str_fld[i] || 2885 int_fld[i] > 65535) 2886 return -1; 2887 } 2888 2889 hash_index = (uint16_t)int_fld[FLD_HASH_INDEX]; 2890 nb_queue = (uint16_t)int_fld[FLD_QUEUE]; 2891 2892 if (hash_index >= nb_entries) { 2893 printf("Invalid RETA hash index=%d\n", hash_index); 2894 return -1; 2895 } 2896 2897 idx = hash_index / RTE_RETA_GROUP_SIZE; 2898 shift = hash_index % RTE_RETA_GROUP_SIZE; 2899 reta_conf[idx].mask |= (1ULL << shift); 2900 reta_conf[idx].reta[shift] = nb_queue; 2901 } 2902 2903 return 0; 2904 } 2905 2906 static void 2907 cmd_set_rss_reta_parsed(void *parsed_result, 2908 __rte_unused struct cmdline *cl, 2909 __rte_unused void *data) 2910 { 2911 int ret; 2912 struct rte_eth_dev_info dev_info; 2913 struct rte_eth_rss_reta_entry64 reta_conf[8]; 2914 struct cmd_config_rss_reta *res = parsed_result; 2915 2916 ret = eth_dev_info_get_print_err(res->port_id, &dev_info); 2917 if (ret != 0) 2918 return; 2919 2920 if (dev_info.reta_size == 0) { 2921 printf("Redirection table size is 0 which is " 2922 "invalid for RSS\n"); 2923 return; 2924 } else 2925 printf("The reta size of port %d is %u\n", 2926 res->port_id, dev_info.reta_size); 2927 if (dev_info.reta_size > ETH_RSS_RETA_SIZE_512) { 2928 printf("Currently do not support more than %u entries of " 2929 "redirection table\n", ETH_RSS_RETA_SIZE_512); 2930 return; 2931 } 2932 2933 memset(reta_conf, 0, sizeof(reta_conf)); 2934 if (!strcmp(res->list_name, "reta")) { 2935 if (parse_reta_config(res->list_of_items, reta_conf, 2936 dev_info.reta_size)) { 2937 printf("Invalid RSS Redirection Table " 2938 "config entered\n"); 2939 return; 2940 } 2941 ret = rte_eth_dev_rss_reta_update(res->port_id, 2942 reta_conf, dev_info.reta_size); 2943 if (ret != 0) 2944 printf("Bad redirection table parameter, " 2945 "return code = %d \n", ret); 2946 } 2947 } 2948 2949 cmdline_parse_token_string_t cmd_config_rss_reta_port = 2950 TOKEN_STRING_INITIALIZER(struct cmd_config_rss_reta, port, "port"); 2951 cmdline_parse_token_string_t cmd_config_rss_reta_keyword = 2952 TOKEN_STRING_INITIALIZER(struct cmd_config_rss_reta, keyword, "config"); 2953 cmdline_parse_token_num_t cmd_config_rss_reta_port_id = 2954 TOKEN_NUM_INITIALIZER(struct cmd_config_rss_reta, port_id, RTE_UINT16); 2955 cmdline_parse_token_string_t cmd_config_rss_reta_name = 2956 TOKEN_STRING_INITIALIZER(struct cmd_config_rss_reta, name, "rss"); 2957 cmdline_parse_token_string_t cmd_config_rss_reta_list_name = 2958 TOKEN_STRING_INITIALIZER(struct cmd_config_rss_reta, list_name, "reta"); 2959 cmdline_parse_token_string_t cmd_config_rss_reta_list_of_items = 2960 TOKEN_STRING_INITIALIZER(struct cmd_config_rss_reta, list_of_items, 2961 NULL); 2962 cmdline_parse_inst_t cmd_config_rss_reta = { 2963 .f = cmd_set_rss_reta_parsed, 2964 .data = NULL, 2965 .help_str = "port config <port_id> rss reta <hash,queue[,hash,queue]*>", 2966 .tokens = { 2967 (void *)&cmd_config_rss_reta_port, 2968 (void *)&cmd_config_rss_reta_keyword, 2969 (void *)&cmd_config_rss_reta_port_id, 2970 (void *)&cmd_config_rss_reta_name, 2971 (void *)&cmd_config_rss_reta_list_name, 2972 (void *)&cmd_config_rss_reta_list_of_items, 2973 NULL, 2974 }, 2975 }; 2976 2977 /* *** SHOW PORT RETA INFO *** */ 2978 struct cmd_showport_reta { 2979 cmdline_fixed_string_t show; 2980 cmdline_fixed_string_t port; 2981 portid_t port_id; 2982 cmdline_fixed_string_t rss; 2983 cmdline_fixed_string_t reta; 2984 uint16_t size; 2985 cmdline_fixed_string_t list_of_items; 2986 }; 2987 2988 static int 2989 showport_parse_reta_config(struct rte_eth_rss_reta_entry64 *conf, 2990 uint16_t nb_entries, 2991 char *str) 2992 { 2993 uint32_t size; 2994 const char *p, *p0 = str; 2995 char s[256]; 2996 char *end; 2997 char *str_fld[8]; 2998 uint16_t i; 2999 uint16_t num = (nb_entries + RTE_RETA_GROUP_SIZE - 1) / 3000 RTE_RETA_GROUP_SIZE; 3001 int ret; 3002 3003 p = strchr(p0, '('); 3004 if (p == NULL) 3005 return -1; 3006 p++; 3007 p0 = strchr(p, ')'); 3008 if (p0 == NULL) 3009 return -1; 3010 size = p0 - p; 3011 if (size >= sizeof(s)) { 3012 printf("The string size exceeds the internal buffer size\n"); 3013 return -1; 3014 } 3015 snprintf(s, sizeof(s), "%.*s", size, p); 3016 ret = rte_strsplit(s, sizeof(s), str_fld, num, ','); 3017 if (ret <= 0 || ret != num) { 3018 printf("The bits of masks do not match the number of " 3019 "reta entries: %u\n", num); 3020 return -1; 3021 } 3022 for (i = 0; i < ret; i++) 3023 conf[i].mask = (uint64_t)strtoul(str_fld[i], &end, 0); 3024 3025 return 0; 3026 } 3027 3028 static void 3029 cmd_showport_reta_parsed(void *parsed_result, 3030 __rte_unused struct cmdline *cl, 3031 __rte_unused void *data) 3032 { 3033 struct cmd_showport_reta *res = parsed_result; 3034 struct rte_eth_rss_reta_entry64 reta_conf[8]; 3035 struct rte_eth_dev_info dev_info; 3036 uint16_t max_reta_size; 3037 int ret; 3038 3039 ret = eth_dev_info_get_print_err(res->port_id, &dev_info); 3040 if (ret != 0) 3041 return; 3042 3043 max_reta_size = RTE_MIN(dev_info.reta_size, ETH_RSS_RETA_SIZE_512); 3044 if (res->size == 0 || res->size > max_reta_size) { 3045 printf("Invalid redirection table size: %u (1-%u)\n", 3046 res->size, max_reta_size); 3047 return; 3048 } 3049 3050 memset(reta_conf, 0, sizeof(reta_conf)); 3051 if (showport_parse_reta_config(reta_conf, res->size, 3052 res->list_of_items) < 0) { 3053 printf("Invalid string: %s for reta masks\n", 3054 res->list_of_items); 3055 return; 3056 } 3057 port_rss_reta_info(res->port_id, reta_conf, res->size); 3058 } 3059 3060 cmdline_parse_token_string_t cmd_showport_reta_show = 3061 TOKEN_STRING_INITIALIZER(struct cmd_showport_reta, show, "show"); 3062 cmdline_parse_token_string_t cmd_showport_reta_port = 3063 TOKEN_STRING_INITIALIZER(struct cmd_showport_reta, port, "port"); 3064 cmdline_parse_token_num_t cmd_showport_reta_port_id = 3065 TOKEN_NUM_INITIALIZER(struct cmd_showport_reta, port_id, RTE_UINT16); 3066 cmdline_parse_token_string_t cmd_showport_reta_rss = 3067 TOKEN_STRING_INITIALIZER(struct cmd_showport_reta, rss, "rss"); 3068 cmdline_parse_token_string_t cmd_showport_reta_reta = 3069 TOKEN_STRING_INITIALIZER(struct cmd_showport_reta, reta, "reta"); 3070 cmdline_parse_token_num_t cmd_showport_reta_size = 3071 TOKEN_NUM_INITIALIZER(struct cmd_showport_reta, size, RTE_UINT16); 3072 cmdline_parse_token_string_t cmd_showport_reta_list_of_items = 3073 TOKEN_STRING_INITIALIZER(struct cmd_showport_reta, 3074 list_of_items, NULL); 3075 3076 cmdline_parse_inst_t cmd_showport_reta = { 3077 .f = cmd_showport_reta_parsed, 3078 .data = NULL, 3079 .help_str = "show port <port_id> rss reta <size> <mask0[,mask1]*>", 3080 .tokens = { 3081 (void *)&cmd_showport_reta_show, 3082 (void *)&cmd_showport_reta_port, 3083 (void *)&cmd_showport_reta_port_id, 3084 (void *)&cmd_showport_reta_rss, 3085 (void *)&cmd_showport_reta_reta, 3086 (void *)&cmd_showport_reta_size, 3087 (void *)&cmd_showport_reta_list_of_items, 3088 NULL, 3089 }, 3090 }; 3091 3092 /* *** Show RSS hash configuration *** */ 3093 struct cmd_showport_rss_hash { 3094 cmdline_fixed_string_t show; 3095 cmdline_fixed_string_t port; 3096 portid_t port_id; 3097 cmdline_fixed_string_t rss_hash; 3098 cmdline_fixed_string_t rss_type; 3099 cmdline_fixed_string_t key; /* optional argument */ 3100 }; 3101 3102 static void cmd_showport_rss_hash_parsed(void *parsed_result, 3103 __rte_unused struct cmdline *cl, 3104 void *show_rss_key) 3105 { 3106 struct cmd_showport_rss_hash *res = parsed_result; 3107 3108 port_rss_hash_conf_show(res->port_id, show_rss_key != NULL); 3109 } 3110 3111 cmdline_parse_token_string_t cmd_showport_rss_hash_show = 3112 TOKEN_STRING_INITIALIZER(struct cmd_showport_rss_hash, show, "show"); 3113 cmdline_parse_token_string_t cmd_showport_rss_hash_port = 3114 TOKEN_STRING_INITIALIZER(struct cmd_showport_rss_hash, port, "port"); 3115 cmdline_parse_token_num_t cmd_showport_rss_hash_port_id = 3116 TOKEN_NUM_INITIALIZER(struct cmd_showport_rss_hash, port_id, 3117 RTE_UINT16); 3118 cmdline_parse_token_string_t cmd_showport_rss_hash_rss_hash = 3119 TOKEN_STRING_INITIALIZER(struct cmd_showport_rss_hash, rss_hash, 3120 "rss-hash"); 3121 cmdline_parse_token_string_t cmd_showport_rss_hash_rss_key = 3122 TOKEN_STRING_INITIALIZER(struct cmd_showport_rss_hash, key, "key"); 3123 3124 cmdline_parse_inst_t cmd_showport_rss_hash = { 3125 .f = cmd_showport_rss_hash_parsed, 3126 .data = NULL, 3127 .help_str = "show port <port_id> rss-hash", 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 NULL, 3134 }, 3135 }; 3136 3137 cmdline_parse_inst_t cmd_showport_rss_hash_key = { 3138 .f = cmd_showport_rss_hash_parsed, 3139 .data = (void *)1, 3140 .help_str = "show port <port_id> rss-hash key", 3141 .tokens = { 3142 (void *)&cmd_showport_rss_hash_show, 3143 (void *)&cmd_showport_rss_hash_port, 3144 (void *)&cmd_showport_rss_hash_port_id, 3145 (void *)&cmd_showport_rss_hash_rss_hash, 3146 (void *)&cmd_showport_rss_hash_rss_key, 3147 NULL, 3148 }, 3149 }; 3150 3151 /* *** Configure DCB *** */ 3152 struct cmd_config_dcb { 3153 cmdline_fixed_string_t port; 3154 cmdline_fixed_string_t config; 3155 portid_t port_id; 3156 cmdline_fixed_string_t dcb; 3157 cmdline_fixed_string_t vt; 3158 cmdline_fixed_string_t vt_en; 3159 uint8_t num_tcs; 3160 cmdline_fixed_string_t pfc; 3161 cmdline_fixed_string_t pfc_en; 3162 }; 3163 3164 static void 3165 cmd_config_dcb_parsed(void *parsed_result, 3166 __rte_unused struct cmdline *cl, 3167 __rte_unused void *data) 3168 { 3169 struct cmd_config_dcb *res = parsed_result; 3170 portid_t port_id = res->port_id; 3171 struct rte_port *port; 3172 uint8_t pfc_en; 3173 int ret; 3174 3175 port = &ports[port_id]; 3176 /** Check if the port is not started **/ 3177 if (port->port_status != RTE_PORT_STOPPED) { 3178 printf("Please stop port %d first\n", port_id); 3179 return; 3180 } 3181 3182 if ((res->num_tcs != ETH_4_TCS) && (res->num_tcs != ETH_8_TCS)) { 3183 printf("The invalid number of traffic class," 3184 " only 4 or 8 allowed.\n"); 3185 return; 3186 } 3187 3188 if (nb_fwd_lcores < res->num_tcs) { 3189 printf("nb_cores shouldn't be less than number of TCs.\n"); 3190 return; 3191 } 3192 if (!strncmp(res->pfc_en, "on", 2)) 3193 pfc_en = 1; 3194 else 3195 pfc_en = 0; 3196 3197 /* DCB in VT mode */ 3198 if (!strncmp(res->vt_en, "on", 2)) 3199 ret = init_port_dcb_config(port_id, DCB_VT_ENABLED, 3200 (enum rte_eth_nb_tcs)res->num_tcs, 3201 pfc_en); 3202 else 3203 ret = init_port_dcb_config(port_id, DCB_ENABLED, 3204 (enum rte_eth_nb_tcs)res->num_tcs, 3205 pfc_en); 3206 3207 3208 if (ret != 0) { 3209 printf("Cannot initialize network ports.\n"); 3210 return; 3211 } 3212 3213 cmd_reconfig_device_queue(port_id, 1, 1); 3214 } 3215 3216 cmdline_parse_token_string_t cmd_config_dcb_port = 3217 TOKEN_STRING_INITIALIZER(struct cmd_config_dcb, port, "port"); 3218 cmdline_parse_token_string_t cmd_config_dcb_config = 3219 TOKEN_STRING_INITIALIZER(struct cmd_config_dcb, config, "config"); 3220 cmdline_parse_token_num_t cmd_config_dcb_port_id = 3221 TOKEN_NUM_INITIALIZER(struct cmd_config_dcb, port_id, RTE_UINT16); 3222 cmdline_parse_token_string_t cmd_config_dcb_dcb = 3223 TOKEN_STRING_INITIALIZER(struct cmd_config_dcb, dcb, "dcb"); 3224 cmdline_parse_token_string_t cmd_config_dcb_vt = 3225 TOKEN_STRING_INITIALIZER(struct cmd_config_dcb, vt, "vt"); 3226 cmdline_parse_token_string_t cmd_config_dcb_vt_en = 3227 TOKEN_STRING_INITIALIZER(struct cmd_config_dcb, vt_en, "on#off"); 3228 cmdline_parse_token_num_t cmd_config_dcb_num_tcs = 3229 TOKEN_NUM_INITIALIZER(struct cmd_config_dcb, num_tcs, RTE_UINT8); 3230 cmdline_parse_token_string_t cmd_config_dcb_pfc= 3231 TOKEN_STRING_INITIALIZER(struct cmd_config_dcb, pfc, "pfc"); 3232 cmdline_parse_token_string_t cmd_config_dcb_pfc_en = 3233 TOKEN_STRING_INITIALIZER(struct cmd_config_dcb, pfc_en, "on#off"); 3234 3235 cmdline_parse_inst_t cmd_config_dcb = { 3236 .f = cmd_config_dcb_parsed, 3237 .data = NULL, 3238 .help_str = "port config <port-id> dcb vt on|off <num_tcs> pfc on|off", 3239 .tokens = { 3240 (void *)&cmd_config_dcb_port, 3241 (void *)&cmd_config_dcb_config, 3242 (void *)&cmd_config_dcb_port_id, 3243 (void *)&cmd_config_dcb_dcb, 3244 (void *)&cmd_config_dcb_vt, 3245 (void *)&cmd_config_dcb_vt_en, 3246 (void *)&cmd_config_dcb_num_tcs, 3247 (void *)&cmd_config_dcb_pfc, 3248 (void *)&cmd_config_dcb_pfc_en, 3249 NULL, 3250 }, 3251 }; 3252 3253 /* *** configure number of packets per burst *** */ 3254 struct cmd_config_burst { 3255 cmdline_fixed_string_t port; 3256 cmdline_fixed_string_t keyword; 3257 cmdline_fixed_string_t all; 3258 cmdline_fixed_string_t name; 3259 uint16_t value; 3260 }; 3261 3262 static void 3263 cmd_config_burst_parsed(void *parsed_result, 3264 __rte_unused struct cmdline *cl, 3265 __rte_unused void *data) 3266 { 3267 struct cmd_config_burst *res = parsed_result; 3268 struct rte_eth_dev_info dev_info; 3269 uint16_t rec_nb_pkts; 3270 int ret; 3271 3272 if (!all_ports_stopped()) { 3273 printf("Please stop all ports first\n"); 3274 return; 3275 } 3276 3277 if (!strcmp(res->name, "burst")) { 3278 if (res->value == 0) { 3279 /* If user gives a value of zero, query the PMD for 3280 * its recommended Rx burst size. Testpmd uses a single 3281 * size for all ports, so assume all ports are the same 3282 * NIC model and use the values from Port 0. 3283 */ 3284 ret = eth_dev_info_get_print_err(0, &dev_info); 3285 if (ret != 0) 3286 return; 3287 3288 rec_nb_pkts = dev_info.default_rxportconf.burst_size; 3289 3290 if (rec_nb_pkts == 0) { 3291 printf("PMD does not recommend a burst size.\n" 3292 "User provided value must be between" 3293 " 1 and %d\n", MAX_PKT_BURST); 3294 return; 3295 } else if (rec_nb_pkts > MAX_PKT_BURST) { 3296 printf("PMD recommended burst size of %d" 3297 " exceeds maximum value of %d\n", 3298 rec_nb_pkts, MAX_PKT_BURST); 3299 return; 3300 } 3301 printf("Using PMD-provided burst value of %d\n", 3302 rec_nb_pkts); 3303 nb_pkt_per_burst = rec_nb_pkts; 3304 } else if (res->value > MAX_PKT_BURST) { 3305 printf("burst must be >= 1 && <= %d\n", MAX_PKT_BURST); 3306 return; 3307 } else 3308 nb_pkt_per_burst = res->value; 3309 } else { 3310 printf("Unknown parameter\n"); 3311 return; 3312 } 3313 3314 init_port_config(); 3315 3316 cmd_reconfig_device_queue(RTE_PORT_ALL, 1, 1); 3317 } 3318 3319 cmdline_parse_token_string_t cmd_config_burst_port = 3320 TOKEN_STRING_INITIALIZER(struct cmd_config_burst, port, "port"); 3321 cmdline_parse_token_string_t cmd_config_burst_keyword = 3322 TOKEN_STRING_INITIALIZER(struct cmd_config_burst, keyword, "config"); 3323 cmdline_parse_token_string_t cmd_config_burst_all = 3324 TOKEN_STRING_INITIALIZER(struct cmd_config_burst, all, "all"); 3325 cmdline_parse_token_string_t cmd_config_burst_name = 3326 TOKEN_STRING_INITIALIZER(struct cmd_config_burst, name, "burst"); 3327 cmdline_parse_token_num_t cmd_config_burst_value = 3328 TOKEN_NUM_INITIALIZER(struct cmd_config_burst, value, RTE_UINT16); 3329 3330 cmdline_parse_inst_t cmd_config_burst = { 3331 .f = cmd_config_burst_parsed, 3332 .data = NULL, 3333 .help_str = "port config all burst <value>", 3334 .tokens = { 3335 (void *)&cmd_config_burst_port, 3336 (void *)&cmd_config_burst_keyword, 3337 (void *)&cmd_config_burst_all, 3338 (void *)&cmd_config_burst_name, 3339 (void *)&cmd_config_burst_value, 3340 NULL, 3341 }, 3342 }; 3343 3344 /* *** configure rx/tx queues *** */ 3345 struct cmd_config_thresh { 3346 cmdline_fixed_string_t port; 3347 cmdline_fixed_string_t keyword; 3348 cmdline_fixed_string_t all; 3349 cmdline_fixed_string_t name; 3350 uint8_t value; 3351 }; 3352 3353 static void 3354 cmd_config_thresh_parsed(void *parsed_result, 3355 __rte_unused struct cmdline *cl, 3356 __rte_unused void *data) 3357 { 3358 struct cmd_config_thresh *res = parsed_result; 3359 3360 if (!all_ports_stopped()) { 3361 printf("Please stop all ports first\n"); 3362 return; 3363 } 3364 3365 if (!strcmp(res->name, "txpt")) 3366 tx_pthresh = res->value; 3367 else if(!strcmp(res->name, "txht")) 3368 tx_hthresh = res->value; 3369 else if(!strcmp(res->name, "txwt")) 3370 tx_wthresh = res->value; 3371 else if(!strcmp(res->name, "rxpt")) 3372 rx_pthresh = res->value; 3373 else if(!strcmp(res->name, "rxht")) 3374 rx_hthresh = res->value; 3375 else if(!strcmp(res->name, "rxwt")) 3376 rx_wthresh = res->value; 3377 else { 3378 printf("Unknown parameter\n"); 3379 return; 3380 } 3381 3382 init_port_config(); 3383 3384 cmd_reconfig_device_queue(RTE_PORT_ALL, 1, 1); 3385 } 3386 3387 cmdline_parse_token_string_t cmd_config_thresh_port = 3388 TOKEN_STRING_INITIALIZER(struct cmd_config_thresh, port, "port"); 3389 cmdline_parse_token_string_t cmd_config_thresh_keyword = 3390 TOKEN_STRING_INITIALIZER(struct cmd_config_thresh, keyword, "config"); 3391 cmdline_parse_token_string_t cmd_config_thresh_all = 3392 TOKEN_STRING_INITIALIZER(struct cmd_config_thresh, all, "all"); 3393 cmdline_parse_token_string_t cmd_config_thresh_name = 3394 TOKEN_STRING_INITIALIZER(struct cmd_config_thresh, name, 3395 "txpt#txht#txwt#rxpt#rxht#rxwt"); 3396 cmdline_parse_token_num_t cmd_config_thresh_value = 3397 TOKEN_NUM_INITIALIZER(struct cmd_config_thresh, value, RTE_UINT8); 3398 3399 cmdline_parse_inst_t cmd_config_thresh = { 3400 .f = cmd_config_thresh_parsed, 3401 .data = NULL, 3402 .help_str = "port config all txpt|txht|txwt|rxpt|rxht|rxwt <value>", 3403 .tokens = { 3404 (void *)&cmd_config_thresh_port, 3405 (void *)&cmd_config_thresh_keyword, 3406 (void *)&cmd_config_thresh_all, 3407 (void *)&cmd_config_thresh_name, 3408 (void *)&cmd_config_thresh_value, 3409 NULL, 3410 }, 3411 }; 3412 3413 /* *** configure free/rs threshold *** */ 3414 struct cmd_config_threshold { 3415 cmdline_fixed_string_t port; 3416 cmdline_fixed_string_t keyword; 3417 cmdline_fixed_string_t all; 3418 cmdline_fixed_string_t name; 3419 uint16_t value; 3420 }; 3421 3422 static void 3423 cmd_config_threshold_parsed(void *parsed_result, 3424 __rte_unused struct cmdline *cl, 3425 __rte_unused void *data) 3426 { 3427 struct cmd_config_threshold *res = parsed_result; 3428 3429 if (!all_ports_stopped()) { 3430 printf("Please stop all ports first\n"); 3431 return; 3432 } 3433 3434 if (!strcmp(res->name, "txfreet")) 3435 tx_free_thresh = res->value; 3436 else if (!strcmp(res->name, "txrst")) 3437 tx_rs_thresh = res->value; 3438 else if (!strcmp(res->name, "rxfreet")) 3439 rx_free_thresh = res->value; 3440 else { 3441 printf("Unknown parameter\n"); 3442 return; 3443 } 3444 3445 init_port_config(); 3446 3447 cmd_reconfig_device_queue(RTE_PORT_ALL, 1, 1); 3448 } 3449 3450 cmdline_parse_token_string_t cmd_config_threshold_port = 3451 TOKEN_STRING_INITIALIZER(struct cmd_config_threshold, port, "port"); 3452 cmdline_parse_token_string_t cmd_config_threshold_keyword = 3453 TOKEN_STRING_INITIALIZER(struct cmd_config_threshold, keyword, 3454 "config"); 3455 cmdline_parse_token_string_t cmd_config_threshold_all = 3456 TOKEN_STRING_INITIALIZER(struct cmd_config_threshold, all, "all"); 3457 cmdline_parse_token_string_t cmd_config_threshold_name = 3458 TOKEN_STRING_INITIALIZER(struct cmd_config_threshold, name, 3459 "txfreet#txrst#rxfreet"); 3460 cmdline_parse_token_num_t cmd_config_threshold_value = 3461 TOKEN_NUM_INITIALIZER(struct cmd_config_threshold, value, RTE_UINT16); 3462 3463 cmdline_parse_inst_t cmd_config_threshold = { 3464 .f = cmd_config_threshold_parsed, 3465 .data = NULL, 3466 .help_str = "port config all txfreet|txrst|rxfreet <value>", 3467 .tokens = { 3468 (void *)&cmd_config_threshold_port, 3469 (void *)&cmd_config_threshold_keyword, 3470 (void *)&cmd_config_threshold_all, 3471 (void *)&cmd_config_threshold_name, 3472 (void *)&cmd_config_threshold_value, 3473 NULL, 3474 }, 3475 }; 3476 3477 /* *** stop *** */ 3478 struct cmd_stop_result { 3479 cmdline_fixed_string_t stop; 3480 }; 3481 3482 static void cmd_stop_parsed(__rte_unused void *parsed_result, 3483 __rte_unused struct cmdline *cl, 3484 __rte_unused void *data) 3485 { 3486 stop_packet_forwarding(); 3487 } 3488 3489 cmdline_parse_token_string_t cmd_stop_stop = 3490 TOKEN_STRING_INITIALIZER(struct cmd_stop_result, stop, "stop"); 3491 3492 cmdline_parse_inst_t cmd_stop = { 3493 .f = cmd_stop_parsed, 3494 .data = NULL, 3495 .help_str = "stop: Stop packet forwarding", 3496 .tokens = { 3497 (void *)&cmd_stop_stop, 3498 NULL, 3499 }, 3500 }; 3501 3502 /* *** SET CORELIST and PORTLIST CONFIGURATION *** */ 3503 3504 unsigned int 3505 parse_item_list(char* str, const char* item_name, unsigned int max_items, 3506 unsigned int *parsed_items, int check_unique_values) 3507 { 3508 unsigned int nb_item; 3509 unsigned int value; 3510 unsigned int i; 3511 unsigned int j; 3512 int value_ok; 3513 char c; 3514 3515 /* 3516 * First parse all items in the list and store their value. 3517 */ 3518 value = 0; 3519 nb_item = 0; 3520 value_ok = 0; 3521 for (i = 0; i < strnlen(str, STR_TOKEN_SIZE); i++) { 3522 c = str[i]; 3523 if ((c >= '0') && (c <= '9')) { 3524 value = (unsigned int) (value * 10 + (c - '0')); 3525 value_ok = 1; 3526 continue; 3527 } 3528 if (c != ',') { 3529 printf("character %c is not a decimal digit\n", c); 3530 return 0; 3531 } 3532 if (! value_ok) { 3533 printf("No valid value before comma\n"); 3534 return 0; 3535 } 3536 if (nb_item < max_items) { 3537 parsed_items[nb_item] = value; 3538 value_ok = 0; 3539 value = 0; 3540 } 3541 nb_item++; 3542 } 3543 if (nb_item >= max_items) { 3544 printf("Number of %s = %u > %u (maximum items)\n", 3545 item_name, nb_item + 1, max_items); 3546 return 0; 3547 } 3548 parsed_items[nb_item++] = value; 3549 if (! check_unique_values) 3550 return nb_item; 3551 3552 /* 3553 * Then, check that all values in the list are differents. 3554 * No optimization here... 3555 */ 3556 for (i = 0; i < nb_item; i++) { 3557 for (j = i + 1; j < nb_item; j++) { 3558 if (parsed_items[j] == parsed_items[i]) { 3559 printf("duplicated %s %u at index %u and %u\n", 3560 item_name, parsed_items[i], i, j); 3561 return 0; 3562 } 3563 } 3564 } 3565 return nb_item; 3566 } 3567 3568 struct cmd_set_list_result { 3569 cmdline_fixed_string_t cmd_keyword; 3570 cmdline_fixed_string_t list_name; 3571 cmdline_fixed_string_t list_of_items; 3572 }; 3573 3574 static void cmd_set_list_parsed(void *parsed_result, 3575 __rte_unused struct cmdline *cl, 3576 __rte_unused void *data) 3577 { 3578 struct cmd_set_list_result *res; 3579 union { 3580 unsigned int lcorelist[RTE_MAX_LCORE]; 3581 unsigned int portlist[RTE_MAX_ETHPORTS]; 3582 } parsed_items; 3583 unsigned int nb_item; 3584 3585 if (test_done == 0) { 3586 printf("Please stop forwarding first\n"); 3587 return; 3588 } 3589 3590 res = parsed_result; 3591 if (!strcmp(res->list_name, "corelist")) { 3592 nb_item = parse_item_list(res->list_of_items, "core", 3593 RTE_MAX_LCORE, 3594 parsed_items.lcorelist, 1); 3595 if (nb_item > 0) { 3596 set_fwd_lcores_list(parsed_items.lcorelist, nb_item); 3597 fwd_config_setup(); 3598 } 3599 return; 3600 } 3601 if (!strcmp(res->list_name, "portlist")) { 3602 nb_item = parse_item_list(res->list_of_items, "port", 3603 RTE_MAX_ETHPORTS, 3604 parsed_items.portlist, 1); 3605 if (nb_item > 0) { 3606 set_fwd_ports_list(parsed_items.portlist, nb_item); 3607 fwd_config_setup(); 3608 } 3609 } 3610 } 3611 3612 cmdline_parse_token_string_t cmd_set_list_keyword = 3613 TOKEN_STRING_INITIALIZER(struct cmd_set_list_result, cmd_keyword, 3614 "set"); 3615 cmdline_parse_token_string_t cmd_set_list_name = 3616 TOKEN_STRING_INITIALIZER(struct cmd_set_list_result, list_name, 3617 "corelist#portlist"); 3618 cmdline_parse_token_string_t cmd_set_list_of_items = 3619 TOKEN_STRING_INITIALIZER(struct cmd_set_list_result, list_of_items, 3620 NULL); 3621 3622 cmdline_parse_inst_t cmd_set_fwd_list = { 3623 .f = cmd_set_list_parsed, 3624 .data = NULL, 3625 .help_str = "set corelist|portlist <list0[,list1]*>", 3626 .tokens = { 3627 (void *)&cmd_set_list_keyword, 3628 (void *)&cmd_set_list_name, 3629 (void *)&cmd_set_list_of_items, 3630 NULL, 3631 }, 3632 }; 3633 3634 /* *** SET COREMASK and PORTMASK CONFIGURATION *** */ 3635 3636 struct cmd_setmask_result { 3637 cmdline_fixed_string_t set; 3638 cmdline_fixed_string_t mask; 3639 uint64_t hexavalue; 3640 }; 3641 3642 static void cmd_set_mask_parsed(void *parsed_result, 3643 __rte_unused struct cmdline *cl, 3644 __rte_unused void *data) 3645 { 3646 struct cmd_setmask_result *res = parsed_result; 3647 3648 if (test_done == 0) { 3649 printf("Please stop forwarding first\n"); 3650 return; 3651 } 3652 if (!strcmp(res->mask, "coremask")) { 3653 set_fwd_lcores_mask(res->hexavalue); 3654 fwd_config_setup(); 3655 } else if (!strcmp(res->mask, "portmask")) { 3656 set_fwd_ports_mask(res->hexavalue); 3657 fwd_config_setup(); 3658 } 3659 } 3660 3661 cmdline_parse_token_string_t cmd_setmask_set = 3662 TOKEN_STRING_INITIALIZER(struct cmd_setmask_result, set, "set"); 3663 cmdline_parse_token_string_t cmd_setmask_mask = 3664 TOKEN_STRING_INITIALIZER(struct cmd_setmask_result, mask, 3665 "coremask#portmask"); 3666 cmdline_parse_token_num_t cmd_setmask_value = 3667 TOKEN_NUM_INITIALIZER(struct cmd_setmask_result, hexavalue, RTE_UINT64); 3668 3669 cmdline_parse_inst_t cmd_set_fwd_mask = { 3670 .f = cmd_set_mask_parsed, 3671 .data = NULL, 3672 .help_str = "set coremask|portmask <hexadecimal value>", 3673 .tokens = { 3674 (void *)&cmd_setmask_set, 3675 (void *)&cmd_setmask_mask, 3676 (void *)&cmd_setmask_value, 3677 NULL, 3678 }, 3679 }; 3680 3681 /* 3682 * SET NBPORT, NBCORE, PACKET BURST, and VERBOSE LEVEL CONFIGURATION 3683 */ 3684 struct cmd_set_result { 3685 cmdline_fixed_string_t set; 3686 cmdline_fixed_string_t what; 3687 uint16_t value; 3688 }; 3689 3690 static void cmd_set_parsed(void *parsed_result, 3691 __rte_unused struct cmdline *cl, 3692 __rte_unused void *data) 3693 { 3694 struct cmd_set_result *res = parsed_result; 3695 if (!strcmp(res->what, "nbport")) { 3696 set_fwd_ports_number(res->value); 3697 fwd_config_setup(); 3698 } else if (!strcmp(res->what, "nbcore")) { 3699 set_fwd_lcores_number(res->value); 3700 fwd_config_setup(); 3701 } else if (!strcmp(res->what, "burst")) 3702 set_nb_pkt_per_burst(res->value); 3703 else if (!strcmp(res->what, "verbose")) 3704 set_verbose_level(res->value); 3705 } 3706 3707 cmdline_parse_token_string_t cmd_set_set = 3708 TOKEN_STRING_INITIALIZER(struct cmd_set_result, set, "set"); 3709 cmdline_parse_token_string_t cmd_set_what = 3710 TOKEN_STRING_INITIALIZER(struct cmd_set_result, what, 3711 "nbport#nbcore#burst#verbose"); 3712 cmdline_parse_token_num_t cmd_set_value = 3713 TOKEN_NUM_INITIALIZER(struct cmd_set_result, value, RTE_UINT16); 3714 3715 cmdline_parse_inst_t cmd_set_numbers = { 3716 .f = cmd_set_parsed, 3717 .data = NULL, 3718 .help_str = "set nbport|nbcore|burst|verbose <value>", 3719 .tokens = { 3720 (void *)&cmd_set_set, 3721 (void *)&cmd_set_what, 3722 (void *)&cmd_set_value, 3723 NULL, 3724 }, 3725 }; 3726 3727 /* *** SET LOG LEVEL CONFIGURATION *** */ 3728 3729 struct cmd_set_log_result { 3730 cmdline_fixed_string_t set; 3731 cmdline_fixed_string_t log; 3732 cmdline_fixed_string_t type; 3733 uint32_t level; 3734 }; 3735 3736 static void 3737 cmd_set_log_parsed(void *parsed_result, 3738 __rte_unused struct cmdline *cl, 3739 __rte_unused void *data) 3740 { 3741 struct cmd_set_log_result *res; 3742 int ret; 3743 3744 res = parsed_result; 3745 if (!strcmp(res->type, "global")) 3746 rte_log_set_global_level(res->level); 3747 else { 3748 ret = rte_log_set_level_regexp(res->type, res->level); 3749 if (ret < 0) 3750 printf("Unable to set log level\n"); 3751 } 3752 } 3753 3754 cmdline_parse_token_string_t cmd_set_log_set = 3755 TOKEN_STRING_INITIALIZER(struct cmd_set_log_result, set, "set"); 3756 cmdline_parse_token_string_t cmd_set_log_log = 3757 TOKEN_STRING_INITIALIZER(struct cmd_set_log_result, log, "log"); 3758 cmdline_parse_token_string_t cmd_set_log_type = 3759 TOKEN_STRING_INITIALIZER(struct cmd_set_log_result, type, NULL); 3760 cmdline_parse_token_num_t cmd_set_log_level = 3761 TOKEN_NUM_INITIALIZER(struct cmd_set_log_result, level, RTE_UINT32); 3762 3763 cmdline_parse_inst_t cmd_set_log = { 3764 .f = cmd_set_log_parsed, 3765 .data = NULL, 3766 .help_str = "set log global|<type> <level>", 3767 .tokens = { 3768 (void *)&cmd_set_log_set, 3769 (void *)&cmd_set_log_log, 3770 (void *)&cmd_set_log_type, 3771 (void *)&cmd_set_log_level, 3772 NULL, 3773 }, 3774 }; 3775 3776 /* *** SET SEGMENT OFFSETS OF RX PACKETS SPLIT *** */ 3777 3778 struct cmd_set_rxoffs_result { 3779 cmdline_fixed_string_t cmd_keyword; 3780 cmdline_fixed_string_t rxoffs; 3781 cmdline_fixed_string_t seg_offsets; 3782 }; 3783 3784 static void 3785 cmd_set_rxoffs_parsed(void *parsed_result, 3786 __rte_unused struct cmdline *cl, 3787 __rte_unused void *data) 3788 { 3789 struct cmd_set_rxoffs_result *res; 3790 unsigned int seg_offsets[MAX_SEGS_BUFFER_SPLIT]; 3791 unsigned int nb_segs; 3792 3793 res = parsed_result; 3794 nb_segs = parse_item_list(res->seg_offsets, "segment offsets", 3795 MAX_SEGS_BUFFER_SPLIT, seg_offsets, 0); 3796 if (nb_segs > 0) 3797 set_rx_pkt_offsets(seg_offsets, nb_segs); 3798 cmd_reconfig_device_queue(RTE_PORT_ALL, 0, 1); 3799 } 3800 3801 cmdline_parse_token_string_t cmd_set_rxoffs_keyword = 3802 TOKEN_STRING_INITIALIZER(struct cmd_set_rxoffs_result, 3803 cmd_keyword, "set"); 3804 cmdline_parse_token_string_t cmd_set_rxoffs_name = 3805 TOKEN_STRING_INITIALIZER(struct cmd_set_rxoffs_result, 3806 rxoffs, "rxoffs"); 3807 cmdline_parse_token_string_t cmd_set_rxoffs_offsets = 3808 TOKEN_STRING_INITIALIZER(struct cmd_set_rxoffs_result, 3809 seg_offsets, NULL); 3810 3811 cmdline_parse_inst_t cmd_set_rxoffs = { 3812 .f = cmd_set_rxoffs_parsed, 3813 .data = NULL, 3814 .help_str = "set rxoffs <len0[,len1]*>", 3815 .tokens = { 3816 (void *)&cmd_set_rxoffs_keyword, 3817 (void *)&cmd_set_rxoffs_name, 3818 (void *)&cmd_set_rxoffs_offsets, 3819 NULL, 3820 }, 3821 }; 3822 3823 /* *** SET SEGMENT LENGTHS OF RX PACKETS SPLIT *** */ 3824 3825 struct cmd_set_rxpkts_result { 3826 cmdline_fixed_string_t cmd_keyword; 3827 cmdline_fixed_string_t rxpkts; 3828 cmdline_fixed_string_t seg_lengths; 3829 }; 3830 3831 static void 3832 cmd_set_rxpkts_parsed(void *parsed_result, 3833 __rte_unused struct cmdline *cl, 3834 __rte_unused void *data) 3835 { 3836 struct cmd_set_rxpkts_result *res; 3837 unsigned int seg_lengths[MAX_SEGS_BUFFER_SPLIT]; 3838 unsigned int nb_segs; 3839 3840 res = parsed_result; 3841 nb_segs = parse_item_list(res->seg_lengths, "segment lengths", 3842 MAX_SEGS_BUFFER_SPLIT, seg_lengths, 0); 3843 if (nb_segs > 0) 3844 set_rx_pkt_segments(seg_lengths, nb_segs); 3845 cmd_reconfig_device_queue(RTE_PORT_ALL, 0, 1); 3846 } 3847 3848 cmdline_parse_token_string_t cmd_set_rxpkts_keyword = 3849 TOKEN_STRING_INITIALIZER(struct cmd_set_rxpkts_result, 3850 cmd_keyword, "set"); 3851 cmdline_parse_token_string_t cmd_set_rxpkts_name = 3852 TOKEN_STRING_INITIALIZER(struct cmd_set_rxpkts_result, 3853 rxpkts, "rxpkts"); 3854 cmdline_parse_token_string_t cmd_set_rxpkts_lengths = 3855 TOKEN_STRING_INITIALIZER(struct cmd_set_rxpkts_result, 3856 seg_lengths, NULL); 3857 3858 cmdline_parse_inst_t cmd_set_rxpkts = { 3859 .f = cmd_set_rxpkts_parsed, 3860 .data = NULL, 3861 .help_str = "set rxpkts <len0[,len1]*>", 3862 .tokens = { 3863 (void *)&cmd_set_rxpkts_keyword, 3864 (void *)&cmd_set_rxpkts_name, 3865 (void *)&cmd_set_rxpkts_lengths, 3866 NULL, 3867 }, 3868 }; 3869 3870 /* *** SET SEGMENT LENGTHS OF TXONLY PACKETS *** */ 3871 3872 struct cmd_set_txpkts_result { 3873 cmdline_fixed_string_t cmd_keyword; 3874 cmdline_fixed_string_t txpkts; 3875 cmdline_fixed_string_t seg_lengths; 3876 }; 3877 3878 static void 3879 cmd_set_txpkts_parsed(void *parsed_result, 3880 __rte_unused struct cmdline *cl, 3881 __rte_unused void *data) 3882 { 3883 struct cmd_set_txpkts_result *res; 3884 unsigned seg_lengths[RTE_MAX_SEGS_PER_PKT]; 3885 unsigned int nb_segs; 3886 3887 res = parsed_result; 3888 nb_segs = parse_item_list(res->seg_lengths, "segment lengths", 3889 RTE_MAX_SEGS_PER_PKT, seg_lengths, 0); 3890 if (nb_segs > 0) 3891 set_tx_pkt_segments(seg_lengths, nb_segs); 3892 } 3893 3894 cmdline_parse_token_string_t cmd_set_txpkts_keyword = 3895 TOKEN_STRING_INITIALIZER(struct cmd_set_txpkts_result, 3896 cmd_keyword, "set"); 3897 cmdline_parse_token_string_t cmd_set_txpkts_name = 3898 TOKEN_STRING_INITIALIZER(struct cmd_set_txpkts_result, 3899 txpkts, "txpkts"); 3900 cmdline_parse_token_string_t cmd_set_txpkts_lengths = 3901 TOKEN_STRING_INITIALIZER(struct cmd_set_txpkts_result, 3902 seg_lengths, NULL); 3903 3904 cmdline_parse_inst_t cmd_set_txpkts = { 3905 .f = cmd_set_txpkts_parsed, 3906 .data = NULL, 3907 .help_str = "set txpkts <len0[,len1]*>", 3908 .tokens = { 3909 (void *)&cmd_set_txpkts_keyword, 3910 (void *)&cmd_set_txpkts_name, 3911 (void *)&cmd_set_txpkts_lengths, 3912 NULL, 3913 }, 3914 }; 3915 3916 /* *** SET COPY AND SPLIT POLICY ON TX PACKETS *** */ 3917 3918 struct cmd_set_txsplit_result { 3919 cmdline_fixed_string_t cmd_keyword; 3920 cmdline_fixed_string_t txsplit; 3921 cmdline_fixed_string_t mode; 3922 }; 3923 3924 static void 3925 cmd_set_txsplit_parsed(void *parsed_result, 3926 __rte_unused struct cmdline *cl, 3927 __rte_unused void *data) 3928 { 3929 struct cmd_set_txsplit_result *res; 3930 3931 res = parsed_result; 3932 set_tx_pkt_split(res->mode); 3933 } 3934 3935 cmdline_parse_token_string_t cmd_set_txsplit_keyword = 3936 TOKEN_STRING_INITIALIZER(struct cmd_set_txsplit_result, 3937 cmd_keyword, "set"); 3938 cmdline_parse_token_string_t cmd_set_txsplit_name = 3939 TOKEN_STRING_INITIALIZER(struct cmd_set_txsplit_result, 3940 txsplit, "txsplit"); 3941 cmdline_parse_token_string_t cmd_set_txsplit_mode = 3942 TOKEN_STRING_INITIALIZER(struct cmd_set_txsplit_result, 3943 mode, NULL); 3944 3945 cmdline_parse_inst_t cmd_set_txsplit = { 3946 .f = cmd_set_txsplit_parsed, 3947 .data = NULL, 3948 .help_str = "set txsplit on|off|rand", 3949 .tokens = { 3950 (void *)&cmd_set_txsplit_keyword, 3951 (void *)&cmd_set_txsplit_name, 3952 (void *)&cmd_set_txsplit_mode, 3953 NULL, 3954 }, 3955 }; 3956 3957 /* *** SET TIMES FOR TXONLY PACKETS SCHEDULING ON TIMESTAMPS *** */ 3958 3959 struct cmd_set_txtimes_result { 3960 cmdline_fixed_string_t cmd_keyword; 3961 cmdline_fixed_string_t txtimes; 3962 cmdline_fixed_string_t tx_times; 3963 }; 3964 3965 static void 3966 cmd_set_txtimes_parsed(void *parsed_result, 3967 __rte_unused struct cmdline *cl, 3968 __rte_unused void *data) 3969 { 3970 struct cmd_set_txtimes_result *res; 3971 unsigned int tx_times[2] = {0, 0}; 3972 unsigned int n_times; 3973 3974 res = parsed_result; 3975 n_times = parse_item_list(res->tx_times, "tx times", 3976 2, tx_times, 0); 3977 if (n_times == 2) 3978 set_tx_pkt_times(tx_times); 3979 } 3980 3981 cmdline_parse_token_string_t cmd_set_txtimes_keyword = 3982 TOKEN_STRING_INITIALIZER(struct cmd_set_txtimes_result, 3983 cmd_keyword, "set"); 3984 cmdline_parse_token_string_t cmd_set_txtimes_name = 3985 TOKEN_STRING_INITIALIZER(struct cmd_set_txtimes_result, 3986 txtimes, "txtimes"); 3987 cmdline_parse_token_string_t cmd_set_txtimes_value = 3988 TOKEN_STRING_INITIALIZER(struct cmd_set_txtimes_result, 3989 tx_times, NULL); 3990 3991 cmdline_parse_inst_t cmd_set_txtimes = { 3992 .f = cmd_set_txtimes_parsed, 3993 .data = NULL, 3994 .help_str = "set txtimes <inter_burst>,<intra_burst>", 3995 .tokens = { 3996 (void *)&cmd_set_txtimes_keyword, 3997 (void *)&cmd_set_txtimes_name, 3998 (void *)&cmd_set_txtimes_value, 3999 NULL, 4000 }, 4001 }; 4002 4003 /* *** ADD/REMOVE ALL VLAN IDENTIFIERS TO/FROM A PORT VLAN RX FILTER *** */ 4004 struct cmd_rx_vlan_filter_all_result { 4005 cmdline_fixed_string_t rx_vlan; 4006 cmdline_fixed_string_t what; 4007 cmdline_fixed_string_t all; 4008 portid_t port_id; 4009 }; 4010 4011 static void 4012 cmd_rx_vlan_filter_all_parsed(void *parsed_result, 4013 __rte_unused struct cmdline *cl, 4014 __rte_unused void *data) 4015 { 4016 struct cmd_rx_vlan_filter_all_result *res = parsed_result; 4017 4018 if (!strcmp(res->what, "add")) 4019 rx_vlan_all_filter_set(res->port_id, 1); 4020 else 4021 rx_vlan_all_filter_set(res->port_id, 0); 4022 } 4023 4024 cmdline_parse_token_string_t cmd_rx_vlan_filter_all_rx_vlan = 4025 TOKEN_STRING_INITIALIZER(struct cmd_rx_vlan_filter_all_result, 4026 rx_vlan, "rx_vlan"); 4027 cmdline_parse_token_string_t cmd_rx_vlan_filter_all_what = 4028 TOKEN_STRING_INITIALIZER(struct cmd_rx_vlan_filter_all_result, 4029 what, "add#rm"); 4030 cmdline_parse_token_string_t cmd_rx_vlan_filter_all_all = 4031 TOKEN_STRING_INITIALIZER(struct cmd_rx_vlan_filter_all_result, 4032 all, "all"); 4033 cmdline_parse_token_num_t cmd_rx_vlan_filter_all_portid = 4034 TOKEN_NUM_INITIALIZER(struct cmd_rx_vlan_filter_all_result, 4035 port_id, RTE_UINT16); 4036 4037 cmdline_parse_inst_t cmd_rx_vlan_filter_all = { 4038 .f = cmd_rx_vlan_filter_all_parsed, 4039 .data = NULL, 4040 .help_str = "rx_vlan add|rm all <port_id>: " 4041 "Add/Remove all identifiers to/from the set of VLAN " 4042 "identifiers filtered by a port", 4043 .tokens = { 4044 (void *)&cmd_rx_vlan_filter_all_rx_vlan, 4045 (void *)&cmd_rx_vlan_filter_all_what, 4046 (void *)&cmd_rx_vlan_filter_all_all, 4047 (void *)&cmd_rx_vlan_filter_all_portid, 4048 NULL, 4049 }, 4050 }; 4051 4052 /* *** VLAN OFFLOAD SET ON A PORT *** */ 4053 struct cmd_vlan_offload_result { 4054 cmdline_fixed_string_t vlan; 4055 cmdline_fixed_string_t set; 4056 cmdline_fixed_string_t vlan_type; 4057 cmdline_fixed_string_t what; 4058 cmdline_fixed_string_t on; 4059 cmdline_fixed_string_t port_id; 4060 }; 4061 4062 static void 4063 cmd_vlan_offload_parsed(void *parsed_result, 4064 __rte_unused struct cmdline *cl, 4065 __rte_unused void *data) 4066 { 4067 int on; 4068 struct cmd_vlan_offload_result *res = parsed_result; 4069 char *str; 4070 int i, len = 0; 4071 portid_t port_id = 0; 4072 unsigned int tmp; 4073 4074 str = res->port_id; 4075 len = strnlen(str, STR_TOKEN_SIZE); 4076 i = 0; 4077 /* Get port_id first */ 4078 while(i < len){ 4079 if(str[i] == ',') 4080 break; 4081 4082 i++; 4083 } 4084 str[i]='\0'; 4085 tmp = strtoul(str, NULL, 0); 4086 /* If port_id greater that what portid_t can represent, return */ 4087 if(tmp >= RTE_MAX_ETHPORTS) 4088 return; 4089 port_id = (portid_t)tmp; 4090 4091 if (!strcmp(res->on, "on")) 4092 on = 1; 4093 else 4094 on = 0; 4095 4096 if (!strcmp(res->what, "strip")) 4097 rx_vlan_strip_set(port_id, on); 4098 else if(!strcmp(res->what, "stripq")){ 4099 uint16_t queue_id = 0; 4100 4101 /* No queue_id, return */ 4102 if(i + 1 >= len) { 4103 printf("must specify (port,queue_id)\n"); 4104 return; 4105 } 4106 tmp = strtoul(str + i + 1, NULL, 0); 4107 /* If queue_id greater that what 16-bits can represent, return */ 4108 if(tmp > 0xffff) 4109 return; 4110 4111 queue_id = (uint16_t)tmp; 4112 rx_vlan_strip_set_on_queue(port_id, queue_id, on); 4113 } 4114 else if (!strcmp(res->what, "filter")) 4115 rx_vlan_filter_set(port_id, on); 4116 else if (!strcmp(res->what, "qinq_strip")) 4117 rx_vlan_qinq_strip_set(port_id, on); 4118 else 4119 vlan_extend_set(port_id, on); 4120 4121 return; 4122 } 4123 4124 cmdline_parse_token_string_t cmd_vlan_offload_vlan = 4125 TOKEN_STRING_INITIALIZER(struct cmd_vlan_offload_result, 4126 vlan, "vlan"); 4127 cmdline_parse_token_string_t cmd_vlan_offload_set = 4128 TOKEN_STRING_INITIALIZER(struct cmd_vlan_offload_result, 4129 set, "set"); 4130 cmdline_parse_token_string_t cmd_vlan_offload_what = 4131 TOKEN_STRING_INITIALIZER(struct cmd_vlan_offload_result, 4132 what, "strip#filter#qinq_strip#extend#stripq"); 4133 cmdline_parse_token_string_t cmd_vlan_offload_on = 4134 TOKEN_STRING_INITIALIZER(struct cmd_vlan_offload_result, 4135 on, "on#off"); 4136 cmdline_parse_token_string_t cmd_vlan_offload_portid = 4137 TOKEN_STRING_INITIALIZER(struct cmd_vlan_offload_result, 4138 port_id, NULL); 4139 4140 cmdline_parse_inst_t cmd_vlan_offload = { 4141 .f = cmd_vlan_offload_parsed, 4142 .data = NULL, 4143 .help_str = "vlan set strip|filter|qinq_strip|extend|stripq on|off " 4144 "<port_id[,queue_id]>: " 4145 "Strip/Filter/QinQ for rx side Extend for both rx/tx sides", 4146 .tokens = { 4147 (void *)&cmd_vlan_offload_vlan, 4148 (void *)&cmd_vlan_offload_set, 4149 (void *)&cmd_vlan_offload_what, 4150 (void *)&cmd_vlan_offload_on, 4151 (void *)&cmd_vlan_offload_portid, 4152 NULL, 4153 }, 4154 }; 4155 4156 /* *** VLAN TPID SET ON A PORT *** */ 4157 struct cmd_vlan_tpid_result { 4158 cmdline_fixed_string_t vlan; 4159 cmdline_fixed_string_t set; 4160 cmdline_fixed_string_t vlan_type; 4161 cmdline_fixed_string_t what; 4162 uint16_t tp_id; 4163 portid_t port_id; 4164 }; 4165 4166 static void 4167 cmd_vlan_tpid_parsed(void *parsed_result, 4168 __rte_unused struct cmdline *cl, 4169 __rte_unused void *data) 4170 { 4171 struct cmd_vlan_tpid_result *res = parsed_result; 4172 enum rte_vlan_type vlan_type; 4173 4174 if (!strcmp(res->vlan_type, "inner")) 4175 vlan_type = ETH_VLAN_TYPE_INNER; 4176 else if (!strcmp(res->vlan_type, "outer")) 4177 vlan_type = ETH_VLAN_TYPE_OUTER; 4178 else { 4179 printf("Unknown vlan type\n"); 4180 return; 4181 } 4182 vlan_tpid_set(res->port_id, vlan_type, res->tp_id); 4183 } 4184 4185 cmdline_parse_token_string_t cmd_vlan_tpid_vlan = 4186 TOKEN_STRING_INITIALIZER(struct cmd_vlan_tpid_result, 4187 vlan, "vlan"); 4188 cmdline_parse_token_string_t cmd_vlan_tpid_set = 4189 TOKEN_STRING_INITIALIZER(struct cmd_vlan_tpid_result, 4190 set, "set"); 4191 cmdline_parse_token_string_t cmd_vlan_type = 4192 TOKEN_STRING_INITIALIZER(struct cmd_vlan_tpid_result, 4193 vlan_type, "inner#outer"); 4194 cmdline_parse_token_string_t cmd_vlan_tpid_what = 4195 TOKEN_STRING_INITIALIZER(struct cmd_vlan_tpid_result, 4196 what, "tpid"); 4197 cmdline_parse_token_num_t cmd_vlan_tpid_tpid = 4198 TOKEN_NUM_INITIALIZER(struct cmd_vlan_tpid_result, 4199 tp_id, RTE_UINT16); 4200 cmdline_parse_token_num_t cmd_vlan_tpid_portid = 4201 TOKEN_NUM_INITIALIZER(struct cmd_vlan_tpid_result, 4202 port_id, RTE_UINT16); 4203 4204 cmdline_parse_inst_t cmd_vlan_tpid = { 4205 .f = cmd_vlan_tpid_parsed, 4206 .data = NULL, 4207 .help_str = "vlan set inner|outer tpid <tp_id> <port_id>: " 4208 "Set the VLAN Ether type", 4209 .tokens = { 4210 (void *)&cmd_vlan_tpid_vlan, 4211 (void *)&cmd_vlan_tpid_set, 4212 (void *)&cmd_vlan_type, 4213 (void *)&cmd_vlan_tpid_what, 4214 (void *)&cmd_vlan_tpid_tpid, 4215 (void *)&cmd_vlan_tpid_portid, 4216 NULL, 4217 }, 4218 }; 4219 4220 /* *** ADD/REMOVE A VLAN IDENTIFIER TO/FROM A PORT VLAN RX FILTER *** */ 4221 struct cmd_rx_vlan_filter_result { 4222 cmdline_fixed_string_t rx_vlan; 4223 cmdline_fixed_string_t what; 4224 uint16_t vlan_id; 4225 portid_t port_id; 4226 }; 4227 4228 static void 4229 cmd_rx_vlan_filter_parsed(void *parsed_result, 4230 __rte_unused struct cmdline *cl, 4231 __rte_unused void *data) 4232 { 4233 struct cmd_rx_vlan_filter_result *res = parsed_result; 4234 4235 if (!strcmp(res->what, "add")) 4236 rx_vft_set(res->port_id, res->vlan_id, 1); 4237 else 4238 rx_vft_set(res->port_id, res->vlan_id, 0); 4239 } 4240 4241 cmdline_parse_token_string_t cmd_rx_vlan_filter_rx_vlan = 4242 TOKEN_STRING_INITIALIZER(struct cmd_rx_vlan_filter_result, 4243 rx_vlan, "rx_vlan"); 4244 cmdline_parse_token_string_t cmd_rx_vlan_filter_what = 4245 TOKEN_STRING_INITIALIZER(struct cmd_rx_vlan_filter_result, 4246 what, "add#rm"); 4247 cmdline_parse_token_num_t cmd_rx_vlan_filter_vlanid = 4248 TOKEN_NUM_INITIALIZER(struct cmd_rx_vlan_filter_result, 4249 vlan_id, RTE_UINT16); 4250 cmdline_parse_token_num_t cmd_rx_vlan_filter_portid = 4251 TOKEN_NUM_INITIALIZER(struct cmd_rx_vlan_filter_result, 4252 port_id, RTE_UINT16); 4253 4254 cmdline_parse_inst_t cmd_rx_vlan_filter = { 4255 .f = cmd_rx_vlan_filter_parsed, 4256 .data = NULL, 4257 .help_str = "rx_vlan add|rm <vlan_id> <port_id>: " 4258 "Add/Remove a VLAN identifier to/from the set of VLAN " 4259 "identifiers filtered by a port", 4260 .tokens = { 4261 (void *)&cmd_rx_vlan_filter_rx_vlan, 4262 (void *)&cmd_rx_vlan_filter_what, 4263 (void *)&cmd_rx_vlan_filter_vlanid, 4264 (void *)&cmd_rx_vlan_filter_portid, 4265 NULL, 4266 }, 4267 }; 4268 4269 /* *** ENABLE HARDWARE INSERTION OF VLAN HEADER IN TX PACKETS *** */ 4270 struct cmd_tx_vlan_set_result { 4271 cmdline_fixed_string_t tx_vlan; 4272 cmdline_fixed_string_t set; 4273 portid_t port_id; 4274 uint16_t vlan_id; 4275 }; 4276 4277 static void 4278 cmd_tx_vlan_set_parsed(void *parsed_result, 4279 __rte_unused struct cmdline *cl, 4280 __rte_unused void *data) 4281 { 4282 struct cmd_tx_vlan_set_result *res = parsed_result; 4283 4284 if (port_id_is_invalid(res->port_id, ENABLED_WARN)) 4285 return; 4286 4287 if (!port_is_stopped(res->port_id)) { 4288 printf("Please stop port %d first\n", res->port_id); 4289 return; 4290 } 4291 4292 tx_vlan_set(res->port_id, res->vlan_id); 4293 4294 cmd_reconfig_device_queue(res->port_id, 1, 1); 4295 } 4296 4297 cmdline_parse_token_string_t cmd_tx_vlan_set_tx_vlan = 4298 TOKEN_STRING_INITIALIZER(struct cmd_tx_vlan_set_result, 4299 tx_vlan, "tx_vlan"); 4300 cmdline_parse_token_string_t cmd_tx_vlan_set_set = 4301 TOKEN_STRING_INITIALIZER(struct cmd_tx_vlan_set_result, 4302 set, "set"); 4303 cmdline_parse_token_num_t cmd_tx_vlan_set_portid = 4304 TOKEN_NUM_INITIALIZER(struct cmd_tx_vlan_set_result, 4305 port_id, RTE_UINT16); 4306 cmdline_parse_token_num_t cmd_tx_vlan_set_vlanid = 4307 TOKEN_NUM_INITIALIZER(struct cmd_tx_vlan_set_result, 4308 vlan_id, RTE_UINT16); 4309 4310 cmdline_parse_inst_t cmd_tx_vlan_set = { 4311 .f = cmd_tx_vlan_set_parsed, 4312 .data = NULL, 4313 .help_str = "tx_vlan set <port_id> <vlan_id>: " 4314 "Enable hardware insertion of a single VLAN header " 4315 "with a given TAG Identifier in packets sent on a port", 4316 .tokens = { 4317 (void *)&cmd_tx_vlan_set_tx_vlan, 4318 (void *)&cmd_tx_vlan_set_set, 4319 (void *)&cmd_tx_vlan_set_portid, 4320 (void *)&cmd_tx_vlan_set_vlanid, 4321 NULL, 4322 }, 4323 }; 4324 4325 /* *** ENABLE HARDWARE INSERTION OF Double VLAN HEADER IN TX PACKETS *** */ 4326 struct cmd_tx_vlan_set_qinq_result { 4327 cmdline_fixed_string_t tx_vlan; 4328 cmdline_fixed_string_t set; 4329 portid_t port_id; 4330 uint16_t vlan_id; 4331 uint16_t vlan_id_outer; 4332 }; 4333 4334 static void 4335 cmd_tx_vlan_set_qinq_parsed(void *parsed_result, 4336 __rte_unused struct cmdline *cl, 4337 __rte_unused void *data) 4338 { 4339 struct cmd_tx_vlan_set_qinq_result *res = parsed_result; 4340 4341 if (port_id_is_invalid(res->port_id, ENABLED_WARN)) 4342 return; 4343 4344 if (!port_is_stopped(res->port_id)) { 4345 printf("Please stop port %d first\n", res->port_id); 4346 return; 4347 } 4348 4349 tx_qinq_set(res->port_id, res->vlan_id, res->vlan_id_outer); 4350 4351 cmd_reconfig_device_queue(res->port_id, 1, 1); 4352 } 4353 4354 cmdline_parse_token_string_t cmd_tx_vlan_set_qinq_tx_vlan = 4355 TOKEN_STRING_INITIALIZER(struct cmd_tx_vlan_set_qinq_result, 4356 tx_vlan, "tx_vlan"); 4357 cmdline_parse_token_string_t cmd_tx_vlan_set_qinq_set = 4358 TOKEN_STRING_INITIALIZER(struct cmd_tx_vlan_set_qinq_result, 4359 set, "set"); 4360 cmdline_parse_token_num_t cmd_tx_vlan_set_qinq_portid = 4361 TOKEN_NUM_INITIALIZER(struct cmd_tx_vlan_set_qinq_result, 4362 port_id, RTE_UINT16); 4363 cmdline_parse_token_num_t cmd_tx_vlan_set_qinq_vlanid = 4364 TOKEN_NUM_INITIALIZER(struct cmd_tx_vlan_set_qinq_result, 4365 vlan_id, RTE_UINT16); 4366 cmdline_parse_token_num_t cmd_tx_vlan_set_qinq_vlanid_outer = 4367 TOKEN_NUM_INITIALIZER(struct cmd_tx_vlan_set_qinq_result, 4368 vlan_id_outer, RTE_UINT16); 4369 4370 cmdline_parse_inst_t cmd_tx_vlan_set_qinq = { 4371 .f = cmd_tx_vlan_set_qinq_parsed, 4372 .data = NULL, 4373 .help_str = "tx_vlan set <port_id> <vlan_id> <outer_vlan_id>: " 4374 "Enable hardware insertion of double VLAN header " 4375 "with given TAG Identifiers in packets sent on a port", 4376 .tokens = { 4377 (void *)&cmd_tx_vlan_set_qinq_tx_vlan, 4378 (void *)&cmd_tx_vlan_set_qinq_set, 4379 (void *)&cmd_tx_vlan_set_qinq_portid, 4380 (void *)&cmd_tx_vlan_set_qinq_vlanid, 4381 (void *)&cmd_tx_vlan_set_qinq_vlanid_outer, 4382 NULL, 4383 }, 4384 }; 4385 4386 /* *** ENABLE/DISABLE PORT BASED TX VLAN INSERTION *** */ 4387 struct cmd_tx_vlan_set_pvid_result { 4388 cmdline_fixed_string_t tx_vlan; 4389 cmdline_fixed_string_t set; 4390 cmdline_fixed_string_t pvid; 4391 portid_t port_id; 4392 uint16_t vlan_id; 4393 cmdline_fixed_string_t mode; 4394 }; 4395 4396 static void 4397 cmd_tx_vlan_set_pvid_parsed(void *parsed_result, 4398 __rte_unused struct cmdline *cl, 4399 __rte_unused void *data) 4400 { 4401 struct cmd_tx_vlan_set_pvid_result *res = parsed_result; 4402 4403 if (strcmp(res->mode, "on") == 0) 4404 tx_vlan_pvid_set(res->port_id, res->vlan_id, 1); 4405 else 4406 tx_vlan_pvid_set(res->port_id, res->vlan_id, 0); 4407 } 4408 4409 cmdline_parse_token_string_t cmd_tx_vlan_set_pvid_tx_vlan = 4410 TOKEN_STRING_INITIALIZER(struct cmd_tx_vlan_set_pvid_result, 4411 tx_vlan, "tx_vlan"); 4412 cmdline_parse_token_string_t cmd_tx_vlan_set_pvid_set = 4413 TOKEN_STRING_INITIALIZER(struct cmd_tx_vlan_set_pvid_result, 4414 set, "set"); 4415 cmdline_parse_token_string_t cmd_tx_vlan_set_pvid_pvid = 4416 TOKEN_STRING_INITIALIZER(struct cmd_tx_vlan_set_pvid_result, 4417 pvid, "pvid"); 4418 cmdline_parse_token_num_t cmd_tx_vlan_set_pvid_port_id = 4419 TOKEN_NUM_INITIALIZER(struct cmd_tx_vlan_set_pvid_result, 4420 port_id, RTE_UINT16); 4421 cmdline_parse_token_num_t cmd_tx_vlan_set_pvid_vlan_id = 4422 TOKEN_NUM_INITIALIZER(struct cmd_tx_vlan_set_pvid_result, 4423 vlan_id, RTE_UINT16); 4424 cmdline_parse_token_string_t cmd_tx_vlan_set_pvid_mode = 4425 TOKEN_STRING_INITIALIZER(struct cmd_tx_vlan_set_pvid_result, 4426 mode, "on#off"); 4427 4428 cmdline_parse_inst_t cmd_tx_vlan_set_pvid = { 4429 .f = cmd_tx_vlan_set_pvid_parsed, 4430 .data = NULL, 4431 .help_str = "tx_vlan set pvid <port_id> <vlan_id> on|off", 4432 .tokens = { 4433 (void *)&cmd_tx_vlan_set_pvid_tx_vlan, 4434 (void *)&cmd_tx_vlan_set_pvid_set, 4435 (void *)&cmd_tx_vlan_set_pvid_pvid, 4436 (void *)&cmd_tx_vlan_set_pvid_port_id, 4437 (void *)&cmd_tx_vlan_set_pvid_vlan_id, 4438 (void *)&cmd_tx_vlan_set_pvid_mode, 4439 NULL, 4440 }, 4441 }; 4442 4443 /* *** DISABLE HARDWARE INSERTION OF VLAN HEADER IN TX PACKETS *** */ 4444 struct cmd_tx_vlan_reset_result { 4445 cmdline_fixed_string_t tx_vlan; 4446 cmdline_fixed_string_t reset; 4447 portid_t port_id; 4448 }; 4449 4450 static void 4451 cmd_tx_vlan_reset_parsed(void *parsed_result, 4452 __rte_unused struct cmdline *cl, 4453 __rte_unused void *data) 4454 { 4455 struct cmd_tx_vlan_reset_result *res = parsed_result; 4456 4457 if (port_id_is_invalid(res->port_id, ENABLED_WARN)) 4458 return; 4459 4460 if (!port_is_stopped(res->port_id)) { 4461 printf("Please stop port %d first\n", res->port_id); 4462 return; 4463 } 4464 4465 tx_vlan_reset(res->port_id); 4466 4467 cmd_reconfig_device_queue(res->port_id, 1, 1); 4468 } 4469 4470 cmdline_parse_token_string_t cmd_tx_vlan_reset_tx_vlan = 4471 TOKEN_STRING_INITIALIZER(struct cmd_tx_vlan_reset_result, 4472 tx_vlan, "tx_vlan"); 4473 cmdline_parse_token_string_t cmd_tx_vlan_reset_reset = 4474 TOKEN_STRING_INITIALIZER(struct cmd_tx_vlan_reset_result, 4475 reset, "reset"); 4476 cmdline_parse_token_num_t cmd_tx_vlan_reset_portid = 4477 TOKEN_NUM_INITIALIZER(struct cmd_tx_vlan_reset_result, 4478 port_id, RTE_UINT16); 4479 4480 cmdline_parse_inst_t cmd_tx_vlan_reset = { 4481 .f = cmd_tx_vlan_reset_parsed, 4482 .data = NULL, 4483 .help_str = "tx_vlan reset <port_id>: Disable hardware insertion of a " 4484 "VLAN header in packets sent on a port", 4485 .tokens = { 4486 (void *)&cmd_tx_vlan_reset_tx_vlan, 4487 (void *)&cmd_tx_vlan_reset_reset, 4488 (void *)&cmd_tx_vlan_reset_portid, 4489 NULL, 4490 }, 4491 }; 4492 4493 4494 /* *** ENABLE HARDWARE INSERTION OF CHECKSUM IN TX PACKETS *** */ 4495 struct cmd_csum_result { 4496 cmdline_fixed_string_t csum; 4497 cmdline_fixed_string_t mode; 4498 cmdline_fixed_string_t proto; 4499 cmdline_fixed_string_t hwsw; 4500 portid_t port_id; 4501 }; 4502 4503 static void 4504 csum_show(int port_id) 4505 { 4506 struct rte_eth_dev_info dev_info; 4507 uint64_t tx_offloads; 4508 int ret; 4509 4510 tx_offloads = ports[port_id].dev_conf.txmode.offloads; 4511 printf("Parse tunnel is %s\n", 4512 (ports[port_id].parse_tunnel) ? "on" : "off"); 4513 printf("IP checksum offload is %s\n", 4514 (tx_offloads & DEV_TX_OFFLOAD_IPV4_CKSUM) ? "hw" : "sw"); 4515 printf("UDP checksum offload is %s\n", 4516 (tx_offloads & DEV_TX_OFFLOAD_UDP_CKSUM) ? "hw" : "sw"); 4517 printf("TCP checksum offload is %s\n", 4518 (tx_offloads & DEV_TX_OFFLOAD_TCP_CKSUM) ? "hw" : "sw"); 4519 printf("SCTP checksum offload is %s\n", 4520 (tx_offloads & DEV_TX_OFFLOAD_SCTP_CKSUM) ? "hw" : "sw"); 4521 printf("Outer-Ip checksum offload is %s\n", 4522 (tx_offloads & DEV_TX_OFFLOAD_OUTER_IPV4_CKSUM) ? "hw" : "sw"); 4523 printf("Outer-Udp checksum offload is %s\n", 4524 (tx_offloads & DEV_TX_OFFLOAD_OUTER_UDP_CKSUM) ? "hw" : "sw"); 4525 4526 /* display warnings if configuration is not supported by the NIC */ 4527 ret = eth_dev_info_get_print_err(port_id, &dev_info); 4528 if (ret != 0) 4529 return; 4530 4531 if ((tx_offloads & DEV_TX_OFFLOAD_IPV4_CKSUM) && 4532 (dev_info.tx_offload_capa & DEV_TX_OFFLOAD_IPV4_CKSUM) == 0) { 4533 printf("Warning: hardware IP checksum enabled but not " 4534 "supported by port %d\n", port_id); 4535 } 4536 if ((tx_offloads & DEV_TX_OFFLOAD_UDP_CKSUM) && 4537 (dev_info.tx_offload_capa & DEV_TX_OFFLOAD_UDP_CKSUM) == 0) { 4538 printf("Warning: hardware UDP checksum enabled but not " 4539 "supported by port %d\n", port_id); 4540 } 4541 if ((tx_offloads & DEV_TX_OFFLOAD_TCP_CKSUM) && 4542 (dev_info.tx_offload_capa & DEV_TX_OFFLOAD_TCP_CKSUM) == 0) { 4543 printf("Warning: hardware TCP checksum enabled but not " 4544 "supported by port %d\n", port_id); 4545 } 4546 if ((tx_offloads & DEV_TX_OFFLOAD_SCTP_CKSUM) && 4547 (dev_info.tx_offload_capa & DEV_TX_OFFLOAD_SCTP_CKSUM) == 0) { 4548 printf("Warning: hardware SCTP checksum enabled but not " 4549 "supported by port %d\n", port_id); 4550 } 4551 if ((tx_offloads & DEV_TX_OFFLOAD_OUTER_IPV4_CKSUM) && 4552 (dev_info.tx_offload_capa & DEV_TX_OFFLOAD_OUTER_IPV4_CKSUM) == 0) { 4553 printf("Warning: hardware outer IP checksum enabled but not " 4554 "supported by port %d\n", port_id); 4555 } 4556 if ((tx_offloads & DEV_TX_OFFLOAD_OUTER_UDP_CKSUM) && 4557 (dev_info.tx_offload_capa & DEV_TX_OFFLOAD_OUTER_UDP_CKSUM) 4558 == 0) { 4559 printf("Warning: hardware outer UDP checksum enabled but not " 4560 "supported by port %d\n", port_id); 4561 } 4562 } 4563 4564 static void 4565 cmd_config_queue_tx_offloads(struct rte_port *port) 4566 { 4567 int k; 4568 4569 /* Apply queue tx offloads configuration */ 4570 for (k = 0; k < port->dev_info.max_rx_queues; k++) 4571 port->tx_conf[k].offloads = 4572 port->dev_conf.txmode.offloads; 4573 } 4574 4575 static void 4576 cmd_csum_parsed(void *parsed_result, 4577 __rte_unused struct cmdline *cl, 4578 __rte_unused void *data) 4579 { 4580 struct cmd_csum_result *res = parsed_result; 4581 int hw = 0; 4582 uint64_t csum_offloads = 0; 4583 struct rte_eth_dev_info dev_info; 4584 int ret; 4585 4586 if (port_id_is_invalid(res->port_id, ENABLED_WARN)) { 4587 printf("invalid port %d\n", res->port_id); 4588 return; 4589 } 4590 if (!port_is_stopped(res->port_id)) { 4591 printf("Please stop port %d first\n", res->port_id); 4592 return; 4593 } 4594 4595 ret = eth_dev_info_get_print_err(res->port_id, &dev_info); 4596 if (ret != 0) 4597 return; 4598 4599 if (!strcmp(res->mode, "set")) { 4600 4601 if (!strcmp(res->hwsw, "hw")) 4602 hw = 1; 4603 4604 if (!strcmp(res->proto, "ip")) { 4605 if (hw == 0 || (dev_info.tx_offload_capa & 4606 DEV_TX_OFFLOAD_IPV4_CKSUM)) { 4607 csum_offloads |= DEV_TX_OFFLOAD_IPV4_CKSUM; 4608 } else { 4609 printf("IP checksum offload is not supported " 4610 "by port %u\n", res->port_id); 4611 } 4612 } else if (!strcmp(res->proto, "udp")) { 4613 if (hw == 0 || (dev_info.tx_offload_capa & 4614 DEV_TX_OFFLOAD_UDP_CKSUM)) { 4615 csum_offloads |= DEV_TX_OFFLOAD_UDP_CKSUM; 4616 } else { 4617 printf("UDP checksum offload is not supported " 4618 "by port %u\n", res->port_id); 4619 } 4620 } else if (!strcmp(res->proto, "tcp")) { 4621 if (hw == 0 || (dev_info.tx_offload_capa & 4622 DEV_TX_OFFLOAD_TCP_CKSUM)) { 4623 csum_offloads |= DEV_TX_OFFLOAD_TCP_CKSUM; 4624 } else { 4625 printf("TCP checksum offload is not supported " 4626 "by port %u\n", res->port_id); 4627 } 4628 } else if (!strcmp(res->proto, "sctp")) { 4629 if (hw == 0 || (dev_info.tx_offload_capa & 4630 DEV_TX_OFFLOAD_SCTP_CKSUM)) { 4631 csum_offloads |= DEV_TX_OFFLOAD_SCTP_CKSUM; 4632 } else { 4633 printf("SCTP checksum offload is not supported " 4634 "by port %u\n", res->port_id); 4635 } 4636 } else if (!strcmp(res->proto, "outer-ip")) { 4637 if (hw == 0 || (dev_info.tx_offload_capa & 4638 DEV_TX_OFFLOAD_OUTER_IPV4_CKSUM)) { 4639 csum_offloads |= 4640 DEV_TX_OFFLOAD_OUTER_IPV4_CKSUM; 4641 } else { 4642 printf("Outer IP checksum offload is not " 4643 "supported by port %u\n", res->port_id); 4644 } 4645 } else if (!strcmp(res->proto, "outer-udp")) { 4646 if (hw == 0 || (dev_info.tx_offload_capa & 4647 DEV_TX_OFFLOAD_OUTER_UDP_CKSUM)) { 4648 csum_offloads |= 4649 DEV_TX_OFFLOAD_OUTER_UDP_CKSUM; 4650 } else { 4651 printf("Outer UDP checksum offload is not " 4652 "supported by port %u\n", res->port_id); 4653 } 4654 } 4655 4656 if (hw) { 4657 ports[res->port_id].dev_conf.txmode.offloads |= 4658 csum_offloads; 4659 } else { 4660 ports[res->port_id].dev_conf.txmode.offloads &= 4661 (~csum_offloads); 4662 } 4663 cmd_config_queue_tx_offloads(&ports[res->port_id]); 4664 } 4665 csum_show(res->port_id); 4666 4667 cmd_reconfig_device_queue(res->port_id, 1, 1); 4668 } 4669 4670 cmdline_parse_token_string_t cmd_csum_csum = 4671 TOKEN_STRING_INITIALIZER(struct cmd_csum_result, 4672 csum, "csum"); 4673 cmdline_parse_token_string_t cmd_csum_mode = 4674 TOKEN_STRING_INITIALIZER(struct cmd_csum_result, 4675 mode, "set"); 4676 cmdline_parse_token_string_t cmd_csum_proto = 4677 TOKEN_STRING_INITIALIZER(struct cmd_csum_result, 4678 proto, "ip#tcp#udp#sctp#outer-ip#outer-udp"); 4679 cmdline_parse_token_string_t cmd_csum_hwsw = 4680 TOKEN_STRING_INITIALIZER(struct cmd_csum_result, 4681 hwsw, "hw#sw"); 4682 cmdline_parse_token_num_t cmd_csum_portid = 4683 TOKEN_NUM_INITIALIZER(struct cmd_csum_result, 4684 port_id, RTE_UINT16); 4685 4686 cmdline_parse_inst_t cmd_csum_set = { 4687 .f = cmd_csum_parsed, 4688 .data = NULL, 4689 .help_str = "csum set ip|tcp|udp|sctp|outer-ip|outer-udp hw|sw <port_id>: " 4690 "Enable/Disable hardware calculation of L3/L4 checksum when " 4691 "using csum forward engine", 4692 .tokens = { 4693 (void *)&cmd_csum_csum, 4694 (void *)&cmd_csum_mode, 4695 (void *)&cmd_csum_proto, 4696 (void *)&cmd_csum_hwsw, 4697 (void *)&cmd_csum_portid, 4698 NULL, 4699 }, 4700 }; 4701 4702 cmdline_parse_token_string_t cmd_csum_mode_show = 4703 TOKEN_STRING_INITIALIZER(struct cmd_csum_result, 4704 mode, "show"); 4705 4706 cmdline_parse_inst_t cmd_csum_show = { 4707 .f = cmd_csum_parsed, 4708 .data = NULL, 4709 .help_str = "csum show <port_id>: Show checksum offload configuration", 4710 .tokens = { 4711 (void *)&cmd_csum_csum, 4712 (void *)&cmd_csum_mode_show, 4713 (void *)&cmd_csum_portid, 4714 NULL, 4715 }, 4716 }; 4717 4718 /* Enable/disable tunnel parsing */ 4719 struct cmd_csum_tunnel_result { 4720 cmdline_fixed_string_t csum; 4721 cmdline_fixed_string_t parse; 4722 cmdline_fixed_string_t onoff; 4723 portid_t port_id; 4724 }; 4725 4726 static void 4727 cmd_csum_tunnel_parsed(void *parsed_result, 4728 __rte_unused struct cmdline *cl, 4729 __rte_unused void *data) 4730 { 4731 struct cmd_csum_tunnel_result *res = parsed_result; 4732 4733 if (port_id_is_invalid(res->port_id, ENABLED_WARN)) 4734 return; 4735 4736 if (!strcmp(res->onoff, "on")) 4737 ports[res->port_id].parse_tunnel = 1; 4738 else 4739 ports[res->port_id].parse_tunnel = 0; 4740 4741 csum_show(res->port_id); 4742 } 4743 4744 cmdline_parse_token_string_t cmd_csum_tunnel_csum = 4745 TOKEN_STRING_INITIALIZER(struct cmd_csum_tunnel_result, 4746 csum, "csum"); 4747 cmdline_parse_token_string_t cmd_csum_tunnel_parse = 4748 TOKEN_STRING_INITIALIZER(struct cmd_csum_tunnel_result, 4749 parse, "parse-tunnel"); 4750 cmdline_parse_token_string_t cmd_csum_tunnel_onoff = 4751 TOKEN_STRING_INITIALIZER(struct cmd_csum_tunnel_result, 4752 onoff, "on#off"); 4753 cmdline_parse_token_num_t cmd_csum_tunnel_portid = 4754 TOKEN_NUM_INITIALIZER(struct cmd_csum_tunnel_result, 4755 port_id, RTE_UINT16); 4756 4757 cmdline_parse_inst_t cmd_csum_tunnel = { 4758 .f = cmd_csum_tunnel_parsed, 4759 .data = NULL, 4760 .help_str = "csum parse-tunnel on|off <port_id>: " 4761 "Enable/Disable parsing of tunnels for csum engine", 4762 .tokens = { 4763 (void *)&cmd_csum_tunnel_csum, 4764 (void *)&cmd_csum_tunnel_parse, 4765 (void *)&cmd_csum_tunnel_onoff, 4766 (void *)&cmd_csum_tunnel_portid, 4767 NULL, 4768 }, 4769 }; 4770 4771 /* *** ENABLE HARDWARE SEGMENTATION IN TX NON-TUNNELED PACKETS *** */ 4772 struct cmd_tso_set_result { 4773 cmdline_fixed_string_t tso; 4774 cmdline_fixed_string_t mode; 4775 uint16_t tso_segsz; 4776 portid_t port_id; 4777 }; 4778 4779 static void 4780 cmd_tso_set_parsed(void *parsed_result, 4781 __rte_unused struct cmdline *cl, 4782 __rte_unused void *data) 4783 { 4784 struct cmd_tso_set_result *res = parsed_result; 4785 struct rte_eth_dev_info dev_info; 4786 int ret; 4787 4788 if (port_id_is_invalid(res->port_id, ENABLED_WARN)) 4789 return; 4790 if (!port_is_stopped(res->port_id)) { 4791 printf("Please stop port %d first\n", res->port_id); 4792 return; 4793 } 4794 4795 if (!strcmp(res->mode, "set")) 4796 ports[res->port_id].tso_segsz = res->tso_segsz; 4797 4798 ret = eth_dev_info_get_print_err(res->port_id, &dev_info); 4799 if (ret != 0) 4800 return; 4801 4802 if ((ports[res->port_id].tso_segsz != 0) && 4803 (dev_info.tx_offload_capa & DEV_TX_OFFLOAD_TCP_TSO) == 0) { 4804 printf("Error: TSO is not supported by port %d\n", 4805 res->port_id); 4806 return; 4807 } 4808 4809 if (ports[res->port_id].tso_segsz == 0) { 4810 ports[res->port_id].dev_conf.txmode.offloads &= 4811 ~DEV_TX_OFFLOAD_TCP_TSO; 4812 printf("TSO for non-tunneled packets is disabled\n"); 4813 } else { 4814 ports[res->port_id].dev_conf.txmode.offloads |= 4815 DEV_TX_OFFLOAD_TCP_TSO; 4816 printf("TSO segment size for non-tunneled packets is %d\n", 4817 ports[res->port_id].tso_segsz); 4818 } 4819 cmd_config_queue_tx_offloads(&ports[res->port_id]); 4820 4821 /* display warnings if configuration is not supported by the NIC */ 4822 ret = eth_dev_info_get_print_err(res->port_id, &dev_info); 4823 if (ret != 0) 4824 return; 4825 4826 if ((ports[res->port_id].tso_segsz != 0) && 4827 (dev_info.tx_offload_capa & DEV_TX_OFFLOAD_TCP_TSO) == 0) { 4828 printf("Warning: TSO enabled but not " 4829 "supported by port %d\n", res->port_id); 4830 } 4831 4832 cmd_reconfig_device_queue(res->port_id, 1, 1); 4833 } 4834 4835 cmdline_parse_token_string_t cmd_tso_set_tso = 4836 TOKEN_STRING_INITIALIZER(struct cmd_tso_set_result, 4837 tso, "tso"); 4838 cmdline_parse_token_string_t cmd_tso_set_mode = 4839 TOKEN_STRING_INITIALIZER(struct cmd_tso_set_result, 4840 mode, "set"); 4841 cmdline_parse_token_num_t cmd_tso_set_tso_segsz = 4842 TOKEN_NUM_INITIALIZER(struct cmd_tso_set_result, 4843 tso_segsz, RTE_UINT16); 4844 cmdline_parse_token_num_t cmd_tso_set_portid = 4845 TOKEN_NUM_INITIALIZER(struct cmd_tso_set_result, 4846 port_id, RTE_UINT16); 4847 4848 cmdline_parse_inst_t cmd_tso_set = { 4849 .f = cmd_tso_set_parsed, 4850 .data = NULL, 4851 .help_str = "tso set <tso_segsz> <port_id>: " 4852 "Set TSO segment size of non-tunneled packets for csum engine " 4853 "(0 to disable)", 4854 .tokens = { 4855 (void *)&cmd_tso_set_tso, 4856 (void *)&cmd_tso_set_mode, 4857 (void *)&cmd_tso_set_tso_segsz, 4858 (void *)&cmd_tso_set_portid, 4859 NULL, 4860 }, 4861 }; 4862 4863 cmdline_parse_token_string_t cmd_tso_show_mode = 4864 TOKEN_STRING_INITIALIZER(struct cmd_tso_set_result, 4865 mode, "show"); 4866 4867 4868 cmdline_parse_inst_t cmd_tso_show = { 4869 .f = cmd_tso_set_parsed, 4870 .data = NULL, 4871 .help_str = "tso show <port_id>: " 4872 "Show TSO segment size of non-tunneled packets for csum engine", 4873 .tokens = { 4874 (void *)&cmd_tso_set_tso, 4875 (void *)&cmd_tso_show_mode, 4876 (void *)&cmd_tso_set_portid, 4877 NULL, 4878 }, 4879 }; 4880 4881 /* *** ENABLE HARDWARE SEGMENTATION IN TX TUNNELED PACKETS *** */ 4882 struct cmd_tunnel_tso_set_result { 4883 cmdline_fixed_string_t tso; 4884 cmdline_fixed_string_t mode; 4885 uint16_t tso_segsz; 4886 portid_t port_id; 4887 }; 4888 4889 static struct rte_eth_dev_info 4890 check_tunnel_tso_nic_support(portid_t port_id) 4891 { 4892 struct rte_eth_dev_info dev_info; 4893 4894 if (eth_dev_info_get_print_err(port_id, &dev_info) != 0) 4895 return dev_info; 4896 4897 if (!(dev_info.tx_offload_capa & DEV_TX_OFFLOAD_VXLAN_TNL_TSO)) 4898 printf("Warning: VXLAN TUNNEL TSO not supported therefore " 4899 "not enabled for port %d\n", port_id); 4900 if (!(dev_info.tx_offload_capa & DEV_TX_OFFLOAD_GRE_TNL_TSO)) 4901 printf("Warning: GRE TUNNEL TSO not supported therefore " 4902 "not enabled for port %d\n", port_id); 4903 if (!(dev_info.tx_offload_capa & DEV_TX_OFFLOAD_IPIP_TNL_TSO)) 4904 printf("Warning: IPIP TUNNEL TSO not supported therefore " 4905 "not enabled for port %d\n", port_id); 4906 if (!(dev_info.tx_offload_capa & DEV_TX_OFFLOAD_GENEVE_TNL_TSO)) 4907 printf("Warning: GENEVE TUNNEL TSO not supported therefore " 4908 "not enabled for port %d\n", port_id); 4909 if (!(dev_info.tx_offload_capa & DEV_TX_OFFLOAD_IP_TNL_TSO)) 4910 printf("Warning: IP TUNNEL TSO not supported therefore " 4911 "not enabled for port %d\n", port_id); 4912 if (!(dev_info.tx_offload_capa & DEV_TX_OFFLOAD_UDP_TNL_TSO)) 4913 printf("Warning: UDP TUNNEL TSO not supported therefore " 4914 "not enabled for port %d\n", port_id); 4915 return dev_info; 4916 } 4917 4918 static void 4919 cmd_tunnel_tso_set_parsed(void *parsed_result, 4920 __rte_unused struct cmdline *cl, 4921 __rte_unused void *data) 4922 { 4923 struct cmd_tunnel_tso_set_result *res = parsed_result; 4924 struct rte_eth_dev_info dev_info; 4925 4926 if (port_id_is_invalid(res->port_id, ENABLED_WARN)) 4927 return; 4928 if (!port_is_stopped(res->port_id)) { 4929 printf("Please stop port %d first\n", res->port_id); 4930 return; 4931 } 4932 4933 if (!strcmp(res->mode, "set")) 4934 ports[res->port_id].tunnel_tso_segsz = res->tso_segsz; 4935 4936 dev_info = check_tunnel_tso_nic_support(res->port_id); 4937 if (ports[res->port_id].tunnel_tso_segsz == 0) { 4938 ports[res->port_id].dev_conf.txmode.offloads &= 4939 ~(DEV_TX_OFFLOAD_VXLAN_TNL_TSO | 4940 DEV_TX_OFFLOAD_GRE_TNL_TSO | 4941 DEV_TX_OFFLOAD_IPIP_TNL_TSO | 4942 DEV_TX_OFFLOAD_GENEVE_TNL_TSO | 4943 DEV_TX_OFFLOAD_IP_TNL_TSO | 4944 DEV_TX_OFFLOAD_UDP_TNL_TSO); 4945 printf("TSO for tunneled packets is disabled\n"); 4946 } else { 4947 uint64_t tso_offloads = (DEV_TX_OFFLOAD_VXLAN_TNL_TSO | 4948 DEV_TX_OFFLOAD_GRE_TNL_TSO | 4949 DEV_TX_OFFLOAD_IPIP_TNL_TSO | 4950 DEV_TX_OFFLOAD_GENEVE_TNL_TSO | 4951 DEV_TX_OFFLOAD_IP_TNL_TSO | 4952 DEV_TX_OFFLOAD_UDP_TNL_TSO); 4953 4954 ports[res->port_id].dev_conf.txmode.offloads |= 4955 (tso_offloads & dev_info.tx_offload_capa); 4956 printf("TSO segment size for tunneled packets is %d\n", 4957 ports[res->port_id].tunnel_tso_segsz); 4958 4959 /* Below conditions are needed to make it work: 4960 * (1) tunnel TSO is supported by the NIC; 4961 * (2) "csum parse_tunnel" must be set so that tunneled pkts 4962 * are recognized; 4963 * (3) for tunneled pkts with outer L3 of IPv4, 4964 * "csum set outer-ip" must be set to hw, because after tso, 4965 * total_len of outer IP header is changed, and the checksum 4966 * of outer IP header calculated by sw should be wrong; that 4967 * is not necessary for IPv6 tunneled pkts because there's no 4968 * checksum in IP header anymore. 4969 */ 4970 4971 if (!ports[res->port_id].parse_tunnel) 4972 printf("Warning: csum parse_tunnel must be set " 4973 "so that tunneled packets are recognized\n"); 4974 if (!(ports[res->port_id].dev_conf.txmode.offloads & 4975 DEV_TX_OFFLOAD_OUTER_IPV4_CKSUM)) 4976 printf("Warning: csum set outer-ip must be set to hw " 4977 "if outer L3 is IPv4; not necessary for IPv6\n"); 4978 } 4979 4980 cmd_config_queue_tx_offloads(&ports[res->port_id]); 4981 cmd_reconfig_device_queue(res->port_id, 1, 1); 4982 } 4983 4984 cmdline_parse_token_string_t cmd_tunnel_tso_set_tso = 4985 TOKEN_STRING_INITIALIZER(struct cmd_tunnel_tso_set_result, 4986 tso, "tunnel_tso"); 4987 cmdline_parse_token_string_t cmd_tunnel_tso_set_mode = 4988 TOKEN_STRING_INITIALIZER(struct cmd_tunnel_tso_set_result, 4989 mode, "set"); 4990 cmdline_parse_token_num_t cmd_tunnel_tso_set_tso_segsz = 4991 TOKEN_NUM_INITIALIZER(struct cmd_tunnel_tso_set_result, 4992 tso_segsz, RTE_UINT16); 4993 cmdline_parse_token_num_t cmd_tunnel_tso_set_portid = 4994 TOKEN_NUM_INITIALIZER(struct cmd_tunnel_tso_set_result, 4995 port_id, RTE_UINT16); 4996 4997 cmdline_parse_inst_t cmd_tunnel_tso_set = { 4998 .f = cmd_tunnel_tso_set_parsed, 4999 .data = NULL, 5000 .help_str = "tunnel_tso set <tso_segsz> <port_id>: " 5001 "Set TSO segment size of tunneled packets for csum engine " 5002 "(0 to disable)", 5003 .tokens = { 5004 (void *)&cmd_tunnel_tso_set_tso, 5005 (void *)&cmd_tunnel_tso_set_mode, 5006 (void *)&cmd_tunnel_tso_set_tso_segsz, 5007 (void *)&cmd_tunnel_tso_set_portid, 5008 NULL, 5009 }, 5010 }; 5011 5012 cmdline_parse_token_string_t cmd_tunnel_tso_show_mode = 5013 TOKEN_STRING_INITIALIZER(struct cmd_tunnel_tso_set_result, 5014 mode, "show"); 5015 5016 5017 cmdline_parse_inst_t cmd_tunnel_tso_show = { 5018 .f = cmd_tunnel_tso_set_parsed, 5019 .data = NULL, 5020 .help_str = "tunnel_tso show <port_id> " 5021 "Show TSO segment size of tunneled packets for csum engine", 5022 .tokens = { 5023 (void *)&cmd_tunnel_tso_set_tso, 5024 (void *)&cmd_tunnel_tso_show_mode, 5025 (void *)&cmd_tunnel_tso_set_portid, 5026 NULL, 5027 }, 5028 }; 5029 5030 /* *** SET GRO FOR A PORT *** */ 5031 struct cmd_gro_enable_result { 5032 cmdline_fixed_string_t cmd_set; 5033 cmdline_fixed_string_t cmd_port; 5034 cmdline_fixed_string_t cmd_keyword; 5035 cmdline_fixed_string_t cmd_onoff; 5036 portid_t cmd_pid; 5037 }; 5038 5039 static void 5040 cmd_gro_enable_parsed(void *parsed_result, 5041 __rte_unused struct cmdline *cl, 5042 __rte_unused void *data) 5043 { 5044 struct cmd_gro_enable_result *res; 5045 5046 res = parsed_result; 5047 if (!strcmp(res->cmd_keyword, "gro")) 5048 setup_gro(res->cmd_onoff, res->cmd_pid); 5049 } 5050 5051 cmdline_parse_token_string_t cmd_gro_enable_set = 5052 TOKEN_STRING_INITIALIZER(struct cmd_gro_enable_result, 5053 cmd_set, "set"); 5054 cmdline_parse_token_string_t cmd_gro_enable_port = 5055 TOKEN_STRING_INITIALIZER(struct cmd_gro_enable_result, 5056 cmd_keyword, "port"); 5057 cmdline_parse_token_num_t cmd_gro_enable_pid = 5058 TOKEN_NUM_INITIALIZER(struct cmd_gro_enable_result, 5059 cmd_pid, RTE_UINT16); 5060 cmdline_parse_token_string_t cmd_gro_enable_keyword = 5061 TOKEN_STRING_INITIALIZER(struct cmd_gro_enable_result, 5062 cmd_keyword, "gro"); 5063 cmdline_parse_token_string_t cmd_gro_enable_onoff = 5064 TOKEN_STRING_INITIALIZER(struct cmd_gro_enable_result, 5065 cmd_onoff, "on#off"); 5066 5067 cmdline_parse_inst_t cmd_gro_enable = { 5068 .f = cmd_gro_enable_parsed, 5069 .data = NULL, 5070 .help_str = "set port <port_id> gro on|off", 5071 .tokens = { 5072 (void *)&cmd_gro_enable_set, 5073 (void *)&cmd_gro_enable_port, 5074 (void *)&cmd_gro_enable_pid, 5075 (void *)&cmd_gro_enable_keyword, 5076 (void *)&cmd_gro_enable_onoff, 5077 NULL, 5078 }, 5079 }; 5080 5081 /* *** DISPLAY GRO CONFIGURATION *** */ 5082 struct cmd_gro_show_result { 5083 cmdline_fixed_string_t cmd_show; 5084 cmdline_fixed_string_t cmd_port; 5085 cmdline_fixed_string_t cmd_keyword; 5086 portid_t cmd_pid; 5087 }; 5088 5089 static void 5090 cmd_gro_show_parsed(void *parsed_result, 5091 __rte_unused struct cmdline *cl, 5092 __rte_unused void *data) 5093 { 5094 struct cmd_gro_show_result *res; 5095 5096 res = parsed_result; 5097 if (!strcmp(res->cmd_keyword, "gro")) 5098 show_gro(res->cmd_pid); 5099 } 5100 5101 cmdline_parse_token_string_t cmd_gro_show_show = 5102 TOKEN_STRING_INITIALIZER(struct cmd_gro_show_result, 5103 cmd_show, "show"); 5104 cmdline_parse_token_string_t cmd_gro_show_port = 5105 TOKEN_STRING_INITIALIZER(struct cmd_gro_show_result, 5106 cmd_port, "port"); 5107 cmdline_parse_token_num_t cmd_gro_show_pid = 5108 TOKEN_NUM_INITIALIZER(struct cmd_gro_show_result, 5109 cmd_pid, RTE_UINT16); 5110 cmdline_parse_token_string_t cmd_gro_show_keyword = 5111 TOKEN_STRING_INITIALIZER(struct cmd_gro_show_result, 5112 cmd_keyword, "gro"); 5113 5114 cmdline_parse_inst_t cmd_gro_show = { 5115 .f = cmd_gro_show_parsed, 5116 .data = NULL, 5117 .help_str = "show port <port_id> gro", 5118 .tokens = { 5119 (void *)&cmd_gro_show_show, 5120 (void *)&cmd_gro_show_port, 5121 (void *)&cmd_gro_show_pid, 5122 (void *)&cmd_gro_show_keyword, 5123 NULL, 5124 }, 5125 }; 5126 5127 /* *** SET FLUSH CYCLES FOR GRO *** */ 5128 struct cmd_gro_flush_result { 5129 cmdline_fixed_string_t cmd_set; 5130 cmdline_fixed_string_t cmd_keyword; 5131 cmdline_fixed_string_t cmd_flush; 5132 uint8_t cmd_cycles; 5133 }; 5134 5135 static void 5136 cmd_gro_flush_parsed(void *parsed_result, 5137 __rte_unused struct cmdline *cl, 5138 __rte_unused void *data) 5139 { 5140 struct cmd_gro_flush_result *res; 5141 5142 res = parsed_result; 5143 if ((!strcmp(res->cmd_keyword, "gro")) && 5144 (!strcmp(res->cmd_flush, "flush"))) 5145 setup_gro_flush_cycles(res->cmd_cycles); 5146 } 5147 5148 cmdline_parse_token_string_t cmd_gro_flush_set = 5149 TOKEN_STRING_INITIALIZER(struct cmd_gro_flush_result, 5150 cmd_set, "set"); 5151 cmdline_parse_token_string_t cmd_gro_flush_keyword = 5152 TOKEN_STRING_INITIALIZER(struct cmd_gro_flush_result, 5153 cmd_keyword, "gro"); 5154 cmdline_parse_token_string_t cmd_gro_flush_flush = 5155 TOKEN_STRING_INITIALIZER(struct cmd_gro_flush_result, 5156 cmd_flush, "flush"); 5157 cmdline_parse_token_num_t cmd_gro_flush_cycles = 5158 TOKEN_NUM_INITIALIZER(struct cmd_gro_flush_result, 5159 cmd_cycles, RTE_UINT8); 5160 5161 cmdline_parse_inst_t cmd_gro_flush = { 5162 .f = cmd_gro_flush_parsed, 5163 .data = NULL, 5164 .help_str = "set gro flush <cycles>", 5165 .tokens = { 5166 (void *)&cmd_gro_flush_set, 5167 (void *)&cmd_gro_flush_keyword, 5168 (void *)&cmd_gro_flush_flush, 5169 (void *)&cmd_gro_flush_cycles, 5170 NULL, 5171 }, 5172 }; 5173 5174 /* *** ENABLE/DISABLE GSO *** */ 5175 struct cmd_gso_enable_result { 5176 cmdline_fixed_string_t cmd_set; 5177 cmdline_fixed_string_t cmd_port; 5178 cmdline_fixed_string_t cmd_keyword; 5179 cmdline_fixed_string_t cmd_mode; 5180 portid_t cmd_pid; 5181 }; 5182 5183 static void 5184 cmd_gso_enable_parsed(void *parsed_result, 5185 __rte_unused struct cmdline *cl, 5186 __rte_unused void *data) 5187 { 5188 struct cmd_gso_enable_result *res; 5189 5190 res = parsed_result; 5191 if (!strcmp(res->cmd_keyword, "gso")) 5192 setup_gso(res->cmd_mode, res->cmd_pid); 5193 } 5194 5195 cmdline_parse_token_string_t cmd_gso_enable_set = 5196 TOKEN_STRING_INITIALIZER(struct cmd_gso_enable_result, 5197 cmd_set, "set"); 5198 cmdline_parse_token_string_t cmd_gso_enable_port = 5199 TOKEN_STRING_INITIALIZER(struct cmd_gso_enable_result, 5200 cmd_port, "port"); 5201 cmdline_parse_token_string_t cmd_gso_enable_keyword = 5202 TOKEN_STRING_INITIALIZER(struct cmd_gso_enable_result, 5203 cmd_keyword, "gso"); 5204 cmdline_parse_token_string_t cmd_gso_enable_mode = 5205 TOKEN_STRING_INITIALIZER(struct cmd_gso_enable_result, 5206 cmd_mode, "on#off"); 5207 cmdline_parse_token_num_t cmd_gso_enable_pid = 5208 TOKEN_NUM_INITIALIZER(struct cmd_gso_enable_result, 5209 cmd_pid, RTE_UINT16); 5210 5211 cmdline_parse_inst_t cmd_gso_enable = { 5212 .f = cmd_gso_enable_parsed, 5213 .data = NULL, 5214 .help_str = "set port <port_id> gso on|off", 5215 .tokens = { 5216 (void *)&cmd_gso_enable_set, 5217 (void *)&cmd_gso_enable_port, 5218 (void *)&cmd_gso_enable_pid, 5219 (void *)&cmd_gso_enable_keyword, 5220 (void *)&cmd_gso_enable_mode, 5221 NULL, 5222 }, 5223 }; 5224 5225 /* *** SET MAX PACKET LENGTH FOR GSO SEGMENTS *** */ 5226 struct cmd_gso_size_result { 5227 cmdline_fixed_string_t cmd_set; 5228 cmdline_fixed_string_t cmd_keyword; 5229 cmdline_fixed_string_t cmd_segsz; 5230 uint16_t cmd_size; 5231 }; 5232 5233 static void 5234 cmd_gso_size_parsed(void *parsed_result, 5235 __rte_unused struct cmdline *cl, 5236 __rte_unused void *data) 5237 { 5238 struct cmd_gso_size_result *res = parsed_result; 5239 5240 if (test_done == 0) { 5241 printf("Before setting GSO segsz, please first" 5242 " stop forwarding\n"); 5243 return; 5244 } 5245 5246 if (!strcmp(res->cmd_keyword, "gso") && 5247 !strcmp(res->cmd_segsz, "segsz")) { 5248 if (res->cmd_size < RTE_GSO_SEG_SIZE_MIN) 5249 printf("gso_size should be larger than %zu." 5250 " Please input a legal value\n", 5251 RTE_GSO_SEG_SIZE_MIN); 5252 else 5253 gso_max_segment_size = res->cmd_size; 5254 } 5255 } 5256 5257 cmdline_parse_token_string_t cmd_gso_size_set = 5258 TOKEN_STRING_INITIALIZER(struct cmd_gso_size_result, 5259 cmd_set, "set"); 5260 cmdline_parse_token_string_t cmd_gso_size_keyword = 5261 TOKEN_STRING_INITIALIZER(struct cmd_gso_size_result, 5262 cmd_keyword, "gso"); 5263 cmdline_parse_token_string_t cmd_gso_size_segsz = 5264 TOKEN_STRING_INITIALIZER(struct cmd_gso_size_result, 5265 cmd_segsz, "segsz"); 5266 cmdline_parse_token_num_t cmd_gso_size_size = 5267 TOKEN_NUM_INITIALIZER(struct cmd_gso_size_result, 5268 cmd_size, RTE_UINT16); 5269 5270 cmdline_parse_inst_t cmd_gso_size = { 5271 .f = cmd_gso_size_parsed, 5272 .data = NULL, 5273 .help_str = "set gso segsz <length>", 5274 .tokens = { 5275 (void *)&cmd_gso_size_set, 5276 (void *)&cmd_gso_size_keyword, 5277 (void *)&cmd_gso_size_segsz, 5278 (void *)&cmd_gso_size_size, 5279 NULL, 5280 }, 5281 }; 5282 5283 /* *** SHOW GSO CONFIGURATION *** */ 5284 struct cmd_gso_show_result { 5285 cmdline_fixed_string_t cmd_show; 5286 cmdline_fixed_string_t cmd_port; 5287 cmdline_fixed_string_t cmd_keyword; 5288 portid_t cmd_pid; 5289 }; 5290 5291 static void 5292 cmd_gso_show_parsed(void *parsed_result, 5293 __rte_unused struct cmdline *cl, 5294 __rte_unused void *data) 5295 { 5296 struct cmd_gso_show_result *res = parsed_result; 5297 5298 if (!rte_eth_dev_is_valid_port(res->cmd_pid)) { 5299 printf("invalid port id %u\n", res->cmd_pid); 5300 return; 5301 } 5302 if (!strcmp(res->cmd_keyword, "gso")) { 5303 if (gso_ports[res->cmd_pid].enable) { 5304 printf("Max GSO'd packet size: %uB\n" 5305 "Supported GSO types: TCP/IPv4, " 5306 "UDP/IPv4, VxLAN with inner " 5307 "TCP/IPv4 packet, GRE with inner " 5308 "TCP/IPv4 packet\n", 5309 gso_max_segment_size); 5310 } else 5311 printf("GSO is not enabled on Port %u\n", res->cmd_pid); 5312 } 5313 } 5314 5315 cmdline_parse_token_string_t cmd_gso_show_show = 5316 TOKEN_STRING_INITIALIZER(struct cmd_gso_show_result, 5317 cmd_show, "show"); 5318 cmdline_parse_token_string_t cmd_gso_show_port = 5319 TOKEN_STRING_INITIALIZER(struct cmd_gso_show_result, 5320 cmd_port, "port"); 5321 cmdline_parse_token_string_t cmd_gso_show_keyword = 5322 TOKEN_STRING_INITIALIZER(struct cmd_gso_show_result, 5323 cmd_keyword, "gso"); 5324 cmdline_parse_token_num_t cmd_gso_show_pid = 5325 TOKEN_NUM_INITIALIZER(struct cmd_gso_show_result, 5326 cmd_pid, RTE_UINT16); 5327 5328 cmdline_parse_inst_t cmd_gso_show = { 5329 .f = cmd_gso_show_parsed, 5330 .data = NULL, 5331 .help_str = "show port <port_id> gso", 5332 .tokens = { 5333 (void *)&cmd_gso_show_show, 5334 (void *)&cmd_gso_show_port, 5335 (void *)&cmd_gso_show_pid, 5336 (void *)&cmd_gso_show_keyword, 5337 NULL, 5338 }, 5339 }; 5340 5341 /* *** ENABLE/DISABLE FLUSH ON RX STREAMS *** */ 5342 struct cmd_set_flush_rx { 5343 cmdline_fixed_string_t set; 5344 cmdline_fixed_string_t flush_rx; 5345 cmdline_fixed_string_t mode; 5346 }; 5347 5348 static void 5349 cmd_set_flush_rx_parsed(void *parsed_result, 5350 __rte_unused struct cmdline *cl, 5351 __rte_unused void *data) 5352 { 5353 struct cmd_set_flush_rx *res = parsed_result; 5354 no_flush_rx = (uint8_t)((strcmp(res->mode, "on") == 0) ? 0 : 1); 5355 } 5356 5357 cmdline_parse_token_string_t cmd_setflushrx_set = 5358 TOKEN_STRING_INITIALIZER(struct cmd_set_flush_rx, 5359 set, "set"); 5360 cmdline_parse_token_string_t cmd_setflushrx_flush_rx = 5361 TOKEN_STRING_INITIALIZER(struct cmd_set_flush_rx, 5362 flush_rx, "flush_rx"); 5363 cmdline_parse_token_string_t cmd_setflushrx_mode = 5364 TOKEN_STRING_INITIALIZER(struct cmd_set_flush_rx, 5365 mode, "on#off"); 5366 5367 5368 cmdline_parse_inst_t cmd_set_flush_rx = { 5369 .f = cmd_set_flush_rx_parsed, 5370 .help_str = "set flush_rx on|off: Enable/Disable flush on rx streams", 5371 .data = NULL, 5372 .tokens = { 5373 (void *)&cmd_setflushrx_set, 5374 (void *)&cmd_setflushrx_flush_rx, 5375 (void *)&cmd_setflushrx_mode, 5376 NULL, 5377 }, 5378 }; 5379 5380 /* *** ENABLE/DISABLE LINK STATUS CHECK *** */ 5381 struct cmd_set_link_check { 5382 cmdline_fixed_string_t set; 5383 cmdline_fixed_string_t link_check; 5384 cmdline_fixed_string_t mode; 5385 }; 5386 5387 static void 5388 cmd_set_link_check_parsed(void *parsed_result, 5389 __rte_unused struct cmdline *cl, 5390 __rte_unused void *data) 5391 { 5392 struct cmd_set_link_check *res = parsed_result; 5393 no_link_check = (uint8_t)((strcmp(res->mode, "on") == 0) ? 0 : 1); 5394 } 5395 5396 cmdline_parse_token_string_t cmd_setlinkcheck_set = 5397 TOKEN_STRING_INITIALIZER(struct cmd_set_link_check, 5398 set, "set"); 5399 cmdline_parse_token_string_t cmd_setlinkcheck_link_check = 5400 TOKEN_STRING_INITIALIZER(struct cmd_set_link_check, 5401 link_check, "link_check"); 5402 cmdline_parse_token_string_t cmd_setlinkcheck_mode = 5403 TOKEN_STRING_INITIALIZER(struct cmd_set_link_check, 5404 mode, "on#off"); 5405 5406 5407 cmdline_parse_inst_t cmd_set_link_check = { 5408 .f = cmd_set_link_check_parsed, 5409 .help_str = "set link_check on|off: Enable/Disable link status check " 5410 "when starting/stopping a port", 5411 .data = NULL, 5412 .tokens = { 5413 (void *)&cmd_setlinkcheck_set, 5414 (void *)&cmd_setlinkcheck_link_check, 5415 (void *)&cmd_setlinkcheck_mode, 5416 NULL, 5417 }, 5418 }; 5419 5420 /* *** SET NIC BYPASS MODE *** */ 5421 struct cmd_set_bypass_mode_result { 5422 cmdline_fixed_string_t set; 5423 cmdline_fixed_string_t bypass; 5424 cmdline_fixed_string_t mode; 5425 cmdline_fixed_string_t value; 5426 portid_t port_id; 5427 }; 5428 5429 static void 5430 cmd_set_bypass_mode_parsed(void *parsed_result, 5431 __rte_unused struct cmdline *cl, 5432 __rte_unused void *data) 5433 { 5434 struct cmd_set_bypass_mode_result *res = parsed_result; 5435 portid_t port_id = res->port_id; 5436 int32_t rc = -EINVAL; 5437 5438 #if defined RTE_NET_IXGBE && defined RTE_LIBRTE_IXGBE_BYPASS 5439 uint32_t bypass_mode = RTE_PMD_IXGBE_BYPASS_MODE_NORMAL; 5440 5441 if (!strcmp(res->value, "bypass")) 5442 bypass_mode = RTE_PMD_IXGBE_BYPASS_MODE_BYPASS; 5443 else if (!strcmp(res->value, "isolate")) 5444 bypass_mode = RTE_PMD_IXGBE_BYPASS_MODE_ISOLATE; 5445 else 5446 bypass_mode = RTE_PMD_IXGBE_BYPASS_MODE_NORMAL; 5447 5448 /* Set the bypass mode for the relevant port. */ 5449 rc = rte_pmd_ixgbe_bypass_state_set(port_id, &bypass_mode); 5450 #endif 5451 if (rc != 0) 5452 printf("\t Failed to set bypass mode for port = %d.\n", port_id); 5453 } 5454 5455 cmdline_parse_token_string_t cmd_setbypass_mode_set = 5456 TOKEN_STRING_INITIALIZER(struct cmd_set_bypass_mode_result, 5457 set, "set"); 5458 cmdline_parse_token_string_t cmd_setbypass_mode_bypass = 5459 TOKEN_STRING_INITIALIZER(struct cmd_set_bypass_mode_result, 5460 bypass, "bypass"); 5461 cmdline_parse_token_string_t cmd_setbypass_mode_mode = 5462 TOKEN_STRING_INITIALIZER(struct cmd_set_bypass_mode_result, 5463 mode, "mode"); 5464 cmdline_parse_token_string_t cmd_setbypass_mode_value = 5465 TOKEN_STRING_INITIALIZER(struct cmd_set_bypass_mode_result, 5466 value, "normal#bypass#isolate"); 5467 cmdline_parse_token_num_t cmd_setbypass_mode_port = 5468 TOKEN_NUM_INITIALIZER(struct cmd_set_bypass_mode_result, 5469 port_id, RTE_UINT16); 5470 5471 cmdline_parse_inst_t cmd_set_bypass_mode = { 5472 .f = cmd_set_bypass_mode_parsed, 5473 .help_str = "set bypass mode normal|bypass|isolate <port_id>: " 5474 "Set the NIC bypass mode for port_id", 5475 .data = NULL, 5476 .tokens = { 5477 (void *)&cmd_setbypass_mode_set, 5478 (void *)&cmd_setbypass_mode_bypass, 5479 (void *)&cmd_setbypass_mode_mode, 5480 (void *)&cmd_setbypass_mode_value, 5481 (void *)&cmd_setbypass_mode_port, 5482 NULL, 5483 }, 5484 }; 5485 5486 /* *** SET NIC BYPASS EVENT *** */ 5487 struct cmd_set_bypass_event_result { 5488 cmdline_fixed_string_t set; 5489 cmdline_fixed_string_t bypass; 5490 cmdline_fixed_string_t event; 5491 cmdline_fixed_string_t event_value; 5492 cmdline_fixed_string_t mode; 5493 cmdline_fixed_string_t mode_value; 5494 portid_t port_id; 5495 }; 5496 5497 static void 5498 cmd_set_bypass_event_parsed(void *parsed_result, 5499 __rte_unused struct cmdline *cl, 5500 __rte_unused void *data) 5501 { 5502 int32_t rc = -EINVAL; 5503 struct cmd_set_bypass_event_result *res = parsed_result; 5504 portid_t port_id = res->port_id; 5505 5506 #if defined RTE_NET_IXGBE && defined RTE_LIBRTE_IXGBE_BYPASS 5507 uint32_t bypass_event = RTE_PMD_IXGBE_BYPASS_EVENT_NONE; 5508 uint32_t bypass_mode = RTE_PMD_IXGBE_BYPASS_MODE_NORMAL; 5509 5510 if (!strcmp(res->event_value, "timeout")) 5511 bypass_event = RTE_PMD_IXGBE_BYPASS_EVENT_TIMEOUT; 5512 else if (!strcmp(res->event_value, "os_on")) 5513 bypass_event = RTE_PMD_IXGBE_BYPASS_EVENT_OS_ON; 5514 else if (!strcmp(res->event_value, "os_off")) 5515 bypass_event = RTE_PMD_IXGBE_BYPASS_EVENT_OS_OFF; 5516 else if (!strcmp(res->event_value, "power_on")) 5517 bypass_event = RTE_PMD_IXGBE_BYPASS_EVENT_POWER_ON; 5518 else if (!strcmp(res->event_value, "power_off")) 5519 bypass_event = RTE_PMD_IXGBE_BYPASS_EVENT_POWER_OFF; 5520 else 5521 bypass_event = RTE_PMD_IXGBE_BYPASS_EVENT_NONE; 5522 5523 if (!strcmp(res->mode_value, "bypass")) 5524 bypass_mode = RTE_PMD_IXGBE_BYPASS_MODE_BYPASS; 5525 else if (!strcmp(res->mode_value, "isolate")) 5526 bypass_mode = RTE_PMD_IXGBE_BYPASS_MODE_ISOLATE; 5527 else 5528 bypass_mode = RTE_PMD_IXGBE_BYPASS_MODE_NORMAL; 5529 5530 /* Set the watchdog timeout. */ 5531 if (bypass_event == RTE_PMD_IXGBE_BYPASS_EVENT_TIMEOUT) { 5532 5533 rc = -EINVAL; 5534 if (RTE_PMD_IXGBE_BYPASS_TMT_VALID(bypass_timeout)) { 5535 rc = rte_pmd_ixgbe_bypass_wd_timeout_store(port_id, 5536 bypass_timeout); 5537 } 5538 if (rc != 0) { 5539 printf("Failed to set timeout value %u " 5540 "for port %d, errto code: %d.\n", 5541 bypass_timeout, port_id, rc); 5542 } 5543 } 5544 5545 /* Set the bypass event to transition to bypass mode. */ 5546 rc = rte_pmd_ixgbe_bypass_event_store(port_id, bypass_event, 5547 bypass_mode); 5548 #endif 5549 5550 if (rc != 0) 5551 printf("\t Failed to set bypass event for port = %d.\n", 5552 port_id); 5553 } 5554 5555 cmdline_parse_token_string_t cmd_setbypass_event_set = 5556 TOKEN_STRING_INITIALIZER(struct cmd_set_bypass_event_result, 5557 set, "set"); 5558 cmdline_parse_token_string_t cmd_setbypass_event_bypass = 5559 TOKEN_STRING_INITIALIZER(struct cmd_set_bypass_event_result, 5560 bypass, "bypass"); 5561 cmdline_parse_token_string_t cmd_setbypass_event_event = 5562 TOKEN_STRING_INITIALIZER(struct cmd_set_bypass_event_result, 5563 event, "event"); 5564 cmdline_parse_token_string_t cmd_setbypass_event_event_value = 5565 TOKEN_STRING_INITIALIZER(struct cmd_set_bypass_event_result, 5566 event_value, "none#timeout#os_off#os_on#power_on#power_off"); 5567 cmdline_parse_token_string_t cmd_setbypass_event_mode = 5568 TOKEN_STRING_INITIALIZER(struct cmd_set_bypass_event_result, 5569 mode, "mode"); 5570 cmdline_parse_token_string_t cmd_setbypass_event_mode_value = 5571 TOKEN_STRING_INITIALIZER(struct cmd_set_bypass_event_result, 5572 mode_value, "normal#bypass#isolate"); 5573 cmdline_parse_token_num_t cmd_setbypass_event_port = 5574 TOKEN_NUM_INITIALIZER(struct cmd_set_bypass_event_result, 5575 port_id, RTE_UINT16); 5576 5577 cmdline_parse_inst_t cmd_set_bypass_event = { 5578 .f = cmd_set_bypass_event_parsed, 5579 .help_str = "set bypass event none|timeout|os_on|os_off|power_on|" 5580 "power_off mode normal|bypass|isolate <port_id>: " 5581 "Set the NIC bypass event mode for port_id", 5582 .data = NULL, 5583 .tokens = { 5584 (void *)&cmd_setbypass_event_set, 5585 (void *)&cmd_setbypass_event_bypass, 5586 (void *)&cmd_setbypass_event_event, 5587 (void *)&cmd_setbypass_event_event_value, 5588 (void *)&cmd_setbypass_event_mode, 5589 (void *)&cmd_setbypass_event_mode_value, 5590 (void *)&cmd_setbypass_event_port, 5591 NULL, 5592 }, 5593 }; 5594 5595 5596 /* *** SET NIC BYPASS TIMEOUT *** */ 5597 struct cmd_set_bypass_timeout_result { 5598 cmdline_fixed_string_t set; 5599 cmdline_fixed_string_t bypass; 5600 cmdline_fixed_string_t timeout; 5601 cmdline_fixed_string_t value; 5602 }; 5603 5604 static void 5605 cmd_set_bypass_timeout_parsed(void *parsed_result, 5606 __rte_unused struct cmdline *cl, 5607 __rte_unused void *data) 5608 { 5609 __rte_unused struct cmd_set_bypass_timeout_result *res = parsed_result; 5610 5611 #if defined RTE_NET_IXGBE && defined RTE_LIBRTE_IXGBE_BYPASS 5612 if (!strcmp(res->value, "1.5")) 5613 bypass_timeout = RTE_PMD_IXGBE_BYPASS_TMT_1_5_SEC; 5614 else if (!strcmp(res->value, "2")) 5615 bypass_timeout = RTE_PMD_IXGBE_BYPASS_TMT_2_SEC; 5616 else if (!strcmp(res->value, "3")) 5617 bypass_timeout = RTE_PMD_IXGBE_BYPASS_TMT_3_SEC; 5618 else if (!strcmp(res->value, "4")) 5619 bypass_timeout = RTE_PMD_IXGBE_BYPASS_TMT_4_SEC; 5620 else if (!strcmp(res->value, "8")) 5621 bypass_timeout = RTE_PMD_IXGBE_BYPASS_TMT_8_SEC; 5622 else if (!strcmp(res->value, "16")) 5623 bypass_timeout = RTE_PMD_IXGBE_BYPASS_TMT_16_SEC; 5624 else if (!strcmp(res->value, "32")) 5625 bypass_timeout = RTE_PMD_IXGBE_BYPASS_TMT_32_SEC; 5626 else 5627 bypass_timeout = RTE_PMD_IXGBE_BYPASS_TMT_OFF; 5628 #endif 5629 } 5630 5631 cmdline_parse_token_string_t cmd_setbypass_timeout_set = 5632 TOKEN_STRING_INITIALIZER(struct cmd_set_bypass_timeout_result, 5633 set, "set"); 5634 cmdline_parse_token_string_t cmd_setbypass_timeout_bypass = 5635 TOKEN_STRING_INITIALIZER(struct cmd_set_bypass_timeout_result, 5636 bypass, "bypass"); 5637 cmdline_parse_token_string_t cmd_setbypass_timeout_timeout = 5638 TOKEN_STRING_INITIALIZER(struct cmd_set_bypass_timeout_result, 5639 timeout, "timeout"); 5640 cmdline_parse_token_string_t cmd_setbypass_timeout_value = 5641 TOKEN_STRING_INITIALIZER(struct cmd_set_bypass_timeout_result, 5642 value, "0#1.5#2#3#4#8#16#32"); 5643 5644 cmdline_parse_inst_t cmd_set_bypass_timeout = { 5645 .f = cmd_set_bypass_timeout_parsed, 5646 .help_str = "set bypass timeout 0|1.5|2|3|4|8|16|32: " 5647 "Set the NIC bypass watchdog timeout in seconds", 5648 .data = NULL, 5649 .tokens = { 5650 (void *)&cmd_setbypass_timeout_set, 5651 (void *)&cmd_setbypass_timeout_bypass, 5652 (void *)&cmd_setbypass_timeout_timeout, 5653 (void *)&cmd_setbypass_timeout_value, 5654 NULL, 5655 }, 5656 }; 5657 5658 /* *** SHOW NIC BYPASS MODE *** */ 5659 struct cmd_show_bypass_config_result { 5660 cmdline_fixed_string_t show; 5661 cmdline_fixed_string_t bypass; 5662 cmdline_fixed_string_t config; 5663 portid_t port_id; 5664 }; 5665 5666 static void 5667 cmd_show_bypass_config_parsed(void *parsed_result, 5668 __rte_unused struct cmdline *cl, 5669 __rte_unused void *data) 5670 { 5671 struct cmd_show_bypass_config_result *res = parsed_result; 5672 portid_t port_id = res->port_id; 5673 int rc = -EINVAL; 5674 #if defined RTE_NET_IXGBE && defined RTE_LIBRTE_IXGBE_BYPASS 5675 uint32_t event_mode; 5676 uint32_t bypass_mode; 5677 uint32_t timeout = bypass_timeout; 5678 unsigned int i; 5679 5680 static const char * const timeouts[RTE_PMD_IXGBE_BYPASS_TMT_NUM] = 5681 {"off", "1.5", "2", "3", "4", "8", "16", "32"}; 5682 static const char * const modes[RTE_PMD_IXGBE_BYPASS_MODE_NUM] = 5683 {"UNKNOWN", "normal", "bypass", "isolate"}; 5684 static const char * const events[RTE_PMD_IXGBE_BYPASS_EVENT_NUM] = { 5685 "NONE", 5686 "OS/board on", 5687 "power supply on", 5688 "OS/board off", 5689 "power supply off", 5690 "timeout"}; 5691 5692 /* Display the bypass mode.*/ 5693 if (rte_pmd_ixgbe_bypass_state_show(port_id, &bypass_mode) != 0) { 5694 printf("\tFailed to get bypass mode for port = %d\n", port_id); 5695 return; 5696 } 5697 else { 5698 if (!RTE_PMD_IXGBE_BYPASS_MODE_VALID(bypass_mode)) 5699 bypass_mode = RTE_PMD_IXGBE_BYPASS_MODE_NONE; 5700 5701 printf("\tbypass mode = %s\n", modes[bypass_mode]); 5702 } 5703 5704 /* Display the bypass timeout.*/ 5705 if (!RTE_PMD_IXGBE_BYPASS_TMT_VALID(timeout)) 5706 timeout = RTE_PMD_IXGBE_BYPASS_TMT_OFF; 5707 5708 printf("\tbypass timeout = %s\n", timeouts[timeout]); 5709 5710 /* Display the bypass events and associated modes. */ 5711 for (i = RTE_PMD_IXGBE_BYPASS_EVENT_START; i < RTE_DIM(events); i++) { 5712 5713 if (rte_pmd_ixgbe_bypass_event_show(port_id, i, &event_mode)) { 5714 printf("\tFailed to get bypass mode for event = %s\n", 5715 events[i]); 5716 } else { 5717 if (!RTE_PMD_IXGBE_BYPASS_MODE_VALID(event_mode)) 5718 event_mode = RTE_PMD_IXGBE_BYPASS_MODE_NONE; 5719 5720 printf("\tbypass event: %-16s = %s\n", events[i], 5721 modes[event_mode]); 5722 } 5723 } 5724 #endif 5725 if (rc != 0) 5726 printf("\tFailed to get bypass configuration for port = %d\n", 5727 port_id); 5728 } 5729 5730 cmdline_parse_token_string_t cmd_showbypass_config_show = 5731 TOKEN_STRING_INITIALIZER(struct cmd_show_bypass_config_result, 5732 show, "show"); 5733 cmdline_parse_token_string_t cmd_showbypass_config_bypass = 5734 TOKEN_STRING_INITIALIZER(struct cmd_show_bypass_config_result, 5735 bypass, "bypass"); 5736 cmdline_parse_token_string_t cmd_showbypass_config_config = 5737 TOKEN_STRING_INITIALIZER(struct cmd_show_bypass_config_result, 5738 config, "config"); 5739 cmdline_parse_token_num_t cmd_showbypass_config_port = 5740 TOKEN_NUM_INITIALIZER(struct cmd_show_bypass_config_result, 5741 port_id, RTE_UINT16); 5742 5743 cmdline_parse_inst_t cmd_show_bypass_config = { 5744 .f = cmd_show_bypass_config_parsed, 5745 .help_str = "show bypass config <port_id>: " 5746 "Show the NIC bypass config for port_id", 5747 .data = NULL, 5748 .tokens = { 5749 (void *)&cmd_showbypass_config_show, 5750 (void *)&cmd_showbypass_config_bypass, 5751 (void *)&cmd_showbypass_config_config, 5752 (void *)&cmd_showbypass_config_port, 5753 NULL, 5754 }, 5755 }; 5756 5757 #ifdef RTE_NET_BOND 5758 /* *** SET BONDING MODE *** */ 5759 struct cmd_set_bonding_mode_result { 5760 cmdline_fixed_string_t set; 5761 cmdline_fixed_string_t bonding; 5762 cmdline_fixed_string_t mode; 5763 uint8_t value; 5764 portid_t port_id; 5765 }; 5766 5767 static void cmd_set_bonding_mode_parsed(void *parsed_result, 5768 __rte_unused struct cmdline *cl, 5769 __rte_unused void *data) 5770 { 5771 struct cmd_set_bonding_mode_result *res = parsed_result; 5772 portid_t port_id = res->port_id; 5773 5774 /* Set the bonding mode for the relevant port. */ 5775 if (0 != rte_eth_bond_mode_set(port_id, res->value)) 5776 printf("\t Failed to set bonding mode for port = %d.\n", port_id); 5777 } 5778 5779 cmdline_parse_token_string_t cmd_setbonding_mode_set = 5780 TOKEN_STRING_INITIALIZER(struct cmd_set_bonding_mode_result, 5781 set, "set"); 5782 cmdline_parse_token_string_t cmd_setbonding_mode_bonding = 5783 TOKEN_STRING_INITIALIZER(struct cmd_set_bonding_mode_result, 5784 bonding, "bonding"); 5785 cmdline_parse_token_string_t cmd_setbonding_mode_mode = 5786 TOKEN_STRING_INITIALIZER(struct cmd_set_bonding_mode_result, 5787 mode, "mode"); 5788 cmdline_parse_token_num_t cmd_setbonding_mode_value = 5789 TOKEN_NUM_INITIALIZER(struct cmd_set_bonding_mode_result, 5790 value, RTE_UINT8); 5791 cmdline_parse_token_num_t cmd_setbonding_mode_port = 5792 TOKEN_NUM_INITIALIZER(struct cmd_set_bonding_mode_result, 5793 port_id, RTE_UINT16); 5794 5795 cmdline_parse_inst_t cmd_set_bonding_mode = { 5796 .f = cmd_set_bonding_mode_parsed, 5797 .help_str = "set bonding mode <mode_value> <port_id>: " 5798 "Set the bonding mode for port_id", 5799 .data = NULL, 5800 .tokens = { 5801 (void *) &cmd_setbonding_mode_set, 5802 (void *) &cmd_setbonding_mode_bonding, 5803 (void *) &cmd_setbonding_mode_mode, 5804 (void *) &cmd_setbonding_mode_value, 5805 (void *) &cmd_setbonding_mode_port, 5806 NULL 5807 } 5808 }; 5809 5810 /* *** SET BONDING SLOW_QUEUE SW/HW *** */ 5811 struct cmd_set_bonding_lacp_dedicated_queues_result { 5812 cmdline_fixed_string_t set; 5813 cmdline_fixed_string_t bonding; 5814 cmdline_fixed_string_t lacp; 5815 cmdline_fixed_string_t dedicated_queues; 5816 portid_t port_id; 5817 cmdline_fixed_string_t mode; 5818 }; 5819 5820 static void cmd_set_bonding_lacp_dedicated_queues_parsed(void *parsed_result, 5821 __rte_unused struct cmdline *cl, 5822 __rte_unused void *data) 5823 { 5824 struct cmd_set_bonding_lacp_dedicated_queues_result *res = parsed_result; 5825 portid_t port_id = res->port_id; 5826 struct rte_port *port; 5827 5828 port = &ports[port_id]; 5829 5830 /** Check if the port is not started **/ 5831 if (port->port_status != RTE_PORT_STOPPED) { 5832 printf("Please stop port %d first\n", port_id); 5833 return; 5834 } 5835 5836 if (!strcmp(res->mode, "enable")) { 5837 if (rte_eth_bond_8023ad_dedicated_queues_enable(port_id) == 0) 5838 printf("Dedicate queues for LACP control packets" 5839 " enabled\n"); 5840 else 5841 printf("Enabling dedicate queues for LACP control " 5842 "packets on port %d failed\n", port_id); 5843 } else if (!strcmp(res->mode, "disable")) { 5844 if (rte_eth_bond_8023ad_dedicated_queues_disable(port_id) == 0) 5845 printf("Dedicated queues for LACP control packets " 5846 "disabled\n"); 5847 else 5848 printf("Disabling dedicated queues for LACP control " 5849 "traffic on port %d failed\n", port_id); 5850 } 5851 } 5852 5853 cmdline_parse_token_string_t cmd_setbonding_lacp_dedicated_queues_set = 5854 TOKEN_STRING_INITIALIZER(struct cmd_set_bonding_lacp_dedicated_queues_result, 5855 set, "set"); 5856 cmdline_parse_token_string_t cmd_setbonding_lacp_dedicated_queues_bonding = 5857 TOKEN_STRING_INITIALIZER(struct cmd_set_bonding_lacp_dedicated_queues_result, 5858 bonding, "bonding"); 5859 cmdline_parse_token_string_t cmd_setbonding_lacp_dedicated_queues_lacp = 5860 TOKEN_STRING_INITIALIZER(struct cmd_set_bonding_lacp_dedicated_queues_result, 5861 lacp, "lacp"); 5862 cmdline_parse_token_string_t cmd_setbonding_lacp_dedicated_queues_dedicated_queues = 5863 TOKEN_STRING_INITIALIZER(struct cmd_set_bonding_lacp_dedicated_queues_result, 5864 dedicated_queues, "dedicated_queues"); 5865 cmdline_parse_token_num_t cmd_setbonding_lacp_dedicated_queues_port_id = 5866 TOKEN_NUM_INITIALIZER(struct cmd_set_bonding_lacp_dedicated_queues_result, 5867 port_id, RTE_UINT16); 5868 cmdline_parse_token_string_t cmd_setbonding_lacp_dedicated_queues_mode = 5869 TOKEN_STRING_INITIALIZER(struct cmd_set_bonding_lacp_dedicated_queues_result, 5870 mode, "enable#disable"); 5871 5872 cmdline_parse_inst_t cmd_set_lacp_dedicated_queues = { 5873 .f = cmd_set_bonding_lacp_dedicated_queues_parsed, 5874 .help_str = "set bonding lacp dedicated_queues <port_id> " 5875 "enable|disable: " 5876 "Enable/disable dedicated queues for LACP control traffic for port_id", 5877 .data = NULL, 5878 .tokens = { 5879 (void *)&cmd_setbonding_lacp_dedicated_queues_set, 5880 (void *)&cmd_setbonding_lacp_dedicated_queues_bonding, 5881 (void *)&cmd_setbonding_lacp_dedicated_queues_lacp, 5882 (void *)&cmd_setbonding_lacp_dedicated_queues_dedicated_queues, 5883 (void *)&cmd_setbonding_lacp_dedicated_queues_port_id, 5884 (void *)&cmd_setbonding_lacp_dedicated_queues_mode, 5885 NULL 5886 } 5887 }; 5888 5889 /* *** SET BALANCE XMIT POLICY *** */ 5890 struct cmd_set_bonding_balance_xmit_policy_result { 5891 cmdline_fixed_string_t set; 5892 cmdline_fixed_string_t bonding; 5893 cmdline_fixed_string_t balance_xmit_policy; 5894 portid_t port_id; 5895 cmdline_fixed_string_t policy; 5896 }; 5897 5898 static void cmd_set_bonding_balance_xmit_policy_parsed(void *parsed_result, 5899 __rte_unused struct cmdline *cl, 5900 __rte_unused void *data) 5901 { 5902 struct cmd_set_bonding_balance_xmit_policy_result *res = parsed_result; 5903 portid_t port_id = res->port_id; 5904 uint8_t policy; 5905 5906 if (!strcmp(res->policy, "l2")) { 5907 policy = BALANCE_XMIT_POLICY_LAYER2; 5908 } else if (!strcmp(res->policy, "l23")) { 5909 policy = BALANCE_XMIT_POLICY_LAYER23; 5910 } else if (!strcmp(res->policy, "l34")) { 5911 policy = BALANCE_XMIT_POLICY_LAYER34; 5912 } else { 5913 printf("\t Invalid xmit policy selection"); 5914 return; 5915 } 5916 5917 /* Set the bonding mode for the relevant port. */ 5918 if (0 != rte_eth_bond_xmit_policy_set(port_id, policy)) { 5919 printf("\t Failed to set bonding balance xmit policy for port = %d.\n", 5920 port_id); 5921 } 5922 } 5923 5924 cmdline_parse_token_string_t cmd_setbonding_balance_xmit_policy_set = 5925 TOKEN_STRING_INITIALIZER(struct cmd_set_bonding_balance_xmit_policy_result, 5926 set, "set"); 5927 cmdline_parse_token_string_t cmd_setbonding_balance_xmit_policy_bonding = 5928 TOKEN_STRING_INITIALIZER(struct cmd_set_bonding_balance_xmit_policy_result, 5929 bonding, "bonding"); 5930 cmdline_parse_token_string_t cmd_setbonding_balance_xmit_policy_balance_xmit_policy = 5931 TOKEN_STRING_INITIALIZER(struct cmd_set_bonding_balance_xmit_policy_result, 5932 balance_xmit_policy, "balance_xmit_policy"); 5933 cmdline_parse_token_num_t cmd_setbonding_balance_xmit_policy_port = 5934 TOKEN_NUM_INITIALIZER(struct cmd_set_bonding_balance_xmit_policy_result, 5935 port_id, RTE_UINT16); 5936 cmdline_parse_token_string_t cmd_setbonding_balance_xmit_policy_policy = 5937 TOKEN_STRING_INITIALIZER(struct cmd_set_bonding_balance_xmit_policy_result, 5938 policy, "l2#l23#l34"); 5939 5940 cmdline_parse_inst_t cmd_set_balance_xmit_policy = { 5941 .f = cmd_set_bonding_balance_xmit_policy_parsed, 5942 .help_str = "set bonding balance_xmit_policy <port_id> " 5943 "l2|l23|l34: " 5944 "Set the bonding balance_xmit_policy for port_id", 5945 .data = NULL, 5946 .tokens = { 5947 (void *)&cmd_setbonding_balance_xmit_policy_set, 5948 (void *)&cmd_setbonding_balance_xmit_policy_bonding, 5949 (void *)&cmd_setbonding_balance_xmit_policy_balance_xmit_policy, 5950 (void *)&cmd_setbonding_balance_xmit_policy_port, 5951 (void *)&cmd_setbonding_balance_xmit_policy_policy, 5952 NULL 5953 } 5954 }; 5955 5956 /* *** SHOW NIC BONDING CONFIGURATION *** */ 5957 struct cmd_show_bonding_config_result { 5958 cmdline_fixed_string_t show; 5959 cmdline_fixed_string_t bonding; 5960 cmdline_fixed_string_t config; 5961 portid_t port_id; 5962 }; 5963 5964 static void cmd_show_bonding_config_parsed(void *parsed_result, 5965 __rte_unused struct cmdline *cl, 5966 __rte_unused void *data) 5967 { 5968 struct cmd_show_bonding_config_result *res = parsed_result; 5969 int bonding_mode, agg_mode; 5970 portid_t slaves[RTE_MAX_ETHPORTS]; 5971 int num_slaves, num_active_slaves; 5972 int primary_id; 5973 int i; 5974 portid_t port_id = res->port_id; 5975 5976 /* Display the bonding mode.*/ 5977 bonding_mode = rte_eth_bond_mode_get(port_id); 5978 if (bonding_mode < 0) { 5979 printf("\tFailed to get bonding mode for port = %d\n", port_id); 5980 return; 5981 } else 5982 printf("\tBonding mode: %d\n", bonding_mode); 5983 5984 if (bonding_mode == BONDING_MODE_BALANCE) { 5985 int balance_xmit_policy; 5986 5987 balance_xmit_policy = rte_eth_bond_xmit_policy_get(port_id); 5988 if (balance_xmit_policy < 0) { 5989 printf("\tFailed to get balance xmit policy for port = %d\n", 5990 port_id); 5991 return; 5992 } else { 5993 printf("\tBalance Xmit Policy: "); 5994 5995 switch (balance_xmit_policy) { 5996 case BALANCE_XMIT_POLICY_LAYER2: 5997 printf("BALANCE_XMIT_POLICY_LAYER2"); 5998 break; 5999 case BALANCE_XMIT_POLICY_LAYER23: 6000 printf("BALANCE_XMIT_POLICY_LAYER23"); 6001 break; 6002 case BALANCE_XMIT_POLICY_LAYER34: 6003 printf("BALANCE_XMIT_POLICY_LAYER34"); 6004 break; 6005 } 6006 printf("\n"); 6007 } 6008 } 6009 6010 if (bonding_mode == BONDING_MODE_8023AD) { 6011 agg_mode = rte_eth_bond_8023ad_agg_selection_get(port_id); 6012 printf("\tIEEE802.3AD Aggregator Mode: "); 6013 switch (agg_mode) { 6014 case AGG_BANDWIDTH: 6015 printf("bandwidth"); 6016 break; 6017 case AGG_STABLE: 6018 printf("stable"); 6019 break; 6020 case AGG_COUNT: 6021 printf("count"); 6022 break; 6023 } 6024 printf("\n"); 6025 } 6026 6027 num_slaves = rte_eth_bond_slaves_get(port_id, slaves, RTE_MAX_ETHPORTS); 6028 6029 if (num_slaves < 0) { 6030 printf("\tFailed to get slave list for port = %d\n", port_id); 6031 return; 6032 } 6033 if (num_slaves > 0) { 6034 printf("\tSlaves (%d): [", num_slaves); 6035 for (i = 0; i < num_slaves - 1; i++) 6036 printf("%d ", slaves[i]); 6037 6038 printf("%d]\n", slaves[num_slaves - 1]); 6039 } else { 6040 printf("\tSlaves: []\n"); 6041 6042 } 6043 6044 num_active_slaves = rte_eth_bond_active_slaves_get(port_id, slaves, 6045 RTE_MAX_ETHPORTS); 6046 6047 if (num_active_slaves < 0) { 6048 printf("\tFailed to get active slave list for port = %d\n", port_id); 6049 return; 6050 } 6051 if (num_active_slaves > 0) { 6052 printf("\tActive Slaves (%d): [", num_active_slaves); 6053 for (i = 0; i < num_active_slaves - 1; i++) 6054 printf("%d ", slaves[i]); 6055 6056 printf("%d]\n", slaves[num_active_slaves - 1]); 6057 6058 } else { 6059 printf("\tActive Slaves: []\n"); 6060 6061 } 6062 6063 primary_id = rte_eth_bond_primary_get(port_id); 6064 if (primary_id < 0) { 6065 printf("\tFailed to get primary slave for port = %d\n", port_id); 6066 return; 6067 } else 6068 printf("\tPrimary: [%d]\n", primary_id); 6069 6070 } 6071 6072 cmdline_parse_token_string_t cmd_showbonding_config_show = 6073 TOKEN_STRING_INITIALIZER(struct cmd_show_bonding_config_result, 6074 show, "show"); 6075 cmdline_parse_token_string_t cmd_showbonding_config_bonding = 6076 TOKEN_STRING_INITIALIZER(struct cmd_show_bonding_config_result, 6077 bonding, "bonding"); 6078 cmdline_parse_token_string_t cmd_showbonding_config_config = 6079 TOKEN_STRING_INITIALIZER(struct cmd_show_bonding_config_result, 6080 config, "config"); 6081 cmdline_parse_token_num_t cmd_showbonding_config_port = 6082 TOKEN_NUM_INITIALIZER(struct cmd_show_bonding_config_result, 6083 port_id, RTE_UINT16); 6084 6085 cmdline_parse_inst_t cmd_show_bonding_config = { 6086 .f = cmd_show_bonding_config_parsed, 6087 .help_str = "show bonding config <port_id>: " 6088 "Show the bonding config for port_id", 6089 .data = NULL, 6090 .tokens = { 6091 (void *)&cmd_showbonding_config_show, 6092 (void *)&cmd_showbonding_config_bonding, 6093 (void *)&cmd_showbonding_config_config, 6094 (void *)&cmd_showbonding_config_port, 6095 NULL 6096 } 6097 }; 6098 6099 /* *** SET BONDING PRIMARY *** */ 6100 struct cmd_set_bonding_primary_result { 6101 cmdline_fixed_string_t set; 6102 cmdline_fixed_string_t bonding; 6103 cmdline_fixed_string_t primary; 6104 portid_t slave_id; 6105 portid_t port_id; 6106 }; 6107 6108 static void cmd_set_bonding_primary_parsed(void *parsed_result, 6109 __rte_unused struct cmdline *cl, 6110 __rte_unused void *data) 6111 { 6112 struct cmd_set_bonding_primary_result *res = parsed_result; 6113 portid_t master_port_id = res->port_id; 6114 portid_t slave_port_id = res->slave_id; 6115 6116 /* Set the primary slave for a bonded device. */ 6117 if (0 != rte_eth_bond_primary_set(master_port_id, slave_port_id)) { 6118 printf("\t Failed to set primary slave for port = %d.\n", 6119 master_port_id); 6120 return; 6121 } 6122 init_port_config(); 6123 } 6124 6125 cmdline_parse_token_string_t cmd_setbonding_primary_set = 6126 TOKEN_STRING_INITIALIZER(struct cmd_set_bonding_primary_result, 6127 set, "set"); 6128 cmdline_parse_token_string_t cmd_setbonding_primary_bonding = 6129 TOKEN_STRING_INITIALIZER(struct cmd_set_bonding_primary_result, 6130 bonding, "bonding"); 6131 cmdline_parse_token_string_t cmd_setbonding_primary_primary = 6132 TOKEN_STRING_INITIALIZER(struct cmd_set_bonding_primary_result, 6133 primary, "primary"); 6134 cmdline_parse_token_num_t cmd_setbonding_primary_slave = 6135 TOKEN_NUM_INITIALIZER(struct cmd_set_bonding_primary_result, 6136 slave_id, RTE_UINT16); 6137 cmdline_parse_token_num_t cmd_setbonding_primary_port = 6138 TOKEN_NUM_INITIALIZER(struct cmd_set_bonding_primary_result, 6139 port_id, RTE_UINT16); 6140 6141 cmdline_parse_inst_t cmd_set_bonding_primary = { 6142 .f = cmd_set_bonding_primary_parsed, 6143 .help_str = "set bonding primary <slave_id> <port_id>: " 6144 "Set the primary slave for port_id", 6145 .data = NULL, 6146 .tokens = { 6147 (void *)&cmd_setbonding_primary_set, 6148 (void *)&cmd_setbonding_primary_bonding, 6149 (void *)&cmd_setbonding_primary_primary, 6150 (void *)&cmd_setbonding_primary_slave, 6151 (void *)&cmd_setbonding_primary_port, 6152 NULL 6153 } 6154 }; 6155 6156 /* *** ADD SLAVE *** */ 6157 struct cmd_add_bonding_slave_result { 6158 cmdline_fixed_string_t add; 6159 cmdline_fixed_string_t bonding; 6160 cmdline_fixed_string_t slave; 6161 portid_t slave_id; 6162 portid_t port_id; 6163 }; 6164 6165 static void cmd_add_bonding_slave_parsed(void *parsed_result, 6166 __rte_unused struct cmdline *cl, 6167 __rte_unused void *data) 6168 { 6169 struct cmd_add_bonding_slave_result *res = parsed_result; 6170 portid_t master_port_id = res->port_id; 6171 portid_t slave_port_id = res->slave_id; 6172 6173 /* add the slave for a bonded device. */ 6174 if (0 != rte_eth_bond_slave_add(master_port_id, slave_port_id)) { 6175 printf("\t Failed to add slave %d to master port = %d.\n", 6176 slave_port_id, master_port_id); 6177 return; 6178 } 6179 init_port_config(); 6180 set_port_slave_flag(slave_port_id); 6181 } 6182 6183 cmdline_parse_token_string_t cmd_addbonding_slave_add = 6184 TOKEN_STRING_INITIALIZER(struct cmd_add_bonding_slave_result, 6185 add, "add"); 6186 cmdline_parse_token_string_t cmd_addbonding_slave_bonding = 6187 TOKEN_STRING_INITIALIZER(struct cmd_add_bonding_slave_result, 6188 bonding, "bonding"); 6189 cmdline_parse_token_string_t cmd_addbonding_slave_slave = 6190 TOKEN_STRING_INITIALIZER(struct cmd_add_bonding_slave_result, 6191 slave, "slave"); 6192 cmdline_parse_token_num_t cmd_addbonding_slave_slaveid = 6193 TOKEN_NUM_INITIALIZER(struct cmd_add_bonding_slave_result, 6194 slave_id, RTE_UINT16); 6195 cmdline_parse_token_num_t cmd_addbonding_slave_port = 6196 TOKEN_NUM_INITIALIZER(struct cmd_add_bonding_slave_result, 6197 port_id, RTE_UINT16); 6198 6199 cmdline_parse_inst_t cmd_add_bonding_slave = { 6200 .f = cmd_add_bonding_slave_parsed, 6201 .help_str = "add bonding slave <slave_id> <port_id>: " 6202 "Add a slave device to a bonded device", 6203 .data = NULL, 6204 .tokens = { 6205 (void *)&cmd_addbonding_slave_add, 6206 (void *)&cmd_addbonding_slave_bonding, 6207 (void *)&cmd_addbonding_slave_slave, 6208 (void *)&cmd_addbonding_slave_slaveid, 6209 (void *)&cmd_addbonding_slave_port, 6210 NULL 6211 } 6212 }; 6213 6214 /* *** REMOVE SLAVE *** */ 6215 struct cmd_remove_bonding_slave_result { 6216 cmdline_fixed_string_t remove; 6217 cmdline_fixed_string_t bonding; 6218 cmdline_fixed_string_t slave; 6219 portid_t slave_id; 6220 portid_t port_id; 6221 }; 6222 6223 static void cmd_remove_bonding_slave_parsed(void *parsed_result, 6224 __rte_unused struct cmdline *cl, 6225 __rte_unused void *data) 6226 { 6227 struct cmd_remove_bonding_slave_result *res = parsed_result; 6228 portid_t master_port_id = res->port_id; 6229 portid_t slave_port_id = res->slave_id; 6230 6231 /* remove the slave from a bonded device. */ 6232 if (0 != rte_eth_bond_slave_remove(master_port_id, slave_port_id)) { 6233 printf("\t Failed to remove slave %d from master port = %d.\n", 6234 slave_port_id, master_port_id); 6235 return; 6236 } 6237 init_port_config(); 6238 clear_port_slave_flag(slave_port_id); 6239 } 6240 6241 cmdline_parse_token_string_t cmd_removebonding_slave_remove = 6242 TOKEN_STRING_INITIALIZER(struct cmd_remove_bonding_slave_result, 6243 remove, "remove"); 6244 cmdline_parse_token_string_t cmd_removebonding_slave_bonding = 6245 TOKEN_STRING_INITIALIZER(struct cmd_remove_bonding_slave_result, 6246 bonding, "bonding"); 6247 cmdline_parse_token_string_t cmd_removebonding_slave_slave = 6248 TOKEN_STRING_INITIALIZER(struct cmd_remove_bonding_slave_result, 6249 slave, "slave"); 6250 cmdline_parse_token_num_t cmd_removebonding_slave_slaveid = 6251 TOKEN_NUM_INITIALIZER(struct cmd_remove_bonding_slave_result, 6252 slave_id, RTE_UINT16); 6253 cmdline_parse_token_num_t cmd_removebonding_slave_port = 6254 TOKEN_NUM_INITIALIZER(struct cmd_remove_bonding_slave_result, 6255 port_id, RTE_UINT16); 6256 6257 cmdline_parse_inst_t cmd_remove_bonding_slave = { 6258 .f = cmd_remove_bonding_slave_parsed, 6259 .help_str = "remove bonding slave <slave_id> <port_id>: " 6260 "Remove a slave device from a bonded device", 6261 .data = NULL, 6262 .tokens = { 6263 (void *)&cmd_removebonding_slave_remove, 6264 (void *)&cmd_removebonding_slave_bonding, 6265 (void *)&cmd_removebonding_slave_slave, 6266 (void *)&cmd_removebonding_slave_slaveid, 6267 (void *)&cmd_removebonding_slave_port, 6268 NULL 6269 } 6270 }; 6271 6272 /* *** CREATE BONDED DEVICE *** */ 6273 struct cmd_create_bonded_device_result { 6274 cmdline_fixed_string_t create; 6275 cmdline_fixed_string_t bonded; 6276 cmdline_fixed_string_t device; 6277 uint8_t mode; 6278 uint8_t socket; 6279 }; 6280 6281 static int bond_dev_num = 0; 6282 6283 static void cmd_create_bonded_device_parsed(void *parsed_result, 6284 __rte_unused struct cmdline *cl, 6285 __rte_unused void *data) 6286 { 6287 struct cmd_create_bonded_device_result *res = parsed_result; 6288 char ethdev_name[RTE_ETH_NAME_MAX_LEN]; 6289 int port_id; 6290 int ret; 6291 6292 if (test_done == 0) { 6293 printf("Please stop forwarding first\n"); 6294 return; 6295 } 6296 6297 snprintf(ethdev_name, RTE_ETH_NAME_MAX_LEN, "net_bonding_testpmd_%d", 6298 bond_dev_num++); 6299 6300 /* Create a new bonded device. */ 6301 port_id = rte_eth_bond_create(ethdev_name, res->mode, res->socket); 6302 if (port_id < 0) { 6303 printf("\t Failed to create bonded device.\n"); 6304 return; 6305 } else { 6306 printf("Created new bonded device %s on (port %d).\n", ethdev_name, 6307 port_id); 6308 6309 /* Update number of ports */ 6310 nb_ports = rte_eth_dev_count_avail(); 6311 reconfig(port_id, res->socket); 6312 ret = rte_eth_promiscuous_enable(port_id); 6313 if (ret != 0) 6314 printf("Failed to enable promiscuous mode for port %u: %s - ignore\n", 6315 port_id, rte_strerror(-ret)); 6316 6317 ports[port_id].need_setup = 0; 6318 ports[port_id].port_status = RTE_PORT_STOPPED; 6319 } 6320 6321 } 6322 6323 cmdline_parse_token_string_t cmd_createbonded_device_create = 6324 TOKEN_STRING_INITIALIZER(struct cmd_create_bonded_device_result, 6325 create, "create"); 6326 cmdline_parse_token_string_t cmd_createbonded_device_bonded = 6327 TOKEN_STRING_INITIALIZER(struct cmd_create_bonded_device_result, 6328 bonded, "bonded"); 6329 cmdline_parse_token_string_t cmd_createbonded_device_device = 6330 TOKEN_STRING_INITIALIZER(struct cmd_create_bonded_device_result, 6331 device, "device"); 6332 cmdline_parse_token_num_t cmd_createbonded_device_mode = 6333 TOKEN_NUM_INITIALIZER(struct cmd_create_bonded_device_result, 6334 mode, RTE_UINT8); 6335 cmdline_parse_token_num_t cmd_createbonded_device_socket = 6336 TOKEN_NUM_INITIALIZER(struct cmd_create_bonded_device_result, 6337 socket, RTE_UINT8); 6338 6339 cmdline_parse_inst_t cmd_create_bonded_device = { 6340 .f = cmd_create_bonded_device_parsed, 6341 .help_str = "create bonded device <mode> <socket>: " 6342 "Create a new bonded device with specific bonding mode and socket", 6343 .data = NULL, 6344 .tokens = { 6345 (void *)&cmd_createbonded_device_create, 6346 (void *)&cmd_createbonded_device_bonded, 6347 (void *)&cmd_createbonded_device_device, 6348 (void *)&cmd_createbonded_device_mode, 6349 (void *)&cmd_createbonded_device_socket, 6350 NULL 6351 } 6352 }; 6353 6354 /* *** SET MAC ADDRESS IN BONDED DEVICE *** */ 6355 struct cmd_set_bond_mac_addr_result { 6356 cmdline_fixed_string_t set; 6357 cmdline_fixed_string_t bonding; 6358 cmdline_fixed_string_t mac_addr; 6359 uint16_t port_num; 6360 struct rte_ether_addr address; 6361 }; 6362 6363 static void cmd_set_bond_mac_addr_parsed(void *parsed_result, 6364 __rte_unused struct cmdline *cl, 6365 __rte_unused void *data) 6366 { 6367 struct cmd_set_bond_mac_addr_result *res = parsed_result; 6368 int ret; 6369 6370 if (port_id_is_invalid(res->port_num, ENABLED_WARN)) 6371 return; 6372 6373 ret = rte_eth_bond_mac_address_set(res->port_num, &res->address); 6374 6375 /* check the return value and print it if is < 0 */ 6376 if (ret < 0) 6377 printf("set_bond_mac_addr error: (%s)\n", strerror(-ret)); 6378 } 6379 6380 cmdline_parse_token_string_t cmd_set_bond_mac_addr_set = 6381 TOKEN_STRING_INITIALIZER(struct cmd_set_bond_mac_addr_result, set, "set"); 6382 cmdline_parse_token_string_t cmd_set_bond_mac_addr_bonding = 6383 TOKEN_STRING_INITIALIZER(struct cmd_set_bond_mac_addr_result, bonding, 6384 "bonding"); 6385 cmdline_parse_token_string_t cmd_set_bond_mac_addr_mac = 6386 TOKEN_STRING_INITIALIZER(struct cmd_set_bond_mac_addr_result, mac_addr, 6387 "mac_addr"); 6388 cmdline_parse_token_num_t cmd_set_bond_mac_addr_portnum = 6389 TOKEN_NUM_INITIALIZER(struct cmd_set_bond_mac_addr_result, 6390 port_num, RTE_UINT16); 6391 cmdline_parse_token_etheraddr_t cmd_set_bond_mac_addr_addr = 6392 TOKEN_ETHERADDR_INITIALIZER(struct cmd_set_bond_mac_addr_result, address); 6393 6394 cmdline_parse_inst_t cmd_set_bond_mac_addr = { 6395 .f = cmd_set_bond_mac_addr_parsed, 6396 .data = (void *) 0, 6397 .help_str = "set bonding mac_addr <port_id> <mac_addr>", 6398 .tokens = { 6399 (void *)&cmd_set_bond_mac_addr_set, 6400 (void *)&cmd_set_bond_mac_addr_bonding, 6401 (void *)&cmd_set_bond_mac_addr_mac, 6402 (void *)&cmd_set_bond_mac_addr_portnum, 6403 (void *)&cmd_set_bond_mac_addr_addr, 6404 NULL 6405 } 6406 }; 6407 6408 6409 /* *** SET LINK STATUS MONITORING POLLING PERIOD ON BONDED DEVICE *** */ 6410 struct cmd_set_bond_mon_period_result { 6411 cmdline_fixed_string_t set; 6412 cmdline_fixed_string_t bonding; 6413 cmdline_fixed_string_t mon_period; 6414 uint16_t port_num; 6415 uint32_t period_ms; 6416 }; 6417 6418 static void cmd_set_bond_mon_period_parsed(void *parsed_result, 6419 __rte_unused struct cmdline *cl, 6420 __rte_unused void *data) 6421 { 6422 struct cmd_set_bond_mon_period_result *res = parsed_result; 6423 int ret; 6424 6425 ret = rte_eth_bond_link_monitoring_set(res->port_num, res->period_ms); 6426 6427 /* check the return value and print it if is < 0 */ 6428 if (ret < 0) 6429 printf("set_bond_mac_addr error: (%s)\n", strerror(-ret)); 6430 } 6431 6432 cmdline_parse_token_string_t cmd_set_bond_mon_period_set = 6433 TOKEN_STRING_INITIALIZER(struct cmd_set_bond_mon_period_result, 6434 set, "set"); 6435 cmdline_parse_token_string_t cmd_set_bond_mon_period_bonding = 6436 TOKEN_STRING_INITIALIZER(struct cmd_set_bond_mon_period_result, 6437 bonding, "bonding"); 6438 cmdline_parse_token_string_t cmd_set_bond_mon_period_mon_period = 6439 TOKEN_STRING_INITIALIZER(struct cmd_set_bond_mon_period_result, 6440 mon_period, "mon_period"); 6441 cmdline_parse_token_num_t cmd_set_bond_mon_period_portnum = 6442 TOKEN_NUM_INITIALIZER(struct cmd_set_bond_mon_period_result, 6443 port_num, RTE_UINT16); 6444 cmdline_parse_token_num_t cmd_set_bond_mon_period_period_ms = 6445 TOKEN_NUM_INITIALIZER(struct cmd_set_bond_mon_period_result, 6446 period_ms, RTE_UINT32); 6447 6448 cmdline_parse_inst_t cmd_set_bond_mon_period = { 6449 .f = cmd_set_bond_mon_period_parsed, 6450 .data = (void *) 0, 6451 .help_str = "set bonding mon_period <port_id> <period_ms>", 6452 .tokens = { 6453 (void *)&cmd_set_bond_mon_period_set, 6454 (void *)&cmd_set_bond_mon_period_bonding, 6455 (void *)&cmd_set_bond_mon_period_mon_period, 6456 (void *)&cmd_set_bond_mon_period_portnum, 6457 (void *)&cmd_set_bond_mon_period_period_ms, 6458 NULL 6459 } 6460 }; 6461 6462 6463 6464 struct cmd_set_bonding_agg_mode_policy_result { 6465 cmdline_fixed_string_t set; 6466 cmdline_fixed_string_t bonding; 6467 cmdline_fixed_string_t agg_mode; 6468 uint16_t port_num; 6469 cmdline_fixed_string_t policy; 6470 }; 6471 6472 6473 static void 6474 cmd_set_bonding_agg_mode(void *parsed_result, 6475 __rte_unused struct cmdline *cl, 6476 __rte_unused void *data) 6477 { 6478 struct cmd_set_bonding_agg_mode_policy_result *res = parsed_result; 6479 uint8_t policy = AGG_BANDWIDTH; 6480 6481 if (!strcmp(res->policy, "bandwidth")) 6482 policy = AGG_BANDWIDTH; 6483 else if (!strcmp(res->policy, "stable")) 6484 policy = AGG_STABLE; 6485 else if (!strcmp(res->policy, "count")) 6486 policy = AGG_COUNT; 6487 6488 rte_eth_bond_8023ad_agg_selection_set(res->port_num, policy); 6489 } 6490 6491 6492 cmdline_parse_token_string_t cmd_set_bonding_agg_mode_set = 6493 TOKEN_STRING_INITIALIZER(struct cmd_set_bonding_agg_mode_policy_result, 6494 set, "set"); 6495 cmdline_parse_token_string_t cmd_set_bonding_agg_mode_bonding = 6496 TOKEN_STRING_INITIALIZER(struct cmd_set_bonding_agg_mode_policy_result, 6497 bonding, "bonding"); 6498 6499 cmdline_parse_token_string_t cmd_set_bonding_agg_mode_agg_mode = 6500 TOKEN_STRING_INITIALIZER(struct cmd_set_bonding_agg_mode_policy_result, 6501 agg_mode, "agg_mode"); 6502 6503 cmdline_parse_token_num_t cmd_set_bonding_agg_mode_portnum = 6504 TOKEN_NUM_INITIALIZER(struct cmd_set_bonding_agg_mode_policy_result, 6505 port_num, RTE_UINT16); 6506 6507 cmdline_parse_token_string_t cmd_set_bonding_agg_mode_policy_string = 6508 TOKEN_STRING_INITIALIZER( 6509 struct cmd_set_bonding_balance_xmit_policy_result, 6510 policy, "stable#bandwidth#count"); 6511 6512 cmdline_parse_inst_t cmd_set_bonding_agg_mode_policy = { 6513 .f = cmd_set_bonding_agg_mode, 6514 .data = (void *) 0, 6515 .help_str = "set bonding mode IEEE802.3AD aggregator policy <port_id> <agg_name>", 6516 .tokens = { 6517 (void *)&cmd_set_bonding_agg_mode_set, 6518 (void *)&cmd_set_bonding_agg_mode_bonding, 6519 (void *)&cmd_set_bonding_agg_mode_agg_mode, 6520 (void *)&cmd_set_bonding_agg_mode_portnum, 6521 (void *)&cmd_set_bonding_agg_mode_policy_string, 6522 NULL 6523 } 6524 }; 6525 6526 6527 #endif /* RTE_NET_BOND */ 6528 6529 /* *** SET FORWARDING MODE *** */ 6530 struct cmd_set_fwd_mode_result { 6531 cmdline_fixed_string_t set; 6532 cmdline_fixed_string_t fwd; 6533 cmdline_fixed_string_t mode; 6534 }; 6535 6536 static void cmd_set_fwd_mode_parsed(void *parsed_result, 6537 __rte_unused struct cmdline *cl, 6538 __rte_unused void *data) 6539 { 6540 struct cmd_set_fwd_mode_result *res = parsed_result; 6541 6542 retry_enabled = 0; 6543 set_pkt_forwarding_mode(res->mode); 6544 } 6545 6546 cmdline_parse_token_string_t cmd_setfwd_set = 6547 TOKEN_STRING_INITIALIZER(struct cmd_set_fwd_mode_result, set, "set"); 6548 cmdline_parse_token_string_t cmd_setfwd_fwd = 6549 TOKEN_STRING_INITIALIZER(struct cmd_set_fwd_mode_result, fwd, "fwd"); 6550 cmdline_parse_token_string_t cmd_setfwd_mode = 6551 TOKEN_STRING_INITIALIZER(struct cmd_set_fwd_mode_result, mode, 6552 "" /* defined at init */); 6553 6554 cmdline_parse_inst_t cmd_set_fwd_mode = { 6555 .f = cmd_set_fwd_mode_parsed, 6556 .data = NULL, 6557 .help_str = NULL, /* defined at init */ 6558 .tokens = { 6559 (void *)&cmd_setfwd_set, 6560 (void *)&cmd_setfwd_fwd, 6561 (void *)&cmd_setfwd_mode, 6562 NULL, 6563 }, 6564 }; 6565 6566 static void cmd_set_fwd_mode_init(void) 6567 { 6568 char *modes, *c; 6569 static char token[128]; 6570 static char help[256]; 6571 cmdline_parse_token_string_t *token_struct; 6572 6573 modes = list_pkt_forwarding_modes(); 6574 snprintf(help, sizeof(help), "set fwd %s: " 6575 "Set packet forwarding mode", modes); 6576 cmd_set_fwd_mode.help_str = help; 6577 6578 /* string token separator is # */ 6579 for (c = token; *modes != '\0'; modes++) 6580 if (*modes == '|') 6581 *c++ = '#'; 6582 else 6583 *c++ = *modes; 6584 token_struct = (cmdline_parse_token_string_t*)cmd_set_fwd_mode.tokens[2]; 6585 token_struct->string_data.str = token; 6586 } 6587 6588 /* *** SET RETRY FORWARDING MODE *** */ 6589 struct cmd_set_fwd_retry_mode_result { 6590 cmdline_fixed_string_t set; 6591 cmdline_fixed_string_t fwd; 6592 cmdline_fixed_string_t mode; 6593 cmdline_fixed_string_t retry; 6594 }; 6595 6596 static void cmd_set_fwd_retry_mode_parsed(void *parsed_result, 6597 __rte_unused struct cmdline *cl, 6598 __rte_unused void *data) 6599 { 6600 struct cmd_set_fwd_retry_mode_result *res = parsed_result; 6601 6602 retry_enabled = 1; 6603 set_pkt_forwarding_mode(res->mode); 6604 } 6605 6606 cmdline_parse_token_string_t cmd_setfwd_retry_set = 6607 TOKEN_STRING_INITIALIZER(struct cmd_set_fwd_retry_mode_result, 6608 set, "set"); 6609 cmdline_parse_token_string_t cmd_setfwd_retry_fwd = 6610 TOKEN_STRING_INITIALIZER(struct cmd_set_fwd_retry_mode_result, 6611 fwd, "fwd"); 6612 cmdline_parse_token_string_t cmd_setfwd_retry_mode = 6613 TOKEN_STRING_INITIALIZER(struct cmd_set_fwd_retry_mode_result, 6614 mode, 6615 "" /* defined at init */); 6616 cmdline_parse_token_string_t cmd_setfwd_retry_retry = 6617 TOKEN_STRING_INITIALIZER(struct cmd_set_fwd_retry_mode_result, 6618 retry, "retry"); 6619 6620 cmdline_parse_inst_t cmd_set_fwd_retry_mode = { 6621 .f = cmd_set_fwd_retry_mode_parsed, 6622 .data = NULL, 6623 .help_str = NULL, /* defined at init */ 6624 .tokens = { 6625 (void *)&cmd_setfwd_retry_set, 6626 (void *)&cmd_setfwd_retry_fwd, 6627 (void *)&cmd_setfwd_retry_mode, 6628 (void *)&cmd_setfwd_retry_retry, 6629 NULL, 6630 }, 6631 }; 6632 6633 static void cmd_set_fwd_retry_mode_init(void) 6634 { 6635 char *modes, *c; 6636 static char token[128]; 6637 static char help[256]; 6638 cmdline_parse_token_string_t *token_struct; 6639 6640 modes = list_pkt_forwarding_retry_modes(); 6641 snprintf(help, sizeof(help), "set fwd %s retry: " 6642 "Set packet forwarding mode with retry", modes); 6643 cmd_set_fwd_retry_mode.help_str = help; 6644 6645 /* string token separator is # */ 6646 for (c = token; *modes != '\0'; modes++) 6647 if (*modes == '|') 6648 *c++ = '#'; 6649 else 6650 *c++ = *modes; 6651 token_struct = (cmdline_parse_token_string_t *) 6652 cmd_set_fwd_retry_mode.tokens[2]; 6653 token_struct->string_data.str = token; 6654 } 6655 6656 /* *** SET BURST TX DELAY TIME RETRY NUMBER *** */ 6657 struct cmd_set_burst_tx_retry_result { 6658 cmdline_fixed_string_t set; 6659 cmdline_fixed_string_t burst; 6660 cmdline_fixed_string_t tx; 6661 cmdline_fixed_string_t delay; 6662 uint32_t time; 6663 cmdline_fixed_string_t retry; 6664 uint32_t retry_num; 6665 }; 6666 6667 static void cmd_set_burst_tx_retry_parsed(void *parsed_result, 6668 __rte_unused struct cmdline *cl, 6669 __rte_unused void *data) 6670 { 6671 struct cmd_set_burst_tx_retry_result *res = parsed_result; 6672 6673 if (!strcmp(res->set, "set") && !strcmp(res->burst, "burst") 6674 && !strcmp(res->tx, "tx")) { 6675 if (!strcmp(res->delay, "delay")) 6676 burst_tx_delay_time = res->time; 6677 if (!strcmp(res->retry, "retry")) 6678 burst_tx_retry_num = res->retry_num; 6679 } 6680 6681 } 6682 6683 cmdline_parse_token_string_t cmd_set_burst_tx_retry_set = 6684 TOKEN_STRING_INITIALIZER(struct cmd_set_burst_tx_retry_result, set, "set"); 6685 cmdline_parse_token_string_t cmd_set_burst_tx_retry_burst = 6686 TOKEN_STRING_INITIALIZER(struct cmd_set_burst_tx_retry_result, burst, 6687 "burst"); 6688 cmdline_parse_token_string_t cmd_set_burst_tx_retry_tx = 6689 TOKEN_STRING_INITIALIZER(struct cmd_set_burst_tx_retry_result, tx, "tx"); 6690 cmdline_parse_token_string_t cmd_set_burst_tx_retry_delay = 6691 TOKEN_STRING_INITIALIZER(struct cmd_set_burst_tx_retry_result, delay, "delay"); 6692 cmdline_parse_token_num_t cmd_set_burst_tx_retry_time = 6693 TOKEN_NUM_INITIALIZER(struct cmd_set_burst_tx_retry_result, time, 6694 RTE_UINT32); 6695 cmdline_parse_token_string_t cmd_set_burst_tx_retry_retry = 6696 TOKEN_STRING_INITIALIZER(struct cmd_set_burst_tx_retry_result, retry, "retry"); 6697 cmdline_parse_token_num_t cmd_set_burst_tx_retry_retry_num = 6698 TOKEN_NUM_INITIALIZER(struct cmd_set_burst_tx_retry_result, retry_num, 6699 RTE_UINT32); 6700 6701 cmdline_parse_inst_t cmd_set_burst_tx_retry = { 6702 .f = cmd_set_burst_tx_retry_parsed, 6703 .help_str = "set burst tx delay <delay_usec> retry <num_retry>", 6704 .tokens = { 6705 (void *)&cmd_set_burst_tx_retry_set, 6706 (void *)&cmd_set_burst_tx_retry_burst, 6707 (void *)&cmd_set_burst_tx_retry_tx, 6708 (void *)&cmd_set_burst_tx_retry_delay, 6709 (void *)&cmd_set_burst_tx_retry_time, 6710 (void *)&cmd_set_burst_tx_retry_retry, 6711 (void *)&cmd_set_burst_tx_retry_retry_num, 6712 NULL, 6713 }, 6714 }; 6715 6716 /* *** SET PROMISC MODE *** */ 6717 struct cmd_set_promisc_mode_result { 6718 cmdline_fixed_string_t set; 6719 cmdline_fixed_string_t promisc; 6720 cmdline_fixed_string_t port_all; /* valid if "allports" argument == 1 */ 6721 uint16_t port_num; /* valid if "allports" argument == 0 */ 6722 cmdline_fixed_string_t mode; 6723 }; 6724 6725 static void cmd_set_promisc_mode_parsed(void *parsed_result, 6726 __rte_unused struct cmdline *cl, 6727 void *allports) 6728 { 6729 struct cmd_set_promisc_mode_result *res = parsed_result; 6730 int enable; 6731 portid_t i; 6732 6733 if (!strcmp(res->mode, "on")) 6734 enable = 1; 6735 else 6736 enable = 0; 6737 6738 /* all ports */ 6739 if (allports) { 6740 RTE_ETH_FOREACH_DEV(i) 6741 eth_set_promisc_mode(i, enable); 6742 } else { 6743 eth_set_promisc_mode(res->port_num, enable); 6744 } 6745 } 6746 6747 cmdline_parse_token_string_t cmd_setpromisc_set = 6748 TOKEN_STRING_INITIALIZER(struct cmd_set_promisc_mode_result, set, "set"); 6749 cmdline_parse_token_string_t cmd_setpromisc_promisc = 6750 TOKEN_STRING_INITIALIZER(struct cmd_set_promisc_mode_result, promisc, 6751 "promisc"); 6752 cmdline_parse_token_string_t cmd_setpromisc_portall = 6753 TOKEN_STRING_INITIALIZER(struct cmd_set_promisc_mode_result, port_all, 6754 "all"); 6755 cmdline_parse_token_num_t cmd_setpromisc_portnum = 6756 TOKEN_NUM_INITIALIZER(struct cmd_set_promisc_mode_result, port_num, 6757 RTE_UINT16); 6758 cmdline_parse_token_string_t cmd_setpromisc_mode = 6759 TOKEN_STRING_INITIALIZER(struct cmd_set_promisc_mode_result, mode, 6760 "on#off"); 6761 6762 cmdline_parse_inst_t cmd_set_promisc_mode_all = { 6763 .f = cmd_set_promisc_mode_parsed, 6764 .data = (void *)1, 6765 .help_str = "set promisc all on|off: Set promisc mode for all ports", 6766 .tokens = { 6767 (void *)&cmd_setpromisc_set, 6768 (void *)&cmd_setpromisc_promisc, 6769 (void *)&cmd_setpromisc_portall, 6770 (void *)&cmd_setpromisc_mode, 6771 NULL, 6772 }, 6773 }; 6774 6775 cmdline_parse_inst_t cmd_set_promisc_mode_one = { 6776 .f = cmd_set_promisc_mode_parsed, 6777 .data = (void *)0, 6778 .help_str = "set promisc <port_id> on|off: Set promisc mode on port_id", 6779 .tokens = { 6780 (void *)&cmd_setpromisc_set, 6781 (void *)&cmd_setpromisc_promisc, 6782 (void *)&cmd_setpromisc_portnum, 6783 (void *)&cmd_setpromisc_mode, 6784 NULL, 6785 }, 6786 }; 6787 6788 /* *** SET ALLMULTI MODE *** */ 6789 struct cmd_set_allmulti_mode_result { 6790 cmdline_fixed_string_t set; 6791 cmdline_fixed_string_t allmulti; 6792 cmdline_fixed_string_t port_all; /* valid if "allports" argument == 1 */ 6793 uint16_t port_num; /* valid if "allports" argument == 0 */ 6794 cmdline_fixed_string_t mode; 6795 }; 6796 6797 static void cmd_set_allmulti_mode_parsed(void *parsed_result, 6798 __rte_unused struct cmdline *cl, 6799 void *allports) 6800 { 6801 struct cmd_set_allmulti_mode_result *res = parsed_result; 6802 int enable; 6803 portid_t i; 6804 6805 if (!strcmp(res->mode, "on")) 6806 enable = 1; 6807 else 6808 enable = 0; 6809 6810 /* all ports */ 6811 if (allports) { 6812 RTE_ETH_FOREACH_DEV(i) { 6813 eth_set_allmulticast_mode(i, enable); 6814 } 6815 } 6816 else { 6817 eth_set_allmulticast_mode(res->port_num, enable); 6818 } 6819 } 6820 6821 cmdline_parse_token_string_t cmd_setallmulti_set = 6822 TOKEN_STRING_INITIALIZER(struct cmd_set_allmulti_mode_result, set, "set"); 6823 cmdline_parse_token_string_t cmd_setallmulti_allmulti = 6824 TOKEN_STRING_INITIALIZER(struct cmd_set_allmulti_mode_result, allmulti, 6825 "allmulti"); 6826 cmdline_parse_token_string_t cmd_setallmulti_portall = 6827 TOKEN_STRING_INITIALIZER(struct cmd_set_allmulti_mode_result, port_all, 6828 "all"); 6829 cmdline_parse_token_num_t cmd_setallmulti_portnum = 6830 TOKEN_NUM_INITIALIZER(struct cmd_set_allmulti_mode_result, port_num, 6831 RTE_UINT16); 6832 cmdline_parse_token_string_t cmd_setallmulti_mode = 6833 TOKEN_STRING_INITIALIZER(struct cmd_set_allmulti_mode_result, mode, 6834 "on#off"); 6835 6836 cmdline_parse_inst_t cmd_set_allmulti_mode_all = { 6837 .f = cmd_set_allmulti_mode_parsed, 6838 .data = (void *)1, 6839 .help_str = "set allmulti all on|off: Set allmulti mode for all ports", 6840 .tokens = { 6841 (void *)&cmd_setallmulti_set, 6842 (void *)&cmd_setallmulti_allmulti, 6843 (void *)&cmd_setallmulti_portall, 6844 (void *)&cmd_setallmulti_mode, 6845 NULL, 6846 }, 6847 }; 6848 6849 cmdline_parse_inst_t cmd_set_allmulti_mode_one = { 6850 .f = cmd_set_allmulti_mode_parsed, 6851 .data = (void *)0, 6852 .help_str = "set allmulti <port_id> on|off: " 6853 "Set allmulti mode on port_id", 6854 .tokens = { 6855 (void *)&cmd_setallmulti_set, 6856 (void *)&cmd_setallmulti_allmulti, 6857 (void *)&cmd_setallmulti_portnum, 6858 (void *)&cmd_setallmulti_mode, 6859 NULL, 6860 }, 6861 }; 6862 6863 /* *** SETUP ETHERNET LINK FLOW CONTROL *** */ 6864 struct cmd_link_flow_ctrl_set_result { 6865 cmdline_fixed_string_t set; 6866 cmdline_fixed_string_t flow_ctrl; 6867 cmdline_fixed_string_t rx; 6868 cmdline_fixed_string_t rx_lfc_mode; 6869 cmdline_fixed_string_t tx; 6870 cmdline_fixed_string_t tx_lfc_mode; 6871 cmdline_fixed_string_t mac_ctrl_frame_fwd; 6872 cmdline_fixed_string_t mac_ctrl_frame_fwd_mode; 6873 cmdline_fixed_string_t autoneg_str; 6874 cmdline_fixed_string_t autoneg; 6875 cmdline_fixed_string_t hw_str; 6876 uint32_t high_water; 6877 cmdline_fixed_string_t lw_str; 6878 uint32_t low_water; 6879 cmdline_fixed_string_t pt_str; 6880 uint16_t pause_time; 6881 cmdline_fixed_string_t xon_str; 6882 uint16_t send_xon; 6883 portid_t port_id; 6884 }; 6885 6886 cmdline_parse_token_string_t cmd_lfc_set_set = 6887 TOKEN_STRING_INITIALIZER(struct cmd_link_flow_ctrl_set_result, 6888 set, "set"); 6889 cmdline_parse_token_string_t cmd_lfc_set_flow_ctrl = 6890 TOKEN_STRING_INITIALIZER(struct cmd_link_flow_ctrl_set_result, 6891 flow_ctrl, "flow_ctrl"); 6892 cmdline_parse_token_string_t cmd_lfc_set_rx = 6893 TOKEN_STRING_INITIALIZER(struct cmd_link_flow_ctrl_set_result, 6894 rx, "rx"); 6895 cmdline_parse_token_string_t cmd_lfc_set_rx_mode = 6896 TOKEN_STRING_INITIALIZER(struct cmd_link_flow_ctrl_set_result, 6897 rx_lfc_mode, "on#off"); 6898 cmdline_parse_token_string_t cmd_lfc_set_tx = 6899 TOKEN_STRING_INITIALIZER(struct cmd_link_flow_ctrl_set_result, 6900 tx, "tx"); 6901 cmdline_parse_token_string_t cmd_lfc_set_tx_mode = 6902 TOKEN_STRING_INITIALIZER(struct cmd_link_flow_ctrl_set_result, 6903 tx_lfc_mode, "on#off"); 6904 cmdline_parse_token_string_t cmd_lfc_set_high_water_str = 6905 TOKEN_STRING_INITIALIZER(struct cmd_link_flow_ctrl_set_result, 6906 hw_str, "high_water"); 6907 cmdline_parse_token_num_t cmd_lfc_set_high_water = 6908 TOKEN_NUM_INITIALIZER(struct cmd_link_flow_ctrl_set_result, 6909 high_water, RTE_UINT32); 6910 cmdline_parse_token_string_t cmd_lfc_set_low_water_str = 6911 TOKEN_STRING_INITIALIZER(struct cmd_link_flow_ctrl_set_result, 6912 lw_str, "low_water"); 6913 cmdline_parse_token_num_t cmd_lfc_set_low_water = 6914 TOKEN_NUM_INITIALIZER(struct cmd_link_flow_ctrl_set_result, 6915 low_water, RTE_UINT32); 6916 cmdline_parse_token_string_t cmd_lfc_set_pause_time_str = 6917 TOKEN_STRING_INITIALIZER(struct cmd_link_flow_ctrl_set_result, 6918 pt_str, "pause_time"); 6919 cmdline_parse_token_num_t cmd_lfc_set_pause_time = 6920 TOKEN_NUM_INITIALIZER(struct cmd_link_flow_ctrl_set_result, 6921 pause_time, RTE_UINT16); 6922 cmdline_parse_token_string_t cmd_lfc_set_send_xon_str = 6923 TOKEN_STRING_INITIALIZER(struct cmd_link_flow_ctrl_set_result, 6924 xon_str, "send_xon"); 6925 cmdline_parse_token_num_t cmd_lfc_set_send_xon = 6926 TOKEN_NUM_INITIALIZER(struct cmd_link_flow_ctrl_set_result, 6927 send_xon, RTE_UINT16); 6928 cmdline_parse_token_string_t cmd_lfc_set_mac_ctrl_frame_fwd_mode = 6929 TOKEN_STRING_INITIALIZER(struct cmd_link_flow_ctrl_set_result, 6930 mac_ctrl_frame_fwd, "mac_ctrl_frame_fwd"); 6931 cmdline_parse_token_string_t cmd_lfc_set_mac_ctrl_frame_fwd = 6932 TOKEN_STRING_INITIALIZER(struct cmd_link_flow_ctrl_set_result, 6933 mac_ctrl_frame_fwd_mode, "on#off"); 6934 cmdline_parse_token_string_t cmd_lfc_set_autoneg_str = 6935 TOKEN_STRING_INITIALIZER(struct cmd_link_flow_ctrl_set_result, 6936 autoneg_str, "autoneg"); 6937 cmdline_parse_token_string_t cmd_lfc_set_autoneg = 6938 TOKEN_STRING_INITIALIZER(struct cmd_link_flow_ctrl_set_result, 6939 autoneg, "on#off"); 6940 cmdline_parse_token_num_t cmd_lfc_set_portid = 6941 TOKEN_NUM_INITIALIZER(struct cmd_link_flow_ctrl_set_result, 6942 port_id, RTE_UINT16); 6943 6944 /* forward declaration */ 6945 static void 6946 cmd_link_flow_ctrl_set_parsed(void *parsed_result, struct cmdline *cl, 6947 void *data); 6948 6949 cmdline_parse_inst_t cmd_link_flow_control_set = { 6950 .f = cmd_link_flow_ctrl_set_parsed, 6951 .data = NULL, 6952 .help_str = "set flow_ctrl rx on|off tx on|off <high_water> " 6953 "<low_water> <pause_time> <send_xon> mac_ctrl_frame_fwd on|off " 6954 "autoneg on|off <port_id>: Configure the Ethernet flow control", 6955 .tokens = { 6956 (void *)&cmd_lfc_set_set, 6957 (void *)&cmd_lfc_set_flow_ctrl, 6958 (void *)&cmd_lfc_set_rx, 6959 (void *)&cmd_lfc_set_rx_mode, 6960 (void *)&cmd_lfc_set_tx, 6961 (void *)&cmd_lfc_set_tx_mode, 6962 (void *)&cmd_lfc_set_high_water, 6963 (void *)&cmd_lfc_set_low_water, 6964 (void *)&cmd_lfc_set_pause_time, 6965 (void *)&cmd_lfc_set_send_xon, 6966 (void *)&cmd_lfc_set_mac_ctrl_frame_fwd_mode, 6967 (void *)&cmd_lfc_set_mac_ctrl_frame_fwd, 6968 (void *)&cmd_lfc_set_autoneg_str, 6969 (void *)&cmd_lfc_set_autoneg, 6970 (void *)&cmd_lfc_set_portid, 6971 NULL, 6972 }, 6973 }; 6974 6975 cmdline_parse_inst_t cmd_link_flow_control_set_rx = { 6976 .f = cmd_link_flow_ctrl_set_parsed, 6977 .data = (void *)&cmd_link_flow_control_set_rx, 6978 .help_str = "set flow_ctrl rx on|off <port_id>: " 6979 "Change rx flow control parameter", 6980 .tokens = { 6981 (void *)&cmd_lfc_set_set, 6982 (void *)&cmd_lfc_set_flow_ctrl, 6983 (void *)&cmd_lfc_set_rx, 6984 (void *)&cmd_lfc_set_rx_mode, 6985 (void *)&cmd_lfc_set_portid, 6986 NULL, 6987 }, 6988 }; 6989 6990 cmdline_parse_inst_t cmd_link_flow_control_set_tx = { 6991 .f = cmd_link_flow_ctrl_set_parsed, 6992 .data = (void *)&cmd_link_flow_control_set_tx, 6993 .help_str = "set flow_ctrl tx on|off <port_id>: " 6994 "Change tx flow control parameter", 6995 .tokens = { 6996 (void *)&cmd_lfc_set_set, 6997 (void *)&cmd_lfc_set_flow_ctrl, 6998 (void *)&cmd_lfc_set_tx, 6999 (void *)&cmd_lfc_set_tx_mode, 7000 (void *)&cmd_lfc_set_portid, 7001 NULL, 7002 }, 7003 }; 7004 7005 cmdline_parse_inst_t cmd_link_flow_control_set_hw = { 7006 .f = cmd_link_flow_ctrl_set_parsed, 7007 .data = (void *)&cmd_link_flow_control_set_hw, 7008 .help_str = "set flow_ctrl high_water <value> <port_id>: " 7009 "Change high water flow control parameter", 7010 .tokens = { 7011 (void *)&cmd_lfc_set_set, 7012 (void *)&cmd_lfc_set_flow_ctrl, 7013 (void *)&cmd_lfc_set_high_water_str, 7014 (void *)&cmd_lfc_set_high_water, 7015 (void *)&cmd_lfc_set_portid, 7016 NULL, 7017 }, 7018 }; 7019 7020 cmdline_parse_inst_t cmd_link_flow_control_set_lw = { 7021 .f = cmd_link_flow_ctrl_set_parsed, 7022 .data = (void *)&cmd_link_flow_control_set_lw, 7023 .help_str = "set flow_ctrl low_water <value> <port_id>: " 7024 "Change low water flow control parameter", 7025 .tokens = { 7026 (void *)&cmd_lfc_set_set, 7027 (void *)&cmd_lfc_set_flow_ctrl, 7028 (void *)&cmd_lfc_set_low_water_str, 7029 (void *)&cmd_lfc_set_low_water, 7030 (void *)&cmd_lfc_set_portid, 7031 NULL, 7032 }, 7033 }; 7034 7035 cmdline_parse_inst_t cmd_link_flow_control_set_pt = { 7036 .f = cmd_link_flow_ctrl_set_parsed, 7037 .data = (void *)&cmd_link_flow_control_set_pt, 7038 .help_str = "set flow_ctrl pause_time <value> <port_id>: " 7039 "Change pause time flow control parameter", 7040 .tokens = { 7041 (void *)&cmd_lfc_set_set, 7042 (void *)&cmd_lfc_set_flow_ctrl, 7043 (void *)&cmd_lfc_set_pause_time_str, 7044 (void *)&cmd_lfc_set_pause_time, 7045 (void *)&cmd_lfc_set_portid, 7046 NULL, 7047 }, 7048 }; 7049 7050 cmdline_parse_inst_t cmd_link_flow_control_set_xon = { 7051 .f = cmd_link_flow_ctrl_set_parsed, 7052 .data = (void *)&cmd_link_flow_control_set_xon, 7053 .help_str = "set flow_ctrl send_xon <value> <port_id>: " 7054 "Change send_xon flow control parameter", 7055 .tokens = { 7056 (void *)&cmd_lfc_set_set, 7057 (void *)&cmd_lfc_set_flow_ctrl, 7058 (void *)&cmd_lfc_set_send_xon_str, 7059 (void *)&cmd_lfc_set_send_xon, 7060 (void *)&cmd_lfc_set_portid, 7061 NULL, 7062 }, 7063 }; 7064 7065 cmdline_parse_inst_t cmd_link_flow_control_set_macfwd = { 7066 .f = cmd_link_flow_ctrl_set_parsed, 7067 .data = (void *)&cmd_link_flow_control_set_macfwd, 7068 .help_str = "set flow_ctrl mac_ctrl_frame_fwd on|off <port_id>: " 7069 "Change mac ctrl fwd flow control parameter", 7070 .tokens = { 7071 (void *)&cmd_lfc_set_set, 7072 (void *)&cmd_lfc_set_flow_ctrl, 7073 (void *)&cmd_lfc_set_mac_ctrl_frame_fwd_mode, 7074 (void *)&cmd_lfc_set_mac_ctrl_frame_fwd, 7075 (void *)&cmd_lfc_set_portid, 7076 NULL, 7077 }, 7078 }; 7079 7080 cmdline_parse_inst_t cmd_link_flow_control_set_autoneg = { 7081 .f = cmd_link_flow_ctrl_set_parsed, 7082 .data = (void *)&cmd_link_flow_control_set_autoneg, 7083 .help_str = "set flow_ctrl autoneg on|off <port_id>: " 7084 "Change autoneg flow control parameter", 7085 .tokens = { 7086 (void *)&cmd_lfc_set_set, 7087 (void *)&cmd_lfc_set_flow_ctrl, 7088 (void *)&cmd_lfc_set_autoneg_str, 7089 (void *)&cmd_lfc_set_autoneg, 7090 (void *)&cmd_lfc_set_portid, 7091 NULL, 7092 }, 7093 }; 7094 7095 static void 7096 cmd_link_flow_ctrl_set_parsed(void *parsed_result, 7097 __rte_unused struct cmdline *cl, 7098 void *data) 7099 { 7100 struct cmd_link_flow_ctrl_set_result *res = parsed_result; 7101 cmdline_parse_inst_t *cmd = data; 7102 struct rte_eth_fc_conf fc_conf; 7103 int rx_fc_en = 0; 7104 int tx_fc_en = 0; 7105 int ret; 7106 7107 /* 7108 * Rx on/off, flow control is enabled/disabled on RX side. This can indicate 7109 * the RTE_FC_TX_PAUSE, Transmit pause frame at the Rx side. 7110 * Tx on/off, flow control is enabled/disabled on TX side. This can indicate 7111 * the RTE_FC_RX_PAUSE, Respond to the pause frame at the Tx side. 7112 */ 7113 static enum rte_eth_fc_mode rx_tx_onoff_2_lfc_mode[2][2] = { 7114 {RTE_FC_NONE, RTE_FC_TX_PAUSE}, {RTE_FC_RX_PAUSE, RTE_FC_FULL} 7115 }; 7116 7117 /* Partial command line, retrieve current configuration */ 7118 if (cmd) { 7119 ret = rte_eth_dev_flow_ctrl_get(res->port_id, &fc_conf); 7120 if (ret != 0) { 7121 printf("cannot get current flow ctrl parameters, return" 7122 "code = %d\n", ret); 7123 return; 7124 } 7125 7126 if ((fc_conf.mode == RTE_FC_RX_PAUSE) || 7127 (fc_conf.mode == RTE_FC_FULL)) 7128 rx_fc_en = 1; 7129 if ((fc_conf.mode == RTE_FC_TX_PAUSE) || 7130 (fc_conf.mode == RTE_FC_FULL)) 7131 tx_fc_en = 1; 7132 } 7133 7134 if (!cmd || cmd == &cmd_link_flow_control_set_rx) 7135 rx_fc_en = (!strcmp(res->rx_lfc_mode, "on")) ? 1 : 0; 7136 7137 if (!cmd || cmd == &cmd_link_flow_control_set_tx) 7138 tx_fc_en = (!strcmp(res->tx_lfc_mode, "on")) ? 1 : 0; 7139 7140 fc_conf.mode = rx_tx_onoff_2_lfc_mode[rx_fc_en][tx_fc_en]; 7141 7142 if (!cmd || cmd == &cmd_link_flow_control_set_hw) 7143 fc_conf.high_water = res->high_water; 7144 7145 if (!cmd || cmd == &cmd_link_flow_control_set_lw) 7146 fc_conf.low_water = res->low_water; 7147 7148 if (!cmd || cmd == &cmd_link_flow_control_set_pt) 7149 fc_conf.pause_time = res->pause_time; 7150 7151 if (!cmd || cmd == &cmd_link_flow_control_set_xon) 7152 fc_conf.send_xon = res->send_xon; 7153 7154 if (!cmd || cmd == &cmd_link_flow_control_set_macfwd) { 7155 if (!strcmp(res->mac_ctrl_frame_fwd_mode, "on")) 7156 fc_conf.mac_ctrl_frame_fwd = 1; 7157 else 7158 fc_conf.mac_ctrl_frame_fwd = 0; 7159 } 7160 7161 if (!cmd || cmd == &cmd_link_flow_control_set_autoneg) 7162 fc_conf.autoneg = (!strcmp(res->autoneg, "on")) ? 1 : 0; 7163 7164 ret = rte_eth_dev_flow_ctrl_set(res->port_id, &fc_conf); 7165 if (ret != 0) 7166 printf("bad flow contrl parameter, return code = %d \n", ret); 7167 } 7168 7169 /* *** SETUP ETHERNET PRIORITY FLOW CONTROL *** */ 7170 struct cmd_priority_flow_ctrl_set_result { 7171 cmdline_fixed_string_t set; 7172 cmdline_fixed_string_t pfc_ctrl; 7173 cmdline_fixed_string_t rx; 7174 cmdline_fixed_string_t rx_pfc_mode; 7175 cmdline_fixed_string_t tx; 7176 cmdline_fixed_string_t tx_pfc_mode; 7177 uint32_t high_water; 7178 uint32_t low_water; 7179 uint16_t pause_time; 7180 uint8_t priority; 7181 portid_t port_id; 7182 }; 7183 7184 static void 7185 cmd_priority_flow_ctrl_set_parsed(void *parsed_result, 7186 __rte_unused struct cmdline *cl, 7187 __rte_unused void *data) 7188 { 7189 struct cmd_priority_flow_ctrl_set_result *res = parsed_result; 7190 struct rte_eth_pfc_conf pfc_conf; 7191 int rx_fc_enable, tx_fc_enable; 7192 int ret; 7193 7194 /* 7195 * Rx on/off, flow control is enabled/disabled on RX side. This can indicate 7196 * the RTE_FC_TX_PAUSE, Transmit pause frame at the Rx side. 7197 * Tx on/off, flow control is enabled/disabled on TX side. This can indicate 7198 * the RTE_FC_RX_PAUSE, Respond to the pause frame at the Tx side. 7199 */ 7200 static enum rte_eth_fc_mode rx_tx_onoff_2_pfc_mode[2][2] = { 7201 {RTE_FC_NONE, RTE_FC_TX_PAUSE}, {RTE_FC_RX_PAUSE, RTE_FC_FULL} 7202 }; 7203 7204 memset(&pfc_conf, 0, sizeof(struct rte_eth_pfc_conf)); 7205 rx_fc_enable = (!strncmp(res->rx_pfc_mode, "on",2)) ? 1 : 0; 7206 tx_fc_enable = (!strncmp(res->tx_pfc_mode, "on",2)) ? 1 : 0; 7207 pfc_conf.fc.mode = rx_tx_onoff_2_pfc_mode[rx_fc_enable][tx_fc_enable]; 7208 pfc_conf.fc.high_water = res->high_water; 7209 pfc_conf.fc.low_water = res->low_water; 7210 pfc_conf.fc.pause_time = res->pause_time; 7211 pfc_conf.priority = res->priority; 7212 7213 ret = rte_eth_dev_priority_flow_ctrl_set(res->port_id, &pfc_conf); 7214 if (ret != 0) 7215 printf("bad priority flow contrl parameter, return code = %d \n", ret); 7216 } 7217 7218 cmdline_parse_token_string_t cmd_pfc_set_set = 7219 TOKEN_STRING_INITIALIZER(struct cmd_priority_flow_ctrl_set_result, 7220 set, "set"); 7221 cmdline_parse_token_string_t cmd_pfc_set_flow_ctrl = 7222 TOKEN_STRING_INITIALIZER(struct cmd_priority_flow_ctrl_set_result, 7223 pfc_ctrl, "pfc_ctrl"); 7224 cmdline_parse_token_string_t cmd_pfc_set_rx = 7225 TOKEN_STRING_INITIALIZER(struct cmd_priority_flow_ctrl_set_result, 7226 rx, "rx"); 7227 cmdline_parse_token_string_t cmd_pfc_set_rx_mode = 7228 TOKEN_STRING_INITIALIZER(struct cmd_priority_flow_ctrl_set_result, 7229 rx_pfc_mode, "on#off"); 7230 cmdline_parse_token_string_t cmd_pfc_set_tx = 7231 TOKEN_STRING_INITIALIZER(struct cmd_priority_flow_ctrl_set_result, 7232 tx, "tx"); 7233 cmdline_parse_token_string_t cmd_pfc_set_tx_mode = 7234 TOKEN_STRING_INITIALIZER(struct cmd_priority_flow_ctrl_set_result, 7235 tx_pfc_mode, "on#off"); 7236 cmdline_parse_token_num_t cmd_pfc_set_high_water = 7237 TOKEN_NUM_INITIALIZER(struct cmd_priority_flow_ctrl_set_result, 7238 high_water, RTE_UINT32); 7239 cmdline_parse_token_num_t cmd_pfc_set_low_water = 7240 TOKEN_NUM_INITIALIZER(struct cmd_priority_flow_ctrl_set_result, 7241 low_water, RTE_UINT32); 7242 cmdline_parse_token_num_t cmd_pfc_set_pause_time = 7243 TOKEN_NUM_INITIALIZER(struct cmd_priority_flow_ctrl_set_result, 7244 pause_time, RTE_UINT16); 7245 cmdline_parse_token_num_t cmd_pfc_set_priority = 7246 TOKEN_NUM_INITIALIZER(struct cmd_priority_flow_ctrl_set_result, 7247 priority, RTE_UINT8); 7248 cmdline_parse_token_num_t cmd_pfc_set_portid = 7249 TOKEN_NUM_INITIALIZER(struct cmd_priority_flow_ctrl_set_result, 7250 port_id, RTE_UINT16); 7251 7252 cmdline_parse_inst_t cmd_priority_flow_control_set = { 7253 .f = cmd_priority_flow_ctrl_set_parsed, 7254 .data = NULL, 7255 .help_str = "set pfc_ctrl rx on|off tx on|off <high_water> <low_water> " 7256 "<pause_time> <priority> <port_id>: " 7257 "Configure the Ethernet priority flow control", 7258 .tokens = { 7259 (void *)&cmd_pfc_set_set, 7260 (void *)&cmd_pfc_set_flow_ctrl, 7261 (void *)&cmd_pfc_set_rx, 7262 (void *)&cmd_pfc_set_rx_mode, 7263 (void *)&cmd_pfc_set_tx, 7264 (void *)&cmd_pfc_set_tx_mode, 7265 (void *)&cmd_pfc_set_high_water, 7266 (void *)&cmd_pfc_set_low_water, 7267 (void *)&cmd_pfc_set_pause_time, 7268 (void *)&cmd_pfc_set_priority, 7269 (void *)&cmd_pfc_set_portid, 7270 NULL, 7271 }, 7272 }; 7273 7274 /* *** RESET CONFIGURATION *** */ 7275 struct cmd_reset_result { 7276 cmdline_fixed_string_t reset; 7277 cmdline_fixed_string_t def; 7278 }; 7279 7280 static void cmd_reset_parsed(__rte_unused void *parsed_result, 7281 struct cmdline *cl, 7282 __rte_unused void *data) 7283 { 7284 cmdline_printf(cl, "Reset to default forwarding configuration...\n"); 7285 set_def_fwd_config(); 7286 } 7287 7288 cmdline_parse_token_string_t cmd_reset_set = 7289 TOKEN_STRING_INITIALIZER(struct cmd_reset_result, reset, "set"); 7290 cmdline_parse_token_string_t cmd_reset_def = 7291 TOKEN_STRING_INITIALIZER(struct cmd_reset_result, def, 7292 "default"); 7293 7294 cmdline_parse_inst_t cmd_reset = { 7295 .f = cmd_reset_parsed, 7296 .data = NULL, 7297 .help_str = "set default: Reset default forwarding configuration", 7298 .tokens = { 7299 (void *)&cmd_reset_set, 7300 (void *)&cmd_reset_def, 7301 NULL, 7302 }, 7303 }; 7304 7305 /* *** START FORWARDING *** */ 7306 struct cmd_start_result { 7307 cmdline_fixed_string_t start; 7308 }; 7309 7310 cmdline_parse_token_string_t cmd_start_start = 7311 TOKEN_STRING_INITIALIZER(struct cmd_start_result, start, "start"); 7312 7313 static void cmd_start_parsed(__rte_unused void *parsed_result, 7314 __rte_unused struct cmdline *cl, 7315 __rte_unused void *data) 7316 { 7317 start_packet_forwarding(0); 7318 } 7319 7320 cmdline_parse_inst_t cmd_start = { 7321 .f = cmd_start_parsed, 7322 .data = NULL, 7323 .help_str = "start: Start packet forwarding", 7324 .tokens = { 7325 (void *)&cmd_start_start, 7326 NULL, 7327 }, 7328 }; 7329 7330 /* *** START FORWARDING WITH ONE TX BURST FIRST *** */ 7331 struct cmd_start_tx_first_result { 7332 cmdline_fixed_string_t start; 7333 cmdline_fixed_string_t tx_first; 7334 }; 7335 7336 static void 7337 cmd_start_tx_first_parsed(__rte_unused void *parsed_result, 7338 __rte_unused struct cmdline *cl, 7339 __rte_unused void *data) 7340 { 7341 start_packet_forwarding(1); 7342 } 7343 7344 cmdline_parse_token_string_t cmd_start_tx_first_start = 7345 TOKEN_STRING_INITIALIZER(struct cmd_start_tx_first_result, start, 7346 "start"); 7347 cmdline_parse_token_string_t cmd_start_tx_first_tx_first = 7348 TOKEN_STRING_INITIALIZER(struct cmd_start_tx_first_result, 7349 tx_first, "tx_first"); 7350 7351 cmdline_parse_inst_t cmd_start_tx_first = { 7352 .f = cmd_start_tx_first_parsed, 7353 .data = NULL, 7354 .help_str = "start tx_first: Start packet forwarding, " 7355 "after sending 1 burst of packets", 7356 .tokens = { 7357 (void *)&cmd_start_tx_first_start, 7358 (void *)&cmd_start_tx_first_tx_first, 7359 NULL, 7360 }, 7361 }; 7362 7363 /* *** START FORWARDING WITH N TX BURST FIRST *** */ 7364 struct cmd_start_tx_first_n_result { 7365 cmdline_fixed_string_t start; 7366 cmdline_fixed_string_t tx_first; 7367 uint32_t tx_num; 7368 }; 7369 7370 static void 7371 cmd_start_tx_first_n_parsed(void *parsed_result, 7372 __rte_unused struct cmdline *cl, 7373 __rte_unused void *data) 7374 { 7375 struct cmd_start_tx_first_n_result *res = parsed_result; 7376 7377 start_packet_forwarding(res->tx_num); 7378 } 7379 7380 cmdline_parse_token_string_t cmd_start_tx_first_n_start = 7381 TOKEN_STRING_INITIALIZER(struct cmd_start_tx_first_n_result, 7382 start, "start"); 7383 cmdline_parse_token_string_t cmd_start_tx_first_n_tx_first = 7384 TOKEN_STRING_INITIALIZER(struct cmd_start_tx_first_n_result, 7385 tx_first, "tx_first"); 7386 cmdline_parse_token_num_t cmd_start_tx_first_n_tx_num = 7387 TOKEN_NUM_INITIALIZER(struct cmd_start_tx_first_n_result, 7388 tx_num, RTE_UINT32); 7389 7390 cmdline_parse_inst_t cmd_start_tx_first_n = { 7391 .f = cmd_start_tx_first_n_parsed, 7392 .data = NULL, 7393 .help_str = "start tx_first <num>: " 7394 "packet forwarding, after sending <num> bursts of packets", 7395 .tokens = { 7396 (void *)&cmd_start_tx_first_n_start, 7397 (void *)&cmd_start_tx_first_n_tx_first, 7398 (void *)&cmd_start_tx_first_n_tx_num, 7399 NULL, 7400 }, 7401 }; 7402 7403 /* *** SET LINK UP *** */ 7404 struct cmd_set_link_up_result { 7405 cmdline_fixed_string_t set; 7406 cmdline_fixed_string_t link_up; 7407 cmdline_fixed_string_t port; 7408 portid_t port_id; 7409 }; 7410 7411 cmdline_parse_token_string_t cmd_set_link_up_set = 7412 TOKEN_STRING_INITIALIZER(struct cmd_set_link_up_result, set, "set"); 7413 cmdline_parse_token_string_t cmd_set_link_up_link_up = 7414 TOKEN_STRING_INITIALIZER(struct cmd_set_link_up_result, link_up, 7415 "link-up"); 7416 cmdline_parse_token_string_t cmd_set_link_up_port = 7417 TOKEN_STRING_INITIALIZER(struct cmd_set_link_up_result, port, "port"); 7418 cmdline_parse_token_num_t cmd_set_link_up_port_id = 7419 TOKEN_NUM_INITIALIZER(struct cmd_set_link_up_result, port_id, 7420 RTE_UINT16); 7421 7422 static void cmd_set_link_up_parsed(__rte_unused void *parsed_result, 7423 __rte_unused struct cmdline *cl, 7424 __rte_unused void *data) 7425 { 7426 struct cmd_set_link_up_result *res = parsed_result; 7427 dev_set_link_up(res->port_id); 7428 } 7429 7430 cmdline_parse_inst_t cmd_set_link_up = { 7431 .f = cmd_set_link_up_parsed, 7432 .data = NULL, 7433 .help_str = "set link-up port <port id>", 7434 .tokens = { 7435 (void *)&cmd_set_link_up_set, 7436 (void *)&cmd_set_link_up_link_up, 7437 (void *)&cmd_set_link_up_port, 7438 (void *)&cmd_set_link_up_port_id, 7439 NULL, 7440 }, 7441 }; 7442 7443 /* *** SET LINK DOWN *** */ 7444 struct cmd_set_link_down_result { 7445 cmdline_fixed_string_t set; 7446 cmdline_fixed_string_t link_down; 7447 cmdline_fixed_string_t port; 7448 portid_t port_id; 7449 }; 7450 7451 cmdline_parse_token_string_t cmd_set_link_down_set = 7452 TOKEN_STRING_INITIALIZER(struct cmd_set_link_down_result, set, "set"); 7453 cmdline_parse_token_string_t cmd_set_link_down_link_down = 7454 TOKEN_STRING_INITIALIZER(struct cmd_set_link_down_result, link_down, 7455 "link-down"); 7456 cmdline_parse_token_string_t cmd_set_link_down_port = 7457 TOKEN_STRING_INITIALIZER(struct cmd_set_link_down_result, port, "port"); 7458 cmdline_parse_token_num_t cmd_set_link_down_port_id = 7459 TOKEN_NUM_INITIALIZER(struct cmd_set_link_down_result, port_id, 7460 RTE_UINT16); 7461 7462 static void cmd_set_link_down_parsed( 7463 __rte_unused void *parsed_result, 7464 __rte_unused struct cmdline *cl, 7465 __rte_unused void *data) 7466 { 7467 struct cmd_set_link_down_result *res = parsed_result; 7468 dev_set_link_down(res->port_id); 7469 } 7470 7471 cmdline_parse_inst_t cmd_set_link_down = { 7472 .f = cmd_set_link_down_parsed, 7473 .data = NULL, 7474 .help_str = "set link-down port <port id>", 7475 .tokens = { 7476 (void *)&cmd_set_link_down_set, 7477 (void *)&cmd_set_link_down_link_down, 7478 (void *)&cmd_set_link_down_port, 7479 (void *)&cmd_set_link_down_port_id, 7480 NULL, 7481 }, 7482 }; 7483 7484 /* *** SHOW CFG *** */ 7485 struct cmd_showcfg_result { 7486 cmdline_fixed_string_t show; 7487 cmdline_fixed_string_t cfg; 7488 cmdline_fixed_string_t what; 7489 }; 7490 7491 static void cmd_showcfg_parsed(void *parsed_result, 7492 __rte_unused struct cmdline *cl, 7493 __rte_unused void *data) 7494 { 7495 struct cmd_showcfg_result *res = parsed_result; 7496 if (!strcmp(res->what, "rxtx")) 7497 rxtx_config_display(); 7498 else if (!strcmp(res->what, "cores")) 7499 fwd_lcores_config_display(); 7500 else if (!strcmp(res->what, "fwd")) 7501 pkt_fwd_config_display(&cur_fwd_config); 7502 else if (!strcmp(res->what, "rxoffs")) 7503 show_rx_pkt_offsets(); 7504 else if (!strcmp(res->what, "rxpkts")) 7505 show_rx_pkt_segments(); 7506 else if (!strcmp(res->what, "txpkts")) 7507 show_tx_pkt_segments(); 7508 else if (!strcmp(res->what, "txtimes")) 7509 show_tx_pkt_times(); 7510 } 7511 7512 cmdline_parse_token_string_t cmd_showcfg_show = 7513 TOKEN_STRING_INITIALIZER(struct cmd_showcfg_result, show, "show"); 7514 cmdline_parse_token_string_t cmd_showcfg_port = 7515 TOKEN_STRING_INITIALIZER(struct cmd_showcfg_result, cfg, "config"); 7516 cmdline_parse_token_string_t cmd_showcfg_what = 7517 TOKEN_STRING_INITIALIZER(struct cmd_showcfg_result, what, 7518 "rxtx#cores#fwd#rxoffs#rxpkts#txpkts#txtimes"); 7519 7520 cmdline_parse_inst_t cmd_showcfg = { 7521 .f = cmd_showcfg_parsed, 7522 .data = NULL, 7523 .help_str = "show config rxtx|cores|fwd|rxoffs|rxpkts|txpkts|txtimes", 7524 .tokens = { 7525 (void *)&cmd_showcfg_show, 7526 (void *)&cmd_showcfg_port, 7527 (void *)&cmd_showcfg_what, 7528 NULL, 7529 }, 7530 }; 7531 7532 /* *** SHOW ALL PORT INFO *** */ 7533 struct cmd_showportall_result { 7534 cmdline_fixed_string_t show; 7535 cmdline_fixed_string_t port; 7536 cmdline_fixed_string_t what; 7537 cmdline_fixed_string_t all; 7538 }; 7539 7540 static void cmd_showportall_parsed(void *parsed_result, 7541 __rte_unused struct cmdline *cl, 7542 __rte_unused void *data) 7543 { 7544 portid_t i; 7545 7546 struct cmd_showportall_result *res = parsed_result; 7547 if (!strcmp(res->show, "clear")) { 7548 if (!strcmp(res->what, "stats")) 7549 RTE_ETH_FOREACH_DEV(i) 7550 nic_stats_clear(i); 7551 else if (!strcmp(res->what, "xstats")) 7552 RTE_ETH_FOREACH_DEV(i) 7553 nic_xstats_clear(i); 7554 } else if (!strcmp(res->what, "info")) 7555 RTE_ETH_FOREACH_DEV(i) 7556 port_infos_display(i); 7557 else if (!strcmp(res->what, "summary")) { 7558 port_summary_header_display(); 7559 RTE_ETH_FOREACH_DEV(i) 7560 port_summary_display(i); 7561 } 7562 else if (!strcmp(res->what, "stats")) 7563 RTE_ETH_FOREACH_DEV(i) 7564 nic_stats_display(i); 7565 else if (!strcmp(res->what, "xstats")) 7566 RTE_ETH_FOREACH_DEV(i) 7567 nic_xstats_display(i); 7568 #if defined(RTE_NET_I40E) || defined(RTE_NET_IXGBE) 7569 else if (!strcmp(res->what, "fdir")) 7570 RTE_ETH_FOREACH_DEV(i) 7571 fdir_get_infos(i); 7572 #endif 7573 else if (!strcmp(res->what, "dcb_tc")) 7574 RTE_ETH_FOREACH_DEV(i) 7575 port_dcb_info_display(i); 7576 } 7577 7578 cmdline_parse_token_string_t cmd_showportall_show = 7579 TOKEN_STRING_INITIALIZER(struct cmd_showportall_result, show, 7580 "show#clear"); 7581 cmdline_parse_token_string_t cmd_showportall_port = 7582 TOKEN_STRING_INITIALIZER(struct cmd_showportall_result, port, "port"); 7583 cmdline_parse_token_string_t cmd_showportall_what = 7584 TOKEN_STRING_INITIALIZER(struct cmd_showportall_result, what, 7585 "info#summary#stats#xstats#fdir#dcb_tc"); 7586 cmdline_parse_token_string_t cmd_showportall_all = 7587 TOKEN_STRING_INITIALIZER(struct cmd_showportall_result, all, "all"); 7588 cmdline_parse_inst_t cmd_showportall = { 7589 .f = cmd_showportall_parsed, 7590 .data = NULL, 7591 .help_str = "show|clear port " 7592 "info|summary|stats|xstats|fdir|dcb_tc all", 7593 .tokens = { 7594 (void *)&cmd_showportall_show, 7595 (void *)&cmd_showportall_port, 7596 (void *)&cmd_showportall_what, 7597 (void *)&cmd_showportall_all, 7598 NULL, 7599 }, 7600 }; 7601 7602 /* *** SHOW PORT INFO *** */ 7603 struct cmd_showport_result { 7604 cmdline_fixed_string_t show; 7605 cmdline_fixed_string_t port; 7606 cmdline_fixed_string_t what; 7607 uint16_t portnum; 7608 }; 7609 7610 static void cmd_showport_parsed(void *parsed_result, 7611 __rte_unused struct cmdline *cl, 7612 __rte_unused void *data) 7613 { 7614 struct cmd_showport_result *res = parsed_result; 7615 if (!strcmp(res->show, "clear")) { 7616 if (!strcmp(res->what, "stats")) 7617 nic_stats_clear(res->portnum); 7618 else if (!strcmp(res->what, "xstats")) 7619 nic_xstats_clear(res->portnum); 7620 } else if (!strcmp(res->what, "info")) 7621 port_infos_display(res->portnum); 7622 else if (!strcmp(res->what, "summary")) { 7623 port_summary_header_display(); 7624 port_summary_display(res->portnum); 7625 } 7626 else if (!strcmp(res->what, "stats")) 7627 nic_stats_display(res->portnum); 7628 else if (!strcmp(res->what, "xstats")) 7629 nic_xstats_display(res->portnum); 7630 #if defined(RTE_NET_I40E) || defined(RTE_NET_IXGBE) 7631 else if (!strcmp(res->what, "fdir")) 7632 fdir_get_infos(res->portnum); 7633 #endif 7634 else if (!strcmp(res->what, "dcb_tc")) 7635 port_dcb_info_display(res->portnum); 7636 } 7637 7638 cmdline_parse_token_string_t cmd_showport_show = 7639 TOKEN_STRING_INITIALIZER(struct cmd_showport_result, show, 7640 "show#clear"); 7641 cmdline_parse_token_string_t cmd_showport_port = 7642 TOKEN_STRING_INITIALIZER(struct cmd_showport_result, port, "port"); 7643 cmdline_parse_token_string_t cmd_showport_what = 7644 TOKEN_STRING_INITIALIZER(struct cmd_showport_result, what, 7645 "info#summary#stats#xstats#fdir#dcb_tc"); 7646 cmdline_parse_token_num_t cmd_showport_portnum = 7647 TOKEN_NUM_INITIALIZER(struct cmd_showport_result, portnum, RTE_UINT16); 7648 7649 cmdline_parse_inst_t cmd_showport = { 7650 .f = cmd_showport_parsed, 7651 .data = NULL, 7652 .help_str = "show|clear port " 7653 "info|summary|stats|xstats|fdir|dcb_tc " 7654 "<port_id>", 7655 .tokens = { 7656 (void *)&cmd_showport_show, 7657 (void *)&cmd_showport_port, 7658 (void *)&cmd_showport_what, 7659 (void *)&cmd_showport_portnum, 7660 NULL, 7661 }, 7662 }; 7663 7664 /* *** SHOW DEVICE INFO *** */ 7665 struct cmd_showdevice_result { 7666 cmdline_fixed_string_t show; 7667 cmdline_fixed_string_t device; 7668 cmdline_fixed_string_t what; 7669 cmdline_fixed_string_t identifier; 7670 }; 7671 7672 static void cmd_showdevice_parsed(void *parsed_result, 7673 __rte_unused struct cmdline *cl, 7674 __rte_unused void *data) 7675 { 7676 struct cmd_showdevice_result *res = parsed_result; 7677 if (!strcmp(res->what, "info")) { 7678 if (!strcmp(res->identifier, "all")) 7679 device_infos_display(NULL); 7680 else 7681 device_infos_display(res->identifier); 7682 } 7683 } 7684 7685 cmdline_parse_token_string_t cmd_showdevice_show = 7686 TOKEN_STRING_INITIALIZER(struct cmd_showdevice_result, show, 7687 "show"); 7688 cmdline_parse_token_string_t cmd_showdevice_device = 7689 TOKEN_STRING_INITIALIZER(struct cmd_showdevice_result, device, "device"); 7690 cmdline_parse_token_string_t cmd_showdevice_what = 7691 TOKEN_STRING_INITIALIZER(struct cmd_showdevice_result, what, 7692 "info"); 7693 cmdline_parse_token_string_t cmd_showdevice_identifier = 7694 TOKEN_STRING_INITIALIZER(struct cmd_showdevice_result, 7695 identifier, NULL); 7696 7697 cmdline_parse_inst_t cmd_showdevice = { 7698 .f = cmd_showdevice_parsed, 7699 .data = NULL, 7700 .help_str = "show device info <identifier>|all", 7701 .tokens = { 7702 (void *)&cmd_showdevice_show, 7703 (void *)&cmd_showdevice_device, 7704 (void *)&cmd_showdevice_what, 7705 (void *)&cmd_showdevice_identifier, 7706 NULL, 7707 }, 7708 }; 7709 7710 /* *** SHOW MODULE EEPROM/EEPROM port INFO *** */ 7711 struct cmd_showeeprom_result { 7712 cmdline_fixed_string_t show; 7713 cmdline_fixed_string_t port; 7714 uint16_t portnum; 7715 cmdline_fixed_string_t type; 7716 }; 7717 7718 static void cmd_showeeprom_parsed(void *parsed_result, 7719 __rte_unused struct cmdline *cl, 7720 __rte_unused void *data) 7721 { 7722 struct cmd_showeeprom_result *res = parsed_result; 7723 7724 if (!strcmp(res->type, "eeprom")) 7725 port_eeprom_display(res->portnum); 7726 else if (!strcmp(res->type, "module_eeprom")) 7727 port_module_eeprom_display(res->portnum); 7728 else 7729 printf("Unknown argument\n"); 7730 } 7731 7732 cmdline_parse_token_string_t cmd_showeeprom_show = 7733 TOKEN_STRING_INITIALIZER(struct cmd_showeeprom_result, show, "show"); 7734 cmdline_parse_token_string_t cmd_showeeprom_port = 7735 TOKEN_STRING_INITIALIZER(struct cmd_showeeprom_result, port, "port"); 7736 cmdline_parse_token_num_t cmd_showeeprom_portnum = 7737 TOKEN_NUM_INITIALIZER(struct cmd_showeeprom_result, portnum, 7738 RTE_UINT16); 7739 cmdline_parse_token_string_t cmd_showeeprom_type = 7740 TOKEN_STRING_INITIALIZER(struct cmd_showeeprom_result, type, "module_eeprom#eeprom"); 7741 7742 cmdline_parse_inst_t cmd_showeeprom = { 7743 .f = cmd_showeeprom_parsed, 7744 .data = NULL, 7745 .help_str = "show port <port_id> module_eeprom|eeprom", 7746 .tokens = { 7747 (void *)&cmd_showeeprom_show, 7748 (void *)&cmd_showeeprom_port, 7749 (void *)&cmd_showeeprom_portnum, 7750 (void *)&cmd_showeeprom_type, 7751 NULL, 7752 }, 7753 }; 7754 7755 /* *** SHOW QUEUE INFO *** */ 7756 struct cmd_showqueue_result { 7757 cmdline_fixed_string_t show; 7758 cmdline_fixed_string_t type; 7759 cmdline_fixed_string_t what; 7760 uint16_t portnum; 7761 uint16_t queuenum; 7762 }; 7763 7764 static void 7765 cmd_showqueue_parsed(void *parsed_result, 7766 __rte_unused struct cmdline *cl, 7767 __rte_unused void *data) 7768 { 7769 struct cmd_showqueue_result *res = parsed_result; 7770 7771 if (!strcmp(res->type, "rxq")) 7772 rx_queue_infos_display(res->portnum, res->queuenum); 7773 else if (!strcmp(res->type, "txq")) 7774 tx_queue_infos_display(res->portnum, res->queuenum); 7775 } 7776 7777 cmdline_parse_token_string_t cmd_showqueue_show = 7778 TOKEN_STRING_INITIALIZER(struct cmd_showqueue_result, show, "show"); 7779 cmdline_parse_token_string_t cmd_showqueue_type = 7780 TOKEN_STRING_INITIALIZER(struct cmd_showqueue_result, type, "rxq#txq"); 7781 cmdline_parse_token_string_t cmd_showqueue_what = 7782 TOKEN_STRING_INITIALIZER(struct cmd_showqueue_result, what, "info"); 7783 cmdline_parse_token_num_t cmd_showqueue_portnum = 7784 TOKEN_NUM_INITIALIZER(struct cmd_showqueue_result, portnum, 7785 RTE_UINT16); 7786 cmdline_parse_token_num_t cmd_showqueue_queuenum = 7787 TOKEN_NUM_INITIALIZER(struct cmd_showqueue_result, queuenum, 7788 RTE_UINT16); 7789 7790 cmdline_parse_inst_t cmd_showqueue = { 7791 .f = cmd_showqueue_parsed, 7792 .data = NULL, 7793 .help_str = "show rxq|txq info <port_id> <queue_id>", 7794 .tokens = { 7795 (void *)&cmd_showqueue_show, 7796 (void *)&cmd_showqueue_type, 7797 (void *)&cmd_showqueue_what, 7798 (void *)&cmd_showqueue_portnum, 7799 (void *)&cmd_showqueue_queuenum, 7800 NULL, 7801 }, 7802 }; 7803 7804 /* show/clear fwd engine statistics */ 7805 struct fwd_result { 7806 cmdline_fixed_string_t action; 7807 cmdline_fixed_string_t fwd; 7808 cmdline_fixed_string_t stats; 7809 cmdline_fixed_string_t all; 7810 }; 7811 7812 cmdline_parse_token_string_t cmd_fwd_action = 7813 TOKEN_STRING_INITIALIZER(struct fwd_result, action, "show#clear"); 7814 cmdline_parse_token_string_t cmd_fwd_fwd = 7815 TOKEN_STRING_INITIALIZER(struct fwd_result, fwd, "fwd"); 7816 cmdline_parse_token_string_t cmd_fwd_stats = 7817 TOKEN_STRING_INITIALIZER(struct fwd_result, stats, "stats"); 7818 cmdline_parse_token_string_t cmd_fwd_all = 7819 TOKEN_STRING_INITIALIZER(struct fwd_result, all, "all"); 7820 7821 static void 7822 cmd_showfwdall_parsed(void *parsed_result, 7823 __rte_unused struct cmdline *cl, 7824 __rte_unused void *data) 7825 { 7826 struct fwd_result *res = parsed_result; 7827 7828 if (!strcmp(res->action, "show")) 7829 fwd_stats_display(); 7830 else 7831 fwd_stats_reset(); 7832 } 7833 7834 static cmdline_parse_inst_t cmd_showfwdall = { 7835 .f = cmd_showfwdall_parsed, 7836 .data = NULL, 7837 .help_str = "show|clear fwd stats all", 7838 .tokens = { 7839 (void *)&cmd_fwd_action, 7840 (void *)&cmd_fwd_fwd, 7841 (void *)&cmd_fwd_stats, 7842 (void *)&cmd_fwd_all, 7843 NULL, 7844 }, 7845 }; 7846 7847 /* *** READ PORT REGISTER *** */ 7848 struct cmd_read_reg_result { 7849 cmdline_fixed_string_t read; 7850 cmdline_fixed_string_t reg; 7851 portid_t port_id; 7852 uint32_t reg_off; 7853 }; 7854 7855 static void 7856 cmd_read_reg_parsed(void *parsed_result, 7857 __rte_unused struct cmdline *cl, 7858 __rte_unused void *data) 7859 { 7860 struct cmd_read_reg_result *res = parsed_result; 7861 port_reg_display(res->port_id, res->reg_off); 7862 } 7863 7864 cmdline_parse_token_string_t cmd_read_reg_read = 7865 TOKEN_STRING_INITIALIZER(struct cmd_read_reg_result, read, "read"); 7866 cmdline_parse_token_string_t cmd_read_reg_reg = 7867 TOKEN_STRING_INITIALIZER(struct cmd_read_reg_result, reg, "reg"); 7868 cmdline_parse_token_num_t cmd_read_reg_port_id = 7869 TOKEN_NUM_INITIALIZER(struct cmd_read_reg_result, port_id, RTE_UINT16); 7870 cmdline_parse_token_num_t cmd_read_reg_reg_off = 7871 TOKEN_NUM_INITIALIZER(struct cmd_read_reg_result, reg_off, RTE_UINT32); 7872 7873 cmdline_parse_inst_t cmd_read_reg = { 7874 .f = cmd_read_reg_parsed, 7875 .data = NULL, 7876 .help_str = "read reg <port_id> <reg_off>", 7877 .tokens = { 7878 (void *)&cmd_read_reg_read, 7879 (void *)&cmd_read_reg_reg, 7880 (void *)&cmd_read_reg_port_id, 7881 (void *)&cmd_read_reg_reg_off, 7882 NULL, 7883 }, 7884 }; 7885 7886 /* *** READ PORT REGISTER BIT FIELD *** */ 7887 struct cmd_read_reg_bit_field_result { 7888 cmdline_fixed_string_t read; 7889 cmdline_fixed_string_t regfield; 7890 portid_t port_id; 7891 uint32_t reg_off; 7892 uint8_t bit1_pos; 7893 uint8_t bit2_pos; 7894 }; 7895 7896 static void 7897 cmd_read_reg_bit_field_parsed(void *parsed_result, 7898 __rte_unused struct cmdline *cl, 7899 __rte_unused void *data) 7900 { 7901 struct cmd_read_reg_bit_field_result *res = parsed_result; 7902 port_reg_bit_field_display(res->port_id, res->reg_off, 7903 res->bit1_pos, res->bit2_pos); 7904 } 7905 7906 cmdline_parse_token_string_t cmd_read_reg_bit_field_read = 7907 TOKEN_STRING_INITIALIZER(struct cmd_read_reg_bit_field_result, read, 7908 "read"); 7909 cmdline_parse_token_string_t cmd_read_reg_bit_field_regfield = 7910 TOKEN_STRING_INITIALIZER(struct cmd_read_reg_bit_field_result, 7911 regfield, "regfield"); 7912 cmdline_parse_token_num_t cmd_read_reg_bit_field_port_id = 7913 TOKEN_NUM_INITIALIZER(struct cmd_read_reg_bit_field_result, port_id, 7914 RTE_UINT16); 7915 cmdline_parse_token_num_t cmd_read_reg_bit_field_reg_off = 7916 TOKEN_NUM_INITIALIZER(struct cmd_read_reg_bit_field_result, reg_off, 7917 RTE_UINT32); 7918 cmdline_parse_token_num_t cmd_read_reg_bit_field_bit1_pos = 7919 TOKEN_NUM_INITIALIZER(struct cmd_read_reg_bit_field_result, bit1_pos, 7920 RTE_UINT8); 7921 cmdline_parse_token_num_t cmd_read_reg_bit_field_bit2_pos = 7922 TOKEN_NUM_INITIALIZER(struct cmd_read_reg_bit_field_result, bit2_pos, 7923 RTE_UINT8); 7924 7925 cmdline_parse_inst_t cmd_read_reg_bit_field = { 7926 .f = cmd_read_reg_bit_field_parsed, 7927 .data = NULL, 7928 .help_str = "read regfield <port_id> <reg_off> <bit_x> <bit_y>: " 7929 "Read register bit field between bit_x and bit_y included", 7930 .tokens = { 7931 (void *)&cmd_read_reg_bit_field_read, 7932 (void *)&cmd_read_reg_bit_field_regfield, 7933 (void *)&cmd_read_reg_bit_field_port_id, 7934 (void *)&cmd_read_reg_bit_field_reg_off, 7935 (void *)&cmd_read_reg_bit_field_bit1_pos, 7936 (void *)&cmd_read_reg_bit_field_bit2_pos, 7937 NULL, 7938 }, 7939 }; 7940 7941 /* *** READ PORT REGISTER BIT *** */ 7942 struct cmd_read_reg_bit_result { 7943 cmdline_fixed_string_t read; 7944 cmdline_fixed_string_t regbit; 7945 portid_t port_id; 7946 uint32_t reg_off; 7947 uint8_t bit_pos; 7948 }; 7949 7950 static void 7951 cmd_read_reg_bit_parsed(void *parsed_result, 7952 __rte_unused struct cmdline *cl, 7953 __rte_unused void *data) 7954 { 7955 struct cmd_read_reg_bit_result *res = parsed_result; 7956 port_reg_bit_display(res->port_id, res->reg_off, res->bit_pos); 7957 } 7958 7959 cmdline_parse_token_string_t cmd_read_reg_bit_read = 7960 TOKEN_STRING_INITIALIZER(struct cmd_read_reg_bit_result, read, "read"); 7961 cmdline_parse_token_string_t cmd_read_reg_bit_regbit = 7962 TOKEN_STRING_INITIALIZER(struct cmd_read_reg_bit_result, 7963 regbit, "regbit"); 7964 cmdline_parse_token_num_t cmd_read_reg_bit_port_id = 7965 TOKEN_NUM_INITIALIZER(struct cmd_read_reg_bit_result, port_id, 7966 RTE_UINT16); 7967 cmdline_parse_token_num_t cmd_read_reg_bit_reg_off = 7968 TOKEN_NUM_INITIALIZER(struct cmd_read_reg_bit_result, reg_off, 7969 RTE_UINT32); 7970 cmdline_parse_token_num_t cmd_read_reg_bit_bit_pos = 7971 TOKEN_NUM_INITIALIZER(struct cmd_read_reg_bit_result, bit_pos, 7972 RTE_UINT8); 7973 7974 cmdline_parse_inst_t cmd_read_reg_bit = { 7975 .f = cmd_read_reg_bit_parsed, 7976 .data = NULL, 7977 .help_str = "read regbit <port_id> <reg_off> <bit_x>: 0 <= bit_x <= 31", 7978 .tokens = { 7979 (void *)&cmd_read_reg_bit_read, 7980 (void *)&cmd_read_reg_bit_regbit, 7981 (void *)&cmd_read_reg_bit_port_id, 7982 (void *)&cmd_read_reg_bit_reg_off, 7983 (void *)&cmd_read_reg_bit_bit_pos, 7984 NULL, 7985 }, 7986 }; 7987 7988 /* *** WRITE PORT REGISTER *** */ 7989 struct cmd_write_reg_result { 7990 cmdline_fixed_string_t write; 7991 cmdline_fixed_string_t reg; 7992 portid_t port_id; 7993 uint32_t reg_off; 7994 uint32_t value; 7995 }; 7996 7997 static void 7998 cmd_write_reg_parsed(void *parsed_result, 7999 __rte_unused struct cmdline *cl, 8000 __rte_unused void *data) 8001 { 8002 struct cmd_write_reg_result *res = parsed_result; 8003 port_reg_set(res->port_id, res->reg_off, res->value); 8004 } 8005 8006 cmdline_parse_token_string_t cmd_write_reg_write = 8007 TOKEN_STRING_INITIALIZER(struct cmd_write_reg_result, write, "write"); 8008 cmdline_parse_token_string_t cmd_write_reg_reg = 8009 TOKEN_STRING_INITIALIZER(struct cmd_write_reg_result, reg, "reg"); 8010 cmdline_parse_token_num_t cmd_write_reg_port_id = 8011 TOKEN_NUM_INITIALIZER(struct cmd_write_reg_result, port_id, RTE_UINT16); 8012 cmdline_parse_token_num_t cmd_write_reg_reg_off = 8013 TOKEN_NUM_INITIALIZER(struct cmd_write_reg_result, reg_off, RTE_UINT32); 8014 cmdline_parse_token_num_t cmd_write_reg_value = 8015 TOKEN_NUM_INITIALIZER(struct cmd_write_reg_result, value, RTE_UINT32); 8016 8017 cmdline_parse_inst_t cmd_write_reg = { 8018 .f = cmd_write_reg_parsed, 8019 .data = NULL, 8020 .help_str = "write reg <port_id> <reg_off> <reg_value>", 8021 .tokens = { 8022 (void *)&cmd_write_reg_write, 8023 (void *)&cmd_write_reg_reg, 8024 (void *)&cmd_write_reg_port_id, 8025 (void *)&cmd_write_reg_reg_off, 8026 (void *)&cmd_write_reg_value, 8027 NULL, 8028 }, 8029 }; 8030 8031 /* *** WRITE PORT REGISTER BIT FIELD *** */ 8032 struct cmd_write_reg_bit_field_result { 8033 cmdline_fixed_string_t write; 8034 cmdline_fixed_string_t regfield; 8035 portid_t port_id; 8036 uint32_t reg_off; 8037 uint8_t bit1_pos; 8038 uint8_t bit2_pos; 8039 uint32_t value; 8040 }; 8041 8042 static void 8043 cmd_write_reg_bit_field_parsed(void *parsed_result, 8044 __rte_unused struct cmdline *cl, 8045 __rte_unused void *data) 8046 { 8047 struct cmd_write_reg_bit_field_result *res = parsed_result; 8048 port_reg_bit_field_set(res->port_id, res->reg_off, 8049 res->bit1_pos, res->bit2_pos, res->value); 8050 } 8051 8052 cmdline_parse_token_string_t cmd_write_reg_bit_field_write = 8053 TOKEN_STRING_INITIALIZER(struct cmd_write_reg_bit_field_result, write, 8054 "write"); 8055 cmdline_parse_token_string_t cmd_write_reg_bit_field_regfield = 8056 TOKEN_STRING_INITIALIZER(struct cmd_write_reg_bit_field_result, 8057 regfield, "regfield"); 8058 cmdline_parse_token_num_t cmd_write_reg_bit_field_port_id = 8059 TOKEN_NUM_INITIALIZER(struct cmd_write_reg_bit_field_result, port_id, 8060 RTE_UINT16); 8061 cmdline_parse_token_num_t cmd_write_reg_bit_field_reg_off = 8062 TOKEN_NUM_INITIALIZER(struct cmd_write_reg_bit_field_result, reg_off, 8063 RTE_UINT32); 8064 cmdline_parse_token_num_t cmd_write_reg_bit_field_bit1_pos = 8065 TOKEN_NUM_INITIALIZER(struct cmd_write_reg_bit_field_result, bit1_pos, 8066 RTE_UINT8); 8067 cmdline_parse_token_num_t cmd_write_reg_bit_field_bit2_pos = 8068 TOKEN_NUM_INITIALIZER(struct cmd_write_reg_bit_field_result, bit2_pos, 8069 RTE_UINT8); 8070 cmdline_parse_token_num_t cmd_write_reg_bit_field_value = 8071 TOKEN_NUM_INITIALIZER(struct cmd_write_reg_bit_field_result, value, 8072 RTE_UINT32); 8073 8074 cmdline_parse_inst_t cmd_write_reg_bit_field = { 8075 .f = cmd_write_reg_bit_field_parsed, 8076 .data = NULL, 8077 .help_str = "write regfield <port_id> <reg_off> <bit_x> <bit_y> " 8078 "<reg_value>: " 8079 "Set register bit field between bit_x and bit_y included", 8080 .tokens = { 8081 (void *)&cmd_write_reg_bit_field_write, 8082 (void *)&cmd_write_reg_bit_field_regfield, 8083 (void *)&cmd_write_reg_bit_field_port_id, 8084 (void *)&cmd_write_reg_bit_field_reg_off, 8085 (void *)&cmd_write_reg_bit_field_bit1_pos, 8086 (void *)&cmd_write_reg_bit_field_bit2_pos, 8087 (void *)&cmd_write_reg_bit_field_value, 8088 NULL, 8089 }, 8090 }; 8091 8092 /* *** WRITE PORT REGISTER BIT *** */ 8093 struct cmd_write_reg_bit_result { 8094 cmdline_fixed_string_t write; 8095 cmdline_fixed_string_t regbit; 8096 portid_t port_id; 8097 uint32_t reg_off; 8098 uint8_t bit_pos; 8099 uint8_t value; 8100 }; 8101 8102 static void 8103 cmd_write_reg_bit_parsed(void *parsed_result, 8104 __rte_unused struct cmdline *cl, 8105 __rte_unused void *data) 8106 { 8107 struct cmd_write_reg_bit_result *res = parsed_result; 8108 port_reg_bit_set(res->port_id, res->reg_off, res->bit_pos, res->value); 8109 } 8110 8111 cmdline_parse_token_string_t cmd_write_reg_bit_write = 8112 TOKEN_STRING_INITIALIZER(struct cmd_write_reg_bit_result, write, 8113 "write"); 8114 cmdline_parse_token_string_t cmd_write_reg_bit_regbit = 8115 TOKEN_STRING_INITIALIZER(struct cmd_write_reg_bit_result, 8116 regbit, "regbit"); 8117 cmdline_parse_token_num_t cmd_write_reg_bit_port_id = 8118 TOKEN_NUM_INITIALIZER(struct cmd_write_reg_bit_result, port_id, 8119 RTE_UINT16); 8120 cmdline_parse_token_num_t cmd_write_reg_bit_reg_off = 8121 TOKEN_NUM_INITIALIZER(struct cmd_write_reg_bit_result, reg_off, 8122 RTE_UINT32); 8123 cmdline_parse_token_num_t cmd_write_reg_bit_bit_pos = 8124 TOKEN_NUM_INITIALIZER(struct cmd_write_reg_bit_result, bit_pos, 8125 RTE_UINT8); 8126 cmdline_parse_token_num_t cmd_write_reg_bit_value = 8127 TOKEN_NUM_INITIALIZER(struct cmd_write_reg_bit_result, value, 8128 RTE_UINT8); 8129 8130 cmdline_parse_inst_t cmd_write_reg_bit = { 8131 .f = cmd_write_reg_bit_parsed, 8132 .data = NULL, 8133 .help_str = "write regbit <port_id> <reg_off> <bit_x> 0|1: " 8134 "0 <= bit_x <= 31", 8135 .tokens = { 8136 (void *)&cmd_write_reg_bit_write, 8137 (void *)&cmd_write_reg_bit_regbit, 8138 (void *)&cmd_write_reg_bit_port_id, 8139 (void *)&cmd_write_reg_bit_reg_off, 8140 (void *)&cmd_write_reg_bit_bit_pos, 8141 (void *)&cmd_write_reg_bit_value, 8142 NULL, 8143 }, 8144 }; 8145 8146 /* *** READ A RING DESCRIPTOR OF A PORT RX/TX QUEUE *** */ 8147 struct cmd_read_rxd_txd_result { 8148 cmdline_fixed_string_t read; 8149 cmdline_fixed_string_t rxd_txd; 8150 portid_t port_id; 8151 uint16_t queue_id; 8152 uint16_t desc_id; 8153 }; 8154 8155 static void 8156 cmd_read_rxd_txd_parsed(void *parsed_result, 8157 __rte_unused struct cmdline *cl, 8158 __rte_unused void *data) 8159 { 8160 struct cmd_read_rxd_txd_result *res = parsed_result; 8161 8162 if (!strcmp(res->rxd_txd, "rxd")) 8163 rx_ring_desc_display(res->port_id, res->queue_id, res->desc_id); 8164 else if (!strcmp(res->rxd_txd, "txd")) 8165 tx_ring_desc_display(res->port_id, res->queue_id, res->desc_id); 8166 } 8167 8168 cmdline_parse_token_string_t cmd_read_rxd_txd_read = 8169 TOKEN_STRING_INITIALIZER(struct cmd_read_rxd_txd_result, read, "read"); 8170 cmdline_parse_token_string_t cmd_read_rxd_txd_rxd_txd = 8171 TOKEN_STRING_INITIALIZER(struct cmd_read_rxd_txd_result, rxd_txd, 8172 "rxd#txd"); 8173 cmdline_parse_token_num_t cmd_read_rxd_txd_port_id = 8174 TOKEN_NUM_INITIALIZER(struct cmd_read_rxd_txd_result, port_id, 8175 RTE_UINT16); 8176 cmdline_parse_token_num_t cmd_read_rxd_txd_queue_id = 8177 TOKEN_NUM_INITIALIZER(struct cmd_read_rxd_txd_result, queue_id, 8178 RTE_UINT16); 8179 cmdline_parse_token_num_t cmd_read_rxd_txd_desc_id = 8180 TOKEN_NUM_INITIALIZER(struct cmd_read_rxd_txd_result, desc_id, 8181 RTE_UINT16); 8182 8183 cmdline_parse_inst_t cmd_read_rxd_txd = { 8184 .f = cmd_read_rxd_txd_parsed, 8185 .data = NULL, 8186 .help_str = "read rxd|txd <port_id> <queue_id> <desc_id>", 8187 .tokens = { 8188 (void *)&cmd_read_rxd_txd_read, 8189 (void *)&cmd_read_rxd_txd_rxd_txd, 8190 (void *)&cmd_read_rxd_txd_port_id, 8191 (void *)&cmd_read_rxd_txd_queue_id, 8192 (void *)&cmd_read_rxd_txd_desc_id, 8193 NULL, 8194 }, 8195 }; 8196 8197 /* *** QUIT *** */ 8198 struct cmd_quit_result { 8199 cmdline_fixed_string_t quit; 8200 }; 8201 8202 static void cmd_quit_parsed(__rte_unused void *parsed_result, 8203 struct cmdline *cl, 8204 __rte_unused void *data) 8205 { 8206 cmdline_quit(cl); 8207 } 8208 8209 cmdline_parse_token_string_t cmd_quit_quit = 8210 TOKEN_STRING_INITIALIZER(struct cmd_quit_result, quit, "quit"); 8211 8212 cmdline_parse_inst_t cmd_quit = { 8213 .f = cmd_quit_parsed, 8214 .data = NULL, 8215 .help_str = "quit: Exit application", 8216 .tokens = { 8217 (void *)&cmd_quit_quit, 8218 NULL, 8219 }, 8220 }; 8221 8222 /* *** ADD/REMOVE MAC ADDRESS FROM A PORT *** */ 8223 struct cmd_mac_addr_result { 8224 cmdline_fixed_string_t mac_addr_cmd; 8225 cmdline_fixed_string_t what; 8226 uint16_t port_num; 8227 struct rte_ether_addr address; 8228 }; 8229 8230 static void cmd_mac_addr_parsed(void *parsed_result, 8231 __rte_unused struct cmdline *cl, 8232 __rte_unused void *data) 8233 { 8234 struct cmd_mac_addr_result *res = parsed_result; 8235 int ret; 8236 8237 if (strcmp(res->what, "add") == 0) 8238 ret = rte_eth_dev_mac_addr_add(res->port_num, &res->address, 0); 8239 else if (strcmp(res->what, "set") == 0) 8240 ret = rte_eth_dev_default_mac_addr_set(res->port_num, 8241 &res->address); 8242 else 8243 ret = rte_eth_dev_mac_addr_remove(res->port_num, &res->address); 8244 8245 /* check the return value and print it if is < 0 */ 8246 if(ret < 0) 8247 printf("mac_addr_cmd error: (%s)\n", strerror(-ret)); 8248 8249 } 8250 8251 cmdline_parse_token_string_t cmd_mac_addr_cmd = 8252 TOKEN_STRING_INITIALIZER(struct cmd_mac_addr_result, mac_addr_cmd, 8253 "mac_addr"); 8254 cmdline_parse_token_string_t cmd_mac_addr_what = 8255 TOKEN_STRING_INITIALIZER(struct cmd_mac_addr_result, what, 8256 "add#remove#set"); 8257 cmdline_parse_token_num_t cmd_mac_addr_portnum = 8258 TOKEN_NUM_INITIALIZER(struct cmd_mac_addr_result, port_num, 8259 RTE_UINT16); 8260 cmdline_parse_token_etheraddr_t cmd_mac_addr_addr = 8261 TOKEN_ETHERADDR_INITIALIZER(struct cmd_mac_addr_result, address); 8262 8263 cmdline_parse_inst_t cmd_mac_addr = { 8264 .f = cmd_mac_addr_parsed, 8265 .data = (void *)0, 8266 .help_str = "mac_addr add|remove|set <port_id> <mac_addr>: " 8267 "Add/Remove/Set MAC address on port_id", 8268 .tokens = { 8269 (void *)&cmd_mac_addr_cmd, 8270 (void *)&cmd_mac_addr_what, 8271 (void *)&cmd_mac_addr_portnum, 8272 (void *)&cmd_mac_addr_addr, 8273 NULL, 8274 }, 8275 }; 8276 8277 /* *** SET THE PEER ADDRESS FOR CERTAIN PORT *** */ 8278 struct cmd_eth_peer_result { 8279 cmdline_fixed_string_t set; 8280 cmdline_fixed_string_t eth_peer; 8281 portid_t port_id; 8282 cmdline_fixed_string_t peer_addr; 8283 }; 8284 8285 static void cmd_set_eth_peer_parsed(void *parsed_result, 8286 __rte_unused struct cmdline *cl, 8287 __rte_unused void *data) 8288 { 8289 struct cmd_eth_peer_result *res = parsed_result; 8290 8291 if (test_done == 0) { 8292 printf("Please stop forwarding first\n"); 8293 return; 8294 } 8295 if (!strcmp(res->eth_peer, "eth-peer")) { 8296 set_fwd_eth_peer(res->port_id, res->peer_addr); 8297 fwd_config_setup(); 8298 } 8299 } 8300 cmdline_parse_token_string_t cmd_eth_peer_set = 8301 TOKEN_STRING_INITIALIZER(struct cmd_eth_peer_result, set, "set"); 8302 cmdline_parse_token_string_t cmd_eth_peer = 8303 TOKEN_STRING_INITIALIZER(struct cmd_eth_peer_result, eth_peer, "eth-peer"); 8304 cmdline_parse_token_num_t cmd_eth_peer_port_id = 8305 TOKEN_NUM_INITIALIZER(struct cmd_eth_peer_result, port_id, 8306 RTE_UINT16); 8307 cmdline_parse_token_string_t cmd_eth_peer_addr = 8308 TOKEN_STRING_INITIALIZER(struct cmd_eth_peer_result, peer_addr, NULL); 8309 8310 cmdline_parse_inst_t cmd_set_fwd_eth_peer = { 8311 .f = cmd_set_eth_peer_parsed, 8312 .data = NULL, 8313 .help_str = "set eth-peer <port_id> <peer_mac>", 8314 .tokens = { 8315 (void *)&cmd_eth_peer_set, 8316 (void *)&cmd_eth_peer, 8317 (void *)&cmd_eth_peer_port_id, 8318 (void *)&cmd_eth_peer_addr, 8319 NULL, 8320 }, 8321 }; 8322 8323 /* *** CONFIGURE QUEUE STATS COUNTER MAPPINGS *** */ 8324 struct cmd_set_qmap_result { 8325 cmdline_fixed_string_t set; 8326 cmdline_fixed_string_t qmap; 8327 cmdline_fixed_string_t what; 8328 portid_t port_id; 8329 uint16_t queue_id; 8330 uint8_t map_value; 8331 }; 8332 8333 static void 8334 cmd_set_qmap_parsed(void *parsed_result, 8335 __rte_unused struct cmdline *cl, 8336 __rte_unused void *data) 8337 { 8338 struct cmd_set_qmap_result *res = parsed_result; 8339 int is_rx = (strcmp(res->what, "tx") == 0) ? 0 : 1; 8340 8341 set_qmap(res->port_id, (uint8_t)is_rx, res->queue_id, res->map_value); 8342 } 8343 8344 cmdline_parse_token_string_t cmd_setqmap_set = 8345 TOKEN_STRING_INITIALIZER(struct cmd_set_qmap_result, 8346 set, "set"); 8347 cmdline_parse_token_string_t cmd_setqmap_qmap = 8348 TOKEN_STRING_INITIALIZER(struct cmd_set_qmap_result, 8349 qmap, "stat_qmap"); 8350 cmdline_parse_token_string_t cmd_setqmap_what = 8351 TOKEN_STRING_INITIALIZER(struct cmd_set_qmap_result, 8352 what, "tx#rx"); 8353 cmdline_parse_token_num_t cmd_setqmap_portid = 8354 TOKEN_NUM_INITIALIZER(struct cmd_set_qmap_result, 8355 port_id, RTE_UINT16); 8356 cmdline_parse_token_num_t cmd_setqmap_queueid = 8357 TOKEN_NUM_INITIALIZER(struct cmd_set_qmap_result, 8358 queue_id, RTE_UINT16); 8359 cmdline_parse_token_num_t cmd_setqmap_mapvalue = 8360 TOKEN_NUM_INITIALIZER(struct cmd_set_qmap_result, 8361 map_value, RTE_UINT8); 8362 8363 cmdline_parse_inst_t cmd_set_qmap = { 8364 .f = cmd_set_qmap_parsed, 8365 .data = NULL, 8366 .help_str = "set stat_qmap rx|tx <port_id> <queue_id> <map_value>: " 8367 "Set statistics mapping value on tx|rx queue_id of port_id", 8368 .tokens = { 8369 (void *)&cmd_setqmap_set, 8370 (void *)&cmd_setqmap_qmap, 8371 (void *)&cmd_setqmap_what, 8372 (void *)&cmd_setqmap_portid, 8373 (void *)&cmd_setqmap_queueid, 8374 (void *)&cmd_setqmap_mapvalue, 8375 NULL, 8376 }, 8377 }; 8378 8379 /* *** SET OPTION TO HIDE ZERO VALUES FOR XSTATS DISPLAY *** */ 8380 struct cmd_set_xstats_hide_zero_result { 8381 cmdline_fixed_string_t keyword; 8382 cmdline_fixed_string_t name; 8383 cmdline_fixed_string_t on_off; 8384 }; 8385 8386 static void 8387 cmd_set_xstats_hide_zero_parsed(void *parsed_result, 8388 __rte_unused struct cmdline *cl, 8389 __rte_unused void *data) 8390 { 8391 struct cmd_set_xstats_hide_zero_result *res; 8392 uint16_t on_off = 0; 8393 8394 res = parsed_result; 8395 on_off = !strcmp(res->on_off, "on") ? 1 : 0; 8396 set_xstats_hide_zero(on_off); 8397 } 8398 8399 cmdline_parse_token_string_t cmd_set_xstats_hide_zero_keyword = 8400 TOKEN_STRING_INITIALIZER(struct cmd_set_xstats_hide_zero_result, 8401 keyword, "set"); 8402 cmdline_parse_token_string_t cmd_set_xstats_hide_zero_name = 8403 TOKEN_STRING_INITIALIZER(struct cmd_set_xstats_hide_zero_result, 8404 name, "xstats-hide-zero"); 8405 cmdline_parse_token_string_t cmd_set_xstats_hide_zero_on_off = 8406 TOKEN_STRING_INITIALIZER(struct cmd_set_xstats_hide_zero_result, 8407 on_off, "on#off"); 8408 8409 cmdline_parse_inst_t cmd_set_xstats_hide_zero = { 8410 .f = cmd_set_xstats_hide_zero_parsed, 8411 .data = NULL, 8412 .help_str = "set xstats-hide-zero on|off", 8413 .tokens = { 8414 (void *)&cmd_set_xstats_hide_zero_keyword, 8415 (void *)&cmd_set_xstats_hide_zero_name, 8416 (void *)&cmd_set_xstats_hide_zero_on_off, 8417 NULL, 8418 }, 8419 }; 8420 8421 /* *** SET OPTION TO ENABLE MEASUREMENT OF CPU CYCLES *** */ 8422 struct cmd_set_record_core_cycles_result { 8423 cmdline_fixed_string_t keyword; 8424 cmdline_fixed_string_t name; 8425 cmdline_fixed_string_t on_off; 8426 }; 8427 8428 static void 8429 cmd_set_record_core_cycles_parsed(void *parsed_result, 8430 __rte_unused struct cmdline *cl, 8431 __rte_unused void *data) 8432 { 8433 struct cmd_set_record_core_cycles_result *res; 8434 uint16_t on_off = 0; 8435 8436 res = parsed_result; 8437 on_off = !strcmp(res->on_off, "on") ? 1 : 0; 8438 set_record_core_cycles(on_off); 8439 } 8440 8441 cmdline_parse_token_string_t cmd_set_record_core_cycles_keyword = 8442 TOKEN_STRING_INITIALIZER(struct cmd_set_record_core_cycles_result, 8443 keyword, "set"); 8444 cmdline_parse_token_string_t cmd_set_record_core_cycles_name = 8445 TOKEN_STRING_INITIALIZER(struct cmd_set_record_core_cycles_result, 8446 name, "record-core-cycles"); 8447 cmdline_parse_token_string_t cmd_set_record_core_cycles_on_off = 8448 TOKEN_STRING_INITIALIZER(struct cmd_set_record_core_cycles_result, 8449 on_off, "on#off"); 8450 8451 cmdline_parse_inst_t cmd_set_record_core_cycles = { 8452 .f = cmd_set_record_core_cycles_parsed, 8453 .data = NULL, 8454 .help_str = "set record-core-cycles on|off", 8455 .tokens = { 8456 (void *)&cmd_set_record_core_cycles_keyword, 8457 (void *)&cmd_set_record_core_cycles_name, 8458 (void *)&cmd_set_record_core_cycles_on_off, 8459 NULL, 8460 }, 8461 }; 8462 8463 /* *** SET OPTION TO ENABLE DISPLAY OF RX AND TX BURSTS *** */ 8464 struct cmd_set_record_burst_stats_result { 8465 cmdline_fixed_string_t keyword; 8466 cmdline_fixed_string_t name; 8467 cmdline_fixed_string_t on_off; 8468 }; 8469 8470 static void 8471 cmd_set_record_burst_stats_parsed(void *parsed_result, 8472 __rte_unused struct cmdline *cl, 8473 __rte_unused void *data) 8474 { 8475 struct cmd_set_record_burst_stats_result *res; 8476 uint16_t on_off = 0; 8477 8478 res = parsed_result; 8479 on_off = !strcmp(res->on_off, "on") ? 1 : 0; 8480 set_record_burst_stats(on_off); 8481 } 8482 8483 cmdline_parse_token_string_t cmd_set_record_burst_stats_keyword = 8484 TOKEN_STRING_INITIALIZER(struct cmd_set_record_burst_stats_result, 8485 keyword, "set"); 8486 cmdline_parse_token_string_t cmd_set_record_burst_stats_name = 8487 TOKEN_STRING_INITIALIZER(struct cmd_set_record_burst_stats_result, 8488 name, "record-burst-stats"); 8489 cmdline_parse_token_string_t cmd_set_record_burst_stats_on_off = 8490 TOKEN_STRING_INITIALIZER(struct cmd_set_record_burst_stats_result, 8491 on_off, "on#off"); 8492 8493 cmdline_parse_inst_t cmd_set_record_burst_stats = { 8494 .f = cmd_set_record_burst_stats_parsed, 8495 .data = NULL, 8496 .help_str = "set record-burst-stats on|off", 8497 .tokens = { 8498 (void *)&cmd_set_record_burst_stats_keyword, 8499 (void *)&cmd_set_record_burst_stats_name, 8500 (void *)&cmd_set_record_burst_stats_on_off, 8501 NULL, 8502 }, 8503 }; 8504 8505 /* *** CONFIGURE UNICAST HASH TABLE *** */ 8506 struct cmd_set_uc_hash_table { 8507 cmdline_fixed_string_t set; 8508 cmdline_fixed_string_t port; 8509 portid_t port_id; 8510 cmdline_fixed_string_t what; 8511 struct rte_ether_addr address; 8512 cmdline_fixed_string_t mode; 8513 }; 8514 8515 static void 8516 cmd_set_uc_hash_parsed(void *parsed_result, 8517 __rte_unused struct cmdline *cl, 8518 __rte_unused void *data) 8519 { 8520 int ret=0; 8521 struct cmd_set_uc_hash_table *res = parsed_result; 8522 8523 int is_on = (strcmp(res->mode, "on") == 0) ? 1 : 0; 8524 8525 if (strcmp(res->what, "uta") == 0) 8526 ret = rte_eth_dev_uc_hash_table_set(res->port_id, 8527 &res->address,(uint8_t)is_on); 8528 if (ret < 0) 8529 printf("bad unicast hash table parameter, return code = %d \n", ret); 8530 8531 } 8532 8533 cmdline_parse_token_string_t cmd_set_uc_hash_set = 8534 TOKEN_STRING_INITIALIZER(struct cmd_set_uc_hash_table, 8535 set, "set"); 8536 cmdline_parse_token_string_t cmd_set_uc_hash_port = 8537 TOKEN_STRING_INITIALIZER(struct cmd_set_uc_hash_table, 8538 port, "port"); 8539 cmdline_parse_token_num_t cmd_set_uc_hash_portid = 8540 TOKEN_NUM_INITIALIZER(struct cmd_set_uc_hash_table, 8541 port_id, RTE_UINT16); 8542 cmdline_parse_token_string_t cmd_set_uc_hash_what = 8543 TOKEN_STRING_INITIALIZER(struct cmd_set_uc_hash_table, 8544 what, "uta"); 8545 cmdline_parse_token_etheraddr_t cmd_set_uc_hash_mac = 8546 TOKEN_ETHERADDR_INITIALIZER(struct cmd_set_uc_hash_table, 8547 address); 8548 cmdline_parse_token_string_t cmd_set_uc_hash_mode = 8549 TOKEN_STRING_INITIALIZER(struct cmd_set_uc_hash_table, 8550 mode, "on#off"); 8551 8552 cmdline_parse_inst_t cmd_set_uc_hash_filter = { 8553 .f = cmd_set_uc_hash_parsed, 8554 .data = NULL, 8555 .help_str = "set port <port_id> uta <mac_addr> on|off)", 8556 .tokens = { 8557 (void *)&cmd_set_uc_hash_set, 8558 (void *)&cmd_set_uc_hash_port, 8559 (void *)&cmd_set_uc_hash_portid, 8560 (void *)&cmd_set_uc_hash_what, 8561 (void *)&cmd_set_uc_hash_mac, 8562 (void *)&cmd_set_uc_hash_mode, 8563 NULL, 8564 }, 8565 }; 8566 8567 struct cmd_set_uc_all_hash_table { 8568 cmdline_fixed_string_t set; 8569 cmdline_fixed_string_t port; 8570 portid_t port_id; 8571 cmdline_fixed_string_t what; 8572 cmdline_fixed_string_t value; 8573 cmdline_fixed_string_t mode; 8574 }; 8575 8576 static void 8577 cmd_set_uc_all_hash_parsed(void *parsed_result, 8578 __rte_unused struct cmdline *cl, 8579 __rte_unused void *data) 8580 { 8581 int ret=0; 8582 struct cmd_set_uc_all_hash_table *res = parsed_result; 8583 8584 int is_on = (strcmp(res->mode, "on") == 0) ? 1 : 0; 8585 8586 if ((strcmp(res->what, "uta") == 0) && 8587 (strcmp(res->value, "all") == 0)) 8588 ret = rte_eth_dev_uc_all_hash_table_set(res->port_id,(uint8_t) is_on); 8589 if (ret < 0) 8590 printf("bad unicast hash table parameter," 8591 "return code = %d \n", ret); 8592 } 8593 8594 cmdline_parse_token_string_t cmd_set_uc_all_hash_set = 8595 TOKEN_STRING_INITIALIZER(struct cmd_set_uc_all_hash_table, 8596 set, "set"); 8597 cmdline_parse_token_string_t cmd_set_uc_all_hash_port = 8598 TOKEN_STRING_INITIALIZER(struct cmd_set_uc_all_hash_table, 8599 port, "port"); 8600 cmdline_parse_token_num_t cmd_set_uc_all_hash_portid = 8601 TOKEN_NUM_INITIALIZER(struct cmd_set_uc_all_hash_table, 8602 port_id, RTE_UINT16); 8603 cmdline_parse_token_string_t cmd_set_uc_all_hash_what = 8604 TOKEN_STRING_INITIALIZER(struct cmd_set_uc_all_hash_table, 8605 what, "uta"); 8606 cmdline_parse_token_string_t cmd_set_uc_all_hash_value = 8607 TOKEN_STRING_INITIALIZER(struct cmd_set_uc_all_hash_table, 8608 value,"all"); 8609 cmdline_parse_token_string_t cmd_set_uc_all_hash_mode = 8610 TOKEN_STRING_INITIALIZER(struct cmd_set_uc_all_hash_table, 8611 mode, "on#off"); 8612 8613 cmdline_parse_inst_t cmd_set_uc_all_hash_filter = { 8614 .f = cmd_set_uc_all_hash_parsed, 8615 .data = NULL, 8616 .help_str = "set port <port_id> uta all on|off", 8617 .tokens = { 8618 (void *)&cmd_set_uc_all_hash_set, 8619 (void *)&cmd_set_uc_all_hash_port, 8620 (void *)&cmd_set_uc_all_hash_portid, 8621 (void *)&cmd_set_uc_all_hash_what, 8622 (void *)&cmd_set_uc_all_hash_value, 8623 (void *)&cmd_set_uc_all_hash_mode, 8624 NULL, 8625 }, 8626 }; 8627 8628 /* *** CONFIGURE VF TRAFFIC CONTROL *** */ 8629 struct cmd_set_vf_traffic { 8630 cmdline_fixed_string_t set; 8631 cmdline_fixed_string_t port; 8632 portid_t port_id; 8633 cmdline_fixed_string_t vf; 8634 uint8_t vf_id; 8635 cmdline_fixed_string_t what; 8636 cmdline_fixed_string_t mode; 8637 }; 8638 8639 static void 8640 cmd_set_vf_traffic_parsed(void *parsed_result, 8641 __rte_unused struct cmdline *cl, 8642 __rte_unused void *data) 8643 { 8644 struct cmd_set_vf_traffic *res = parsed_result; 8645 int is_rx = (strcmp(res->what, "rx") == 0) ? 1 : 0; 8646 int is_on = (strcmp(res->mode, "on") == 0) ? 1 : 0; 8647 8648 set_vf_traffic(res->port_id, (uint8_t)is_rx, res->vf_id,(uint8_t) is_on); 8649 } 8650 8651 cmdline_parse_token_string_t cmd_setvf_traffic_set = 8652 TOKEN_STRING_INITIALIZER(struct cmd_set_vf_traffic, 8653 set, "set"); 8654 cmdline_parse_token_string_t cmd_setvf_traffic_port = 8655 TOKEN_STRING_INITIALIZER(struct cmd_set_vf_traffic, 8656 port, "port"); 8657 cmdline_parse_token_num_t cmd_setvf_traffic_portid = 8658 TOKEN_NUM_INITIALIZER(struct cmd_set_vf_traffic, 8659 port_id, RTE_UINT16); 8660 cmdline_parse_token_string_t cmd_setvf_traffic_vf = 8661 TOKEN_STRING_INITIALIZER(struct cmd_set_vf_traffic, 8662 vf, "vf"); 8663 cmdline_parse_token_num_t cmd_setvf_traffic_vfid = 8664 TOKEN_NUM_INITIALIZER(struct cmd_set_vf_traffic, 8665 vf_id, RTE_UINT8); 8666 cmdline_parse_token_string_t cmd_setvf_traffic_what = 8667 TOKEN_STRING_INITIALIZER(struct cmd_set_vf_traffic, 8668 what, "tx#rx"); 8669 cmdline_parse_token_string_t cmd_setvf_traffic_mode = 8670 TOKEN_STRING_INITIALIZER(struct cmd_set_vf_traffic, 8671 mode, "on#off"); 8672 8673 cmdline_parse_inst_t cmd_set_vf_traffic = { 8674 .f = cmd_set_vf_traffic_parsed, 8675 .data = NULL, 8676 .help_str = "set port <port_id> vf <vf_id> rx|tx on|off", 8677 .tokens = { 8678 (void *)&cmd_setvf_traffic_set, 8679 (void *)&cmd_setvf_traffic_port, 8680 (void *)&cmd_setvf_traffic_portid, 8681 (void *)&cmd_setvf_traffic_vf, 8682 (void *)&cmd_setvf_traffic_vfid, 8683 (void *)&cmd_setvf_traffic_what, 8684 (void *)&cmd_setvf_traffic_mode, 8685 NULL, 8686 }, 8687 }; 8688 8689 /* *** CONFIGURE VF RECEIVE MODE *** */ 8690 struct cmd_set_vf_rxmode { 8691 cmdline_fixed_string_t set; 8692 cmdline_fixed_string_t port; 8693 portid_t port_id; 8694 cmdline_fixed_string_t vf; 8695 uint8_t vf_id; 8696 cmdline_fixed_string_t what; 8697 cmdline_fixed_string_t mode; 8698 cmdline_fixed_string_t on; 8699 }; 8700 8701 static void 8702 cmd_set_vf_rxmode_parsed(void *parsed_result, 8703 __rte_unused struct cmdline *cl, 8704 __rte_unused void *data) 8705 { 8706 int ret = -ENOTSUP; 8707 uint16_t vf_rxmode = 0; 8708 struct cmd_set_vf_rxmode *res = parsed_result; 8709 8710 int is_on = (strcmp(res->on, "on") == 0) ? 1 : 0; 8711 if (!strcmp(res->what,"rxmode")) { 8712 if (!strcmp(res->mode, "AUPE")) 8713 vf_rxmode |= ETH_VMDQ_ACCEPT_UNTAG; 8714 else if (!strcmp(res->mode, "ROPE")) 8715 vf_rxmode |= ETH_VMDQ_ACCEPT_HASH_UC; 8716 else if (!strcmp(res->mode, "BAM")) 8717 vf_rxmode |= ETH_VMDQ_ACCEPT_BROADCAST; 8718 else if (!strncmp(res->mode, "MPE",3)) 8719 vf_rxmode |= ETH_VMDQ_ACCEPT_MULTICAST; 8720 } 8721 8722 RTE_SET_USED(is_on); 8723 8724 #ifdef RTE_NET_IXGBE 8725 if (ret == -ENOTSUP) 8726 ret = rte_pmd_ixgbe_set_vf_rxmode(res->port_id, res->vf_id, 8727 vf_rxmode, (uint8_t)is_on); 8728 #endif 8729 #ifdef RTE_NET_BNXT 8730 if (ret == -ENOTSUP) 8731 ret = rte_pmd_bnxt_set_vf_rxmode(res->port_id, res->vf_id, 8732 vf_rxmode, (uint8_t)is_on); 8733 #endif 8734 if (ret < 0) 8735 printf("bad VF receive mode parameter, return code = %d \n", 8736 ret); 8737 } 8738 8739 cmdline_parse_token_string_t cmd_set_vf_rxmode_set = 8740 TOKEN_STRING_INITIALIZER(struct cmd_set_vf_rxmode, 8741 set, "set"); 8742 cmdline_parse_token_string_t cmd_set_vf_rxmode_port = 8743 TOKEN_STRING_INITIALIZER(struct cmd_set_vf_rxmode, 8744 port, "port"); 8745 cmdline_parse_token_num_t cmd_set_vf_rxmode_portid = 8746 TOKEN_NUM_INITIALIZER(struct cmd_set_vf_rxmode, 8747 port_id, RTE_UINT16); 8748 cmdline_parse_token_string_t cmd_set_vf_rxmode_vf = 8749 TOKEN_STRING_INITIALIZER(struct cmd_set_vf_rxmode, 8750 vf, "vf"); 8751 cmdline_parse_token_num_t cmd_set_vf_rxmode_vfid = 8752 TOKEN_NUM_INITIALIZER(struct cmd_set_vf_rxmode, 8753 vf_id, RTE_UINT8); 8754 cmdline_parse_token_string_t cmd_set_vf_rxmode_what = 8755 TOKEN_STRING_INITIALIZER(struct cmd_set_vf_rxmode, 8756 what, "rxmode"); 8757 cmdline_parse_token_string_t cmd_set_vf_rxmode_mode = 8758 TOKEN_STRING_INITIALIZER(struct cmd_set_vf_rxmode, 8759 mode, "AUPE#ROPE#BAM#MPE"); 8760 cmdline_parse_token_string_t cmd_set_vf_rxmode_on = 8761 TOKEN_STRING_INITIALIZER(struct cmd_set_vf_rxmode, 8762 on, "on#off"); 8763 8764 cmdline_parse_inst_t cmd_set_vf_rxmode = { 8765 .f = cmd_set_vf_rxmode_parsed, 8766 .data = NULL, 8767 .help_str = "set port <port_id> vf <vf_id> rxmode " 8768 "AUPE|ROPE|BAM|MPE on|off", 8769 .tokens = { 8770 (void *)&cmd_set_vf_rxmode_set, 8771 (void *)&cmd_set_vf_rxmode_port, 8772 (void *)&cmd_set_vf_rxmode_portid, 8773 (void *)&cmd_set_vf_rxmode_vf, 8774 (void *)&cmd_set_vf_rxmode_vfid, 8775 (void *)&cmd_set_vf_rxmode_what, 8776 (void *)&cmd_set_vf_rxmode_mode, 8777 (void *)&cmd_set_vf_rxmode_on, 8778 NULL, 8779 }, 8780 }; 8781 8782 /* *** ADD MAC ADDRESS FILTER FOR A VF OF A PORT *** */ 8783 struct cmd_vf_mac_addr_result { 8784 cmdline_fixed_string_t mac_addr_cmd; 8785 cmdline_fixed_string_t what; 8786 cmdline_fixed_string_t port; 8787 uint16_t port_num; 8788 cmdline_fixed_string_t vf; 8789 uint8_t vf_num; 8790 struct rte_ether_addr address; 8791 }; 8792 8793 static void cmd_vf_mac_addr_parsed(void *parsed_result, 8794 __rte_unused struct cmdline *cl, 8795 __rte_unused void *data) 8796 { 8797 struct cmd_vf_mac_addr_result *res = parsed_result; 8798 int ret = -ENOTSUP; 8799 8800 if (strcmp(res->what, "add") != 0) 8801 return; 8802 8803 #ifdef RTE_NET_I40E 8804 if (ret == -ENOTSUP) 8805 ret = rte_pmd_i40e_add_vf_mac_addr(res->port_num, res->vf_num, 8806 &res->address); 8807 #endif 8808 #ifdef RTE_NET_BNXT 8809 if (ret == -ENOTSUP) 8810 ret = rte_pmd_bnxt_mac_addr_add(res->port_num, &res->address, 8811 res->vf_num); 8812 #endif 8813 8814 if(ret < 0) 8815 printf("vf_mac_addr_cmd error: (%s)\n", strerror(-ret)); 8816 8817 } 8818 8819 cmdline_parse_token_string_t cmd_vf_mac_addr_cmd = 8820 TOKEN_STRING_INITIALIZER(struct cmd_vf_mac_addr_result, 8821 mac_addr_cmd,"mac_addr"); 8822 cmdline_parse_token_string_t cmd_vf_mac_addr_what = 8823 TOKEN_STRING_INITIALIZER(struct cmd_vf_mac_addr_result, 8824 what,"add"); 8825 cmdline_parse_token_string_t cmd_vf_mac_addr_port = 8826 TOKEN_STRING_INITIALIZER(struct cmd_vf_mac_addr_result, 8827 port,"port"); 8828 cmdline_parse_token_num_t cmd_vf_mac_addr_portnum = 8829 TOKEN_NUM_INITIALIZER(struct cmd_vf_mac_addr_result, 8830 port_num, RTE_UINT16); 8831 cmdline_parse_token_string_t cmd_vf_mac_addr_vf = 8832 TOKEN_STRING_INITIALIZER(struct cmd_vf_mac_addr_result, 8833 vf,"vf"); 8834 cmdline_parse_token_num_t cmd_vf_mac_addr_vfnum = 8835 TOKEN_NUM_INITIALIZER(struct cmd_vf_mac_addr_result, 8836 vf_num, RTE_UINT8); 8837 cmdline_parse_token_etheraddr_t cmd_vf_mac_addr_addr = 8838 TOKEN_ETHERADDR_INITIALIZER(struct cmd_vf_mac_addr_result, 8839 address); 8840 8841 cmdline_parse_inst_t cmd_vf_mac_addr_filter = { 8842 .f = cmd_vf_mac_addr_parsed, 8843 .data = (void *)0, 8844 .help_str = "mac_addr add port <port_id> vf <vf_id> <mac_addr>: " 8845 "Add MAC address filtering for a VF on port_id", 8846 .tokens = { 8847 (void *)&cmd_vf_mac_addr_cmd, 8848 (void *)&cmd_vf_mac_addr_what, 8849 (void *)&cmd_vf_mac_addr_port, 8850 (void *)&cmd_vf_mac_addr_portnum, 8851 (void *)&cmd_vf_mac_addr_vf, 8852 (void *)&cmd_vf_mac_addr_vfnum, 8853 (void *)&cmd_vf_mac_addr_addr, 8854 NULL, 8855 }, 8856 }; 8857 8858 /* *** ADD/REMOVE A VLAN IDENTIFIER TO/FROM A PORT VLAN RX FILTER *** */ 8859 struct cmd_vf_rx_vlan_filter { 8860 cmdline_fixed_string_t rx_vlan; 8861 cmdline_fixed_string_t what; 8862 uint16_t vlan_id; 8863 cmdline_fixed_string_t port; 8864 portid_t port_id; 8865 cmdline_fixed_string_t vf; 8866 uint64_t vf_mask; 8867 }; 8868 8869 static void 8870 cmd_vf_rx_vlan_filter_parsed(void *parsed_result, 8871 __rte_unused struct cmdline *cl, 8872 __rte_unused void *data) 8873 { 8874 struct cmd_vf_rx_vlan_filter *res = parsed_result; 8875 int ret = -ENOTSUP; 8876 8877 __rte_unused int is_add = (strcmp(res->what, "add") == 0) ? 1 : 0; 8878 8879 #ifdef RTE_NET_IXGBE 8880 if (ret == -ENOTSUP) 8881 ret = rte_pmd_ixgbe_set_vf_vlan_filter(res->port_id, 8882 res->vlan_id, res->vf_mask, is_add); 8883 #endif 8884 #ifdef RTE_NET_I40E 8885 if (ret == -ENOTSUP) 8886 ret = rte_pmd_i40e_set_vf_vlan_filter(res->port_id, 8887 res->vlan_id, res->vf_mask, is_add); 8888 #endif 8889 #ifdef RTE_NET_BNXT 8890 if (ret == -ENOTSUP) 8891 ret = rte_pmd_bnxt_set_vf_vlan_filter(res->port_id, 8892 res->vlan_id, res->vf_mask, is_add); 8893 #endif 8894 8895 switch (ret) { 8896 case 0: 8897 break; 8898 case -EINVAL: 8899 printf("invalid vlan_id %d or vf_mask %"PRIu64"\n", 8900 res->vlan_id, res->vf_mask); 8901 break; 8902 case -ENODEV: 8903 printf("invalid port_id %d\n", res->port_id); 8904 break; 8905 case -ENOTSUP: 8906 printf("function not implemented or supported\n"); 8907 break; 8908 default: 8909 printf("programming error: (%s)\n", strerror(-ret)); 8910 } 8911 } 8912 8913 cmdline_parse_token_string_t cmd_vf_rx_vlan_filter_rx_vlan = 8914 TOKEN_STRING_INITIALIZER(struct cmd_vf_rx_vlan_filter, 8915 rx_vlan, "rx_vlan"); 8916 cmdline_parse_token_string_t cmd_vf_rx_vlan_filter_what = 8917 TOKEN_STRING_INITIALIZER(struct cmd_vf_rx_vlan_filter, 8918 what, "add#rm"); 8919 cmdline_parse_token_num_t cmd_vf_rx_vlan_filter_vlanid = 8920 TOKEN_NUM_INITIALIZER(struct cmd_vf_rx_vlan_filter, 8921 vlan_id, RTE_UINT16); 8922 cmdline_parse_token_string_t cmd_vf_rx_vlan_filter_port = 8923 TOKEN_STRING_INITIALIZER(struct cmd_vf_rx_vlan_filter, 8924 port, "port"); 8925 cmdline_parse_token_num_t cmd_vf_rx_vlan_filter_portid = 8926 TOKEN_NUM_INITIALIZER(struct cmd_vf_rx_vlan_filter, 8927 port_id, RTE_UINT16); 8928 cmdline_parse_token_string_t cmd_vf_rx_vlan_filter_vf = 8929 TOKEN_STRING_INITIALIZER(struct cmd_vf_rx_vlan_filter, 8930 vf, "vf"); 8931 cmdline_parse_token_num_t cmd_vf_rx_vlan_filter_vf_mask = 8932 TOKEN_NUM_INITIALIZER(struct cmd_vf_rx_vlan_filter, 8933 vf_mask, RTE_UINT64); 8934 8935 cmdline_parse_inst_t cmd_vf_rxvlan_filter = { 8936 .f = cmd_vf_rx_vlan_filter_parsed, 8937 .data = NULL, 8938 .help_str = "rx_vlan add|rm <vlan_id> port <port_id> vf <vf_mask>: " 8939 "(vf_mask = hexadecimal VF mask)", 8940 .tokens = { 8941 (void *)&cmd_vf_rx_vlan_filter_rx_vlan, 8942 (void *)&cmd_vf_rx_vlan_filter_what, 8943 (void *)&cmd_vf_rx_vlan_filter_vlanid, 8944 (void *)&cmd_vf_rx_vlan_filter_port, 8945 (void *)&cmd_vf_rx_vlan_filter_portid, 8946 (void *)&cmd_vf_rx_vlan_filter_vf, 8947 (void *)&cmd_vf_rx_vlan_filter_vf_mask, 8948 NULL, 8949 }, 8950 }; 8951 8952 /* *** SET RATE LIMIT FOR A QUEUE OF A PORT *** */ 8953 struct cmd_queue_rate_limit_result { 8954 cmdline_fixed_string_t set; 8955 cmdline_fixed_string_t port; 8956 uint16_t port_num; 8957 cmdline_fixed_string_t queue; 8958 uint8_t queue_num; 8959 cmdline_fixed_string_t rate; 8960 uint16_t rate_num; 8961 }; 8962 8963 static void cmd_queue_rate_limit_parsed(void *parsed_result, 8964 __rte_unused struct cmdline *cl, 8965 __rte_unused void *data) 8966 { 8967 struct cmd_queue_rate_limit_result *res = parsed_result; 8968 int ret = 0; 8969 8970 if ((strcmp(res->set, "set") == 0) && (strcmp(res->port, "port") == 0) 8971 && (strcmp(res->queue, "queue") == 0) 8972 && (strcmp(res->rate, "rate") == 0)) 8973 ret = set_queue_rate_limit(res->port_num, res->queue_num, 8974 res->rate_num); 8975 if (ret < 0) 8976 printf("queue_rate_limit_cmd error: (%s)\n", strerror(-ret)); 8977 8978 } 8979 8980 cmdline_parse_token_string_t cmd_queue_rate_limit_set = 8981 TOKEN_STRING_INITIALIZER(struct cmd_queue_rate_limit_result, 8982 set, "set"); 8983 cmdline_parse_token_string_t cmd_queue_rate_limit_port = 8984 TOKEN_STRING_INITIALIZER(struct cmd_queue_rate_limit_result, 8985 port, "port"); 8986 cmdline_parse_token_num_t cmd_queue_rate_limit_portnum = 8987 TOKEN_NUM_INITIALIZER(struct cmd_queue_rate_limit_result, 8988 port_num, RTE_UINT16); 8989 cmdline_parse_token_string_t cmd_queue_rate_limit_queue = 8990 TOKEN_STRING_INITIALIZER(struct cmd_queue_rate_limit_result, 8991 queue, "queue"); 8992 cmdline_parse_token_num_t cmd_queue_rate_limit_queuenum = 8993 TOKEN_NUM_INITIALIZER(struct cmd_queue_rate_limit_result, 8994 queue_num, RTE_UINT8); 8995 cmdline_parse_token_string_t cmd_queue_rate_limit_rate = 8996 TOKEN_STRING_INITIALIZER(struct cmd_queue_rate_limit_result, 8997 rate, "rate"); 8998 cmdline_parse_token_num_t cmd_queue_rate_limit_ratenum = 8999 TOKEN_NUM_INITIALIZER(struct cmd_queue_rate_limit_result, 9000 rate_num, RTE_UINT16); 9001 9002 cmdline_parse_inst_t cmd_queue_rate_limit = { 9003 .f = cmd_queue_rate_limit_parsed, 9004 .data = (void *)0, 9005 .help_str = "set port <port_id> queue <queue_id> rate <rate_value>: " 9006 "Set rate limit for a queue on port_id", 9007 .tokens = { 9008 (void *)&cmd_queue_rate_limit_set, 9009 (void *)&cmd_queue_rate_limit_port, 9010 (void *)&cmd_queue_rate_limit_portnum, 9011 (void *)&cmd_queue_rate_limit_queue, 9012 (void *)&cmd_queue_rate_limit_queuenum, 9013 (void *)&cmd_queue_rate_limit_rate, 9014 (void *)&cmd_queue_rate_limit_ratenum, 9015 NULL, 9016 }, 9017 }; 9018 9019 /* *** SET RATE LIMIT FOR A VF OF A PORT *** */ 9020 struct cmd_vf_rate_limit_result { 9021 cmdline_fixed_string_t set; 9022 cmdline_fixed_string_t port; 9023 uint16_t port_num; 9024 cmdline_fixed_string_t vf; 9025 uint8_t vf_num; 9026 cmdline_fixed_string_t rate; 9027 uint16_t rate_num; 9028 cmdline_fixed_string_t q_msk; 9029 uint64_t q_msk_val; 9030 }; 9031 9032 static void cmd_vf_rate_limit_parsed(void *parsed_result, 9033 __rte_unused struct cmdline *cl, 9034 __rte_unused void *data) 9035 { 9036 struct cmd_vf_rate_limit_result *res = parsed_result; 9037 int ret = 0; 9038 9039 if ((strcmp(res->set, "set") == 0) && (strcmp(res->port, "port") == 0) 9040 && (strcmp(res->vf, "vf") == 0) 9041 && (strcmp(res->rate, "rate") == 0) 9042 && (strcmp(res->q_msk, "queue_mask") == 0)) 9043 ret = set_vf_rate_limit(res->port_num, res->vf_num, 9044 res->rate_num, res->q_msk_val); 9045 if (ret < 0) 9046 printf("vf_rate_limit_cmd error: (%s)\n", strerror(-ret)); 9047 9048 } 9049 9050 cmdline_parse_token_string_t cmd_vf_rate_limit_set = 9051 TOKEN_STRING_INITIALIZER(struct cmd_vf_rate_limit_result, 9052 set, "set"); 9053 cmdline_parse_token_string_t cmd_vf_rate_limit_port = 9054 TOKEN_STRING_INITIALIZER(struct cmd_vf_rate_limit_result, 9055 port, "port"); 9056 cmdline_parse_token_num_t cmd_vf_rate_limit_portnum = 9057 TOKEN_NUM_INITIALIZER(struct cmd_vf_rate_limit_result, 9058 port_num, RTE_UINT16); 9059 cmdline_parse_token_string_t cmd_vf_rate_limit_vf = 9060 TOKEN_STRING_INITIALIZER(struct cmd_vf_rate_limit_result, 9061 vf, "vf"); 9062 cmdline_parse_token_num_t cmd_vf_rate_limit_vfnum = 9063 TOKEN_NUM_INITIALIZER(struct cmd_vf_rate_limit_result, 9064 vf_num, RTE_UINT8); 9065 cmdline_parse_token_string_t cmd_vf_rate_limit_rate = 9066 TOKEN_STRING_INITIALIZER(struct cmd_vf_rate_limit_result, 9067 rate, "rate"); 9068 cmdline_parse_token_num_t cmd_vf_rate_limit_ratenum = 9069 TOKEN_NUM_INITIALIZER(struct cmd_vf_rate_limit_result, 9070 rate_num, RTE_UINT16); 9071 cmdline_parse_token_string_t cmd_vf_rate_limit_q_msk = 9072 TOKEN_STRING_INITIALIZER(struct cmd_vf_rate_limit_result, 9073 q_msk, "queue_mask"); 9074 cmdline_parse_token_num_t cmd_vf_rate_limit_q_msk_val = 9075 TOKEN_NUM_INITIALIZER(struct cmd_vf_rate_limit_result, 9076 q_msk_val, RTE_UINT64); 9077 9078 cmdline_parse_inst_t cmd_vf_rate_limit = { 9079 .f = cmd_vf_rate_limit_parsed, 9080 .data = (void *)0, 9081 .help_str = "set port <port_id> vf <vf_id> rate <rate_value> " 9082 "queue_mask <queue_mask_value>: " 9083 "Set rate limit for queues of VF on port_id", 9084 .tokens = { 9085 (void *)&cmd_vf_rate_limit_set, 9086 (void *)&cmd_vf_rate_limit_port, 9087 (void *)&cmd_vf_rate_limit_portnum, 9088 (void *)&cmd_vf_rate_limit_vf, 9089 (void *)&cmd_vf_rate_limit_vfnum, 9090 (void *)&cmd_vf_rate_limit_rate, 9091 (void *)&cmd_vf_rate_limit_ratenum, 9092 (void *)&cmd_vf_rate_limit_q_msk, 9093 (void *)&cmd_vf_rate_limit_q_msk_val, 9094 NULL, 9095 }, 9096 }; 9097 9098 /* *** CONFIGURE TUNNEL UDP PORT *** */ 9099 struct cmd_tunnel_udp_config { 9100 cmdline_fixed_string_t rx_vxlan_port; 9101 cmdline_fixed_string_t what; 9102 uint16_t udp_port; 9103 portid_t port_id; 9104 }; 9105 9106 static void 9107 cmd_tunnel_udp_config_parsed(void *parsed_result, 9108 __rte_unused struct cmdline *cl, 9109 __rte_unused void *data) 9110 { 9111 struct cmd_tunnel_udp_config *res = parsed_result; 9112 struct rte_eth_udp_tunnel tunnel_udp; 9113 int ret; 9114 9115 tunnel_udp.udp_port = res->udp_port; 9116 tunnel_udp.prot_type = RTE_TUNNEL_TYPE_VXLAN; 9117 9118 if (!strcmp(res->what, "add")) 9119 ret = rte_eth_dev_udp_tunnel_port_add(res->port_id, 9120 &tunnel_udp); 9121 else 9122 ret = rte_eth_dev_udp_tunnel_port_delete(res->port_id, 9123 &tunnel_udp); 9124 9125 if (ret < 0) 9126 printf("udp tunneling add error: (%s)\n", strerror(-ret)); 9127 } 9128 9129 cmdline_parse_token_string_t cmd_tunnel_udp_config_rx_vxlan_port = 9130 TOKEN_STRING_INITIALIZER(struct cmd_tunnel_udp_config, 9131 rx_vxlan_port, "rx_vxlan_port"); 9132 cmdline_parse_token_string_t cmd_tunnel_udp_config_what = 9133 TOKEN_STRING_INITIALIZER(struct cmd_tunnel_udp_config, 9134 what, "add#rm"); 9135 cmdline_parse_token_num_t cmd_tunnel_udp_config_udp_port = 9136 TOKEN_NUM_INITIALIZER(struct cmd_tunnel_udp_config, 9137 udp_port, RTE_UINT16); 9138 cmdline_parse_token_num_t cmd_tunnel_udp_config_port_id = 9139 TOKEN_NUM_INITIALIZER(struct cmd_tunnel_udp_config, 9140 port_id, RTE_UINT16); 9141 9142 cmdline_parse_inst_t cmd_tunnel_udp_config = { 9143 .f = cmd_tunnel_udp_config_parsed, 9144 .data = (void *)0, 9145 .help_str = "rx_vxlan_port add|rm <udp_port> <port_id>: " 9146 "Add/Remove a tunneling UDP port filter", 9147 .tokens = { 9148 (void *)&cmd_tunnel_udp_config_rx_vxlan_port, 9149 (void *)&cmd_tunnel_udp_config_what, 9150 (void *)&cmd_tunnel_udp_config_udp_port, 9151 (void *)&cmd_tunnel_udp_config_port_id, 9152 NULL, 9153 }, 9154 }; 9155 9156 struct cmd_config_tunnel_udp_port { 9157 cmdline_fixed_string_t port; 9158 cmdline_fixed_string_t config; 9159 portid_t port_id; 9160 cmdline_fixed_string_t udp_tunnel_port; 9161 cmdline_fixed_string_t action; 9162 cmdline_fixed_string_t tunnel_type; 9163 uint16_t udp_port; 9164 }; 9165 9166 static void 9167 cmd_cfg_tunnel_udp_port_parsed(void *parsed_result, 9168 __rte_unused struct cmdline *cl, 9169 __rte_unused void *data) 9170 { 9171 struct cmd_config_tunnel_udp_port *res = parsed_result; 9172 struct rte_eth_udp_tunnel tunnel_udp; 9173 int ret = 0; 9174 9175 if (port_id_is_invalid(res->port_id, ENABLED_WARN)) 9176 return; 9177 9178 tunnel_udp.udp_port = res->udp_port; 9179 9180 if (!strcmp(res->tunnel_type, "vxlan")) { 9181 tunnel_udp.prot_type = RTE_TUNNEL_TYPE_VXLAN; 9182 } else if (!strcmp(res->tunnel_type, "geneve")) { 9183 tunnel_udp.prot_type = RTE_TUNNEL_TYPE_GENEVE; 9184 } else if (!strcmp(res->tunnel_type, "vxlan-gpe")) { 9185 tunnel_udp.prot_type = RTE_TUNNEL_TYPE_VXLAN_GPE; 9186 } else if (!strcmp(res->tunnel_type, "ecpri")) { 9187 tunnel_udp.prot_type = RTE_TUNNEL_TYPE_ECPRI; 9188 } else { 9189 printf("Invalid tunnel type\n"); 9190 return; 9191 } 9192 9193 if (!strcmp(res->action, "add")) 9194 ret = rte_eth_dev_udp_tunnel_port_add(res->port_id, 9195 &tunnel_udp); 9196 else 9197 ret = rte_eth_dev_udp_tunnel_port_delete(res->port_id, 9198 &tunnel_udp); 9199 9200 if (ret < 0) 9201 printf("udp tunneling port add error: (%s)\n", strerror(-ret)); 9202 } 9203 9204 cmdline_parse_token_string_t cmd_config_tunnel_udp_port_port = 9205 TOKEN_STRING_INITIALIZER(struct cmd_config_tunnel_udp_port, port, 9206 "port"); 9207 cmdline_parse_token_string_t cmd_config_tunnel_udp_port_config = 9208 TOKEN_STRING_INITIALIZER(struct cmd_config_tunnel_udp_port, config, 9209 "config"); 9210 cmdline_parse_token_num_t cmd_config_tunnel_udp_port_port_id = 9211 TOKEN_NUM_INITIALIZER(struct cmd_config_tunnel_udp_port, port_id, 9212 RTE_UINT16); 9213 cmdline_parse_token_string_t cmd_config_tunnel_udp_port_tunnel_port = 9214 TOKEN_STRING_INITIALIZER(struct cmd_config_tunnel_udp_port, 9215 udp_tunnel_port, 9216 "udp_tunnel_port"); 9217 cmdline_parse_token_string_t cmd_config_tunnel_udp_port_action = 9218 TOKEN_STRING_INITIALIZER(struct cmd_config_tunnel_udp_port, action, 9219 "add#rm"); 9220 cmdline_parse_token_string_t cmd_config_tunnel_udp_port_tunnel_type = 9221 TOKEN_STRING_INITIALIZER(struct cmd_config_tunnel_udp_port, tunnel_type, 9222 "vxlan#geneve#vxlan-gpe#ecpri"); 9223 cmdline_parse_token_num_t cmd_config_tunnel_udp_port_value = 9224 TOKEN_NUM_INITIALIZER(struct cmd_config_tunnel_udp_port, udp_port, 9225 RTE_UINT16); 9226 9227 cmdline_parse_inst_t cmd_cfg_tunnel_udp_port = { 9228 .f = cmd_cfg_tunnel_udp_port_parsed, 9229 .data = NULL, 9230 .help_str = "port config <port_id> udp_tunnel_port add|rm vxlan|" 9231 "geneve|vxlan-gpe|ecpri <udp_port>", 9232 .tokens = { 9233 (void *)&cmd_config_tunnel_udp_port_port, 9234 (void *)&cmd_config_tunnel_udp_port_config, 9235 (void *)&cmd_config_tunnel_udp_port_port_id, 9236 (void *)&cmd_config_tunnel_udp_port_tunnel_port, 9237 (void *)&cmd_config_tunnel_udp_port_action, 9238 (void *)&cmd_config_tunnel_udp_port_tunnel_type, 9239 (void *)&cmd_config_tunnel_udp_port_value, 9240 NULL, 9241 }, 9242 }; 9243 9244 /* *** CONFIGURE VM MIRROR VLAN/POOL RULE *** */ 9245 struct cmd_set_mirror_mask_result { 9246 cmdline_fixed_string_t set; 9247 cmdline_fixed_string_t port; 9248 portid_t port_id; 9249 cmdline_fixed_string_t mirror; 9250 uint8_t rule_id; 9251 cmdline_fixed_string_t what; 9252 cmdline_fixed_string_t value; 9253 cmdline_fixed_string_t dstpool; 9254 uint8_t dstpool_id; 9255 cmdline_fixed_string_t on; 9256 }; 9257 9258 cmdline_parse_token_string_t cmd_mirror_mask_set = 9259 TOKEN_STRING_INITIALIZER(struct cmd_set_mirror_mask_result, 9260 set, "set"); 9261 cmdline_parse_token_string_t cmd_mirror_mask_port = 9262 TOKEN_STRING_INITIALIZER(struct cmd_set_mirror_mask_result, 9263 port, "port"); 9264 cmdline_parse_token_num_t cmd_mirror_mask_portid = 9265 TOKEN_NUM_INITIALIZER(struct cmd_set_mirror_mask_result, 9266 port_id, RTE_UINT16); 9267 cmdline_parse_token_string_t cmd_mirror_mask_mirror = 9268 TOKEN_STRING_INITIALIZER(struct cmd_set_mirror_mask_result, 9269 mirror, "mirror-rule"); 9270 cmdline_parse_token_num_t cmd_mirror_mask_ruleid = 9271 TOKEN_NUM_INITIALIZER(struct cmd_set_mirror_mask_result, 9272 rule_id, RTE_UINT8); 9273 cmdline_parse_token_string_t cmd_mirror_mask_what = 9274 TOKEN_STRING_INITIALIZER(struct cmd_set_mirror_mask_result, 9275 what, "pool-mirror-up#pool-mirror-down" 9276 "#vlan-mirror"); 9277 cmdline_parse_token_string_t cmd_mirror_mask_value = 9278 TOKEN_STRING_INITIALIZER(struct cmd_set_mirror_mask_result, 9279 value, NULL); 9280 cmdline_parse_token_string_t cmd_mirror_mask_dstpool = 9281 TOKEN_STRING_INITIALIZER(struct cmd_set_mirror_mask_result, 9282 dstpool, "dst-pool"); 9283 cmdline_parse_token_num_t cmd_mirror_mask_poolid = 9284 TOKEN_NUM_INITIALIZER(struct cmd_set_mirror_mask_result, 9285 dstpool_id, RTE_UINT8); 9286 cmdline_parse_token_string_t cmd_mirror_mask_on = 9287 TOKEN_STRING_INITIALIZER(struct cmd_set_mirror_mask_result, 9288 on, "on#off"); 9289 9290 static void 9291 cmd_set_mirror_mask_parsed(void *parsed_result, 9292 __rte_unused struct cmdline *cl, 9293 __rte_unused void *data) 9294 { 9295 int ret,nb_item,i; 9296 struct cmd_set_mirror_mask_result *res = parsed_result; 9297 struct rte_eth_mirror_conf mr_conf; 9298 9299 memset(&mr_conf, 0, sizeof(struct rte_eth_mirror_conf)); 9300 9301 unsigned int vlan_list[ETH_MIRROR_MAX_VLANS]; 9302 9303 mr_conf.dst_pool = res->dstpool_id; 9304 9305 if (!strcmp(res->what, "pool-mirror-up")) { 9306 mr_conf.pool_mask = strtoull(res->value, NULL, 16); 9307 mr_conf.rule_type = ETH_MIRROR_VIRTUAL_POOL_UP; 9308 } else if (!strcmp(res->what, "pool-mirror-down")) { 9309 mr_conf.pool_mask = strtoull(res->value, NULL, 16); 9310 mr_conf.rule_type = ETH_MIRROR_VIRTUAL_POOL_DOWN; 9311 } else if (!strcmp(res->what, "vlan-mirror")) { 9312 mr_conf.rule_type = ETH_MIRROR_VLAN; 9313 nb_item = parse_item_list(res->value, "vlan", 9314 ETH_MIRROR_MAX_VLANS, vlan_list, 1); 9315 if (nb_item <= 0) 9316 return; 9317 9318 for (i = 0; i < nb_item; i++) { 9319 if (vlan_list[i] > RTE_ETHER_MAX_VLAN_ID) { 9320 printf("Invalid vlan_id: must be < 4096\n"); 9321 return; 9322 } 9323 9324 mr_conf.vlan.vlan_id[i] = (uint16_t)vlan_list[i]; 9325 mr_conf.vlan.vlan_mask |= 1ULL << i; 9326 } 9327 } 9328 9329 if (!strcmp(res->on, "on")) 9330 ret = rte_eth_mirror_rule_set(res->port_id, &mr_conf, 9331 res->rule_id, 1); 9332 else 9333 ret = rte_eth_mirror_rule_set(res->port_id, &mr_conf, 9334 res->rule_id, 0); 9335 if (ret < 0) 9336 printf("mirror rule add error: (%s)\n", strerror(-ret)); 9337 } 9338 9339 cmdline_parse_inst_t cmd_set_mirror_mask = { 9340 .f = cmd_set_mirror_mask_parsed, 9341 .data = NULL, 9342 .help_str = "set port <port_id> mirror-rule <rule_id> " 9343 "pool-mirror-up|pool-mirror-down|vlan-mirror " 9344 "<pool_mask|vlan_id[,vlan_id]*> dst-pool <pool_id> on|off", 9345 .tokens = { 9346 (void *)&cmd_mirror_mask_set, 9347 (void *)&cmd_mirror_mask_port, 9348 (void *)&cmd_mirror_mask_portid, 9349 (void *)&cmd_mirror_mask_mirror, 9350 (void *)&cmd_mirror_mask_ruleid, 9351 (void *)&cmd_mirror_mask_what, 9352 (void *)&cmd_mirror_mask_value, 9353 (void *)&cmd_mirror_mask_dstpool, 9354 (void *)&cmd_mirror_mask_poolid, 9355 (void *)&cmd_mirror_mask_on, 9356 NULL, 9357 }, 9358 }; 9359 9360 /* *** CONFIGURE VM MIRROR UPLINK/DOWNLINK RULE *** */ 9361 struct cmd_set_mirror_link_result { 9362 cmdline_fixed_string_t set; 9363 cmdline_fixed_string_t port; 9364 portid_t port_id; 9365 cmdline_fixed_string_t mirror; 9366 uint8_t rule_id; 9367 cmdline_fixed_string_t what; 9368 cmdline_fixed_string_t dstpool; 9369 uint8_t dstpool_id; 9370 cmdline_fixed_string_t on; 9371 }; 9372 9373 cmdline_parse_token_string_t cmd_mirror_link_set = 9374 TOKEN_STRING_INITIALIZER(struct cmd_set_mirror_link_result, 9375 set, "set"); 9376 cmdline_parse_token_string_t cmd_mirror_link_port = 9377 TOKEN_STRING_INITIALIZER(struct cmd_set_mirror_link_result, 9378 port, "port"); 9379 cmdline_parse_token_num_t cmd_mirror_link_portid = 9380 TOKEN_NUM_INITIALIZER(struct cmd_set_mirror_link_result, 9381 port_id, RTE_UINT16); 9382 cmdline_parse_token_string_t cmd_mirror_link_mirror = 9383 TOKEN_STRING_INITIALIZER(struct cmd_set_mirror_link_result, 9384 mirror, "mirror-rule"); 9385 cmdline_parse_token_num_t cmd_mirror_link_ruleid = 9386 TOKEN_NUM_INITIALIZER(struct cmd_set_mirror_link_result, 9387 rule_id, RTE_UINT8); 9388 cmdline_parse_token_string_t cmd_mirror_link_what = 9389 TOKEN_STRING_INITIALIZER(struct cmd_set_mirror_link_result, 9390 what, "uplink-mirror#downlink-mirror"); 9391 cmdline_parse_token_string_t cmd_mirror_link_dstpool = 9392 TOKEN_STRING_INITIALIZER(struct cmd_set_mirror_link_result, 9393 dstpool, "dst-pool"); 9394 cmdline_parse_token_num_t cmd_mirror_link_poolid = 9395 TOKEN_NUM_INITIALIZER(struct cmd_set_mirror_link_result, 9396 dstpool_id, RTE_UINT8); 9397 cmdline_parse_token_string_t cmd_mirror_link_on = 9398 TOKEN_STRING_INITIALIZER(struct cmd_set_mirror_link_result, 9399 on, "on#off"); 9400 9401 static void 9402 cmd_set_mirror_link_parsed(void *parsed_result, 9403 __rte_unused struct cmdline *cl, 9404 __rte_unused void *data) 9405 { 9406 int ret; 9407 struct cmd_set_mirror_link_result *res = parsed_result; 9408 struct rte_eth_mirror_conf mr_conf; 9409 9410 memset(&mr_conf, 0, sizeof(struct rte_eth_mirror_conf)); 9411 if (!strcmp(res->what, "uplink-mirror")) 9412 mr_conf.rule_type = ETH_MIRROR_UPLINK_PORT; 9413 else 9414 mr_conf.rule_type = ETH_MIRROR_DOWNLINK_PORT; 9415 9416 mr_conf.dst_pool = res->dstpool_id; 9417 9418 if (!strcmp(res->on, "on")) 9419 ret = rte_eth_mirror_rule_set(res->port_id, &mr_conf, 9420 res->rule_id, 1); 9421 else 9422 ret = rte_eth_mirror_rule_set(res->port_id, &mr_conf, 9423 res->rule_id, 0); 9424 9425 /* check the return value and print it if is < 0 */ 9426 if (ret < 0) 9427 printf("mirror rule add error: (%s)\n", strerror(-ret)); 9428 9429 } 9430 9431 cmdline_parse_inst_t cmd_set_mirror_link = { 9432 .f = cmd_set_mirror_link_parsed, 9433 .data = NULL, 9434 .help_str = "set port <port_id> mirror-rule <rule_id> " 9435 "uplink-mirror|downlink-mirror dst-pool <pool_id> on|off", 9436 .tokens = { 9437 (void *)&cmd_mirror_link_set, 9438 (void *)&cmd_mirror_link_port, 9439 (void *)&cmd_mirror_link_portid, 9440 (void *)&cmd_mirror_link_mirror, 9441 (void *)&cmd_mirror_link_ruleid, 9442 (void *)&cmd_mirror_link_what, 9443 (void *)&cmd_mirror_link_dstpool, 9444 (void *)&cmd_mirror_link_poolid, 9445 (void *)&cmd_mirror_link_on, 9446 NULL, 9447 }, 9448 }; 9449 9450 /* *** RESET VM MIRROR RULE *** */ 9451 struct cmd_rm_mirror_rule_result { 9452 cmdline_fixed_string_t reset; 9453 cmdline_fixed_string_t port; 9454 portid_t port_id; 9455 cmdline_fixed_string_t mirror; 9456 uint8_t rule_id; 9457 }; 9458 9459 cmdline_parse_token_string_t cmd_rm_mirror_rule_reset = 9460 TOKEN_STRING_INITIALIZER(struct cmd_rm_mirror_rule_result, 9461 reset, "reset"); 9462 cmdline_parse_token_string_t cmd_rm_mirror_rule_port = 9463 TOKEN_STRING_INITIALIZER(struct cmd_rm_mirror_rule_result, 9464 port, "port"); 9465 cmdline_parse_token_num_t cmd_rm_mirror_rule_portid = 9466 TOKEN_NUM_INITIALIZER(struct cmd_rm_mirror_rule_result, 9467 port_id, RTE_UINT16); 9468 cmdline_parse_token_string_t cmd_rm_mirror_rule_mirror = 9469 TOKEN_STRING_INITIALIZER(struct cmd_rm_mirror_rule_result, 9470 mirror, "mirror-rule"); 9471 cmdline_parse_token_num_t cmd_rm_mirror_rule_ruleid = 9472 TOKEN_NUM_INITIALIZER(struct cmd_rm_mirror_rule_result, 9473 rule_id, RTE_UINT8); 9474 9475 static void 9476 cmd_reset_mirror_rule_parsed(void *parsed_result, 9477 __rte_unused struct cmdline *cl, 9478 __rte_unused void *data) 9479 { 9480 int ret; 9481 struct cmd_set_mirror_link_result *res = parsed_result; 9482 /* check rule_id */ 9483 ret = rte_eth_mirror_rule_reset(res->port_id,res->rule_id); 9484 if(ret < 0) 9485 printf("mirror rule remove error: (%s)\n", strerror(-ret)); 9486 } 9487 9488 cmdline_parse_inst_t cmd_reset_mirror_rule = { 9489 .f = cmd_reset_mirror_rule_parsed, 9490 .data = NULL, 9491 .help_str = "reset port <port_id> mirror-rule <rule_id>", 9492 .tokens = { 9493 (void *)&cmd_rm_mirror_rule_reset, 9494 (void *)&cmd_rm_mirror_rule_port, 9495 (void *)&cmd_rm_mirror_rule_portid, 9496 (void *)&cmd_rm_mirror_rule_mirror, 9497 (void *)&cmd_rm_mirror_rule_ruleid, 9498 NULL, 9499 }, 9500 }; 9501 9502 /* ******************************************************************************** */ 9503 9504 struct cmd_dump_result { 9505 cmdline_fixed_string_t dump; 9506 }; 9507 9508 static void 9509 dump_struct_sizes(void) 9510 { 9511 #define DUMP_SIZE(t) printf("sizeof(" #t ") = %u\n", (unsigned)sizeof(t)); 9512 DUMP_SIZE(struct rte_mbuf); 9513 DUMP_SIZE(struct rte_mempool); 9514 DUMP_SIZE(struct rte_ring); 9515 #undef DUMP_SIZE 9516 } 9517 9518 9519 /* Dump the socket memory statistics on console */ 9520 static void 9521 dump_socket_mem(FILE *f) 9522 { 9523 struct rte_malloc_socket_stats socket_stats; 9524 unsigned int i; 9525 size_t total = 0; 9526 size_t alloc = 0; 9527 size_t free = 0; 9528 unsigned int n_alloc = 0; 9529 unsigned int n_free = 0; 9530 static size_t last_allocs; 9531 static size_t last_total; 9532 9533 9534 for (i = 0; i < RTE_MAX_NUMA_NODES; i++) { 9535 if (rte_malloc_get_socket_stats(i, &socket_stats) || 9536 !socket_stats.heap_totalsz_bytes) 9537 continue; 9538 total += socket_stats.heap_totalsz_bytes; 9539 alloc += socket_stats.heap_allocsz_bytes; 9540 free += socket_stats.heap_freesz_bytes; 9541 n_alloc += socket_stats.alloc_count; 9542 n_free += socket_stats.free_count; 9543 fprintf(f, 9544 "Socket %u: size(M) total: %.6lf alloc: %.6lf(%.3lf%%) free: %.6lf \tcount alloc: %-4u free: %u\n", 9545 i, 9546 (double)socket_stats.heap_totalsz_bytes / (1024 * 1024), 9547 (double)socket_stats.heap_allocsz_bytes / (1024 * 1024), 9548 (double)socket_stats.heap_allocsz_bytes * 100 / 9549 (double)socket_stats.heap_totalsz_bytes, 9550 (double)socket_stats.heap_freesz_bytes / (1024 * 1024), 9551 socket_stats.alloc_count, 9552 socket_stats.free_count); 9553 } 9554 fprintf(f, 9555 "Total : size(M) total: %.6lf alloc: %.6lf(%.3lf%%) free: %.6lf \tcount alloc: %-4u free: %u\n", 9556 (double)total / (1024 * 1024), (double)alloc / (1024 * 1024), 9557 (double)alloc * 100 / (double)total, 9558 (double)free / (1024 * 1024), 9559 n_alloc, n_free); 9560 if (last_allocs) 9561 fprintf(stdout, "Memory total change: %.6lf(M), allocation change: %.6lf(M)\n", 9562 ((double)total - (double)last_total) / (1024 * 1024), 9563 (double)(alloc - (double)last_allocs) / 1024 / 1024); 9564 last_allocs = alloc; 9565 last_total = total; 9566 } 9567 9568 static void cmd_dump_parsed(void *parsed_result, 9569 __rte_unused struct cmdline *cl, 9570 __rte_unused void *data) 9571 { 9572 struct cmd_dump_result *res = parsed_result; 9573 9574 if (!strcmp(res->dump, "dump_physmem")) 9575 rte_dump_physmem_layout(stdout); 9576 else if (!strcmp(res->dump, "dump_socket_mem")) 9577 dump_socket_mem(stdout); 9578 else if (!strcmp(res->dump, "dump_memzone")) 9579 rte_memzone_dump(stdout); 9580 else if (!strcmp(res->dump, "dump_struct_sizes")) 9581 dump_struct_sizes(); 9582 else if (!strcmp(res->dump, "dump_ring")) 9583 rte_ring_list_dump(stdout); 9584 else if (!strcmp(res->dump, "dump_mempool")) 9585 rte_mempool_list_dump(stdout); 9586 else if (!strcmp(res->dump, "dump_devargs")) 9587 rte_devargs_dump(stdout); 9588 else if (!strcmp(res->dump, "dump_log_types")) 9589 rte_log_dump(stdout); 9590 } 9591 9592 cmdline_parse_token_string_t cmd_dump_dump = 9593 TOKEN_STRING_INITIALIZER(struct cmd_dump_result, dump, 9594 "dump_physmem#" 9595 "dump_memzone#" 9596 "dump_socket_mem#" 9597 "dump_struct_sizes#" 9598 "dump_ring#" 9599 "dump_mempool#" 9600 "dump_devargs#" 9601 "dump_log_types"); 9602 9603 cmdline_parse_inst_t cmd_dump = { 9604 .f = cmd_dump_parsed, /* function to call */ 9605 .data = NULL, /* 2nd arg of func */ 9606 .help_str = "Dump status", 9607 .tokens = { /* token list, NULL terminated */ 9608 (void *)&cmd_dump_dump, 9609 NULL, 9610 }, 9611 }; 9612 9613 /* ******************************************************************************** */ 9614 9615 struct cmd_dump_one_result { 9616 cmdline_fixed_string_t dump; 9617 cmdline_fixed_string_t name; 9618 }; 9619 9620 static void cmd_dump_one_parsed(void *parsed_result, struct cmdline *cl, 9621 __rte_unused void *data) 9622 { 9623 struct cmd_dump_one_result *res = parsed_result; 9624 9625 if (!strcmp(res->dump, "dump_ring")) { 9626 struct rte_ring *r; 9627 r = rte_ring_lookup(res->name); 9628 if (r == NULL) { 9629 cmdline_printf(cl, "Cannot find ring\n"); 9630 return; 9631 } 9632 rte_ring_dump(stdout, r); 9633 } else if (!strcmp(res->dump, "dump_mempool")) { 9634 struct rte_mempool *mp; 9635 mp = rte_mempool_lookup(res->name); 9636 if (mp == NULL) { 9637 cmdline_printf(cl, "Cannot find mempool\n"); 9638 return; 9639 } 9640 rte_mempool_dump(stdout, mp); 9641 } 9642 } 9643 9644 cmdline_parse_token_string_t cmd_dump_one_dump = 9645 TOKEN_STRING_INITIALIZER(struct cmd_dump_one_result, dump, 9646 "dump_ring#dump_mempool"); 9647 9648 cmdline_parse_token_string_t cmd_dump_one_name = 9649 TOKEN_STRING_INITIALIZER(struct cmd_dump_one_result, name, NULL); 9650 9651 cmdline_parse_inst_t cmd_dump_one = { 9652 .f = cmd_dump_one_parsed, /* function to call */ 9653 .data = NULL, /* 2nd arg of func */ 9654 .help_str = "dump_ring|dump_mempool <name>: Dump one ring/mempool", 9655 .tokens = { /* token list, NULL terminated */ 9656 (void *)&cmd_dump_one_dump, 9657 (void *)&cmd_dump_one_name, 9658 NULL, 9659 }, 9660 }; 9661 9662 /* *** queue region set *** */ 9663 struct cmd_queue_region_result { 9664 cmdline_fixed_string_t set; 9665 cmdline_fixed_string_t port; 9666 portid_t port_id; 9667 cmdline_fixed_string_t cmd; 9668 cmdline_fixed_string_t region; 9669 uint8_t region_id; 9670 cmdline_fixed_string_t queue_start_index; 9671 uint8_t queue_id; 9672 cmdline_fixed_string_t queue_num; 9673 uint8_t queue_num_value; 9674 }; 9675 9676 static void 9677 cmd_queue_region_parsed(void *parsed_result, 9678 __rte_unused struct cmdline *cl, 9679 __rte_unused void *data) 9680 { 9681 struct cmd_queue_region_result *res = parsed_result; 9682 int ret = -ENOTSUP; 9683 #ifdef RTE_NET_I40E 9684 struct rte_pmd_i40e_queue_region_conf region_conf; 9685 enum rte_pmd_i40e_queue_region_op op_type; 9686 #endif 9687 9688 if (port_id_is_invalid(res->port_id, ENABLED_WARN)) 9689 return; 9690 9691 #ifdef RTE_NET_I40E 9692 memset(®ion_conf, 0, sizeof(region_conf)); 9693 op_type = RTE_PMD_I40E_RSS_QUEUE_REGION_SET; 9694 region_conf.region_id = res->region_id; 9695 region_conf.queue_num = res->queue_num_value; 9696 region_conf.queue_start_index = res->queue_id; 9697 9698 ret = rte_pmd_i40e_rss_queue_region_conf(res->port_id, 9699 op_type, ®ion_conf); 9700 #endif 9701 9702 switch (ret) { 9703 case 0: 9704 break; 9705 case -ENOTSUP: 9706 printf("function not implemented or supported\n"); 9707 break; 9708 default: 9709 printf("queue region config error: (%s)\n", strerror(-ret)); 9710 } 9711 } 9712 9713 cmdline_parse_token_string_t cmd_queue_region_set = 9714 TOKEN_STRING_INITIALIZER(struct cmd_queue_region_result, 9715 set, "set"); 9716 cmdline_parse_token_string_t cmd_queue_region_port = 9717 TOKEN_STRING_INITIALIZER(struct cmd_queue_region_result, port, "port"); 9718 cmdline_parse_token_num_t cmd_queue_region_port_id = 9719 TOKEN_NUM_INITIALIZER(struct cmd_queue_region_result, 9720 port_id, RTE_UINT16); 9721 cmdline_parse_token_string_t cmd_queue_region_cmd = 9722 TOKEN_STRING_INITIALIZER(struct cmd_queue_region_result, 9723 cmd, "queue-region"); 9724 cmdline_parse_token_string_t cmd_queue_region_id = 9725 TOKEN_STRING_INITIALIZER(struct cmd_queue_region_result, 9726 region, "region_id"); 9727 cmdline_parse_token_num_t cmd_queue_region_index = 9728 TOKEN_NUM_INITIALIZER(struct cmd_queue_region_result, 9729 region_id, RTE_UINT8); 9730 cmdline_parse_token_string_t cmd_queue_region_queue_start_index = 9731 TOKEN_STRING_INITIALIZER(struct cmd_queue_region_result, 9732 queue_start_index, "queue_start_index"); 9733 cmdline_parse_token_num_t cmd_queue_region_queue_id = 9734 TOKEN_NUM_INITIALIZER(struct cmd_queue_region_result, 9735 queue_id, RTE_UINT8); 9736 cmdline_parse_token_string_t cmd_queue_region_queue_num = 9737 TOKEN_STRING_INITIALIZER(struct cmd_queue_region_result, 9738 queue_num, "queue_num"); 9739 cmdline_parse_token_num_t cmd_queue_region_queue_num_value = 9740 TOKEN_NUM_INITIALIZER(struct cmd_queue_region_result, 9741 queue_num_value, RTE_UINT8); 9742 9743 cmdline_parse_inst_t cmd_queue_region = { 9744 .f = cmd_queue_region_parsed, 9745 .data = NULL, 9746 .help_str = "set port <port_id> queue-region region_id <value> " 9747 "queue_start_index <value> queue_num <value>: Set a queue region", 9748 .tokens = { 9749 (void *)&cmd_queue_region_set, 9750 (void *)&cmd_queue_region_port, 9751 (void *)&cmd_queue_region_port_id, 9752 (void *)&cmd_queue_region_cmd, 9753 (void *)&cmd_queue_region_id, 9754 (void *)&cmd_queue_region_index, 9755 (void *)&cmd_queue_region_queue_start_index, 9756 (void *)&cmd_queue_region_queue_id, 9757 (void *)&cmd_queue_region_queue_num, 9758 (void *)&cmd_queue_region_queue_num_value, 9759 NULL, 9760 }, 9761 }; 9762 9763 /* *** queue region and flowtype set *** */ 9764 struct cmd_region_flowtype_result { 9765 cmdline_fixed_string_t set; 9766 cmdline_fixed_string_t port; 9767 portid_t port_id; 9768 cmdline_fixed_string_t cmd; 9769 cmdline_fixed_string_t region; 9770 uint8_t region_id; 9771 cmdline_fixed_string_t flowtype; 9772 uint8_t flowtype_id; 9773 }; 9774 9775 static void 9776 cmd_region_flowtype_parsed(void *parsed_result, 9777 __rte_unused struct cmdline *cl, 9778 __rte_unused void *data) 9779 { 9780 struct cmd_region_flowtype_result *res = parsed_result; 9781 int ret = -ENOTSUP; 9782 #ifdef RTE_NET_I40E 9783 struct rte_pmd_i40e_queue_region_conf region_conf; 9784 enum rte_pmd_i40e_queue_region_op op_type; 9785 #endif 9786 9787 if (port_id_is_invalid(res->port_id, ENABLED_WARN)) 9788 return; 9789 9790 #ifdef RTE_NET_I40E 9791 memset(®ion_conf, 0, sizeof(region_conf)); 9792 9793 op_type = RTE_PMD_I40E_RSS_QUEUE_REGION_FLOWTYPE_SET; 9794 region_conf.region_id = res->region_id; 9795 region_conf.hw_flowtype = res->flowtype_id; 9796 9797 ret = rte_pmd_i40e_rss_queue_region_conf(res->port_id, 9798 op_type, ®ion_conf); 9799 #endif 9800 9801 switch (ret) { 9802 case 0: 9803 break; 9804 case -ENOTSUP: 9805 printf("function not implemented or supported\n"); 9806 break; 9807 default: 9808 printf("region flowtype config error: (%s)\n", strerror(-ret)); 9809 } 9810 } 9811 9812 cmdline_parse_token_string_t cmd_region_flowtype_set = 9813 TOKEN_STRING_INITIALIZER(struct cmd_region_flowtype_result, 9814 set, "set"); 9815 cmdline_parse_token_string_t cmd_region_flowtype_port = 9816 TOKEN_STRING_INITIALIZER(struct cmd_region_flowtype_result, 9817 port, "port"); 9818 cmdline_parse_token_num_t cmd_region_flowtype_port_index = 9819 TOKEN_NUM_INITIALIZER(struct cmd_region_flowtype_result, 9820 port_id, RTE_UINT16); 9821 cmdline_parse_token_string_t cmd_region_flowtype_cmd = 9822 TOKEN_STRING_INITIALIZER(struct cmd_region_flowtype_result, 9823 cmd, "queue-region"); 9824 cmdline_parse_token_string_t cmd_region_flowtype_index = 9825 TOKEN_STRING_INITIALIZER(struct cmd_region_flowtype_result, 9826 region, "region_id"); 9827 cmdline_parse_token_num_t cmd_region_flowtype_id = 9828 TOKEN_NUM_INITIALIZER(struct cmd_region_flowtype_result, 9829 region_id, RTE_UINT8); 9830 cmdline_parse_token_string_t cmd_region_flowtype_flow_index = 9831 TOKEN_STRING_INITIALIZER(struct cmd_region_flowtype_result, 9832 flowtype, "flowtype"); 9833 cmdline_parse_token_num_t cmd_region_flowtype_flow_id = 9834 TOKEN_NUM_INITIALIZER(struct cmd_region_flowtype_result, 9835 flowtype_id, RTE_UINT8); 9836 cmdline_parse_inst_t cmd_region_flowtype = { 9837 .f = cmd_region_flowtype_parsed, 9838 .data = NULL, 9839 .help_str = "set port <port_id> queue-region region_id <value> " 9840 "flowtype <value>: Set a flowtype region index", 9841 .tokens = { 9842 (void *)&cmd_region_flowtype_set, 9843 (void *)&cmd_region_flowtype_port, 9844 (void *)&cmd_region_flowtype_port_index, 9845 (void *)&cmd_region_flowtype_cmd, 9846 (void *)&cmd_region_flowtype_index, 9847 (void *)&cmd_region_flowtype_id, 9848 (void *)&cmd_region_flowtype_flow_index, 9849 (void *)&cmd_region_flowtype_flow_id, 9850 NULL, 9851 }, 9852 }; 9853 9854 /* *** User Priority (UP) to queue region (region_id) set *** */ 9855 struct cmd_user_priority_region_result { 9856 cmdline_fixed_string_t set; 9857 cmdline_fixed_string_t port; 9858 portid_t port_id; 9859 cmdline_fixed_string_t cmd; 9860 cmdline_fixed_string_t user_priority; 9861 uint8_t user_priority_id; 9862 cmdline_fixed_string_t region; 9863 uint8_t region_id; 9864 }; 9865 9866 static void 9867 cmd_user_priority_region_parsed(void *parsed_result, 9868 __rte_unused struct cmdline *cl, 9869 __rte_unused void *data) 9870 { 9871 struct cmd_user_priority_region_result *res = parsed_result; 9872 int ret = -ENOTSUP; 9873 #ifdef RTE_NET_I40E 9874 struct rte_pmd_i40e_queue_region_conf region_conf; 9875 enum rte_pmd_i40e_queue_region_op op_type; 9876 #endif 9877 9878 if (port_id_is_invalid(res->port_id, ENABLED_WARN)) 9879 return; 9880 9881 #ifdef RTE_NET_I40E 9882 memset(®ion_conf, 0, sizeof(region_conf)); 9883 op_type = RTE_PMD_I40E_RSS_QUEUE_REGION_USER_PRIORITY_SET; 9884 region_conf.user_priority = res->user_priority_id; 9885 region_conf.region_id = res->region_id; 9886 9887 ret = rte_pmd_i40e_rss_queue_region_conf(res->port_id, 9888 op_type, ®ion_conf); 9889 #endif 9890 9891 switch (ret) { 9892 case 0: 9893 break; 9894 case -ENOTSUP: 9895 printf("function not implemented or supported\n"); 9896 break; 9897 default: 9898 printf("user_priority region config error: (%s)\n", 9899 strerror(-ret)); 9900 } 9901 } 9902 9903 cmdline_parse_token_string_t cmd_user_priority_region_set = 9904 TOKEN_STRING_INITIALIZER(struct cmd_user_priority_region_result, 9905 set, "set"); 9906 cmdline_parse_token_string_t cmd_user_priority_region_port = 9907 TOKEN_STRING_INITIALIZER(struct cmd_user_priority_region_result, 9908 port, "port"); 9909 cmdline_parse_token_num_t cmd_user_priority_region_port_index = 9910 TOKEN_NUM_INITIALIZER(struct cmd_user_priority_region_result, 9911 port_id, RTE_UINT16); 9912 cmdline_parse_token_string_t cmd_user_priority_region_cmd = 9913 TOKEN_STRING_INITIALIZER(struct cmd_user_priority_region_result, 9914 cmd, "queue-region"); 9915 cmdline_parse_token_string_t cmd_user_priority_region_UP = 9916 TOKEN_STRING_INITIALIZER(struct cmd_user_priority_region_result, 9917 user_priority, "UP"); 9918 cmdline_parse_token_num_t cmd_user_priority_region_UP_id = 9919 TOKEN_NUM_INITIALIZER(struct cmd_user_priority_region_result, 9920 user_priority_id, RTE_UINT8); 9921 cmdline_parse_token_string_t cmd_user_priority_region_region = 9922 TOKEN_STRING_INITIALIZER(struct cmd_user_priority_region_result, 9923 region, "region_id"); 9924 cmdline_parse_token_num_t cmd_user_priority_region_region_id = 9925 TOKEN_NUM_INITIALIZER(struct cmd_user_priority_region_result, 9926 region_id, RTE_UINT8); 9927 9928 cmdline_parse_inst_t cmd_user_priority_region = { 9929 .f = cmd_user_priority_region_parsed, 9930 .data = NULL, 9931 .help_str = "set port <port_id> queue-region UP <value> " 9932 "region_id <value>: Set the mapping of User Priority (UP) " 9933 "to queue region (region_id) ", 9934 .tokens = { 9935 (void *)&cmd_user_priority_region_set, 9936 (void *)&cmd_user_priority_region_port, 9937 (void *)&cmd_user_priority_region_port_index, 9938 (void *)&cmd_user_priority_region_cmd, 9939 (void *)&cmd_user_priority_region_UP, 9940 (void *)&cmd_user_priority_region_UP_id, 9941 (void *)&cmd_user_priority_region_region, 9942 (void *)&cmd_user_priority_region_region_id, 9943 NULL, 9944 }, 9945 }; 9946 9947 /* *** flush all queue region related configuration *** */ 9948 struct cmd_flush_queue_region_result { 9949 cmdline_fixed_string_t set; 9950 cmdline_fixed_string_t port; 9951 portid_t port_id; 9952 cmdline_fixed_string_t cmd; 9953 cmdline_fixed_string_t flush; 9954 cmdline_fixed_string_t what; 9955 }; 9956 9957 static void 9958 cmd_flush_queue_region_parsed(void *parsed_result, 9959 __rte_unused struct cmdline *cl, 9960 __rte_unused void *data) 9961 { 9962 struct cmd_flush_queue_region_result *res = parsed_result; 9963 int ret = -ENOTSUP; 9964 #ifdef RTE_NET_I40E 9965 struct rte_pmd_i40e_queue_region_conf region_conf; 9966 enum rte_pmd_i40e_queue_region_op op_type; 9967 #endif 9968 9969 if (port_id_is_invalid(res->port_id, ENABLED_WARN)) 9970 return; 9971 9972 #ifdef RTE_NET_I40E 9973 memset(®ion_conf, 0, sizeof(region_conf)); 9974 9975 if (strcmp(res->what, "on") == 0) 9976 op_type = RTE_PMD_I40E_RSS_QUEUE_REGION_ALL_FLUSH_ON; 9977 else 9978 op_type = RTE_PMD_I40E_RSS_QUEUE_REGION_ALL_FLUSH_OFF; 9979 9980 ret = rte_pmd_i40e_rss_queue_region_conf(res->port_id, 9981 op_type, ®ion_conf); 9982 #endif 9983 9984 switch (ret) { 9985 case 0: 9986 break; 9987 case -ENOTSUP: 9988 printf("function not implemented or supported\n"); 9989 break; 9990 default: 9991 printf("queue region config flush error: (%s)\n", 9992 strerror(-ret)); 9993 } 9994 } 9995 9996 cmdline_parse_token_string_t cmd_flush_queue_region_set = 9997 TOKEN_STRING_INITIALIZER(struct cmd_flush_queue_region_result, 9998 set, "set"); 9999 cmdline_parse_token_string_t cmd_flush_queue_region_port = 10000 TOKEN_STRING_INITIALIZER(struct cmd_flush_queue_region_result, 10001 port, "port"); 10002 cmdline_parse_token_num_t cmd_flush_queue_region_port_index = 10003 TOKEN_NUM_INITIALIZER(struct cmd_flush_queue_region_result, 10004 port_id, RTE_UINT16); 10005 cmdline_parse_token_string_t cmd_flush_queue_region_cmd = 10006 TOKEN_STRING_INITIALIZER(struct cmd_flush_queue_region_result, 10007 cmd, "queue-region"); 10008 cmdline_parse_token_string_t cmd_flush_queue_region_flush = 10009 TOKEN_STRING_INITIALIZER(struct cmd_flush_queue_region_result, 10010 flush, "flush"); 10011 cmdline_parse_token_string_t cmd_flush_queue_region_what = 10012 TOKEN_STRING_INITIALIZER(struct cmd_flush_queue_region_result, 10013 what, "on#off"); 10014 10015 cmdline_parse_inst_t cmd_flush_queue_region = { 10016 .f = cmd_flush_queue_region_parsed, 10017 .data = NULL, 10018 .help_str = "set port <port_id> queue-region flush on|off" 10019 ": flush all queue region related configuration", 10020 .tokens = { 10021 (void *)&cmd_flush_queue_region_set, 10022 (void *)&cmd_flush_queue_region_port, 10023 (void *)&cmd_flush_queue_region_port_index, 10024 (void *)&cmd_flush_queue_region_cmd, 10025 (void *)&cmd_flush_queue_region_flush, 10026 (void *)&cmd_flush_queue_region_what, 10027 NULL, 10028 }, 10029 }; 10030 10031 /* *** get all queue region related configuration info *** */ 10032 struct cmd_show_queue_region_info { 10033 cmdline_fixed_string_t show; 10034 cmdline_fixed_string_t port; 10035 portid_t port_id; 10036 cmdline_fixed_string_t cmd; 10037 }; 10038 10039 static void 10040 cmd_show_queue_region_info_parsed(void *parsed_result, 10041 __rte_unused struct cmdline *cl, 10042 __rte_unused void *data) 10043 { 10044 struct cmd_show_queue_region_info *res = parsed_result; 10045 int ret = -ENOTSUP; 10046 #ifdef RTE_NET_I40E 10047 struct rte_pmd_i40e_queue_regions rte_pmd_regions; 10048 enum rte_pmd_i40e_queue_region_op op_type; 10049 #endif 10050 10051 if (port_id_is_invalid(res->port_id, ENABLED_WARN)) 10052 return; 10053 10054 #ifdef RTE_NET_I40E 10055 memset(&rte_pmd_regions, 0, sizeof(rte_pmd_regions)); 10056 10057 op_type = RTE_PMD_I40E_RSS_QUEUE_REGION_INFO_GET; 10058 10059 ret = rte_pmd_i40e_rss_queue_region_conf(res->port_id, 10060 op_type, &rte_pmd_regions); 10061 10062 port_queue_region_info_display(res->port_id, &rte_pmd_regions); 10063 #endif 10064 10065 switch (ret) { 10066 case 0: 10067 break; 10068 case -ENOTSUP: 10069 printf("function not implemented or supported\n"); 10070 break; 10071 default: 10072 printf("queue region config info show error: (%s)\n", 10073 strerror(-ret)); 10074 } 10075 } 10076 10077 cmdline_parse_token_string_t cmd_show_queue_region_info_get = 10078 TOKEN_STRING_INITIALIZER(struct cmd_show_queue_region_info, 10079 show, "show"); 10080 cmdline_parse_token_string_t cmd_show_queue_region_info_port = 10081 TOKEN_STRING_INITIALIZER(struct cmd_show_queue_region_info, 10082 port, "port"); 10083 cmdline_parse_token_num_t cmd_show_queue_region_info_port_index = 10084 TOKEN_NUM_INITIALIZER(struct cmd_show_queue_region_info, 10085 port_id, RTE_UINT16); 10086 cmdline_parse_token_string_t cmd_show_queue_region_info_cmd = 10087 TOKEN_STRING_INITIALIZER(struct cmd_show_queue_region_info, 10088 cmd, "queue-region"); 10089 10090 cmdline_parse_inst_t cmd_show_queue_region_info_all = { 10091 .f = cmd_show_queue_region_info_parsed, 10092 .data = NULL, 10093 .help_str = "show port <port_id> queue-region" 10094 ": show all queue region related configuration info", 10095 .tokens = { 10096 (void *)&cmd_show_queue_region_info_get, 10097 (void *)&cmd_show_queue_region_info_port, 10098 (void *)&cmd_show_queue_region_info_port_index, 10099 (void *)&cmd_show_queue_region_info_cmd, 10100 NULL, 10101 }, 10102 }; 10103 10104 /* *** Filters Control *** */ 10105 10106 #define IPV4_ADDR_TO_UINT(ip_addr, ip) \ 10107 do { \ 10108 if ((ip_addr).family == AF_INET) \ 10109 (ip) = (ip_addr).addr.ipv4.s_addr; \ 10110 else { \ 10111 printf("invalid parameter.\n"); \ 10112 return; \ 10113 } \ 10114 } while (0) 10115 10116 #define IPV6_ADDR_TO_ARRAY(ip_addr, ip) \ 10117 do { \ 10118 if ((ip_addr).family == AF_INET6) \ 10119 rte_memcpy(&(ip), \ 10120 &((ip_addr).addr.ipv6), \ 10121 sizeof(struct in6_addr)); \ 10122 else { \ 10123 printf("invalid parameter.\n"); \ 10124 return; \ 10125 } \ 10126 } while (0) 10127 10128 #ifdef RTE_NET_I40E 10129 10130 static uint16_t 10131 str2flowtype(char *string) 10132 { 10133 uint8_t i = 0; 10134 static const struct { 10135 char str[32]; 10136 uint16_t type; 10137 } flowtype_str[] = { 10138 {"raw", RTE_ETH_FLOW_RAW}, 10139 {"ipv4", RTE_ETH_FLOW_IPV4}, 10140 {"ipv4-frag", RTE_ETH_FLOW_FRAG_IPV4}, 10141 {"ipv4-tcp", RTE_ETH_FLOW_NONFRAG_IPV4_TCP}, 10142 {"ipv4-udp", RTE_ETH_FLOW_NONFRAG_IPV4_UDP}, 10143 {"ipv4-sctp", RTE_ETH_FLOW_NONFRAG_IPV4_SCTP}, 10144 {"ipv4-other", RTE_ETH_FLOW_NONFRAG_IPV4_OTHER}, 10145 {"ipv6", RTE_ETH_FLOW_IPV6}, 10146 {"ipv6-frag", RTE_ETH_FLOW_FRAG_IPV6}, 10147 {"ipv6-tcp", RTE_ETH_FLOW_NONFRAG_IPV6_TCP}, 10148 {"ipv6-udp", RTE_ETH_FLOW_NONFRAG_IPV6_UDP}, 10149 {"ipv6-sctp", RTE_ETH_FLOW_NONFRAG_IPV6_SCTP}, 10150 {"ipv6-other", RTE_ETH_FLOW_NONFRAG_IPV6_OTHER}, 10151 {"l2_payload", RTE_ETH_FLOW_L2_PAYLOAD}, 10152 }; 10153 10154 for (i = 0; i < RTE_DIM(flowtype_str); i++) { 10155 if (!strcmp(flowtype_str[i].str, string)) 10156 return flowtype_str[i].type; 10157 } 10158 10159 if (isdigit(string[0]) && atoi(string) > 0 && atoi(string) < 64) 10160 return (uint16_t)atoi(string); 10161 10162 return RTE_ETH_FLOW_UNKNOWN; 10163 } 10164 10165 /* *** deal with flow director filter *** */ 10166 struct cmd_flow_director_result { 10167 cmdline_fixed_string_t flow_director_filter; 10168 portid_t port_id; 10169 cmdline_fixed_string_t mode; 10170 cmdline_fixed_string_t mode_value; 10171 cmdline_fixed_string_t ops; 10172 cmdline_fixed_string_t flow; 10173 cmdline_fixed_string_t flow_type; 10174 cmdline_fixed_string_t drop; 10175 cmdline_fixed_string_t queue; 10176 uint16_t queue_id; 10177 cmdline_fixed_string_t fd_id; 10178 uint32_t fd_id_value; 10179 cmdline_fixed_string_t packet; 10180 char filepath[]; 10181 }; 10182 10183 static void 10184 cmd_flow_director_filter_parsed(void *parsed_result, 10185 __rte_unused struct cmdline *cl, 10186 __rte_unused void *data) 10187 { 10188 struct cmd_flow_director_result *res = parsed_result; 10189 int ret = 0; 10190 struct rte_pmd_i40e_flow_type_mapping 10191 mapping[RTE_PMD_I40E_FLOW_TYPE_MAX]; 10192 struct rte_pmd_i40e_pkt_template_conf conf; 10193 uint16_t flow_type = str2flowtype(res->flow_type); 10194 uint16_t i, port = res->port_id; 10195 uint8_t add; 10196 10197 memset(&conf, 0, sizeof(conf)); 10198 10199 if (flow_type == RTE_ETH_FLOW_UNKNOWN) { 10200 printf("Invalid flow type specified.\n"); 10201 return; 10202 } 10203 ret = rte_pmd_i40e_flow_type_mapping_get(res->port_id, 10204 mapping); 10205 if (ret) 10206 return; 10207 if (mapping[flow_type].pctype == 0ULL) { 10208 printf("Invalid flow type specified.\n"); 10209 return; 10210 } 10211 for (i = 0; i < RTE_PMD_I40E_PCTYPE_MAX; i++) { 10212 if (mapping[flow_type].pctype & (1ULL << i)) { 10213 conf.input.pctype = i; 10214 break; 10215 } 10216 } 10217 10218 conf.input.packet = open_file(res->filepath, 10219 &conf.input.length); 10220 if (!conf.input.packet) 10221 return; 10222 if (!strcmp(res->drop, "drop")) 10223 conf.action.behavior = 10224 RTE_PMD_I40E_PKT_TEMPLATE_REJECT; 10225 else 10226 conf.action.behavior = 10227 RTE_PMD_I40E_PKT_TEMPLATE_ACCEPT; 10228 conf.action.report_status = 10229 RTE_PMD_I40E_PKT_TEMPLATE_REPORT_ID; 10230 conf.action.rx_queue = res->queue_id; 10231 conf.soft_id = res->fd_id_value; 10232 add = strcmp(res->ops, "del") ? 1 : 0; 10233 ret = rte_pmd_i40e_flow_add_del_packet_template(port, 10234 &conf, 10235 add); 10236 if (ret < 0) 10237 printf("flow director config error: (%s)\n", 10238 strerror(-ret)); 10239 close_file(conf.input.packet); 10240 } 10241 10242 cmdline_parse_token_string_t cmd_flow_director_filter = 10243 TOKEN_STRING_INITIALIZER(struct cmd_flow_director_result, 10244 flow_director_filter, "flow_director_filter"); 10245 cmdline_parse_token_num_t cmd_flow_director_port_id = 10246 TOKEN_NUM_INITIALIZER(struct cmd_flow_director_result, 10247 port_id, RTE_UINT16); 10248 cmdline_parse_token_string_t cmd_flow_director_ops = 10249 TOKEN_STRING_INITIALIZER(struct cmd_flow_director_result, 10250 ops, "add#del#update"); 10251 cmdline_parse_token_string_t cmd_flow_director_flow = 10252 TOKEN_STRING_INITIALIZER(struct cmd_flow_director_result, 10253 flow, "flow"); 10254 cmdline_parse_token_string_t cmd_flow_director_flow_type = 10255 TOKEN_STRING_INITIALIZER(struct cmd_flow_director_result, 10256 flow_type, NULL); 10257 cmdline_parse_token_string_t cmd_flow_director_drop = 10258 TOKEN_STRING_INITIALIZER(struct cmd_flow_director_result, 10259 drop, "drop#fwd"); 10260 cmdline_parse_token_string_t cmd_flow_director_queue = 10261 TOKEN_STRING_INITIALIZER(struct cmd_flow_director_result, 10262 queue, "queue"); 10263 cmdline_parse_token_num_t cmd_flow_director_queue_id = 10264 TOKEN_NUM_INITIALIZER(struct cmd_flow_director_result, 10265 queue_id, RTE_UINT16); 10266 cmdline_parse_token_string_t cmd_flow_director_fd_id = 10267 TOKEN_STRING_INITIALIZER(struct cmd_flow_director_result, 10268 fd_id, "fd_id"); 10269 cmdline_parse_token_num_t cmd_flow_director_fd_id_value = 10270 TOKEN_NUM_INITIALIZER(struct cmd_flow_director_result, 10271 fd_id_value, RTE_UINT32); 10272 10273 cmdline_parse_token_string_t cmd_flow_director_mode = 10274 TOKEN_STRING_INITIALIZER(struct cmd_flow_director_result, 10275 mode, "mode"); 10276 cmdline_parse_token_string_t cmd_flow_director_mode_raw = 10277 TOKEN_STRING_INITIALIZER(struct cmd_flow_director_result, 10278 mode_value, "raw"); 10279 cmdline_parse_token_string_t cmd_flow_director_packet = 10280 TOKEN_STRING_INITIALIZER(struct cmd_flow_director_result, 10281 packet, "packet"); 10282 cmdline_parse_token_string_t cmd_flow_director_filepath = 10283 TOKEN_STRING_INITIALIZER(struct cmd_flow_director_result, 10284 filepath, NULL); 10285 10286 cmdline_parse_inst_t cmd_add_del_raw_flow_director = { 10287 .f = cmd_flow_director_filter_parsed, 10288 .data = NULL, 10289 .help_str = "flow_director_filter ... : Add or delete a raw flow " 10290 "director entry on NIC", 10291 .tokens = { 10292 (void *)&cmd_flow_director_filter, 10293 (void *)&cmd_flow_director_port_id, 10294 (void *)&cmd_flow_director_mode, 10295 (void *)&cmd_flow_director_mode_raw, 10296 (void *)&cmd_flow_director_ops, 10297 (void *)&cmd_flow_director_flow, 10298 (void *)&cmd_flow_director_flow_type, 10299 (void *)&cmd_flow_director_drop, 10300 (void *)&cmd_flow_director_queue, 10301 (void *)&cmd_flow_director_queue_id, 10302 (void *)&cmd_flow_director_fd_id, 10303 (void *)&cmd_flow_director_fd_id_value, 10304 (void *)&cmd_flow_director_packet, 10305 (void *)&cmd_flow_director_filepath, 10306 NULL, 10307 }, 10308 }; 10309 10310 #endif /* RTE_NET_I40E */ 10311 10312 /* *** deal with flow director mask *** */ 10313 struct cmd_flow_director_mask_result { 10314 cmdline_fixed_string_t flow_director_mask; 10315 portid_t port_id; 10316 cmdline_fixed_string_t mode; 10317 cmdline_fixed_string_t mode_value; 10318 cmdline_fixed_string_t vlan; 10319 uint16_t vlan_mask; 10320 cmdline_fixed_string_t src_mask; 10321 cmdline_ipaddr_t ipv4_src; 10322 cmdline_ipaddr_t ipv6_src; 10323 uint16_t port_src; 10324 cmdline_fixed_string_t dst_mask; 10325 cmdline_ipaddr_t ipv4_dst; 10326 cmdline_ipaddr_t ipv6_dst; 10327 uint16_t port_dst; 10328 cmdline_fixed_string_t mac; 10329 uint8_t mac_addr_byte_mask; 10330 cmdline_fixed_string_t tunnel_id; 10331 uint32_t tunnel_id_mask; 10332 cmdline_fixed_string_t tunnel_type; 10333 uint8_t tunnel_type_mask; 10334 }; 10335 10336 static void 10337 cmd_flow_director_mask_parsed(void *parsed_result, 10338 __rte_unused struct cmdline *cl, 10339 __rte_unused void *data) 10340 { 10341 struct cmd_flow_director_mask_result *res = parsed_result; 10342 struct rte_eth_fdir_masks *mask; 10343 struct rte_port *port; 10344 10345 port = &ports[res->port_id]; 10346 /** Check if the port is not started **/ 10347 if (port->port_status != RTE_PORT_STOPPED) { 10348 printf("Please stop port %d first\n", res->port_id); 10349 return; 10350 } 10351 10352 mask = &port->dev_conf.fdir_conf.mask; 10353 10354 if (fdir_conf.mode == RTE_FDIR_MODE_PERFECT_MAC_VLAN) { 10355 if (strcmp(res->mode_value, "MAC-VLAN")) { 10356 printf("Please set mode to MAC-VLAN.\n"); 10357 return; 10358 } 10359 10360 mask->vlan_tci_mask = rte_cpu_to_be_16(res->vlan_mask); 10361 } else if (fdir_conf.mode == RTE_FDIR_MODE_PERFECT_TUNNEL) { 10362 if (strcmp(res->mode_value, "Tunnel")) { 10363 printf("Please set mode to Tunnel.\n"); 10364 return; 10365 } 10366 10367 mask->vlan_tci_mask = rte_cpu_to_be_16(res->vlan_mask); 10368 mask->mac_addr_byte_mask = res->mac_addr_byte_mask; 10369 mask->tunnel_id_mask = rte_cpu_to_be_32(res->tunnel_id_mask); 10370 mask->tunnel_type_mask = res->tunnel_type_mask; 10371 } else { 10372 if (strcmp(res->mode_value, "IP")) { 10373 printf("Please set mode to IP.\n"); 10374 return; 10375 } 10376 10377 mask->vlan_tci_mask = rte_cpu_to_be_16(res->vlan_mask); 10378 IPV4_ADDR_TO_UINT(res->ipv4_src, mask->ipv4_mask.src_ip); 10379 IPV4_ADDR_TO_UINT(res->ipv4_dst, mask->ipv4_mask.dst_ip); 10380 IPV6_ADDR_TO_ARRAY(res->ipv6_src, mask->ipv6_mask.src_ip); 10381 IPV6_ADDR_TO_ARRAY(res->ipv6_dst, mask->ipv6_mask.dst_ip); 10382 mask->src_port_mask = rte_cpu_to_be_16(res->port_src); 10383 mask->dst_port_mask = rte_cpu_to_be_16(res->port_dst); 10384 } 10385 10386 cmd_reconfig_device_queue(res->port_id, 1, 1); 10387 } 10388 10389 cmdline_parse_token_string_t cmd_flow_director_mask = 10390 TOKEN_STRING_INITIALIZER(struct cmd_flow_director_mask_result, 10391 flow_director_mask, "flow_director_mask"); 10392 cmdline_parse_token_num_t cmd_flow_director_mask_port_id = 10393 TOKEN_NUM_INITIALIZER(struct cmd_flow_director_mask_result, 10394 port_id, RTE_UINT16); 10395 cmdline_parse_token_string_t cmd_flow_director_mask_vlan = 10396 TOKEN_STRING_INITIALIZER(struct cmd_flow_director_mask_result, 10397 vlan, "vlan"); 10398 cmdline_parse_token_num_t cmd_flow_director_mask_vlan_value = 10399 TOKEN_NUM_INITIALIZER(struct cmd_flow_director_mask_result, 10400 vlan_mask, RTE_UINT16); 10401 cmdline_parse_token_string_t cmd_flow_director_mask_src = 10402 TOKEN_STRING_INITIALIZER(struct cmd_flow_director_mask_result, 10403 src_mask, "src_mask"); 10404 cmdline_parse_token_ipaddr_t cmd_flow_director_mask_ipv4_src = 10405 TOKEN_IPADDR_INITIALIZER(struct cmd_flow_director_mask_result, 10406 ipv4_src); 10407 cmdline_parse_token_ipaddr_t cmd_flow_director_mask_ipv6_src = 10408 TOKEN_IPADDR_INITIALIZER(struct cmd_flow_director_mask_result, 10409 ipv6_src); 10410 cmdline_parse_token_num_t cmd_flow_director_mask_port_src = 10411 TOKEN_NUM_INITIALIZER(struct cmd_flow_director_mask_result, 10412 port_src, RTE_UINT16); 10413 cmdline_parse_token_string_t cmd_flow_director_mask_dst = 10414 TOKEN_STRING_INITIALIZER(struct cmd_flow_director_mask_result, 10415 dst_mask, "dst_mask"); 10416 cmdline_parse_token_ipaddr_t cmd_flow_director_mask_ipv4_dst = 10417 TOKEN_IPADDR_INITIALIZER(struct cmd_flow_director_mask_result, 10418 ipv4_dst); 10419 cmdline_parse_token_ipaddr_t cmd_flow_director_mask_ipv6_dst = 10420 TOKEN_IPADDR_INITIALIZER(struct cmd_flow_director_mask_result, 10421 ipv6_dst); 10422 cmdline_parse_token_num_t cmd_flow_director_mask_port_dst = 10423 TOKEN_NUM_INITIALIZER(struct cmd_flow_director_mask_result, 10424 port_dst, RTE_UINT16); 10425 10426 cmdline_parse_token_string_t cmd_flow_director_mask_mode = 10427 TOKEN_STRING_INITIALIZER(struct cmd_flow_director_mask_result, 10428 mode, "mode"); 10429 cmdline_parse_token_string_t cmd_flow_director_mask_mode_ip = 10430 TOKEN_STRING_INITIALIZER(struct cmd_flow_director_mask_result, 10431 mode_value, "IP"); 10432 cmdline_parse_token_string_t cmd_flow_director_mask_mode_mac_vlan = 10433 TOKEN_STRING_INITIALIZER(struct cmd_flow_director_mask_result, 10434 mode_value, "MAC-VLAN"); 10435 cmdline_parse_token_string_t cmd_flow_director_mask_mode_tunnel = 10436 TOKEN_STRING_INITIALIZER(struct cmd_flow_director_mask_result, 10437 mode_value, "Tunnel"); 10438 cmdline_parse_token_string_t cmd_flow_director_mask_mac = 10439 TOKEN_STRING_INITIALIZER(struct cmd_flow_director_mask_result, 10440 mac, "mac"); 10441 cmdline_parse_token_num_t cmd_flow_director_mask_mac_value = 10442 TOKEN_NUM_INITIALIZER(struct cmd_flow_director_mask_result, 10443 mac_addr_byte_mask, RTE_UINT8); 10444 cmdline_parse_token_string_t cmd_flow_director_mask_tunnel_type = 10445 TOKEN_STRING_INITIALIZER(struct cmd_flow_director_mask_result, 10446 tunnel_type, "tunnel-type"); 10447 cmdline_parse_token_num_t cmd_flow_director_mask_tunnel_type_value = 10448 TOKEN_NUM_INITIALIZER(struct cmd_flow_director_mask_result, 10449 tunnel_type_mask, RTE_UINT8); 10450 cmdline_parse_token_string_t cmd_flow_director_mask_tunnel_id = 10451 TOKEN_STRING_INITIALIZER(struct cmd_flow_director_mask_result, 10452 tunnel_id, "tunnel-id"); 10453 cmdline_parse_token_num_t cmd_flow_director_mask_tunnel_id_value = 10454 TOKEN_NUM_INITIALIZER(struct cmd_flow_director_mask_result, 10455 tunnel_id_mask, RTE_UINT32); 10456 10457 cmdline_parse_inst_t cmd_set_flow_director_ip_mask = { 10458 .f = cmd_flow_director_mask_parsed, 10459 .data = NULL, 10460 .help_str = "flow_director_mask ... : " 10461 "Set IP mode flow director's mask on NIC", 10462 .tokens = { 10463 (void *)&cmd_flow_director_mask, 10464 (void *)&cmd_flow_director_mask_port_id, 10465 (void *)&cmd_flow_director_mask_mode, 10466 (void *)&cmd_flow_director_mask_mode_ip, 10467 (void *)&cmd_flow_director_mask_vlan, 10468 (void *)&cmd_flow_director_mask_vlan_value, 10469 (void *)&cmd_flow_director_mask_src, 10470 (void *)&cmd_flow_director_mask_ipv4_src, 10471 (void *)&cmd_flow_director_mask_ipv6_src, 10472 (void *)&cmd_flow_director_mask_port_src, 10473 (void *)&cmd_flow_director_mask_dst, 10474 (void *)&cmd_flow_director_mask_ipv4_dst, 10475 (void *)&cmd_flow_director_mask_ipv6_dst, 10476 (void *)&cmd_flow_director_mask_port_dst, 10477 NULL, 10478 }, 10479 }; 10480 10481 cmdline_parse_inst_t cmd_set_flow_director_mac_vlan_mask = { 10482 .f = cmd_flow_director_mask_parsed, 10483 .data = NULL, 10484 .help_str = "flow_director_mask ... : Set MAC VLAN mode " 10485 "flow director's mask on NIC", 10486 .tokens = { 10487 (void *)&cmd_flow_director_mask, 10488 (void *)&cmd_flow_director_mask_port_id, 10489 (void *)&cmd_flow_director_mask_mode, 10490 (void *)&cmd_flow_director_mask_mode_mac_vlan, 10491 (void *)&cmd_flow_director_mask_vlan, 10492 (void *)&cmd_flow_director_mask_vlan_value, 10493 NULL, 10494 }, 10495 }; 10496 10497 cmdline_parse_inst_t cmd_set_flow_director_tunnel_mask = { 10498 .f = cmd_flow_director_mask_parsed, 10499 .data = NULL, 10500 .help_str = "flow_director_mask ... : Set tunnel mode " 10501 "flow director's mask on NIC", 10502 .tokens = { 10503 (void *)&cmd_flow_director_mask, 10504 (void *)&cmd_flow_director_mask_port_id, 10505 (void *)&cmd_flow_director_mask_mode, 10506 (void *)&cmd_flow_director_mask_mode_tunnel, 10507 (void *)&cmd_flow_director_mask_vlan, 10508 (void *)&cmd_flow_director_mask_vlan_value, 10509 (void *)&cmd_flow_director_mask_mac, 10510 (void *)&cmd_flow_director_mask_mac_value, 10511 (void *)&cmd_flow_director_mask_tunnel_type, 10512 (void *)&cmd_flow_director_mask_tunnel_type_value, 10513 (void *)&cmd_flow_director_mask_tunnel_id, 10514 (void *)&cmd_flow_director_mask_tunnel_id_value, 10515 NULL, 10516 }, 10517 }; 10518 10519 /* *** deal with flow director flexible payload configuration *** */ 10520 struct cmd_flow_director_flexpayload_result { 10521 cmdline_fixed_string_t flow_director_flexpayload; 10522 portid_t port_id; 10523 cmdline_fixed_string_t payload_layer; 10524 cmdline_fixed_string_t payload_cfg; 10525 }; 10526 10527 static inline int 10528 parse_offsets(const char *q_arg, uint16_t *offsets, uint16_t max_num) 10529 { 10530 char s[256]; 10531 const char *p, *p0 = q_arg; 10532 char *end; 10533 unsigned long int_fld; 10534 char *str_fld[max_num]; 10535 int i; 10536 unsigned size; 10537 int ret = -1; 10538 10539 p = strchr(p0, '('); 10540 if (p == NULL) 10541 return -1; 10542 ++p; 10543 p0 = strchr(p, ')'); 10544 if (p0 == NULL) 10545 return -1; 10546 10547 size = p0 - p; 10548 if (size >= sizeof(s)) 10549 return -1; 10550 10551 snprintf(s, sizeof(s), "%.*s", size, p); 10552 ret = rte_strsplit(s, sizeof(s), str_fld, max_num, ','); 10553 if (ret < 0 || ret > max_num) 10554 return -1; 10555 for (i = 0; i < ret; i++) { 10556 errno = 0; 10557 int_fld = strtoul(str_fld[i], &end, 0); 10558 if (errno != 0 || *end != '\0' || int_fld > UINT16_MAX) 10559 return -1; 10560 offsets[i] = (uint16_t)int_fld; 10561 } 10562 return ret; 10563 } 10564 10565 static void 10566 cmd_flow_director_flxpld_parsed(void *parsed_result, 10567 __rte_unused struct cmdline *cl, 10568 __rte_unused void *data) 10569 { 10570 struct cmd_flow_director_flexpayload_result *res = parsed_result; 10571 struct rte_eth_flex_payload_cfg flex_cfg; 10572 struct rte_port *port; 10573 int ret = 0; 10574 10575 port = &ports[res->port_id]; 10576 /** Check if the port is not started **/ 10577 if (port->port_status != RTE_PORT_STOPPED) { 10578 printf("Please stop port %d first\n", res->port_id); 10579 return; 10580 } 10581 10582 memset(&flex_cfg, 0, sizeof(struct rte_eth_flex_payload_cfg)); 10583 10584 if (!strcmp(res->payload_layer, "raw")) 10585 flex_cfg.type = RTE_ETH_RAW_PAYLOAD; 10586 else if (!strcmp(res->payload_layer, "l2")) 10587 flex_cfg.type = RTE_ETH_L2_PAYLOAD; 10588 else if (!strcmp(res->payload_layer, "l3")) 10589 flex_cfg.type = RTE_ETH_L3_PAYLOAD; 10590 else if (!strcmp(res->payload_layer, "l4")) 10591 flex_cfg.type = RTE_ETH_L4_PAYLOAD; 10592 10593 ret = parse_offsets(res->payload_cfg, flex_cfg.src_offset, 10594 RTE_ETH_FDIR_MAX_FLEXLEN); 10595 if (ret < 0) { 10596 printf("error: Cannot parse flex payload input.\n"); 10597 return; 10598 } 10599 10600 fdir_set_flex_payload(res->port_id, &flex_cfg); 10601 cmd_reconfig_device_queue(res->port_id, 1, 1); 10602 } 10603 10604 cmdline_parse_token_string_t cmd_flow_director_flexpayload = 10605 TOKEN_STRING_INITIALIZER(struct cmd_flow_director_flexpayload_result, 10606 flow_director_flexpayload, 10607 "flow_director_flex_payload"); 10608 cmdline_parse_token_num_t cmd_flow_director_flexpayload_port_id = 10609 TOKEN_NUM_INITIALIZER(struct cmd_flow_director_flexpayload_result, 10610 port_id, RTE_UINT16); 10611 cmdline_parse_token_string_t cmd_flow_director_flexpayload_payload_layer = 10612 TOKEN_STRING_INITIALIZER(struct cmd_flow_director_flexpayload_result, 10613 payload_layer, "raw#l2#l3#l4"); 10614 cmdline_parse_token_string_t cmd_flow_director_flexpayload_payload_cfg = 10615 TOKEN_STRING_INITIALIZER(struct cmd_flow_director_flexpayload_result, 10616 payload_cfg, NULL); 10617 10618 cmdline_parse_inst_t cmd_set_flow_director_flex_payload = { 10619 .f = cmd_flow_director_flxpld_parsed, 10620 .data = NULL, 10621 .help_str = "flow_director_flexpayload ... : " 10622 "Set flow director's flex payload on NIC", 10623 .tokens = { 10624 (void *)&cmd_flow_director_flexpayload, 10625 (void *)&cmd_flow_director_flexpayload_port_id, 10626 (void *)&cmd_flow_director_flexpayload_payload_layer, 10627 (void *)&cmd_flow_director_flexpayload_payload_cfg, 10628 NULL, 10629 }, 10630 }; 10631 10632 /* Generic flow interface command. */ 10633 extern cmdline_parse_inst_t cmd_flow; 10634 10635 /* *** ADD/REMOVE A MULTICAST MAC ADDRESS TO/FROM A PORT *** */ 10636 struct cmd_mcast_addr_result { 10637 cmdline_fixed_string_t mcast_addr_cmd; 10638 cmdline_fixed_string_t what; 10639 uint16_t port_num; 10640 struct rte_ether_addr mc_addr; 10641 }; 10642 10643 static void cmd_mcast_addr_parsed(void *parsed_result, 10644 __rte_unused struct cmdline *cl, 10645 __rte_unused void *data) 10646 { 10647 struct cmd_mcast_addr_result *res = parsed_result; 10648 10649 if (!rte_is_multicast_ether_addr(&res->mc_addr)) { 10650 printf("Invalid multicast addr %02X:%02X:%02X:%02X:%02X:%02X\n", 10651 res->mc_addr.addr_bytes[0], res->mc_addr.addr_bytes[1], 10652 res->mc_addr.addr_bytes[2], res->mc_addr.addr_bytes[3], 10653 res->mc_addr.addr_bytes[4], res->mc_addr.addr_bytes[5]); 10654 return; 10655 } 10656 if (strcmp(res->what, "add") == 0) 10657 mcast_addr_add(res->port_num, &res->mc_addr); 10658 else 10659 mcast_addr_remove(res->port_num, &res->mc_addr); 10660 } 10661 10662 cmdline_parse_token_string_t cmd_mcast_addr_cmd = 10663 TOKEN_STRING_INITIALIZER(struct cmd_mcast_addr_result, 10664 mcast_addr_cmd, "mcast_addr"); 10665 cmdline_parse_token_string_t cmd_mcast_addr_what = 10666 TOKEN_STRING_INITIALIZER(struct cmd_mcast_addr_result, what, 10667 "add#remove"); 10668 cmdline_parse_token_num_t cmd_mcast_addr_portnum = 10669 TOKEN_NUM_INITIALIZER(struct cmd_mcast_addr_result, port_num, 10670 RTE_UINT16); 10671 cmdline_parse_token_etheraddr_t cmd_mcast_addr_addr = 10672 TOKEN_ETHERADDR_INITIALIZER(struct cmd_mac_addr_result, address); 10673 10674 cmdline_parse_inst_t cmd_mcast_addr = { 10675 .f = cmd_mcast_addr_parsed, 10676 .data = (void *)0, 10677 .help_str = "mcast_addr add|remove <port_id> <mcast_addr>: " 10678 "Add/Remove multicast MAC address on port_id", 10679 .tokens = { 10680 (void *)&cmd_mcast_addr_cmd, 10681 (void *)&cmd_mcast_addr_what, 10682 (void *)&cmd_mcast_addr_portnum, 10683 (void *)&cmd_mcast_addr_addr, 10684 NULL, 10685 }, 10686 }; 10687 10688 /* vf vlan anti spoof configuration */ 10689 10690 /* Common result structure for vf vlan anti spoof */ 10691 struct cmd_vf_vlan_anti_spoof_result { 10692 cmdline_fixed_string_t set; 10693 cmdline_fixed_string_t vf; 10694 cmdline_fixed_string_t vlan; 10695 cmdline_fixed_string_t antispoof; 10696 portid_t port_id; 10697 uint32_t vf_id; 10698 cmdline_fixed_string_t on_off; 10699 }; 10700 10701 /* Common CLI fields for vf vlan anti spoof enable disable */ 10702 cmdline_parse_token_string_t cmd_vf_vlan_anti_spoof_set = 10703 TOKEN_STRING_INITIALIZER 10704 (struct cmd_vf_vlan_anti_spoof_result, 10705 set, "set"); 10706 cmdline_parse_token_string_t cmd_vf_vlan_anti_spoof_vf = 10707 TOKEN_STRING_INITIALIZER 10708 (struct cmd_vf_vlan_anti_spoof_result, 10709 vf, "vf"); 10710 cmdline_parse_token_string_t cmd_vf_vlan_anti_spoof_vlan = 10711 TOKEN_STRING_INITIALIZER 10712 (struct cmd_vf_vlan_anti_spoof_result, 10713 vlan, "vlan"); 10714 cmdline_parse_token_string_t cmd_vf_vlan_anti_spoof_antispoof = 10715 TOKEN_STRING_INITIALIZER 10716 (struct cmd_vf_vlan_anti_spoof_result, 10717 antispoof, "antispoof"); 10718 cmdline_parse_token_num_t cmd_vf_vlan_anti_spoof_port_id = 10719 TOKEN_NUM_INITIALIZER 10720 (struct cmd_vf_vlan_anti_spoof_result, 10721 port_id, RTE_UINT16); 10722 cmdline_parse_token_num_t cmd_vf_vlan_anti_spoof_vf_id = 10723 TOKEN_NUM_INITIALIZER 10724 (struct cmd_vf_vlan_anti_spoof_result, 10725 vf_id, RTE_UINT32); 10726 cmdline_parse_token_string_t cmd_vf_vlan_anti_spoof_on_off = 10727 TOKEN_STRING_INITIALIZER 10728 (struct cmd_vf_vlan_anti_spoof_result, 10729 on_off, "on#off"); 10730 10731 static void 10732 cmd_set_vf_vlan_anti_spoof_parsed( 10733 void *parsed_result, 10734 __rte_unused struct cmdline *cl, 10735 __rte_unused void *data) 10736 { 10737 struct cmd_vf_vlan_anti_spoof_result *res = parsed_result; 10738 int ret = -ENOTSUP; 10739 10740 __rte_unused int is_on = (strcmp(res->on_off, "on") == 0) ? 1 : 0; 10741 10742 if (port_id_is_invalid(res->port_id, ENABLED_WARN)) 10743 return; 10744 10745 #ifdef RTE_NET_IXGBE 10746 if (ret == -ENOTSUP) 10747 ret = rte_pmd_ixgbe_set_vf_vlan_anti_spoof(res->port_id, 10748 res->vf_id, is_on); 10749 #endif 10750 #ifdef RTE_NET_I40E 10751 if (ret == -ENOTSUP) 10752 ret = rte_pmd_i40e_set_vf_vlan_anti_spoof(res->port_id, 10753 res->vf_id, is_on); 10754 #endif 10755 #ifdef RTE_NET_BNXT 10756 if (ret == -ENOTSUP) 10757 ret = rte_pmd_bnxt_set_vf_vlan_anti_spoof(res->port_id, 10758 res->vf_id, is_on); 10759 #endif 10760 10761 switch (ret) { 10762 case 0: 10763 break; 10764 case -EINVAL: 10765 printf("invalid vf_id %d\n", res->vf_id); 10766 break; 10767 case -ENODEV: 10768 printf("invalid port_id %d\n", res->port_id); 10769 break; 10770 case -ENOTSUP: 10771 printf("function not implemented\n"); 10772 break; 10773 default: 10774 printf("programming error: (%s)\n", strerror(-ret)); 10775 } 10776 } 10777 10778 cmdline_parse_inst_t cmd_set_vf_vlan_anti_spoof = { 10779 .f = cmd_set_vf_vlan_anti_spoof_parsed, 10780 .data = NULL, 10781 .help_str = "set vf vlan antispoof <port_id> <vf_id> on|off", 10782 .tokens = { 10783 (void *)&cmd_vf_vlan_anti_spoof_set, 10784 (void *)&cmd_vf_vlan_anti_spoof_vf, 10785 (void *)&cmd_vf_vlan_anti_spoof_vlan, 10786 (void *)&cmd_vf_vlan_anti_spoof_antispoof, 10787 (void *)&cmd_vf_vlan_anti_spoof_port_id, 10788 (void *)&cmd_vf_vlan_anti_spoof_vf_id, 10789 (void *)&cmd_vf_vlan_anti_spoof_on_off, 10790 NULL, 10791 }, 10792 }; 10793 10794 /* vf mac anti spoof configuration */ 10795 10796 /* Common result structure for vf mac anti spoof */ 10797 struct cmd_vf_mac_anti_spoof_result { 10798 cmdline_fixed_string_t set; 10799 cmdline_fixed_string_t vf; 10800 cmdline_fixed_string_t mac; 10801 cmdline_fixed_string_t antispoof; 10802 portid_t port_id; 10803 uint32_t vf_id; 10804 cmdline_fixed_string_t on_off; 10805 }; 10806 10807 /* Common CLI fields for vf mac anti spoof enable disable */ 10808 cmdline_parse_token_string_t cmd_vf_mac_anti_spoof_set = 10809 TOKEN_STRING_INITIALIZER 10810 (struct cmd_vf_mac_anti_spoof_result, 10811 set, "set"); 10812 cmdline_parse_token_string_t cmd_vf_mac_anti_spoof_vf = 10813 TOKEN_STRING_INITIALIZER 10814 (struct cmd_vf_mac_anti_spoof_result, 10815 vf, "vf"); 10816 cmdline_parse_token_string_t cmd_vf_mac_anti_spoof_mac = 10817 TOKEN_STRING_INITIALIZER 10818 (struct cmd_vf_mac_anti_spoof_result, 10819 mac, "mac"); 10820 cmdline_parse_token_string_t cmd_vf_mac_anti_spoof_antispoof = 10821 TOKEN_STRING_INITIALIZER 10822 (struct cmd_vf_mac_anti_spoof_result, 10823 antispoof, "antispoof"); 10824 cmdline_parse_token_num_t cmd_vf_mac_anti_spoof_port_id = 10825 TOKEN_NUM_INITIALIZER 10826 (struct cmd_vf_mac_anti_spoof_result, 10827 port_id, RTE_UINT16); 10828 cmdline_parse_token_num_t cmd_vf_mac_anti_spoof_vf_id = 10829 TOKEN_NUM_INITIALIZER 10830 (struct cmd_vf_mac_anti_spoof_result, 10831 vf_id, RTE_UINT32); 10832 cmdline_parse_token_string_t cmd_vf_mac_anti_spoof_on_off = 10833 TOKEN_STRING_INITIALIZER 10834 (struct cmd_vf_mac_anti_spoof_result, 10835 on_off, "on#off"); 10836 10837 static void 10838 cmd_set_vf_mac_anti_spoof_parsed( 10839 void *parsed_result, 10840 __rte_unused struct cmdline *cl, 10841 __rte_unused void *data) 10842 { 10843 struct cmd_vf_mac_anti_spoof_result *res = parsed_result; 10844 int ret = -ENOTSUP; 10845 10846 __rte_unused int is_on = (strcmp(res->on_off, "on") == 0) ? 1 : 0; 10847 10848 if (port_id_is_invalid(res->port_id, ENABLED_WARN)) 10849 return; 10850 10851 #ifdef RTE_NET_IXGBE 10852 if (ret == -ENOTSUP) 10853 ret = rte_pmd_ixgbe_set_vf_mac_anti_spoof(res->port_id, 10854 res->vf_id, is_on); 10855 #endif 10856 #ifdef RTE_NET_I40E 10857 if (ret == -ENOTSUP) 10858 ret = rte_pmd_i40e_set_vf_mac_anti_spoof(res->port_id, 10859 res->vf_id, is_on); 10860 #endif 10861 #ifdef RTE_NET_BNXT 10862 if (ret == -ENOTSUP) 10863 ret = rte_pmd_bnxt_set_vf_mac_anti_spoof(res->port_id, 10864 res->vf_id, is_on); 10865 #endif 10866 10867 switch (ret) { 10868 case 0: 10869 break; 10870 case -EINVAL: 10871 printf("invalid vf_id %d or is_on %d\n", res->vf_id, is_on); 10872 break; 10873 case -ENODEV: 10874 printf("invalid port_id %d\n", res->port_id); 10875 break; 10876 case -ENOTSUP: 10877 printf("function not implemented\n"); 10878 break; 10879 default: 10880 printf("programming error: (%s)\n", strerror(-ret)); 10881 } 10882 } 10883 10884 cmdline_parse_inst_t cmd_set_vf_mac_anti_spoof = { 10885 .f = cmd_set_vf_mac_anti_spoof_parsed, 10886 .data = NULL, 10887 .help_str = "set vf mac antispoof <port_id> <vf_id> on|off", 10888 .tokens = { 10889 (void *)&cmd_vf_mac_anti_spoof_set, 10890 (void *)&cmd_vf_mac_anti_spoof_vf, 10891 (void *)&cmd_vf_mac_anti_spoof_mac, 10892 (void *)&cmd_vf_mac_anti_spoof_antispoof, 10893 (void *)&cmd_vf_mac_anti_spoof_port_id, 10894 (void *)&cmd_vf_mac_anti_spoof_vf_id, 10895 (void *)&cmd_vf_mac_anti_spoof_on_off, 10896 NULL, 10897 }, 10898 }; 10899 10900 /* vf vlan strip queue configuration */ 10901 10902 /* Common result structure for vf mac anti spoof */ 10903 struct cmd_vf_vlan_stripq_result { 10904 cmdline_fixed_string_t set; 10905 cmdline_fixed_string_t vf; 10906 cmdline_fixed_string_t vlan; 10907 cmdline_fixed_string_t stripq; 10908 portid_t port_id; 10909 uint16_t vf_id; 10910 cmdline_fixed_string_t on_off; 10911 }; 10912 10913 /* Common CLI fields for vf vlan strip enable disable */ 10914 cmdline_parse_token_string_t cmd_vf_vlan_stripq_set = 10915 TOKEN_STRING_INITIALIZER 10916 (struct cmd_vf_vlan_stripq_result, 10917 set, "set"); 10918 cmdline_parse_token_string_t cmd_vf_vlan_stripq_vf = 10919 TOKEN_STRING_INITIALIZER 10920 (struct cmd_vf_vlan_stripq_result, 10921 vf, "vf"); 10922 cmdline_parse_token_string_t cmd_vf_vlan_stripq_vlan = 10923 TOKEN_STRING_INITIALIZER 10924 (struct cmd_vf_vlan_stripq_result, 10925 vlan, "vlan"); 10926 cmdline_parse_token_string_t cmd_vf_vlan_stripq_stripq = 10927 TOKEN_STRING_INITIALIZER 10928 (struct cmd_vf_vlan_stripq_result, 10929 stripq, "stripq"); 10930 cmdline_parse_token_num_t cmd_vf_vlan_stripq_port_id = 10931 TOKEN_NUM_INITIALIZER 10932 (struct cmd_vf_vlan_stripq_result, 10933 port_id, RTE_UINT16); 10934 cmdline_parse_token_num_t cmd_vf_vlan_stripq_vf_id = 10935 TOKEN_NUM_INITIALIZER 10936 (struct cmd_vf_vlan_stripq_result, 10937 vf_id, RTE_UINT16); 10938 cmdline_parse_token_string_t cmd_vf_vlan_stripq_on_off = 10939 TOKEN_STRING_INITIALIZER 10940 (struct cmd_vf_vlan_stripq_result, 10941 on_off, "on#off"); 10942 10943 static void 10944 cmd_set_vf_vlan_stripq_parsed( 10945 void *parsed_result, 10946 __rte_unused struct cmdline *cl, 10947 __rte_unused void *data) 10948 { 10949 struct cmd_vf_vlan_stripq_result *res = parsed_result; 10950 int ret = -ENOTSUP; 10951 10952 __rte_unused int is_on = (strcmp(res->on_off, "on") == 0) ? 1 : 0; 10953 10954 if (port_id_is_invalid(res->port_id, ENABLED_WARN)) 10955 return; 10956 10957 #ifdef RTE_NET_IXGBE 10958 if (ret == -ENOTSUP) 10959 ret = rte_pmd_ixgbe_set_vf_vlan_stripq(res->port_id, 10960 res->vf_id, is_on); 10961 #endif 10962 #ifdef RTE_NET_I40E 10963 if (ret == -ENOTSUP) 10964 ret = rte_pmd_i40e_set_vf_vlan_stripq(res->port_id, 10965 res->vf_id, is_on); 10966 #endif 10967 #ifdef RTE_NET_BNXT 10968 if (ret == -ENOTSUP) 10969 ret = rte_pmd_bnxt_set_vf_vlan_stripq(res->port_id, 10970 res->vf_id, is_on); 10971 #endif 10972 10973 switch (ret) { 10974 case 0: 10975 break; 10976 case -EINVAL: 10977 printf("invalid vf_id %d or is_on %d\n", res->vf_id, is_on); 10978 break; 10979 case -ENODEV: 10980 printf("invalid port_id %d\n", res->port_id); 10981 break; 10982 case -ENOTSUP: 10983 printf("function not implemented\n"); 10984 break; 10985 default: 10986 printf("programming error: (%s)\n", strerror(-ret)); 10987 } 10988 } 10989 10990 cmdline_parse_inst_t cmd_set_vf_vlan_stripq = { 10991 .f = cmd_set_vf_vlan_stripq_parsed, 10992 .data = NULL, 10993 .help_str = "set vf vlan stripq <port_id> <vf_id> on|off", 10994 .tokens = { 10995 (void *)&cmd_vf_vlan_stripq_set, 10996 (void *)&cmd_vf_vlan_stripq_vf, 10997 (void *)&cmd_vf_vlan_stripq_vlan, 10998 (void *)&cmd_vf_vlan_stripq_stripq, 10999 (void *)&cmd_vf_vlan_stripq_port_id, 11000 (void *)&cmd_vf_vlan_stripq_vf_id, 11001 (void *)&cmd_vf_vlan_stripq_on_off, 11002 NULL, 11003 }, 11004 }; 11005 11006 /* vf vlan insert configuration */ 11007 11008 /* Common result structure for vf vlan insert */ 11009 struct cmd_vf_vlan_insert_result { 11010 cmdline_fixed_string_t set; 11011 cmdline_fixed_string_t vf; 11012 cmdline_fixed_string_t vlan; 11013 cmdline_fixed_string_t insert; 11014 portid_t port_id; 11015 uint16_t vf_id; 11016 uint16_t vlan_id; 11017 }; 11018 11019 /* Common CLI fields for vf vlan insert enable disable */ 11020 cmdline_parse_token_string_t cmd_vf_vlan_insert_set = 11021 TOKEN_STRING_INITIALIZER 11022 (struct cmd_vf_vlan_insert_result, 11023 set, "set"); 11024 cmdline_parse_token_string_t cmd_vf_vlan_insert_vf = 11025 TOKEN_STRING_INITIALIZER 11026 (struct cmd_vf_vlan_insert_result, 11027 vf, "vf"); 11028 cmdline_parse_token_string_t cmd_vf_vlan_insert_vlan = 11029 TOKEN_STRING_INITIALIZER 11030 (struct cmd_vf_vlan_insert_result, 11031 vlan, "vlan"); 11032 cmdline_parse_token_string_t cmd_vf_vlan_insert_insert = 11033 TOKEN_STRING_INITIALIZER 11034 (struct cmd_vf_vlan_insert_result, 11035 insert, "insert"); 11036 cmdline_parse_token_num_t cmd_vf_vlan_insert_port_id = 11037 TOKEN_NUM_INITIALIZER 11038 (struct cmd_vf_vlan_insert_result, 11039 port_id, RTE_UINT16); 11040 cmdline_parse_token_num_t cmd_vf_vlan_insert_vf_id = 11041 TOKEN_NUM_INITIALIZER 11042 (struct cmd_vf_vlan_insert_result, 11043 vf_id, RTE_UINT16); 11044 cmdline_parse_token_num_t cmd_vf_vlan_insert_vlan_id = 11045 TOKEN_NUM_INITIALIZER 11046 (struct cmd_vf_vlan_insert_result, 11047 vlan_id, RTE_UINT16); 11048 11049 static void 11050 cmd_set_vf_vlan_insert_parsed( 11051 void *parsed_result, 11052 __rte_unused struct cmdline *cl, 11053 __rte_unused void *data) 11054 { 11055 struct cmd_vf_vlan_insert_result *res = parsed_result; 11056 int ret = -ENOTSUP; 11057 11058 if (port_id_is_invalid(res->port_id, ENABLED_WARN)) 11059 return; 11060 11061 #ifdef RTE_NET_IXGBE 11062 if (ret == -ENOTSUP) 11063 ret = rte_pmd_ixgbe_set_vf_vlan_insert(res->port_id, res->vf_id, 11064 res->vlan_id); 11065 #endif 11066 #ifdef RTE_NET_I40E 11067 if (ret == -ENOTSUP) 11068 ret = rte_pmd_i40e_set_vf_vlan_insert(res->port_id, res->vf_id, 11069 res->vlan_id); 11070 #endif 11071 #ifdef RTE_NET_BNXT 11072 if (ret == -ENOTSUP) 11073 ret = rte_pmd_bnxt_set_vf_vlan_insert(res->port_id, res->vf_id, 11074 res->vlan_id); 11075 #endif 11076 11077 switch (ret) { 11078 case 0: 11079 break; 11080 case -EINVAL: 11081 printf("invalid vf_id %d or vlan_id %d\n", res->vf_id, res->vlan_id); 11082 break; 11083 case -ENODEV: 11084 printf("invalid port_id %d\n", res->port_id); 11085 break; 11086 case -ENOTSUP: 11087 printf("function not implemented\n"); 11088 break; 11089 default: 11090 printf("programming error: (%s)\n", strerror(-ret)); 11091 } 11092 } 11093 11094 cmdline_parse_inst_t cmd_set_vf_vlan_insert = { 11095 .f = cmd_set_vf_vlan_insert_parsed, 11096 .data = NULL, 11097 .help_str = "set vf vlan insert <port_id> <vf_id> <vlan_id>", 11098 .tokens = { 11099 (void *)&cmd_vf_vlan_insert_set, 11100 (void *)&cmd_vf_vlan_insert_vf, 11101 (void *)&cmd_vf_vlan_insert_vlan, 11102 (void *)&cmd_vf_vlan_insert_insert, 11103 (void *)&cmd_vf_vlan_insert_port_id, 11104 (void *)&cmd_vf_vlan_insert_vf_id, 11105 (void *)&cmd_vf_vlan_insert_vlan_id, 11106 NULL, 11107 }, 11108 }; 11109 11110 /* tx loopback configuration */ 11111 11112 /* Common result structure for tx loopback */ 11113 struct cmd_tx_loopback_result { 11114 cmdline_fixed_string_t set; 11115 cmdline_fixed_string_t tx; 11116 cmdline_fixed_string_t loopback; 11117 portid_t port_id; 11118 cmdline_fixed_string_t on_off; 11119 }; 11120 11121 /* Common CLI fields for tx loopback enable disable */ 11122 cmdline_parse_token_string_t cmd_tx_loopback_set = 11123 TOKEN_STRING_INITIALIZER 11124 (struct cmd_tx_loopback_result, 11125 set, "set"); 11126 cmdline_parse_token_string_t cmd_tx_loopback_tx = 11127 TOKEN_STRING_INITIALIZER 11128 (struct cmd_tx_loopback_result, 11129 tx, "tx"); 11130 cmdline_parse_token_string_t cmd_tx_loopback_loopback = 11131 TOKEN_STRING_INITIALIZER 11132 (struct cmd_tx_loopback_result, 11133 loopback, "loopback"); 11134 cmdline_parse_token_num_t cmd_tx_loopback_port_id = 11135 TOKEN_NUM_INITIALIZER 11136 (struct cmd_tx_loopback_result, 11137 port_id, RTE_UINT16); 11138 cmdline_parse_token_string_t cmd_tx_loopback_on_off = 11139 TOKEN_STRING_INITIALIZER 11140 (struct cmd_tx_loopback_result, 11141 on_off, "on#off"); 11142 11143 static void 11144 cmd_set_tx_loopback_parsed( 11145 void *parsed_result, 11146 __rte_unused struct cmdline *cl, 11147 __rte_unused void *data) 11148 { 11149 struct cmd_tx_loopback_result *res = parsed_result; 11150 int ret = -ENOTSUP; 11151 11152 __rte_unused int is_on = (strcmp(res->on_off, "on") == 0) ? 1 : 0; 11153 11154 if (port_id_is_invalid(res->port_id, ENABLED_WARN)) 11155 return; 11156 11157 #ifdef RTE_NET_IXGBE 11158 if (ret == -ENOTSUP) 11159 ret = rte_pmd_ixgbe_set_tx_loopback(res->port_id, is_on); 11160 #endif 11161 #ifdef RTE_NET_I40E 11162 if (ret == -ENOTSUP) 11163 ret = rte_pmd_i40e_set_tx_loopback(res->port_id, is_on); 11164 #endif 11165 #ifdef RTE_NET_BNXT 11166 if (ret == -ENOTSUP) 11167 ret = rte_pmd_bnxt_set_tx_loopback(res->port_id, is_on); 11168 #endif 11169 #if defined RTE_BUS_DPAA && defined RTE_NET_DPAA 11170 if (ret == -ENOTSUP) 11171 ret = rte_pmd_dpaa_set_tx_loopback(res->port_id, is_on); 11172 #endif 11173 11174 switch (ret) { 11175 case 0: 11176 break; 11177 case -EINVAL: 11178 printf("invalid is_on %d\n", is_on); 11179 break; 11180 case -ENODEV: 11181 printf("invalid port_id %d\n", res->port_id); 11182 break; 11183 case -ENOTSUP: 11184 printf("function not implemented\n"); 11185 break; 11186 default: 11187 printf("programming error: (%s)\n", strerror(-ret)); 11188 } 11189 } 11190 11191 cmdline_parse_inst_t cmd_set_tx_loopback = { 11192 .f = cmd_set_tx_loopback_parsed, 11193 .data = NULL, 11194 .help_str = "set tx loopback <port_id> on|off", 11195 .tokens = { 11196 (void *)&cmd_tx_loopback_set, 11197 (void *)&cmd_tx_loopback_tx, 11198 (void *)&cmd_tx_loopback_loopback, 11199 (void *)&cmd_tx_loopback_port_id, 11200 (void *)&cmd_tx_loopback_on_off, 11201 NULL, 11202 }, 11203 }; 11204 11205 /* all queues drop enable configuration */ 11206 11207 /* Common result structure for all queues drop enable */ 11208 struct cmd_all_queues_drop_en_result { 11209 cmdline_fixed_string_t set; 11210 cmdline_fixed_string_t all; 11211 cmdline_fixed_string_t queues; 11212 cmdline_fixed_string_t drop; 11213 portid_t port_id; 11214 cmdline_fixed_string_t on_off; 11215 }; 11216 11217 /* Common CLI fields for tx loopback enable disable */ 11218 cmdline_parse_token_string_t cmd_all_queues_drop_en_set = 11219 TOKEN_STRING_INITIALIZER 11220 (struct cmd_all_queues_drop_en_result, 11221 set, "set"); 11222 cmdline_parse_token_string_t cmd_all_queues_drop_en_all = 11223 TOKEN_STRING_INITIALIZER 11224 (struct cmd_all_queues_drop_en_result, 11225 all, "all"); 11226 cmdline_parse_token_string_t cmd_all_queues_drop_en_queues = 11227 TOKEN_STRING_INITIALIZER 11228 (struct cmd_all_queues_drop_en_result, 11229 queues, "queues"); 11230 cmdline_parse_token_string_t cmd_all_queues_drop_en_drop = 11231 TOKEN_STRING_INITIALIZER 11232 (struct cmd_all_queues_drop_en_result, 11233 drop, "drop"); 11234 cmdline_parse_token_num_t cmd_all_queues_drop_en_port_id = 11235 TOKEN_NUM_INITIALIZER 11236 (struct cmd_all_queues_drop_en_result, 11237 port_id, RTE_UINT16); 11238 cmdline_parse_token_string_t cmd_all_queues_drop_en_on_off = 11239 TOKEN_STRING_INITIALIZER 11240 (struct cmd_all_queues_drop_en_result, 11241 on_off, "on#off"); 11242 11243 static void 11244 cmd_set_all_queues_drop_en_parsed( 11245 void *parsed_result, 11246 __rte_unused struct cmdline *cl, 11247 __rte_unused void *data) 11248 { 11249 struct cmd_all_queues_drop_en_result *res = parsed_result; 11250 int ret = -ENOTSUP; 11251 int is_on = (strcmp(res->on_off, "on") == 0) ? 1 : 0; 11252 11253 if (port_id_is_invalid(res->port_id, ENABLED_WARN)) 11254 return; 11255 11256 #ifdef RTE_NET_IXGBE 11257 if (ret == -ENOTSUP) 11258 ret = rte_pmd_ixgbe_set_all_queues_drop_en(res->port_id, is_on); 11259 #endif 11260 #ifdef RTE_NET_BNXT 11261 if (ret == -ENOTSUP) 11262 ret = rte_pmd_bnxt_set_all_queues_drop_en(res->port_id, is_on); 11263 #endif 11264 switch (ret) { 11265 case 0: 11266 break; 11267 case -EINVAL: 11268 printf("invalid is_on %d\n", is_on); 11269 break; 11270 case -ENODEV: 11271 printf("invalid port_id %d\n", res->port_id); 11272 break; 11273 case -ENOTSUP: 11274 printf("function not implemented\n"); 11275 break; 11276 default: 11277 printf("programming error: (%s)\n", strerror(-ret)); 11278 } 11279 } 11280 11281 cmdline_parse_inst_t cmd_set_all_queues_drop_en = { 11282 .f = cmd_set_all_queues_drop_en_parsed, 11283 .data = NULL, 11284 .help_str = "set all queues drop <port_id> on|off", 11285 .tokens = { 11286 (void *)&cmd_all_queues_drop_en_set, 11287 (void *)&cmd_all_queues_drop_en_all, 11288 (void *)&cmd_all_queues_drop_en_queues, 11289 (void *)&cmd_all_queues_drop_en_drop, 11290 (void *)&cmd_all_queues_drop_en_port_id, 11291 (void *)&cmd_all_queues_drop_en_on_off, 11292 NULL, 11293 }, 11294 }; 11295 11296 /* vf split drop enable configuration */ 11297 11298 /* Common result structure for vf split drop enable */ 11299 struct cmd_vf_split_drop_en_result { 11300 cmdline_fixed_string_t set; 11301 cmdline_fixed_string_t vf; 11302 cmdline_fixed_string_t split; 11303 cmdline_fixed_string_t drop; 11304 portid_t port_id; 11305 uint16_t vf_id; 11306 cmdline_fixed_string_t on_off; 11307 }; 11308 11309 /* Common CLI fields for vf split drop enable disable */ 11310 cmdline_parse_token_string_t cmd_vf_split_drop_en_set = 11311 TOKEN_STRING_INITIALIZER 11312 (struct cmd_vf_split_drop_en_result, 11313 set, "set"); 11314 cmdline_parse_token_string_t cmd_vf_split_drop_en_vf = 11315 TOKEN_STRING_INITIALIZER 11316 (struct cmd_vf_split_drop_en_result, 11317 vf, "vf"); 11318 cmdline_parse_token_string_t cmd_vf_split_drop_en_split = 11319 TOKEN_STRING_INITIALIZER 11320 (struct cmd_vf_split_drop_en_result, 11321 split, "split"); 11322 cmdline_parse_token_string_t cmd_vf_split_drop_en_drop = 11323 TOKEN_STRING_INITIALIZER 11324 (struct cmd_vf_split_drop_en_result, 11325 drop, "drop"); 11326 cmdline_parse_token_num_t cmd_vf_split_drop_en_port_id = 11327 TOKEN_NUM_INITIALIZER 11328 (struct cmd_vf_split_drop_en_result, 11329 port_id, RTE_UINT16); 11330 cmdline_parse_token_num_t cmd_vf_split_drop_en_vf_id = 11331 TOKEN_NUM_INITIALIZER 11332 (struct cmd_vf_split_drop_en_result, 11333 vf_id, RTE_UINT16); 11334 cmdline_parse_token_string_t cmd_vf_split_drop_en_on_off = 11335 TOKEN_STRING_INITIALIZER 11336 (struct cmd_vf_split_drop_en_result, 11337 on_off, "on#off"); 11338 11339 static void 11340 cmd_set_vf_split_drop_en_parsed( 11341 void *parsed_result, 11342 __rte_unused struct cmdline *cl, 11343 __rte_unused void *data) 11344 { 11345 struct cmd_vf_split_drop_en_result *res = parsed_result; 11346 int ret = -ENOTSUP; 11347 int is_on = (strcmp(res->on_off, "on") == 0) ? 1 : 0; 11348 11349 if (port_id_is_invalid(res->port_id, ENABLED_WARN)) 11350 return; 11351 11352 #ifdef RTE_NET_IXGBE 11353 ret = rte_pmd_ixgbe_set_vf_split_drop_en(res->port_id, res->vf_id, 11354 is_on); 11355 #endif 11356 switch (ret) { 11357 case 0: 11358 break; 11359 case -EINVAL: 11360 printf("invalid vf_id %d or is_on %d\n", res->vf_id, is_on); 11361 break; 11362 case -ENODEV: 11363 printf("invalid port_id %d\n", res->port_id); 11364 break; 11365 case -ENOTSUP: 11366 printf("not supported on port %d\n", res->port_id); 11367 break; 11368 default: 11369 printf("programming error: (%s)\n", strerror(-ret)); 11370 } 11371 } 11372 11373 cmdline_parse_inst_t cmd_set_vf_split_drop_en = { 11374 .f = cmd_set_vf_split_drop_en_parsed, 11375 .data = NULL, 11376 .help_str = "set vf split drop <port_id> <vf_id> on|off", 11377 .tokens = { 11378 (void *)&cmd_vf_split_drop_en_set, 11379 (void *)&cmd_vf_split_drop_en_vf, 11380 (void *)&cmd_vf_split_drop_en_split, 11381 (void *)&cmd_vf_split_drop_en_drop, 11382 (void *)&cmd_vf_split_drop_en_port_id, 11383 (void *)&cmd_vf_split_drop_en_vf_id, 11384 (void *)&cmd_vf_split_drop_en_on_off, 11385 NULL, 11386 }, 11387 }; 11388 11389 /* vf mac address configuration */ 11390 11391 /* Common result structure for vf mac address */ 11392 struct cmd_set_vf_mac_addr_result { 11393 cmdline_fixed_string_t set; 11394 cmdline_fixed_string_t vf; 11395 cmdline_fixed_string_t mac; 11396 cmdline_fixed_string_t addr; 11397 portid_t port_id; 11398 uint16_t vf_id; 11399 struct rte_ether_addr mac_addr; 11400 11401 }; 11402 11403 /* Common CLI fields for vf split drop enable disable */ 11404 cmdline_parse_token_string_t cmd_set_vf_mac_addr_set = 11405 TOKEN_STRING_INITIALIZER 11406 (struct cmd_set_vf_mac_addr_result, 11407 set, "set"); 11408 cmdline_parse_token_string_t cmd_set_vf_mac_addr_vf = 11409 TOKEN_STRING_INITIALIZER 11410 (struct cmd_set_vf_mac_addr_result, 11411 vf, "vf"); 11412 cmdline_parse_token_string_t cmd_set_vf_mac_addr_mac = 11413 TOKEN_STRING_INITIALIZER 11414 (struct cmd_set_vf_mac_addr_result, 11415 mac, "mac"); 11416 cmdline_parse_token_string_t cmd_set_vf_mac_addr_addr = 11417 TOKEN_STRING_INITIALIZER 11418 (struct cmd_set_vf_mac_addr_result, 11419 addr, "addr"); 11420 cmdline_parse_token_num_t cmd_set_vf_mac_addr_port_id = 11421 TOKEN_NUM_INITIALIZER 11422 (struct cmd_set_vf_mac_addr_result, 11423 port_id, RTE_UINT16); 11424 cmdline_parse_token_num_t cmd_set_vf_mac_addr_vf_id = 11425 TOKEN_NUM_INITIALIZER 11426 (struct cmd_set_vf_mac_addr_result, 11427 vf_id, RTE_UINT16); 11428 cmdline_parse_token_etheraddr_t cmd_set_vf_mac_addr_mac_addr = 11429 TOKEN_ETHERADDR_INITIALIZER(struct cmd_set_vf_mac_addr_result, 11430 mac_addr); 11431 11432 static void 11433 cmd_set_vf_mac_addr_parsed( 11434 void *parsed_result, 11435 __rte_unused struct cmdline *cl, 11436 __rte_unused void *data) 11437 { 11438 struct cmd_set_vf_mac_addr_result *res = parsed_result; 11439 int ret = -ENOTSUP; 11440 11441 if (port_id_is_invalid(res->port_id, ENABLED_WARN)) 11442 return; 11443 11444 #ifdef RTE_NET_IXGBE 11445 if (ret == -ENOTSUP) 11446 ret = rte_pmd_ixgbe_set_vf_mac_addr(res->port_id, res->vf_id, 11447 &res->mac_addr); 11448 #endif 11449 #ifdef RTE_NET_I40E 11450 if (ret == -ENOTSUP) 11451 ret = rte_pmd_i40e_set_vf_mac_addr(res->port_id, res->vf_id, 11452 &res->mac_addr); 11453 #endif 11454 #ifdef RTE_NET_BNXT 11455 if (ret == -ENOTSUP) 11456 ret = rte_pmd_bnxt_set_vf_mac_addr(res->port_id, res->vf_id, 11457 &res->mac_addr); 11458 #endif 11459 11460 switch (ret) { 11461 case 0: 11462 break; 11463 case -EINVAL: 11464 printf("invalid vf_id %d or mac_addr\n", res->vf_id); 11465 break; 11466 case -ENODEV: 11467 printf("invalid port_id %d\n", res->port_id); 11468 break; 11469 case -ENOTSUP: 11470 printf("function not implemented\n"); 11471 break; 11472 default: 11473 printf("programming error: (%s)\n", strerror(-ret)); 11474 } 11475 } 11476 11477 cmdline_parse_inst_t cmd_set_vf_mac_addr = { 11478 .f = cmd_set_vf_mac_addr_parsed, 11479 .data = NULL, 11480 .help_str = "set vf mac addr <port_id> <vf_id> <mac_addr>", 11481 .tokens = { 11482 (void *)&cmd_set_vf_mac_addr_set, 11483 (void *)&cmd_set_vf_mac_addr_vf, 11484 (void *)&cmd_set_vf_mac_addr_mac, 11485 (void *)&cmd_set_vf_mac_addr_addr, 11486 (void *)&cmd_set_vf_mac_addr_port_id, 11487 (void *)&cmd_set_vf_mac_addr_vf_id, 11488 (void *)&cmd_set_vf_mac_addr_mac_addr, 11489 NULL, 11490 }, 11491 }; 11492 11493 /* MACsec configuration */ 11494 11495 /* Common result structure for MACsec offload enable */ 11496 struct cmd_macsec_offload_on_result { 11497 cmdline_fixed_string_t set; 11498 cmdline_fixed_string_t macsec; 11499 cmdline_fixed_string_t offload; 11500 portid_t port_id; 11501 cmdline_fixed_string_t on; 11502 cmdline_fixed_string_t encrypt; 11503 cmdline_fixed_string_t en_on_off; 11504 cmdline_fixed_string_t replay_protect; 11505 cmdline_fixed_string_t rp_on_off; 11506 }; 11507 11508 /* Common CLI fields for MACsec offload disable */ 11509 cmdline_parse_token_string_t cmd_macsec_offload_on_set = 11510 TOKEN_STRING_INITIALIZER 11511 (struct cmd_macsec_offload_on_result, 11512 set, "set"); 11513 cmdline_parse_token_string_t cmd_macsec_offload_on_macsec = 11514 TOKEN_STRING_INITIALIZER 11515 (struct cmd_macsec_offload_on_result, 11516 macsec, "macsec"); 11517 cmdline_parse_token_string_t cmd_macsec_offload_on_offload = 11518 TOKEN_STRING_INITIALIZER 11519 (struct cmd_macsec_offload_on_result, 11520 offload, "offload"); 11521 cmdline_parse_token_num_t cmd_macsec_offload_on_port_id = 11522 TOKEN_NUM_INITIALIZER 11523 (struct cmd_macsec_offload_on_result, 11524 port_id, RTE_UINT16); 11525 cmdline_parse_token_string_t cmd_macsec_offload_on_on = 11526 TOKEN_STRING_INITIALIZER 11527 (struct cmd_macsec_offload_on_result, 11528 on, "on"); 11529 cmdline_parse_token_string_t cmd_macsec_offload_on_encrypt = 11530 TOKEN_STRING_INITIALIZER 11531 (struct cmd_macsec_offload_on_result, 11532 encrypt, "encrypt"); 11533 cmdline_parse_token_string_t cmd_macsec_offload_on_en_on_off = 11534 TOKEN_STRING_INITIALIZER 11535 (struct cmd_macsec_offload_on_result, 11536 en_on_off, "on#off"); 11537 cmdline_parse_token_string_t cmd_macsec_offload_on_replay_protect = 11538 TOKEN_STRING_INITIALIZER 11539 (struct cmd_macsec_offload_on_result, 11540 replay_protect, "replay-protect"); 11541 cmdline_parse_token_string_t cmd_macsec_offload_on_rp_on_off = 11542 TOKEN_STRING_INITIALIZER 11543 (struct cmd_macsec_offload_on_result, 11544 rp_on_off, "on#off"); 11545 11546 static void 11547 cmd_set_macsec_offload_on_parsed( 11548 void *parsed_result, 11549 __rte_unused struct cmdline *cl, 11550 __rte_unused void *data) 11551 { 11552 struct cmd_macsec_offload_on_result *res = parsed_result; 11553 int ret = -ENOTSUP; 11554 portid_t port_id = res->port_id; 11555 int en = (strcmp(res->en_on_off, "on") == 0) ? 1 : 0; 11556 int rp = (strcmp(res->rp_on_off, "on") == 0) ? 1 : 0; 11557 struct rte_eth_dev_info dev_info; 11558 11559 if (port_id_is_invalid(port_id, ENABLED_WARN)) 11560 return; 11561 if (!port_is_stopped(port_id)) { 11562 printf("Please stop port %d first\n", port_id); 11563 return; 11564 } 11565 11566 ret = eth_dev_info_get_print_err(port_id, &dev_info); 11567 if (ret != 0) 11568 return; 11569 11570 if (dev_info.tx_offload_capa & DEV_TX_OFFLOAD_MACSEC_INSERT) { 11571 #ifdef RTE_NET_IXGBE 11572 ret = rte_pmd_ixgbe_macsec_enable(port_id, en, rp); 11573 #endif 11574 } 11575 RTE_SET_USED(en); 11576 RTE_SET_USED(rp); 11577 11578 switch (ret) { 11579 case 0: 11580 ports[port_id].dev_conf.txmode.offloads |= 11581 DEV_TX_OFFLOAD_MACSEC_INSERT; 11582 cmd_reconfig_device_queue(port_id, 1, 1); 11583 break; 11584 case -ENODEV: 11585 printf("invalid port_id %d\n", port_id); 11586 break; 11587 case -ENOTSUP: 11588 printf("not supported on port %d\n", port_id); 11589 break; 11590 default: 11591 printf("programming error: (%s)\n", strerror(-ret)); 11592 } 11593 } 11594 11595 cmdline_parse_inst_t cmd_set_macsec_offload_on = { 11596 .f = cmd_set_macsec_offload_on_parsed, 11597 .data = NULL, 11598 .help_str = "set macsec offload <port_id> on " 11599 "encrypt on|off replay-protect on|off", 11600 .tokens = { 11601 (void *)&cmd_macsec_offload_on_set, 11602 (void *)&cmd_macsec_offload_on_macsec, 11603 (void *)&cmd_macsec_offload_on_offload, 11604 (void *)&cmd_macsec_offload_on_port_id, 11605 (void *)&cmd_macsec_offload_on_on, 11606 (void *)&cmd_macsec_offload_on_encrypt, 11607 (void *)&cmd_macsec_offload_on_en_on_off, 11608 (void *)&cmd_macsec_offload_on_replay_protect, 11609 (void *)&cmd_macsec_offload_on_rp_on_off, 11610 NULL, 11611 }, 11612 }; 11613 11614 /* Common result structure for MACsec offload disable */ 11615 struct cmd_macsec_offload_off_result { 11616 cmdline_fixed_string_t set; 11617 cmdline_fixed_string_t macsec; 11618 cmdline_fixed_string_t offload; 11619 portid_t port_id; 11620 cmdline_fixed_string_t off; 11621 }; 11622 11623 /* Common CLI fields for MACsec offload disable */ 11624 cmdline_parse_token_string_t cmd_macsec_offload_off_set = 11625 TOKEN_STRING_INITIALIZER 11626 (struct cmd_macsec_offload_off_result, 11627 set, "set"); 11628 cmdline_parse_token_string_t cmd_macsec_offload_off_macsec = 11629 TOKEN_STRING_INITIALIZER 11630 (struct cmd_macsec_offload_off_result, 11631 macsec, "macsec"); 11632 cmdline_parse_token_string_t cmd_macsec_offload_off_offload = 11633 TOKEN_STRING_INITIALIZER 11634 (struct cmd_macsec_offload_off_result, 11635 offload, "offload"); 11636 cmdline_parse_token_num_t cmd_macsec_offload_off_port_id = 11637 TOKEN_NUM_INITIALIZER 11638 (struct cmd_macsec_offload_off_result, 11639 port_id, RTE_UINT16); 11640 cmdline_parse_token_string_t cmd_macsec_offload_off_off = 11641 TOKEN_STRING_INITIALIZER 11642 (struct cmd_macsec_offload_off_result, 11643 off, "off"); 11644 11645 static void 11646 cmd_set_macsec_offload_off_parsed( 11647 void *parsed_result, 11648 __rte_unused struct cmdline *cl, 11649 __rte_unused void *data) 11650 { 11651 struct cmd_macsec_offload_off_result *res = parsed_result; 11652 int ret = -ENOTSUP; 11653 struct rte_eth_dev_info dev_info; 11654 portid_t port_id = res->port_id; 11655 11656 if (port_id_is_invalid(port_id, ENABLED_WARN)) 11657 return; 11658 if (!port_is_stopped(port_id)) { 11659 printf("Please stop port %d first\n", port_id); 11660 return; 11661 } 11662 11663 ret = eth_dev_info_get_print_err(port_id, &dev_info); 11664 if (ret != 0) 11665 return; 11666 11667 if (dev_info.tx_offload_capa & DEV_TX_OFFLOAD_MACSEC_INSERT) { 11668 #ifdef RTE_NET_IXGBE 11669 ret = rte_pmd_ixgbe_macsec_disable(port_id); 11670 #endif 11671 } 11672 switch (ret) { 11673 case 0: 11674 ports[port_id].dev_conf.txmode.offloads &= 11675 ~DEV_TX_OFFLOAD_MACSEC_INSERT; 11676 cmd_reconfig_device_queue(port_id, 1, 1); 11677 break; 11678 case -ENODEV: 11679 printf("invalid port_id %d\n", port_id); 11680 break; 11681 case -ENOTSUP: 11682 printf("not supported on port %d\n", port_id); 11683 break; 11684 default: 11685 printf("programming error: (%s)\n", strerror(-ret)); 11686 } 11687 } 11688 11689 cmdline_parse_inst_t cmd_set_macsec_offload_off = { 11690 .f = cmd_set_macsec_offload_off_parsed, 11691 .data = NULL, 11692 .help_str = "set macsec offload <port_id> off", 11693 .tokens = { 11694 (void *)&cmd_macsec_offload_off_set, 11695 (void *)&cmd_macsec_offload_off_macsec, 11696 (void *)&cmd_macsec_offload_off_offload, 11697 (void *)&cmd_macsec_offload_off_port_id, 11698 (void *)&cmd_macsec_offload_off_off, 11699 NULL, 11700 }, 11701 }; 11702 11703 /* Common result structure for MACsec secure connection configure */ 11704 struct cmd_macsec_sc_result { 11705 cmdline_fixed_string_t set; 11706 cmdline_fixed_string_t macsec; 11707 cmdline_fixed_string_t sc; 11708 cmdline_fixed_string_t tx_rx; 11709 portid_t port_id; 11710 struct rte_ether_addr mac; 11711 uint16_t pi; 11712 }; 11713 11714 /* Common CLI fields for MACsec secure connection configure */ 11715 cmdline_parse_token_string_t cmd_macsec_sc_set = 11716 TOKEN_STRING_INITIALIZER 11717 (struct cmd_macsec_sc_result, 11718 set, "set"); 11719 cmdline_parse_token_string_t cmd_macsec_sc_macsec = 11720 TOKEN_STRING_INITIALIZER 11721 (struct cmd_macsec_sc_result, 11722 macsec, "macsec"); 11723 cmdline_parse_token_string_t cmd_macsec_sc_sc = 11724 TOKEN_STRING_INITIALIZER 11725 (struct cmd_macsec_sc_result, 11726 sc, "sc"); 11727 cmdline_parse_token_string_t cmd_macsec_sc_tx_rx = 11728 TOKEN_STRING_INITIALIZER 11729 (struct cmd_macsec_sc_result, 11730 tx_rx, "tx#rx"); 11731 cmdline_parse_token_num_t cmd_macsec_sc_port_id = 11732 TOKEN_NUM_INITIALIZER 11733 (struct cmd_macsec_sc_result, 11734 port_id, RTE_UINT16); 11735 cmdline_parse_token_etheraddr_t cmd_macsec_sc_mac = 11736 TOKEN_ETHERADDR_INITIALIZER 11737 (struct cmd_macsec_sc_result, 11738 mac); 11739 cmdline_parse_token_num_t cmd_macsec_sc_pi = 11740 TOKEN_NUM_INITIALIZER 11741 (struct cmd_macsec_sc_result, 11742 pi, RTE_UINT16); 11743 11744 static void 11745 cmd_set_macsec_sc_parsed( 11746 void *parsed_result, 11747 __rte_unused struct cmdline *cl, 11748 __rte_unused void *data) 11749 { 11750 struct cmd_macsec_sc_result *res = parsed_result; 11751 int ret = -ENOTSUP; 11752 int is_tx = (strcmp(res->tx_rx, "tx") == 0) ? 1 : 0; 11753 11754 #ifdef RTE_NET_IXGBE 11755 ret = is_tx ? 11756 rte_pmd_ixgbe_macsec_config_txsc(res->port_id, 11757 res->mac.addr_bytes) : 11758 rte_pmd_ixgbe_macsec_config_rxsc(res->port_id, 11759 res->mac.addr_bytes, res->pi); 11760 #endif 11761 RTE_SET_USED(is_tx); 11762 11763 switch (ret) { 11764 case 0: 11765 break; 11766 case -ENODEV: 11767 printf("invalid port_id %d\n", res->port_id); 11768 break; 11769 case -ENOTSUP: 11770 printf("not supported on port %d\n", res->port_id); 11771 break; 11772 default: 11773 printf("programming error: (%s)\n", strerror(-ret)); 11774 } 11775 } 11776 11777 cmdline_parse_inst_t cmd_set_macsec_sc = { 11778 .f = cmd_set_macsec_sc_parsed, 11779 .data = NULL, 11780 .help_str = "set macsec sc tx|rx <port_id> <mac> <pi>", 11781 .tokens = { 11782 (void *)&cmd_macsec_sc_set, 11783 (void *)&cmd_macsec_sc_macsec, 11784 (void *)&cmd_macsec_sc_sc, 11785 (void *)&cmd_macsec_sc_tx_rx, 11786 (void *)&cmd_macsec_sc_port_id, 11787 (void *)&cmd_macsec_sc_mac, 11788 (void *)&cmd_macsec_sc_pi, 11789 NULL, 11790 }, 11791 }; 11792 11793 /* Common result structure for MACsec secure connection configure */ 11794 struct cmd_macsec_sa_result { 11795 cmdline_fixed_string_t set; 11796 cmdline_fixed_string_t macsec; 11797 cmdline_fixed_string_t sa; 11798 cmdline_fixed_string_t tx_rx; 11799 portid_t port_id; 11800 uint8_t idx; 11801 uint8_t an; 11802 uint32_t pn; 11803 cmdline_fixed_string_t key; 11804 }; 11805 11806 /* Common CLI fields for MACsec secure connection configure */ 11807 cmdline_parse_token_string_t cmd_macsec_sa_set = 11808 TOKEN_STRING_INITIALIZER 11809 (struct cmd_macsec_sa_result, 11810 set, "set"); 11811 cmdline_parse_token_string_t cmd_macsec_sa_macsec = 11812 TOKEN_STRING_INITIALIZER 11813 (struct cmd_macsec_sa_result, 11814 macsec, "macsec"); 11815 cmdline_parse_token_string_t cmd_macsec_sa_sa = 11816 TOKEN_STRING_INITIALIZER 11817 (struct cmd_macsec_sa_result, 11818 sa, "sa"); 11819 cmdline_parse_token_string_t cmd_macsec_sa_tx_rx = 11820 TOKEN_STRING_INITIALIZER 11821 (struct cmd_macsec_sa_result, 11822 tx_rx, "tx#rx"); 11823 cmdline_parse_token_num_t cmd_macsec_sa_port_id = 11824 TOKEN_NUM_INITIALIZER 11825 (struct cmd_macsec_sa_result, 11826 port_id, RTE_UINT16); 11827 cmdline_parse_token_num_t cmd_macsec_sa_idx = 11828 TOKEN_NUM_INITIALIZER 11829 (struct cmd_macsec_sa_result, 11830 idx, RTE_UINT8); 11831 cmdline_parse_token_num_t cmd_macsec_sa_an = 11832 TOKEN_NUM_INITIALIZER 11833 (struct cmd_macsec_sa_result, 11834 an, RTE_UINT8); 11835 cmdline_parse_token_num_t cmd_macsec_sa_pn = 11836 TOKEN_NUM_INITIALIZER 11837 (struct cmd_macsec_sa_result, 11838 pn, RTE_UINT32); 11839 cmdline_parse_token_string_t cmd_macsec_sa_key = 11840 TOKEN_STRING_INITIALIZER 11841 (struct cmd_macsec_sa_result, 11842 key, NULL); 11843 11844 static void 11845 cmd_set_macsec_sa_parsed( 11846 void *parsed_result, 11847 __rte_unused struct cmdline *cl, 11848 __rte_unused void *data) 11849 { 11850 struct cmd_macsec_sa_result *res = parsed_result; 11851 int ret = -ENOTSUP; 11852 int is_tx = (strcmp(res->tx_rx, "tx") == 0) ? 1 : 0; 11853 uint8_t key[16] = { 0 }; 11854 uint8_t xdgt0; 11855 uint8_t xdgt1; 11856 int key_len; 11857 int i; 11858 11859 key_len = strlen(res->key) / 2; 11860 if (key_len > 16) 11861 key_len = 16; 11862 11863 for (i = 0; i < key_len; i++) { 11864 xdgt0 = parse_and_check_key_hexa_digit(res->key, (i * 2)); 11865 if (xdgt0 == 0xFF) 11866 return; 11867 xdgt1 = parse_and_check_key_hexa_digit(res->key, (i * 2) + 1); 11868 if (xdgt1 == 0xFF) 11869 return; 11870 key[i] = (uint8_t) ((xdgt0 * 16) + xdgt1); 11871 } 11872 11873 #ifdef RTE_NET_IXGBE 11874 ret = is_tx ? 11875 rte_pmd_ixgbe_macsec_select_txsa(res->port_id, 11876 res->idx, res->an, res->pn, key) : 11877 rte_pmd_ixgbe_macsec_select_rxsa(res->port_id, 11878 res->idx, res->an, res->pn, key); 11879 #endif 11880 RTE_SET_USED(is_tx); 11881 RTE_SET_USED(key); 11882 11883 switch (ret) { 11884 case 0: 11885 break; 11886 case -EINVAL: 11887 printf("invalid idx %d or an %d\n", res->idx, res->an); 11888 break; 11889 case -ENODEV: 11890 printf("invalid port_id %d\n", res->port_id); 11891 break; 11892 case -ENOTSUP: 11893 printf("not supported on port %d\n", res->port_id); 11894 break; 11895 default: 11896 printf("programming error: (%s)\n", strerror(-ret)); 11897 } 11898 } 11899 11900 cmdline_parse_inst_t cmd_set_macsec_sa = { 11901 .f = cmd_set_macsec_sa_parsed, 11902 .data = NULL, 11903 .help_str = "set macsec sa tx|rx <port_id> <idx> <an> <pn> <key>", 11904 .tokens = { 11905 (void *)&cmd_macsec_sa_set, 11906 (void *)&cmd_macsec_sa_macsec, 11907 (void *)&cmd_macsec_sa_sa, 11908 (void *)&cmd_macsec_sa_tx_rx, 11909 (void *)&cmd_macsec_sa_port_id, 11910 (void *)&cmd_macsec_sa_idx, 11911 (void *)&cmd_macsec_sa_an, 11912 (void *)&cmd_macsec_sa_pn, 11913 (void *)&cmd_macsec_sa_key, 11914 NULL, 11915 }, 11916 }; 11917 11918 /* VF unicast promiscuous mode configuration */ 11919 11920 /* Common result structure for VF unicast promiscuous mode */ 11921 struct cmd_vf_promisc_result { 11922 cmdline_fixed_string_t set; 11923 cmdline_fixed_string_t vf; 11924 cmdline_fixed_string_t promisc; 11925 portid_t port_id; 11926 uint32_t vf_id; 11927 cmdline_fixed_string_t on_off; 11928 }; 11929 11930 /* Common CLI fields for VF unicast promiscuous mode enable disable */ 11931 cmdline_parse_token_string_t cmd_vf_promisc_set = 11932 TOKEN_STRING_INITIALIZER 11933 (struct cmd_vf_promisc_result, 11934 set, "set"); 11935 cmdline_parse_token_string_t cmd_vf_promisc_vf = 11936 TOKEN_STRING_INITIALIZER 11937 (struct cmd_vf_promisc_result, 11938 vf, "vf"); 11939 cmdline_parse_token_string_t cmd_vf_promisc_promisc = 11940 TOKEN_STRING_INITIALIZER 11941 (struct cmd_vf_promisc_result, 11942 promisc, "promisc"); 11943 cmdline_parse_token_num_t cmd_vf_promisc_port_id = 11944 TOKEN_NUM_INITIALIZER 11945 (struct cmd_vf_promisc_result, 11946 port_id, RTE_UINT16); 11947 cmdline_parse_token_num_t cmd_vf_promisc_vf_id = 11948 TOKEN_NUM_INITIALIZER 11949 (struct cmd_vf_promisc_result, 11950 vf_id, RTE_UINT32); 11951 cmdline_parse_token_string_t cmd_vf_promisc_on_off = 11952 TOKEN_STRING_INITIALIZER 11953 (struct cmd_vf_promisc_result, 11954 on_off, "on#off"); 11955 11956 static void 11957 cmd_set_vf_promisc_parsed( 11958 void *parsed_result, 11959 __rte_unused struct cmdline *cl, 11960 __rte_unused void *data) 11961 { 11962 struct cmd_vf_promisc_result *res = parsed_result; 11963 int ret = -ENOTSUP; 11964 11965 __rte_unused int is_on = (strcmp(res->on_off, "on") == 0) ? 1 : 0; 11966 11967 if (port_id_is_invalid(res->port_id, ENABLED_WARN)) 11968 return; 11969 11970 #ifdef RTE_NET_I40E 11971 ret = rte_pmd_i40e_set_vf_unicast_promisc(res->port_id, 11972 res->vf_id, is_on); 11973 #endif 11974 11975 switch (ret) { 11976 case 0: 11977 break; 11978 case -EINVAL: 11979 printf("invalid vf_id %d\n", res->vf_id); 11980 break; 11981 case -ENODEV: 11982 printf("invalid port_id %d\n", res->port_id); 11983 break; 11984 case -ENOTSUP: 11985 printf("function not implemented\n"); 11986 break; 11987 default: 11988 printf("programming error: (%s)\n", strerror(-ret)); 11989 } 11990 } 11991 11992 cmdline_parse_inst_t cmd_set_vf_promisc = { 11993 .f = cmd_set_vf_promisc_parsed, 11994 .data = NULL, 11995 .help_str = "set vf promisc <port_id> <vf_id> on|off: " 11996 "Set unicast promiscuous mode for a VF from the PF", 11997 .tokens = { 11998 (void *)&cmd_vf_promisc_set, 11999 (void *)&cmd_vf_promisc_vf, 12000 (void *)&cmd_vf_promisc_promisc, 12001 (void *)&cmd_vf_promisc_port_id, 12002 (void *)&cmd_vf_promisc_vf_id, 12003 (void *)&cmd_vf_promisc_on_off, 12004 NULL, 12005 }, 12006 }; 12007 12008 /* VF multicast promiscuous mode configuration */ 12009 12010 /* Common result structure for VF multicast promiscuous mode */ 12011 struct cmd_vf_allmulti_result { 12012 cmdline_fixed_string_t set; 12013 cmdline_fixed_string_t vf; 12014 cmdline_fixed_string_t allmulti; 12015 portid_t port_id; 12016 uint32_t vf_id; 12017 cmdline_fixed_string_t on_off; 12018 }; 12019 12020 /* Common CLI fields for VF multicast promiscuous mode enable disable */ 12021 cmdline_parse_token_string_t cmd_vf_allmulti_set = 12022 TOKEN_STRING_INITIALIZER 12023 (struct cmd_vf_allmulti_result, 12024 set, "set"); 12025 cmdline_parse_token_string_t cmd_vf_allmulti_vf = 12026 TOKEN_STRING_INITIALIZER 12027 (struct cmd_vf_allmulti_result, 12028 vf, "vf"); 12029 cmdline_parse_token_string_t cmd_vf_allmulti_allmulti = 12030 TOKEN_STRING_INITIALIZER 12031 (struct cmd_vf_allmulti_result, 12032 allmulti, "allmulti"); 12033 cmdline_parse_token_num_t cmd_vf_allmulti_port_id = 12034 TOKEN_NUM_INITIALIZER 12035 (struct cmd_vf_allmulti_result, 12036 port_id, RTE_UINT16); 12037 cmdline_parse_token_num_t cmd_vf_allmulti_vf_id = 12038 TOKEN_NUM_INITIALIZER 12039 (struct cmd_vf_allmulti_result, 12040 vf_id, RTE_UINT32); 12041 cmdline_parse_token_string_t cmd_vf_allmulti_on_off = 12042 TOKEN_STRING_INITIALIZER 12043 (struct cmd_vf_allmulti_result, 12044 on_off, "on#off"); 12045 12046 static void 12047 cmd_set_vf_allmulti_parsed( 12048 void *parsed_result, 12049 __rte_unused struct cmdline *cl, 12050 __rte_unused void *data) 12051 { 12052 struct cmd_vf_allmulti_result *res = parsed_result; 12053 int ret = -ENOTSUP; 12054 12055 __rte_unused int is_on = (strcmp(res->on_off, "on") == 0) ? 1 : 0; 12056 12057 if (port_id_is_invalid(res->port_id, ENABLED_WARN)) 12058 return; 12059 12060 #ifdef RTE_NET_I40E 12061 ret = rte_pmd_i40e_set_vf_multicast_promisc(res->port_id, 12062 res->vf_id, is_on); 12063 #endif 12064 12065 switch (ret) { 12066 case 0: 12067 break; 12068 case -EINVAL: 12069 printf("invalid vf_id %d\n", res->vf_id); 12070 break; 12071 case -ENODEV: 12072 printf("invalid port_id %d\n", res->port_id); 12073 break; 12074 case -ENOTSUP: 12075 printf("function not implemented\n"); 12076 break; 12077 default: 12078 printf("programming error: (%s)\n", strerror(-ret)); 12079 } 12080 } 12081 12082 cmdline_parse_inst_t cmd_set_vf_allmulti = { 12083 .f = cmd_set_vf_allmulti_parsed, 12084 .data = NULL, 12085 .help_str = "set vf allmulti <port_id> <vf_id> on|off: " 12086 "Set multicast promiscuous mode for a VF from the PF", 12087 .tokens = { 12088 (void *)&cmd_vf_allmulti_set, 12089 (void *)&cmd_vf_allmulti_vf, 12090 (void *)&cmd_vf_allmulti_allmulti, 12091 (void *)&cmd_vf_allmulti_port_id, 12092 (void *)&cmd_vf_allmulti_vf_id, 12093 (void *)&cmd_vf_allmulti_on_off, 12094 NULL, 12095 }, 12096 }; 12097 12098 /* vf broadcast mode configuration */ 12099 12100 /* Common result structure for vf broadcast */ 12101 struct cmd_set_vf_broadcast_result { 12102 cmdline_fixed_string_t set; 12103 cmdline_fixed_string_t vf; 12104 cmdline_fixed_string_t broadcast; 12105 portid_t port_id; 12106 uint16_t vf_id; 12107 cmdline_fixed_string_t on_off; 12108 }; 12109 12110 /* Common CLI fields for vf broadcast enable disable */ 12111 cmdline_parse_token_string_t cmd_set_vf_broadcast_set = 12112 TOKEN_STRING_INITIALIZER 12113 (struct cmd_set_vf_broadcast_result, 12114 set, "set"); 12115 cmdline_parse_token_string_t cmd_set_vf_broadcast_vf = 12116 TOKEN_STRING_INITIALIZER 12117 (struct cmd_set_vf_broadcast_result, 12118 vf, "vf"); 12119 cmdline_parse_token_string_t cmd_set_vf_broadcast_broadcast = 12120 TOKEN_STRING_INITIALIZER 12121 (struct cmd_set_vf_broadcast_result, 12122 broadcast, "broadcast"); 12123 cmdline_parse_token_num_t cmd_set_vf_broadcast_port_id = 12124 TOKEN_NUM_INITIALIZER 12125 (struct cmd_set_vf_broadcast_result, 12126 port_id, RTE_UINT16); 12127 cmdline_parse_token_num_t cmd_set_vf_broadcast_vf_id = 12128 TOKEN_NUM_INITIALIZER 12129 (struct cmd_set_vf_broadcast_result, 12130 vf_id, RTE_UINT16); 12131 cmdline_parse_token_string_t cmd_set_vf_broadcast_on_off = 12132 TOKEN_STRING_INITIALIZER 12133 (struct cmd_set_vf_broadcast_result, 12134 on_off, "on#off"); 12135 12136 static void 12137 cmd_set_vf_broadcast_parsed( 12138 void *parsed_result, 12139 __rte_unused struct cmdline *cl, 12140 __rte_unused void *data) 12141 { 12142 struct cmd_set_vf_broadcast_result *res = parsed_result; 12143 int ret = -ENOTSUP; 12144 12145 __rte_unused int is_on = (strcmp(res->on_off, "on") == 0) ? 1 : 0; 12146 12147 if (port_id_is_invalid(res->port_id, ENABLED_WARN)) 12148 return; 12149 12150 #ifdef RTE_NET_I40E 12151 ret = rte_pmd_i40e_set_vf_broadcast(res->port_id, 12152 res->vf_id, is_on); 12153 #endif 12154 12155 switch (ret) { 12156 case 0: 12157 break; 12158 case -EINVAL: 12159 printf("invalid vf_id %d or is_on %d\n", res->vf_id, is_on); 12160 break; 12161 case -ENODEV: 12162 printf("invalid port_id %d\n", res->port_id); 12163 break; 12164 case -ENOTSUP: 12165 printf("function not implemented\n"); 12166 break; 12167 default: 12168 printf("programming error: (%s)\n", strerror(-ret)); 12169 } 12170 } 12171 12172 cmdline_parse_inst_t cmd_set_vf_broadcast = { 12173 .f = cmd_set_vf_broadcast_parsed, 12174 .data = NULL, 12175 .help_str = "set vf broadcast <port_id> <vf_id> on|off", 12176 .tokens = { 12177 (void *)&cmd_set_vf_broadcast_set, 12178 (void *)&cmd_set_vf_broadcast_vf, 12179 (void *)&cmd_set_vf_broadcast_broadcast, 12180 (void *)&cmd_set_vf_broadcast_port_id, 12181 (void *)&cmd_set_vf_broadcast_vf_id, 12182 (void *)&cmd_set_vf_broadcast_on_off, 12183 NULL, 12184 }, 12185 }; 12186 12187 /* vf vlan tag configuration */ 12188 12189 /* Common result structure for vf vlan tag */ 12190 struct cmd_set_vf_vlan_tag_result { 12191 cmdline_fixed_string_t set; 12192 cmdline_fixed_string_t vf; 12193 cmdline_fixed_string_t vlan; 12194 cmdline_fixed_string_t tag; 12195 portid_t port_id; 12196 uint16_t vf_id; 12197 cmdline_fixed_string_t on_off; 12198 }; 12199 12200 /* Common CLI fields for vf vlan tag enable disable */ 12201 cmdline_parse_token_string_t cmd_set_vf_vlan_tag_set = 12202 TOKEN_STRING_INITIALIZER 12203 (struct cmd_set_vf_vlan_tag_result, 12204 set, "set"); 12205 cmdline_parse_token_string_t cmd_set_vf_vlan_tag_vf = 12206 TOKEN_STRING_INITIALIZER 12207 (struct cmd_set_vf_vlan_tag_result, 12208 vf, "vf"); 12209 cmdline_parse_token_string_t cmd_set_vf_vlan_tag_vlan = 12210 TOKEN_STRING_INITIALIZER 12211 (struct cmd_set_vf_vlan_tag_result, 12212 vlan, "vlan"); 12213 cmdline_parse_token_string_t cmd_set_vf_vlan_tag_tag = 12214 TOKEN_STRING_INITIALIZER 12215 (struct cmd_set_vf_vlan_tag_result, 12216 tag, "tag"); 12217 cmdline_parse_token_num_t cmd_set_vf_vlan_tag_port_id = 12218 TOKEN_NUM_INITIALIZER 12219 (struct cmd_set_vf_vlan_tag_result, 12220 port_id, RTE_UINT16); 12221 cmdline_parse_token_num_t cmd_set_vf_vlan_tag_vf_id = 12222 TOKEN_NUM_INITIALIZER 12223 (struct cmd_set_vf_vlan_tag_result, 12224 vf_id, RTE_UINT16); 12225 cmdline_parse_token_string_t cmd_set_vf_vlan_tag_on_off = 12226 TOKEN_STRING_INITIALIZER 12227 (struct cmd_set_vf_vlan_tag_result, 12228 on_off, "on#off"); 12229 12230 static void 12231 cmd_set_vf_vlan_tag_parsed( 12232 void *parsed_result, 12233 __rte_unused struct cmdline *cl, 12234 __rte_unused void *data) 12235 { 12236 struct cmd_set_vf_vlan_tag_result *res = parsed_result; 12237 int ret = -ENOTSUP; 12238 12239 __rte_unused int is_on = (strcmp(res->on_off, "on") == 0) ? 1 : 0; 12240 12241 if (port_id_is_invalid(res->port_id, ENABLED_WARN)) 12242 return; 12243 12244 #ifdef RTE_NET_I40E 12245 ret = rte_pmd_i40e_set_vf_vlan_tag(res->port_id, 12246 res->vf_id, is_on); 12247 #endif 12248 12249 switch (ret) { 12250 case 0: 12251 break; 12252 case -EINVAL: 12253 printf("invalid vf_id %d or is_on %d\n", res->vf_id, is_on); 12254 break; 12255 case -ENODEV: 12256 printf("invalid port_id %d\n", res->port_id); 12257 break; 12258 case -ENOTSUP: 12259 printf("function not implemented\n"); 12260 break; 12261 default: 12262 printf("programming error: (%s)\n", strerror(-ret)); 12263 } 12264 } 12265 12266 cmdline_parse_inst_t cmd_set_vf_vlan_tag = { 12267 .f = cmd_set_vf_vlan_tag_parsed, 12268 .data = NULL, 12269 .help_str = "set vf vlan tag <port_id> <vf_id> on|off", 12270 .tokens = { 12271 (void *)&cmd_set_vf_vlan_tag_set, 12272 (void *)&cmd_set_vf_vlan_tag_vf, 12273 (void *)&cmd_set_vf_vlan_tag_vlan, 12274 (void *)&cmd_set_vf_vlan_tag_tag, 12275 (void *)&cmd_set_vf_vlan_tag_port_id, 12276 (void *)&cmd_set_vf_vlan_tag_vf_id, 12277 (void *)&cmd_set_vf_vlan_tag_on_off, 12278 NULL, 12279 }, 12280 }; 12281 12282 /* Common definition of VF and TC TX bandwidth configuration */ 12283 struct cmd_vf_tc_bw_result { 12284 cmdline_fixed_string_t set; 12285 cmdline_fixed_string_t vf; 12286 cmdline_fixed_string_t tc; 12287 cmdline_fixed_string_t tx; 12288 cmdline_fixed_string_t min_bw; 12289 cmdline_fixed_string_t max_bw; 12290 cmdline_fixed_string_t strict_link_prio; 12291 portid_t port_id; 12292 uint16_t vf_id; 12293 uint8_t tc_no; 12294 uint32_t bw; 12295 cmdline_fixed_string_t bw_list; 12296 uint8_t tc_map; 12297 }; 12298 12299 cmdline_parse_token_string_t cmd_vf_tc_bw_set = 12300 TOKEN_STRING_INITIALIZER 12301 (struct cmd_vf_tc_bw_result, 12302 set, "set"); 12303 cmdline_parse_token_string_t cmd_vf_tc_bw_vf = 12304 TOKEN_STRING_INITIALIZER 12305 (struct cmd_vf_tc_bw_result, 12306 vf, "vf"); 12307 cmdline_parse_token_string_t cmd_vf_tc_bw_tc = 12308 TOKEN_STRING_INITIALIZER 12309 (struct cmd_vf_tc_bw_result, 12310 tc, "tc"); 12311 cmdline_parse_token_string_t cmd_vf_tc_bw_tx = 12312 TOKEN_STRING_INITIALIZER 12313 (struct cmd_vf_tc_bw_result, 12314 tx, "tx"); 12315 cmdline_parse_token_string_t cmd_vf_tc_bw_strict_link_prio = 12316 TOKEN_STRING_INITIALIZER 12317 (struct cmd_vf_tc_bw_result, 12318 strict_link_prio, "strict-link-priority"); 12319 cmdline_parse_token_string_t cmd_vf_tc_bw_min_bw = 12320 TOKEN_STRING_INITIALIZER 12321 (struct cmd_vf_tc_bw_result, 12322 min_bw, "min-bandwidth"); 12323 cmdline_parse_token_string_t cmd_vf_tc_bw_max_bw = 12324 TOKEN_STRING_INITIALIZER 12325 (struct cmd_vf_tc_bw_result, 12326 max_bw, "max-bandwidth"); 12327 cmdline_parse_token_num_t cmd_vf_tc_bw_port_id = 12328 TOKEN_NUM_INITIALIZER 12329 (struct cmd_vf_tc_bw_result, 12330 port_id, RTE_UINT16); 12331 cmdline_parse_token_num_t cmd_vf_tc_bw_vf_id = 12332 TOKEN_NUM_INITIALIZER 12333 (struct cmd_vf_tc_bw_result, 12334 vf_id, RTE_UINT16); 12335 cmdline_parse_token_num_t cmd_vf_tc_bw_tc_no = 12336 TOKEN_NUM_INITIALIZER 12337 (struct cmd_vf_tc_bw_result, 12338 tc_no, RTE_UINT8); 12339 cmdline_parse_token_num_t cmd_vf_tc_bw_bw = 12340 TOKEN_NUM_INITIALIZER 12341 (struct cmd_vf_tc_bw_result, 12342 bw, RTE_UINT32); 12343 cmdline_parse_token_string_t cmd_vf_tc_bw_bw_list = 12344 TOKEN_STRING_INITIALIZER 12345 (struct cmd_vf_tc_bw_result, 12346 bw_list, NULL); 12347 cmdline_parse_token_num_t cmd_vf_tc_bw_tc_map = 12348 TOKEN_NUM_INITIALIZER 12349 (struct cmd_vf_tc_bw_result, 12350 tc_map, RTE_UINT8); 12351 12352 /* VF max bandwidth setting */ 12353 static void 12354 cmd_vf_max_bw_parsed( 12355 void *parsed_result, 12356 __rte_unused struct cmdline *cl, 12357 __rte_unused void *data) 12358 { 12359 struct cmd_vf_tc_bw_result *res = parsed_result; 12360 int ret = -ENOTSUP; 12361 12362 if (port_id_is_invalid(res->port_id, ENABLED_WARN)) 12363 return; 12364 12365 #ifdef RTE_NET_I40E 12366 ret = rte_pmd_i40e_set_vf_max_bw(res->port_id, 12367 res->vf_id, res->bw); 12368 #endif 12369 12370 switch (ret) { 12371 case 0: 12372 break; 12373 case -EINVAL: 12374 printf("invalid vf_id %d or bandwidth %d\n", 12375 res->vf_id, res->bw); 12376 break; 12377 case -ENODEV: 12378 printf("invalid port_id %d\n", res->port_id); 12379 break; 12380 case -ENOTSUP: 12381 printf("function not implemented\n"); 12382 break; 12383 default: 12384 printf("programming error: (%s)\n", strerror(-ret)); 12385 } 12386 } 12387 12388 cmdline_parse_inst_t cmd_vf_max_bw = { 12389 .f = cmd_vf_max_bw_parsed, 12390 .data = NULL, 12391 .help_str = "set vf tx max-bandwidth <port_id> <vf_id> <bandwidth>", 12392 .tokens = { 12393 (void *)&cmd_vf_tc_bw_set, 12394 (void *)&cmd_vf_tc_bw_vf, 12395 (void *)&cmd_vf_tc_bw_tx, 12396 (void *)&cmd_vf_tc_bw_max_bw, 12397 (void *)&cmd_vf_tc_bw_port_id, 12398 (void *)&cmd_vf_tc_bw_vf_id, 12399 (void *)&cmd_vf_tc_bw_bw, 12400 NULL, 12401 }, 12402 }; 12403 12404 static int 12405 vf_tc_min_bw_parse_bw_list(uint8_t *bw_list, 12406 uint8_t *tc_num, 12407 char *str) 12408 { 12409 uint32_t size; 12410 const char *p, *p0 = str; 12411 char s[256]; 12412 char *end; 12413 char *str_fld[16]; 12414 uint16_t i; 12415 int ret; 12416 12417 p = strchr(p0, '('); 12418 if (p == NULL) { 12419 printf("The bandwidth-list should be '(bw1, bw2, ...)'\n"); 12420 return -1; 12421 } 12422 p++; 12423 p0 = strchr(p, ')'); 12424 if (p0 == NULL) { 12425 printf("The bandwidth-list should be '(bw1, bw2, ...)'\n"); 12426 return -1; 12427 } 12428 size = p0 - p; 12429 if (size >= sizeof(s)) { 12430 printf("The string size exceeds the internal buffer size\n"); 12431 return -1; 12432 } 12433 snprintf(s, sizeof(s), "%.*s", size, p); 12434 ret = rte_strsplit(s, sizeof(s), str_fld, 16, ','); 12435 if (ret <= 0) { 12436 printf("Failed to get the bandwidth list. "); 12437 return -1; 12438 } 12439 *tc_num = ret; 12440 for (i = 0; i < ret; i++) 12441 bw_list[i] = (uint8_t)strtoul(str_fld[i], &end, 0); 12442 12443 return 0; 12444 } 12445 12446 /* TC min bandwidth setting */ 12447 static void 12448 cmd_vf_tc_min_bw_parsed( 12449 void *parsed_result, 12450 __rte_unused struct cmdline *cl, 12451 __rte_unused void *data) 12452 { 12453 struct cmd_vf_tc_bw_result *res = parsed_result; 12454 uint8_t tc_num; 12455 uint8_t bw[16]; 12456 int ret = -ENOTSUP; 12457 12458 if (port_id_is_invalid(res->port_id, ENABLED_WARN)) 12459 return; 12460 12461 ret = vf_tc_min_bw_parse_bw_list(bw, &tc_num, res->bw_list); 12462 if (ret) 12463 return; 12464 12465 #ifdef RTE_NET_I40E 12466 ret = rte_pmd_i40e_set_vf_tc_bw_alloc(res->port_id, res->vf_id, 12467 tc_num, bw); 12468 #endif 12469 12470 switch (ret) { 12471 case 0: 12472 break; 12473 case -EINVAL: 12474 printf("invalid vf_id %d or bandwidth\n", res->vf_id); 12475 break; 12476 case -ENODEV: 12477 printf("invalid port_id %d\n", res->port_id); 12478 break; 12479 case -ENOTSUP: 12480 printf("function not implemented\n"); 12481 break; 12482 default: 12483 printf("programming error: (%s)\n", strerror(-ret)); 12484 } 12485 } 12486 12487 cmdline_parse_inst_t cmd_vf_tc_min_bw = { 12488 .f = cmd_vf_tc_min_bw_parsed, 12489 .data = NULL, 12490 .help_str = "set vf tc tx min-bandwidth <port_id> <vf_id>" 12491 " <bw1, bw2, ...>", 12492 .tokens = { 12493 (void *)&cmd_vf_tc_bw_set, 12494 (void *)&cmd_vf_tc_bw_vf, 12495 (void *)&cmd_vf_tc_bw_tc, 12496 (void *)&cmd_vf_tc_bw_tx, 12497 (void *)&cmd_vf_tc_bw_min_bw, 12498 (void *)&cmd_vf_tc_bw_port_id, 12499 (void *)&cmd_vf_tc_bw_vf_id, 12500 (void *)&cmd_vf_tc_bw_bw_list, 12501 NULL, 12502 }, 12503 }; 12504 12505 static void 12506 cmd_tc_min_bw_parsed( 12507 void *parsed_result, 12508 __rte_unused struct cmdline *cl, 12509 __rte_unused void *data) 12510 { 12511 struct cmd_vf_tc_bw_result *res = parsed_result; 12512 struct rte_port *port; 12513 uint8_t tc_num; 12514 uint8_t bw[16]; 12515 int ret = -ENOTSUP; 12516 12517 if (port_id_is_invalid(res->port_id, ENABLED_WARN)) 12518 return; 12519 12520 port = &ports[res->port_id]; 12521 /** Check if the port is not started **/ 12522 if (port->port_status != RTE_PORT_STOPPED) { 12523 printf("Please stop port %d first\n", res->port_id); 12524 return; 12525 } 12526 12527 ret = vf_tc_min_bw_parse_bw_list(bw, &tc_num, res->bw_list); 12528 if (ret) 12529 return; 12530 12531 #ifdef RTE_NET_IXGBE 12532 ret = rte_pmd_ixgbe_set_tc_bw_alloc(res->port_id, tc_num, bw); 12533 #endif 12534 12535 switch (ret) { 12536 case 0: 12537 break; 12538 case -EINVAL: 12539 printf("invalid bandwidth\n"); 12540 break; 12541 case -ENODEV: 12542 printf("invalid port_id %d\n", res->port_id); 12543 break; 12544 case -ENOTSUP: 12545 printf("function not implemented\n"); 12546 break; 12547 default: 12548 printf("programming error: (%s)\n", strerror(-ret)); 12549 } 12550 } 12551 12552 cmdline_parse_inst_t cmd_tc_min_bw = { 12553 .f = cmd_tc_min_bw_parsed, 12554 .data = NULL, 12555 .help_str = "set tc tx min-bandwidth <port_id> <bw1, bw2, ...>", 12556 .tokens = { 12557 (void *)&cmd_vf_tc_bw_set, 12558 (void *)&cmd_vf_tc_bw_tc, 12559 (void *)&cmd_vf_tc_bw_tx, 12560 (void *)&cmd_vf_tc_bw_min_bw, 12561 (void *)&cmd_vf_tc_bw_port_id, 12562 (void *)&cmd_vf_tc_bw_bw_list, 12563 NULL, 12564 }, 12565 }; 12566 12567 /* TC max bandwidth setting */ 12568 static void 12569 cmd_vf_tc_max_bw_parsed( 12570 void *parsed_result, 12571 __rte_unused struct cmdline *cl, 12572 __rte_unused void *data) 12573 { 12574 struct cmd_vf_tc_bw_result *res = parsed_result; 12575 int ret = -ENOTSUP; 12576 12577 if (port_id_is_invalid(res->port_id, ENABLED_WARN)) 12578 return; 12579 12580 #ifdef RTE_NET_I40E 12581 ret = rte_pmd_i40e_set_vf_tc_max_bw(res->port_id, res->vf_id, 12582 res->tc_no, res->bw); 12583 #endif 12584 12585 switch (ret) { 12586 case 0: 12587 break; 12588 case -EINVAL: 12589 printf("invalid vf_id %d, tc_no %d or bandwidth %d\n", 12590 res->vf_id, res->tc_no, res->bw); 12591 break; 12592 case -ENODEV: 12593 printf("invalid port_id %d\n", res->port_id); 12594 break; 12595 case -ENOTSUP: 12596 printf("function not implemented\n"); 12597 break; 12598 default: 12599 printf("programming error: (%s)\n", strerror(-ret)); 12600 } 12601 } 12602 12603 cmdline_parse_inst_t cmd_vf_tc_max_bw = { 12604 .f = cmd_vf_tc_max_bw_parsed, 12605 .data = NULL, 12606 .help_str = "set vf tc tx max-bandwidth <port_id> <vf_id> <tc_no>" 12607 " <bandwidth>", 12608 .tokens = { 12609 (void *)&cmd_vf_tc_bw_set, 12610 (void *)&cmd_vf_tc_bw_vf, 12611 (void *)&cmd_vf_tc_bw_tc, 12612 (void *)&cmd_vf_tc_bw_tx, 12613 (void *)&cmd_vf_tc_bw_max_bw, 12614 (void *)&cmd_vf_tc_bw_port_id, 12615 (void *)&cmd_vf_tc_bw_vf_id, 12616 (void *)&cmd_vf_tc_bw_tc_no, 12617 (void *)&cmd_vf_tc_bw_bw, 12618 NULL, 12619 }, 12620 }; 12621 12622 /** Set VXLAN encapsulation details */ 12623 struct cmd_set_vxlan_result { 12624 cmdline_fixed_string_t set; 12625 cmdline_fixed_string_t vxlan; 12626 cmdline_fixed_string_t pos_token; 12627 cmdline_fixed_string_t ip_version; 12628 uint32_t vlan_present:1; 12629 uint32_t vni; 12630 uint16_t udp_src; 12631 uint16_t udp_dst; 12632 cmdline_ipaddr_t ip_src; 12633 cmdline_ipaddr_t ip_dst; 12634 uint16_t tci; 12635 uint8_t tos; 12636 uint8_t ttl; 12637 struct rte_ether_addr eth_src; 12638 struct rte_ether_addr eth_dst; 12639 }; 12640 12641 cmdline_parse_token_string_t cmd_set_vxlan_set = 12642 TOKEN_STRING_INITIALIZER(struct cmd_set_vxlan_result, set, "set"); 12643 cmdline_parse_token_string_t cmd_set_vxlan_vxlan = 12644 TOKEN_STRING_INITIALIZER(struct cmd_set_vxlan_result, vxlan, "vxlan"); 12645 cmdline_parse_token_string_t cmd_set_vxlan_vxlan_tos_ttl = 12646 TOKEN_STRING_INITIALIZER(struct cmd_set_vxlan_result, vxlan, 12647 "vxlan-tos-ttl"); 12648 cmdline_parse_token_string_t cmd_set_vxlan_vxlan_with_vlan = 12649 TOKEN_STRING_INITIALIZER(struct cmd_set_vxlan_result, vxlan, 12650 "vxlan-with-vlan"); 12651 cmdline_parse_token_string_t cmd_set_vxlan_ip_version = 12652 TOKEN_STRING_INITIALIZER(struct cmd_set_vxlan_result, pos_token, 12653 "ip-version"); 12654 cmdline_parse_token_string_t cmd_set_vxlan_ip_version_value = 12655 TOKEN_STRING_INITIALIZER(struct cmd_set_vxlan_result, ip_version, 12656 "ipv4#ipv6"); 12657 cmdline_parse_token_string_t cmd_set_vxlan_vni = 12658 TOKEN_STRING_INITIALIZER(struct cmd_set_vxlan_result, pos_token, 12659 "vni"); 12660 cmdline_parse_token_num_t cmd_set_vxlan_vni_value = 12661 TOKEN_NUM_INITIALIZER(struct cmd_set_vxlan_result, vni, RTE_UINT32); 12662 cmdline_parse_token_string_t cmd_set_vxlan_udp_src = 12663 TOKEN_STRING_INITIALIZER(struct cmd_set_vxlan_result, pos_token, 12664 "udp-src"); 12665 cmdline_parse_token_num_t cmd_set_vxlan_udp_src_value = 12666 TOKEN_NUM_INITIALIZER(struct cmd_set_vxlan_result, udp_src, RTE_UINT16); 12667 cmdline_parse_token_string_t cmd_set_vxlan_udp_dst = 12668 TOKEN_STRING_INITIALIZER(struct cmd_set_vxlan_result, pos_token, 12669 "udp-dst"); 12670 cmdline_parse_token_num_t cmd_set_vxlan_udp_dst_value = 12671 TOKEN_NUM_INITIALIZER(struct cmd_set_vxlan_result, udp_dst, RTE_UINT16); 12672 cmdline_parse_token_string_t cmd_set_vxlan_ip_tos = 12673 TOKEN_STRING_INITIALIZER(struct cmd_set_vxlan_result, pos_token, 12674 "ip-tos"); 12675 cmdline_parse_token_num_t cmd_set_vxlan_ip_tos_value = 12676 TOKEN_NUM_INITIALIZER(struct cmd_set_vxlan_result, tos, RTE_UINT8); 12677 cmdline_parse_token_string_t cmd_set_vxlan_ip_ttl = 12678 TOKEN_STRING_INITIALIZER(struct cmd_set_vxlan_result, pos_token, 12679 "ip-ttl"); 12680 cmdline_parse_token_num_t cmd_set_vxlan_ip_ttl_value = 12681 TOKEN_NUM_INITIALIZER(struct cmd_set_vxlan_result, ttl, RTE_UINT8); 12682 cmdline_parse_token_string_t cmd_set_vxlan_ip_src = 12683 TOKEN_STRING_INITIALIZER(struct cmd_set_vxlan_result, pos_token, 12684 "ip-src"); 12685 cmdline_parse_token_ipaddr_t cmd_set_vxlan_ip_src_value = 12686 TOKEN_IPADDR_INITIALIZER(struct cmd_set_vxlan_result, ip_src); 12687 cmdline_parse_token_string_t cmd_set_vxlan_ip_dst = 12688 TOKEN_STRING_INITIALIZER(struct cmd_set_vxlan_result, pos_token, 12689 "ip-dst"); 12690 cmdline_parse_token_ipaddr_t cmd_set_vxlan_ip_dst_value = 12691 TOKEN_IPADDR_INITIALIZER(struct cmd_set_vxlan_result, ip_dst); 12692 cmdline_parse_token_string_t cmd_set_vxlan_vlan = 12693 TOKEN_STRING_INITIALIZER(struct cmd_set_vxlan_result, pos_token, 12694 "vlan-tci"); 12695 cmdline_parse_token_num_t cmd_set_vxlan_vlan_value = 12696 TOKEN_NUM_INITIALIZER(struct cmd_set_vxlan_result, tci, RTE_UINT16); 12697 cmdline_parse_token_string_t cmd_set_vxlan_eth_src = 12698 TOKEN_STRING_INITIALIZER(struct cmd_set_vxlan_result, pos_token, 12699 "eth-src"); 12700 cmdline_parse_token_etheraddr_t cmd_set_vxlan_eth_src_value = 12701 TOKEN_ETHERADDR_INITIALIZER(struct cmd_set_vxlan_result, eth_src); 12702 cmdline_parse_token_string_t cmd_set_vxlan_eth_dst = 12703 TOKEN_STRING_INITIALIZER(struct cmd_set_vxlan_result, pos_token, 12704 "eth-dst"); 12705 cmdline_parse_token_etheraddr_t cmd_set_vxlan_eth_dst_value = 12706 TOKEN_ETHERADDR_INITIALIZER(struct cmd_set_vxlan_result, eth_dst); 12707 12708 static void cmd_set_vxlan_parsed(void *parsed_result, 12709 __rte_unused struct cmdline *cl, 12710 __rte_unused void *data) 12711 { 12712 struct cmd_set_vxlan_result *res = parsed_result; 12713 union { 12714 uint32_t vxlan_id; 12715 uint8_t vni[4]; 12716 } id = { 12717 .vxlan_id = rte_cpu_to_be_32(res->vni) & RTE_BE32(0x00ffffff), 12718 }; 12719 12720 vxlan_encap_conf.select_tos_ttl = 0; 12721 if (strcmp(res->vxlan, "vxlan") == 0) 12722 vxlan_encap_conf.select_vlan = 0; 12723 else if (strcmp(res->vxlan, "vxlan-with-vlan") == 0) 12724 vxlan_encap_conf.select_vlan = 1; 12725 else if (strcmp(res->vxlan, "vxlan-tos-ttl") == 0) { 12726 vxlan_encap_conf.select_vlan = 0; 12727 vxlan_encap_conf.select_tos_ttl = 1; 12728 } 12729 if (strcmp(res->ip_version, "ipv4") == 0) 12730 vxlan_encap_conf.select_ipv4 = 1; 12731 else if (strcmp(res->ip_version, "ipv6") == 0) 12732 vxlan_encap_conf.select_ipv4 = 0; 12733 else 12734 return; 12735 rte_memcpy(vxlan_encap_conf.vni, &id.vni[1], 3); 12736 vxlan_encap_conf.udp_src = rte_cpu_to_be_16(res->udp_src); 12737 vxlan_encap_conf.udp_dst = rte_cpu_to_be_16(res->udp_dst); 12738 vxlan_encap_conf.ip_tos = res->tos; 12739 vxlan_encap_conf.ip_ttl = res->ttl; 12740 if (vxlan_encap_conf.select_ipv4) { 12741 IPV4_ADDR_TO_UINT(res->ip_src, vxlan_encap_conf.ipv4_src); 12742 IPV4_ADDR_TO_UINT(res->ip_dst, vxlan_encap_conf.ipv4_dst); 12743 } else { 12744 IPV6_ADDR_TO_ARRAY(res->ip_src, vxlan_encap_conf.ipv6_src); 12745 IPV6_ADDR_TO_ARRAY(res->ip_dst, vxlan_encap_conf.ipv6_dst); 12746 } 12747 if (vxlan_encap_conf.select_vlan) 12748 vxlan_encap_conf.vlan_tci = rte_cpu_to_be_16(res->tci); 12749 rte_memcpy(vxlan_encap_conf.eth_src, res->eth_src.addr_bytes, 12750 RTE_ETHER_ADDR_LEN); 12751 rte_memcpy(vxlan_encap_conf.eth_dst, res->eth_dst.addr_bytes, 12752 RTE_ETHER_ADDR_LEN); 12753 } 12754 12755 cmdline_parse_inst_t cmd_set_vxlan = { 12756 .f = cmd_set_vxlan_parsed, 12757 .data = NULL, 12758 .help_str = "set vxlan ip-version ipv4|ipv6 vni <vni> udp-src" 12759 " <udp-src> udp-dst <udp-dst> ip-src <ip-src> ip-dst <ip-dst>" 12760 " eth-src <eth-src> eth-dst <eth-dst>", 12761 .tokens = { 12762 (void *)&cmd_set_vxlan_set, 12763 (void *)&cmd_set_vxlan_vxlan, 12764 (void *)&cmd_set_vxlan_ip_version, 12765 (void *)&cmd_set_vxlan_ip_version_value, 12766 (void *)&cmd_set_vxlan_vni, 12767 (void *)&cmd_set_vxlan_vni_value, 12768 (void *)&cmd_set_vxlan_udp_src, 12769 (void *)&cmd_set_vxlan_udp_src_value, 12770 (void *)&cmd_set_vxlan_udp_dst, 12771 (void *)&cmd_set_vxlan_udp_dst_value, 12772 (void *)&cmd_set_vxlan_ip_src, 12773 (void *)&cmd_set_vxlan_ip_src_value, 12774 (void *)&cmd_set_vxlan_ip_dst, 12775 (void *)&cmd_set_vxlan_ip_dst_value, 12776 (void *)&cmd_set_vxlan_eth_src, 12777 (void *)&cmd_set_vxlan_eth_src_value, 12778 (void *)&cmd_set_vxlan_eth_dst, 12779 (void *)&cmd_set_vxlan_eth_dst_value, 12780 NULL, 12781 }, 12782 }; 12783 12784 cmdline_parse_inst_t cmd_set_vxlan_tos_ttl = { 12785 .f = cmd_set_vxlan_parsed, 12786 .data = NULL, 12787 .help_str = "set vxlan-tos-ttl ip-version ipv4|ipv6 vni <vni> udp-src" 12788 " <udp-src> udp-dst <udp-dst> ip-tos <ip-tos> ip-ttl <ip-ttl>" 12789 " ip-src <ip-src> ip-dst <ip-dst> eth-src <eth-src>" 12790 " eth-dst <eth-dst>", 12791 .tokens = { 12792 (void *)&cmd_set_vxlan_set, 12793 (void *)&cmd_set_vxlan_vxlan_tos_ttl, 12794 (void *)&cmd_set_vxlan_ip_version, 12795 (void *)&cmd_set_vxlan_ip_version_value, 12796 (void *)&cmd_set_vxlan_vni, 12797 (void *)&cmd_set_vxlan_vni_value, 12798 (void *)&cmd_set_vxlan_udp_src, 12799 (void *)&cmd_set_vxlan_udp_src_value, 12800 (void *)&cmd_set_vxlan_udp_dst, 12801 (void *)&cmd_set_vxlan_udp_dst_value, 12802 (void *)&cmd_set_vxlan_ip_tos, 12803 (void *)&cmd_set_vxlan_ip_tos_value, 12804 (void *)&cmd_set_vxlan_ip_ttl, 12805 (void *)&cmd_set_vxlan_ip_ttl_value, 12806 (void *)&cmd_set_vxlan_ip_src, 12807 (void *)&cmd_set_vxlan_ip_src_value, 12808 (void *)&cmd_set_vxlan_ip_dst, 12809 (void *)&cmd_set_vxlan_ip_dst_value, 12810 (void *)&cmd_set_vxlan_eth_src, 12811 (void *)&cmd_set_vxlan_eth_src_value, 12812 (void *)&cmd_set_vxlan_eth_dst, 12813 (void *)&cmd_set_vxlan_eth_dst_value, 12814 NULL, 12815 }, 12816 }; 12817 12818 cmdline_parse_inst_t cmd_set_vxlan_with_vlan = { 12819 .f = cmd_set_vxlan_parsed, 12820 .data = NULL, 12821 .help_str = "set vxlan-with-vlan ip-version ipv4|ipv6 vni <vni>" 12822 " udp-src <udp-src> udp-dst <udp-dst> ip-src <ip-src> ip-dst" 12823 " <ip-dst> vlan-tci <vlan-tci> eth-src <eth-src> eth-dst" 12824 " <eth-dst>", 12825 .tokens = { 12826 (void *)&cmd_set_vxlan_set, 12827 (void *)&cmd_set_vxlan_vxlan_with_vlan, 12828 (void *)&cmd_set_vxlan_ip_version, 12829 (void *)&cmd_set_vxlan_ip_version_value, 12830 (void *)&cmd_set_vxlan_vni, 12831 (void *)&cmd_set_vxlan_vni_value, 12832 (void *)&cmd_set_vxlan_udp_src, 12833 (void *)&cmd_set_vxlan_udp_src_value, 12834 (void *)&cmd_set_vxlan_udp_dst, 12835 (void *)&cmd_set_vxlan_udp_dst_value, 12836 (void *)&cmd_set_vxlan_ip_src, 12837 (void *)&cmd_set_vxlan_ip_src_value, 12838 (void *)&cmd_set_vxlan_ip_dst, 12839 (void *)&cmd_set_vxlan_ip_dst_value, 12840 (void *)&cmd_set_vxlan_vlan, 12841 (void *)&cmd_set_vxlan_vlan_value, 12842 (void *)&cmd_set_vxlan_eth_src, 12843 (void *)&cmd_set_vxlan_eth_src_value, 12844 (void *)&cmd_set_vxlan_eth_dst, 12845 (void *)&cmd_set_vxlan_eth_dst_value, 12846 NULL, 12847 }, 12848 }; 12849 12850 /** Set NVGRE encapsulation details */ 12851 struct cmd_set_nvgre_result { 12852 cmdline_fixed_string_t set; 12853 cmdline_fixed_string_t nvgre; 12854 cmdline_fixed_string_t pos_token; 12855 cmdline_fixed_string_t ip_version; 12856 uint32_t tni; 12857 cmdline_ipaddr_t ip_src; 12858 cmdline_ipaddr_t ip_dst; 12859 uint16_t tci; 12860 struct rte_ether_addr eth_src; 12861 struct rte_ether_addr eth_dst; 12862 }; 12863 12864 cmdline_parse_token_string_t cmd_set_nvgre_set = 12865 TOKEN_STRING_INITIALIZER(struct cmd_set_nvgre_result, set, "set"); 12866 cmdline_parse_token_string_t cmd_set_nvgre_nvgre = 12867 TOKEN_STRING_INITIALIZER(struct cmd_set_nvgre_result, nvgre, "nvgre"); 12868 cmdline_parse_token_string_t cmd_set_nvgre_nvgre_with_vlan = 12869 TOKEN_STRING_INITIALIZER(struct cmd_set_nvgre_result, nvgre, 12870 "nvgre-with-vlan"); 12871 cmdline_parse_token_string_t cmd_set_nvgre_ip_version = 12872 TOKEN_STRING_INITIALIZER(struct cmd_set_nvgre_result, pos_token, 12873 "ip-version"); 12874 cmdline_parse_token_string_t cmd_set_nvgre_ip_version_value = 12875 TOKEN_STRING_INITIALIZER(struct cmd_set_nvgre_result, ip_version, 12876 "ipv4#ipv6"); 12877 cmdline_parse_token_string_t cmd_set_nvgre_tni = 12878 TOKEN_STRING_INITIALIZER(struct cmd_set_nvgre_result, pos_token, 12879 "tni"); 12880 cmdline_parse_token_num_t cmd_set_nvgre_tni_value = 12881 TOKEN_NUM_INITIALIZER(struct cmd_set_nvgre_result, tni, RTE_UINT32); 12882 cmdline_parse_token_string_t cmd_set_nvgre_ip_src = 12883 TOKEN_STRING_INITIALIZER(struct cmd_set_nvgre_result, pos_token, 12884 "ip-src"); 12885 cmdline_parse_token_num_t cmd_set_nvgre_ip_src_value = 12886 TOKEN_IPADDR_INITIALIZER(struct cmd_set_nvgre_result, ip_src); 12887 cmdline_parse_token_string_t cmd_set_nvgre_ip_dst = 12888 TOKEN_STRING_INITIALIZER(struct cmd_set_nvgre_result, pos_token, 12889 "ip-dst"); 12890 cmdline_parse_token_ipaddr_t cmd_set_nvgre_ip_dst_value = 12891 TOKEN_IPADDR_INITIALIZER(struct cmd_set_nvgre_result, ip_dst); 12892 cmdline_parse_token_string_t cmd_set_nvgre_vlan = 12893 TOKEN_STRING_INITIALIZER(struct cmd_set_nvgre_result, pos_token, 12894 "vlan-tci"); 12895 cmdline_parse_token_num_t cmd_set_nvgre_vlan_value = 12896 TOKEN_NUM_INITIALIZER(struct cmd_set_nvgre_result, tci, RTE_UINT16); 12897 cmdline_parse_token_string_t cmd_set_nvgre_eth_src = 12898 TOKEN_STRING_INITIALIZER(struct cmd_set_nvgre_result, pos_token, 12899 "eth-src"); 12900 cmdline_parse_token_etheraddr_t cmd_set_nvgre_eth_src_value = 12901 TOKEN_ETHERADDR_INITIALIZER(struct cmd_set_nvgre_result, eth_src); 12902 cmdline_parse_token_string_t cmd_set_nvgre_eth_dst = 12903 TOKEN_STRING_INITIALIZER(struct cmd_set_nvgre_result, pos_token, 12904 "eth-dst"); 12905 cmdline_parse_token_etheraddr_t cmd_set_nvgre_eth_dst_value = 12906 TOKEN_ETHERADDR_INITIALIZER(struct cmd_set_nvgre_result, eth_dst); 12907 12908 static void cmd_set_nvgre_parsed(void *parsed_result, 12909 __rte_unused struct cmdline *cl, 12910 __rte_unused void *data) 12911 { 12912 struct cmd_set_nvgre_result *res = parsed_result; 12913 union { 12914 uint32_t nvgre_tni; 12915 uint8_t tni[4]; 12916 } id = { 12917 .nvgre_tni = rte_cpu_to_be_32(res->tni) & RTE_BE32(0x00ffffff), 12918 }; 12919 12920 if (strcmp(res->nvgre, "nvgre") == 0) 12921 nvgre_encap_conf.select_vlan = 0; 12922 else if (strcmp(res->nvgre, "nvgre-with-vlan") == 0) 12923 nvgre_encap_conf.select_vlan = 1; 12924 if (strcmp(res->ip_version, "ipv4") == 0) 12925 nvgre_encap_conf.select_ipv4 = 1; 12926 else if (strcmp(res->ip_version, "ipv6") == 0) 12927 nvgre_encap_conf.select_ipv4 = 0; 12928 else 12929 return; 12930 rte_memcpy(nvgre_encap_conf.tni, &id.tni[1], 3); 12931 if (nvgre_encap_conf.select_ipv4) { 12932 IPV4_ADDR_TO_UINT(res->ip_src, nvgre_encap_conf.ipv4_src); 12933 IPV4_ADDR_TO_UINT(res->ip_dst, nvgre_encap_conf.ipv4_dst); 12934 } else { 12935 IPV6_ADDR_TO_ARRAY(res->ip_src, nvgre_encap_conf.ipv6_src); 12936 IPV6_ADDR_TO_ARRAY(res->ip_dst, nvgre_encap_conf.ipv6_dst); 12937 } 12938 if (nvgre_encap_conf.select_vlan) 12939 nvgre_encap_conf.vlan_tci = rte_cpu_to_be_16(res->tci); 12940 rte_memcpy(nvgre_encap_conf.eth_src, res->eth_src.addr_bytes, 12941 RTE_ETHER_ADDR_LEN); 12942 rte_memcpy(nvgre_encap_conf.eth_dst, res->eth_dst.addr_bytes, 12943 RTE_ETHER_ADDR_LEN); 12944 } 12945 12946 cmdline_parse_inst_t cmd_set_nvgre = { 12947 .f = cmd_set_nvgre_parsed, 12948 .data = NULL, 12949 .help_str = "set nvgre ip-version <ipv4|ipv6> tni <tni> ip-src" 12950 " <ip-src> ip-dst <ip-dst> eth-src <eth-src>" 12951 " eth-dst <eth-dst>", 12952 .tokens = { 12953 (void *)&cmd_set_nvgre_set, 12954 (void *)&cmd_set_nvgre_nvgre, 12955 (void *)&cmd_set_nvgre_ip_version, 12956 (void *)&cmd_set_nvgre_ip_version_value, 12957 (void *)&cmd_set_nvgre_tni, 12958 (void *)&cmd_set_nvgre_tni_value, 12959 (void *)&cmd_set_nvgre_ip_src, 12960 (void *)&cmd_set_nvgre_ip_src_value, 12961 (void *)&cmd_set_nvgre_ip_dst, 12962 (void *)&cmd_set_nvgre_ip_dst_value, 12963 (void *)&cmd_set_nvgre_eth_src, 12964 (void *)&cmd_set_nvgre_eth_src_value, 12965 (void *)&cmd_set_nvgre_eth_dst, 12966 (void *)&cmd_set_nvgre_eth_dst_value, 12967 NULL, 12968 }, 12969 }; 12970 12971 cmdline_parse_inst_t cmd_set_nvgre_with_vlan = { 12972 .f = cmd_set_nvgre_parsed, 12973 .data = NULL, 12974 .help_str = "set nvgre-with-vlan ip-version <ipv4|ipv6> tni <tni>" 12975 " ip-src <ip-src> ip-dst <ip-dst> vlan-tci <vlan-tci>" 12976 " eth-src <eth-src> eth-dst <eth-dst>", 12977 .tokens = { 12978 (void *)&cmd_set_nvgre_set, 12979 (void *)&cmd_set_nvgre_nvgre_with_vlan, 12980 (void *)&cmd_set_nvgre_ip_version, 12981 (void *)&cmd_set_nvgre_ip_version_value, 12982 (void *)&cmd_set_nvgre_tni, 12983 (void *)&cmd_set_nvgre_tni_value, 12984 (void *)&cmd_set_nvgre_ip_src, 12985 (void *)&cmd_set_nvgre_ip_src_value, 12986 (void *)&cmd_set_nvgre_ip_dst, 12987 (void *)&cmd_set_nvgre_ip_dst_value, 12988 (void *)&cmd_set_nvgre_vlan, 12989 (void *)&cmd_set_nvgre_vlan_value, 12990 (void *)&cmd_set_nvgre_eth_src, 12991 (void *)&cmd_set_nvgre_eth_src_value, 12992 (void *)&cmd_set_nvgre_eth_dst, 12993 (void *)&cmd_set_nvgre_eth_dst_value, 12994 NULL, 12995 }, 12996 }; 12997 12998 /** Set L2 encapsulation details */ 12999 struct cmd_set_l2_encap_result { 13000 cmdline_fixed_string_t set; 13001 cmdline_fixed_string_t l2_encap; 13002 cmdline_fixed_string_t pos_token; 13003 cmdline_fixed_string_t ip_version; 13004 uint32_t vlan_present:1; 13005 uint16_t tci; 13006 struct rte_ether_addr eth_src; 13007 struct rte_ether_addr eth_dst; 13008 }; 13009 13010 cmdline_parse_token_string_t cmd_set_l2_encap_set = 13011 TOKEN_STRING_INITIALIZER(struct cmd_set_l2_encap_result, set, "set"); 13012 cmdline_parse_token_string_t cmd_set_l2_encap_l2_encap = 13013 TOKEN_STRING_INITIALIZER(struct cmd_set_l2_encap_result, l2_encap, "l2_encap"); 13014 cmdline_parse_token_string_t cmd_set_l2_encap_l2_encap_with_vlan = 13015 TOKEN_STRING_INITIALIZER(struct cmd_set_l2_encap_result, l2_encap, 13016 "l2_encap-with-vlan"); 13017 cmdline_parse_token_string_t cmd_set_l2_encap_ip_version = 13018 TOKEN_STRING_INITIALIZER(struct cmd_set_l2_encap_result, pos_token, 13019 "ip-version"); 13020 cmdline_parse_token_string_t cmd_set_l2_encap_ip_version_value = 13021 TOKEN_STRING_INITIALIZER(struct cmd_set_l2_encap_result, ip_version, 13022 "ipv4#ipv6"); 13023 cmdline_parse_token_string_t cmd_set_l2_encap_vlan = 13024 TOKEN_STRING_INITIALIZER(struct cmd_set_l2_encap_result, pos_token, 13025 "vlan-tci"); 13026 cmdline_parse_token_num_t cmd_set_l2_encap_vlan_value = 13027 TOKEN_NUM_INITIALIZER(struct cmd_set_l2_encap_result, tci, RTE_UINT16); 13028 cmdline_parse_token_string_t cmd_set_l2_encap_eth_src = 13029 TOKEN_STRING_INITIALIZER(struct cmd_set_l2_encap_result, pos_token, 13030 "eth-src"); 13031 cmdline_parse_token_etheraddr_t cmd_set_l2_encap_eth_src_value = 13032 TOKEN_ETHERADDR_INITIALIZER(struct cmd_set_l2_encap_result, eth_src); 13033 cmdline_parse_token_string_t cmd_set_l2_encap_eth_dst = 13034 TOKEN_STRING_INITIALIZER(struct cmd_set_l2_encap_result, pos_token, 13035 "eth-dst"); 13036 cmdline_parse_token_etheraddr_t cmd_set_l2_encap_eth_dst_value = 13037 TOKEN_ETHERADDR_INITIALIZER(struct cmd_set_l2_encap_result, eth_dst); 13038 13039 static void cmd_set_l2_encap_parsed(void *parsed_result, 13040 __rte_unused struct cmdline *cl, 13041 __rte_unused void *data) 13042 { 13043 struct cmd_set_l2_encap_result *res = parsed_result; 13044 13045 if (strcmp(res->l2_encap, "l2_encap") == 0) 13046 l2_encap_conf.select_vlan = 0; 13047 else if (strcmp(res->l2_encap, "l2_encap-with-vlan") == 0) 13048 l2_encap_conf.select_vlan = 1; 13049 if (strcmp(res->ip_version, "ipv4") == 0) 13050 l2_encap_conf.select_ipv4 = 1; 13051 else if (strcmp(res->ip_version, "ipv6") == 0) 13052 l2_encap_conf.select_ipv4 = 0; 13053 else 13054 return; 13055 if (l2_encap_conf.select_vlan) 13056 l2_encap_conf.vlan_tci = rte_cpu_to_be_16(res->tci); 13057 rte_memcpy(l2_encap_conf.eth_src, res->eth_src.addr_bytes, 13058 RTE_ETHER_ADDR_LEN); 13059 rte_memcpy(l2_encap_conf.eth_dst, res->eth_dst.addr_bytes, 13060 RTE_ETHER_ADDR_LEN); 13061 } 13062 13063 cmdline_parse_inst_t cmd_set_l2_encap = { 13064 .f = cmd_set_l2_encap_parsed, 13065 .data = NULL, 13066 .help_str = "set l2_encap ip-version ipv4|ipv6" 13067 " eth-src <eth-src> eth-dst <eth-dst>", 13068 .tokens = { 13069 (void *)&cmd_set_l2_encap_set, 13070 (void *)&cmd_set_l2_encap_l2_encap, 13071 (void *)&cmd_set_l2_encap_ip_version, 13072 (void *)&cmd_set_l2_encap_ip_version_value, 13073 (void *)&cmd_set_l2_encap_eth_src, 13074 (void *)&cmd_set_l2_encap_eth_src_value, 13075 (void *)&cmd_set_l2_encap_eth_dst, 13076 (void *)&cmd_set_l2_encap_eth_dst_value, 13077 NULL, 13078 }, 13079 }; 13080 13081 cmdline_parse_inst_t cmd_set_l2_encap_with_vlan = { 13082 .f = cmd_set_l2_encap_parsed, 13083 .data = NULL, 13084 .help_str = "set l2_encap-with-vlan ip-version ipv4|ipv6" 13085 " vlan-tci <vlan-tci> eth-src <eth-src> eth-dst <eth-dst>", 13086 .tokens = { 13087 (void *)&cmd_set_l2_encap_set, 13088 (void *)&cmd_set_l2_encap_l2_encap_with_vlan, 13089 (void *)&cmd_set_l2_encap_ip_version, 13090 (void *)&cmd_set_l2_encap_ip_version_value, 13091 (void *)&cmd_set_l2_encap_vlan, 13092 (void *)&cmd_set_l2_encap_vlan_value, 13093 (void *)&cmd_set_l2_encap_eth_src, 13094 (void *)&cmd_set_l2_encap_eth_src_value, 13095 (void *)&cmd_set_l2_encap_eth_dst, 13096 (void *)&cmd_set_l2_encap_eth_dst_value, 13097 NULL, 13098 }, 13099 }; 13100 13101 /** Set L2 decapsulation details */ 13102 struct cmd_set_l2_decap_result { 13103 cmdline_fixed_string_t set; 13104 cmdline_fixed_string_t l2_decap; 13105 cmdline_fixed_string_t pos_token; 13106 uint32_t vlan_present:1; 13107 }; 13108 13109 cmdline_parse_token_string_t cmd_set_l2_decap_set = 13110 TOKEN_STRING_INITIALIZER(struct cmd_set_l2_decap_result, set, "set"); 13111 cmdline_parse_token_string_t cmd_set_l2_decap_l2_decap = 13112 TOKEN_STRING_INITIALIZER(struct cmd_set_l2_decap_result, l2_decap, 13113 "l2_decap"); 13114 cmdline_parse_token_string_t cmd_set_l2_decap_l2_decap_with_vlan = 13115 TOKEN_STRING_INITIALIZER(struct cmd_set_l2_decap_result, l2_decap, 13116 "l2_decap-with-vlan"); 13117 13118 static void cmd_set_l2_decap_parsed(void *parsed_result, 13119 __rte_unused struct cmdline *cl, 13120 __rte_unused void *data) 13121 { 13122 struct cmd_set_l2_decap_result *res = parsed_result; 13123 13124 if (strcmp(res->l2_decap, "l2_decap") == 0) 13125 l2_decap_conf.select_vlan = 0; 13126 else if (strcmp(res->l2_decap, "l2_decap-with-vlan") == 0) 13127 l2_decap_conf.select_vlan = 1; 13128 } 13129 13130 cmdline_parse_inst_t cmd_set_l2_decap = { 13131 .f = cmd_set_l2_decap_parsed, 13132 .data = NULL, 13133 .help_str = "set l2_decap", 13134 .tokens = { 13135 (void *)&cmd_set_l2_decap_set, 13136 (void *)&cmd_set_l2_decap_l2_decap, 13137 NULL, 13138 }, 13139 }; 13140 13141 cmdline_parse_inst_t cmd_set_l2_decap_with_vlan = { 13142 .f = cmd_set_l2_decap_parsed, 13143 .data = NULL, 13144 .help_str = "set l2_decap-with-vlan", 13145 .tokens = { 13146 (void *)&cmd_set_l2_decap_set, 13147 (void *)&cmd_set_l2_decap_l2_decap_with_vlan, 13148 NULL, 13149 }, 13150 }; 13151 13152 /** Set MPLSoGRE encapsulation details */ 13153 struct cmd_set_mplsogre_encap_result { 13154 cmdline_fixed_string_t set; 13155 cmdline_fixed_string_t mplsogre; 13156 cmdline_fixed_string_t pos_token; 13157 cmdline_fixed_string_t ip_version; 13158 uint32_t vlan_present:1; 13159 uint32_t label; 13160 cmdline_ipaddr_t ip_src; 13161 cmdline_ipaddr_t ip_dst; 13162 uint16_t tci; 13163 struct rte_ether_addr eth_src; 13164 struct rte_ether_addr eth_dst; 13165 }; 13166 13167 cmdline_parse_token_string_t cmd_set_mplsogre_encap_set = 13168 TOKEN_STRING_INITIALIZER(struct cmd_set_mplsogre_encap_result, set, 13169 "set"); 13170 cmdline_parse_token_string_t cmd_set_mplsogre_encap_mplsogre_encap = 13171 TOKEN_STRING_INITIALIZER(struct cmd_set_mplsogre_encap_result, mplsogre, 13172 "mplsogre_encap"); 13173 cmdline_parse_token_string_t cmd_set_mplsogre_encap_mplsogre_encap_with_vlan = 13174 TOKEN_STRING_INITIALIZER(struct cmd_set_mplsogre_encap_result, 13175 mplsogre, "mplsogre_encap-with-vlan"); 13176 cmdline_parse_token_string_t cmd_set_mplsogre_encap_ip_version = 13177 TOKEN_STRING_INITIALIZER(struct cmd_set_mplsogre_encap_result, 13178 pos_token, "ip-version"); 13179 cmdline_parse_token_string_t cmd_set_mplsogre_encap_ip_version_value = 13180 TOKEN_STRING_INITIALIZER(struct cmd_set_mplsogre_encap_result, 13181 ip_version, "ipv4#ipv6"); 13182 cmdline_parse_token_string_t cmd_set_mplsogre_encap_label = 13183 TOKEN_STRING_INITIALIZER(struct cmd_set_mplsogre_encap_result, 13184 pos_token, "label"); 13185 cmdline_parse_token_num_t cmd_set_mplsogre_encap_label_value = 13186 TOKEN_NUM_INITIALIZER(struct cmd_set_mplsogre_encap_result, label, 13187 RTE_UINT32); 13188 cmdline_parse_token_string_t cmd_set_mplsogre_encap_ip_src = 13189 TOKEN_STRING_INITIALIZER(struct cmd_set_mplsogre_encap_result, 13190 pos_token, "ip-src"); 13191 cmdline_parse_token_ipaddr_t cmd_set_mplsogre_encap_ip_src_value = 13192 TOKEN_IPADDR_INITIALIZER(struct cmd_set_mplsogre_encap_result, ip_src); 13193 cmdline_parse_token_string_t cmd_set_mplsogre_encap_ip_dst = 13194 TOKEN_STRING_INITIALIZER(struct cmd_set_mplsogre_encap_result, 13195 pos_token, "ip-dst"); 13196 cmdline_parse_token_ipaddr_t cmd_set_mplsogre_encap_ip_dst_value = 13197 TOKEN_IPADDR_INITIALIZER(struct cmd_set_mplsogre_encap_result, ip_dst); 13198 cmdline_parse_token_string_t cmd_set_mplsogre_encap_vlan = 13199 TOKEN_STRING_INITIALIZER(struct cmd_set_mplsogre_encap_result, 13200 pos_token, "vlan-tci"); 13201 cmdline_parse_token_num_t cmd_set_mplsogre_encap_vlan_value = 13202 TOKEN_NUM_INITIALIZER(struct cmd_set_mplsogre_encap_result, tci, 13203 RTE_UINT16); 13204 cmdline_parse_token_string_t cmd_set_mplsogre_encap_eth_src = 13205 TOKEN_STRING_INITIALIZER(struct cmd_set_mplsogre_encap_result, 13206 pos_token, "eth-src"); 13207 cmdline_parse_token_etheraddr_t cmd_set_mplsogre_encap_eth_src_value = 13208 TOKEN_ETHERADDR_INITIALIZER(struct cmd_set_mplsogre_encap_result, 13209 eth_src); 13210 cmdline_parse_token_string_t cmd_set_mplsogre_encap_eth_dst = 13211 TOKEN_STRING_INITIALIZER(struct cmd_set_mplsogre_encap_result, 13212 pos_token, "eth-dst"); 13213 cmdline_parse_token_etheraddr_t cmd_set_mplsogre_encap_eth_dst_value = 13214 TOKEN_ETHERADDR_INITIALIZER(struct cmd_set_mplsogre_encap_result, 13215 eth_dst); 13216 13217 static void cmd_set_mplsogre_encap_parsed(void *parsed_result, 13218 __rte_unused struct cmdline *cl, 13219 __rte_unused void *data) 13220 { 13221 struct cmd_set_mplsogre_encap_result *res = parsed_result; 13222 union { 13223 uint32_t mplsogre_label; 13224 uint8_t label[4]; 13225 } id = { 13226 .mplsogre_label = rte_cpu_to_be_32(res->label<<12), 13227 }; 13228 13229 if (strcmp(res->mplsogre, "mplsogre_encap") == 0) 13230 mplsogre_encap_conf.select_vlan = 0; 13231 else if (strcmp(res->mplsogre, "mplsogre_encap-with-vlan") == 0) 13232 mplsogre_encap_conf.select_vlan = 1; 13233 if (strcmp(res->ip_version, "ipv4") == 0) 13234 mplsogre_encap_conf.select_ipv4 = 1; 13235 else if (strcmp(res->ip_version, "ipv6") == 0) 13236 mplsogre_encap_conf.select_ipv4 = 0; 13237 else 13238 return; 13239 rte_memcpy(mplsogre_encap_conf.label, &id.label, 3); 13240 if (mplsogre_encap_conf.select_ipv4) { 13241 IPV4_ADDR_TO_UINT(res->ip_src, mplsogre_encap_conf.ipv4_src); 13242 IPV4_ADDR_TO_UINT(res->ip_dst, mplsogre_encap_conf.ipv4_dst); 13243 } else { 13244 IPV6_ADDR_TO_ARRAY(res->ip_src, mplsogre_encap_conf.ipv6_src); 13245 IPV6_ADDR_TO_ARRAY(res->ip_dst, mplsogre_encap_conf.ipv6_dst); 13246 } 13247 if (mplsogre_encap_conf.select_vlan) 13248 mplsogre_encap_conf.vlan_tci = rte_cpu_to_be_16(res->tci); 13249 rte_memcpy(mplsogre_encap_conf.eth_src, res->eth_src.addr_bytes, 13250 RTE_ETHER_ADDR_LEN); 13251 rte_memcpy(mplsogre_encap_conf.eth_dst, res->eth_dst.addr_bytes, 13252 RTE_ETHER_ADDR_LEN); 13253 } 13254 13255 cmdline_parse_inst_t cmd_set_mplsogre_encap = { 13256 .f = cmd_set_mplsogre_encap_parsed, 13257 .data = NULL, 13258 .help_str = "set mplsogre_encap ip-version ipv4|ipv6 label <label>" 13259 " ip-src <ip-src> ip-dst <ip-dst> eth-src <eth-src>" 13260 " eth-dst <eth-dst>", 13261 .tokens = { 13262 (void *)&cmd_set_mplsogre_encap_set, 13263 (void *)&cmd_set_mplsogre_encap_mplsogre_encap, 13264 (void *)&cmd_set_mplsogre_encap_ip_version, 13265 (void *)&cmd_set_mplsogre_encap_ip_version_value, 13266 (void *)&cmd_set_mplsogre_encap_label, 13267 (void *)&cmd_set_mplsogre_encap_label_value, 13268 (void *)&cmd_set_mplsogre_encap_ip_src, 13269 (void *)&cmd_set_mplsogre_encap_ip_src_value, 13270 (void *)&cmd_set_mplsogre_encap_ip_dst, 13271 (void *)&cmd_set_mplsogre_encap_ip_dst_value, 13272 (void *)&cmd_set_mplsogre_encap_eth_src, 13273 (void *)&cmd_set_mplsogre_encap_eth_src_value, 13274 (void *)&cmd_set_mplsogre_encap_eth_dst, 13275 (void *)&cmd_set_mplsogre_encap_eth_dst_value, 13276 NULL, 13277 }, 13278 }; 13279 13280 cmdline_parse_inst_t cmd_set_mplsogre_encap_with_vlan = { 13281 .f = cmd_set_mplsogre_encap_parsed, 13282 .data = NULL, 13283 .help_str = "set mplsogre_encap-with-vlan ip-version ipv4|ipv6" 13284 " label <label> ip-src <ip-src> ip-dst <ip-dst>" 13285 " vlan-tci <vlan-tci> eth-src <eth-src> eth-dst <eth-dst>", 13286 .tokens = { 13287 (void *)&cmd_set_mplsogre_encap_set, 13288 (void *)&cmd_set_mplsogre_encap_mplsogre_encap_with_vlan, 13289 (void *)&cmd_set_mplsogre_encap_ip_version, 13290 (void *)&cmd_set_mplsogre_encap_ip_version_value, 13291 (void *)&cmd_set_mplsogre_encap_label, 13292 (void *)&cmd_set_mplsogre_encap_label_value, 13293 (void *)&cmd_set_mplsogre_encap_ip_src, 13294 (void *)&cmd_set_mplsogre_encap_ip_src_value, 13295 (void *)&cmd_set_mplsogre_encap_ip_dst, 13296 (void *)&cmd_set_mplsogre_encap_ip_dst_value, 13297 (void *)&cmd_set_mplsogre_encap_vlan, 13298 (void *)&cmd_set_mplsogre_encap_vlan_value, 13299 (void *)&cmd_set_mplsogre_encap_eth_src, 13300 (void *)&cmd_set_mplsogre_encap_eth_src_value, 13301 (void *)&cmd_set_mplsogre_encap_eth_dst, 13302 (void *)&cmd_set_mplsogre_encap_eth_dst_value, 13303 NULL, 13304 }, 13305 }; 13306 13307 /** Set MPLSoGRE decapsulation details */ 13308 struct cmd_set_mplsogre_decap_result { 13309 cmdline_fixed_string_t set; 13310 cmdline_fixed_string_t mplsogre; 13311 cmdline_fixed_string_t pos_token; 13312 cmdline_fixed_string_t ip_version; 13313 uint32_t vlan_present:1; 13314 }; 13315 13316 cmdline_parse_token_string_t cmd_set_mplsogre_decap_set = 13317 TOKEN_STRING_INITIALIZER(struct cmd_set_mplsogre_decap_result, set, 13318 "set"); 13319 cmdline_parse_token_string_t cmd_set_mplsogre_decap_mplsogre_decap = 13320 TOKEN_STRING_INITIALIZER(struct cmd_set_mplsogre_decap_result, mplsogre, 13321 "mplsogre_decap"); 13322 cmdline_parse_token_string_t cmd_set_mplsogre_decap_mplsogre_decap_with_vlan = 13323 TOKEN_STRING_INITIALIZER(struct cmd_set_mplsogre_decap_result, 13324 mplsogre, "mplsogre_decap-with-vlan"); 13325 cmdline_parse_token_string_t cmd_set_mplsogre_decap_ip_version = 13326 TOKEN_STRING_INITIALIZER(struct cmd_set_mplsogre_decap_result, 13327 pos_token, "ip-version"); 13328 cmdline_parse_token_string_t cmd_set_mplsogre_decap_ip_version_value = 13329 TOKEN_STRING_INITIALIZER(struct cmd_set_mplsogre_decap_result, 13330 ip_version, "ipv4#ipv6"); 13331 13332 static void cmd_set_mplsogre_decap_parsed(void *parsed_result, 13333 __rte_unused struct cmdline *cl, 13334 __rte_unused void *data) 13335 { 13336 struct cmd_set_mplsogre_decap_result *res = parsed_result; 13337 13338 if (strcmp(res->mplsogre, "mplsogre_decap") == 0) 13339 mplsogre_decap_conf.select_vlan = 0; 13340 else if (strcmp(res->mplsogre, "mplsogre_decap-with-vlan") == 0) 13341 mplsogre_decap_conf.select_vlan = 1; 13342 if (strcmp(res->ip_version, "ipv4") == 0) 13343 mplsogre_decap_conf.select_ipv4 = 1; 13344 else if (strcmp(res->ip_version, "ipv6") == 0) 13345 mplsogre_decap_conf.select_ipv4 = 0; 13346 } 13347 13348 cmdline_parse_inst_t cmd_set_mplsogre_decap = { 13349 .f = cmd_set_mplsogre_decap_parsed, 13350 .data = NULL, 13351 .help_str = "set mplsogre_decap ip-version ipv4|ipv6", 13352 .tokens = { 13353 (void *)&cmd_set_mplsogre_decap_set, 13354 (void *)&cmd_set_mplsogre_decap_mplsogre_decap, 13355 (void *)&cmd_set_mplsogre_decap_ip_version, 13356 (void *)&cmd_set_mplsogre_decap_ip_version_value, 13357 NULL, 13358 }, 13359 }; 13360 13361 cmdline_parse_inst_t cmd_set_mplsogre_decap_with_vlan = { 13362 .f = cmd_set_mplsogre_decap_parsed, 13363 .data = NULL, 13364 .help_str = "set mplsogre_decap-with-vlan ip-version ipv4|ipv6", 13365 .tokens = { 13366 (void *)&cmd_set_mplsogre_decap_set, 13367 (void *)&cmd_set_mplsogre_decap_mplsogre_decap_with_vlan, 13368 (void *)&cmd_set_mplsogre_decap_ip_version, 13369 (void *)&cmd_set_mplsogre_decap_ip_version_value, 13370 NULL, 13371 }, 13372 }; 13373 13374 /** Set MPLSoUDP encapsulation details */ 13375 struct cmd_set_mplsoudp_encap_result { 13376 cmdline_fixed_string_t set; 13377 cmdline_fixed_string_t mplsoudp; 13378 cmdline_fixed_string_t pos_token; 13379 cmdline_fixed_string_t ip_version; 13380 uint32_t vlan_present:1; 13381 uint32_t label; 13382 uint16_t udp_src; 13383 uint16_t udp_dst; 13384 cmdline_ipaddr_t ip_src; 13385 cmdline_ipaddr_t ip_dst; 13386 uint16_t tci; 13387 struct rte_ether_addr eth_src; 13388 struct rte_ether_addr eth_dst; 13389 }; 13390 13391 cmdline_parse_token_string_t cmd_set_mplsoudp_encap_set = 13392 TOKEN_STRING_INITIALIZER(struct cmd_set_mplsoudp_encap_result, set, 13393 "set"); 13394 cmdline_parse_token_string_t cmd_set_mplsoudp_encap_mplsoudp_encap = 13395 TOKEN_STRING_INITIALIZER(struct cmd_set_mplsoudp_encap_result, mplsoudp, 13396 "mplsoudp_encap"); 13397 cmdline_parse_token_string_t cmd_set_mplsoudp_encap_mplsoudp_encap_with_vlan = 13398 TOKEN_STRING_INITIALIZER(struct cmd_set_mplsoudp_encap_result, 13399 mplsoudp, "mplsoudp_encap-with-vlan"); 13400 cmdline_parse_token_string_t cmd_set_mplsoudp_encap_ip_version = 13401 TOKEN_STRING_INITIALIZER(struct cmd_set_mplsoudp_encap_result, 13402 pos_token, "ip-version"); 13403 cmdline_parse_token_string_t cmd_set_mplsoudp_encap_ip_version_value = 13404 TOKEN_STRING_INITIALIZER(struct cmd_set_mplsoudp_encap_result, 13405 ip_version, "ipv4#ipv6"); 13406 cmdline_parse_token_string_t cmd_set_mplsoudp_encap_label = 13407 TOKEN_STRING_INITIALIZER(struct cmd_set_mplsoudp_encap_result, 13408 pos_token, "label"); 13409 cmdline_parse_token_num_t cmd_set_mplsoudp_encap_label_value = 13410 TOKEN_NUM_INITIALIZER(struct cmd_set_mplsoudp_encap_result, label, 13411 RTE_UINT32); 13412 cmdline_parse_token_string_t cmd_set_mplsoudp_encap_udp_src = 13413 TOKEN_STRING_INITIALIZER(struct cmd_set_mplsoudp_encap_result, 13414 pos_token, "udp-src"); 13415 cmdline_parse_token_num_t cmd_set_mplsoudp_encap_udp_src_value = 13416 TOKEN_NUM_INITIALIZER(struct cmd_set_mplsoudp_encap_result, udp_src, 13417 RTE_UINT16); 13418 cmdline_parse_token_string_t cmd_set_mplsoudp_encap_udp_dst = 13419 TOKEN_STRING_INITIALIZER(struct cmd_set_mplsoudp_encap_result, 13420 pos_token, "udp-dst"); 13421 cmdline_parse_token_num_t cmd_set_mplsoudp_encap_udp_dst_value = 13422 TOKEN_NUM_INITIALIZER(struct cmd_set_mplsoudp_encap_result, udp_dst, 13423 RTE_UINT16); 13424 cmdline_parse_token_string_t cmd_set_mplsoudp_encap_ip_src = 13425 TOKEN_STRING_INITIALIZER(struct cmd_set_mplsoudp_encap_result, 13426 pos_token, "ip-src"); 13427 cmdline_parse_token_ipaddr_t cmd_set_mplsoudp_encap_ip_src_value = 13428 TOKEN_IPADDR_INITIALIZER(struct cmd_set_mplsoudp_encap_result, ip_src); 13429 cmdline_parse_token_string_t cmd_set_mplsoudp_encap_ip_dst = 13430 TOKEN_STRING_INITIALIZER(struct cmd_set_mplsoudp_encap_result, 13431 pos_token, "ip-dst"); 13432 cmdline_parse_token_ipaddr_t cmd_set_mplsoudp_encap_ip_dst_value = 13433 TOKEN_IPADDR_INITIALIZER(struct cmd_set_mplsoudp_encap_result, ip_dst); 13434 cmdline_parse_token_string_t cmd_set_mplsoudp_encap_vlan = 13435 TOKEN_STRING_INITIALIZER(struct cmd_set_mplsoudp_encap_result, 13436 pos_token, "vlan-tci"); 13437 cmdline_parse_token_num_t cmd_set_mplsoudp_encap_vlan_value = 13438 TOKEN_NUM_INITIALIZER(struct cmd_set_mplsoudp_encap_result, tci, 13439 RTE_UINT16); 13440 cmdline_parse_token_string_t cmd_set_mplsoudp_encap_eth_src = 13441 TOKEN_STRING_INITIALIZER(struct cmd_set_mplsoudp_encap_result, 13442 pos_token, "eth-src"); 13443 cmdline_parse_token_etheraddr_t cmd_set_mplsoudp_encap_eth_src_value = 13444 TOKEN_ETHERADDR_INITIALIZER(struct cmd_set_mplsoudp_encap_result, 13445 eth_src); 13446 cmdline_parse_token_string_t cmd_set_mplsoudp_encap_eth_dst = 13447 TOKEN_STRING_INITIALIZER(struct cmd_set_mplsoudp_encap_result, 13448 pos_token, "eth-dst"); 13449 cmdline_parse_token_etheraddr_t cmd_set_mplsoudp_encap_eth_dst_value = 13450 TOKEN_ETHERADDR_INITIALIZER(struct cmd_set_mplsoudp_encap_result, 13451 eth_dst); 13452 13453 static void cmd_set_mplsoudp_encap_parsed(void *parsed_result, 13454 __rte_unused struct cmdline *cl, 13455 __rte_unused void *data) 13456 { 13457 struct cmd_set_mplsoudp_encap_result *res = parsed_result; 13458 union { 13459 uint32_t mplsoudp_label; 13460 uint8_t label[4]; 13461 } id = { 13462 .mplsoudp_label = rte_cpu_to_be_32(res->label<<12), 13463 }; 13464 13465 if (strcmp(res->mplsoudp, "mplsoudp_encap") == 0) 13466 mplsoudp_encap_conf.select_vlan = 0; 13467 else if (strcmp(res->mplsoudp, "mplsoudp_encap-with-vlan") == 0) 13468 mplsoudp_encap_conf.select_vlan = 1; 13469 if (strcmp(res->ip_version, "ipv4") == 0) 13470 mplsoudp_encap_conf.select_ipv4 = 1; 13471 else if (strcmp(res->ip_version, "ipv6") == 0) 13472 mplsoudp_encap_conf.select_ipv4 = 0; 13473 else 13474 return; 13475 rte_memcpy(mplsoudp_encap_conf.label, &id.label, 3); 13476 mplsoudp_encap_conf.udp_src = rte_cpu_to_be_16(res->udp_src); 13477 mplsoudp_encap_conf.udp_dst = rte_cpu_to_be_16(res->udp_dst); 13478 if (mplsoudp_encap_conf.select_ipv4) { 13479 IPV4_ADDR_TO_UINT(res->ip_src, mplsoudp_encap_conf.ipv4_src); 13480 IPV4_ADDR_TO_UINT(res->ip_dst, mplsoudp_encap_conf.ipv4_dst); 13481 } else { 13482 IPV6_ADDR_TO_ARRAY(res->ip_src, mplsoudp_encap_conf.ipv6_src); 13483 IPV6_ADDR_TO_ARRAY(res->ip_dst, mplsoudp_encap_conf.ipv6_dst); 13484 } 13485 if (mplsoudp_encap_conf.select_vlan) 13486 mplsoudp_encap_conf.vlan_tci = rte_cpu_to_be_16(res->tci); 13487 rte_memcpy(mplsoudp_encap_conf.eth_src, res->eth_src.addr_bytes, 13488 RTE_ETHER_ADDR_LEN); 13489 rte_memcpy(mplsoudp_encap_conf.eth_dst, res->eth_dst.addr_bytes, 13490 RTE_ETHER_ADDR_LEN); 13491 } 13492 13493 cmdline_parse_inst_t cmd_set_mplsoudp_encap = { 13494 .f = cmd_set_mplsoudp_encap_parsed, 13495 .data = NULL, 13496 .help_str = "set mplsoudp_encap ip-version ipv4|ipv6 label <label>" 13497 " udp-src <udp-src> udp-dst <udp-dst> ip-src <ip-src>" 13498 " ip-dst <ip-dst> eth-src <eth-src> eth-dst <eth-dst>", 13499 .tokens = { 13500 (void *)&cmd_set_mplsoudp_encap_set, 13501 (void *)&cmd_set_mplsoudp_encap_mplsoudp_encap, 13502 (void *)&cmd_set_mplsoudp_encap_ip_version, 13503 (void *)&cmd_set_mplsoudp_encap_ip_version_value, 13504 (void *)&cmd_set_mplsoudp_encap_label, 13505 (void *)&cmd_set_mplsoudp_encap_label_value, 13506 (void *)&cmd_set_mplsoudp_encap_udp_src, 13507 (void *)&cmd_set_mplsoudp_encap_udp_src_value, 13508 (void *)&cmd_set_mplsoudp_encap_udp_dst, 13509 (void *)&cmd_set_mplsoudp_encap_udp_dst_value, 13510 (void *)&cmd_set_mplsoudp_encap_ip_src, 13511 (void *)&cmd_set_mplsoudp_encap_ip_src_value, 13512 (void *)&cmd_set_mplsoudp_encap_ip_dst, 13513 (void *)&cmd_set_mplsoudp_encap_ip_dst_value, 13514 (void *)&cmd_set_mplsoudp_encap_eth_src, 13515 (void *)&cmd_set_mplsoudp_encap_eth_src_value, 13516 (void *)&cmd_set_mplsoudp_encap_eth_dst, 13517 (void *)&cmd_set_mplsoudp_encap_eth_dst_value, 13518 NULL, 13519 }, 13520 }; 13521 13522 cmdline_parse_inst_t cmd_set_mplsoudp_encap_with_vlan = { 13523 .f = cmd_set_mplsoudp_encap_parsed, 13524 .data = NULL, 13525 .help_str = "set mplsoudp_encap-with-vlan ip-version ipv4|ipv6" 13526 " label <label> udp-src <udp-src> udp-dst <udp-dst>" 13527 " ip-src <ip-src> ip-dst <ip-dst> vlan-tci <vlan-tci>" 13528 " eth-src <eth-src> eth-dst <eth-dst>", 13529 .tokens = { 13530 (void *)&cmd_set_mplsoudp_encap_set, 13531 (void *)&cmd_set_mplsoudp_encap_mplsoudp_encap_with_vlan, 13532 (void *)&cmd_set_mplsoudp_encap_ip_version, 13533 (void *)&cmd_set_mplsoudp_encap_ip_version_value, 13534 (void *)&cmd_set_mplsoudp_encap_label, 13535 (void *)&cmd_set_mplsoudp_encap_label_value, 13536 (void *)&cmd_set_mplsoudp_encap_udp_src, 13537 (void *)&cmd_set_mplsoudp_encap_udp_src_value, 13538 (void *)&cmd_set_mplsoudp_encap_udp_dst, 13539 (void *)&cmd_set_mplsoudp_encap_udp_dst_value, 13540 (void *)&cmd_set_mplsoudp_encap_ip_src, 13541 (void *)&cmd_set_mplsoudp_encap_ip_src_value, 13542 (void *)&cmd_set_mplsoudp_encap_ip_dst, 13543 (void *)&cmd_set_mplsoudp_encap_ip_dst_value, 13544 (void *)&cmd_set_mplsoudp_encap_vlan, 13545 (void *)&cmd_set_mplsoudp_encap_vlan_value, 13546 (void *)&cmd_set_mplsoudp_encap_eth_src, 13547 (void *)&cmd_set_mplsoudp_encap_eth_src_value, 13548 (void *)&cmd_set_mplsoudp_encap_eth_dst, 13549 (void *)&cmd_set_mplsoudp_encap_eth_dst_value, 13550 NULL, 13551 }, 13552 }; 13553 13554 /** Set MPLSoUDP decapsulation details */ 13555 struct cmd_set_mplsoudp_decap_result { 13556 cmdline_fixed_string_t set; 13557 cmdline_fixed_string_t mplsoudp; 13558 cmdline_fixed_string_t pos_token; 13559 cmdline_fixed_string_t ip_version; 13560 uint32_t vlan_present:1; 13561 }; 13562 13563 cmdline_parse_token_string_t cmd_set_mplsoudp_decap_set = 13564 TOKEN_STRING_INITIALIZER(struct cmd_set_mplsoudp_decap_result, set, 13565 "set"); 13566 cmdline_parse_token_string_t cmd_set_mplsoudp_decap_mplsoudp_decap = 13567 TOKEN_STRING_INITIALIZER(struct cmd_set_mplsoudp_decap_result, mplsoudp, 13568 "mplsoudp_decap"); 13569 cmdline_parse_token_string_t cmd_set_mplsoudp_decap_mplsoudp_decap_with_vlan = 13570 TOKEN_STRING_INITIALIZER(struct cmd_set_mplsoudp_decap_result, 13571 mplsoudp, "mplsoudp_decap-with-vlan"); 13572 cmdline_parse_token_string_t cmd_set_mplsoudp_decap_ip_version = 13573 TOKEN_STRING_INITIALIZER(struct cmd_set_mplsoudp_decap_result, 13574 pos_token, "ip-version"); 13575 cmdline_parse_token_string_t cmd_set_mplsoudp_decap_ip_version_value = 13576 TOKEN_STRING_INITIALIZER(struct cmd_set_mplsoudp_decap_result, 13577 ip_version, "ipv4#ipv6"); 13578 13579 static void cmd_set_mplsoudp_decap_parsed(void *parsed_result, 13580 __rte_unused struct cmdline *cl, 13581 __rte_unused void *data) 13582 { 13583 struct cmd_set_mplsoudp_decap_result *res = parsed_result; 13584 13585 if (strcmp(res->mplsoudp, "mplsoudp_decap") == 0) 13586 mplsoudp_decap_conf.select_vlan = 0; 13587 else if (strcmp(res->mplsoudp, "mplsoudp_decap-with-vlan") == 0) 13588 mplsoudp_decap_conf.select_vlan = 1; 13589 if (strcmp(res->ip_version, "ipv4") == 0) 13590 mplsoudp_decap_conf.select_ipv4 = 1; 13591 else if (strcmp(res->ip_version, "ipv6") == 0) 13592 mplsoudp_decap_conf.select_ipv4 = 0; 13593 } 13594 13595 cmdline_parse_inst_t cmd_set_mplsoudp_decap = { 13596 .f = cmd_set_mplsoudp_decap_parsed, 13597 .data = NULL, 13598 .help_str = "set mplsoudp_decap ip-version ipv4|ipv6", 13599 .tokens = { 13600 (void *)&cmd_set_mplsoudp_decap_set, 13601 (void *)&cmd_set_mplsoudp_decap_mplsoudp_decap, 13602 (void *)&cmd_set_mplsoudp_decap_ip_version, 13603 (void *)&cmd_set_mplsoudp_decap_ip_version_value, 13604 NULL, 13605 }, 13606 }; 13607 13608 cmdline_parse_inst_t cmd_set_mplsoudp_decap_with_vlan = { 13609 .f = cmd_set_mplsoudp_decap_parsed, 13610 .data = NULL, 13611 .help_str = "set mplsoudp_decap-with-vlan ip-version ipv4|ipv6", 13612 .tokens = { 13613 (void *)&cmd_set_mplsoudp_decap_set, 13614 (void *)&cmd_set_mplsoudp_decap_mplsoudp_decap_with_vlan, 13615 (void *)&cmd_set_mplsoudp_decap_ip_version, 13616 (void *)&cmd_set_mplsoudp_decap_ip_version_value, 13617 NULL, 13618 }, 13619 }; 13620 13621 /* Strict link priority scheduling mode setting */ 13622 static void 13623 cmd_strict_link_prio_parsed( 13624 void *parsed_result, 13625 __rte_unused struct cmdline *cl, 13626 __rte_unused void *data) 13627 { 13628 struct cmd_vf_tc_bw_result *res = parsed_result; 13629 int ret = -ENOTSUP; 13630 13631 if (port_id_is_invalid(res->port_id, ENABLED_WARN)) 13632 return; 13633 13634 #ifdef RTE_NET_I40E 13635 ret = rte_pmd_i40e_set_tc_strict_prio(res->port_id, res->tc_map); 13636 #endif 13637 13638 switch (ret) { 13639 case 0: 13640 break; 13641 case -EINVAL: 13642 printf("invalid tc_bitmap 0x%x\n", res->tc_map); 13643 break; 13644 case -ENODEV: 13645 printf("invalid port_id %d\n", res->port_id); 13646 break; 13647 case -ENOTSUP: 13648 printf("function not implemented\n"); 13649 break; 13650 default: 13651 printf("programming error: (%s)\n", strerror(-ret)); 13652 } 13653 } 13654 13655 cmdline_parse_inst_t cmd_strict_link_prio = { 13656 .f = cmd_strict_link_prio_parsed, 13657 .data = NULL, 13658 .help_str = "set tx strict-link-priority <port_id> <tc_bitmap>", 13659 .tokens = { 13660 (void *)&cmd_vf_tc_bw_set, 13661 (void *)&cmd_vf_tc_bw_tx, 13662 (void *)&cmd_vf_tc_bw_strict_link_prio, 13663 (void *)&cmd_vf_tc_bw_port_id, 13664 (void *)&cmd_vf_tc_bw_tc_map, 13665 NULL, 13666 }, 13667 }; 13668 13669 /* Load dynamic device personalization*/ 13670 struct cmd_ddp_add_result { 13671 cmdline_fixed_string_t ddp; 13672 cmdline_fixed_string_t add; 13673 portid_t port_id; 13674 char filepath[]; 13675 }; 13676 13677 cmdline_parse_token_string_t cmd_ddp_add_ddp = 13678 TOKEN_STRING_INITIALIZER(struct cmd_ddp_add_result, ddp, "ddp"); 13679 cmdline_parse_token_string_t cmd_ddp_add_add = 13680 TOKEN_STRING_INITIALIZER(struct cmd_ddp_add_result, add, "add"); 13681 cmdline_parse_token_num_t cmd_ddp_add_port_id = 13682 TOKEN_NUM_INITIALIZER(struct cmd_ddp_add_result, port_id, 13683 RTE_UINT16); 13684 cmdline_parse_token_string_t cmd_ddp_add_filepath = 13685 TOKEN_STRING_INITIALIZER(struct cmd_ddp_add_result, filepath, NULL); 13686 13687 static void 13688 cmd_ddp_add_parsed( 13689 void *parsed_result, 13690 __rte_unused struct cmdline *cl, 13691 __rte_unused void *data) 13692 { 13693 struct cmd_ddp_add_result *res = parsed_result; 13694 uint8_t *buff; 13695 uint32_t size; 13696 char *filepath; 13697 char *file_fld[2]; 13698 int file_num; 13699 int ret = -ENOTSUP; 13700 13701 if (!all_ports_stopped()) { 13702 printf("Please stop all ports first\n"); 13703 return; 13704 } 13705 13706 filepath = strdup(res->filepath); 13707 if (filepath == NULL) { 13708 printf("Failed to allocate memory\n"); 13709 return; 13710 } 13711 file_num = rte_strsplit(filepath, strlen(filepath), file_fld, 2, ','); 13712 13713 buff = open_file(file_fld[0], &size); 13714 if (!buff) { 13715 free((void *)filepath); 13716 return; 13717 } 13718 13719 #ifdef RTE_NET_I40E 13720 if (ret == -ENOTSUP) 13721 ret = rte_pmd_i40e_process_ddp_package(res->port_id, 13722 buff, size, 13723 RTE_PMD_I40E_PKG_OP_WR_ADD); 13724 #endif 13725 13726 if (ret == -EEXIST) 13727 printf("Profile has already existed.\n"); 13728 else if (ret < 0) 13729 printf("Failed to load profile.\n"); 13730 else if (file_num == 2) 13731 save_file(file_fld[1], buff, size); 13732 13733 close_file(buff); 13734 free((void *)filepath); 13735 } 13736 13737 cmdline_parse_inst_t cmd_ddp_add = { 13738 .f = cmd_ddp_add_parsed, 13739 .data = NULL, 13740 .help_str = "ddp add <port_id> <profile_path[,backup_profile_path]>", 13741 .tokens = { 13742 (void *)&cmd_ddp_add_ddp, 13743 (void *)&cmd_ddp_add_add, 13744 (void *)&cmd_ddp_add_port_id, 13745 (void *)&cmd_ddp_add_filepath, 13746 NULL, 13747 }, 13748 }; 13749 13750 /* Delete dynamic device personalization*/ 13751 struct cmd_ddp_del_result { 13752 cmdline_fixed_string_t ddp; 13753 cmdline_fixed_string_t del; 13754 portid_t port_id; 13755 char filepath[]; 13756 }; 13757 13758 cmdline_parse_token_string_t cmd_ddp_del_ddp = 13759 TOKEN_STRING_INITIALIZER(struct cmd_ddp_del_result, ddp, "ddp"); 13760 cmdline_parse_token_string_t cmd_ddp_del_del = 13761 TOKEN_STRING_INITIALIZER(struct cmd_ddp_del_result, del, "del"); 13762 cmdline_parse_token_num_t cmd_ddp_del_port_id = 13763 TOKEN_NUM_INITIALIZER(struct cmd_ddp_del_result, port_id, RTE_UINT16); 13764 cmdline_parse_token_string_t cmd_ddp_del_filepath = 13765 TOKEN_STRING_INITIALIZER(struct cmd_ddp_del_result, filepath, NULL); 13766 13767 static void 13768 cmd_ddp_del_parsed( 13769 void *parsed_result, 13770 __rte_unused struct cmdline *cl, 13771 __rte_unused void *data) 13772 { 13773 struct cmd_ddp_del_result *res = parsed_result; 13774 uint8_t *buff; 13775 uint32_t size; 13776 int ret = -ENOTSUP; 13777 13778 if (!all_ports_stopped()) { 13779 printf("Please stop all ports first\n"); 13780 return; 13781 } 13782 13783 buff = open_file(res->filepath, &size); 13784 if (!buff) 13785 return; 13786 13787 #ifdef RTE_NET_I40E 13788 if (ret == -ENOTSUP) 13789 ret = rte_pmd_i40e_process_ddp_package(res->port_id, 13790 buff, size, 13791 RTE_PMD_I40E_PKG_OP_WR_DEL); 13792 #endif 13793 13794 if (ret == -EACCES) 13795 printf("Profile does not exist.\n"); 13796 else if (ret < 0) 13797 printf("Failed to delete profile.\n"); 13798 13799 close_file(buff); 13800 } 13801 13802 cmdline_parse_inst_t cmd_ddp_del = { 13803 .f = cmd_ddp_del_parsed, 13804 .data = NULL, 13805 .help_str = "ddp del <port_id> <backup_profile_path>", 13806 .tokens = { 13807 (void *)&cmd_ddp_del_ddp, 13808 (void *)&cmd_ddp_del_del, 13809 (void *)&cmd_ddp_del_port_id, 13810 (void *)&cmd_ddp_del_filepath, 13811 NULL, 13812 }, 13813 }; 13814 13815 /* Get dynamic device personalization profile info */ 13816 struct cmd_ddp_info_result { 13817 cmdline_fixed_string_t ddp; 13818 cmdline_fixed_string_t get; 13819 cmdline_fixed_string_t info; 13820 char filepath[]; 13821 }; 13822 13823 cmdline_parse_token_string_t cmd_ddp_info_ddp = 13824 TOKEN_STRING_INITIALIZER(struct cmd_ddp_info_result, ddp, "ddp"); 13825 cmdline_parse_token_string_t cmd_ddp_info_get = 13826 TOKEN_STRING_INITIALIZER(struct cmd_ddp_info_result, get, "get"); 13827 cmdline_parse_token_string_t cmd_ddp_info_info = 13828 TOKEN_STRING_INITIALIZER(struct cmd_ddp_info_result, info, "info"); 13829 cmdline_parse_token_string_t cmd_ddp_info_filepath = 13830 TOKEN_STRING_INITIALIZER(struct cmd_ddp_info_result, filepath, NULL); 13831 13832 static void 13833 cmd_ddp_info_parsed( 13834 void *parsed_result, 13835 __rte_unused struct cmdline *cl, 13836 __rte_unused void *data) 13837 { 13838 struct cmd_ddp_info_result *res = parsed_result; 13839 uint8_t *pkg; 13840 uint32_t pkg_size; 13841 int ret = -ENOTSUP; 13842 #ifdef RTE_NET_I40E 13843 uint32_t i, j, n; 13844 uint8_t *buff; 13845 uint32_t buff_size = 0; 13846 struct rte_pmd_i40e_profile_info info; 13847 uint32_t dev_num = 0; 13848 struct rte_pmd_i40e_ddp_device_id *devs; 13849 uint32_t proto_num = 0; 13850 struct rte_pmd_i40e_proto_info *proto = NULL; 13851 uint32_t pctype_num = 0; 13852 struct rte_pmd_i40e_ptype_info *pctype; 13853 uint32_t ptype_num = 0; 13854 struct rte_pmd_i40e_ptype_info *ptype; 13855 uint8_t proto_id; 13856 13857 #endif 13858 13859 pkg = open_file(res->filepath, &pkg_size); 13860 if (!pkg) 13861 return; 13862 13863 #ifdef RTE_NET_I40E 13864 ret = rte_pmd_i40e_get_ddp_info(pkg, pkg_size, 13865 (uint8_t *)&info, sizeof(info), 13866 RTE_PMD_I40E_PKG_INFO_GLOBAL_HEADER); 13867 if (!ret) { 13868 printf("Global Track id: 0x%x\n", info.track_id); 13869 printf("Global Version: %d.%d.%d.%d\n", 13870 info.version.major, 13871 info.version.minor, 13872 info.version.update, 13873 info.version.draft); 13874 printf("Global Package name: %s\n\n", info.name); 13875 } 13876 13877 ret = rte_pmd_i40e_get_ddp_info(pkg, pkg_size, 13878 (uint8_t *)&info, sizeof(info), 13879 RTE_PMD_I40E_PKG_INFO_HEADER); 13880 if (!ret) { 13881 printf("i40e Profile Track id: 0x%x\n", info.track_id); 13882 printf("i40e Profile Version: %d.%d.%d.%d\n", 13883 info.version.major, 13884 info.version.minor, 13885 info.version.update, 13886 info.version.draft); 13887 printf("i40e Profile name: %s\n\n", info.name); 13888 } 13889 13890 ret = rte_pmd_i40e_get_ddp_info(pkg, pkg_size, 13891 (uint8_t *)&buff_size, sizeof(buff_size), 13892 RTE_PMD_I40E_PKG_INFO_GLOBAL_NOTES_SIZE); 13893 if (!ret && buff_size) { 13894 buff = (uint8_t *)malloc(buff_size); 13895 if (buff) { 13896 ret = rte_pmd_i40e_get_ddp_info(pkg, pkg_size, 13897 buff, buff_size, 13898 RTE_PMD_I40E_PKG_INFO_GLOBAL_NOTES); 13899 if (!ret) 13900 printf("Package Notes:\n%s\n\n", buff); 13901 free(buff); 13902 } 13903 } 13904 13905 ret = rte_pmd_i40e_get_ddp_info(pkg, pkg_size, 13906 (uint8_t *)&dev_num, sizeof(dev_num), 13907 RTE_PMD_I40E_PKG_INFO_DEVID_NUM); 13908 if (!ret && dev_num) { 13909 buff_size = dev_num * sizeof(struct rte_pmd_i40e_ddp_device_id); 13910 devs = (struct rte_pmd_i40e_ddp_device_id *)malloc(buff_size); 13911 if (devs) { 13912 ret = rte_pmd_i40e_get_ddp_info(pkg, pkg_size, 13913 (uint8_t *)devs, buff_size, 13914 RTE_PMD_I40E_PKG_INFO_DEVID_LIST); 13915 if (!ret) { 13916 printf("List of supported devices:\n"); 13917 for (i = 0; i < dev_num; i++) { 13918 printf(" %04X:%04X %04X:%04X\n", 13919 devs[i].vendor_dev_id >> 16, 13920 devs[i].vendor_dev_id & 0xFFFF, 13921 devs[i].sub_vendor_dev_id >> 16, 13922 devs[i].sub_vendor_dev_id & 0xFFFF); 13923 } 13924 printf("\n"); 13925 } 13926 free(devs); 13927 } 13928 } 13929 13930 /* get information about protocols and packet types */ 13931 ret = rte_pmd_i40e_get_ddp_info(pkg, pkg_size, 13932 (uint8_t *)&proto_num, sizeof(proto_num), 13933 RTE_PMD_I40E_PKG_INFO_PROTOCOL_NUM); 13934 if (ret || !proto_num) 13935 goto no_print_return; 13936 13937 buff_size = proto_num * sizeof(struct rte_pmd_i40e_proto_info); 13938 proto = (struct rte_pmd_i40e_proto_info *)malloc(buff_size); 13939 if (!proto) 13940 goto no_print_return; 13941 13942 ret = rte_pmd_i40e_get_ddp_info(pkg, pkg_size, (uint8_t *)proto, 13943 buff_size, 13944 RTE_PMD_I40E_PKG_INFO_PROTOCOL_LIST); 13945 if (!ret) { 13946 printf("List of used protocols:\n"); 13947 for (i = 0; i < proto_num; i++) 13948 printf(" %2u: %s\n", proto[i].proto_id, 13949 proto[i].name); 13950 printf("\n"); 13951 } 13952 ret = rte_pmd_i40e_get_ddp_info(pkg, pkg_size, 13953 (uint8_t *)&pctype_num, sizeof(pctype_num), 13954 RTE_PMD_I40E_PKG_INFO_PCTYPE_NUM); 13955 if (ret || !pctype_num) 13956 goto no_print_pctypes; 13957 13958 buff_size = pctype_num * sizeof(struct rte_pmd_i40e_ptype_info); 13959 pctype = (struct rte_pmd_i40e_ptype_info *)malloc(buff_size); 13960 if (!pctype) 13961 goto no_print_pctypes; 13962 13963 ret = rte_pmd_i40e_get_ddp_info(pkg, pkg_size, (uint8_t *)pctype, 13964 buff_size, 13965 RTE_PMD_I40E_PKG_INFO_PCTYPE_LIST); 13966 if (ret) { 13967 free(pctype); 13968 goto no_print_pctypes; 13969 } 13970 13971 printf("List of defined packet classification types:\n"); 13972 for (i = 0; i < pctype_num; i++) { 13973 printf(" %2u:", pctype[i].ptype_id); 13974 for (j = 0; j < RTE_PMD_I40E_PROTO_NUM; j++) { 13975 proto_id = pctype[i].protocols[j]; 13976 if (proto_id != RTE_PMD_I40E_PROTO_UNUSED) { 13977 for (n = 0; n < proto_num; n++) { 13978 if (proto[n].proto_id == proto_id) { 13979 printf(" %s", proto[n].name); 13980 break; 13981 } 13982 } 13983 } 13984 } 13985 printf("\n"); 13986 } 13987 printf("\n"); 13988 free(pctype); 13989 13990 no_print_pctypes: 13991 13992 ret = rte_pmd_i40e_get_ddp_info(pkg, pkg_size, (uint8_t *)&ptype_num, 13993 sizeof(ptype_num), 13994 RTE_PMD_I40E_PKG_INFO_PTYPE_NUM); 13995 if (ret || !ptype_num) 13996 goto no_print_return; 13997 13998 buff_size = ptype_num * sizeof(struct rte_pmd_i40e_ptype_info); 13999 ptype = (struct rte_pmd_i40e_ptype_info *)malloc(buff_size); 14000 if (!ptype) 14001 goto no_print_return; 14002 14003 ret = rte_pmd_i40e_get_ddp_info(pkg, pkg_size, (uint8_t *)ptype, 14004 buff_size, 14005 RTE_PMD_I40E_PKG_INFO_PTYPE_LIST); 14006 if (ret) { 14007 free(ptype); 14008 goto no_print_return; 14009 } 14010 printf("List of defined packet types:\n"); 14011 for (i = 0; i < ptype_num; i++) { 14012 printf(" %2u:", ptype[i].ptype_id); 14013 for (j = 0; j < RTE_PMD_I40E_PROTO_NUM; j++) { 14014 proto_id = ptype[i].protocols[j]; 14015 if (proto_id != RTE_PMD_I40E_PROTO_UNUSED) { 14016 for (n = 0; n < proto_num; n++) { 14017 if (proto[n].proto_id == proto_id) { 14018 printf(" %s", proto[n].name); 14019 break; 14020 } 14021 } 14022 } 14023 } 14024 printf("\n"); 14025 } 14026 free(ptype); 14027 printf("\n"); 14028 14029 ret = 0; 14030 no_print_return: 14031 if (proto) 14032 free(proto); 14033 #endif 14034 if (ret == -ENOTSUP) 14035 printf("Function not supported in PMD driver\n"); 14036 close_file(pkg); 14037 } 14038 14039 cmdline_parse_inst_t cmd_ddp_get_info = { 14040 .f = cmd_ddp_info_parsed, 14041 .data = NULL, 14042 .help_str = "ddp get info <profile_path>", 14043 .tokens = { 14044 (void *)&cmd_ddp_info_ddp, 14045 (void *)&cmd_ddp_info_get, 14046 (void *)&cmd_ddp_info_info, 14047 (void *)&cmd_ddp_info_filepath, 14048 NULL, 14049 }, 14050 }; 14051 14052 /* Get dynamic device personalization profile info list*/ 14053 #define PROFILE_INFO_SIZE 48 14054 #define MAX_PROFILE_NUM 16 14055 14056 struct cmd_ddp_get_list_result { 14057 cmdline_fixed_string_t ddp; 14058 cmdline_fixed_string_t get; 14059 cmdline_fixed_string_t list; 14060 portid_t port_id; 14061 }; 14062 14063 cmdline_parse_token_string_t cmd_ddp_get_list_ddp = 14064 TOKEN_STRING_INITIALIZER(struct cmd_ddp_get_list_result, ddp, "ddp"); 14065 cmdline_parse_token_string_t cmd_ddp_get_list_get = 14066 TOKEN_STRING_INITIALIZER(struct cmd_ddp_get_list_result, get, "get"); 14067 cmdline_parse_token_string_t cmd_ddp_get_list_list = 14068 TOKEN_STRING_INITIALIZER(struct cmd_ddp_get_list_result, list, "list"); 14069 cmdline_parse_token_num_t cmd_ddp_get_list_port_id = 14070 TOKEN_NUM_INITIALIZER(struct cmd_ddp_get_list_result, port_id, 14071 RTE_UINT16); 14072 14073 static void 14074 cmd_ddp_get_list_parsed( 14075 __rte_unused void *parsed_result, 14076 __rte_unused struct cmdline *cl, 14077 __rte_unused void *data) 14078 { 14079 #ifdef RTE_NET_I40E 14080 struct cmd_ddp_get_list_result *res = parsed_result; 14081 struct rte_pmd_i40e_profile_list *p_list; 14082 struct rte_pmd_i40e_profile_info *p_info; 14083 uint32_t p_num; 14084 uint32_t size; 14085 uint32_t i; 14086 #endif 14087 int ret = -ENOTSUP; 14088 14089 #ifdef RTE_NET_I40E 14090 size = PROFILE_INFO_SIZE * MAX_PROFILE_NUM + 4; 14091 p_list = (struct rte_pmd_i40e_profile_list *)malloc(size); 14092 if (!p_list) { 14093 printf("%s: Failed to malloc buffer\n", __func__); 14094 return; 14095 } 14096 14097 if (ret == -ENOTSUP) 14098 ret = rte_pmd_i40e_get_ddp_list(res->port_id, 14099 (uint8_t *)p_list, size); 14100 14101 if (!ret) { 14102 p_num = p_list->p_count; 14103 printf("Profile number is: %d\n\n", p_num); 14104 14105 for (i = 0; i < p_num; i++) { 14106 p_info = &p_list->p_info[i]; 14107 printf("Profile %d:\n", i); 14108 printf("Track id: 0x%x\n", p_info->track_id); 14109 printf("Version: %d.%d.%d.%d\n", 14110 p_info->version.major, 14111 p_info->version.minor, 14112 p_info->version.update, 14113 p_info->version.draft); 14114 printf("Profile name: %s\n\n", p_info->name); 14115 } 14116 } 14117 14118 free(p_list); 14119 #endif 14120 14121 if (ret < 0) 14122 printf("Failed to get ddp list\n"); 14123 } 14124 14125 cmdline_parse_inst_t cmd_ddp_get_list = { 14126 .f = cmd_ddp_get_list_parsed, 14127 .data = NULL, 14128 .help_str = "ddp get list <port_id>", 14129 .tokens = { 14130 (void *)&cmd_ddp_get_list_ddp, 14131 (void *)&cmd_ddp_get_list_get, 14132 (void *)&cmd_ddp_get_list_list, 14133 (void *)&cmd_ddp_get_list_port_id, 14134 NULL, 14135 }, 14136 }; 14137 14138 /* Configure input set */ 14139 struct cmd_cfg_input_set_result { 14140 cmdline_fixed_string_t port; 14141 cmdline_fixed_string_t cfg; 14142 portid_t port_id; 14143 cmdline_fixed_string_t pctype; 14144 uint8_t pctype_id; 14145 cmdline_fixed_string_t inset_type; 14146 cmdline_fixed_string_t opt; 14147 cmdline_fixed_string_t field; 14148 uint8_t field_idx; 14149 }; 14150 14151 static void 14152 cmd_cfg_input_set_parsed( 14153 __rte_unused void *parsed_result, 14154 __rte_unused struct cmdline *cl, 14155 __rte_unused void *data) 14156 { 14157 #ifdef RTE_NET_I40E 14158 struct cmd_cfg_input_set_result *res = parsed_result; 14159 enum rte_pmd_i40e_inset_type inset_type = INSET_NONE; 14160 struct rte_pmd_i40e_inset inset; 14161 #endif 14162 int ret = -ENOTSUP; 14163 14164 if (!all_ports_stopped()) { 14165 printf("Please stop all ports first\n"); 14166 return; 14167 } 14168 14169 #ifdef RTE_NET_I40E 14170 if (!strcmp(res->inset_type, "hash_inset")) 14171 inset_type = INSET_HASH; 14172 else if (!strcmp(res->inset_type, "fdir_inset")) 14173 inset_type = INSET_FDIR; 14174 else if (!strcmp(res->inset_type, "fdir_flx_inset")) 14175 inset_type = INSET_FDIR_FLX; 14176 ret = rte_pmd_i40e_inset_get(res->port_id, res->pctype_id, 14177 &inset, inset_type); 14178 if (ret) { 14179 printf("Failed to get input set.\n"); 14180 return; 14181 } 14182 14183 if (!strcmp(res->opt, "get")) { 14184 ret = rte_pmd_i40e_inset_field_get(inset.inset, 14185 res->field_idx); 14186 if (ret) 14187 printf("Field index %d is enabled.\n", res->field_idx); 14188 else 14189 printf("Field index %d is disabled.\n", res->field_idx); 14190 return; 14191 } else if (!strcmp(res->opt, "set")) 14192 ret = rte_pmd_i40e_inset_field_set(&inset.inset, 14193 res->field_idx); 14194 else if (!strcmp(res->opt, "clear")) 14195 ret = rte_pmd_i40e_inset_field_clear(&inset.inset, 14196 res->field_idx); 14197 if (ret) { 14198 printf("Failed to configure input set field.\n"); 14199 return; 14200 } 14201 14202 ret = rte_pmd_i40e_inset_set(res->port_id, res->pctype_id, 14203 &inset, inset_type); 14204 if (ret) { 14205 printf("Failed to set input set.\n"); 14206 return; 14207 } 14208 #endif 14209 14210 if (ret == -ENOTSUP) 14211 printf("Function not supported\n"); 14212 } 14213 14214 cmdline_parse_token_string_t cmd_cfg_input_set_port = 14215 TOKEN_STRING_INITIALIZER(struct cmd_cfg_input_set_result, 14216 port, "port"); 14217 cmdline_parse_token_string_t cmd_cfg_input_set_cfg = 14218 TOKEN_STRING_INITIALIZER(struct cmd_cfg_input_set_result, 14219 cfg, "config"); 14220 cmdline_parse_token_num_t cmd_cfg_input_set_port_id = 14221 TOKEN_NUM_INITIALIZER(struct cmd_cfg_input_set_result, 14222 port_id, RTE_UINT16); 14223 cmdline_parse_token_string_t cmd_cfg_input_set_pctype = 14224 TOKEN_STRING_INITIALIZER(struct cmd_cfg_input_set_result, 14225 pctype, "pctype"); 14226 cmdline_parse_token_num_t cmd_cfg_input_set_pctype_id = 14227 TOKEN_NUM_INITIALIZER(struct cmd_cfg_input_set_result, 14228 pctype_id, RTE_UINT8); 14229 cmdline_parse_token_string_t cmd_cfg_input_set_inset_type = 14230 TOKEN_STRING_INITIALIZER(struct cmd_cfg_input_set_result, 14231 inset_type, 14232 "hash_inset#fdir_inset#fdir_flx_inset"); 14233 cmdline_parse_token_string_t cmd_cfg_input_set_opt = 14234 TOKEN_STRING_INITIALIZER(struct cmd_cfg_input_set_result, 14235 opt, "get#set#clear"); 14236 cmdline_parse_token_string_t cmd_cfg_input_set_field = 14237 TOKEN_STRING_INITIALIZER(struct cmd_cfg_input_set_result, 14238 field, "field"); 14239 cmdline_parse_token_num_t cmd_cfg_input_set_field_idx = 14240 TOKEN_NUM_INITIALIZER(struct cmd_cfg_input_set_result, 14241 field_idx, RTE_UINT8); 14242 14243 cmdline_parse_inst_t cmd_cfg_input_set = { 14244 .f = cmd_cfg_input_set_parsed, 14245 .data = NULL, 14246 .help_str = "port config <port_id> pctype <pctype_id> hash_inset|" 14247 "fdir_inset|fdir_flx_inset get|set|clear field <field_idx>", 14248 .tokens = { 14249 (void *)&cmd_cfg_input_set_port, 14250 (void *)&cmd_cfg_input_set_cfg, 14251 (void *)&cmd_cfg_input_set_port_id, 14252 (void *)&cmd_cfg_input_set_pctype, 14253 (void *)&cmd_cfg_input_set_pctype_id, 14254 (void *)&cmd_cfg_input_set_inset_type, 14255 (void *)&cmd_cfg_input_set_opt, 14256 (void *)&cmd_cfg_input_set_field, 14257 (void *)&cmd_cfg_input_set_field_idx, 14258 NULL, 14259 }, 14260 }; 14261 14262 /* Clear input set */ 14263 struct cmd_clear_input_set_result { 14264 cmdline_fixed_string_t port; 14265 cmdline_fixed_string_t cfg; 14266 portid_t port_id; 14267 cmdline_fixed_string_t pctype; 14268 uint8_t pctype_id; 14269 cmdline_fixed_string_t inset_type; 14270 cmdline_fixed_string_t clear; 14271 cmdline_fixed_string_t all; 14272 }; 14273 14274 static void 14275 cmd_clear_input_set_parsed( 14276 __rte_unused void *parsed_result, 14277 __rte_unused struct cmdline *cl, 14278 __rte_unused void *data) 14279 { 14280 #ifdef RTE_NET_I40E 14281 struct cmd_clear_input_set_result *res = parsed_result; 14282 enum rte_pmd_i40e_inset_type inset_type = INSET_NONE; 14283 struct rte_pmd_i40e_inset inset; 14284 #endif 14285 int ret = -ENOTSUP; 14286 14287 if (!all_ports_stopped()) { 14288 printf("Please stop all ports first\n"); 14289 return; 14290 } 14291 14292 #ifdef RTE_NET_I40E 14293 if (!strcmp(res->inset_type, "hash_inset")) 14294 inset_type = INSET_HASH; 14295 else if (!strcmp(res->inset_type, "fdir_inset")) 14296 inset_type = INSET_FDIR; 14297 else if (!strcmp(res->inset_type, "fdir_flx_inset")) 14298 inset_type = INSET_FDIR_FLX; 14299 14300 memset(&inset, 0, sizeof(inset)); 14301 14302 ret = rte_pmd_i40e_inset_set(res->port_id, res->pctype_id, 14303 &inset, inset_type); 14304 if (ret) { 14305 printf("Failed to clear input set.\n"); 14306 return; 14307 } 14308 14309 #endif 14310 14311 if (ret == -ENOTSUP) 14312 printf("Function not supported\n"); 14313 } 14314 14315 cmdline_parse_token_string_t cmd_clear_input_set_port = 14316 TOKEN_STRING_INITIALIZER(struct cmd_clear_input_set_result, 14317 port, "port"); 14318 cmdline_parse_token_string_t cmd_clear_input_set_cfg = 14319 TOKEN_STRING_INITIALIZER(struct cmd_clear_input_set_result, 14320 cfg, "config"); 14321 cmdline_parse_token_num_t cmd_clear_input_set_port_id = 14322 TOKEN_NUM_INITIALIZER(struct cmd_clear_input_set_result, 14323 port_id, RTE_UINT16); 14324 cmdline_parse_token_string_t cmd_clear_input_set_pctype = 14325 TOKEN_STRING_INITIALIZER(struct cmd_clear_input_set_result, 14326 pctype, "pctype"); 14327 cmdline_parse_token_num_t cmd_clear_input_set_pctype_id = 14328 TOKEN_NUM_INITIALIZER(struct cmd_clear_input_set_result, 14329 pctype_id, RTE_UINT8); 14330 cmdline_parse_token_string_t cmd_clear_input_set_inset_type = 14331 TOKEN_STRING_INITIALIZER(struct cmd_clear_input_set_result, 14332 inset_type, 14333 "hash_inset#fdir_inset#fdir_flx_inset"); 14334 cmdline_parse_token_string_t cmd_clear_input_set_clear = 14335 TOKEN_STRING_INITIALIZER(struct cmd_clear_input_set_result, 14336 clear, "clear"); 14337 cmdline_parse_token_string_t cmd_clear_input_set_all = 14338 TOKEN_STRING_INITIALIZER(struct cmd_clear_input_set_result, 14339 all, "all"); 14340 14341 cmdline_parse_inst_t cmd_clear_input_set = { 14342 .f = cmd_clear_input_set_parsed, 14343 .data = NULL, 14344 .help_str = "port config <port_id> pctype <pctype_id> hash_inset|" 14345 "fdir_inset|fdir_flx_inset clear all", 14346 .tokens = { 14347 (void *)&cmd_clear_input_set_port, 14348 (void *)&cmd_clear_input_set_cfg, 14349 (void *)&cmd_clear_input_set_port_id, 14350 (void *)&cmd_clear_input_set_pctype, 14351 (void *)&cmd_clear_input_set_pctype_id, 14352 (void *)&cmd_clear_input_set_inset_type, 14353 (void *)&cmd_clear_input_set_clear, 14354 (void *)&cmd_clear_input_set_all, 14355 NULL, 14356 }, 14357 }; 14358 14359 /* show vf stats */ 14360 14361 /* Common result structure for show vf stats */ 14362 struct cmd_show_vf_stats_result { 14363 cmdline_fixed_string_t show; 14364 cmdline_fixed_string_t vf; 14365 cmdline_fixed_string_t stats; 14366 portid_t port_id; 14367 uint16_t vf_id; 14368 }; 14369 14370 /* Common CLI fields show vf stats*/ 14371 cmdline_parse_token_string_t cmd_show_vf_stats_show = 14372 TOKEN_STRING_INITIALIZER 14373 (struct cmd_show_vf_stats_result, 14374 show, "show"); 14375 cmdline_parse_token_string_t cmd_show_vf_stats_vf = 14376 TOKEN_STRING_INITIALIZER 14377 (struct cmd_show_vf_stats_result, 14378 vf, "vf"); 14379 cmdline_parse_token_string_t cmd_show_vf_stats_stats = 14380 TOKEN_STRING_INITIALIZER 14381 (struct cmd_show_vf_stats_result, 14382 stats, "stats"); 14383 cmdline_parse_token_num_t cmd_show_vf_stats_port_id = 14384 TOKEN_NUM_INITIALIZER 14385 (struct cmd_show_vf_stats_result, 14386 port_id, RTE_UINT16); 14387 cmdline_parse_token_num_t cmd_show_vf_stats_vf_id = 14388 TOKEN_NUM_INITIALIZER 14389 (struct cmd_show_vf_stats_result, 14390 vf_id, RTE_UINT16); 14391 14392 static void 14393 cmd_show_vf_stats_parsed( 14394 void *parsed_result, 14395 __rte_unused struct cmdline *cl, 14396 __rte_unused void *data) 14397 { 14398 struct cmd_show_vf_stats_result *res = parsed_result; 14399 struct rte_eth_stats stats; 14400 int ret = -ENOTSUP; 14401 static const char *nic_stats_border = "########################"; 14402 14403 if (port_id_is_invalid(res->port_id, ENABLED_WARN)) 14404 return; 14405 14406 memset(&stats, 0, sizeof(stats)); 14407 14408 #ifdef RTE_NET_I40E 14409 if (ret == -ENOTSUP) 14410 ret = rte_pmd_i40e_get_vf_stats(res->port_id, 14411 res->vf_id, 14412 &stats); 14413 #endif 14414 #ifdef RTE_NET_BNXT 14415 if (ret == -ENOTSUP) 14416 ret = rte_pmd_bnxt_get_vf_stats(res->port_id, 14417 res->vf_id, 14418 &stats); 14419 #endif 14420 14421 switch (ret) { 14422 case 0: 14423 break; 14424 case -EINVAL: 14425 printf("invalid vf_id %d\n", res->vf_id); 14426 break; 14427 case -ENODEV: 14428 printf("invalid port_id %d\n", res->port_id); 14429 break; 14430 case -ENOTSUP: 14431 printf("function not implemented\n"); 14432 break; 14433 default: 14434 printf("programming error: (%s)\n", strerror(-ret)); 14435 } 14436 14437 printf("\n %s NIC statistics for port %-2d vf %-2d %s\n", 14438 nic_stats_border, res->port_id, res->vf_id, nic_stats_border); 14439 14440 printf(" RX-packets: %-10"PRIu64" RX-missed: %-10"PRIu64" RX-bytes: " 14441 "%-"PRIu64"\n", 14442 stats.ipackets, stats.imissed, stats.ibytes); 14443 printf(" RX-errors: %-"PRIu64"\n", stats.ierrors); 14444 printf(" RX-nombuf: %-10"PRIu64"\n", 14445 stats.rx_nombuf); 14446 printf(" TX-packets: %-10"PRIu64" TX-errors: %-10"PRIu64" TX-bytes: " 14447 "%-"PRIu64"\n", 14448 stats.opackets, stats.oerrors, stats.obytes); 14449 14450 printf(" %s############################%s\n", 14451 nic_stats_border, nic_stats_border); 14452 } 14453 14454 cmdline_parse_inst_t cmd_show_vf_stats = { 14455 .f = cmd_show_vf_stats_parsed, 14456 .data = NULL, 14457 .help_str = "show vf stats <port_id> <vf_id>", 14458 .tokens = { 14459 (void *)&cmd_show_vf_stats_show, 14460 (void *)&cmd_show_vf_stats_vf, 14461 (void *)&cmd_show_vf_stats_stats, 14462 (void *)&cmd_show_vf_stats_port_id, 14463 (void *)&cmd_show_vf_stats_vf_id, 14464 NULL, 14465 }, 14466 }; 14467 14468 /* clear vf stats */ 14469 14470 /* Common result structure for clear vf stats */ 14471 struct cmd_clear_vf_stats_result { 14472 cmdline_fixed_string_t clear; 14473 cmdline_fixed_string_t vf; 14474 cmdline_fixed_string_t stats; 14475 portid_t port_id; 14476 uint16_t vf_id; 14477 }; 14478 14479 /* Common CLI fields clear vf stats*/ 14480 cmdline_parse_token_string_t cmd_clear_vf_stats_clear = 14481 TOKEN_STRING_INITIALIZER 14482 (struct cmd_clear_vf_stats_result, 14483 clear, "clear"); 14484 cmdline_parse_token_string_t cmd_clear_vf_stats_vf = 14485 TOKEN_STRING_INITIALIZER 14486 (struct cmd_clear_vf_stats_result, 14487 vf, "vf"); 14488 cmdline_parse_token_string_t cmd_clear_vf_stats_stats = 14489 TOKEN_STRING_INITIALIZER 14490 (struct cmd_clear_vf_stats_result, 14491 stats, "stats"); 14492 cmdline_parse_token_num_t cmd_clear_vf_stats_port_id = 14493 TOKEN_NUM_INITIALIZER 14494 (struct cmd_clear_vf_stats_result, 14495 port_id, RTE_UINT16); 14496 cmdline_parse_token_num_t cmd_clear_vf_stats_vf_id = 14497 TOKEN_NUM_INITIALIZER 14498 (struct cmd_clear_vf_stats_result, 14499 vf_id, RTE_UINT16); 14500 14501 static void 14502 cmd_clear_vf_stats_parsed( 14503 void *parsed_result, 14504 __rte_unused struct cmdline *cl, 14505 __rte_unused void *data) 14506 { 14507 struct cmd_clear_vf_stats_result *res = parsed_result; 14508 int ret = -ENOTSUP; 14509 14510 if (port_id_is_invalid(res->port_id, ENABLED_WARN)) 14511 return; 14512 14513 #ifdef RTE_NET_I40E 14514 if (ret == -ENOTSUP) 14515 ret = rte_pmd_i40e_reset_vf_stats(res->port_id, 14516 res->vf_id); 14517 #endif 14518 #ifdef RTE_NET_BNXT 14519 if (ret == -ENOTSUP) 14520 ret = rte_pmd_bnxt_reset_vf_stats(res->port_id, 14521 res->vf_id); 14522 #endif 14523 14524 switch (ret) { 14525 case 0: 14526 break; 14527 case -EINVAL: 14528 printf("invalid vf_id %d\n", res->vf_id); 14529 break; 14530 case -ENODEV: 14531 printf("invalid port_id %d\n", res->port_id); 14532 break; 14533 case -ENOTSUP: 14534 printf("function not implemented\n"); 14535 break; 14536 default: 14537 printf("programming error: (%s)\n", strerror(-ret)); 14538 } 14539 } 14540 14541 cmdline_parse_inst_t cmd_clear_vf_stats = { 14542 .f = cmd_clear_vf_stats_parsed, 14543 .data = NULL, 14544 .help_str = "clear vf stats <port_id> <vf_id>", 14545 .tokens = { 14546 (void *)&cmd_clear_vf_stats_clear, 14547 (void *)&cmd_clear_vf_stats_vf, 14548 (void *)&cmd_clear_vf_stats_stats, 14549 (void *)&cmd_clear_vf_stats_port_id, 14550 (void *)&cmd_clear_vf_stats_vf_id, 14551 NULL, 14552 }, 14553 }; 14554 14555 /* port config pctype mapping reset */ 14556 14557 /* Common result structure for port config pctype mapping reset */ 14558 struct cmd_pctype_mapping_reset_result { 14559 cmdline_fixed_string_t port; 14560 cmdline_fixed_string_t config; 14561 portid_t port_id; 14562 cmdline_fixed_string_t pctype; 14563 cmdline_fixed_string_t mapping; 14564 cmdline_fixed_string_t reset; 14565 }; 14566 14567 /* Common CLI fields for port config pctype mapping reset*/ 14568 cmdline_parse_token_string_t cmd_pctype_mapping_reset_port = 14569 TOKEN_STRING_INITIALIZER 14570 (struct cmd_pctype_mapping_reset_result, 14571 port, "port"); 14572 cmdline_parse_token_string_t cmd_pctype_mapping_reset_config = 14573 TOKEN_STRING_INITIALIZER 14574 (struct cmd_pctype_mapping_reset_result, 14575 config, "config"); 14576 cmdline_parse_token_num_t cmd_pctype_mapping_reset_port_id = 14577 TOKEN_NUM_INITIALIZER 14578 (struct cmd_pctype_mapping_reset_result, 14579 port_id, RTE_UINT16); 14580 cmdline_parse_token_string_t cmd_pctype_mapping_reset_pctype = 14581 TOKEN_STRING_INITIALIZER 14582 (struct cmd_pctype_mapping_reset_result, 14583 pctype, "pctype"); 14584 cmdline_parse_token_string_t cmd_pctype_mapping_reset_mapping = 14585 TOKEN_STRING_INITIALIZER 14586 (struct cmd_pctype_mapping_reset_result, 14587 mapping, "mapping"); 14588 cmdline_parse_token_string_t cmd_pctype_mapping_reset_reset = 14589 TOKEN_STRING_INITIALIZER 14590 (struct cmd_pctype_mapping_reset_result, 14591 reset, "reset"); 14592 14593 static void 14594 cmd_pctype_mapping_reset_parsed( 14595 void *parsed_result, 14596 __rte_unused struct cmdline *cl, 14597 __rte_unused void *data) 14598 { 14599 struct cmd_pctype_mapping_reset_result *res = parsed_result; 14600 int ret = -ENOTSUP; 14601 14602 if (port_id_is_invalid(res->port_id, ENABLED_WARN)) 14603 return; 14604 14605 #ifdef RTE_NET_I40E 14606 ret = rte_pmd_i40e_flow_type_mapping_reset(res->port_id); 14607 #endif 14608 14609 switch (ret) { 14610 case 0: 14611 break; 14612 case -ENODEV: 14613 printf("invalid port_id %d\n", res->port_id); 14614 break; 14615 case -ENOTSUP: 14616 printf("function not implemented\n"); 14617 break; 14618 default: 14619 printf("programming error: (%s)\n", strerror(-ret)); 14620 } 14621 } 14622 14623 cmdline_parse_inst_t cmd_pctype_mapping_reset = { 14624 .f = cmd_pctype_mapping_reset_parsed, 14625 .data = NULL, 14626 .help_str = "port config <port_id> pctype mapping reset", 14627 .tokens = { 14628 (void *)&cmd_pctype_mapping_reset_port, 14629 (void *)&cmd_pctype_mapping_reset_config, 14630 (void *)&cmd_pctype_mapping_reset_port_id, 14631 (void *)&cmd_pctype_mapping_reset_pctype, 14632 (void *)&cmd_pctype_mapping_reset_mapping, 14633 (void *)&cmd_pctype_mapping_reset_reset, 14634 NULL, 14635 }, 14636 }; 14637 14638 /* show port pctype mapping */ 14639 14640 /* Common result structure for show port pctype mapping */ 14641 struct cmd_pctype_mapping_get_result { 14642 cmdline_fixed_string_t show; 14643 cmdline_fixed_string_t port; 14644 portid_t port_id; 14645 cmdline_fixed_string_t pctype; 14646 cmdline_fixed_string_t mapping; 14647 }; 14648 14649 /* Common CLI fields for pctype mapping get */ 14650 cmdline_parse_token_string_t cmd_pctype_mapping_get_show = 14651 TOKEN_STRING_INITIALIZER 14652 (struct cmd_pctype_mapping_get_result, 14653 show, "show"); 14654 cmdline_parse_token_string_t cmd_pctype_mapping_get_port = 14655 TOKEN_STRING_INITIALIZER 14656 (struct cmd_pctype_mapping_get_result, 14657 port, "port"); 14658 cmdline_parse_token_num_t cmd_pctype_mapping_get_port_id = 14659 TOKEN_NUM_INITIALIZER 14660 (struct cmd_pctype_mapping_get_result, 14661 port_id, RTE_UINT16); 14662 cmdline_parse_token_string_t cmd_pctype_mapping_get_pctype = 14663 TOKEN_STRING_INITIALIZER 14664 (struct cmd_pctype_mapping_get_result, 14665 pctype, "pctype"); 14666 cmdline_parse_token_string_t cmd_pctype_mapping_get_mapping = 14667 TOKEN_STRING_INITIALIZER 14668 (struct cmd_pctype_mapping_get_result, 14669 mapping, "mapping"); 14670 14671 static void 14672 cmd_pctype_mapping_get_parsed( 14673 void *parsed_result, 14674 __rte_unused struct cmdline *cl, 14675 __rte_unused void *data) 14676 { 14677 struct cmd_pctype_mapping_get_result *res = parsed_result; 14678 int ret = -ENOTSUP; 14679 #ifdef RTE_NET_I40E 14680 struct rte_pmd_i40e_flow_type_mapping 14681 mapping[RTE_PMD_I40E_FLOW_TYPE_MAX]; 14682 int i, j, first_pctype; 14683 #endif 14684 14685 if (port_id_is_invalid(res->port_id, ENABLED_WARN)) 14686 return; 14687 14688 #ifdef RTE_NET_I40E 14689 ret = rte_pmd_i40e_flow_type_mapping_get(res->port_id, mapping); 14690 #endif 14691 14692 switch (ret) { 14693 case 0: 14694 break; 14695 case -ENODEV: 14696 printf("invalid port_id %d\n", res->port_id); 14697 return; 14698 case -ENOTSUP: 14699 printf("function not implemented\n"); 14700 return; 14701 default: 14702 printf("programming error: (%s)\n", strerror(-ret)); 14703 return; 14704 } 14705 14706 #ifdef RTE_NET_I40E 14707 for (i = 0; i < RTE_PMD_I40E_FLOW_TYPE_MAX; i++) { 14708 if (mapping[i].pctype != 0ULL) { 14709 first_pctype = 1; 14710 14711 printf("pctype: "); 14712 for (j = 0; j < RTE_PMD_I40E_PCTYPE_MAX; j++) { 14713 if (mapping[i].pctype & (1ULL << j)) { 14714 printf(first_pctype ? 14715 "%02d" : ",%02d", j); 14716 first_pctype = 0; 14717 } 14718 } 14719 printf(" -> flowtype: %02d\n", mapping[i].flow_type); 14720 } 14721 } 14722 #endif 14723 } 14724 14725 cmdline_parse_inst_t cmd_pctype_mapping_get = { 14726 .f = cmd_pctype_mapping_get_parsed, 14727 .data = NULL, 14728 .help_str = "show port <port_id> pctype mapping", 14729 .tokens = { 14730 (void *)&cmd_pctype_mapping_get_show, 14731 (void *)&cmd_pctype_mapping_get_port, 14732 (void *)&cmd_pctype_mapping_get_port_id, 14733 (void *)&cmd_pctype_mapping_get_pctype, 14734 (void *)&cmd_pctype_mapping_get_mapping, 14735 NULL, 14736 }, 14737 }; 14738 14739 /* port config pctype mapping update */ 14740 14741 /* Common result structure for port config pctype mapping update */ 14742 struct cmd_pctype_mapping_update_result { 14743 cmdline_fixed_string_t port; 14744 cmdline_fixed_string_t config; 14745 portid_t port_id; 14746 cmdline_fixed_string_t pctype; 14747 cmdline_fixed_string_t mapping; 14748 cmdline_fixed_string_t update; 14749 cmdline_fixed_string_t pctype_list; 14750 uint16_t flow_type; 14751 }; 14752 14753 /* Common CLI fields for pctype mapping update*/ 14754 cmdline_parse_token_string_t cmd_pctype_mapping_update_port = 14755 TOKEN_STRING_INITIALIZER 14756 (struct cmd_pctype_mapping_update_result, 14757 port, "port"); 14758 cmdline_parse_token_string_t cmd_pctype_mapping_update_config = 14759 TOKEN_STRING_INITIALIZER 14760 (struct cmd_pctype_mapping_update_result, 14761 config, "config"); 14762 cmdline_parse_token_num_t cmd_pctype_mapping_update_port_id = 14763 TOKEN_NUM_INITIALIZER 14764 (struct cmd_pctype_mapping_update_result, 14765 port_id, RTE_UINT16); 14766 cmdline_parse_token_string_t cmd_pctype_mapping_update_pctype = 14767 TOKEN_STRING_INITIALIZER 14768 (struct cmd_pctype_mapping_update_result, 14769 pctype, "pctype"); 14770 cmdline_parse_token_string_t cmd_pctype_mapping_update_mapping = 14771 TOKEN_STRING_INITIALIZER 14772 (struct cmd_pctype_mapping_update_result, 14773 mapping, "mapping"); 14774 cmdline_parse_token_string_t cmd_pctype_mapping_update_update = 14775 TOKEN_STRING_INITIALIZER 14776 (struct cmd_pctype_mapping_update_result, 14777 update, "update"); 14778 cmdline_parse_token_string_t cmd_pctype_mapping_update_pc_type = 14779 TOKEN_STRING_INITIALIZER 14780 (struct cmd_pctype_mapping_update_result, 14781 pctype_list, NULL); 14782 cmdline_parse_token_num_t cmd_pctype_mapping_update_flow_type = 14783 TOKEN_NUM_INITIALIZER 14784 (struct cmd_pctype_mapping_update_result, 14785 flow_type, RTE_UINT16); 14786 14787 static void 14788 cmd_pctype_mapping_update_parsed( 14789 void *parsed_result, 14790 __rte_unused struct cmdline *cl, 14791 __rte_unused void *data) 14792 { 14793 struct cmd_pctype_mapping_update_result *res = parsed_result; 14794 int ret = -ENOTSUP; 14795 #ifdef RTE_NET_I40E 14796 struct rte_pmd_i40e_flow_type_mapping mapping; 14797 unsigned int i; 14798 unsigned int nb_item; 14799 unsigned int pctype_list[RTE_PMD_I40E_PCTYPE_MAX]; 14800 #endif 14801 14802 if (port_id_is_invalid(res->port_id, ENABLED_WARN)) 14803 return; 14804 14805 #ifdef RTE_NET_I40E 14806 nb_item = parse_item_list(res->pctype_list, "pctypes", 14807 RTE_PMD_I40E_PCTYPE_MAX, pctype_list, 1); 14808 mapping.flow_type = res->flow_type; 14809 for (i = 0, mapping.pctype = 0ULL; i < nb_item; i++) 14810 mapping.pctype |= (1ULL << pctype_list[i]); 14811 ret = rte_pmd_i40e_flow_type_mapping_update(res->port_id, 14812 &mapping, 14813 1, 14814 0); 14815 #endif 14816 14817 switch (ret) { 14818 case 0: 14819 break; 14820 case -EINVAL: 14821 printf("invalid pctype or flow type\n"); 14822 break; 14823 case -ENODEV: 14824 printf("invalid port_id %d\n", res->port_id); 14825 break; 14826 case -ENOTSUP: 14827 printf("function not implemented\n"); 14828 break; 14829 default: 14830 printf("programming error: (%s)\n", strerror(-ret)); 14831 } 14832 } 14833 14834 cmdline_parse_inst_t cmd_pctype_mapping_update = { 14835 .f = cmd_pctype_mapping_update_parsed, 14836 .data = NULL, 14837 .help_str = "port config <port_id> pctype mapping update" 14838 " <pctype_id_0,[pctype_id_1]*> <flowtype_id>", 14839 .tokens = { 14840 (void *)&cmd_pctype_mapping_update_port, 14841 (void *)&cmd_pctype_mapping_update_config, 14842 (void *)&cmd_pctype_mapping_update_port_id, 14843 (void *)&cmd_pctype_mapping_update_pctype, 14844 (void *)&cmd_pctype_mapping_update_mapping, 14845 (void *)&cmd_pctype_mapping_update_update, 14846 (void *)&cmd_pctype_mapping_update_pc_type, 14847 (void *)&cmd_pctype_mapping_update_flow_type, 14848 NULL, 14849 }, 14850 }; 14851 14852 /* ptype mapping get */ 14853 14854 /* Common result structure for ptype mapping get */ 14855 struct cmd_ptype_mapping_get_result { 14856 cmdline_fixed_string_t ptype; 14857 cmdline_fixed_string_t mapping; 14858 cmdline_fixed_string_t get; 14859 portid_t port_id; 14860 uint8_t valid_only; 14861 }; 14862 14863 /* Common CLI fields for ptype mapping get */ 14864 cmdline_parse_token_string_t cmd_ptype_mapping_get_ptype = 14865 TOKEN_STRING_INITIALIZER 14866 (struct cmd_ptype_mapping_get_result, 14867 ptype, "ptype"); 14868 cmdline_parse_token_string_t cmd_ptype_mapping_get_mapping = 14869 TOKEN_STRING_INITIALIZER 14870 (struct cmd_ptype_mapping_get_result, 14871 mapping, "mapping"); 14872 cmdline_parse_token_string_t cmd_ptype_mapping_get_get = 14873 TOKEN_STRING_INITIALIZER 14874 (struct cmd_ptype_mapping_get_result, 14875 get, "get"); 14876 cmdline_parse_token_num_t cmd_ptype_mapping_get_port_id = 14877 TOKEN_NUM_INITIALIZER 14878 (struct cmd_ptype_mapping_get_result, 14879 port_id, RTE_UINT16); 14880 cmdline_parse_token_num_t cmd_ptype_mapping_get_valid_only = 14881 TOKEN_NUM_INITIALIZER 14882 (struct cmd_ptype_mapping_get_result, 14883 valid_only, RTE_UINT8); 14884 14885 static void 14886 cmd_ptype_mapping_get_parsed( 14887 void *parsed_result, 14888 __rte_unused struct cmdline *cl, 14889 __rte_unused void *data) 14890 { 14891 struct cmd_ptype_mapping_get_result *res = parsed_result; 14892 int ret = -ENOTSUP; 14893 #ifdef RTE_NET_I40E 14894 int max_ptype_num = 256; 14895 struct rte_pmd_i40e_ptype_mapping mapping[max_ptype_num]; 14896 uint16_t count; 14897 int i; 14898 #endif 14899 14900 if (port_id_is_invalid(res->port_id, ENABLED_WARN)) 14901 return; 14902 14903 #ifdef RTE_NET_I40E 14904 ret = rte_pmd_i40e_ptype_mapping_get(res->port_id, 14905 mapping, 14906 max_ptype_num, 14907 &count, 14908 res->valid_only); 14909 #endif 14910 14911 switch (ret) { 14912 case 0: 14913 break; 14914 case -ENODEV: 14915 printf("invalid port_id %d\n", res->port_id); 14916 break; 14917 case -ENOTSUP: 14918 printf("function not implemented\n"); 14919 break; 14920 default: 14921 printf("programming error: (%s)\n", strerror(-ret)); 14922 } 14923 14924 #ifdef RTE_NET_I40E 14925 if (!ret) { 14926 for (i = 0; i < count; i++) 14927 printf("%3d\t0x%08x\n", 14928 mapping[i].hw_ptype, mapping[i].sw_ptype); 14929 } 14930 #endif 14931 } 14932 14933 cmdline_parse_inst_t cmd_ptype_mapping_get = { 14934 .f = cmd_ptype_mapping_get_parsed, 14935 .data = NULL, 14936 .help_str = "ptype mapping get <port_id> <valid_only>", 14937 .tokens = { 14938 (void *)&cmd_ptype_mapping_get_ptype, 14939 (void *)&cmd_ptype_mapping_get_mapping, 14940 (void *)&cmd_ptype_mapping_get_get, 14941 (void *)&cmd_ptype_mapping_get_port_id, 14942 (void *)&cmd_ptype_mapping_get_valid_only, 14943 NULL, 14944 }, 14945 }; 14946 14947 /* ptype mapping replace */ 14948 14949 /* Common result structure for ptype mapping replace */ 14950 struct cmd_ptype_mapping_replace_result { 14951 cmdline_fixed_string_t ptype; 14952 cmdline_fixed_string_t mapping; 14953 cmdline_fixed_string_t replace; 14954 portid_t port_id; 14955 uint32_t target; 14956 uint8_t mask; 14957 uint32_t pkt_type; 14958 }; 14959 14960 /* Common CLI fields for ptype mapping replace */ 14961 cmdline_parse_token_string_t cmd_ptype_mapping_replace_ptype = 14962 TOKEN_STRING_INITIALIZER 14963 (struct cmd_ptype_mapping_replace_result, 14964 ptype, "ptype"); 14965 cmdline_parse_token_string_t cmd_ptype_mapping_replace_mapping = 14966 TOKEN_STRING_INITIALIZER 14967 (struct cmd_ptype_mapping_replace_result, 14968 mapping, "mapping"); 14969 cmdline_parse_token_string_t cmd_ptype_mapping_replace_replace = 14970 TOKEN_STRING_INITIALIZER 14971 (struct cmd_ptype_mapping_replace_result, 14972 replace, "replace"); 14973 cmdline_parse_token_num_t cmd_ptype_mapping_replace_port_id = 14974 TOKEN_NUM_INITIALIZER 14975 (struct cmd_ptype_mapping_replace_result, 14976 port_id, RTE_UINT16); 14977 cmdline_parse_token_num_t cmd_ptype_mapping_replace_target = 14978 TOKEN_NUM_INITIALIZER 14979 (struct cmd_ptype_mapping_replace_result, 14980 target, RTE_UINT32); 14981 cmdline_parse_token_num_t cmd_ptype_mapping_replace_mask = 14982 TOKEN_NUM_INITIALIZER 14983 (struct cmd_ptype_mapping_replace_result, 14984 mask, RTE_UINT8); 14985 cmdline_parse_token_num_t cmd_ptype_mapping_replace_pkt_type = 14986 TOKEN_NUM_INITIALIZER 14987 (struct cmd_ptype_mapping_replace_result, 14988 pkt_type, RTE_UINT32); 14989 14990 static void 14991 cmd_ptype_mapping_replace_parsed( 14992 void *parsed_result, 14993 __rte_unused struct cmdline *cl, 14994 __rte_unused void *data) 14995 { 14996 struct cmd_ptype_mapping_replace_result *res = parsed_result; 14997 int ret = -ENOTSUP; 14998 14999 if (port_id_is_invalid(res->port_id, ENABLED_WARN)) 15000 return; 15001 15002 #ifdef RTE_NET_I40E 15003 ret = rte_pmd_i40e_ptype_mapping_replace(res->port_id, 15004 res->target, 15005 res->mask, 15006 res->pkt_type); 15007 #endif 15008 15009 switch (ret) { 15010 case 0: 15011 break; 15012 case -EINVAL: 15013 printf("invalid ptype 0x%8x or 0x%8x\n", 15014 res->target, res->pkt_type); 15015 break; 15016 case -ENODEV: 15017 printf("invalid port_id %d\n", res->port_id); 15018 break; 15019 case -ENOTSUP: 15020 printf("function not implemented\n"); 15021 break; 15022 default: 15023 printf("programming error: (%s)\n", strerror(-ret)); 15024 } 15025 } 15026 15027 cmdline_parse_inst_t cmd_ptype_mapping_replace = { 15028 .f = cmd_ptype_mapping_replace_parsed, 15029 .data = NULL, 15030 .help_str = 15031 "ptype mapping replace <port_id> <target> <mask> <pkt_type>", 15032 .tokens = { 15033 (void *)&cmd_ptype_mapping_replace_ptype, 15034 (void *)&cmd_ptype_mapping_replace_mapping, 15035 (void *)&cmd_ptype_mapping_replace_replace, 15036 (void *)&cmd_ptype_mapping_replace_port_id, 15037 (void *)&cmd_ptype_mapping_replace_target, 15038 (void *)&cmd_ptype_mapping_replace_mask, 15039 (void *)&cmd_ptype_mapping_replace_pkt_type, 15040 NULL, 15041 }, 15042 }; 15043 15044 /* ptype mapping reset */ 15045 15046 /* Common result structure for ptype mapping reset */ 15047 struct cmd_ptype_mapping_reset_result { 15048 cmdline_fixed_string_t ptype; 15049 cmdline_fixed_string_t mapping; 15050 cmdline_fixed_string_t reset; 15051 portid_t port_id; 15052 }; 15053 15054 /* Common CLI fields for ptype mapping reset*/ 15055 cmdline_parse_token_string_t cmd_ptype_mapping_reset_ptype = 15056 TOKEN_STRING_INITIALIZER 15057 (struct cmd_ptype_mapping_reset_result, 15058 ptype, "ptype"); 15059 cmdline_parse_token_string_t cmd_ptype_mapping_reset_mapping = 15060 TOKEN_STRING_INITIALIZER 15061 (struct cmd_ptype_mapping_reset_result, 15062 mapping, "mapping"); 15063 cmdline_parse_token_string_t cmd_ptype_mapping_reset_reset = 15064 TOKEN_STRING_INITIALIZER 15065 (struct cmd_ptype_mapping_reset_result, 15066 reset, "reset"); 15067 cmdline_parse_token_num_t cmd_ptype_mapping_reset_port_id = 15068 TOKEN_NUM_INITIALIZER 15069 (struct cmd_ptype_mapping_reset_result, 15070 port_id, RTE_UINT16); 15071 15072 static void 15073 cmd_ptype_mapping_reset_parsed( 15074 void *parsed_result, 15075 __rte_unused struct cmdline *cl, 15076 __rte_unused void *data) 15077 { 15078 struct cmd_ptype_mapping_reset_result *res = parsed_result; 15079 int ret = -ENOTSUP; 15080 15081 if (port_id_is_invalid(res->port_id, ENABLED_WARN)) 15082 return; 15083 15084 #ifdef RTE_NET_I40E 15085 ret = rte_pmd_i40e_ptype_mapping_reset(res->port_id); 15086 #endif 15087 15088 switch (ret) { 15089 case 0: 15090 break; 15091 case -ENODEV: 15092 printf("invalid port_id %d\n", res->port_id); 15093 break; 15094 case -ENOTSUP: 15095 printf("function not implemented\n"); 15096 break; 15097 default: 15098 printf("programming error: (%s)\n", strerror(-ret)); 15099 } 15100 } 15101 15102 cmdline_parse_inst_t cmd_ptype_mapping_reset = { 15103 .f = cmd_ptype_mapping_reset_parsed, 15104 .data = NULL, 15105 .help_str = "ptype mapping reset <port_id>", 15106 .tokens = { 15107 (void *)&cmd_ptype_mapping_reset_ptype, 15108 (void *)&cmd_ptype_mapping_reset_mapping, 15109 (void *)&cmd_ptype_mapping_reset_reset, 15110 (void *)&cmd_ptype_mapping_reset_port_id, 15111 NULL, 15112 }, 15113 }; 15114 15115 /* ptype mapping update */ 15116 15117 /* Common result structure for ptype mapping update */ 15118 struct cmd_ptype_mapping_update_result { 15119 cmdline_fixed_string_t ptype; 15120 cmdline_fixed_string_t mapping; 15121 cmdline_fixed_string_t reset; 15122 portid_t port_id; 15123 uint8_t hw_ptype; 15124 uint32_t sw_ptype; 15125 }; 15126 15127 /* Common CLI fields for ptype mapping update*/ 15128 cmdline_parse_token_string_t cmd_ptype_mapping_update_ptype = 15129 TOKEN_STRING_INITIALIZER 15130 (struct cmd_ptype_mapping_update_result, 15131 ptype, "ptype"); 15132 cmdline_parse_token_string_t cmd_ptype_mapping_update_mapping = 15133 TOKEN_STRING_INITIALIZER 15134 (struct cmd_ptype_mapping_update_result, 15135 mapping, "mapping"); 15136 cmdline_parse_token_string_t cmd_ptype_mapping_update_update = 15137 TOKEN_STRING_INITIALIZER 15138 (struct cmd_ptype_mapping_update_result, 15139 reset, "update"); 15140 cmdline_parse_token_num_t cmd_ptype_mapping_update_port_id = 15141 TOKEN_NUM_INITIALIZER 15142 (struct cmd_ptype_mapping_update_result, 15143 port_id, RTE_UINT16); 15144 cmdline_parse_token_num_t cmd_ptype_mapping_update_hw_ptype = 15145 TOKEN_NUM_INITIALIZER 15146 (struct cmd_ptype_mapping_update_result, 15147 hw_ptype, RTE_UINT8); 15148 cmdline_parse_token_num_t cmd_ptype_mapping_update_sw_ptype = 15149 TOKEN_NUM_INITIALIZER 15150 (struct cmd_ptype_mapping_update_result, 15151 sw_ptype, RTE_UINT32); 15152 15153 static void 15154 cmd_ptype_mapping_update_parsed( 15155 void *parsed_result, 15156 __rte_unused struct cmdline *cl, 15157 __rte_unused void *data) 15158 { 15159 struct cmd_ptype_mapping_update_result *res = parsed_result; 15160 int ret = -ENOTSUP; 15161 #ifdef RTE_NET_I40E 15162 struct rte_pmd_i40e_ptype_mapping mapping; 15163 #endif 15164 if (port_id_is_invalid(res->port_id, ENABLED_WARN)) 15165 return; 15166 15167 #ifdef RTE_NET_I40E 15168 mapping.hw_ptype = res->hw_ptype; 15169 mapping.sw_ptype = res->sw_ptype; 15170 ret = rte_pmd_i40e_ptype_mapping_update(res->port_id, 15171 &mapping, 15172 1, 15173 0); 15174 #endif 15175 15176 switch (ret) { 15177 case 0: 15178 break; 15179 case -EINVAL: 15180 printf("invalid ptype 0x%8x\n", res->sw_ptype); 15181 break; 15182 case -ENODEV: 15183 printf("invalid port_id %d\n", res->port_id); 15184 break; 15185 case -ENOTSUP: 15186 printf("function not implemented\n"); 15187 break; 15188 default: 15189 printf("programming error: (%s)\n", strerror(-ret)); 15190 } 15191 } 15192 15193 cmdline_parse_inst_t cmd_ptype_mapping_update = { 15194 .f = cmd_ptype_mapping_update_parsed, 15195 .data = NULL, 15196 .help_str = "ptype mapping update <port_id> <hw_ptype> <sw_ptype>", 15197 .tokens = { 15198 (void *)&cmd_ptype_mapping_update_ptype, 15199 (void *)&cmd_ptype_mapping_update_mapping, 15200 (void *)&cmd_ptype_mapping_update_update, 15201 (void *)&cmd_ptype_mapping_update_port_id, 15202 (void *)&cmd_ptype_mapping_update_hw_ptype, 15203 (void *)&cmd_ptype_mapping_update_sw_ptype, 15204 NULL, 15205 }, 15206 }; 15207 15208 /* Common result structure for file commands */ 15209 struct cmd_cmdfile_result { 15210 cmdline_fixed_string_t load; 15211 cmdline_fixed_string_t filename; 15212 }; 15213 15214 /* Common CLI fields for file commands */ 15215 cmdline_parse_token_string_t cmd_load_cmdfile = 15216 TOKEN_STRING_INITIALIZER(struct cmd_cmdfile_result, load, "load"); 15217 cmdline_parse_token_string_t cmd_load_cmdfile_filename = 15218 TOKEN_STRING_INITIALIZER(struct cmd_cmdfile_result, filename, NULL); 15219 15220 static void 15221 cmd_load_from_file_parsed( 15222 void *parsed_result, 15223 __rte_unused struct cmdline *cl, 15224 __rte_unused void *data) 15225 { 15226 struct cmd_cmdfile_result *res = parsed_result; 15227 15228 cmdline_read_from_file(res->filename); 15229 } 15230 15231 cmdline_parse_inst_t cmd_load_from_file = { 15232 .f = cmd_load_from_file_parsed, 15233 .data = NULL, 15234 .help_str = "load <filename>", 15235 .tokens = { 15236 (void *)&cmd_load_cmdfile, 15237 (void *)&cmd_load_cmdfile_filename, 15238 NULL, 15239 }, 15240 }; 15241 15242 /* Get Rx offloads capabilities */ 15243 struct cmd_rx_offload_get_capa_result { 15244 cmdline_fixed_string_t show; 15245 cmdline_fixed_string_t port; 15246 portid_t port_id; 15247 cmdline_fixed_string_t rx_offload; 15248 cmdline_fixed_string_t capabilities; 15249 }; 15250 15251 cmdline_parse_token_string_t cmd_rx_offload_get_capa_show = 15252 TOKEN_STRING_INITIALIZER 15253 (struct cmd_rx_offload_get_capa_result, 15254 show, "show"); 15255 cmdline_parse_token_string_t cmd_rx_offload_get_capa_port = 15256 TOKEN_STRING_INITIALIZER 15257 (struct cmd_rx_offload_get_capa_result, 15258 port, "port"); 15259 cmdline_parse_token_num_t cmd_rx_offload_get_capa_port_id = 15260 TOKEN_NUM_INITIALIZER 15261 (struct cmd_rx_offload_get_capa_result, 15262 port_id, RTE_UINT16); 15263 cmdline_parse_token_string_t cmd_rx_offload_get_capa_rx_offload = 15264 TOKEN_STRING_INITIALIZER 15265 (struct cmd_rx_offload_get_capa_result, 15266 rx_offload, "rx_offload"); 15267 cmdline_parse_token_string_t cmd_rx_offload_get_capa_capabilities = 15268 TOKEN_STRING_INITIALIZER 15269 (struct cmd_rx_offload_get_capa_result, 15270 capabilities, "capabilities"); 15271 15272 static void 15273 print_rx_offloads(uint64_t offloads) 15274 { 15275 uint64_t single_offload; 15276 int begin; 15277 int end; 15278 int bit; 15279 15280 if (offloads == 0) 15281 return; 15282 15283 begin = __builtin_ctzll(offloads); 15284 end = sizeof(offloads) * CHAR_BIT - __builtin_clzll(offloads); 15285 15286 single_offload = 1ULL << begin; 15287 for (bit = begin; bit < end; bit++) { 15288 if (offloads & single_offload) 15289 printf(" %s", 15290 rte_eth_dev_rx_offload_name(single_offload)); 15291 single_offload <<= 1; 15292 } 15293 } 15294 15295 static void 15296 cmd_rx_offload_get_capa_parsed( 15297 void *parsed_result, 15298 __rte_unused struct cmdline *cl, 15299 __rte_unused void *data) 15300 { 15301 struct cmd_rx_offload_get_capa_result *res = parsed_result; 15302 struct rte_eth_dev_info dev_info; 15303 portid_t port_id = res->port_id; 15304 uint64_t queue_offloads; 15305 uint64_t port_offloads; 15306 int ret; 15307 15308 ret = eth_dev_info_get_print_err(port_id, &dev_info); 15309 if (ret != 0) 15310 return; 15311 15312 queue_offloads = dev_info.rx_queue_offload_capa; 15313 port_offloads = dev_info.rx_offload_capa ^ queue_offloads; 15314 15315 printf("Rx Offloading Capabilities of port %d :\n", port_id); 15316 printf(" Per Queue :"); 15317 print_rx_offloads(queue_offloads); 15318 15319 printf("\n"); 15320 printf(" Per Port :"); 15321 print_rx_offloads(port_offloads); 15322 printf("\n\n"); 15323 } 15324 15325 cmdline_parse_inst_t cmd_rx_offload_get_capa = { 15326 .f = cmd_rx_offload_get_capa_parsed, 15327 .data = NULL, 15328 .help_str = "show port <port_id> rx_offload capabilities", 15329 .tokens = { 15330 (void *)&cmd_rx_offload_get_capa_show, 15331 (void *)&cmd_rx_offload_get_capa_port, 15332 (void *)&cmd_rx_offload_get_capa_port_id, 15333 (void *)&cmd_rx_offload_get_capa_rx_offload, 15334 (void *)&cmd_rx_offload_get_capa_capabilities, 15335 NULL, 15336 } 15337 }; 15338 15339 /* Get Rx offloads configuration */ 15340 struct cmd_rx_offload_get_configuration_result { 15341 cmdline_fixed_string_t show; 15342 cmdline_fixed_string_t port; 15343 portid_t port_id; 15344 cmdline_fixed_string_t rx_offload; 15345 cmdline_fixed_string_t configuration; 15346 }; 15347 15348 cmdline_parse_token_string_t cmd_rx_offload_get_configuration_show = 15349 TOKEN_STRING_INITIALIZER 15350 (struct cmd_rx_offload_get_configuration_result, 15351 show, "show"); 15352 cmdline_parse_token_string_t cmd_rx_offload_get_configuration_port = 15353 TOKEN_STRING_INITIALIZER 15354 (struct cmd_rx_offload_get_configuration_result, 15355 port, "port"); 15356 cmdline_parse_token_num_t cmd_rx_offload_get_configuration_port_id = 15357 TOKEN_NUM_INITIALIZER 15358 (struct cmd_rx_offload_get_configuration_result, 15359 port_id, RTE_UINT16); 15360 cmdline_parse_token_string_t cmd_rx_offload_get_configuration_rx_offload = 15361 TOKEN_STRING_INITIALIZER 15362 (struct cmd_rx_offload_get_configuration_result, 15363 rx_offload, "rx_offload"); 15364 cmdline_parse_token_string_t cmd_rx_offload_get_configuration_configuration = 15365 TOKEN_STRING_INITIALIZER 15366 (struct cmd_rx_offload_get_configuration_result, 15367 configuration, "configuration"); 15368 15369 static void 15370 cmd_rx_offload_get_configuration_parsed( 15371 void *parsed_result, 15372 __rte_unused struct cmdline *cl, 15373 __rte_unused void *data) 15374 { 15375 struct cmd_rx_offload_get_configuration_result *res = parsed_result; 15376 struct rte_eth_dev_info dev_info; 15377 portid_t port_id = res->port_id; 15378 struct rte_port *port = &ports[port_id]; 15379 uint64_t port_offloads; 15380 uint64_t queue_offloads; 15381 uint16_t nb_rx_queues; 15382 int q; 15383 int ret; 15384 15385 printf("Rx Offloading Configuration of port %d :\n", port_id); 15386 15387 port_offloads = port->dev_conf.rxmode.offloads; 15388 printf(" Port :"); 15389 print_rx_offloads(port_offloads); 15390 printf("\n"); 15391 15392 ret = eth_dev_info_get_print_err(port_id, &dev_info); 15393 if (ret != 0) 15394 return; 15395 15396 nb_rx_queues = dev_info.nb_rx_queues; 15397 for (q = 0; q < nb_rx_queues; q++) { 15398 queue_offloads = port->rx_conf[q].offloads; 15399 printf(" Queue[%2d] :", q); 15400 print_rx_offloads(queue_offloads); 15401 printf("\n"); 15402 } 15403 printf("\n"); 15404 } 15405 15406 cmdline_parse_inst_t cmd_rx_offload_get_configuration = { 15407 .f = cmd_rx_offload_get_configuration_parsed, 15408 .data = NULL, 15409 .help_str = "show port <port_id> rx_offload configuration", 15410 .tokens = { 15411 (void *)&cmd_rx_offload_get_configuration_show, 15412 (void *)&cmd_rx_offload_get_configuration_port, 15413 (void *)&cmd_rx_offload_get_configuration_port_id, 15414 (void *)&cmd_rx_offload_get_configuration_rx_offload, 15415 (void *)&cmd_rx_offload_get_configuration_configuration, 15416 NULL, 15417 } 15418 }; 15419 15420 /* Enable/Disable a per port offloading */ 15421 struct cmd_config_per_port_rx_offload_result { 15422 cmdline_fixed_string_t port; 15423 cmdline_fixed_string_t config; 15424 portid_t port_id; 15425 cmdline_fixed_string_t rx_offload; 15426 cmdline_fixed_string_t offload; 15427 cmdline_fixed_string_t on_off; 15428 }; 15429 15430 cmdline_parse_token_string_t cmd_config_per_port_rx_offload_result_port = 15431 TOKEN_STRING_INITIALIZER 15432 (struct cmd_config_per_port_rx_offload_result, 15433 port, "port"); 15434 cmdline_parse_token_string_t cmd_config_per_port_rx_offload_result_config = 15435 TOKEN_STRING_INITIALIZER 15436 (struct cmd_config_per_port_rx_offload_result, 15437 config, "config"); 15438 cmdline_parse_token_num_t cmd_config_per_port_rx_offload_result_port_id = 15439 TOKEN_NUM_INITIALIZER 15440 (struct cmd_config_per_port_rx_offload_result, 15441 port_id, RTE_UINT16); 15442 cmdline_parse_token_string_t cmd_config_per_port_rx_offload_result_rx_offload = 15443 TOKEN_STRING_INITIALIZER 15444 (struct cmd_config_per_port_rx_offload_result, 15445 rx_offload, "rx_offload"); 15446 cmdline_parse_token_string_t cmd_config_per_port_rx_offload_result_offload = 15447 TOKEN_STRING_INITIALIZER 15448 (struct cmd_config_per_port_rx_offload_result, 15449 offload, "vlan_strip#ipv4_cksum#udp_cksum#tcp_cksum#tcp_lro#" 15450 "qinq_strip#outer_ipv4_cksum#macsec_strip#" 15451 "header_split#vlan_filter#vlan_extend#jumbo_frame#" 15452 "scatter#buffer_split#timestamp#security#" 15453 "keep_crc#rss_hash"); 15454 cmdline_parse_token_string_t cmd_config_per_port_rx_offload_result_on_off = 15455 TOKEN_STRING_INITIALIZER 15456 (struct cmd_config_per_port_rx_offload_result, 15457 on_off, "on#off"); 15458 15459 static uint64_t 15460 search_rx_offload(const char *name) 15461 { 15462 uint64_t single_offload; 15463 const char *single_name; 15464 int found = 0; 15465 unsigned int bit; 15466 15467 single_offload = 1; 15468 for (bit = 0; bit < sizeof(single_offload) * CHAR_BIT; bit++) { 15469 single_name = rte_eth_dev_rx_offload_name(single_offload); 15470 if (!strcasecmp(single_name, name)) { 15471 found = 1; 15472 break; 15473 } 15474 single_offload <<= 1; 15475 } 15476 15477 if (found) 15478 return single_offload; 15479 15480 return 0; 15481 } 15482 15483 static void 15484 cmd_config_per_port_rx_offload_parsed(void *parsed_result, 15485 __rte_unused struct cmdline *cl, 15486 __rte_unused void *data) 15487 { 15488 struct cmd_config_per_port_rx_offload_result *res = parsed_result; 15489 portid_t port_id = res->port_id; 15490 struct rte_eth_dev_info dev_info; 15491 struct rte_port *port = &ports[port_id]; 15492 uint64_t single_offload; 15493 uint16_t nb_rx_queues; 15494 int q; 15495 int ret; 15496 15497 if (port->port_status != RTE_PORT_STOPPED) { 15498 printf("Error: Can't config offload when Port %d " 15499 "is not stopped\n", port_id); 15500 return; 15501 } 15502 15503 single_offload = search_rx_offload(res->offload); 15504 if (single_offload == 0) { 15505 printf("Unknown offload name: %s\n", res->offload); 15506 return; 15507 } 15508 15509 ret = eth_dev_info_get_print_err(port_id, &dev_info); 15510 if (ret != 0) 15511 return; 15512 15513 nb_rx_queues = dev_info.nb_rx_queues; 15514 if (!strcmp(res->on_off, "on")) { 15515 port->dev_conf.rxmode.offloads |= single_offload; 15516 for (q = 0; q < nb_rx_queues; q++) 15517 port->rx_conf[q].offloads |= single_offload; 15518 } else { 15519 port->dev_conf.rxmode.offloads &= ~single_offload; 15520 for (q = 0; q < nb_rx_queues; q++) 15521 port->rx_conf[q].offloads &= ~single_offload; 15522 } 15523 15524 cmd_reconfig_device_queue(port_id, 1, 1); 15525 } 15526 15527 cmdline_parse_inst_t cmd_config_per_port_rx_offload = { 15528 .f = cmd_config_per_port_rx_offload_parsed, 15529 .data = NULL, 15530 .help_str = "port config <port_id> rx_offload vlan_strip|ipv4_cksum|" 15531 "udp_cksum|tcp_cksum|tcp_lro|qinq_strip|outer_ipv4_cksum|" 15532 "macsec_strip|header_split|vlan_filter|vlan_extend|" 15533 "jumbo_frame|scatter|buffer_split|timestamp|security|" 15534 "keep_crc|rss_hash on|off", 15535 .tokens = { 15536 (void *)&cmd_config_per_port_rx_offload_result_port, 15537 (void *)&cmd_config_per_port_rx_offload_result_config, 15538 (void *)&cmd_config_per_port_rx_offload_result_port_id, 15539 (void *)&cmd_config_per_port_rx_offload_result_rx_offload, 15540 (void *)&cmd_config_per_port_rx_offload_result_offload, 15541 (void *)&cmd_config_per_port_rx_offload_result_on_off, 15542 NULL, 15543 } 15544 }; 15545 15546 /* Enable/Disable a per queue offloading */ 15547 struct cmd_config_per_queue_rx_offload_result { 15548 cmdline_fixed_string_t port; 15549 portid_t port_id; 15550 cmdline_fixed_string_t rxq; 15551 uint16_t queue_id; 15552 cmdline_fixed_string_t rx_offload; 15553 cmdline_fixed_string_t offload; 15554 cmdline_fixed_string_t on_off; 15555 }; 15556 15557 cmdline_parse_token_string_t cmd_config_per_queue_rx_offload_result_port = 15558 TOKEN_STRING_INITIALIZER 15559 (struct cmd_config_per_queue_rx_offload_result, 15560 port, "port"); 15561 cmdline_parse_token_num_t cmd_config_per_queue_rx_offload_result_port_id = 15562 TOKEN_NUM_INITIALIZER 15563 (struct cmd_config_per_queue_rx_offload_result, 15564 port_id, RTE_UINT16); 15565 cmdline_parse_token_string_t cmd_config_per_queue_rx_offload_result_rxq = 15566 TOKEN_STRING_INITIALIZER 15567 (struct cmd_config_per_queue_rx_offload_result, 15568 rxq, "rxq"); 15569 cmdline_parse_token_num_t cmd_config_per_queue_rx_offload_result_queue_id = 15570 TOKEN_NUM_INITIALIZER 15571 (struct cmd_config_per_queue_rx_offload_result, 15572 queue_id, RTE_UINT16); 15573 cmdline_parse_token_string_t cmd_config_per_queue_rx_offload_result_rxoffload = 15574 TOKEN_STRING_INITIALIZER 15575 (struct cmd_config_per_queue_rx_offload_result, 15576 rx_offload, "rx_offload"); 15577 cmdline_parse_token_string_t cmd_config_per_queue_rx_offload_result_offload = 15578 TOKEN_STRING_INITIALIZER 15579 (struct cmd_config_per_queue_rx_offload_result, 15580 offload, "vlan_strip#ipv4_cksum#udp_cksum#tcp_cksum#tcp_lro#" 15581 "qinq_strip#outer_ipv4_cksum#macsec_strip#" 15582 "header_split#vlan_filter#vlan_extend#jumbo_frame#" 15583 "scatter#buffer_split#timestamp#security#keep_crc"); 15584 cmdline_parse_token_string_t cmd_config_per_queue_rx_offload_result_on_off = 15585 TOKEN_STRING_INITIALIZER 15586 (struct cmd_config_per_queue_rx_offload_result, 15587 on_off, "on#off"); 15588 15589 static void 15590 cmd_config_per_queue_rx_offload_parsed(void *parsed_result, 15591 __rte_unused struct cmdline *cl, 15592 __rte_unused void *data) 15593 { 15594 struct cmd_config_per_queue_rx_offload_result *res = parsed_result; 15595 struct rte_eth_dev_info dev_info; 15596 portid_t port_id = res->port_id; 15597 uint16_t queue_id = res->queue_id; 15598 struct rte_port *port = &ports[port_id]; 15599 uint64_t single_offload; 15600 int ret; 15601 15602 if (port->port_status != RTE_PORT_STOPPED) { 15603 printf("Error: Can't config offload when Port %d " 15604 "is not stopped\n", port_id); 15605 return; 15606 } 15607 15608 ret = eth_dev_info_get_print_err(port_id, &dev_info); 15609 if (ret != 0) 15610 return; 15611 15612 if (queue_id >= dev_info.nb_rx_queues) { 15613 printf("Error: input queue_id should be 0 ... " 15614 "%d\n", dev_info.nb_rx_queues - 1); 15615 return; 15616 } 15617 15618 single_offload = search_rx_offload(res->offload); 15619 if (single_offload == 0) { 15620 printf("Unknown offload name: %s\n", res->offload); 15621 return; 15622 } 15623 15624 if (!strcmp(res->on_off, "on")) 15625 port->rx_conf[queue_id].offloads |= single_offload; 15626 else 15627 port->rx_conf[queue_id].offloads &= ~single_offload; 15628 15629 cmd_reconfig_device_queue(port_id, 1, 1); 15630 } 15631 15632 cmdline_parse_inst_t cmd_config_per_queue_rx_offload = { 15633 .f = cmd_config_per_queue_rx_offload_parsed, 15634 .data = NULL, 15635 .help_str = "port <port_id> rxq <queue_id> rx_offload " 15636 "vlan_strip|ipv4_cksum|" 15637 "udp_cksum|tcp_cksum|tcp_lro|qinq_strip|outer_ipv4_cksum|" 15638 "macsec_strip|header_split|vlan_filter|vlan_extend|" 15639 "jumbo_frame|scatter|buffer_split|timestamp|security|" 15640 "keep_crc on|off", 15641 .tokens = { 15642 (void *)&cmd_config_per_queue_rx_offload_result_port, 15643 (void *)&cmd_config_per_queue_rx_offload_result_port_id, 15644 (void *)&cmd_config_per_queue_rx_offload_result_rxq, 15645 (void *)&cmd_config_per_queue_rx_offload_result_queue_id, 15646 (void *)&cmd_config_per_queue_rx_offload_result_rxoffload, 15647 (void *)&cmd_config_per_queue_rx_offload_result_offload, 15648 (void *)&cmd_config_per_queue_rx_offload_result_on_off, 15649 NULL, 15650 } 15651 }; 15652 15653 /* Get Tx offloads capabilities */ 15654 struct cmd_tx_offload_get_capa_result { 15655 cmdline_fixed_string_t show; 15656 cmdline_fixed_string_t port; 15657 portid_t port_id; 15658 cmdline_fixed_string_t tx_offload; 15659 cmdline_fixed_string_t capabilities; 15660 }; 15661 15662 cmdline_parse_token_string_t cmd_tx_offload_get_capa_show = 15663 TOKEN_STRING_INITIALIZER 15664 (struct cmd_tx_offload_get_capa_result, 15665 show, "show"); 15666 cmdline_parse_token_string_t cmd_tx_offload_get_capa_port = 15667 TOKEN_STRING_INITIALIZER 15668 (struct cmd_tx_offload_get_capa_result, 15669 port, "port"); 15670 cmdline_parse_token_num_t cmd_tx_offload_get_capa_port_id = 15671 TOKEN_NUM_INITIALIZER 15672 (struct cmd_tx_offload_get_capa_result, 15673 port_id, RTE_UINT16); 15674 cmdline_parse_token_string_t cmd_tx_offload_get_capa_tx_offload = 15675 TOKEN_STRING_INITIALIZER 15676 (struct cmd_tx_offload_get_capa_result, 15677 tx_offload, "tx_offload"); 15678 cmdline_parse_token_string_t cmd_tx_offload_get_capa_capabilities = 15679 TOKEN_STRING_INITIALIZER 15680 (struct cmd_tx_offload_get_capa_result, 15681 capabilities, "capabilities"); 15682 15683 static void 15684 print_tx_offloads(uint64_t offloads) 15685 { 15686 uint64_t single_offload; 15687 int begin; 15688 int end; 15689 int bit; 15690 15691 if (offloads == 0) 15692 return; 15693 15694 begin = __builtin_ctzll(offloads); 15695 end = sizeof(offloads) * CHAR_BIT - __builtin_clzll(offloads); 15696 15697 single_offload = 1ULL << begin; 15698 for (bit = begin; bit < end; bit++) { 15699 if (offloads & single_offload) 15700 printf(" %s", 15701 rte_eth_dev_tx_offload_name(single_offload)); 15702 single_offload <<= 1; 15703 } 15704 } 15705 15706 static void 15707 cmd_tx_offload_get_capa_parsed( 15708 void *parsed_result, 15709 __rte_unused struct cmdline *cl, 15710 __rte_unused void *data) 15711 { 15712 struct cmd_tx_offload_get_capa_result *res = parsed_result; 15713 struct rte_eth_dev_info dev_info; 15714 portid_t port_id = res->port_id; 15715 uint64_t queue_offloads; 15716 uint64_t port_offloads; 15717 int ret; 15718 15719 ret = eth_dev_info_get_print_err(port_id, &dev_info); 15720 if (ret != 0) 15721 return; 15722 15723 queue_offloads = dev_info.tx_queue_offload_capa; 15724 port_offloads = dev_info.tx_offload_capa ^ queue_offloads; 15725 15726 printf("Tx Offloading Capabilities of port %d :\n", port_id); 15727 printf(" Per Queue :"); 15728 print_tx_offloads(queue_offloads); 15729 15730 printf("\n"); 15731 printf(" Per Port :"); 15732 print_tx_offloads(port_offloads); 15733 printf("\n\n"); 15734 } 15735 15736 cmdline_parse_inst_t cmd_tx_offload_get_capa = { 15737 .f = cmd_tx_offload_get_capa_parsed, 15738 .data = NULL, 15739 .help_str = "show port <port_id> tx_offload capabilities", 15740 .tokens = { 15741 (void *)&cmd_tx_offload_get_capa_show, 15742 (void *)&cmd_tx_offload_get_capa_port, 15743 (void *)&cmd_tx_offload_get_capa_port_id, 15744 (void *)&cmd_tx_offload_get_capa_tx_offload, 15745 (void *)&cmd_tx_offload_get_capa_capabilities, 15746 NULL, 15747 } 15748 }; 15749 15750 /* Get Tx offloads configuration */ 15751 struct cmd_tx_offload_get_configuration_result { 15752 cmdline_fixed_string_t show; 15753 cmdline_fixed_string_t port; 15754 portid_t port_id; 15755 cmdline_fixed_string_t tx_offload; 15756 cmdline_fixed_string_t configuration; 15757 }; 15758 15759 cmdline_parse_token_string_t cmd_tx_offload_get_configuration_show = 15760 TOKEN_STRING_INITIALIZER 15761 (struct cmd_tx_offload_get_configuration_result, 15762 show, "show"); 15763 cmdline_parse_token_string_t cmd_tx_offload_get_configuration_port = 15764 TOKEN_STRING_INITIALIZER 15765 (struct cmd_tx_offload_get_configuration_result, 15766 port, "port"); 15767 cmdline_parse_token_num_t cmd_tx_offload_get_configuration_port_id = 15768 TOKEN_NUM_INITIALIZER 15769 (struct cmd_tx_offload_get_configuration_result, 15770 port_id, RTE_UINT16); 15771 cmdline_parse_token_string_t cmd_tx_offload_get_configuration_tx_offload = 15772 TOKEN_STRING_INITIALIZER 15773 (struct cmd_tx_offload_get_configuration_result, 15774 tx_offload, "tx_offload"); 15775 cmdline_parse_token_string_t cmd_tx_offload_get_configuration_configuration = 15776 TOKEN_STRING_INITIALIZER 15777 (struct cmd_tx_offload_get_configuration_result, 15778 configuration, "configuration"); 15779 15780 static void 15781 cmd_tx_offload_get_configuration_parsed( 15782 void *parsed_result, 15783 __rte_unused struct cmdline *cl, 15784 __rte_unused void *data) 15785 { 15786 struct cmd_tx_offload_get_configuration_result *res = parsed_result; 15787 struct rte_eth_dev_info dev_info; 15788 portid_t port_id = res->port_id; 15789 struct rte_port *port = &ports[port_id]; 15790 uint64_t port_offloads; 15791 uint64_t queue_offloads; 15792 uint16_t nb_tx_queues; 15793 int q; 15794 int ret; 15795 15796 printf("Tx Offloading Configuration of port %d :\n", port_id); 15797 15798 port_offloads = port->dev_conf.txmode.offloads; 15799 printf(" Port :"); 15800 print_tx_offloads(port_offloads); 15801 printf("\n"); 15802 15803 ret = eth_dev_info_get_print_err(port_id, &dev_info); 15804 if (ret != 0) 15805 return; 15806 15807 nb_tx_queues = dev_info.nb_tx_queues; 15808 for (q = 0; q < nb_tx_queues; q++) { 15809 queue_offloads = port->tx_conf[q].offloads; 15810 printf(" Queue[%2d] :", q); 15811 print_tx_offloads(queue_offloads); 15812 printf("\n"); 15813 } 15814 printf("\n"); 15815 } 15816 15817 cmdline_parse_inst_t cmd_tx_offload_get_configuration = { 15818 .f = cmd_tx_offload_get_configuration_parsed, 15819 .data = NULL, 15820 .help_str = "show port <port_id> tx_offload configuration", 15821 .tokens = { 15822 (void *)&cmd_tx_offload_get_configuration_show, 15823 (void *)&cmd_tx_offload_get_configuration_port, 15824 (void *)&cmd_tx_offload_get_configuration_port_id, 15825 (void *)&cmd_tx_offload_get_configuration_tx_offload, 15826 (void *)&cmd_tx_offload_get_configuration_configuration, 15827 NULL, 15828 } 15829 }; 15830 15831 /* Enable/Disable a per port offloading */ 15832 struct cmd_config_per_port_tx_offload_result { 15833 cmdline_fixed_string_t port; 15834 cmdline_fixed_string_t config; 15835 portid_t port_id; 15836 cmdline_fixed_string_t tx_offload; 15837 cmdline_fixed_string_t offload; 15838 cmdline_fixed_string_t on_off; 15839 }; 15840 15841 cmdline_parse_token_string_t cmd_config_per_port_tx_offload_result_port = 15842 TOKEN_STRING_INITIALIZER 15843 (struct cmd_config_per_port_tx_offload_result, 15844 port, "port"); 15845 cmdline_parse_token_string_t cmd_config_per_port_tx_offload_result_config = 15846 TOKEN_STRING_INITIALIZER 15847 (struct cmd_config_per_port_tx_offload_result, 15848 config, "config"); 15849 cmdline_parse_token_num_t cmd_config_per_port_tx_offload_result_port_id = 15850 TOKEN_NUM_INITIALIZER 15851 (struct cmd_config_per_port_tx_offload_result, 15852 port_id, RTE_UINT16); 15853 cmdline_parse_token_string_t cmd_config_per_port_tx_offload_result_tx_offload = 15854 TOKEN_STRING_INITIALIZER 15855 (struct cmd_config_per_port_tx_offload_result, 15856 tx_offload, "tx_offload"); 15857 cmdline_parse_token_string_t cmd_config_per_port_tx_offload_result_offload = 15858 TOKEN_STRING_INITIALIZER 15859 (struct cmd_config_per_port_tx_offload_result, 15860 offload, "vlan_insert#ipv4_cksum#udp_cksum#tcp_cksum#" 15861 "sctp_cksum#tcp_tso#udp_tso#outer_ipv4_cksum#" 15862 "qinq_insert#vxlan_tnl_tso#gre_tnl_tso#" 15863 "ipip_tnl_tso#geneve_tnl_tso#macsec_insert#" 15864 "mt_lockfree#multi_segs#mbuf_fast_free#security#" 15865 "send_on_timestamp"); 15866 cmdline_parse_token_string_t cmd_config_per_port_tx_offload_result_on_off = 15867 TOKEN_STRING_INITIALIZER 15868 (struct cmd_config_per_port_tx_offload_result, 15869 on_off, "on#off"); 15870 15871 static uint64_t 15872 search_tx_offload(const char *name) 15873 { 15874 uint64_t single_offload; 15875 const char *single_name; 15876 int found = 0; 15877 unsigned int bit; 15878 15879 single_offload = 1; 15880 for (bit = 0; bit < sizeof(single_offload) * CHAR_BIT; bit++) { 15881 single_name = rte_eth_dev_tx_offload_name(single_offload); 15882 if (single_name == NULL) 15883 break; 15884 if (!strcasecmp(single_name, name)) { 15885 found = 1; 15886 break; 15887 } else if (!strcasecmp(single_name, "UNKNOWN")) 15888 break; 15889 single_offload <<= 1; 15890 } 15891 15892 if (found) 15893 return single_offload; 15894 15895 return 0; 15896 } 15897 15898 static void 15899 cmd_config_per_port_tx_offload_parsed(void *parsed_result, 15900 __rte_unused struct cmdline *cl, 15901 __rte_unused void *data) 15902 { 15903 struct cmd_config_per_port_tx_offload_result *res = parsed_result; 15904 portid_t port_id = res->port_id; 15905 struct rte_eth_dev_info dev_info; 15906 struct rte_port *port = &ports[port_id]; 15907 uint64_t single_offload; 15908 uint16_t nb_tx_queues; 15909 int q; 15910 int ret; 15911 15912 if (port->port_status != RTE_PORT_STOPPED) { 15913 printf("Error: Can't config offload when Port %d " 15914 "is not stopped\n", port_id); 15915 return; 15916 } 15917 15918 single_offload = search_tx_offload(res->offload); 15919 if (single_offload == 0) { 15920 printf("Unknown offload name: %s\n", res->offload); 15921 return; 15922 } 15923 15924 ret = eth_dev_info_get_print_err(port_id, &dev_info); 15925 if (ret != 0) 15926 return; 15927 15928 nb_tx_queues = dev_info.nb_tx_queues; 15929 if (!strcmp(res->on_off, "on")) { 15930 port->dev_conf.txmode.offloads |= single_offload; 15931 for (q = 0; q < nb_tx_queues; q++) 15932 port->tx_conf[q].offloads |= single_offload; 15933 } else { 15934 port->dev_conf.txmode.offloads &= ~single_offload; 15935 for (q = 0; q < nb_tx_queues; q++) 15936 port->tx_conf[q].offloads &= ~single_offload; 15937 } 15938 15939 cmd_reconfig_device_queue(port_id, 1, 1); 15940 } 15941 15942 cmdline_parse_inst_t cmd_config_per_port_tx_offload = { 15943 .f = cmd_config_per_port_tx_offload_parsed, 15944 .data = NULL, 15945 .help_str = "port config <port_id> tx_offload " 15946 "vlan_insert|ipv4_cksum|udp_cksum|tcp_cksum|" 15947 "sctp_cksum|tcp_tso|udp_tso|outer_ipv4_cksum|" 15948 "qinq_insert|vxlan_tnl_tso|gre_tnl_tso|" 15949 "ipip_tnl_tso|geneve_tnl_tso|macsec_insert|" 15950 "mt_lockfree|multi_segs|mbuf_fast_free|security|" 15951 "send_on_timestamp on|off", 15952 .tokens = { 15953 (void *)&cmd_config_per_port_tx_offload_result_port, 15954 (void *)&cmd_config_per_port_tx_offload_result_config, 15955 (void *)&cmd_config_per_port_tx_offload_result_port_id, 15956 (void *)&cmd_config_per_port_tx_offload_result_tx_offload, 15957 (void *)&cmd_config_per_port_tx_offload_result_offload, 15958 (void *)&cmd_config_per_port_tx_offload_result_on_off, 15959 NULL, 15960 } 15961 }; 15962 15963 /* Enable/Disable a per queue offloading */ 15964 struct cmd_config_per_queue_tx_offload_result { 15965 cmdline_fixed_string_t port; 15966 portid_t port_id; 15967 cmdline_fixed_string_t txq; 15968 uint16_t queue_id; 15969 cmdline_fixed_string_t tx_offload; 15970 cmdline_fixed_string_t offload; 15971 cmdline_fixed_string_t on_off; 15972 }; 15973 15974 cmdline_parse_token_string_t cmd_config_per_queue_tx_offload_result_port = 15975 TOKEN_STRING_INITIALIZER 15976 (struct cmd_config_per_queue_tx_offload_result, 15977 port, "port"); 15978 cmdline_parse_token_num_t cmd_config_per_queue_tx_offload_result_port_id = 15979 TOKEN_NUM_INITIALIZER 15980 (struct cmd_config_per_queue_tx_offload_result, 15981 port_id, RTE_UINT16); 15982 cmdline_parse_token_string_t cmd_config_per_queue_tx_offload_result_txq = 15983 TOKEN_STRING_INITIALIZER 15984 (struct cmd_config_per_queue_tx_offload_result, 15985 txq, "txq"); 15986 cmdline_parse_token_num_t cmd_config_per_queue_tx_offload_result_queue_id = 15987 TOKEN_NUM_INITIALIZER 15988 (struct cmd_config_per_queue_tx_offload_result, 15989 queue_id, RTE_UINT16); 15990 cmdline_parse_token_string_t cmd_config_per_queue_tx_offload_result_txoffload = 15991 TOKEN_STRING_INITIALIZER 15992 (struct cmd_config_per_queue_tx_offload_result, 15993 tx_offload, "tx_offload"); 15994 cmdline_parse_token_string_t cmd_config_per_queue_tx_offload_result_offload = 15995 TOKEN_STRING_INITIALIZER 15996 (struct cmd_config_per_queue_tx_offload_result, 15997 offload, "vlan_insert#ipv4_cksum#udp_cksum#tcp_cksum#" 15998 "sctp_cksum#tcp_tso#udp_tso#outer_ipv4_cksum#" 15999 "qinq_insert#vxlan_tnl_tso#gre_tnl_tso#" 16000 "ipip_tnl_tso#geneve_tnl_tso#macsec_insert#" 16001 "mt_lockfree#multi_segs#mbuf_fast_free#security"); 16002 cmdline_parse_token_string_t cmd_config_per_queue_tx_offload_result_on_off = 16003 TOKEN_STRING_INITIALIZER 16004 (struct cmd_config_per_queue_tx_offload_result, 16005 on_off, "on#off"); 16006 16007 static void 16008 cmd_config_per_queue_tx_offload_parsed(void *parsed_result, 16009 __rte_unused struct cmdline *cl, 16010 __rte_unused void *data) 16011 { 16012 struct cmd_config_per_queue_tx_offload_result *res = parsed_result; 16013 struct rte_eth_dev_info dev_info; 16014 portid_t port_id = res->port_id; 16015 uint16_t queue_id = res->queue_id; 16016 struct rte_port *port = &ports[port_id]; 16017 uint64_t single_offload; 16018 int ret; 16019 16020 if (port->port_status != RTE_PORT_STOPPED) { 16021 printf("Error: Can't config offload when Port %d " 16022 "is not stopped\n", port_id); 16023 return; 16024 } 16025 16026 ret = eth_dev_info_get_print_err(port_id, &dev_info); 16027 if (ret != 0) 16028 return; 16029 16030 if (queue_id >= dev_info.nb_tx_queues) { 16031 printf("Error: input queue_id should be 0 ... " 16032 "%d\n", dev_info.nb_tx_queues - 1); 16033 return; 16034 } 16035 16036 single_offload = search_tx_offload(res->offload); 16037 if (single_offload == 0) { 16038 printf("Unknown offload name: %s\n", res->offload); 16039 return; 16040 } 16041 16042 if (!strcmp(res->on_off, "on")) 16043 port->tx_conf[queue_id].offloads |= single_offload; 16044 else 16045 port->tx_conf[queue_id].offloads &= ~single_offload; 16046 16047 cmd_reconfig_device_queue(port_id, 1, 1); 16048 } 16049 16050 cmdline_parse_inst_t cmd_config_per_queue_tx_offload = { 16051 .f = cmd_config_per_queue_tx_offload_parsed, 16052 .data = NULL, 16053 .help_str = "port <port_id> txq <queue_id> tx_offload " 16054 "vlan_insert|ipv4_cksum|udp_cksum|tcp_cksum|" 16055 "sctp_cksum|tcp_tso|udp_tso|outer_ipv4_cksum|" 16056 "qinq_insert|vxlan_tnl_tso|gre_tnl_tso|" 16057 "ipip_tnl_tso|geneve_tnl_tso|macsec_insert|" 16058 "mt_lockfree|multi_segs|mbuf_fast_free|security " 16059 "on|off", 16060 .tokens = { 16061 (void *)&cmd_config_per_queue_tx_offload_result_port, 16062 (void *)&cmd_config_per_queue_tx_offload_result_port_id, 16063 (void *)&cmd_config_per_queue_tx_offload_result_txq, 16064 (void *)&cmd_config_per_queue_tx_offload_result_queue_id, 16065 (void *)&cmd_config_per_queue_tx_offload_result_txoffload, 16066 (void *)&cmd_config_per_queue_tx_offload_result_offload, 16067 (void *)&cmd_config_per_queue_tx_offload_result_on_off, 16068 NULL, 16069 } 16070 }; 16071 16072 /* *** configure tx_metadata for specific port *** */ 16073 struct cmd_config_tx_metadata_specific_result { 16074 cmdline_fixed_string_t port; 16075 cmdline_fixed_string_t keyword; 16076 uint16_t port_id; 16077 cmdline_fixed_string_t item; 16078 uint32_t value; 16079 }; 16080 16081 static void 16082 cmd_config_tx_metadata_specific_parsed(void *parsed_result, 16083 __rte_unused struct cmdline *cl, 16084 __rte_unused void *data) 16085 { 16086 struct cmd_config_tx_metadata_specific_result *res = parsed_result; 16087 16088 if (port_id_is_invalid(res->port_id, ENABLED_WARN)) 16089 return; 16090 ports[res->port_id].tx_metadata = res->value; 16091 /* Add/remove callback to insert valid metadata in every Tx packet. */ 16092 if (ports[res->port_id].tx_metadata) 16093 add_tx_md_callback(res->port_id); 16094 else 16095 remove_tx_md_callback(res->port_id); 16096 rte_flow_dynf_metadata_register(); 16097 } 16098 16099 cmdline_parse_token_string_t cmd_config_tx_metadata_specific_port = 16100 TOKEN_STRING_INITIALIZER(struct cmd_config_tx_metadata_specific_result, 16101 port, "port"); 16102 cmdline_parse_token_string_t cmd_config_tx_metadata_specific_keyword = 16103 TOKEN_STRING_INITIALIZER(struct cmd_config_tx_metadata_specific_result, 16104 keyword, "config"); 16105 cmdline_parse_token_num_t cmd_config_tx_metadata_specific_id = 16106 TOKEN_NUM_INITIALIZER(struct cmd_config_tx_metadata_specific_result, 16107 port_id, RTE_UINT16); 16108 cmdline_parse_token_string_t cmd_config_tx_metadata_specific_item = 16109 TOKEN_STRING_INITIALIZER(struct cmd_config_tx_metadata_specific_result, 16110 item, "tx_metadata"); 16111 cmdline_parse_token_num_t cmd_config_tx_metadata_specific_value = 16112 TOKEN_NUM_INITIALIZER(struct cmd_config_tx_metadata_specific_result, 16113 value, RTE_UINT32); 16114 16115 cmdline_parse_inst_t cmd_config_tx_metadata_specific = { 16116 .f = cmd_config_tx_metadata_specific_parsed, 16117 .data = NULL, 16118 .help_str = "port config <port_id> tx_metadata <value>", 16119 .tokens = { 16120 (void *)&cmd_config_tx_metadata_specific_port, 16121 (void *)&cmd_config_tx_metadata_specific_keyword, 16122 (void *)&cmd_config_tx_metadata_specific_id, 16123 (void *)&cmd_config_tx_metadata_specific_item, 16124 (void *)&cmd_config_tx_metadata_specific_value, 16125 NULL, 16126 }, 16127 }; 16128 16129 /* *** set dynf *** */ 16130 struct cmd_config_tx_dynf_specific_result { 16131 cmdline_fixed_string_t port; 16132 cmdline_fixed_string_t keyword; 16133 uint16_t port_id; 16134 cmdline_fixed_string_t item; 16135 cmdline_fixed_string_t name; 16136 cmdline_fixed_string_t value; 16137 }; 16138 16139 static void 16140 cmd_config_dynf_specific_parsed(void *parsed_result, 16141 __rte_unused struct cmdline *cl, 16142 __rte_unused void *data) 16143 { 16144 struct cmd_config_tx_dynf_specific_result *res = parsed_result; 16145 struct rte_mbuf_dynflag desc_flag; 16146 int flag; 16147 uint64_t old_port_flags; 16148 16149 if (port_id_is_invalid(res->port_id, ENABLED_WARN)) 16150 return; 16151 flag = rte_mbuf_dynflag_lookup(res->name, NULL); 16152 if (flag <= 0) { 16153 if (strlcpy(desc_flag.name, res->name, 16154 RTE_MBUF_DYN_NAMESIZE) >= RTE_MBUF_DYN_NAMESIZE) { 16155 printf("Flag name too long\n"); 16156 return; 16157 } 16158 desc_flag.flags = 0; 16159 flag = rte_mbuf_dynflag_register(&desc_flag); 16160 if (flag < 0) { 16161 printf("Can't register flag\n"); 16162 return; 16163 } 16164 strcpy(dynf_names[flag], desc_flag.name); 16165 } 16166 old_port_flags = ports[res->port_id].mbuf_dynf; 16167 if (!strcmp(res->value, "set")) { 16168 ports[res->port_id].mbuf_dynf |= 1UL << flag; 16169 if (old_port_flags == 0) 16170 add_tx_dynf_callback(res->port_id); 16171 } else { 16172 ports[res->port_id].mbuf_dynf &= ~(1UL << flag); 16173 if (ports[res->port_id].mbuf_dynf == 0) 16174 remove_tx_dynf_callback(res->port_id); 16175 } 16176 } 16177 16178 cmdline_parse_token_string_t cmd_config_tx_dynf_specific_port = 16179 TOKEN_STRING_INITIALIZER(struct cmd_config_tx_dynf_specific_result, 16180 keyword, "port"); 16181 cmdline_parse_token_string_t cmd_config_tx_dynf_specific_keyword = 16182 TOKEN_STRING_INITIALIZER(struct cmd_config_tx_dynf_specific_result, 16183 keyword, "config"); 16184 cmdline_parse_token_num_t cmd_config_tx_dynf_specific_port_id = 16185 TOKEN_NUM_INITIALIZER(struct cmd_config_tx_dynf_specific_result, 16186 port_id, RTE_UINT16); 16187 cmdline_parse_token_string_t cmd_config_tx_dynf_specific_item = 16188 TOKEN_STRING_INITIALIZER(struct cmd_config_tx_dynf_specific_result, 16189 item, "dynf"); 16190 cmdline_parse_token_string_t cmd_config_tx_dynf_specific_name = 16191 TOKEN_STRING_INITIALIZER(struct cmd_config_tx_dynf_specific_result, 16192 name, NULL); 16193 cmdline_parse_token_string_t cmd_config_tx_dynf_specific_value = 16194 TOKEN_STRING_INITIALIZER(struct cmd_config_tx_dynf_specific_result, 16195 value, "set#clear"); 16196 16197 cmdline_parse_inst_t cmd_config_tx_dynf_specific = { 16198 .f = cmd_config_dynf_specific_parsed, 16199 .data = NULL, 16200 .help_str = "port config <port id> dynf <name> set|clear", 16201 .tokens = { 16202 (void *)&cmd_config_tx_dynf_specific_port, 16203 (void *)&cmd_config_tx_dynf_specific_keyword, 16204 (void *)&cmd_config_tx_dynf_specific_port_id, 16205 (void *)&cmd_config_tx_dynf_specific_item, 16206 (void *)&cmd_config_tx_dynf_specific_name, 16207 (void *)&cmd_config_tx_dynf_specific_value, 16208 NULL, 16209 }, 16210 }; 16211 16212 /* *** display tx_metadata per port configuration *** */ 16213 struct cmd_show_tx_metadata_result { 16214 cmdline_fixed_string_t cmd_show; 16215 cmdline_fixed_string_t cmd_port; 16216 cmdline_fixed_string_t cmd_keyword; 16217 portid_t cmd_pid; 16218 }; 16219 16220 static void 16221 cmd_show_tx_metadata_parsed(void *parsed_result, 16222 __rte_unused struct cmdline *cl, 16223 __rte_unused void *data) 16224 { 16225 struct cmd_show_tx_metadata_result *res = parsed_result; 16226 16227 if (!rte_eth_dev_is_valid_port(res->cmd_pid)) { 16228 printf("invalid port id %u\n", res->cmd_pid); 16229 return; 16230 } 16231 if (!strcmp(res->cmd_keyword, "tx_metadata")) { 16232 printf("Port %u tx_metadata: %u\n", res->cmd_pid, 16233 ports[res->cmd_pid].tx_metadata); 16234 } 16235 } 16236 16237 cmdline_parse_token_string_t cmd_show_tx_metadata_show = 16238 TOKEN_STRING_INITIALIZER(struct cmd_show_tx_metadata_result, 16239 cmd_show, "show"); 16240 cmdline_parse_token_string_t cmd_show_tx_metadata_port = 16241 TOKEN_STRING_INITIALIZER(struct cmd_show_tx_metadata_result, 16242 cmd_port, "port"); 16243 cmdline_parse_token_num_t cmd_show_tx_metadata_pid = 16244 TOKEN_NUM_INITIALIZER(struct cmd_show_tx_metadata_result, 16245 cmd_pid, RTE_UINT16); 16246 cmdline_parse_token_string_t cmd_show_tx_metadata_keyword = 16247 TOKEN_STRING_INITIALIZER(struct cmd_show_tx_metadata_result, 16248 cmd_keyword, "tx_metadata"); 16249 16250 cmdline_parse_inst_t cmd_show_tx_metadata = { 16251 .f = cmd_show_tx_metadata_parsed, 16252 .data = NULL, 16253 .help_str = "show port <port_id> tx_metadata", 16254 .tokens = { 16255 (void *)&cmd_show_tx_metadata_show, 16256 (void *)&cmd_show_tx_metadata_port, 16257 (void *)&cmd_show_tx_metadata_pid, 16258 (void *)&cmd_show_tx_metadata_keyword, 16259 NULL, 16260 }, 16261 }; 16262 16263 /* *** show fec capability per port configuration *** */ 16264 struct cmd_show_fec_capability_result { 16265 cmdline_fixed_string_t cmd_show; 16266 cmdline_fixed_string_t cmd_port; 16267 cmdline_fixed_string_t cmd_fec; 16268 cmdline_fixed_string_t cmd_keyword; 16269 portid_t cmd_pid; 16270 }; 16271 16272 static void 16273 cmd_show_fec_capability_parsed(void *parsed_result, 16274 __rte_unused struct cmdline *cl, 16275 __rte_unused void *data) 16276 { 16277 struct cmd_show_fec_capability_result *res = parsed_result; 16278 struct rte_eth_fec_capa *speed_fec_capa; 16279 unsigned int num; 16280 int ret; 16281 16282 if (!rte_eth_dev_is_valid_port(res->cmd_pid)) { 16283 printf("Invalid port id %u\n", res->cmd_pid); 16284 return; 16285 } 16286 16287 ret = rte_eth_fec_get_capability(res->cmd_pid, NULL, 0); 16288 if (ret == -ENOTSUP) { 16289 printf("Function not implemented\n"); 16290 return; 16291 } else if (ret < 0) { 16292 printf("Get FEC capability failed: %d\n", ret); 16293 return; 16294 } 16295 16296 num = (unsigned int)ret; 16297 speed_fec_capa = calloc(num, sizeof(*speed_fec_capa)); 16298 if (speed_fec_capa == NULL) { 16299 printf("Failed to alloc FEC capability buffer\n"); 16300 return; 16301 } 16302 16303 ret = rte_eth_fec_get_capability(res->cmd_pid, speed_fec_capa, num); 16304 if (ret < 0) { 16305 printf("Error getting FEC capability: %d\n", ret); 16306 goto out; 16307 } 16308 16309 show_fec_capability(num, speed_fec_capa); 16310 out: 16311 free(speed_fec_capa); 16312 } 16313 16314 cmdline_parse_token_string_t cmd_show_fec_capability_show = 16315 TOKEN_STRING_INITIALIZER(struct cmd_show_fec_capability_result, 16316 cmd_show, "show"); 16317 cmdline_parse_token_string_t cmd_show_fec_capability_port = 16318 TOKEN_STRING_INITIALIZER(struct cmd_show_fec_capability_result, 16319 cmd_port, "port"); 16320 cmdline_parse_token_num_t cmd_show_fec_capability_pid = 16321 TOKEN_NUM_INITIALIZER(struct cmd_show_fec_capability_result, 16322 cmd_pid, RTE_UINT16); 16323 cmdline_parse_token_string_t cmd_show_fec_capability_fec = 16324 TOKEN_STRING_INITIALIZER(struct cmd_show_fec_capability_result, 16325 cmd_fec, "fec"); 16326 cmdline_parse_token_string_t cmd_show_fec_capability_keyword = 16327 TOKEN_STRING_INITIALIZER(struct cmd_show_fec_capability_result, 16328 cmd_keyword, "capabilities"); 16329 16330 cmdline_parse_inst_t cmd_show_capability = { 16331 .f = cmd_show_fec_capability_parsed, 16332 .data = NULL, 16333 .help_str = "show port <port_id> fec capabilities", 16334 .tokens = { 16335 (void *)&cmd_show_fec_capability_show, 16336 (void *)&cmd_show_fec_capability_port, 16337 (void *)&cmd_show_fec_capability_pid, 16338 (void *)&cmd_show_fec_capability_fec, 16339 (void *)&cmd_show_fec_capability_keyword, 16340 NULL, 16341 }, 16342 }; 16343 16344 /* *** show fec mode per port configuration *** */ 16345 struct cmd_show_fec_metadata_result { 16346 cmdline_fixed_string_t cmd_show; 16347 cmdline_fixed_string_t cmd_port; 16348 cmdline_fixed_string_t cmd_keyword; 16349 portid_t cmd_pid; 16350 }; 16351 16352 static void 16353 cmd_show_fec_mode_parsed(void *parsed_result, 16354 __rte_unused struct cmdline *cl, 16355 __rte_unused void *data) 16356 { 16357 #define FEC_NAME_SIZE 16 16358 struct cmd_show_fec_metadata_result *res = parsed_result; 16359 uint32_t mode; 16360 char buf[FEC_NAME_SIZE]; 16361 int ret; 16362 16363 if (!rte_eth_dev_is_valid_port(res->cmd_pid)) { 16364 printf("Invalid port id %u\n", res->cmd_pid); 16365 return; 16366 } 16367 ret = rte_eth_fec_get(res->cmd_pid, &mode); 16368 if (ret == -ENOTSUP) { 16369 printf("Function not implemented\n"); 16370 return; 16371 } else if (ret < 0) { 16372 printf("Get FEC mode failed\n"); 16373 return; 16374 } 16375 16376 switch (mode) { 16377 case RTE_ETH_FEC_MODE_CAPA_MASK(NOFEC): 16378 strlcpy(buf, "off", sizeof(buf)); 16379 break; 16380 case RTE_ETH_FEC_MODE_CAPA_MASK(AUTO): 16381 strlcpy(buf, "auto", sizeof(buf)); 16382 break; 16383 case RTE_ETH_FEC_MODE_CAPA_MASK(BASER): 16384 strlcpy(buf, "baser", sizeof(buf)); 16385 break; 16386 case RTE_ETH_FEC_MODE_CAPA_MASK(RS): 16387 strlcpy(buf, "rs", sizeof(buf)); 16388 break; 16389 default: 16390 return; 16391 } 16392 16393 printf("%s\n", buf); 16394 } 16395 16396 cmdline_parse_token_string_t cmd_show_fec_mode_show = 16397 TOKEN_STRING_INITIALIZER(struct cmd_show_fec_metadata_result, 16398 cmd_show, "show"); 16399 cmdline_parse_token_string_t cmd_show_fec_mode_port = 16400 TOKEN_STRING_INITIALIZER(struct cmd_show_fec_metadata_result, 16401 cmd_port, "port"); 16402 cmdline_parse_token_num_t cmd_show_fec_mode_pid = 16403 TOKEN_NUM_INITIALIZER(struct cmd_show_fec_metadata_result, 16404 cmd_pid, RTE_UINT16); 16405 cmdline_parse_token_string_t cmd_show_fec_mode_keyword = 16406 TOKEN_STRING_INITIALIZER(struct cmd_show_fec_metadata_result, 16407 cmd_keyword, "fec_mode"); 16408 16409 cmdline_parse_inst_t cmd_show_fec_mode = { 16410 .f = cmd_show_fec_mode_parsed, 16411 .data = NULL, 16412 .help_str = "show port <port_id> fec_mode", 16413 .tokens = { 16414 (void *)&cmd_show_fec_mode_show, 16415 (void *)&cmd_show_fec_mode_port, 16416 (void *)&cmd_show_fec_mode_pid, 16417 (void *)&cmd_show_fec_mode_keyword, 16418 NULL, 16419 }, 16420 }; 16421 16422 /* *** set fec mode per port configuration *** */ 16423 struct cmd_set_port_fec_mode { 16424 cmdline_fixed_string_t set; 16425 cmdline_fixed_string_t port; 16426 portid_t port_id; 16427 cmdline_fixed_string_t fec_mode; 16428 cmdline_fixed_string_t fec_value; 16429 }; 16430 16431 /* Common CLI fields for set fec mode */ 16432 cmdline_parse_token_string_t cmd_set_port_fec_mode_set = 16433 TOKEN_STRING_INITIALIZER 16434 (struct cmd_set_port_fec_mode, 16435 set, "set"); 16436 cmdline_parse_token_string_t cmd_set_port_fec_mode_port = 16437 TOKEN_STRING_INITIALIZER 16438 (struct cmd_set_port_fec_mode, 16439 port, "port"); 16440 cmdline_parse_token_num_t cmd_set_port_fec_mode_port_id = 16441 TOKEN_NUM_INITIALIZER 16442 (struct cmd_set_port_fec_mode, 16443 port_id, RTE_UINT16); 16444 cmdline_parse_token_string_t cmd_set_port_fec_mode_str = 16445 TOKEN_STRING_INITIALIZER 16446 (struct cmd_set_port_fec_mode, 16447 fec_mode, "fec_mode"); 16448 cmdline_parse_token_string_t cmd_set_port_fec_mode_value = 16449 TOKEN_STRING_INITIALIZER 16450 (struct cmd_set_port_fec_mode, 16451 fec_value, NULL); 16452 16453 static void 16454 cmd_set_port_fec_mode_parsed( 16455 void *parsed_result, 16456 __rte_unused struct cmdline *cl, 16457 __rte_unused void *data) 16458 { 16459 struct cmd_set_port_fec_mode *res = parsed_result; 16460 uint16_t port_id = res->port_id; 16461 uint32_t mode; 16462 int ret; 16463 16464 ret = parse_fec_mode(res->fec_value, &mode); 16465 if (ret < 0) { 16466 printf("Unknown fec mode: %s for Port %d\n", res->fec_value, 16467 port_id); 16468 return; 16469 } 16470 16471 ret = rte_eth_fec_set(port_id, mode); 16472 if (ret == -ENOTSUP) { 16473 printf("Function not implemented\n"); 16474 return; 16475 } else if (ret < 0) { 16476 printf("Set FEC mode failed\n"); 16477 return; 16478 } 16479 } 16480 16481 cmdline_parse_inst_t cmd_set_fec_mode = { 16482 .f = cmd_set_port_fec_mode_parsed, 16483 .data = NULL, 16484 .help_str = "set port <port_id> fec_mode auto|off|rs|baser", 16485 .tokens = { 16486 (void *)&cmd_set_port_fec_mode_set, 16487 (void *)&cmd_set_port_fec_mode_port, 16488 (void *)&cmd_set_port_fec_mode_port_id, 16489 (void *)&cmd_set_port_fec_mode_str, 16490 (void *)&cmd_set_port_fec_mode_value, 16491 NULL, 16492 }, 16493 }; 16494 16495 /* show port supported ptypes */ 16496 16497 /* Common result structure for show port ptypes */ 16498 struct cmd_show_port_supported_ptypes_result { 16499 cmdline_fixed_string_t show; 16500 cmdline_fixed_string_t port; 16501 portid_t port_id; 16502 cmdline_fixed_string_t ptypes; 16503 }; 16504 16505 /* Common CLI fields for show port ptypes */ 16506 cmdline_parse_token_string_t cmd_show_port_supported_ptypes_show = 16507 TOKEN_STRING_INITIALIZER 16508 (struct cmd_show_port_supported_ptypes_result, 16509 show, "show"); 16510 cmdline_parse_token_string_t cmd_show_port_supported_ptypes_port = 16511 TOKEN_STRING_INITIALIZER 16512 (struct cmd_show_port_supported_ptypes_result, 16513 port, "port"); 16514 cmdline_parse_token_num_t cmd_show_port_supported_ptypes_port_id = 16515 TOKEN_NUM_INITIALIZER 16516 (struct cmd_show_port_supported_ptypes_result, 16517 port_id, RTE_UINT16); 16518 cmdline_parse_token_string_t cmd_show_port_supported_ptypes_ptypes = 16519 TOKEN_STRING_INITIALIZER 16520 (struct cmd_show_port_supported_ptypes_result, 16521 ptypes, "ptypes"); 16522 16523 static void 16524 cmd_show_port_supported_ptypes_parsed( 16525 void *parsed_result, 16526 __rte_unused struct cmdline *cl, 16527 __rte_unused void *data) 16528 { 16529 #define RSVD_PTYPE_MASK 0xf0000000 16530 #define MAX_PTYPES_PER_LAYER 16 16531 #define LTYPE_NAMESIZE 32 16532 #define PTYPE_NAMESIZE 256 16533 struct cmd_show_port_supported_ptypes_result *res = parsed_result; 16534 char buf[PTYPE_NAMESIZE], ltype[LTYPE_NAMESIZE]; 16535 uint32_t ptype_mask = RTE_PTYPE_L2_MASK; 16536 uint32_t ptypes[MAX_PTYPES_PER_LAYER]; 16537 uint16_t port_id = res->port_id; 16538 int ret, i; 16539 16540 ret = rte_eth_dev_get_supported_ptypes(port_id, ptype_mask, NULL, 0); 16541 if (ret < 0) 16542 return; 16543 16544 while (ptype_mask != RSVD_PTYPE_MASK) { 16545 16546 switch (ptype_mask) { 16547 case RTE_PTYPE_L2_MASK: 16548 strlcpy(ltype, "L2", sizeof(ltype)); 16549 break; 16550 case RTE_PTYPE_L3_MASK: 16551 strlcpy(ltype, "L3", sizeof(ltype)); 16552 break; 16553 case RTE_PTYPE_L4_MASK: 16554 strlcpy(ltype, "L4", sizeof(ltype)); 16555 break; 16556 case RTE_PTYPE_TUNNEL_MASK: 16557 strlcpy(ltype, "Tunnel", sizeof(ltype)); 16558 break; 16559 case RTE_PTYPE_INNER_L2_MASK: 16560 strlcpy(ltype, "Inner L2", sizeof(ltype)); 16561 break; 16562 case RTE_PTYPE_INNER_L3_MASK: 16563 strlcpy(ltype, "Inner L3", sizeof(ltype)); 16564 break; 16565 case RTE_PTYPE_INNER_L4_MASK: 16566 strlcpy(ltype, "Inner L4", sizeof(ltype)); 16567 break; 16568 default: 16569 return; 16570 } 16571 16572 ret = rte_eth_dev_get_supported_ptypes(res->port_id, 16573 ptype_mask, ptypes, 16574 MAX_PTYPES_PER_LAYER); 16575 16576 if (ret > 0) 16577 printf("Supported %s ptypes:\n", ltype); 16578 else 16579 printf("%s ptypes unsupported\n", ltype); 16580 16581 for (i = 0; i < ret; ++i) { 16582 rte_get_ptype_name(ptypes[i], buf, sizeof(buf)); 16583 printf("%s\n", buf); 16584 } 16585 16586 ptype_mask <<= 4; 16587 } 16588 } 16589 16590 cmdline_parse_inst_t cmd_show_port_supported_ptypes = { 16591 .f = cmd_show_port_supported_ptypes_parsed, 16592 .data = NULL, 16593 .help_str = "show port <port_id> ptypes", 16594 .tokens = { 16595 (void *)&cmd_show_port_supported_ptypes_show, 16596 (void *)&cmd_show_port_supported_ptypes_port, 16597 (void *)&cmd_show_port_supported_ptypes_port_id, 16598 (void *)&cmd_show_port_supported_ptypes_ptypes, 16599 NULL, 16600 }, 16601 }; 16602 16603 /* *** display rx/tx descriptor status *** */ 16604 struct cmd_show_rx_tx_desc_status_result { 16605 cmdline_fixed_string_t cmd_show; 16606 cmdline_fixed_string_t cmd_port; 16607 cmdline_fixed_string_t cmd_keyword; 16608 cmdline_fixed_string_t cmd_desc; 16609 cmdline_fixed_string_t cmd_status; 16610 portid_t cmd_pid; 16611 portid_t cmd_qid; 16612 portid_t cmd_did; 16613 }; 16614 16615 static void 16616 cmd_show_rx_tx_desc_status_parsed(void *parsed_result, 16617 __rte_unused struct cmdline *cl, 16618 __rte_unused void *data) 16619 { 16620 struct cmd_show_rx_tx_desc_status_result *res = parsed_result; 16621 int rc; 16622 16623 if (!rte_eth_dev_is_valid_port(res->cmd_pid)) { 16624 printf("invalid port id %u\n", res->cmd_pid); 16625 return; 16626 } 16627 16628 if (!strcmp(res->cmd_keyword, "rxq")) { 16629 rc = rte_eth_rx_descriptor_status(res->cmd_pid, res->cmd_qid, 16630 res->cmd_did); 16631 if (rc < 0) { 16632 printf("Invalid queueid = %d\n", res->cmd_qid); 16633 return; 16634 } 16635 if (rc == RTE_ETH_RX_DESC_AVAIL) 16636 printf("Desc status = AVAILABLE\n"); 16637 else if (rc == RTE_ETH_RX_DESC_DONE) 16638 printf("Desc status = DONE\n"); 16639 else 16640 printf("Desc status = UNAVAILABLE\n"); 16641 } else if (!strcmp(res->cmd_keyword, "txq")) { 16642 rc = rte_eth_tx_descriptor_status(res->cmd_pid, res->cmd_qid, 16643 res->cmd_did); 16644 if (rc < 0) { 16645 printf("Invalid queueid = %d\n", res->cmd_qid); 16646 return; 16647 } 16648 if (rc == RTE_ETH_TX_DESC_FULL) 16649 printf("Desc status = FULL\n"); 16650 else if (rc == RTE_ETH_TX_DESC_DONE) 16651 printf("Desc status = DONE\n"); 16652 else 16653 printf("Desc status = UNAVAILABLE\n"); 16654 } 16655 } 16656 16657 cmdline_parse_token_string_t cmd_show_rx_tx_desc_status_show = 16658 TOKEN_STRING_INITIALIZER(struct cmd_show_rx_tx_desc_status_result, 16659 cmd_show, "show"); 16660 cmdline_parse_token_string_t cmd_show_rx_tx_desc_status_port = 16661 TOKEN_STRING_INITIALIZER(struct cmd_show_rx_tx_desc_status_result, 16662 cmd_port, "port"); 16663 cmdline_parse_token_num_t cmd_show_rx_tx_desc_status_pid = 16664 TOKEN_NUM_INITIALIZER(struct cmd_show_rx_tx_desc_status_result, 16665 cmd_pid, RTE_UINT16); 16666 cmdline_parse_token_string_t cmd_show_rx_tx_desc_status_keyword = 16667 TOKEN_STRING_INITIALIZER(struct cmd_show_rx_tx_desc_status_result, 16668 cmd_keyword, "rxq#txq"); 16669 cmdline_parse_token_num_t cmd_show_rx_tx_desc_status_qid = 16670 TOKEN_NUM_INITIALIZER(struct cmd_show_rx_tx_desc_status_result, 16671 cmd_qid, RTE_UINT16); 16672 cmdline_parse_token_string_t cmd_show_rx_tx_desc_status_desc = 16673 TOKEN_STRING_INITIALIZER(struct cmd_show_rx_tx_desc_status_result, 16674 cmd_desc, "desc"); 16675 cmdline_parse_token_num_t cmd_show_rx_tx_desc_status_did = 16676 TOKEN_NUM_INITIALIZER(struct cmd_show_rx_tx_desc_status_result, 16677 cmd_did, RTE_UINT16); 16678 cmdline_parse_token_string_t cmd_show_rx_tx_desc_status_status = 16679 TOKEN_STRING_INITIALIZER(struct cmd_show_rx_tx_desc_status_result, 16680 cmd_status, "status"); 16681 cmdline_parse_inst_t cmd_show_rx_tx_desc_status = { 16682 .f = cmd_show_rx_tx_desc_status_parsed, 16683 .data = NULL, 16684 .help_str = "show port <port_id> rxq|txq <queue_id> desc <desc_id> " 16685 "status", 16686 .tokens = { 16687 (void *)&cmd_show_rx_tx_desc_status_show, 16688 (void *)&cmd_show_rx_tx_desc_status_port, 16689 (void *)&cmd_show_rx_tx_desc_status_pid, 16690 (void *)&cmd_show_rx_tx_desc_status_keyword, 16691 (void *)&cmd_show_rx_tx_desc_status_qid, 16692 (void *)&cmd_show_rx_tx_desc_status_desc, 16693 (void *)&cmd_show_rx_tx_desc_status_did, 16694 (void *)&cmd_show_rx_tx_desc_status_status, 16695 NULL, 16696 }, 16697 }; 16698 16699 /* *** display rx queue desc used count *** */ 16700 struct cmd_show_rx_queue_desc_used_count_result { 16701 cmdline_fixed_string_t cmd_show; 16702 cmdline_fixed_string_t cmd_port; 16703 cmdline_fixed_string_t cmd_rxq; 16704 cmdline_fixed_string_t cmd_desc; 16705 cmdline_fixed_string_t cmd_used; 16706 cmdline_fixed_string_t cmd_count; 16707 portid_t cmd_pid; 16708 portid_t cmd_qid; 16709 }; 16710 16711 static void 16712 cmd_show_rx_queue_desc_used_count_parsed(void *parsed_result, 16713 __rte_unused struct cmdline *cl, 16714 __rte_unused void *data) 16715 { 16716 struct cmd_show_rx_queue_desc_used_count_result *res = parsed_result; 16717 int rc; 16718 16719 if (!rte_eth_dev_is_valid_port(res->cmd_pid)) { 16720 printf("invalid port id %u\n", res->cmd_pid); 16721 return; 16722 } 16723 16724 rc = rte_eth_rx_queue_count(res->cmd_pid, res->cmd_qid); 16725 if (rc < 0) { 16726 printf("Invalid queueid = %d\n", res->cmd_qid); 16727 return; 16728 } 16729 printf("Used desc count = %d\n", rc); 16730 } 16731 16732 cmdline_parse_token_string_t cmd_show_rx_queue_desc_used_count_show = 16733 TOKEN_STRING_INITIALIZER 16734 (struct cmd_show_rx_queue_desc_used_count_result, 16735 cmd_show, "show"); 16736 cmdline_parse_token_string_t cmd_show_rx_queue_desc_used_count_port = 16737 TOKEN_STRING_INITIALIZER 16738 (struct cmd_show_rx_queue_desc_used_count_result, 16739 cmd_port, "port"); 16740 cmdline_parse_token_num_t cmd_show_rx_queue_desc_used_count_pid = 16741 TOKEN_NUM_INITIALIZER 16742 (struct cmd_show_rx_queue_desc_used_count_result, 16743 cmd_pid, RTE_UINT16); 16744 cmdline_parse_token_string_t cmd_show_rx_queue_desc_used_count_rxq = 16745 TOKEN_STRING_INITIALIZER 16746 (struct cmd_show_rx_queue_desc_used_count_result, 16747 cmd_rxq, "rxq"); 16748 cmdline_parse_token_num_t cmd_show_rx_queue_desc_used_count_qid = 16749 TOKEN_NUM_INITIALIZER 16750 (struct cmd_show_rx_queue_desc_used_count_result, 16751 cmd_qid, RTE_UINT16); 16752 cmdline_parse_token_string_t cmd_show_rx_queue_desc_used_count_desc = 16753 TOKEN_STRING_INITIALIZER 16754 (struct cmd_show_rx_queue_desc_used_count_result, 16755 cmd_count, "desc"); 16756 cmdline_parse_token_string_t cmd_show_rx_queue_desc_used_count_used = 16757 TOKEN_STRING_INITIALIZER 16758 (struct cmd_show_rx_queue_desc_used_count_result, 16759 cmd_count, "used"); 16760 cmdline_parse_token_string_t cmd_show_rx_queue_desc_used_count_count = 16761 TOKEN_STRING_INITIALIZER 16762 (struct cmd_show_rx_queue_desc_used_count_result, 16763 cmd_count, "count"); 16764 cmdline_parse_inst_t cmd_show_rx_queue_desc_used_count = { 16765 .f = cmd_show_rx_queue_desc_used_count_parsed, 16766 .data = NULL, 16767 .help_str = "show port <port_id> rxq <queue_id> desc used count", 16768 .tokens = { 16769 (void *)&cmd_show_rx_queue_desc_used_count_show, 16770 (void *)&cmd_show_rx_queue_desc_used_count_port, 16771 (void *)&cmd_show_rx_queue_desc_used_count_pid, 16772 (void *)&cmd_show_rx_queue_desc_used_count_rxq, 16773 (void *)&cmd_show_rx_queue_desc_used_count_qid, 16774 (void *)&cmd_show_rx_queue_desc_used_count_desc, 16775 (void *)&cmd_show_rx_queue_desc_used_count_used, 16776 (void *)&cmd_show_rx_queue_desc_used_count_count, 16777 NULL, 16778 }, 16779 }; 16780 16781 /* Common result structure for set port ptypes */ 16782 struct cmd_set_port_ptypes_result { 16783 cmdline_fixed_string_t set; 16784 cmdline_fixed_string_t port; 16785 portid_t port_id; 16786 cmdline_fixed_string_t ptype_mask; 16787 uint32_t mask; 16788 }; 16789 16790 /* Common CLI fields for set port ptypes */ 16791 cmdline_parse_token_string_t cmd_set_port_ptypes_set = 16792 TOKEN_STRING_INITIALIZER 16793 (struct cmd_set_port_ptypes_result, 16794 set, "set"); 16795 cmdline_parse_token_string_t cmd_set_port_ptypes_port = 16796 TOKEN_STRING_INITIALIZER 16797 (struct cmd_set_port_ptypes_result, 16798 port, "port"); 16799 cmdline_parse_token_num_t cmd_set_port_ptypes_port_id = 16800 TOKEN_NUM_INITIALIZER 16801 (struct cmd_set_port_ptypes_result, 16802 port_id, RTE_UINT16); 16803 cmdline_parse_token_string_t cmd_set_port_ptypes_mask_str = 16804 TOKEN_STRING_INITIALIZER 16805 (struct cmd_set_port_ptypes_result, 16806 ptype_mask, "ptype_mask"); 16807 cmdline_parse_token_num_t cmd_set_port_ptypes_mask_u32 = 16808 TOKEN_NUM_INITIALIZER 16809 (struct cmd_set_port_ptypes_result, 16810 mask, RTE_UINT32); 16811 16812 static void 16813 cmd_set_port_ptypes_parsed( 16814 void *parsed_result, 16815 __rte_unused struct cmdline *cl, 16816 __rte_unused void *data) 16817 { 16818 struct cmd_set_port_ptypes_result *res = parsed_result; 16819 #define PTYPE_NAMESIZE 256 16820 char ptype_name[PTYPE_NAMESIZE]; 16821 uint16_t port_id = res->port_id; 16822 uint32_t ptype_mask = res->mask; 16823 int ret, i; 16824 16825 ret = rte_eth_dev_get_supported_ptypes(port_id, RTE_PTYPE_ALL_MASK, 16826 NULL, 0); 16827 if (ret <= 0) { 16828 printf("Port %d doesn't support any ptypes.\n", port_id); 16829 return; 16830 } 16831 16832 uint32_t ptypes[ret]; 16833 16834 ret = rte_eth_dev_set_ptypes(port_id, ptype_mask, ptypes, ret); 16835 if (ret < 0) { 16836 printf("Unable to set requested ptypes for Port %d\n", port_id); 16837 return; 16838 } 16839 16840 printf("Successfully set following ptypes for Port %d\n", port_id); 16841 for (i = 0; i < ret && ptypes[i] != RTE_PTYPE_UNKNOWN; i++) { 16842 rte_get_ptype_name(ptypes[i], ptype_name, sizeof(ptype_name)); 16843 printf("%s\n", ptype_name); 16844 } 16845 16846 clear_ptypes = false; 16847 } 16848 16849 cmdline_parse_inst_t cmd_set_port_ptypes = { 16850 .f = cmd_set_port_ptypes_parsed, 16851 .data = NULL, 16852 .help_str = "set port <port_id> ptype_mask <mask>", 16853 .tokens = { 16854 (void *)&cmd_set_port_ptypes_set, 16855 (void *)&cmd_set_port_ptypes_port, 16856 (void *)&cmd_set_port_ptypes_port_id, 16857 (void *)&cmd_set_port_ptypes_mask_str, 16858 (void *)&cmd_set_port_ptypes_mask_u32, 16859 NULL, 16860 }, 16861 }; 16862 16863 /* *** display mac addresses added to a port *** */ 16864 struct cmd_showport_macs_result { 16865 cmdline_fixed_string_t cmd_show; 16866 cmdline_fixed_string_t cmd_port; 16867 cmdline_fixed_string_t cmd_keyword; 16868 portid_t cmd_pid; 16869 }; 16870 16871 static void 16872 cmd_showport_macs_parsed(void *parsed_result, 16873 __rte_unused struct cmdline *cl, 16874 __rte_unused void *data) 16875 { 16876 struct cmd_showport_macs_result *res = parsed_result; 16877 16878 if (port_id_is_invalid(res->cmd_pid, ENABLED_WARN)) 16879 return; 16880 16881 if (!strcmp(res->cmd_keyword, "macs")) 16882 show_macs(res->cmd_pid); 16883 else if (!strcmp(res->cmd_keyword, "mcast_macs")) 16884 show_mcast_macs(res->cmd_pid); 16885 } 16886 16887 cmdline_parse_token_string_t cmd_showport_macs_show = 16888 TOKEN_STRING_INITIALIZER(struct cmd_showport_macs_result, 16889 cmd_show, "show"); 16890 cmdline_parse_token_string_t cmd_showport_macs_port = 16891 TOKEN_STRING_INITIALIZER(struct cmd_showport_macs_result, 16892 cmd_port, "port"); 16893 cmdline_parse_token_num_t cmd_showport_macs_pid = 16894 TOKEN_NUM_INITIALIZER(struct cmd_showport_macs_result, 16895 cmd_pid, RTE_UINT16); 16896 cmdline_parse_token_string_t cmd_showport_macs_keyword = 16897 TOKEN_STRING_INITIALIZER(struct cmd_showport_macs_result, 16898 cmd_keyword, "macs#mcast_macs"); 16899 16900 cmdline_parse_inst_t cmd_showport_macs = { 16901 .f = cmd_showport_macs_parsed, 16902 .data = NULL, 16903 .help_str = "show port <port_id> macs|mcast_macs", 16904 .tokens = { 16905 (void *)&cmd_showport_macs_show, 16906 (void *)&cmd_showport_macs_port, 16907 (void *)&cmd_showport_macs_pid, 16908 (void *)&cmd_showport_macs_keyword, 16909 NULL, 16910 }, 16911 }; 16912 16913 /* ******************************************************************************** */ 16914 16915 /* list of instructions */ 16916 cmdline_parse_ctx_t main_ctx[] = { 16917 (cmdline_parse_inst_t *)&cmd_help_brief, 16918 (cmdline_parse_inst_t *)&cmd_help_long, 16919 (cmdline_parse_inst_t *)&cmd_quit, 16920 (cmdline_parse_inst_t *)&cmd_load_from_file, 16921 (cmdline_parse_inst_t *)&cmd_showport, 16922 (cmdline_parse_inst_t *)&cmd_showqueue, 16923 (cmdline_parse_inst_t *)&cmd_showeeprom, 16924 (cmdline_parse_inst_t *)&cmd_showportall, 16925 (cmdline_parse_inst_t *)&cmd_showdevice, 16926 (cmdline_parse_inst_t *)&cmd_showcfg, 16927 (cmdline_parse_inst_t *)&cmd_showfwdall, 16928 (cmdline_parse_inst_t *)&cmd_start, 16929 (cmdline_parse_inst_t *)&cmd_start_tx_first, 16930 (cmdline_parse_inst_t *)&cmd_start_tx_first_n, 16931 (cmdline_parse_inst_t *)&cmd_set_link_up, 16932 (cmdline_parse_inst_t *)&cmd_set_link_down, 16933 (cmdline_parse_inst_t *)&cmd_reset, 16934 (cmdline_parse_inst_t *)&cmd_set_numbers, 16935 (cmdline_parse_inst_t *)&cmd_set_log, 16936 (cmdline_parse_inst_t *)&cmd_set_rxoffs, 16937 (cmdline_parse_inst_t *)&cmd_set_rxpkts, 16938 (cmdline_parse_inst_t *)&cmd_set_txpkts, 16939 (cmdline_parse_inst_t *)&cmd_set_txsplit, 16940 (cmdline_parse_inst_t *)&cmd_set_txtimes, 16941 (cmdline_parse_inst_t *)&cmd_set_fwd_list, 16942 (cmdline_parse_inst_t *)&cmd_set_fwd_mask, 16943 (cmdline_parse_inst_t *)&cmd_set_fwd_mode, 16944 (cmdline_parse_inst_t *)&cmd_set_fwd_retry_mode, 16945 (cmdline_parse_inst_t *)&cmd_set_burst_tx_retry, 16946 (cmdline_parse_inst_t *)&cmd_set_promisc_mode_one, 16947 (cmdline_parse_inst_t *)&cmd_set_promisc_mode_all, 16948 (cmdline_parse_inst_t *)&cmd_set_allmulti_mode_one, 16949 (cmdline_parse_inst_t *)&cmd_set_allmulti_mode_all, 16950 (cmdline_parse_inst_t *)&cmd_set_flush_rx, 16951 (cmdline_parse_inst_t *)&cmd_set_link_check, 16952 (cmdline_parse_inst_t *)&cmd_set_bypass_mode, 16953 (cmdline_parse_inst_t *)&cmd_set_bypass_event, 16954 (cmdline_parse_inst_t *)&cmd_set_bypass_timeout, 16955 (cmdline_parse_inst_t *)&cmd_show_bypass_config, 16956 #ifdef RTE_NET_BOND 16957 (cmdline_parse_inst_t *) &cmd_set_bonding_mode, 16958 (cmdline_parse_inst_t *) &cmd_show_bonding_config, 16959 (cmdline_parse_inst_t *) &cmd_set_bonding_primary, 16960 (cmdline_parse_inst_t *) &cmd_add_bonding_slave, 16961 (cmdline_parse_inst_t *) &cmd_remove_bonding_slave, 16962 (cmdline_parse_inst_t *) &cmd_create_bonded_device, 16963 (cmdline_parse_inst_t *) &cmd_set_bond_mac_addr, 16964 (cmdline_parse_inst_t *) &cmd_set_balance_xmit_policy, 16965 (cmdline_parse_inst_t *) &cmd_set_bond_mon_period, 16966 (cmdline_parse_inst_t *) &cmd_set_lacp_dedicated_queues, 16967 (cmdline_parse_inst_t *) &cmd_set_bonding_agg_mode_policy, 16968 #endif 16969 (cmdline_parse_inst_t *)&cmd_vlan_offload, 16970 (cmdline_parse_inst_t *)&cmd_vlan_tpid, 16971 (cmdline_parse_inst_t *)&cmd_rx_vlan_filter_all, 16972 (cmdline_parse_inst_t *)&cmd_rx_vlan_filter, 16973 (cmdline_parse_inst_t *)&cmd_tx_vlan_set, 16974 (cmdline_parse_inst_t *)&cmd_tx_vlan_set_qinq, 16975 (cmdline_parse_inst_t *)&cmd_tx_vlan_reset, 16976 (cmdline_parse_inst_t *)&cmd_tx_vlan_set_pvid, 16977 (cmdline_parse_inst_t *)&cmd_csum_set, 16978 (cmdline_parse_inst_t *)&cmd_csum_show, 16979 (cmdline_parse_inst_t *)&cmd_csum_tunnel, 16980 (cmdline_parse_inst_t *)&cmd_tso_set, 16981 (cmdline_parse_inst_t *)&cmd_tso_show, 16982 (cmdline_parse_inst_t *)&cmd_tunnel_tso_set, 16983 (cmdline_parse_inst_t *)&cmd_tunnel_tso_show, 16984 (cmdline_parse_inst_t *)&cmd_gro_enable, 16985 (cmdline_parse_inst_t *)&cmd_gro_flush, 16986 (cmdline_parse_inst_t *)&cmd_gro_show, 16987 (cmdline_parse_inst_t *)&cmd_gso_enable, 16988 (cmdline_parse_inst_t *)&cmd_gso_size, 16989 (cmdline_parse_inst_t *)&cmd_gso_show, 16990 (cmdline_parse_inst_t *)&cmd_link_flow_control_set, 16991 (cmdline_parse_inst_t *)&cmd_link_flow_control_set_rx, 16992 (cmdline_parse_inst_t *)&cmd_link_flow_control_set_tx, 16993 (cmdline_parse_inst_t *)&cmd_link_flow_control_set_hw, 16994 (cmdline_parse_inst_t *)&cmd_link_flow_control_set_lw, 16995 (cmdline_parse_inst_t *)&cmd_link_flow_control_set_pt, 16996 (cmdline_parse_inst_t *)&cmd_link_flow_control_set_xon, 16997 (cmdline_parse_inst_t *)&cmd_link_flow_control_set_macfwd, 16998 (cmdline_parse_inst_t *)&cmd_link_flow_control_set_autoneg, 16999 (cmdline_parse_inst_t *)&cmd_priority_flow_control_set, 17000 (cmdline_parse_inst_t *)&cmd_config_dcb, 17001 (cmdline_parse_inst_t *)&cmd_read_reg, 17002 (cmdline_parse_inst_t *)&cmd_read_reg_bit_field, 17003 (cmdline_parse_inst_t *)&cmd_read_reg_bit, 17004 (cmdline_parse_inst_t *)&cmd_write_reg, 17005 (cmdline_parse_inst_t *)&cmd_write_reg_bit_field, 17006 (cmdline_parse_inst_t *)&cmd_write_reg_bit, 17007 (cmdline_parse_inst_t *)&cmd_read_rxd_txd, 17008 (cmdline_parse_inst_t *)&cmd_stop, 17009 (cmdline_parse_inst_t *)&cmd_mac_addr, 17010 (cmdline_parse_inst_t *)&cmd_set_fwd_eth_peer, 17011 (cmdline_parse_inst_t *)&cmd_set_qmap, 17012 (cmdline_parse_inst_t *)&cmd_set_xstats_hide_zero, 17013 (cmdline_parse_inst_t *)&cmd_set_record_core_cycles, 17014 (cmdline_parse_inst_t *)&cmd_set_record_burst_stats, 17015 (cmdline_parse_inst_t *)&cmd_operate_port, 17016 (cmdline_parse_inst_t *)&cmd_operate_specific_port, 17017 (cmdline_parse_inst_t *)&cmd_operate_attach_port, 17018 (cmdline_parse_inst_t *)&cmd_operate_detach_port, 17019 (cmdline_parse_inst_t *)&cmd_operate_detach_device, 17020 (cmdline_parse_inst_t *)&cmd_set_port_setup_on, 17021 (cmdline_parse_inst_t *)&cmd_config_speed_all, 17022 (cmdline_parse_inst_t *)&cmd_config_speed_specific, 17023 (cmdline_parse_inst_t *)&cmd_config_loopback_all, 17024 (cmdline_parse_inst_t *)&cmd_config_loopback_specific, 17025 (cmdline_parse_inst_t *)&cmd_config_rx_tx, 17026 (cmdline_parse_inst_t *)&cmd_config_mtu, 17027 (cmdline_parse_inst_t *)&cmd_config_max_pkt_len, 17028 (cmdline_parse_inst_t *)&cmd_config_max_lro_pkt_size, 17029 (cmdline_parse_inst_t *)&cmd_config_rx_mode_flag, 17030 (cmdline_parse_inst_t *)&cmd_config_rss, 17031 (cmdline_parse_inst_t *)&cmd_config_rxtx_ring_size, 17032 (cmdline_parse_inst_t *)&cmd_config_rxtx_queue, 17033 (cmdline_parse_inst_t *)&cmd_config_deferred_start_rxtx_queue, 17034 (cmdline_parse_inst_t *)&cmd_setup_rxtx_queue, 17035 (cmdline_parse_inst_t *)&cmd_config_rss_reta, 17036 (cmdline_parse_inst_t *)&cmd_showport_reta, 17037 (cmdline_parse_inst_t *)&cmd_showport_macs, 17038 (cmdline_parse_inst_t *)&cmd_config_burst, 17039 (cmdline_parse_inst_t *)&cmd_config_thresh, 17040 (cmdline_parse_inst_t *)&cmd_config_threshold, 17041 (cmdline_parse_inst_t *)&cmd_set_uc_hash_filter, 17042 (cmdline_parse_inst_t *)&cmd_set_uc_all_hash_filter, 17043 (cmdline_parse_inst_t *)&cmd_vf_mac_addr_filter, 17044 (cmdline_parse_inst_t *)&cmd_queue_rate_limit, 17045 (cmdline_parse_inst_t *)&cmd_tunnel_udp_config, 17046 (cmdline_parse_inst_t *)&cmd_set_mirror_mask, 17047 (cmdline_parse_inst_t *)&cmd_set_mirror_link, 17048 (cmdline_parse_inst_t *)&cmd_reset_mirror_rule, 17049 (cmdline_parse_inst_t *)&cmd_showport_rss_hash, 17050 (cmdline_parse_inst_t *)&cmd_showport_rss_hash_key, 17051 (cmdline_parse_inst_t *)&cmd_config_rss_hash_key, 17052 (cmdline_parse_inst_t *)&cmd_dump, 17053 (cmdline_parse_inst_t *)&cmd_dump_one, 17054 #ifdef RTE_NET_I40E 17055 (cmdline_parse_inst_t *)&cmd_add_del_raw_flow_director, 17056 #endif 17057 (cmdline_parse_inst_t *)&cmd_set_flow_director_ip_mask, 17058 (cmdline_parse_inst_t *)&cmd_set_flow_director_mac_vlan_mask, 17059 (cmdline_parse_inst_t *)&cmd_set_flow_director_tunnel_mask, 17060 (cmdline_parse_inst_t *)&cmd_set_flow_director_flex_payload, 17061 (cmdline_parse_inst_t *)&cmd_flow, 17062 (cmdline_parse_inst_t *)&cmd_show_port_meter_cap, 17063 (cmdline_parse_inst_t *)&cmd_add_port_meter_profile_srtcm, 17064 (cmdline_parse_inst_t *)&cmd_add_port_meter_profile_trtcm, 17065 (cmdline_parse_inst_t *)&cmd_del_port_meter_profile, 17066 (cmdline_parse_inst_t *)&cmd_create_port_meter, 17067 (cmdline_parse_inst_t *)&cmd_enable_port_meter, 17068 (cmdline_parse_inst_t *)&cmd_disable_port_meter, 17069 (cmdline_parse_inst_t *)&cmd_del_port_meter, 17070 (cmdline_parse_inst_t *)&cmd_set_port_meter_profile, 17071 (cmdline_parse_inst_t *)&cmd_set_port_meter_dscp_table, 17072 (cmdline_parse_inst_t *)&cmd_set_port_meter_policer_action, 17073 (cmdline_parse_inst_t *)&cmd_set_port_meter_stats_mask, 17074 (cmdline_parse_inst_t *)&cmd_show_port_meter_stats, 17075 (cmdline_parse_inst_t *)&cmd_mcast_addr, 17076 (cmdline_parse_inst_t *)&cmd_set_vf_vlan_anti_spoof, 17077 (cmdline_parse_inst_t *)&cmd_set_vf_mac_anti_spoof, 17078 (cmdline_parse_inst_t *)&cmd_set_vf_vlan_stripq, 17079 (cmdline_parse_inst_t *)&cmd_set_vf_vlan_insert, 17080 (cmdline_parse_inst_t *)&cmd_set_tx_loopback, 17081 (cmdline_parse_inst_t *)&cmd_set_all_queues_drop_en, 17082 (cmdline_parse_inst_t *)&cmd_set_vf_split_drop_en, 17083 (cmdline_parse_inst_t *)&cmd_set_macsec_offload_on, 17084 (cmdline_parse_inst_t *)&cmd_set_macsec_offload_off, 17085 (cmdline_parse_inst_t *)&cmd_set_macsec_sc, 17086 (cmdline_parse_inst_t *)&cmd_set_macsec_sa, 17087 (cmdline_parse_inst_t *)&cmd_set_vf_traffic, 17088 (cmdline_parse_inst_t *)&cmd_set_vf_rxmode, 17089 (cmdline_parse_inst_t *)&cmd_vf_rate_limit, 17090 (cmdline_parse_inst_t *)&cmd_vf_rxvlan_filter, 17091 (cmdline_parse_inst_t *)&cmd_set_vf_mac_addr, 17092 (cmdline_parse_inst_t *)&cmd_set_vf_promisc, 17093 (cmdline_parse_inst_t *)&cmd_set_vf_allmulti, 17094 (cmdline_parse_inst_t *)&cmd_set_vf_broadcast, 17095 (cmdline_parse_inst_t *)&cmd_set_vf_vlan_tag, 17096 (cmdline_parse_inst_t *)&cmd_vf_max_bw, 17097 (cmdline_parse_inst_t *)&cmd_vf_tc_min_bw, 17098 (cmdline_parse_inst_t *)&cmd_vf_tc_max_bw, 17099 (cmdline_parse_inst_t *)&cmd_strict_link_prio, 17100 (cmdline_parse_inst_t *)&cmd_tc_min_bw, 17101 (cmdline_parse_inst_t *)&cmd_set_vxlan, 17102 (cmdline_parse_inst_t *)&cmd_set_vxlan_tos_ttl, 17103 (cmdline_parse_inst_t *)&cmd_set_vxlan_with_vlan, 17104 (cmdline_parse_inst_t *)&cmd_set_nvgre, 17105 (cmdline_parse_inst_t *)&cmd_set_nvgre_with_vlan, 17106 (cmdline_parse_inst_t *)&cmd_set_l2_encap, 17107 (cmdline_parse_inst_t *)&cmd_set_l2_encap_with_vlan, 17108 (cmdline_parse_inst_t *)&cmd_set_l2_decap, 17109 (cmdline_parse_inst_t *)&cmd_set_l2_decap_with_vlan, 17110 (cmdline_parse_inst_t *)&cmd_set_mplsogre_encap, 17111 (cmdline_parse_inst_t *)&cmd_set_mplsogre_encap_with_vlan, 17112 (cmdline_parse_inst_t *)&cmd_set_mplsogre_decap, 17113 (cmdline_parse_inst_t *)&cmd_set_mplsogre_decap_with_vlan, 17114 (cmdline_parse_inst_t *)&cmd_set_mplsoudp_encap, 17115 (cmdline_parse_inst_t *)&cmd_set_mplsoudp_encap_with_vlan, 17116 (cmdline_parse_inst_t *)&cmd_set_mplsoudp_decap, 17117 (cmdline_parse_inst_t *)&cmd_set_mplsoudp_decap_with_vlan, 17118 (cmdline_parse_inst_t *)&cmd_ddp_add, 17119 (cmdline_parse_inst_t *)&cmd_ddp_del, 17120 (cmdline_parse_inst_t *)&cmd_ddp_get_list, 17121 (cmdline_parse_inst_t *)&cmd_ddp_get_info, 17122 (cmdline_parse_inst_t *)&cmd_cfg_input_set, 17123 (cmdline_parse_inst_t *)&cmd_clear_input_set, 17124 (cmdline_parse_inst_t *)&cmd_show_vf_stats, 17125 (cmdline_parse_inst_t *)&cmd_clear_vf_stats, 17126 (cmdline_parse_inst_t *)&cmd_show_port_supported_ptypes, 17127 (cmdline_parse_inst_t *)&cmd_set_port_ptypes, 17128 (cmdline_parse_inst_t *)&cmd_ptype_mapping_get, 17129 (cmdline_parse_inst_t *)&cmd_ptype_mapping_replace, 17130 (cmdline_parse_inst_t *)&cmd_ptype_mapping_reset, 17131 (cmdline_parse_inst_t *)&cmd_ptype_mapping_update, 17132 17133 (cmdline_parse_inst_t *)&cmd_pctype_mapping_get, 17134 (cmdline_parse_inst_t *)&cmd_pctype_mapping_reset, 17135 (cmdline_parse_inst_t *)&cmd_pctype_mapping_update, 17136 (cmdline_parse_inst_t *)&cmd_queue_region, 17137 (cmdline_parse_inst_t *)&cmd_region_flowtype, 17138 (cmdline_parse_inst_t *)&cmd_user_priority_region, 17139 (cmdline_parse_inst_t *)&cmd_flush_queue_region, 17140 (cmdline_parse_inst_t *)&cmd_show_queue_region_info_all, 17141 (cmdline_parse_inst_t *)&cmd_show_port_tm_cap, 17142 (cmdline_parse_inst_t *)&cmd_show_port_tm_level_cap, 17143 (cmdline_parse_inst_t *)&cmd_show_port_tm_node_cap, 17144 (cmdline_parse_inst_t *)&cmd_show_port_tm_node_type, 17145 (cmdline_parse_inst_t *)&cmd_show_port_tm_node_stats, 17146 (cmdline_parse_inst_t *)&cmd_add_port_tm_node_shaper_profile, 17147 (cmdline_parse_inst_t *)&cmd_del_port_tm_node_shaper_profile, 17148 (cmdline_parse_inst_t *)&cmd_add_port_tm_node_shared_shaper, 17149 (cmdline_parse_inst_t *)&cmd_del_port_tm_node_shared_shaper, 17150 (cmdline_parse_inst_t *)&cmd_add_port_tm_node_wred_profile, 17151 (cmdline_parse_inst_t *)&cmd_del_port_tm_node_wred_profile, 17152 (cmdline_parse_inst_t *)&cmd_set_port_tm_node_shaper_profile, 17153 (cmdline_parse_inst_t *)&cmd_add_port_tm_nonleaf_node, 17154 (cmdline_parse_inst_t *)&cmd_add_port_tm_nonleaf_node_pmode, 17155 (cmdline_parse_inst_t *)&cmd_add_port_tm_leaf_node, 17156 (cmdline_parse_inst_t *)&cmd_del_port_tm_node, 17157 (cmdline_parse_inst_t *)&cmd_set_port_tm_node_parent, 17158 (cmdline_parse_inst_t *)&cmd_suspend_port_tm_node, 17159 (cmdline_parse_inst_t *)&cmd_resume_port_tm_node, 17160 (cmdline_parse_inst_t *)&cmd_port_tm_hierarchy_commit, 17161 (cmdline_parse_inst_t *)&cmd_port_tm_mark_ip_ecn, 17162 (cmdline_parse_inst_t *)&cmd_port_tm_mark_ip_dscp, 17163 (cmdline_parse_inst_t *)&cmd_port_tm_mark_vlan_dei, 17164 (cmdline_parse_inst_t *)&cmd_cfg_tunnel_udp_port, 17165 (cmdline_parse_inst_t *)&cmd_rx_offload_get_capa, 17166 (cmdline_parse_inst_t *)&cmd_rx_offload_get_configuration, 17167 (cmdline_parse_inst_t *)&cmd_config_per_port_rx_offload, 17168 (cmdline_parse_inst_t *)&cmd_config_per_queue_rx_offload, 17169 (cmdline_parse_inst_t *)&cmd_tx_offload_get_capa, 17170 (cmdline_parse_inst_t *)&cmd_tx_offload_get_configuration, 17171 (cmdline_parse_inst_t *)&cmd_config_per_port_tx_offload, 17172 (cmdline_parse_inst_t *)&cmd_config_per_queue_tx_offload, 17173 #ifdef RTE_LIB_BPF 17174 (cmdline_parse_inst_t *)&cmd_operate_bpf_ld_parse, 17175 (cmdline_parse_inst_t *)&cmd_operate_bpf_unld_parse, 17176 #endif 17177 (cmdline_parse_inst_t *)&cmd_config_tx_metadata_specific, 17178 (cmdline_parse_inst_t *)&cmd_show_tx_metadata, 17179 (cmdline_parse_inst_t *)&cmd_show_rx_tx_desc_status, 17180 (cmdline_parse_inst_t *)&cmd_show_rx_queue_desc_used_count, 17181 (cmdline_parse_inst_t *)&cmd_set_raw, 17182 (cmdline_parse_inst_t *)&cmd_show_set_raw, 17183 (cmdline_parse_inst_t *)&cmd_show_set_raw_all, 17184 (cmdline_parse_inst_t *)&cmd_config_tx_dynf_specific, 17185 (cmdline_parse_inst_t *)&cmd_show_fec_mode, 17186 (cmdline_parse_inst_t *)&cmd_set_fec_mode, 17187 (cmdline_parse_inst_t *)&cmd_show_capability, 17188 NULL, 17189 }; 17190 17191 /* read cmdline commands from file */ 17192 void 17193 cmdline_read_from_file(const char *filename) 17194 { 17195 struct cmdline *cl; 17196 17197 cl = cmdline_file_new(main_ctx, "testpmd> ", filename); 17198 if (cl == NULL) { 17199 printf("Failed to create file based cmdline context: %s\n", 17200 filename); 17201 return; 17202 } 17203 17204 cmdline_interact(cl); 17205 cmdline_quit(cl); 17206 17207 cmdline_free(cl); 17208 17209 printf("Read CLI commands from %s\n", filename); 17210 } 17211 17212 /* prompt function, called from main on MAIN lcore */ 17213 void 17214 prompt(void) 17215 { 17216 int ret; 17217 /* initialize non-constant commands */ 17218 cmd_set_fwd_mode_init(); 17219 cmd_set_fwd_retry_mode_init(); 17220 17221 testpmd_cl = cmdline_stdin_new(main_ctx, "testpmd> "); 17222 if (testpmd_cl == NULL) 17223 return; 17224 17225 ret = atexit(prompt_exit); 17226 if (ret != 0) 17227 printf("Cannot set exit function for cmdline\n"); 17228 17229 cmdline_interact(testpmd_cl); 17230 if (ret != 0) 17231 cmdline_stdin_exit(testpmd_cl); 17232 } 17233 17234 void 17235 prompt_exit(void) 17236 { 17237 if (testpmd_cl != NULL) { 17238 cmdline_quit(testpmd_cl); 17239 cmdline_stdin_exit(testpmd_cl); 17240 } 17241 } 17242 17243 static void 17244 cmd_reconfig_device_queue(portid_t id, uint8_t dev, uint8_t queue) 17245 { 17246 if (id == (portid_t)RTE_PORT_ALL) { 17247 portid_t pid; 17248 17249 RTE_ETH_FOREACH_DEV(pid) { 17250 /* check if need_reconfig has been set to 1 */ 17251 if (ports[pid].need_reconfig == 0) 17252 ports[pid].need_reconfig = dev; 17253 /* check if need_reconfig_queues has been set to 1 */ 17254 if (ports[pid].need_reconfig_queues == 0) 17255 ports[pid].need_reconfig_queues = queue; 17256 } 17257 } else if (!port_id_is_invalid(id, DISABLED_WARN)) { 17258 /* check if need_reconfig has been set to 1 */ 17259 if (ports[id].need_reconfig == 0) 17260 ports[id].need_reconfig = dev; 17261 /* check if need_reconfig_queues has been set to 1 */ 17262 if (ports[id].need_reconfig_queues == 0) 17263 ports[id].need_reconfig_queues = queue; 17264 } 17265 } 17266