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