dpdk/app/test-pmd/testpmd.h
<<
>>
Prefs
   1/* SPDX-License-Identifier: BSD-3-Clause
   2 * Copyright(c) 2010-2017 Intel Corporation
   3 */
   4
   5#ifndef _TESTPMD_H_
   6#define _TESTPMD_H_
   7
   8#include <stdbool.h>
   9
  10#include <rte_pci.h>
  11#include <rte_bus_pci.h>
  12#include <rte_gro.h>
  13#include <rte_gso.h>
  14#include <cmdline.h>
  15#include <sys/queue.h>
  16
  17#define RTE_PORT_ALL            (~(portid_t)0x0)
  18
  19#define RTE_TEST_RX_DESC_MAX    2048
  20#define RTE_TEST_TX_DESC_MAX    2048
  21
  22#define RTE_PORT_STOPPED        (uint16_t)0
  23#define RTE_PORT_STARTED        (uint16_t)1
  24#define RTE_PORT_CLOSED         (uint16_t)2
  25#define RTE_PORT_HANDLING       (uint16_t)3
  26
  27/*
  28 * It is used to allocate the memory for hash key.
  29 * The hash key size is NIC dependent.
  30 */
  31#define RSS_HASH_KEY_LENGTH 64
  32
  33/*
  34 * Default size of the mbuf data buffer to receive standard 1518-byte
  35 * Ethernet frames in a mono-segment memory buffer.
  36 */
  37#define DEFAULT_MBUF_DATA_SIZE RTE_MBUF_DEFAULT_BUF_SIZE
  38/**< Default size of mbuf data buffer. */
  39
  40/*
  41 * The maximum number of segments per packet is used when creating
  42 * scattered transmit packets composed of a list of mbufs.
  43 */
  44#define RTE_MAX_SEGS_PER_PKT 255 /**< nb_segs is a 8-bit unsigned char. */
  45
  46/*
  47 * The maximum number of segments per packet is used to configure
  48 * buffer split feature, also specifies the maximum amount of
  49 * optional Rx pools to allocate mbufs to split.
  50 */
  51#define MAX_SEGS_BUFFER_SPLIT 8 /**< nb_segs is a 8-bit unsigned char. */
  52
  53/* The prefix of the mbuf pool names created by the application. */
  54#define MBUF_POOL_NAME_PFX "mb_pool"
  55
  56#define MAX_PKT_BURST 512
  57#define DEF_PKT_BURST 32
  58
  59#define DEF_MBUF_CACHE 250
  60
  61#define RTE_CACHE_LINE_SIZE_ROUNDUP(size) \
  62        (RTE_CACHE_LINE_SIZE * ((size + RTE_CACHE_LINE_SIZE - 1) / RTE_CACHE_LINE_SIZE))
  63
  64#define NUMA_NO_CONFIG 0xFF
  65#define UMA_NO_CONFIG  0xFF
  66
  67typedef uint8_t  lcoreid_t;
  68typedef uint16_t portid_t;
  69typedef uint16_t queueid_t;
  70typedef uint16_t streamid_t;
  71
  72enum {
  73        PORT_TOPOLOGY_PAIRED,
  74        PORT_TOPOLOGY_CHAINED,
  75        PORT_TOPOLOGY_LOOP,
  76};
  77
  78enum {
  79        MP_ALLOC_NATIVE, /**< allocate and populate mempool natively */
  80        MP_ALLOC_ANON,
  81        /**< allocate mempool natively, but populate using anonymous memory */
  82        MP_ALLOC_XMEM,
  83        /**< allocate and populate mempool using anonymous memory */
  84        MP_ALLOC_XMEM_HUGE,
  85        /**< allocate and populate mempool using anonymous hugepage memory */
  86        MP_ALLOC_XBUF
  87        /**< allocate mempool natively, use rte_pktmbuf_pool_create_extbuf */
  88};
  89
  90/**
  91 * The data structure associated with RX and TX packet burst statistics
  92 * that are recorded for each forwarding stream.
  93 */
  94struct pkt_burst_stats {
  95        unsigned int pkt_burst_spread[MAX_PKT_BURST];
  96};
  97
  98/** Information for a given RSS type. */
  99struct rss_type_info {
 100        const char *str; /**< Type name. */
 101        uint64_t rss_type; /**< Type value. */
 102};
 103
 104/**
 105 * RSS type information table.
 106 *
 107 * An entry with a NULL type name terminates the list.
 108 */
 109extern const struct rss_type_info rss_type_table[];
 110
 111/**
 112 * Dynf name array.
 113 *
 114 * Array that holds the name for each dynf.
 115 */
 116extern char dynf_names[64][RTE_MBUF_DYN_NAMESIZE];
 117
 118/**
 119 * The data structure associated with a forwarding stream between a receive
 120 * port/queue and a transmit port/queue.
 121 */
 122struct fwd_stream {
 123        /* "read-only" data */
 124        portid_t   rx_port;   /**< port to poll for received packets */
 125        queueid_t  rx_queue;  /**< RX queue to poll on "rx_port" */
 126        portid_t   tx_port;   /**< forwarding port of received packets */
 127        queueid_t  tx_queue;  /**< TX queue to send forwarded packets */
 128        streamid_t peer_addr; /**< index of peer ethernet address of packets */
 129
 130        unsigned int retry_enabled;
 131
 132        /* "read-write" results */
 133        uint64_t rx_packets;  /**< received packets */
 134        uint64_t tx_packets;  /**< received packets transmitted */
 135        uint64_t fwd_dropped; /**< received packets not forwarded */
 136        uint64_t rx_bad_ip_csum ; /**< received packets has bad ip checksum */
 137        uint64_t rx_bad_l4_csum ; /**< received packets has bad l4 checksum */
 138        uint64_t rx_bad_outer_l4_csum;
 139        /**< received packets has bad outer l4 checksum */
 140        uint64_t rx_bad_outer_ip_csum;
 141        /**< received packets having bad outer ip checksum */
 142        unsigned int gro_times; /**< GRO operation times */
 143        uint64_t     core_cycles; /**< used for RX and TX processing */
 144        struct pkt_burst_stats rx_burst_stats;
 145        struct pkt_burst_stats tx_burst_stats;
 146};
 147
 148/**
 149 * Age action context types, must be included inside the age action
 150 * context structure.
 151 */
 152enum age_action_context_type {
 153        ACTION_AGE_CONTEXT_TYPE_FLOW,
 154        ACTION_AGE_CONTEXT_TYPE_INDIRECT_ACTION,
 155};
 156
 157/** Descriptor for a single flow. */
 158struct port_flow {
 159        struct port_flow *next; /**< Next flow in list. */
 160        struct port_flow *tmp; /**< Temporary linking. */
 161        uint32_t id; /**< Flow rule ID. */
 162        struct rte_flow *flow; /**< Opaque flow object returned by PMD. */
 163        struct rte_flow_conv_rule rule; /**< Saved flow rule description. */
 164        enum age_action_context_type age_type; /**< Age action context type. */
 165        uint8_t data[]; /**< Storage for flow rule description */
 166};
 167
 168/* Descriptor for indirect action */
 169struct port_indirect_action {
 170        struct port_indirect_action *next; /**< Next flow in list. */
 171        uint32_t id; /**< Indirect action ID. */
 172        enum rte_flow_action_type type; /**< Action type. */
 173        struct rte_flow_action_handle *handle;  /**< Indirect action handle. */
 174        enum age_action_context_type age_type; /**< Age action context type. */
 175};
 176
 177struct port_flow_tunnel {
 178        LIST_ENTRY(port_flow_tunnel) chain;
 179        struct rte_flow_action *pmd_actions;
 180        struct rte_flow_item   *pmd_items;
 181        uint32_t id;
 182        uint32_t num_pmd_actions;
 183        uint32_t num_pmd_items;
 184        struct rte_flow_tunnel tunnel;
 185        struct rte_flow_action *actions;
 186        struct rte_flow_item *items;
 187};
 188
 189struct tunnel_ops {
 190        uint32_t id;
 191        char type[16];
 192        uint32_t enabled:1;
 193        uint32_t actions:1;
 194        uint32_t items:1;
 195};
 196
 197/**
 198 * The data structure associated with each port.
 199 */
 200struct rte_port {
 201        struct rte_eth_dev_info dev_info;   /**< PCI info + driver name */
 202        struct rte_eth_conf     dev_conf;   /**< Port configuration. */
 203        struct rte_ether_addr       eth_addr;   /**< Port ethernet address */
 204        struct rte_eth_stats    stats;      /**< Last port statistics */
 205        unsigned int            socket_id;  /**< For NUMA support */
 206        uint16_t                parse_tunnel:1; /**< Parse internal headers */
 207        uint16_t                tso_segsz;  /**< Segmentation offload MSS for non-tunneled packets. */
 208        uint16_t                tunnel_tso_segsz; /**< Segmentation offload MSS for tunneled pkts. */
 209        uint16_t                tx_vlan_id;/**< The tag ID */
 210        uint16_t                tx_vlan_id_outer;/**< The outer tag ID */
 211        volatile uint16_t        port_status;    /**< port started or not */
 212        uint8_t                 need_setup;     /**< port just attached */
 213        uint8_t                 need_reconfig;  /**< need reconfiguring port or not */
 214        uint8_t                 need_reconfig_queues; /**< need reconfiguring queues or not */
 215        uint8_t                 rss_flag;   /**< enable rss or not */
 216        uint8_t                 dcb_flag;   /**< enable dcb */
 217        uint16_t                nb_rx_desc[RTE_MAX_QUEUES_PER_PORT+1]; /**< per queue rx desc number */
 218        uint16_t                nb_tx_desc[RTE_MAX_QUEUES_PER_PORT+1]; /**< per queue tx desc number */
 219        struct rte_eth_rxconf   rx_conf[RTE_MAX_QUEUES_PER_PORT+1]; /**< per queue rx configuration */
 220        struct rte_eth_txconf   tx_conf[RTE_MAX_QUEUES_PER_PORT+1]; /**< per queue tx configuration */
 221        struct rte_ether_addr   *mc_addr_pool; /**< pool of multicast addrs */
 222        uint32_t                mc_addr_nb; /**< nb. of addr. in mc_addr_pool */
 223        uint8_t                 slave_flag; /**< bonding slave port */
 224        struct port_flow        *flow_list; /**< Associated flows. */
 225        struct port_indirect_action *actions_list;
 226        /**< Associated indirect actions. */
 227        LIST_HEAD(, port_flow_tunnel) flow_tunnel_list;
 228        const struct rte_eth_rxtx_callback *rx_dump_cb[RTE_MAX_QUEUES_PER_PORT+1];
 229        const struct rte_eth_rxtx_callback *tx_dump_cb[RTE_MAX_QUEUES_PER_PORT+1];
 230        /**< metadata value to insert in Tx packets. */
 231        uint32_t                tx_metadata;
 232        const struct rte_eth_rxtx_callback *tx_set_md_cb[RTE_MAX_QUEUES_PER_PORT+1];
 233        /**< dynamic flags. */
 234        uint64_t                mbuf_dynf;
 235        const struct rte_eth_rxtx_callback *tx_set_dynf_cb[RTE_MAX_QUEUES_PER_PORT+1];
 236};
 237
 238/**
 239 * The data structure associated with each forwarding logical core.
 240 * The logical cores are internally numbered by a core index from 0 to
 241 * the maximum number of logical cores - 1.
 242 * The system CPU identifier of all logical cores are setup in a global
 243 * CPU id. configuration table.
 244 */
 245struct fwd_lcore {
 246        struct rte_gso_ctx gso_ctx;     /**< GSO context */
 247        struct rte_mempool *mbp; /**< The mbuf pool to use by this core */
 248        void *gro_ctx;          /**< GRO context */
 249        streamid_t stream_idx;   /**< index of 1st stream in "fwd_streams" */
 250        streamid_t stream_nb;    /**< number of streams in "fwd_streams" */
 251        lcoreid_t  cpuid_idx;    /**< index of logical core in CPU id table */
 252        volatile char stopped;   /**< stop forwarding when set */
 253};
 254
 255/*
 256 * Forwarding mode operations:
 257 *   - IO forwarding mode (default mode)
 258 *     Forwards packets unchanged.
 259 *
 260 *   - MAC forwarding mode
 261 *     Set the source and the destination Ethernet addresses of packets
 262 *     before forwarding them.
 263 *
 264 *   - IEEE1588 forwarding mode
 265 *     Check that received IEEE1588 Precise Time Protocol (PTP) packets are
 266 *     filtered and timestamped by the hardware.
 267 *     Forwards packets unchanged on the same port.
 268 *     Check that sent IEEE1588 PTP packets are timestamped by the hardware.
 269 */
 270typedef void (*port_fwd_begin_t)(portid_t pi);
 271typedef void (*port_fwd_end_t)(portid_t pi);
 272typedef void (*packet_fwd_t)(struct fwd_stream *fs);
 273
 274struct fwd_engine {
 275        const char       *fwd_mode_name; /**< Forwarding mode name. */
 276        port_fwd_begin_t port_fwd_begin; /**< NULL if nothing special to do. */
 277        port_fwd_end_t   port_fwd_end;   /**< NULL if nothing special to do. */
 278        packet_fwd_t     packet_fwd;     /**< Mandatory. */
 279};
 280
 281#define BURST_TX_WAIT_US 1
 282#define BURST_TX_RETRIES 64
 283
 284extern uint32_t burst_tx_delay_time;
 285extern uint32_t burst_tx_retry_num;
 286
 287extern struct fwd_engine io_fwd_engine;
 288extern struct fwd_engine mac_fwd_engine;
 289extern struct fwd_engine mac_swap_engine;
 290extern struct fwd_engine flow_gen_engine;
 291extern struct fwd_engine rx_only_engine;
 292extern struct fwd_engine tx_only_engine;
 293extern struct fwd_engine csum_fwd_engine;
 294extern struct fwd_engine icmp_echo_engine;
 295extern struct fwd_engine noisy_vnf_engine;
 296extern struct fwd_engine five_tuple_swap_fwd_engine;
 297#ifdef RTE_LIBRTE_IEEE1588
 298extern struct fwd_engine ieee1588_fwd_engine;
 299#endif
 300
 301extern struct fwd_engine * fwd_engines[]; /**< NULL terminated array. */
 302extern cmdline_parse_inst_t cmd_set_raw;
 303extern cmdline_parse_inst_t cmd_show_set_raw;
 304extern cmdline_parse_inst_t cmd_show_set_raw_all;
 305
 306extern uint16_t mempool_flags;
 307
 308/**
 309 * Forwarding Configuration
 310 *
 311 */
 312struct fwd_config {
 313        struct fwd_engine *fwd_eng; /**< Packet forwarding mode. */
 314        streamid_t nb_fwd_streams;  /**< Nb. of forward streams to process. */
 315        lcoreid_t  nb_fwd_lcores;   /**< Nb. of logical cores to launch. */
 316        portid_t   nb_fwd_ports;    /**< Nb. of ports involved. */
 317};
 318
 319/**
 320 * DCB mode enable
 321 */
 322enum dcb_mode_enable
 323{
 324        DCB_VT_ENABLED,
 325        DCB_ENABLED
 326};
 327
 328extern uint8_t xstats_hide_zero; /**< Hide zero values for xstats display */
 329
 330/* globals used for configuration */
 331extern uint8_t record_core_cycles; /**< Enables measurement of CPU cycles */
 332extern uint8_t record_burst_stats; /**< Enables display of RX and TX bursts */
 333extern uint16_t verbose_level; /**< Drives messages being displayed, if any. */
 334extern int testpmd_logtype; /**< Log type for testpmd logs */
 335extern uint8_t  interactive;
 336extern uint8_t  auto_start;
 337extern uint8_t  tx_first;
 338extern char cmdline_filename[PATH_MAX]; /**< offline commands file */
 339extern uint8_t  numa_support; /**< set by "--numa" parameter */
 340extern uint16_t port_topology; /**< set by "--port-topology" parameter */
 341extern uint8_t no_flush_rx; /**<set by "--no-flush-rx" parameter */
 342extern uint8_t flow_isolate_all; /**< set by "--flow-isolate-all */
 343extern uint8_t  mp_alloc_type;
 344/**< set by "--mp-anon" or "--mp-alloc" parameter */
 345extern uint32_t eth_link_speed;
 346extern uint8_t no_link_check; /**<set by "--disable-link-check" parameter */
 347extern uint8_t no_device_start; /**<set by "--disable-device-start" parameter */
 348extern volatile int test_done; /* stop packet forwarding when set to 1. */
 349extern uint8_t lsc_interrupt; /**< disabled by "--no-lsc-interrupt" parameter */
 350extern uint8_t rmv_interrupt; /**< disabled by "--no-rmv-interrupt" parameter */
 351extern uint32_t event_print_mask;
 352/**< set by "--print-event xxxx" and "--mask-event xxxx parameters */
 353extern bool setup_on_probe_event; /**< disabled by port setup-on iterator */
 354extern uint8_t hot_plug; /**< enable by "--hot-plug" parameter */
 355extern int do_mlockall; /**< set by "--mlockall" or "--no-mlockall" parameter */
 356extern uint8_t clear_ptypes; /**< disabled by set ptype cmd */
 357
 358#ifdef RTE_LIBRTE_IXGBE_BYPASS
 359extern uint32_t bypass_timeout; /**< Store the NIC bypass watchdog timeout */
 360#endif
 361
 362/*
 363 * Store specified sockets on which memory pool to be used by ports
 364 * is allocated.
 365 */
 366extern uint8_t port_numa[RTE_MAX_ETHPORTS];
 367
 368/*
 369 * Store specified sockets on which RX ring to be used by ports
 370 * is allocated.
 371 */
 372extern uint8_t rxring_numa[RTE_MAX_ETHPORTS];
 373
 374/*
 375 * Store specified sockets on which TX ring to be used by ports
 376 * is allocated.
 377 */
 378extern uint8_t txring_numa[RTE_MAX_ETHPORTS];
 379
 380extern uint8_t socket_num;
 381
 382/*
 383 * Configuration of logical cores:
 384 * nb_fwd_lcores <= nb_cfg_lcores <= nb_lcores
 385 */
 386extern lcoreid_t nb_lcores; /**< Number of logical cores probed at init time. */
 387extern lcoreid_t nb_cfg_lcores; /**< Number of configured logical cores. */
 388extern lcoreid_t nb_fwd_lcores; /**< Number of forwarding logical cores. */
 389extern unsigned int fwd_lcores_cpuids[RTE_MAX_LCORE];
 390extern unsigned int num_sockets;
 391extern unsigned int socket_ids[RTE_MAX_NUMA_NODES];
 392
 393/*
 394 * Configuration of Ethernet ports:
 395 * nb_fwd_ports <= nb_cfg_ports <= nb_ports
 396 */
 397extern portid_t nb_ports; /**< Number of ethernet ports probed at init time. */
 398extern portid_t nb_cfg_ports; /**< Number of configured ports. */
 399extern portid_t nb_fwd_ports; /**< Number of forwarding ports. */
 400extern portid_t fwd_ports_ids[RTE_MAX_ETHPORTS];
 401extern struct rte_port *ports;
 402
 403extern struct rte_eth_rxmode rx_mode;
 404extern struct rte_eth_txmode tx_mode;
 405
 406extern uint64_t rss_hf;
 407
 408extern queueid_t nb_hairpinq;
 409extern queueid_t nb_rxq;
 410extern queueid_t nb_txq;
 411
 412extern uint16_t nb_rxd;
 413extern uint16_t nb_txd;
 414
 415extern int16_t rx_free_thresh;
 416extern int8_t rx_drop_en;
 417extern int16_t tx_free_thresh;
 418extern int16_t tx_rs_thresh;
 419
 420extern uint16_t noisy_tx_sw_bufsz;
 421extern uint16_t noisy_tx_sw_buf_flush_time;
 422extern uint64_t noisy_lkup_mem_sz;
 423extern uint64_t noisy_lkup_num_writes;
 424extern uint64_t noisy_lkup_num_reads;
 425extern uint64_t noisy_lkup_num_reads_writes;
 426
 427extern uint8_t dcb_config;
 428
 429extern uint32_t mbuf_data_size_n;
 430extern uint16_t mbuf_data_size[MAX_SEGS_BUFFER_SPLIT];
 431/**< Mbuf data space size. */
 432extern uint32_t param_total_num_mbufs;
 433
 434extern uint16_t stats_period;
 435
 436extern uint16_t hairpin_mode;
 437
 438#ifdef RTE_LIB_LATENCYSTATS
 439extern uint8_t latencystats_enabled;
 440extern lcoreid_t latencystats_lcore_id;
 441#endif
 442
 443#ifdef RTE_LIB_BITRATESTATS
 444extern lcoreid_t bitrate_lcore_id;
 445extern uint8_t bitrate_enabled;
 446#endif
 447
 448extern struct rte_fdir_conf fdir_conf;
 449
 450/*
 451 * Configuration of packet segments used to scatter received packets
 452 * if some of split features is configured.
 453 */
 454extern uint16_t rx_pkt_seg_lengths[MAX_SEGS_BUFFER_SPLIT];
 455extern uint8_t  rx_pkt_nb_segs; /**< Number of segments to split */
 456extern uint16_t rx_pkt_seg_offsets[MAX_SEGS_BUFFER_SPLIT];
 457extern uint8_t  rx_pkt_nb_offs; /**< Number of specified offsets */
 458
 459/*
 460 * Configuration of packet segments used by the "txonly" processing engine.
 461 */
 462#define TXONLY_DEF_PACKET_LEN 64
 463extern uint16_t tx_pkt_length; /**< Length of TXONLY packet */
 464extern uint16_t tx_pkt_seg_lengths[RTE_MAX_SEGS_PER_PKT]; /**< Seg. lengths */
 465extern uint8_t  tx_pkt_nb_segs; /**< Number of segments in TX packets */
 466extern uint32_t tx_pkt_times_intra;
 467extern uint32_t tx_pkt_times_inter;
 468
 469enum tx_pkt_split {
 470        TX_PKT_SPLIT_OFF,
 471        TX_PKT_SPLIT_ON,
 472        TX_PKT_SPLIT_RND,
 473};
 474
 475extern enum tx_pkt_split tx_pkt_split;
 476
 477extern uint8_t txonly_multi_flow;
 478
 479extern uint16_t nb_pkt_per_burst;
 480extern uint16_t nb_pkt_flowgen_clones;
 481extern uint16_t mb_mempool_cache;
 482extern int8_t rx_pthresh;
 483extern int8_t rx_hthresh;
 484extern int8_t rx_wthresh;
 485extern int8_t tx_pthresh;
 486extern int8_t tx_hthresh;
 487extern int8_t tx_wthresh;
 488
 489extern uint16_t tx_udp_src_port;
 490extern uint16_t tx_udp_dst_port;
 491
 492extern uint32_t tx_ip_src_addr;
 493extern uint32_t tx_ip_dst_addr;
 494
 495extern struct fwd_config cur_fwd_config;
 496extern struct fwd_engine *cur_fwd_eng;
 497extern uint32_t retry_enabled;
 498extern struct fwd_lcore  **fwd_lcores;
 499extern struct fwd_stream **fwd_streams;
 500
 501extern uint16_t vxlan_gpe_udp_port; /**< UDP port of tunnel VXLAN-GPE. */
 502extern uint16_t geneve_udp_port; /**< UDP port of tunnel GENEVE. */
 503
 504extern portid_t nb_peer_eth_addrs; /**< Number of peer ethernet addresses. */
 505extern struct rte_ether_addr peer_eth_addrs[RTE_MAX_ETHPORTS];
 506
 507extern uint32_t burst_tx_delay_time; /**< Burst tx delay time(us) for mac-retry. */
 508extern uint32_t burst_tx_retry_num;  /**< Burst tx retry number for mac-retry. */
 509
 510#define GRO_DEFAULT_ITEM_NUM_PER_FLOW 32
 511#define GRO_DEFAULT_FLOW_NUM (RTE_GRO_MAX_BURST_ITEM_NUM / \
 512                GRO_DEFAULT_ITEM_NUM_PER_FLOW)
 513
 514#define GRO_DEFAULT_FLUSH_CYCLES 1
 515#define GRO_MAX_FLUSH_CYCLES 4
 516
 517struct gro_status {
 518        struct rte_gro_param param;
 519        uint8_t enable;
 520};
 521extern struct gro_status gro_ports[RTE_MAX_ETHPORTS];
 522extern uint8_t gro_flush_cycles;
 523
 524#define GSO_MAX_PKT_BURST 2048
 525struct gso_status {
 526        uint8_t enable;
 527};
 528extern struct gso_status gso_ports[RTE_MAX_ETHPORTS];
 529extern uint16_t gso_max_segment_size;
 530
 531/* VXLAN encap/decap parameters. */
 532struct vxlan_encap_conf {
 533        uint32_t select_ipv4:1;
 534        uint32_t select_vlan:1;
 535        uint32_t select_tos_ttl:1;
 536        uint8_t vni[3];
 537        rte_be16_t udp_src;
 538        rte_be16_t udp_dst;
 539        rte_be32_t ipv4_src;
 540        rte_be32_t ipv4_dst;
 541        uint8_t ipv6_src[16];
 542        uint8_t ipv6_dst[16];
 543        rte_be16_t vlan_tci;
 544        uint8_t ip_tos;
 545        uint8_t ip_ttl;
 546        uint8_t eth_src[RTE_ETHER_ADDR_LEN];
 547        uint8_t eth_dst[RTE_ETHER_ADDR_LEN];
 548};
 549
 550extern struct vxlan_encap_conf vxlan_encap_conf;
 551
 552/* NVGRE encap/decap parameters. */
 553struct nvgre_encap_conf {
 554        uint32_t select_ipv4:1;
 555        uint32_t select_vlan:1;
 556        uint8_t tni[3];
 557        rte_be32_t ipv4_src;
 558        rte_be32_t ipv4_dst;
 559        uint8_t ipv6_src[16];
 560        uint8_t ipv6_dst[16];
 561        rte_be16_t vlan_tci;
 562        uint8_t eth_src[RTE_ETHER_ADDR_LEN];
 563        uint8_t eth_dst[RTE_ETHER_ADDR_LEN];
 564};
 565
 566extern struct nvgre_encap_conf nvgre_encap_conf;
 567
 568/* L2 encap parameters. */
 569struct l2_encap_conf {
 570        uint32_t select_ipv4:1;
 571        uint32_t select_vlan:1;
 572        rte_be16_t vlan_tci;
 573        uint8_t eth_src[RTE_ETHER_ADDR_LEN];
 574        uint8_t eth_dst[RTE_ETHER_ADDR_LEN];
 575};
 576extern struct l2_encap_conf l2_encap_conf;
 577
 578/* L2 decap parameters. */
 579struct l2_decap_conf {
 580        uint32_t select_vlan:1;
 581};
 582extern struct l2_decap_conf l2_decap_conf;
 583
 584/* MPLSoGRE encap parameters. */
 585struct mplsogre_encap_conf {
 586        uint32_t select_ipv4:1;
 587        uint32_t select_vlan:1;
 588        uint8_t label[3];
 589        rte_be32_t ipv4_src;
 590        rte_be32_t ipv4_dst;
 591        uint8_t ipv6_src[16];
 592        uint8_t ipv6_dst[16];
 593        rte_be16_t vlan_tci;
 594        uint8_t eth_src[RTE_ETHER_ADDR_LEN];
 595        uint8_t eth_dst[RTE_ETHER_ADDR_LEN];
 596};
 597extern struct mplsogre_encap_conf mplsogre_encap_conf;
 598
 599/* MPLSoGRE decap parameters. */
 600struct mplsogre_decap_conf {
 601        uint32_t select_ipv4:1;
 602        uint32_t select_vlan:1;
 603};
 604extern struct mplsogre_decap_conf mplsogre_decap_conf;
 605
 606/* MPLSoUDP encap parameters. */
 607struct mplsoudp_encap_conf {
 608        uint32_t select_ipv4:1;
 609        uint32_t select_vlan:1;
 610        uint8_t label[3];
 611        rte_be16_t udp_src;
 612        rte_be16_t udp_dst;
 613        rte_be32_t ipv4_src;
 614        rte_be32_t ipv4_dst;
 615        uint8_t ipv6_src[16];
 616        uint8_t ipv6_dst[16];
 617        rte_be16_t vlan_tci;
 618        uint8_t eth_src[RTE_ETHER_ADDR_LEN];
 619        uint8_t eth_dst[RTE_ETHER_ADDR_LEN];
 620};
 621extern struct mplsoudp_encap_conf mplsoudp_encap_conf;
 622
 623/* MPLSoUDP decap parameters. */
 624struct mplsoudp_decap_conf {
 625        uint32_t select_ipv4:1;
 626        uint32_t select_vlan:1;
 627};
 628extern struct mplsoudp_decap_conf mplsoudp_decap_conf;
 629
 630extern enum rte_eth_rx_mq_mode rx_mq_mode;
 631
 632extern struct rte_flow_action_conntrack conntrack_context;
 633
 634static inline unsigned int
 635lcore_num(void)
 636{
 637        unsigned int i;
 638
 639        for (i = 0; i < RTE_MAX_LCORE; ++i)
 640                if (fwd_lcores_cpuids[i] == rte_lcore_id())
 641                        return i;
 642
 643        rte_panic("lcore_id of current thread not found in fwd_lcores_cpuids\n");
 644}
 645
 646void
 647parse_fwd_portlist(const char *port);
 648
 649static inline struct fwd_lcore *
 650current_fwd_lcore(void)
 651{
 652        return fwd_lcores[lcore_num()];
 653}
 654
 655/* Mbuf Pools */
 656static inline void
 657mbuf_poolname_build(unsigned int sock_id, char *mp_name,
 658                    int name_size, uint16_t idx)
 659{
 660        if (!idx)
 661                snprintf(mp_name, name_size,
 662                         MBUF_POOL_NAME_PFX "_%u", sock_id);
 663        else
 664                snprintf(mp_name, name_size,
 665                         MBUF_POOL_NAME_PFX "_%hu_%hu", (uint16_t)sock_id, idx);
 666}
 667
 668static inline struct rte_mempool *
 669mbuf_pool_find(unsigned int sock_id, uint16_t idx)
 670{
 671        char pool_name[RTE_MEMPOOL_NAMESIZE];
 672
 673        mbuf_poolname_build(sock_id, pool_name, sizeof(pool_name), idx);
 674        return rte_mempool_lookup((const char *)pool_name);
 675}
 676
 677/**
 678 * Read/Write operations on a PCI register of a port.
 679 */
 680static inline uint32_t
 681port_pci_reg_read(struct rte_port *port, uint32_t reg_off)
 682{
 683        const struct rte_pci_device *pci_dev;
 684        const struct rte_bus *bus;
 685        void *reg_addr;
 686        uint32_t reg_v;
 687
 688        if (!port->dev_info.device) {
 689                printf("Invalid device\n");
 690                return 0;
 691        }
 692
 693        bus = rte_bus_find_by_device(port->dev_info.device);
 694        if (bus && !strcmp(bus->name, "pci")) {
 695                pci_dev = RTE_DEV_TO_PCI(port->dev_info.device);
 696        } else {
 697                printf("Not a PCI device\n");
 698                return 0;
 699        }
 700
 701        reg_addr = ((char *)pci_dev->mem_resource[0].addr + reg_off);
 702        reg_v = *((volatile uint32_t *)reg_addr);
 703        return rte_le_to_cpu_32(reg_v);
 704}
 705
 706#define port_id_pci_reg_read(pt_id, reg_off) \
 707        port_pci_reg_read(&ports[(pt_id)], (reg_off))
 708
 709static inline void
 710port_pci_reg_write(struct rte_port *port, uint32_t reg_off, uint32_t reg_v)
 711{
 712        const struct rte_pci_device *pci_dev;
 713        const struct rte_bus *bus;
 714        void *reg_addr;
 715
 716        if (!port->dev_info.device) {
 717                printf("Invalid device\n");
 718                return;
 719        }
 720
 721        bus = rte_bus_find_by_device(port->dev_info.device);
 722        if (bus && !strcmp(bus->name, "pci")) {
 723                pci_dev = RTE_DEV_TO_PCI(port->dev_info.device);
 724        } else {
 725                printf("Not a PCI device\n");
 726                return;
 727        }
 728
 729        reg_addr = ((char *)pci_dev->mem_resource[0].addr + reg_off);
 730        *((volatile uint32_t *)reg_addr) = rte_cpu_to_le_32(reg_v);
 731}
 732
 733#define port_id_pci_reg_write(pt_id, reg_off, reg_value) \
 734        port_pci_reg_write(&ports[(pt_id)], (reg_off), (reg_value))
 735
 736static inline void
 737get_start_cycles(uint64_t *start_tsc)
 738{
 739        if (record_core_cycles)
 740                *start_tsc = rte_rdtsc();
 741}
 742
 743static inline void
 744get_end_cycles(struct fwd_stream *fs, uint64_t start_tsc)
 745{
 746        if (record_core_cycles)
 747                fs->core_cycles += rte_rdtsc() - start_tsc;
 748}
 749
 750static inline void
 751inc_rx_burst_stats(struct fwd_stream *fs, uint16_t nb_rx)
 752{
 753        if (record_burst_stats)
 754                fs->rx_burst_stats.pkt_burst_spread[nb_rx]++;
 755}
 756
 757static inline void
 758inc_tx_burst_stats(struct fwd_stream *fs, uint16_t nb_tx)
 759{
 760        if (record_burst_stats)
 761                fs->tx_burst_stats.pkt_burst_spread[nb_tx]++;
 762}
 763
 764/* Prototypes */
 765unsigned int parse_item_list(char* str, const char* item_name,
 766                        unsigned int max_items,
 767                        unsigned int *parsed_items, int check_unique_values);
 768void launch_args_parse(int argc, char** argv);
 769void cmdline_read_from_file(const char *filename);
 770void prompt(void);
 771void prompt_exit(void);
 772void nic_stats_display(portid_t port_id);
 773void nic_stats_clear(portid_t port_id);
 774void nic_xstats_display(portid_t port_id);
 775void nic_xstats_clear(portid_t port_id);
 776void device_infos_display(const char *identifier);
 777void port_infos_display(portid_t port_id);
 778void port_summary_display(portid_t port_id);
 779void port_eeprom_display(portid_t port_id);
 780void port_module_eeprom_display(portid_t port_id);
 781void port_summary_header_display(void);
 782void rx_queue_infos_display(portid_t port_idi, uint16_t queue_id);
 783void tx_queue_infos_display(portid_t port_idi, uint16_t queue_id);
 784void fwd_lcores_config_display(void);
 785void pkt_fwd_config_display(struct fwd_config *cfg);
 786void rxtx_config_display(void);
 787void fwd_config_setup(void);
 788void set_def_fwd_config(void);
 789void reconfig(portid_t new_port_id, unsigned socket_id);
 790int init_fwd_streams(void);
 791void update_fwd_ports(portid_t new_pid);
 792
 793void set_fwd_eth_peer(portid_t port_id, char *peer_addr);
 794
 795void port_mtu_set(portid_t port_id, uint16_t mtu);
 796void port_reg_bit_display(portid_t port_id, uint32_t reg_off, uint8_t bit_pos);
 797void port_reg_bit_set(portid_t port_id, uint32_t reg_off, uint8_t bit_pos,
 798                      uint8_t bit_v);
 799void port_reg_bit_field_display(portid_t port_id, uint32_t reg_off,
 800                                uint8_t bit1_pos, uint8_t bit2_pos);
 801void port_reg_bit_field_set(portid_t port_id, uint32_t reg_off,
 802                            uint8_t bit1_pos, uint8_t bit2_pos, uint32_t value);
 803void port_reg_display(portid_t port_id, uint32_t reg_off);
 804void port_reg_set(portid_t port_id, uint32_t reg_off, uint32_t value);
 805int port_action_handle_create(portid_t port_id, uint32_t id,
 806                              const struct rte_flow_indir_action_conf *conf,
 807                              const struct rte_flow_action *action);
 808int port_action_handle_destroy(portid_t port_id,
 809                               uint32_t n, const uint32_t *action);
 810struct rte_flow_action_handle *port_action_handle_get_by_id(portid_t port_id,
 811                                                            uint32_t id);
 812int port_action_handle_update(portid_t port_id, uint32_t id,
 813                              const struct rte_flow_action *action);
 814int port_flow_validate(portid_t port_id,
 815                       const struct rte_flow_attr *attr,
 816                       const struct rte_flow_item *pattern,
 817                       const struct rte_flow_action *actions,
 818                       const struct tunnel_ops *tunnel_ops);
 819int port_flow_create(portid_t port_id,
 820                     const struct rte_flow_attr *attr,
 821                     const struct rte_flow_item *pattern,
 822                     const struct rte_flow_action *actions,
 823                     const struct tunnel_ops *tunnel_ops);
 824int port_action_handle_query(portid_t port_id, uint32_t id);
 825void update_age_action_context(const struct rte_flow_action *actions,
 826                     struct port_flow *pf);
 827int port_flow_destroy(portid_t port_id, uint32_t n, const uint32_t *rule);
 828int port_flow_flush(portid_t port_id);
 829int port_flow_dump(portid_t port_id, bool dump_all,
 830                        uint32_t rule, const char *file_name);
 831int port_flow_query(portid_t port_id, uint32_t rule,
 832                    const struct rte_flow_action *action);
 833void port_flow_list(portid_t port_id, uint32_t n, const uint32_t *group);
 834void port_flow_aged(portid_t port_id, uint8_t destroy);
 835const char *port_flow_tunnel_type(struct rte_flow_tunnel *tunnel);
 836struct port_flow_tunnel *
 837port_flow_locate_tunnel(uint16_t port_id, struct rte_flow_tunnel *tun);
 838void port_flow_tunnel_list(portid_t port_id);
 839void port_flow_tunnel_destroy(portid_t port_id, uint32_t tunnel_id);
 840void port_flow_tunnel_create(portid_t port_id, const struct tunnel_ops *ops);
 841int port_flow_isolate(portid_t port_id, int set);
 842int port_meter_policy_add(portid_t port_id, uint32_t policy_id,
 843                const struct rte_flow_action *actions);
 844
 845void rx_ring_desc_display(portid_t port_id, queueid_t rxq_id, uint16_t rxd_id);
 846void tx_ring_desc_display(portid_t port_id, queueid_t txq_id, uint16_t txd_id);
 847
 848int set_fwd_lcores_list(unsigned int *lcorelist, unsigned int nb_lc);
 849int set_fwd_lcores_mask(uint64_t lcoremask);
 850void set_fwd_lcores_number(uint16_t nb_lc);
 851
 852void set_fwd_ports_list(unsigned int *portlist, unsigned int nb_pt);
 853void set_fwd_ports_mask(uint64_t portmask);
 854void set_fwd_ports_number(uint16_t nb_pt);
 855int port_is_forwarding(portid_t port_id);
 856
 857void rx_vlan_strip_set(portid_t port_id, int on);
 858void rx_vlan_strip_set_on_queue(portid_t port_id, uint16_t queue_id, int on);
 859
 860void rx_vlan_filter_set(portid_t port_id, int on);
 861void rx_vlan_all_filter_set(portid_t port_id, int on);
 862void rx_vlan_qinq_strip_set(portid_t port_id, int on);
 863int rx_vft_set(portid_t port_id, uint16_t vlan_id, int on);
 864void vlan_extend_set(portid_t port_id, int on);
 865void vlan_tpid_set(portid_t port_id, enum rte_vlan_type vlan_type,
 866                   uint16_t tp_id);
 867void tx_vlan_set(portid_t port_id, uint16_t vlan_id);
 868void tx_qinq_set(portid_t port_id, uint16_t vlan_id, uint16_t vlan_id_outer);
 869void tx_vlan_reset(portid_t port_id);
 870void tx_vlan_pvid_set(portid_t port_id, uint16_t vlan_id, int on);
 871
 872void set_qmap(portid_t port_id, uint8_t is_rx, uint16_t queue_id, uint8_t map_value);
 873
 874void set_xstats_hide_zero(uint8_t on_off);
 875
 876void set_record_core_cycles(uint8_t on_off);
 877void set_record_burst_stats(uint8_t on_off);
 878void set_verbose_level(uint16_t vb_level);
 879void set_rx_pkt_segments(unsigned int *seg_lengths, unsigned int nb_segs);
 880void show_rx_pkt_segments(void);
 881void set_rx_pkt_offsets(unsigned int *seg_offsets, unsigned int nb_offs);
 882void show_rx_pkt_offsets(void);
 883void set_tx_pkt_segments(unsigned int *seg_lengths, unsigned int nb_segs);
 884void show_tx_pkt_segments(void);
 885void set_tx_pkt_times(unsigned int *tx_times);
 886void show_tx_pkt_times(void);
 887void set_tx_pkt_split(const char *name);
 888int parse_fec_mode(const char *name, enum rte_eth_fec_mode *mode);
 889void show_fec_capability(uint32_t num, struct rte_eth_fec_capa *speed_fec_capa);
 890void set_nb_pkt_per_burst(uint16_t pkt_burst);
 891char *list_pkt_forwarding_modes(void);
 892char *list_pkt_forwarding_retry_modes(void);
 893void set_pkt_forwarding_mode(const char *fwd_mode);
 894void start_packet_forwarding(int with_tx_first);
 895void fwd_stats_display(void);
 896void fwd_stats_reset(void);
 897void stop_packet_forwarding(void);
 898void dev_set_link_up(portid_t pid);
 899void dev_set_link_down(portid_t pid);
 900void init_port_config(void);
 901void set_port_slave_flag(portid_t slave_pid);
 902void clear_port_slave_flag(portid_t slave_pid);
 903uint8_t port_is_bonding_slave(portid_t slave_pid);
 904
 905int init_port_dcb_config(portid_t pid, enum dcb_mode_enable dcb_mode,
 906                     enum rte_eth_nb_tcs num_tcs,
 907                     uint8_t pfc_en);
 908int start_port(portid_t pid);
 909void stop_port(portid_t pid);
 910void close_port(portid_t pid);
 911void reset_port(portid_t pid);
 912void attach_port(char *identifier);
 913void detach_devargs(char *identifier);
 914void detach_port_device(portid_t port_id);
 915int all_ports_stopped(void);
 916int port_is_stopped(portid_t port_id);
 917int port_is_started(portid_t port_id);
 918void pmd_test_exit(void);
 919#if defined(RTE_NET_I40E) || defined(RTE_NET_IXGBE)
 920void fdir_get_infos(portid_t port_id);
 921#endif
 922void fdir_set_flex_mask(portid_t port_id,
 923                           struct rte_eth_fdir_flex_mask *cfg);
 924void fdir_set_flex_payload(portid_t port_id,
 925                           struct rte_eth_flex_payload_cfg *cfg);
 926void port_rss_reta_info(portid_t port_id,
 927                        struct rte_eth_rss_reta_entry64 *reta_conf,
 928                        uint16_t nb_entries);
 929
 930void set_vf_traffic(portid_t port_id, uint8_t is_rx, uint16_t vf, uint8_t on);
 931
 932int
 933rx_queue_setup(uint16_t port_id, uint16_t rx_queue_id,
 934               uint16_t nb_rx_desc, unsigned int socket_id,
 935               struct rte_eth_rxconf *rx_conf, struct rte_mempool *mp);
 936
 937int set_queue_rate_limit(portid_t port_id, uint16_t queue_idx, uint16_t rate);
 938int set_vf_rate_limit(portid_t port_id, uint16_t vf, uint16_t rate,
 939                                uint64_t q_msk);
 940
 941void port_rss_hash_conf_show(portid_t port_id, int show_rss_key);
 942void port_rss_hash_key_update(portid_t port_id, char rss_type[],
 943                              uint8_t *hash_key, uint8_t hash_key_len);
 944int rx_queue_id_is_invalid(queueid_t rxq_id);
 945int tx_queue_id_is_invalid(queueid_t txq_id);
 946void setup_gro(const char *onoff, portid_t port_id);
 947void setup_gro_flush_cycles(uint8_t cycles);
 948void show_gro(portid_t port_id);
 949void setup_gso(const char *mode, portid_t port_id);
 950int eth_dev_info_get_print_err(uint16_t port_id,
 951                        struct rte_eth_dev_info *dev_info);
 952void eth_set_promisc_mode(uint16_t port_id, int enable);
 953void eth_set_allmulticast_mode(uint16_t port, int enable);
 954int eth_link_get_nowait_print_err(uint16_t port_id, struct rte_eth_link *link);
 955int eth_macaddr_get_print_err(uint16_t port_id,
 956                        struct rte_ether_addr *mac_addr);
 957
 958/* Functions to display the set of MAC addresses added to a port*/
 959void show_macs(portid_t port_id);
 960void show_mcast_macs(portid_t port_id);
 961
 962/* Functions to manage the set of filtered Multicast MAC addresses */
 963void mcast_addr_add(portid_t port_id, struct rte_ether_addr *mc_addr);
 964void mcast_addr_remove(portid_t port_id, struct rte_ether_addr *mc_addr);
 965void port_dcb_info_display(portid_t port_id);
 966
 967uint8_t *open_file(const char *file_path, uint32_t *size);
 968int save_file(const char *file_path, uint8_t *buf, uint32_t size);
 969int close_file(uint8_t *buf);
 970
 971void port_queue_region_info_display(portid_t port_id, void *buf);
 972
 973enum print_warning {
 974        ENABLED_WARN = 0,
 975        DISABLED_WARN
 976};
 977int port_id_is_invalid(portid_t port_id, enum print_warning warning);
 978void print_valid_ports(void);
 979int new_socket_id(unsigned int socket_id);
 980
 981queueid_t get_allowed_max_nb_rxq(portid_t *pid);
 982int check_nb_rxq(queueid_t rxq);
 983queueid_t get_allowed_max_nb_txq(portid_t *pid);
 984int check_nb_txq(queueid_t txq);
 985int check_nb_rxd(queueid_t rxd);
 986int check_nb_txd(queueid_t txd);
 987queueid_t get_allowed_max_nb_hairpinq(portid_t *pid);
 988int check_nb_hairpinq(queueid_t hairpinq);
 989
 990uint16_t dump_rx_pkts(uint16_t port_id, uint16_t queue, struct rte_mbuf *pkts[],
 991                      uint16_t nb_pkts, __rte_unused uint16_t max_pkts,
 992                      __rte_unused void *user_param);
 993
 994uint16_t dump_tx_pkts(uint16_t port_id, uint16_t queue, struct rte_mbuf *pkts[],
 995                      uint16_t nb_pkts, __rte_unused void *user_param);
 996
 997void add_rx_dump_callbacks(portid_t portid);
 998void remove_rx_dump_callbacks(portid_t portid);
 999void add_tx_dump_callbacks(portid_t portid);
