FD.io VPP  v17.07.01-10-g3be13f0
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_memory.h>
26 #include <rte_eal.h>
27 #include <rte_per_lcore.h>
28 #include <rte_cycles.h>
29 #include <rte_lcore.h>
30 #include <rte_per_lcore.h>
31 #include <rte_interrupts.h>
32 #include <rte_pci.h>
33 #include <rte_ether.h>
34 #include <rte_ethdev.h>
35 #include <rte_ring.h>
36 #include <rte_mempool.h>
37 #include <rte_mbuf.h>
38 #include <rte_version.h>
39 #include <rte_eth_bond.h>
40 #include <rte_sched.h>
41 
42 #include <vnet/unix/pcap.h>
43 #include <vnet/devices/devices.h>
44 
45 #if CLIB_DEBUG > 0
46 #define always_inline static inline
47 #else
48 #define always_inline static inline __attribute__ ((__always_inline__))
49 #endif
50 
51 #include <vlib/pci/pci.h>
52 
53 #define NB_MBUF (16<<10)
54 
57 
58 #define foreach_dpdk_pmd \
59  _ ("net_thunderx", THUNDERX) \
60  _ ("net_e1000_em", E1000EM) \
61  _ ("net_e1000_igb", IGB) \
62  _ ("net_e1000_igb_vf", IGBVF) \
63  _ ("net_ixgbe", IXGBE) \
64  _ ("net_ixgbe_vf", IXGBEVF) \
65  _ ("net_i40e", I40E) \
66  _ ("net_i40e_vf", I40EVF) \
67  _ ("net_virtio", VIRTIO) \
68  _ ("net_enic", ENIC) \
69  _ ("net_vmxnet3", VMXNET3) \
70  _ ("AF_PACKET PMD", AF_PACKET) \
71  _ ("net_bonding", BOND) \
72  _ ("net_fm10k", FM10K) \
73  _ ("net_cxgbe", CXGBE) \
74  _ ("net_mlx4", MLX4) \
75  _ ("net_mlx5", MLX5) \
76  _ ("net_dpaa2", DPAA2) \
77  _ ("net_virtio_user", VIRTIO_USER)
78 
79 
80 typedef enum
81 {
83 #define _(s,f) VNET_DPDK_PMD_##f,
85 #undef _
86  VNET_DPDK_PMD_UNKNOWN, /* must be last */
87 } dpdk_pmd_t;
88 
89 typedef enum
90 {
104 
105 /*
106  * The header for the tx_vector in dpdk_device_t.
107  * Head and tail are indexes into the tx_vector and are of type
108  * u64 so they never overflow.
109  */
110 typedef struct
111 {
114 } tx_ring_hdr_t;
115 
116 typedef struct
117 {
118  struct rte_ring *swq;
119 
129  u32 hqos_tc_table[64];
131 
132 typedef struct
133 {
134  struct rte_ring **swq;
135  struct rte_mbuf **pkts_enq;
136  struct rte_mbuf **pkts_deq;
137  struct rte_sched_port *hqos;
144 
145 typedef struct
146 {
147  CLIB_CACHE_LINE_ALIGN_MARK (cacheline0);
148  volatile u32 **lockp;
149 
150  /* Instance ID */
152 
155 
156  /* next node index if we decide to steal the rx graph arc */
158 
159  /* dpdk rte_mbuf rx and tx vectors, VLIB_FRAME_SIZE */
160  struct rte_mbuf ***tx_vectors; /* one per worker thread */
161  struct rte_mbuf ***rx_vectors;
162 
163  /* vector of traced contexts, per device */
165 
166  dpdk_pmd_t pmd:8;
168 
170 #define DPDK_DEVICE_FLAG_ADMIN_UP (1 << 0)
171 #define DPDK_DEVICE_FLAG_PROMISC (1 << 1)
172 #define DPDK_DEVICE_FLAG_PMD (1 << 2)
173 #define DPDK_DEVICE_FLAG_PMD_INIT_FAIL (1 << 3)
174 #define DPDK_DEVICE_FLAG_MAYBE_MULTISEG (1 << 4)
175 #define DPDK_DEVICE_FLAG_HAVE_SUBIF (1 << 5)
176 #define DPDK_DEVICE_FLAG_HQOS (1 << 6)
177 #define DPDK_DEVICE_FLAG_BOND_SLAVE (1 << 7)
178 #define DPDK_DEVICE_FLAG_BOND_SLAVE_UP (1 << 8)
179 
181  CLIB_CACHE_LINE_ALIGN_MARK (cacheline1);
182 
184 
185  /* number of sub-interfaces */
187 
188  /* PMD related */
193  struct rte_eth_conf port_conf;
194  struct rte_eth_txconf tx_conf;
195 
196  /* HQoS related */
199 
200  /* af_packet or BondEthernet instance number */
202 
203  /* Bonded interface port# of a slave -
204  only valid if DPDK_DEVICE_FLAG_BOND_SLAVE bit is set */
206 
207  struct rte_eth_link link;
209 
210  struct rte_eth_stats stats;
211  struct rte_eth_stats last_stats;
212  struct rte_eth_stats last_cleared_stats;
213  struct rte_eth_xstat *xstats;
214  struct rte_eth_xstat *last_cleared_xstats;
217 
218  /* mac address */
220 
221  /* error string */
223 } dpdk_device_t;
224 
225 #define DPDK_STATS_POLL_INTERVAL (10.0)
226 #define DPDK_MIN_STATS_POLL_INTERVAL (0.001) /* 1msec */
227 
228 #define DPDK_LINK_POLL_INTERVAL (3.0)
229 #define DPDK_MIN_LINK_POLL_INTERVAL (0.001) /* 1msec */
230 
231 typedef struct
232 {
236 
237 #ifndef DPDK_HQOS_DBG_BYPASS
238 #define DPDK_HQOS_DBG_BYPASS 0
239 #endif
240 
241 #ifndef HQOS_FLUSH_COUNT_THRESHOLD
242 #define HQOS_FLUSH_COUNT_THRESHOLD 100000
243 #endif
244 
246 {
249 
253 
261 
262  struct rte_sched_port_params port;
263  struct rte_sched_subport_params *subport;
264  struct rte_sched_pipe_params *pipe;
265  uint32_t *pipe_map;
267 
268 int dpdk_hqos_validate_mask (u64 mask, u32 n);
270  hqos, u32 pipe_profile_id);
275  struct rte_mbuf **pkts, u32 n_pkts);
276 
277 #define foreach_dpdk_device_config_item \
278  _ (num_rx_queues) \
279  _ (num_tx_queues) \
280  _ (num_rx_desc) \
281  _ (num_tx_desc) \
282  _ (rss_fn)
283 
284 typedef struct
285 {
286  vlib_pci_addr_t pci_addr;
289 #define DPDK_DEVICE_VLAN_STRIP_DEFAULT 0
290 #define DPDK_DEVICE_VLAN_STRIP_OFF 1
291 #define DPDK_DEVICE_VLAN_STRIP_ON 2
292 
293 #define _(x) uword x;
295 #undef _
300 
301 typedef struct
302 {
303 
304  /* Config stuff */
310 
311  /* Required config parameters */
317 
318  /*
319  * format interface names ala xxxEthernet%d/%d/%d instead of
320  * xxxEthernet%x/%x/%x.
321  */
323 
324  /* per-device config */
328 
330 
332 
333 typedef struct
334 {
335 
336  /* Devices */
339 
340  /* per-thread recycle lists */
342 
343  /* per-thread buffer templates */
345 
346  /* buffer flags template, configurable to enable/disable tcp / udp cksum */
348 
349  /* vlib buffer free list, must be same size as an rte_mbuf */
351 
352  /* Ethernet input node index */
354 
355  /* pcap tracing [only works if (CLIB_DEBUG > 0)] */
361 
362  /*
363  * flag indicating that a posted admin up/down
364  * (via post_sw_interface_set_flags) is in progress
365  */
367 
369 
370  /* which cpus are running I/O TX */
373 
374  /* control interval of dpdk link state and stat polling */
377 
378  /* Sleep for this many usec after each device poll */
380 
381  /* convenience */
385 
386  /* mempool */
387  struct rte_mempool **pktmbuf_pools;
388 
389  /* API message ID base */
391 } dpdk_main_t;
392 
393 extern dpdk_main_t dpdk_main;
394 
395 typedef struct
396 {
400  struct rte_mbuf mb;
401  /* Copy of VLIB buffer; packet data stored in pre_data. */
404 
405 typedef struct
406 {
410  struct rte_mbuf mb;
411  vlib_buffer_t buffer; /* Copy of VLIB buffer; pkt data stored in pre_data. */
412  u8 data[256]; /* First 256 data bytes, used for hexdump */
414 
415 void dpdk_device_setup (dpdk_device_t * xd);
416 void dpdk_device_start (dpdk_device_t * xd);
417 void dpdk_device_stop (dpdk_device_t * xd);
418 void dpdk_port_state_callback (uint8_t port_id,
419  enum rte_eth_event_type type, void *param);
420 
421 #define foreach_dpdk_error \
422  _(NONE, "no error") \
423  _(RX_PACKET_ERROR, "Rx packet errors") \
424  _(RX_BAD_FCS, "Rx bad fcs") \
425  _(IP_CHECKSUM_ERROR, "Rx ip checksum errors") \
426  _(RX_ALLOC_FAIL, "rx buf alloc from free list failed") \
427  _(RX_ALLOC_NO_PHYSMEM, "rx buf alloc failed no physmem") \
428  _(RX_ALLOC_DROP_PKTS, "rx packets dropped due to alloc error")
429 
430 typedef enum
431 {
432 #define _(f,s) DPDK_ERROR_##f,
434 #undef _
436 } dpdk_error_t;
437 
438 void dpdk_update_link_state (dpdk_device_t * xd, f64 now);
439 
451 
452 uword
455 
456 #endif /* __included_dpdk_h__ */
457 
458 /*
459  * fd.io coding-style-patch-verification: ON
460  *
461  * Local Variables:
462  * eval: (c-set-style "gnu")
463  * End:
464  */
u32 ** d_trace_buffers
Definition: dpdk.h:164
u8 * default_mac_address
Definition: dpdk.h:219
f64 time_last_link_update
Definition: dpdk.h:208
struct dpdk_device_config_hqos_t dpdk_device_config_hqos_t
uword( unformat_function_t)(unformat_input_t *input, va_list *args)
Definition: format.h:231
#define CLIB_CACHE_LINE_ALIGN_MARK(mark)
Definition: cache.h:68
u8 * eal_init_args_str
Definition: dpdk.h:306
vlib_buffer_t buffer
Definition: dpdk.h:402
u8 interface_name_format_decimal
Definition: dpdk.h:322
dpdk_main_t dpdk_main
Definition: init.c:36
int dpdk_hqos_validate_mask(u64 mask, u32 n)
Definition: hqos.c:169
u8 use_rss
Definition: dpdk.h:368
vnet_device_class_t dpdk_device_class
#define foreach_dpdk_error
Definition: dpdk.h:421
dpdk_error_t
Definition: dpdk.h:430
PCAP utility definitions.
u16 flags
Definition: dpdk.h:169
dpdk_device_and_queue_t ** devices_by_hqos_cpu
Definition: dpdk.h:338
struct _vlib_node_registration vlib_node_registration_t
clib_error_t * errors
Definition: dpdk.h:222
struct rte_sched_port_params port
Definition: dpdk.h:262
u32 per_interface_next_index
Definition: dpdk.h:157
u8 enable_tcp_udp_checksum
Definition: dpdk.h:309
struct rte_mbuf ** pkts_enq
Definition: dpdk.h:135
struct rte_ring ** swq
Definition: dpdk.h:134
vlib_buffer_t * buffer_templates
Definition: dpdk.h:344
struct rte_sched_port * hqos
Definition: dpdk.h:137
u64 tx_tail
Definition: dpdk.h:113
u8 *( format_function_t)(u8 *s, va_list *args)
Definition: format.h:48
struct rte_eth_xstat * last_cleared_xstats
Definition: dpdk.h:214
format_function_t format_dpdk_rte_mbuf
Definition: dpdk.h:445
dpdk_device_config_hqos_t hqos
Definition: dpdk.h:298
u16 num_subifs
Definition: dpdk.h:186
struct _vnet_device_class vnet_device_class_t
u8 * pcap_filename
Definition: dpdk.h:358
format_function_t format_dpdk_tx_dma_trace
Definition: dpdk.h:443
u8 port_id
Definition: dpdk.h:201
struct rte_sched_pipe_params * pipe
Definition: dpdk.h:264
struct rte_mbuf *** tx_vectors
Definition: dpdk.h:160
foreach_dpdk_device_config_item clib_bitmap_t * workers
Definition: dpdk.h:296
PCAP main state data structure.
Definition: pcap.h:122
dpdk_config_main_t dpdk_config_main
Definition: dpdk.h:331
vlib_node_registration_t dpdk_input_node
(constructor) VLIB_REGISTER_NODE (dpdk_input_node)
Definition: node.c:671
struct rte_mbuf ** pkts_deq
Definition: dpdk.h:136
dpdk_device_config_t default_devconf
Definition: dpdk.h:325
f64 stat_poll_interval
Definition: dpdk.h:376
u32 pcap_pkts_to_capture
Definition: dpdk.h:360
char i8
Definition: types.h:45
u16 rx_q_used
Definition: dpdk.h:190
unsigned long u64
Definition: types.h:89
format_function_t format_dpdk_rx_rte_mbuf
Definition: dpdk.h:446
clib_error_t * unformat_rss_fn(unformat_input_t *input, uword *rss_fn)
Definition: format.c:730
u32 device_index
Definition: dpdk.h:151
dpdk_device_hqos_per_worker_thread_t * hqos_wt
Definition: dpdk.h:197
f64 time_last_stats_update
Definition: dpdk.h:215
u32 pcap_sw_if_index
Definition: dpdk.h:359
u32 vlib_sw_if_index
Definition: dpdk.h:154
vlib_pci_addr_t pci_addr
Definition: dpdk.h:286
format_function_t format_dpdk_rx_dma_trace
Definition: dpdk.h:444
u8 ** eal_init_args
Definition: dpdk.h:305
void dpdk_device_stop(dpdk_device_t *xd)
Definition: common.c:163
pcap_main_t pcap_main
Definition: dpdk.h:357
struct _unformat_input_t unformat_input_t
void dpdk_hqos_metadata_set(dpdk_device_hqos_per_worker_thread_t *hqos, struct rte_mbuf **pkts, u32 n_pkts)
Definition: hqos.c:650
#define foreach_dpdk_pmd
Definition: dpdk.h:58
dpdk_port_type_t port_type
Definition: dpdk.h:216
u16 tx_q_used
Definition: dpdk.h:189
u16 nb_rx_desc
Definition: dpdk.h:191
u32 hw_if_index
Definition: dpdk.h:153
u32 ** recycle
Definition: dpdk.h:341
u8 bond_port
Definition: dpdk.h:205
dpdk_device_t * devices
Definition: dpdk.h:337
u8 nchannels_set_manually
Definition: dpdk.h:313
u16 * cpu_socket_id_by_queue
Definition: dpdk.h:192
void dpdk_device_config_hqos_pipe_profile_default(dpdk_device_config_hqos_t *hqos, u32 pipe_profile_id)
Definition: hqos.c:198
volatile u32 ** lockp
Definition: dpdk.h:148
dpdk_device_config_t * dev_confs
Definition: dpdk.h:326
struct rte_mbuf *** rx_vectors
Definition: dpdk.h:161
format_function_t format_dpdk_device_errors
Definition: dpdk.h:442
void dpdk_device_setup(dpdk_device_t *xd)
Definition: common.c:39
u8 coremask_set_manually
Definition: dpdk.h:312
dpdk_pmd_t
Definition: dpdk.h:80
uword admin_up_down_process(vlib_main_t *vm, vlib_node_runtime_t *rt, vlib_frame_t *f)
Definition: device.c:753
format_function_t format_dpdk_device
Definition: dpdk.h:441
struct rte_eth_xstat * xstats
Definition: dpdk.h:213
u8 * interface_name_suffix
Definition: dpdk.h:183
format_function_t format_dpdk_device_name
Definition: dpdk.h:440
void dpdk_device_config_hqos_default(dpdk_device_config_hqos_t *hqos)
Definition: hqos.c:206
unsigned int u32
Definition: types.h:88
int hqos_cpu_count
Definition: dpdk.h:372
u64 tx_head
Definition: dpdk.h:112
u32 poll_sleep_usec
Definition: dpdk.h:379
struct rte_mempool ** pktmbuf_pools
Definition: dpdk.h:387
dpdk_device_hqos_per_hqos_thread_t * hqos_ht
Definition: dpdk.h:198
void dpdk_update_link_state(dpdk_device_t *xd, f64 now)
Definition: init.c:1236
clib_error_t * dpdk_port_setup_hqos(dpdk_device_t *xd, dpdk_device_config_hqos_t *hqos)
Definition: hqos.c:248
u64 uword
Definition: types.h:112
dpdk_port_type_t
Definition: dpdk.h:89
void dpdk_port_state_callback(uint8_t port_id, enum rte_eth_event_type type, void *param)
Definition: common.c:185
void dpdk_device_start(dpdk_device_t *xd)
Definition: common.c:119
unsigned short u16
Definition: types.h:57
vlib_buffer_t buffer
Definition: dpdk.h:411
u32 ethernet_input_node_index
Definition: dpdk.h:353
double f64
Definition: types.h:142
unsigned char u8
Definition: types.h:56
u8 admin_up_down_in_progress
Definition: dpdk.h:366
uint32_t * pipe_map
Definition: dpdk.h:265
u32 buffer_flags_template
Definition: dpdk.h:347
u32 vlib_buffer_free_list_index
Definition: dpdk.h:350
int hqos_cpu_first_index
Definition: dpdk.h:371
struct rte_sched_subport_params * subport
Definition: dpdk.h:263
#define foreach_dpdk_device_config_item
Definition: dpdk.h:277
uword clib_bitmap_t
Definition: bitmap.h:50
i8 cpu_socket
Definition: dpdk.h:167
u16 msg_id_base
Definition: dpdk.h:390
u8 * uio_driver_name
Definition: dpdk.h:307
unformat_function_t unformat_dpdk_log_level
Definition: dpdk.h:447
int tx_pcap_enable
Definition: dpdk.h:356
vnet_main_t * vnet_main
Definition: dpdk.h:383
u16 nb_tx_desc
Definition: dpdk.h:180
clib_error_t * unformat_hqos(unformat_input_t *input, dpdk_device_config_hqos_t *hqos)
Definition: format.c:767
uword * device_config_index_by_pci_addr
Definition: dpdk.h:327
f64 link_state_poll_interval
Definition: dpdk.h:375
dpdk_config_main_t * conf
Definition: dpdk.h:384
vlib_main_t * vlib_main
Definition: dpdk.h:382