FD.io VPP  v17.01.1-3-gc6833f8
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 #include <rte_config.h>
22 
23 #include <rte_common.h>
24 #include <rte_dev.h>
25 #include <rte_log.h>
26 #include <rte_memory.h>
27 #include <rte_memzone.h>
28 #include <rte_tailq.h>
29 #include <rte_eal.h>
30 #include <rte_per_lcore.h>
31 #include <rte_launch.h>
32 #include <rte_atomic.h>
33 #include <rte_cycles.h>
34 #include <rte_prefetch.h>
35 #include <rte_lcore.h>
36 #include <rte_per_lcore.h>
37 #include <rte_branch_prediction.h>
38 #include <rte_interrupts.h>
39 #include <rte_pci.h>
40 #include <rte_random.h>
41 #include <rte_debug.h>
42 #include <rte_ether.h>
43 #include <rte_ethdev.h>
44 #include <rte_ring.h>
45 #include <rte_mempool.h>
46 #include <rte_mbuf.h>
47 #include <rte_virtio_net.h>
48 #include <rte_version.h>
49 #include <rte_eth_bond.h>
50 #include <rte_sched.h>
51 
52 #include <vnet/unix/pcap.h>
53 #include <vnet/devices/devices.h>
54 
55 #if CLIB_DEBUG > 0
56 #define always_inline static inline
57 #else
58 #define always_inline static inline __attribute__ ((__always_inline__))
59 #endif
60 
61 #include <vlib/pci/pci.h>
62 
63 #define NB_MBUF (16<<10)
64 
68 
69 #if RTE_VERSION >= RTE_VERSION_NUM(16, 11, 0, 0)
70 #define foreach_dpdk_pmd \
71  _ ("net_thunderx", THUNDERX) \
72  _ ("net_e1000_em", E1000EM) \
73  _ ("net_e1000_igb", IGB) \
74  _ ("net_e1000_igb_vf", IGBVF) \
75  _ ("net_ixgbe", IXGBE) \
76  _ ("net_ixgbe_vf", IXGBEVF) \
77  _ ("net_i40e", I40E) \
78  _ ("net_i40e_vf", I40EVF) \
79  _ ("net_virtio", VIRTIO) \
80  _ ("net_enic", ENIC) \
81  _ ("net_vmxnet3", VMXNET3) \
82  _ ("net_af_packet", AF_PACKET) \
83  _ ("rte_bond_pmd", BOND) \
84  _ ("net_fm10k", FM10K) \
85  _ ("net_cxgbe", CXGBE) \
86  _ ("net_dpaa2", DPAA2)
87 #else
88 #define foreach_dpdk_pmd \
89  _ ("rte_nicvf_pmd", THUNDERX) \
90  _ ("rte_em_pmd", E1000EM) \
91  _ ("rte_igb_pmd", IGB) \
92  _ ("rte_igbvf_pmd", IGBVF) \
93  _ ("rte_ixgbe_pmd", IXGBE) \
94  _ ("rte_ixgbevf_pmd", IXGBEVF) \
95  _ ("rte_i40e_pmd", I40E) \
96  _ ("rte_i40evf_pmd", I40EVF) \
97  _ ("rte_virtio_pmd", VIRTIO) \
98  _ ("rte_enic_pmd", ENIC) \
99  _ ("rte_vmxnet3_pmd", VMXNET3) \
100  _ ("AF_PACKET PMD", AF_PACKET) \
101  _ ("rte_bond_pmd", BOND) \
102  _ ("rte_pmd_fm10k", FM10K) \
103  _ ("rte_cxgbe_pmd", CXGBE) \
104  _ ("rte_dpaa2_dpni", DPAA2)
105 #endif
106 
107 typedef enum
108 {
110 #define _(s,f) VNET_DPDK_PMD_##f,
112 #undef _
113  VNET_DPDK_PMD_UNKNOWN, /* must be last */
114 } dpdk_pmd_t;
115 
116 typedef enum
117 {
126 
127 /*
128  * The header for the tx_vector in dpdk_device_t.
129  * Head and tail are indexes into the tx_vector and are of type
130  * u64 so they never overflow.
131  */
132 typedef struct
133 {
136 } tx_ring_hdr_t;
137 
138 typedef struct
139 {
140  struct rte_ring *swq;
141 
151  u32 hqos_tc_table[64];
153 
154 typedef struct
155 {
156  struct rte_ring **swq;
157  struct rte_mbuf **pkts_enq;
158  struct rte_mbuf **pkts_deq;
159  struct rte_sched_port *hqos;
166 
167 typedef struct
168 {
169  CLIB_CACHE_LINE_ALIGN_MARK (cacheline0);
170  volatile u32 **lockp;
171 
172  /* Instance ID */
174 
177 
178  /* next node index if we decide to steal the rx graph arc */
180 
181  /* dpdk rte_mbuf rx and tx vectors, VLIB_FRAME_SIZE */
182  struct rte_mbuf ***tx_vectors; /* one per worker thread */
183  struct rte_mbuf ***rx_vectors;
184 
185  /* vector of traced contexts, per device */
187 
188  dpdk_pmd_t pmd:8;
190 
192 #define DPDK_DEVICE_FLAG_ADMIN_UP (1 << 0)
193 #define DPDK_DEVICE_FLAG_PROMISC (1 << 1)
194 #define DPDK_DEVICE_FLAG_PMD (1 << 2)
195 #define DPDK_DEVICE_FLAG_PMD_SUPPORTS_PTYPE (1 << 3)
196 #define DPDK_DEVICE_FLAG_MAYBE_MULTISEG (1 << 4)
197 #define DPDK_DEVICE_FLAG_HAVE_SUBIF (1 << 5)
198 #define DPDK_DEVICE_FLAG_HQOS (1 << 6)
199 
201  CLIB_CACHE_LINE_ALIGN_MARK (cacheline1);
202 
204 
205  /* number of sub-interfaces */
207 
208  /* PMD related */
213  struct rte_eth_conf port_conf;
214  struct rte_eth_txconf tx_conf;
215 
216  /* HQoS related */
219 
220  /* af_packet */
222 
223  struct rte_eth_link link;
225 
226  struct rte_eth_stats stats;
227  struct rte_eth_stats last_stats;
228  struct rte_eth_stats last_cleared_stats;
229  struct rte_eth_xstat *xstats;
230  struct rte_eth_xstat *last_cleared_xstats;
233 } dpdk_device_t;
234 
235 #define DPDK_STATS_POLL_INTERVAL (10.0)
236 #define DPDK_MIN_STATS_POLL_INTERVAL (0.001) /* 1msec */
237 
238 #define DPDK_LINK_POLL_INTERVAL (3.0)
239 #define DPDK_MIN_LINK_POLL_INTERVAL (0.001) /* 1msec */
240 
241 typedef struct
242 {
243  CLIB_CACHE_LINE_ALIGN_MARK (cacheline0);
244 
245  /* total input packet counter */
247 } dpdk_worker_t;
248 
249 typedef struct
250 {
251  CLIB_CACHE_LINE_ALIGN_MARK (cacheline0);
252 
253  /* total input packet counter */
256 
257 typedef struct
258 {
262 
263 #ifndef DPDK_HQOS_DBG_BYPASS
264 #define DPDK_HQOS_DBG_BYPASS 0
265 #endif
266 
267 #ifndef HQOS_FLUSH_COUNT_THRESHOLD
268 #define HQOS_FLUSH_COUNT_THRESHOLD 100000
269 #endif
270 
272 {
275 
279 
287 
288  struct rte_sched_port_params port;
289  struct rte_sched_subport_params *subport;
290  struct rte_sched_pipe_params *pipe;
291  uint32_t *pipe_map;
293 
294 int dpdk_hqos_validate_mask (u64 mask, u32 n);
296  hqos, u32 pipe_profile_id);
301  struct rte_mbuf **pkts, u32 n_pkts);
302 
303 #define foreach_dpdk_device_config_item \
304  _ (num_rx_queues) \
305  _ (num_tx_queues) \
306  _ (num_rx_desc) \
307  _ (num_tx_desc) \
308  _ (rss_fn)
309 
310 typedef struct
311 {
312  vlib_pci_addr_t pci_addr;
315 #define DPDK_DEVICE_VLAN_STRIP_DEFAULT 0
316 #define DPDK_DEVICE_VLAN_STRIP_OFF 1
317 #define DPDK_DEVICE_VLAN_STRIP_ON 2
318 
319 #define _(x) uword x;
321 #undef _
326 
327 typedef struct
328 {
329 
330  /* Config stuff */
336 
337  /* Required config parameters */
343  u8 num_kni; /* while kni_init allows u32, port_id in callback fn is only u8 */
344 
345  /*
346  * format interface names ala xxxEthernet%d/%d/%d instead of
347  * xxxEthernet%x/%x/%x.
348  */
350 
351  /* per-device config */
355 
357 
359 
360 typedef struct
361 {
362 
363  /* Devices */
367 
368  /* per-thread recycle lists */
370 
371  /* buffer flags template, configurable to enable/disable tcp / udp cksum */
373 
374  /* vlib buffer free list, must be same size as an rte_mbuf */
376 
377  /* dpdk worker "threads" */
379 
380  /* dpdk HQoS "threads" */
382 
383  /* Ethernet input node index */
385 
386  /* pcap tracing [only works if (CLIB_DEBUG > 0)] */
392 
393  /* hashes */
398 
399  /*
400  * flag indicating that a posted admin up/down
401  * (via post_sw_interface_set_flags) is in progress
402  */
404 
406 
407  /* which cpus are running dpdk-input */
410 
411  /* which cpus are running I/O TX */
414 
415  /* control interval of dpdk link state and stat polling */
418 
419  /* Sleep for this many MS after each device poll */
421 
422  /* convenience */
426 } dpdk_main_t;
427 
429 
430 typedef struct
431 {
435  struct rte_mbuf mb;
436  /* Copy of VLIB buffer; packet data stored in pre_data. */
439 
440 typedef struct
441 {
445  struct rte_mbuf mb;
446  vlib_buffer_t buffer; /* Copy of VLIB buffer; pkt data stored in pre_data. */
447  u8 data[256]; /* First 256 data bytes, used for hexdump */
449 
451 
453 
455  struct ether_addr mc_addr_vec[], int naddr);
456 
458 
460 
461 u32 dpdk_interface_tx_vector (vlib_main_t * vm, u32 dev_instance);
462 
463 struct rte_mbuf *dpdk_replicate_packet_mb (vlib_buffer_t * b);
464 struct rte_mbuf *dpdk_zerocopy_replicate_packet_mb (vlib_buffer_t * b);
465 
466 #define foreach_dpdk_error \
467  _(NONE, "no error") \
468  _(RX_PACKET_ERROR, "Rx packet errors") \
469  _(RX_BAD_FCS, "Rx bad fcs") \
470  _(IP_CHECKSUM_ERROR, "Rx ip checksum errors") \
471  _(RX_ALLOC_FAIL, "rx buf alloc from free list failed") \
472  _(RX_ALLOC_NO_PHYSMEM, "rx buf alloc failed no physmem") \
473  _(RX_ALLOC_DROP_PKTS, "rx packets dropped due to alloc error")
474 
475 typedef enum
476 {
477 #define _(f,s) DPDK_ERROR_##f,
479 #undef _
481 } dpdk_error_t;
482 
483 int dpdk_set_stat_poll_interval (f64 interval);
485 void dpdk_update_link_state (dpdk_device_t * xd, f64 now);
488 
489 static inline u64
491 {
492  dpdk_main_t *dm = &dpdk_main;
493  u64 sum = 0;
494  dpdk_worker_t *dw;
495 
496  vec_foreach (dw, dm->workers) sum += dw->aggregate_rx_packets;
497 
498  return sum;
499 }
500 
501 void dpdk_rx_trace (dpdk_main_t * dm,
502  vlib_node_runtime_t * node,
503  dpdk_device_t * xd,
504  u16 queue_id, u32 * buffers, uword n_buffers);
505 
506 #define EFD_OPERATION_LESS_THAN 0
507 #define EFD_OPERATION_GREATER_OR_EQUAL 1
508 
519 
520 uword
523 
524 #endif /* __included_dpdk_h__ */
525 
526 /*
527  * fd.io coding-style-patch-verification: ON
528  *
529  * Local Variables:
530  * eval: (c-set-style "gnu")
531  * End:
532  */
u32 ** d_trace_buffers
Definition: dpdk.h:186
void dpdk_device_lock_free(dpdk_device_t *xd)
Definition: init.c:227
f64 time_last_link_update
Definition: dpdk.h:224
struct dpdk_device_config_hqos_t dpdk_device_config_hqos_t
vmrglw vmrglh hi
#define CLIB_CACHE_LINE_ALIGN_MARK(mark)
Definition: cache.h:68
uword( unformat_function_t)(unformat_input_t *input, va_list *args)
Definition: format.h:231
struct rte_mbuf * dpdk_replicate_packet_mb(vlib_buffer_t *b)
Definition: device.c:88
u8 * eal_init_args_str
Definition: dpdk.h:332
vlib_buffer_t buffer
Definition: dpdk.h:437
u8 interface_name_format_decimal
Definition: dpdk.h:349
dpdk_main_t dpdk_main
Definition: dpdk.h:428
int dpdk_hqos_validate_mask(u64 mask, u32 n)
Definition: hqos.c:171
u8 use_rss
Definition: dpdk.h:405
vnet_device_class_t dpdk_device_class
clib_error_t * dpdk_set_mc_filter(vnet_hw_interface_t *hi, struct ether_addr mc_addr_vec[], int naddr)
Definition: device.c:68
#define foreach_dpdk_error
Definition: dpdk.h:466
u64 aggregate_rx_packets
Definition: dpdk.h:254
dpdk_error_t
Definition: dpdk.h:475
PCAP utility definitions.
u16 flags
Definition: dpdk.h:191
dpdk_device_and_queue_t ** devices_by_hqos_cpu
Definition: dpdk.h:366
struct _vlib_node_registration vlib_node_registration_t
struct rte_sched_port_params port
Definition: dpdk.h:288
u32 per_interface_next_index
Definition: dpdk.h:179
u8 enable_tcp_udp_checksum
Definition: dpdk.h:335
struct rte_mbuf ** pkts_enq
Definition: dpdk.h:157
struct rte_ring ** swq
Definition: dpdk.h:156
struct rte_sched_port * hqos
Definition: dpdk.h:159
u64 tx_tail
Definition: dpdk.h:135
struct rte_eth_xstat * last_cleared_xstats
Definition: dpdk.h:230
format_function_t format_dpdk_rte_mbuf
Definition: dpdk.h:513
dpdk_device_config_hqos_t hqos
Definition: dpdk.h:324
u16 num_subifs
Definition: dpdk.h:206
struct _vnet_device_class vnet_device_class_t
u8 * pcap_filename
Definition: dpdk.h:389
format_function_t format_dpdk_tx_dma_trace
Definition: dpdk.h:511
clib_error_t * dpdk_port_setup(dpdk_main_t *dm, dpdk_device_t *xd)
Definition: init.c:65
struct rte_sched_pipe_params * pipe
Definition: dpdk.h:290
struct rte_mbuf *** tx_vectors
Definition: dpdk.h:182
foreach_dpdk_device_config_item clib_bitmap_t * workers
Definition: dpdk.h:322
PCAP main state data structure.
Definition: pcap.h:122
dpdk_config_main_t dpdk_config_main
Definition: dpdk.h:358
vlib_node_registration_t dpdk_input_node
(constructor) VLIB_REGISTER_NODE (dpdk_input_node)
Definition: node.c:662
struct rte_mbuf ** pkts_deq
Definition: dpdk.h:158
dpdk_device_config_t default_devconf
Definition: dpdk.h:352
f64 stat_poll_interval
Definition: dpdk.h:417
u32 pcap_pkts_to_capture
Definition: dpdk.h:391
unformat_function_t unformat_socket_mem
Definition: dpdk.h:515
int input_cpu_first_index
Definition: dpdk.h:408
u32 dpdk_interface_tx_vector(vlib_main_t *vm, u32 dev_instance)
char i8
Definition: types.h:45
u16 rx_q_used
Definition: dpdk.h:210
unsigned long u64
Definition: types.h:89
format_function_t format_dpdk_rx_rte_mbuf
Definition: dpdk.h:514
clib_error_t * unformat_rss_fn(unformat_input_t *input, uword *rss_fn)
Definition: format.c:707
u32 device_index
Definition: dpdk.h:173
dpdk_device_hqos_per_worker_thread_t * hqos_wt
Definition: dpdk.h:217
dpdk_worker_t * workers
Definition: dpdk.h:378
vlib_node_registration_t handoff_dispatch_node
(constructor) VLIB_REGISTER_NODE (handoff_dispatch_node)
Definition: handoff.c:527
f64 time_last_stats_update
Definition: dpdk.h:231
u32 pcap_sw_if_index
Definition: dpdk.h:390
dpdk_hqos_thread_t * hqos_threads
Definition: dpdk.h:381
u32 vlib_sw_if_index
Definition: dpdk.h:176
vlib_pci_addr_t pci_addr
Definition: dpdk.h:312
format_function_t format_dpdk_rx_dma_trace
Definition: dpdk.h:512
dpdk_device_and_queue_t ** devices_by_cpu
Definition: dpdk.h:365
int dpdk_set_link_state_poll_interval(f64 interval)
Definition: init.c:1695
u8 ** eal_init_args
Definition: dpdk.h:331
void vnet_buffer_needs_dpdk_mb(vlib_buffer_t *b)
u32 vlib_hw_if_index
Definition: dpdk.h:175
pcap_main_t pcap_main
Definition: dpdk.h:388
static u64 vnet_get_aggregate_rx_packets(void)
Definition: dpdk.h:490
void dpdk_hqos_metadata_set(dpdk_device_hqos_per_worker_thread_t *hqos, struct rte_mbuf **pkts, u32 n_pkts)
Definition: hqos.c:644
#define foreach_dpdk_pmd
Definition: dpdk.h:70
dpdk_port_type_t port_type
Definition: dpdk.h:232
int input_cpu_count
Definition: dpdk.h:409
void dpdk_rx_trace(dpdk_main_t *dm, vlib_node_runtime_t *node, dpdk_device_t *xd, u16 queue_id, u32 *buffers, uword n_buffers)
Definition: node.c:133
u16 tx_q_used
Definition: dpdk.h:209
u16 nb_rx_desc
Definition: dpdk.h:211
u64 aggregate_rx_packets
Definition: dpdk.h:246
void dpdk_thread_input(dpdk_main_t *dm, dpdk_device_t *xd)
u32 ** recycle
Definition: dpdk.h:369
dpdk_device_t * devices
Definition: dpdk.h:364
u8 nchannels_set_manually
Definition: dpdk.h:339
u16 * cpu_socket_id_by_queue
Definition: dpdk.h:212
void dpdk_device_config_hqos_pipe_profile_default(dpdk_device_config_hqos_t *hqos, u32 pipe_profile_id)
Definition: hqos.c:200
volatile u32 ** lockp
Definition: dpdk.h:170
dpdk_device_config_t * dev_confs
Definition: dpdk.h:353
struct rte_mbuf *** rx_vectors
Definition: dpdk.h:183
int dpdk_set_stat_poll_interval(f64 interval)
Definition: init.c:1684
u8 coremask_set_manually
Definition: dpdk.h:338
dpdk_pmd_t
Definition: dpdk.h:107
uword admin_up_down_process(vlib_main_t *vm, vlib_node_runtime_t *rt, vlib_frame_t *f)
Definition: device.c:783
format_function_t format_dpdk_device
Definition: dpdk.h:510
struct rte_eth_xstat * xstats
Definition: dpdk.h:229
u8 * interface_name_suffix
Definition: dpdk.h:203
format_function_t format_dpdk_device_name
Definition: dpdk.h:509
void dpdk_device_config_hqos_default(dpdk_device_config_hqos_t *hqos)
Definition: hqos.c:208
unsigned int u32
Definition: types.h:88
int hqos_cpu_count
Definition: dpdk.h:413
u32 * vu_inactive_interfaces_device_index
Definition: dpdk.h:397
u64 tx_head
Definition: dpdk.h:134
u32 poll_sleep
Definition: dpdk.h:420
u8 af_packet_port_id
Definition: dpdk.h:221
void dpdk_device_lock_init(dpdk_device_t *xd)
Definition: init.c:214
dpdk_device_hqos_per_hqos_thread_t * hqos_ht
Definition: dpdk.h:218
struct rte_mbuf * dpdk_zerocopy_replicate_packet_mb(vlib_buffer_t *b)
void dpdk_update_link_state(dpdk_device_t *xd, f64 now)
Definition: init.c:1395
clib_error_t * dpdk_set_mac_address(vnet_hw_interface_t *hi, char *address)
Definition: device.c:48
u8 *( format_function_t)(u8 *s, va_list *args)
Definition: format.h:48
clib_error_t * dpdk_port_setup_hqos(dpdk_device_t *xd, dpdk_device_config_hqos_t *hqos)
Definition: hqos.c:250
u64 uword
Definition: types.h:112
dpdk_port_type_t
Definition: dpdk.h:116
unsigned short u16
Definition: types.h:57
vlib_buffer_t buffer
Definition: dpdk.h:446
u32 ethernet_input_node_index
Definition: dpdk.h:384
double f64
Definition: types.h:142
unsigned char u8
Definition: types.h:56
u8 admin_up_down_in_progress
Definition: dpdk.h:403
uint32_t * pipe_map
Definition: dpdk.h:291
u32 buffer_flags_template
Definition: dpdk.h:372
u32 vlib_buffer_free_list_index
Definition: dpdk.h:375
int hqos_cpu_first_index
Definition: dpdk.h:412
struct rte_sched_subport_params * subport
Definition: dpdk.h:289
#define foreach_dpdk_device_config_item
Definition: dpdk.h:303
uword clib_bitmap_t
Definition: bitmap.h:50
#define vec_foreach(var, vec)
Vector iterator.
i8 cpu_socket
Definition: dpdk.h:189
struct _unformat_input_t unformat_input_t
u8 * uio_driver_name
Definition: dpdk.h:333
int tx_pcap_enable
Definition: dpdk.h:387
vnet_main_t * vnet_main
Definition: dpdk.h:424
u16 nb_tx_desc
Definition: dpdk.h:200
clib_error_t * unformat_hqos(unformat_input_t *input, dpdk_device_config_hqos_t *hqos)
Definition: format.c:730
uword * device_config_index_by_pci_addr
Definition: dpdk.h:354
uword * dpdk_device_by_kni_port_id
Definition: dpdk.h:394
uword * vu_sw_if_index_by_listener_fd
Definition: dpdk.h:395
f64 link_state_poll_interval
Definition: dpdk.h:416
dpdk_config_main_t * conf
Definition: dpdk.h:425
uword * vu_sw_if_index_by_sock_fd
Definition: dpdk.h:396
vlib_main_t * vlib_main
Definition: dpdk.h:423