FD.io VPP  v21.06
Vector Packet Processing
dpdk.h
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2015 Cisco and/or its affiliates.
3  * Licensed under the Apache License, Version 2.0 (the "License");
4  * you may not use this file except in compliance with the License.
5  * You may obtain a copy of the License at:
6  *
7  * http://www.apache.org/licenses/LICENSE-2.0
8  *
9  * Unless required by applicable law or agreed to in writing, software
10  * distributed under the License is distributed on an "AS IS" BASIS,
11  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12  * See the License for the specific language governing permissions and
13  * limitations under the License.
14  */
15 #ifndef __included_dpdk_h__
16 #define __included_dpdk_h__
17 
18 /* $$$$ We should rename always_inline -> clib_always_inline */
19 #undef always_inline
20 
21 #define ALLOW_EXPERIMENTAL_API
22 
23 #include <rte_config.h>
24 
25 #include <rte_common.h>
26 #include <rte_dev.h>
27 #include <rte_memory.h>
28 #include <rte_eal.h>
29 #include <rte_per_lcore.h>
30 #include <rte_cycles.h>
31 #include <rte_lcore.h>
32 #include <rte_per_lcore.h>
33 #include <rte_interrupts.h>
34 #include <rte_pci.h>
35 #include <rte_bus_vmbus.h>
36 #include <rte_ether.h>
37 #include <rte_ethdev.h>
38 #include <rte_ring.h>
39 #include <rte_mempool.h>
40 #include <rte_mbuf.h>
41 #include <rte_version.h>
42 #include <rte_sched.h>
43 #include <rte_net.h>
44 #include <rte_bus_pci.h>
45 #include <rte_flow.h>
46 
47 #include <vnet/devices/devices.h>
48 
49 #if CLIB_DEBUG > 0
50 #define always_inline static inline
51 #else
52 #define always_inline static inline __attribute__ ((__always_inline__))
53 #endif
54 
55 #include <vlib/pci/pci.h>
56 #include <vlib/vmbus/vmbus.h>
57 #include <vnet/flow/flow.h>
58 
62 
63 #if RTE_VERSION < RTE_VERSION_NUM(20, 8, 0, 0)
64 #define DPDK_MLX5_PMD_NAME "net_mlx5"
65 #else
66 #define DPDK_MLX5_PMD_NAME "mlx5_pci"
67 #endif
68 
69 #define foreach_dpdk_pmd \
70  _ ("net_thunderx", THUNDERX) \
71  _ ("net_e1000_em", E1000EM) \
72  _ ("net_e1000_igb", IGB) \
73  _ ("net_e1000_igb_vf", IGBVF) \
74  _ ("net_ixgbe", IXGBE) \
75  _ ("net_ixgbe_vf", IXGBEVF) \
76  _ ("net_i40e", I40E) \
77  _ ("net_i40e_vf", I40EVF) \
78  _ ("net_ice", ICE) \
79  _ ("net_iavf", IAVF) \
80  _ ("net_virtio", VIRTIO) \
81  _ ("net_enic", ENIC) \
82  _ ("net_vmxnet3", VMXNET3) \
83  _ ("AF_PACKET PMD", AF_PACKET) \
84  _ ("net_fm10k", FM10K) \
85  _ ("net_cxgbe", CXGBE) \
86  _ ("net_mlx4", MLX4) \
87  _ (DPDK_MLX5_PMD_NAME, MLX5) \
88  _ ("net_dpaa2", DPAA2) \
89  _ ("net_virtio_user", VIRTIO_USER) \
90  _ ("net_vhost", VHOST_ETHER) \
91  _ ("net_ena", ENA) \
92  _ ("net_failsafe", FAILSAFE) \
93  _ ("net_liovf", LIOVF_ETHER) \
94  _ ("net_qede", QEDE) \
95  _ ("net_netvsc", NETVSC) \
96  _ ("net_bnxt", BNXT)
97 
98 typedef enum
99 {
101 #define _(s,f) VNET_DPDK_PMD_##f,
103 #undef _
104  VNET_DPDK_PMD_UNKNOWN, /* must be last */
105 } dpdk_pmd_t;
106 
107 typedef enum
108 {
128 
129 typedef uint16_t dpdk_portid_t;
130 
131 #define foreach_dpdk_device_flags \
132  _ (0, ADMIN_UP, "admin-up") \
133  _ (1, PROMISC, "promisc") \
134  _ (2, PMD, "pmd") \
135  _ (3, PMD_INIT_FAIL, "pmd-init-fail") \
136  _ (4, MAYBE_MULTISEG, "maybe-multiseg") \
137  _ (5, HAVE_SUBIF, "subif") \
138  _ (9, TX_OFFLOAD, "tx-offload") \
139  _ (10, INTEL_PHDR_CKSUM, "intel-phdr-cksum") \
140  _ (11, RX_FLOW_OFFLOAD, "rx-flow-offload") \
141  _ (12, RX_IP4_CKSUM, "rx-ip4-cksum") \
142  _ (13, INT_SUPPORTED, "int-supported") \
143  _ (14, INT_UNMASKABLE, "int-unmaskable")
144 
145 enum
146 {
147 #define _(a, b, c) DPDK_DEVICE_FLAG_##b = (1 << a),
149 #undef _
150 };
151 
152 typedef struct
153 {
156  struct rte_flow *handle;
158 
159 typedef struct
160 {
165 
166 typedef struct
167 {
168  CLIB_CACHE_LINE_ALIGN_MARK (cacheline0);
171  int efd;
174 
175 typedef struct
176 {
177  CLIB_CACHE_LINE_ALIGN_MARK (cacheline0);
180 
181 typedef struct
182 {
183  CLIB_CACHE_LINE_ALIGN_MARK (cacheline0);
184 
187 
188  /* Instance ID to access internal device array. */
190 
193 
194  /* next node index if we decide to steal the rx graph arc */
196 
200 
201  /* DPDK device port number */
205 
206  CLIB_CACHE_LINE_ALIGN_MARK (cacheline1);
209 
212 
213  /* number of sub-interfaces */
215 
216  /* PMD related */
217  struct rte_eth_conf port_conf;
218  struct rte_eth_txconf tx_conf;
219 
220  /* flow related */
224  u32 *parked_lookup_indexes; /* vector */
226  struct rte_flow_error last_flow_error;
227 
228  /* af_packet instance number */
230 
231  struct rte_eth_link link;
233 
234  struct rte_eth_stats stats;
235  struct rte_eth_stats last_stats;
236  struct rte_eth_xstat *xstats;
239 
240  /* mac address */
242 
243  /* error string */
245 } dpdk_device_t;
246 
247 #define DPDK_STATS_POLL_INTERVAL (10.0)
248 #define DPDK_MIN_STATS_POLL_INTERVAL (0.001) /* 1msec */
249 
250 #define DPDK_LINK_POLL_INTERVAL (3.0)
251 #define DPDK_MIN_LINK_POLL_INTERVAL (0.001) /* 1msec */
252 
253 #define foreach_dpdk_device_config_item \
254  _ (num_rx_queues) \
255  _ (num_tx_queues) \
256  _ (num_rx_desc) \
257  _ (num_tx_desc) \
258  _ (rss_fn)
259 
260 typedef enum
261 {
266 
267 typedef struct
268 {
269  union
270  {
271  vlib_pci_addr_t pci_addr;
273  };
278 #define DPDK_DEVICE_VLAN_STRIP_DEFAULT 0
279 #define DPDK_DEVICE_VLAN_STRIP_OFF 1
280 #define DPDK_DEVICE_VLAN_STRIP_ON 2
281 
282 #define _(x) uword x;
284 #undef _
289 
290 #define DPDK_DEVICE_TSO_DEFAULT 0
291 #define DPDK_DEVICE_TSO_OFF 1
292 #define DPDK_DEVICE_TSO_ON 2
294 
295 typedef struct
296 {
297 
298  /* Config stuff */
307 
308 #define DPDK_MAX_SIMD_BITWIDTH_DEFAULT 0
309 #define DPDK_MAX_SIMD_BITWIDTH_256 256
310 #define DPDK_MAX_SIMD_BITWIDTH_512 512
311 
312  /* Required config parameters */
318 
319  /*
320  * format interface names ala xxxEthernet%d/%d/%d instead of
321  * xxxEthernet%x/%x/%x.
322  */
324 
325  /* per-device config */
330 
331  /* devices blacklist by pci vendor_id, device_id */
333  /* devices blacklist by VMBUS address */
335 
337 
339 
340 #define DPDK_RX_BURST_SZ VLIB_FRAME_SIZE
341 
342 typedef struct
343 {
344  CLIB_CACHE_LINE_ALIGN_MARK (cacheline0);
345  struct rte_mbuf *mbufs[DPDK_RX_BURST_SZ];
352 
353 typedef struct
354 {
355 
356  /* Devices */
359 
360  /* buffer flags template, configurable to enable/disable tcp / udp cksum */
362 
363  /*
364  * flag indicating that a posted admin up/down
365  * (via post_sw_interface_set_flags) is in progress
366  */
368 
369  /* control interval of dpdk link state and stat polling */
372 
373  /* convenience */
377 
378  /* API message ID base */
380 
381  /* logging */
385 } dpdk_main_t;
386 
387 extern dpdk_main_t dpdk_main;
388 
389 typedef struct
390 {
394  struct rte_mbuf mb;
395  u8 data[256]; /* First 256 data bytes, used for hexdump */
396  /* Copy of VLIB buffer; packet data stored in pre_data. */
399 
400 typedef struct
401 {
405  struct rte_mbuf mb;
406  u8 data[256]; /* First 256 data bytes, used for hexdump */
407  vlib_buffer_t buffer; /* Copy of VLIB buffer; pkt data stored in pre_data. */
409 
410 void dpdk_device_setup (dpdk_device_t * xd);
411 void dpdk_device_start (dpdk_device_t * xd);
412 void dpdk_device_stop (dpdk_device_t * xd);
414  enum rte_eth_event_type type,
415  void *param, void *ret_param);
416 
417 #define foreach_dpdk_error \
418  _(NONE, "no error") \
419  _(RX_PACKET_ERROR, "Rx packet errors") \
420  _(RX_BAD_FCS, "Rx bad fcs") \
421  _(IP_CHECKSUM_ERROR, "Rx ip checksum errors") \
422  _(RX_ALLOC_FAIL, "rx buf alloc from free list failed") \
423  _(RX_ALLOC_NO_PHYSMEM, "rx buf alloc failed no physmem") \
424  _(RX_ALLOC_DROP_PKTS, "rx packets dropped due to alloc error")
425 
426 typedef enum
427 {
428 #define _(f,s) DPDK_ERROR_##f,
430 #undef _
432 } dpdk_error_t;
433 
434 #define dpdk_log_err(...) \
435  vlib_log(VLIB_LOG_LEVEL_ERR, dpdk_main.log_default, __VA_ARGS__)
436 #define dpdk_log_warn(...) \
437  vlib_log(VLIB_LOG_LEVEL_WARNING, dpdk_main.log_default, __VA_ARGS__)
438 #define dpdk_log_notice(...) \
439  vlib_log(VLIB_LOG_LEVEL_NOTICE, dpdk_main.log_default, __VA_ARGS__)
440 #define dpdk_log_info(...) \
441  vlib_log(VLIB_LOG_LEVEL_INFO, dpdk_main.log_default, __VA_ARGS__)
442 
444 
445 #define foreach_dpdk_rss_hf \
446  _(0, ETH_RSS_FRAG_IPV4, "ipv4-frag") \
447  _(1, ETH_RSS_NONFRAG_IPV4_TCP, "ipv4-tcp") \
448  _(2, ETH_RSS_NONFRAG_IPV4_UDP, "ipv4-udp") \
449  _(3, ETH_RSS_NONFRAG_IPV4_SCTP, "ipv4-sctp") \
450  _(4, ETH_RSS_NONFRAG_IPV4_OTHER, "ipv4-other") \
451  _(5, ETH_RSS_IPV4, "ipv4") \
452  _(6, ETH_RSS_IPV6_TCP_EX, "ipv6-tcp-ex") \
453  _(7, ETH_RSS_IPV6_UDP_EX, "ipv6-udp-ex") \
454  _(8, ETH_RSS_FRAG_IPV6, "ipv6-frag") \
455  _(9, ETH_RSS_NONFRAG_IPV6_TCP, "ipv6-tcp") \
456  _(10, ETH_RSS_NONFRAG_IPV6_UDP, "ipv6-udp") \
457  _(11, ETH_RSS_NONFRAG_IPV6_SCTP, "ipv6-sctp") \
458  _(12, ETH_RSS_NONFRAG_IPV6_OTHER, "ipv6-other") \
459  _(13, ETH_RSS_IPV6_EX, "ipv6-ex") \
460  _(14, ETH_RSS_IPV6, "ipv6") \
461  _(15, ETH_RSS_L2_PAYLOAD, "l2-payload") \
462  _(16, ETH_RSS_PORT, "port") \
463  _(17, ETH_RSS_VXLAN, "vxlan") \
464  _(18, ETH_RSS_GENEVE, "geneve") \
465  _(19, ETH_RSS_NVGRE, "nvgre") \
466  _(20, ETH_RSS_GTPU, "gtpu") \
467  _(60, ETH_RSS_L4_DST_ONLY, "l4-dst-only") \
468  _(61, ETH_RSS_L4_SRC_ONLY, "l4-src-only") \
469  _(62, ETH_RSS_L3_DST_ONLY, "l3-dst-only") \
470  _(63, ETH_RSS_L3_SRC_ONLY, "l3-src-only")
471 
484 
486 
487 struct rte_pci_device *dpdk_get_pci_device (const struct rte_eth_dev_info
488  *info);
489 struct rte_vmbus_device *
490 dpdk_get_vmbus_device (const struct rte_eth_dev_info *info);
491 void dpdk_cli_reference (void);
492 
493 #if CLI_DEBUG
494 int dpdk_buffer_validate_trajectory_all (u32 * uninitialized);
495 void dpdk_buffer_poison_trajectory_all (void);
496 #endif
497 
498 #endif /* __included_dpdk_h__ */
499 
500 /*
501  * fd.io coding-style-patch-verification: ON
502  *
503  * Local Variables:
504  * eval: (c-set-style "gnu")
505  * End:
506  */
#define foreach_dpdk_device_flags
Definition: dpdk.h:131
u8 * default_mac_address
Definition: dpdk.h:241
format_function_t format_dpdk_tx_trace
Definition: dpdk.h:475
f64 time_last_link_update
Definition: dpdk.h:232
Definition: mhash.h:46
format_function_t format_dpdk_flow
Definition: dpdk.h:479
#define CLIB_CACHE_LINE_ALIGN_MARK(mark)
Definition: cache.h:60
format_function_t format_dpdk_tx_offload_caps
Definition: dpdk.h:482
u8 * eal_init_args_str
Definition: dpdk.h:300
vl_api_wireguard_peer_flags_t flags
Definition: wireguard.api:105
vlib_log_class_t log_ipsec
Definition: dpdk.h:384
u8 interface_name_format_decimal
Definition: dpdk.h:323
dpdk_main_t dpdk_main
Definition: init.c:48
vlib_node_registration_t admin_up_down_process_node
(constructor) VLIB_REGISTER_NODE (admin_up_down_process_node)
Definition: device.c:796
vnet_device_class_t dpdk_device_class
u32 sw_if_index
Definition: dpdk.h:192
#define foreach_dpdk_error
Definition: dpdk.h:417
dpdk_error_t
Definition: dpdk.h:426
struct rte_vmbus_device * dpdk_get_vmbus_device(const struct rte_eth_dev_info *info)
Definition: common.c:348
u8 buffer_pool_index
Definition: dpdk.h:169
u16 max_simd_bitwidth
Definition: dpdk.h:306
u16 flags
Definition: dpdk.h:199
clib_error_t * errors
Definition: dpdk.h:244
u32 per_interface_next_index
Definition: dpdk.h:195
u8 enable_tcp_udp_checksum
Definition: dpdk.h:303
u32 supported_flow_actions
Definition: dpdk.h:221
struct rte_flow * handle
Definition: dpdk.h:156
format_function_t format_dpdk_rte_mbuf
Definition: dpdk.h:477
u16 num_subifs
Definition: dpdk.h:214
struct _vnet_device_class vnet_device_class_t
u32 * blacklist_by_pci_vendor_and_device
Definition: dpdk.h:332
unsigned char u8
Definition: types.h:56
u8 data[128]
Definition: ipsec_types.api:92
double f64
Definition: types.h:142
unsigned int u32
Definition: types.h:88
u8 *() format_function_t(u8 *s, va_list *args)
Definition: format.h:48
u32 vlib_log_class_t
Definition: vlib.h:52
foreach_dpdk_device_config_item clib_bitmap_t * workers
Definition: dpdk.h:285
dpdk_config_main_t dpdk_config_main
Definition: init.c:49
dpdk_portid_t port_id
Definition: dpdk.h:202
vlib_node_registration_t dpdk_input_node
(constructor) VLIB_REGISTER_NODE (dpdk_input_node)
Definition: node.c:480
dpdk_device_config_t default_devconf
Definition: dpdk.h:326
u32 buffer_index
Definition: dpdk.h:391
f64 stat_poll_interval
Definition: dpdk.h:371
uword clib_file_index
Definition: dpdk.h:172
u16 rx_q_used
Definition: dpdk.h:197
i16 buffer_advance
Definition: dpdk.h:163
format_function_t format_dpdk_rx_rte_mbuf
Definition: dpdk.h:478
clib_error_t * unformat_rss_fn(unformat_input_t *input, uword *rss_fn)
Definition: format.c:939
u32 parked_loop_count
Definition: dpdk.h:225
u32 device_index
Definition: dpdk.h:189
#define DPDK_RX_BURST_SZ
Definition: dpdk.h:340
f64 time_last_stats_update
Definition: dpdk.h:237
vl_api_fib_path_type_t type
Definition: fib_types.api:123
u16 * next
vlib_pci_addr_t pci_addr
Definition: dpdk.h:271
vl_api_ikev2_sa_stats_t stats
u8 ** eal_init_args
Definition: dpdk.h:299
dpdk_per_thread_data_t * per_thread_data
Definition: dpdk.h:358
void dpdk_device_stop(dpdk_device_t *xd)
Definition: common.c:283
struct _unformat_input_t unformat_input_t
unsigned short u16
Definition: types.h:57
#define foreach_dpdk_pmd
Definition: dpdk.h:69
vlib_buffer_t buffer_template
Definition: dpdk.h:350
dpdk_port_type_t port_type
Definition: dpdk.h:238
dpdk_tx_queue_t * tx_queues
Definition: dpdk.h:186
signed char i8
Definition: types.h:45
u16 tx_q_used
Definition: dpdk.h:198
u16 nb_rx_desc
Definition: dpdk.h:208
uint16_t dpdk_portid_t
Definition: dpdk.h:129
u32 hw_if_index
Definition: dpdk.h:191
u16 af_packet_instance_num
Definition: dpdk.h:229
vlib_log_class_t log_cryptodev
Definition: dpdk.h:383
u32 num_crypto_mbufs
Definition: dpdk.h:317
Definition: dpdk.h:152
dpdk_device_t * devices
Definition: dpdk.h:357
vlib_vmbus_addr_t vmbus_addr
Definition: dpdk.h:272
dpdk_flow_lookup_entry_t * flow_lookup_entries
Definition: dpdk.h:223
u8 nchannels_set_manually
Definition: dpdk.h:314
u32 * parked_lookup_indexes
Definition: dpdk.h:224
dpdk_device_config_t * dev_confs
Definition: dpdk.h:327
dpdk_pmd_t pmd
Definition: dpdk.h:203
u32 flow_index
Definition: dpdk.h:154
format_function_t format_dpdk_device_errors
Definition: dpdk.h:474
struct rte_pci_device * dpdk_get_pci_device(const struct rte_eth_dev_info *info)
Definition: common.c:335
void dpdk_device_setup(dpdk_device_t *xd)
Definition: common.c:42
vlib_vmbus_addr_t * blacklist_by_vmbus_addr
Definition: dpdk.h:334
u8 coremask_set_manually
Definition: dpdk.h:313
dpdk_pmd_t
Definition: dpdk.h:98
format_function_t format_dpdk_device
Definition: dpdk.h:473
int dpdk_port_state_callback(dpdk_portid_t port_id, enum rte_eth_event_type type, void *param, void *ret_param)
Definition: common.c:325
format_function_t format_dpdk_rss_hf_name
Definition: dpdk.h:480
struct rte_eth_xstat * xstats
Definition: dpdk.h:236
u8 enable_telemetry
Definition: dpdk.h:305
u8 * interface_name_suffix
Definition: dpdk.h:211
u16 device_index
Definition: dpdk.h:403
format_function_t format_dpdk_device_name
Definition: dpdk.h:472
vlib_log_class_t log_default
Definition: dpdk.h:382
vlib_buffer_t buffer
Definition: dpdk.h:407
void dpdk_update_link_state(dpdk_device_t *xd, f64 now)
Definition: init.c:1744
u32 buffer_index
Definition: dpdk.h:402
format_function_t format_dpdk_rx_trace
Definition: dpdk.h:476
u8 * name
Definition: dpdk.h:210
vlib_buffer_t buffer
Definition: dpdk.h:397
dpdk_port_type_t
Definition: dpdk.h:107
struct _vlib_node_registration vlib_node_registration_t
Definition: dpdk.h:159
dpdk_device_addr_type_t
Definition: dpdk.h:260
void dpdk_device_start(dpdk_device_t *xd)
Definition: common.c:247
u8 admin_up_down_in_progress
Definition: dpdk.h:367
u32 queue_index
Definition: dpdk.h:170
u8 no_tx_checksum_offload
Definition: dpdk.h:304
VLIB buffer representation.
Definition: buffer.h:111
u64 uword
Definition: types.h:112
format_function_t format_dpdk_rx_offload_caps
Definition: dpdk.h:481
u16 device_index
Definition: dpdk.h:392
clib_spinlock_t lock
Definition: dpdk.h:178
u32 buffer_flags_template
Definition: dpdk.h:361
void dpdk_cli_reference(void)
Definition: cli.c:389
u16 next_index
Definition: dpdk.h:162
vnet_flow_dev_ops_function_t dpdk_flow_ops_fn
Definition: dpdk.h:483
#define foreach_dpdk_device_config_item
Definition: dpdk.h:253
uword clib_bitmap_t
Definition: bitmap.h:50
f64 now
dpdk_flow_entry_t * flow_entries
Definition: dpdk.h:222
i8 cpu_socket
Definition: dpdk.h:204
u16 msg_id_base
Definition: dpdk.h:379
dpdk_rx_queue_t * rx_queues
Definition: dpdk.h:185
u8 * uio_driver_name
Definition: dpdk.h:301
dpdk_device_addr_type_t dev_addr_type
Definition: dpdk.h:274
u8 queue_index
Definition: dpdk.h:393
vnet_main_t * vnet_main
Definition: dpdk.h:375
u16 nb_tx_desc
Definition: dpdk.h:207
mhash_t device_config_index_by_vmbus_addr
Definition: dpdk.h:329
uword * device_config_index_by_pci_addr
Definition: dpdk.h:328
clib_bitmap_t * rss_queues
Definition: dpdk.h:288
u32 flow_id
Definition: dpdk.h:161
f64 link_state_poll_interval
Definition: dpdk.h:370
u32 mark
Definition: dpdk.h:155
dpdk_config_main_t * conf
Definition: dpdk.h:376
signed short i16
Definition: types.h:46
int() vnet_flow_dev_ops_function_t(struct vnet_main_t *vnm, vnet_flow_dev_op_t op, u32 hw_if_index, u32 index, uword *private_data)
Definition: interface.h:105
u16 queue_index
Definition: dpdk.h:404
vlib_main_t * vlib_main
Definition: dpdk.h:374