1000void remove_tx_dump_callbacks(portid_t portid);
1001void configure_rxtx_dump_callbacks(uint16_t verbose);
1002
1003uint16_t tx_pkt_set_md(uint16_t port_id, __rte_unused uint16_t queue,
1004                       struct rte_mbuf *pkts[], uint16_t nb_pkts,
1005                       __rte_unused void *user_param);
1006void add_tx_md_callback(portid_t portid);
1007void remove_tx_md_callback(portid_t portid);
1008
1009uint16_t tx_pkt_set_dynf(uint16_t port_id, __rte_unused uint16_t queue,
1010                         struct rte_mbuf *pkts[], uint16_t nb_pkts,
1011                         __rte_unused void *user_param);
1012void add_tx_dynf_callback(portid_t portid);
1013void remove_tx_dynf_callback(portid_t portid);
1014int update_jumbo_frame_offload(portid_t portid);
1015
1016/*
1017 * Work-around of a compilation error with ICC on invocations of the
1018 * rte_be_to_cpu_16() function.
1019 */
1020#ifdef __GCC__
1021#define RTE_BE_TO_CPU_16(be_16_v)  rte_be_to_cpu_16((be_16_v))
1022#define RTE_CPU_TO_BE_16(cpu_16_v) rte_cpu_to_be_16((cpu_16_v))
1023#else
1024#if RTE_BYTE_ORDER == RTE_BIG_ENDIAN
1025#define RTE_BE_TO_CPU_16(be_16_v)  (be_16_v)
1026#define RTE_CPU_TO_BE_16(cpu_16_v) (cpu_16_v)
1027#else
1028#define RTE_BE_TO_CPU_16(be_16_v) \
1029        (uint16_t) ((((be_16_v) & 0xFF) << 8) | ((be_16_v) >> 8))
1030#define RTE_CPU_TO_BE_16(cpu_16_v) \
1031        (uint16_t) ((((cpu_16_v) & 0xFF) << 8) | ((cpu_16_v) >> 8))
1032#endif
1033#endif /* __GCC__ */
1034
1035#define TESTPMD_LOG(level, fmt, args...) \
1036        rte_log(RTE_LOG_ ## level, testpmd_logtype, "testpmd: " fmt, ## args)
1037
1038#endif /* _TESTPMD_H_ */
1039