Collect per Q stats for vhost-user interface
[vpp.git] / vnet / vnet / devices / dpdk / dpdk.h
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_memcpy.h>
28 #include <rte_memzone.h>
29 #include <rte_tailq.h>
30 #include <rte_eal.h>
31 #include <rte_per_lcore.h>
32 #include <rte_launch.h>
33 #include <rte_atomic.h>
34 #include <rte_cycles.h>
35 #include <rte_prefetch.h>
36 #include <rte_lcore.h>
37 #include <rte_per_lcore.h>
38 #include <rte_branch_prediction.h>
39 #include <rte_interrupts.h>
40 #include <rte_pci.h>
41 #include <rte_random.h>
42 #include <rte_debug.h>
43 #include <rte_ether.h>
44 #include <rte_ethdev.h>
45 #include <rte_ring.h>
46 #include <rte_mempool.h>
47 #include <rte_mbuf.h>
48 #ifdef RTE_LIBRTE_KNI
49 #include <rte_kni.h>
50 #endif
51 #include <rte_virtio_net.h>
52 #include <rte_pci_dev_ids.h>
53 #include <rte_version.h>
54 #include <rte_eth_bond.h>
55
56 #include <vnet/unix/pcap.h>
57 #include <vnet/devices/virtio/vhost-user.h>
58
59 #if CLIB_DEBUG > 0
60 #define always_inline static inline
61 #else
62 #define always_inline static inline __attribute__ ((__always_inline__))
63 #endif
64
65 #define MBUF_SIZE (2048 + sizeof(struct rte_mbuf) + RTE_PKTMBUF_HEADROOM)
66 #define NB_MBUF   (32<<10)
67
68 vnet_device_class_t dpdk_device_class;
69 vlib_node_registration_t dpdk_input_node;
70 vlib_node_registration_t dpdk_io_input_node;
71 vlib_node_registration_t handoff_dispatch_node;
72
73 typedef enum {
74   VNET_DPDK_DEV_ETH = 1,      /* Standard DPDK PMD driver */
75   VNET_DPDK_DEV_KNI,          /* Kernel NIC Interface */
76   VNET_DPDK_DEV_VHOST_USER,
77   VNET_DPDK_DEV_UNKNOWN,      /* must be last */
78 } dpdk_device_type_t;
79
80 #define foreach_dpdk_pmd          \
81   _ ("rte_nicvf_pmd", THUNDERX)   \
82   _ ("rte_em_pmd", E1000EM)       \
83   _ ("rte_igb_pmd", IGB)          \
84   _ ("rte_igbvf_pmd", IGBVF)      \
85   _ ("rte_ixgbe_pmd", IXGBE)      \
86   _ ("rte_ixgbevf_pmd", IXGBEVF)  \
87   _ ("rte_i40e_pmd", I40E)        \
88   _ ("rte_i40evf_pmd", I40EVF)    \
89   _ ("rte_virtio_pmd", VIRTIO)    \
90   _ ("rte_vice_pmd", VICE)        \
91   _ ("rte_enic_pmd", ENIC)        \
92   _ ("rte_vmxnet3_pmd", VMXNET3)  \
93   _ ("AF_PACKET PMD", AF_PACKET)  \
94   _ ("rte_bond_pmd", BOND)        \
95   _ ("rte_pmd_fm10k", FM10K)      \
96   _ ("rte_cxgbe_pmd", CXGBE)
97
98 typedef enum {
99   VNET_DPDK_PMD_NONE,
100 #define _(s,f) VNET_DPDK_PMD_##f,
101   foreach_dpdk_pmd
102 #undef _
103 #ifdef NETMAP
104   VNET_DPDK_PMD_NETMAP,
105 #endif
106   VNET_DPDK_PMD_UNKNOWN, /* must be last */
107 } dpdk_pmd_t;
108
109 typedef enum {
110   VNET_DPDK_PORT_TYPE_ETH_1G,
111   VNET_DPDK_PORT_TYPE_ETH_10G,
112   VNET_DPDK_PORT_TYPE_ETH_40G,
113   VNET_DPDK_PORT_TYPE_ETH_BOND,
114   VNET_DPDK_PORT_TYPE_ETH_SWITCH,
115 #ifdef NETMAP
116   VNET_DPDK_PORT_TYPE_NETMAP,
117 #endif
118   VNET_DPDK_PORT_TYPE_AF_PACKET,
119   VNET_DPDK_PORT_TYPE_UNKNOWN,
120 } dpdk_port_type_t;
121
122 typedef struct {
123   f64 deadline;
124   vlib_frame_t * frame;
125 } dpdk_frame_t;
126
127 #define DPDK_EFD_MAX_DISCARD_RATE 10
128
129 typedef struct {
130   u16 last_burst_sz;
131   u16 max_burst_sz;
132   u32 full_frames_cnt;
133   u32 consec_full_frames_cnt;
134   u32 congestion_cnt;
135   u64 last_poll_time;
136   u64 max_poll_delay;
137   u32 discard_cnt;
138   u32 total_packet_cnt;
139 } dpdk_efd_agent_t;
140
141 typedef struct {
142   int callfd;
143   int kickfd;
144   int errfd;
145 #if RTE_VERSION >= RTE_VERSION_NUM(2, 2, 0, 0)
146   int enabled;
147 #endif
148   u32 callfd_idx;
149   u32 n_since_last_int;
150   f64 int_deadline;
151   u64 packets;
152   u64 bytes;
153 } dpdk_vu_vring;
154
155 typedef struct {
156   u32 is_up;
157   u32 unix_fd;
158   u32 unix_file_index;
159   u32 client_fd;
160   char sock_filename[256];
161   int sock_errno;
162   u8 sock_is_server;
163   u8 active;
164
165   u64 feature_mask;
166   u32 num_vrings;
167 #if RTE_VERSION >= RTE_VERSION_NUM(2, 2, 0, 0)
168   dpdk_vu_vring vrings[VHOST_MAX_QUEUE_PAIRS * 2];
169 #else
170   dpdk_vu_vring vrings[2];
171 #endif
172   u64 region_addr[VHOST_MEMORY_MAX_NREGIONS];
173   u32 region_fd[VHOST_MEMORY_MAX_NREGIONS];
174 } dpdk_vu_intf_t;
175
176 typedef void (*dpdk_flowcontrol_callback_t) (vlib_main_t *vm,
177                                              u32 hw_if_index,
178                                              u32 n_packets);
179
180 /*
181  * The header for the tx_vector in dpdk_device_t.
182  * Head and tail are indexes into the tx_vector and are of type
183  * u64 so they never overflow.
184  */
185 typedef struct {
186   u64 tx_head;
187   u64 tx_tail;
188 } tx_ring_hdr_t;
189
190 typedef struct {
191   CLIB_CACHE_LINE_ALIGN_MARK(cacheline0);
192   volatile u32 **lockp;
193
194   /* Instance ID */
195   u32 device_index;
196
197   u32 vlib_hw_if_index;
198   u32 vlib_sw_if_index;
199
200   /* next node index if we decide to steal the rx graph arc */
201   u32 per_interface_next_index;
202
203   /* dpdk rte_mbuf rx and tx vectors, VLIB_FRAME_SIZE */
204   struct rte_mbuf *** tx_vectors; /* one per worker thread */
205   struct rte_mbuf *** rx_vectors;
206
207   /* vector of traced contexts, per device */
208   u32 * d_trace_buffers;
209
210   /* per-worker destination frame queue */
211   dpdk_frame_t * frames;
212
213   dpdk_device_type_t dev_type:8;
214   dpdk_pmd_t pmd:8;
215   i8 cpu_socket;
216
217   u8 admin_up;
218   u8 promisc;
219
220   CLIB_CACHE_LINE_ALIGN_MARK(cacheline1);
221
222   /* PMD related */
223   u16 tx_q_used;
224   u16 rx_q_used;
225   u16 nb_rx_desc;
226   u16 nb_tx_desc;
227   u16 * cpu_socket_id_by_queue;
228   struct rte_eth_conf port_conf;
229   struct rte_eth_txconf tx_conf;
230
231   /* KNI related */
232   struct rte_kni *kni;
233   u8 kni_port_id;
234
235   /* vhost-user related */
236   u32 vu_if_id;
237   struct virtio_net  vu_vhost_dev;
238   u32 vu_is_running;
239   dpdk_vu_intf_t *vu_intf;
240
241   /* af_packet */
242   u8 af_packet_port_id;
243
244   struct rte_eth_link link;
245   f64 time_last_link_update;
246
247   struct rte_eth_stats stats;
248   struct rte_eth_stats last_stats;
249   struct rte_eth_xstats * xstats;
250   f64 time_last_stats_update;
251   dpdk_port_type_t port_type;
252
253   dpdk_efd_agent_t efd_agent;
254   u8 need_txlock; /* Used by VNET_DPDK_DEV_VHOST_USER */
255 } dpdk_device_t;
256
257 #define MAX_NELTS 32
258 typedef struct {
259   CLIB_CACHE_LINE_ALIGN_MARK(cacheline0);
260   u64 head;
261   u64 head_hint;
262   u64 tail;
263   u32 n_in_use;
264   u32 nelts;
265   u32 written;
266   u32 threshold;
267   i32 n_vectors[MAX_NELTS];
268 } frame_queue_trace_t;
269
270 #define DPDK_TX_RING_SIZE (4 * 1024)
271
272 #define DPDK_STATS_POLL_INTERVAL  10.0
273 #define DPDK_LINK_POLL_INTERVAL   3.0
274
275 typedef struct {
276   CLIB_CACHE_LINE_ALIGN_MARK(cacheline0);
277
278   /* total input packet counter */
279   u64 aggregate_rx_packets;
280 } dpdk_worker_t;
281
282 typedef struct {
283   u32 device;
284   u16 queue_id;
285 } dpdk_device_and_queue_t;
286
287 /* Early-Fast-Discard (EFD) */
288 #define DPDK_EFD_DISABLED                       0
289 #define DPDK_EFD_DISCARD_ENABLED                (1 << 0)
290 #define DPDK_EFD_MONITOR_ENABLED                (1 << 1)
291 #define DPDK_EFD_DROPALL_ENABLED                (1 << 2)
292
293 #define DPDK_EFD_DEFAULT_DEVICE_QUEUE_HI_THRESH_PCT    90
294 #define DPDK_EFD_DEFAULT_CONSEC_FULL_FRAMES_HI_THRESH  6
295
296 typedef struct dpdk_efd_t {
297   u16 enabled;
298   u16 queue_hi_thresh;
299   u16 consec_full_frames_hi_thresh;
300   u16 pad;
301 } dpdk_efd_t;
302
303 typedef struct {
304
305   /* Devices */
306   dpdk_device_t * devices;
307   dpdk_device_and_queue_t ** devices_by_cpu;
308
309   /* per-thread recycle lists */
310   u32 ** recycle;
311
312   /* buffer flags template, configurable to enable/disable tcp / udp cksum */
313   u32 buffer_flags_template;
314
315   /* flow control callback. If 0 then flow control is disabled */
316   dpdk_flowcontrol_callback_t flowcontrol_callback;
317
318   /* vlib buffer free list, must be same size as an rte_mbuf */
319   u32 vlib_buffer_free_list_index;
320
321   /*
322    * format interface names ala xxxEthernet%d/%d/%d instead of
323    * xxxEthernet%x/%x/%x. For VIRL.
324    */
325   u8 interface_name_format_decimal;
326
327
328   /* dpdk worker "threads" */
329   dpdk_worker_t * workers;
330
331   /* Config stuff */
332   u8 ** eal_init_args;
333   u8 * eal_init_args_str;
334   u8 * eth_if_blacklist;
335   u8 * eth_if_whitelist;
336   u8 * uio_driver_name;
337   u8 no_multi_seg;
338
339   /* Required config parameters */
340   u8 coremask_set_manually;
341   u8 nchannels_set_manually;
342   u32 coremask;
343   u32 nchannels;
344   u32 num_mbufs;
345   u32 use_rss;
346   u32 max_tx_queues;
347   u8 num_kni; /* while kni_init allows u32, port_id in callback fn is only u8 */
348
349   /* Ethernet input node index */
350   u32 ethernet_input_node_index;
351
352   /* dpdk i/o thread initialization barrier */
353   volatile u32 io_thread_release;
354
355   /* pcap tracing [only works if (CLIB_DEBUG > 0)] */
356   int tx_pcap_enable;
357   pcap_main_t pcap_main;
358   u8 * pcap_filename;
359   u32 pcap_sw_if_index;
360   u32 pcap_pkts_to_capture;
361
362   /* virtio vhost-user switch */
363   u8 use_virtio_vhost;
364
365   /* vhost-user coalescence frames config */
366   u32 vhost_coalesce_frames;
367   f64 vhost_coalesce_time;
368
369   /* hashes */
370   uword * dpdk_device_by_kni_port_id;
371   uword * vu_sw_if_index_by_listener_fd;
372   uword * vu_sw_if_index_by_sock_fd;
373   u32 * vu_inactive_interfaces_device_index;
374
375   u32 next_vu_if_id;
376
377   /* efd (early-fast-discard) settings */
378   dpdk_efd_t efd;
379
380   /*
381    * flag indicating that a posted admin up/down
382    * (via post_sw_interface_set_flags) is in progress
383    */
384   u8 admin_up_down_in_progress;
385
386   u8 have_io_threads;
387
388   /* which cpus are running dpdk-input */
389   int input_cpu_first_index;
390   int input_cpu_count;
391
392   /* convenience */
393   vlib_main_t * vlib_main;
394   vnet_main_t * vnet_main;
395 } dpdk_main_t;
396
397 dpdk_main_t dpdk_main;
398
399 typedef enum {
400   DPDK_RX_NEXT_IP4_INPUT,
401   DPDK_RX_NEXT_IP6_INPUT,
402   DPDK_RX_NEXT_MPLS_INPUT,
403   DPDK_RX_NEXT_ETHERNET_INPUT,
404   DPDK_RX_NEXT_DROP,
405   DPDK_RX_N_NEXT,
406 } dpdk_rx_next_t;
407
408 typedef struct {
409   u32 buffer_index;
410   u16 device_index;
411   u8 queue_index;
412   struct rte_mbuf mb;
413   /* Copy of VLIB buffer; packet data stored in pre_data. */
414   vlib_buffer_t buffer;
415 } dpdk_tx_dma_trace_t;
416
417 typedef struct {
418   u32 buffer_index;
419   u16 device_index;
420   u16 queue_index;
421   struct rte_mbuf mb;
422   vlib_buffer_t buffer; /* Copy of VLIB buffer; pkt data stored in pre_data. */
423 } dpdk_rx_dma_trace_t;
424
425 void vnet_buffer_needs_dpdk_mb (vlib_buffer_t * b);
426
427 void dpdk_set_next_node (dpdk_rx_next_t, char *);
428
429 clib_error_t * dpdk_set_mac_address (vnet_hw_interface_t * hi, char * address);
430
431 clib_error_t * dpdk_set_mc_filter (vnet_hw_interface_t * hi,
432                                    struct ether_addr mc_addr_vec[], int naddr);
433
434 typedef void (*dpdk_io_thread_callback_t) (vlib_main_t *vm);
435
436 void dpdk_io_thread (vlib_worker_thread_t * w,
437                      u32 instances,
438                      u32 instance_id,
439                      char *worker_name,
440                      dpdk_io_thread_callback_t callback);
441 void dpdk_thread_input (dpdk_main_t * dm, dpdk_device_t * xd);
442
443 clib_error_t * dpdk_port_setup (dpdk_main_t * dm, dpdk_device_t * xd);
444
445 void dpdk_set_flowcontrol_callback (vlib_main_t *vm, 
446                                     dpdk_flowcontrol_callback_t callback);
447
448 u32 dpdk_interface_tx_vector (vlib_main_t * vm, u32 dev_instance);
449
450 vlib_frame_queue_elt_t * vlib_get_handoff_queue_elt (u32 vlib_worker_index);
451
452 u32 dpdk_get_handoff_node_index (void);
453
454 void set_efd_bitmap (u8 *bitmap, u32 value, u32 op);
455
456 #define foreach_dpdk_error                                              \
457   _(NONE, "no error")                                                   \
458   _(RX_PACKET_ERROR, "Rx packet errors")                                \
459   _(RX_BAD_FCS, "Rx bad fcs")                                           \
460   _(L4_CHECKSUM_ERROR, "Rx L4 checksum errors")                         \
461   _(IP_CHECKSUM_ERROR, "Rx ip checksum errors")                         \
462   _(RX_ALLOC_FAIL, "rx buf alloc from free list failed")                \
463   _(RX_ALLOC_NO_PHYSMEM, "rx buf alloc failed no physmem")              \
464   _(RX_ALLOC_DROP_PKTS, "rx packets dropped due to alloc error")        \
465   _(IPV4_EFD_DROP_PKTS, "IPV4 Early Fast Discard rx drops")             \
466   _(IPV6_EFD_DROP_PKTS, "IPV6 Early Fast Discard rx drops")             \
467   _(MPLS_EFD_DROP_PKTS, "MPLS Early Fast Discard rx drops")             \
468   _(VLAN_EFD_DROP_PKTS, "VLAN Early Fast Discard rx drops")
469
470 typedef enum {
471 #define _(f,s) DPDK_ERROR_##f,
472   foreach_dpdk_error
473 #undef _
474   DPDK_N_ERROR,
475 } dpdk_error_t;
476
477 /*
478  * Increment EFD drop counter
479  */
480 static_always_inline
481 void increment_efd_drop_counter (vlib_main_t * vm, u32 counter_index, u32 count)
482 {
483    vlib_node_t *my_n;
484
485    my_n = vlib_get_node (vm, dpdk_input_node.index);
486    vm->error_main.counters[my_n->error_heap_index+counter_index] += count;
487 }
488
489 void dpdk_update_link_state (dpdk_device_t * xd, f64 now);
490 void dpdk_device_lock_init(dpdk_device_t * xd);
491 void dpdk_device_lock_free(dpdk_device_t * xd);
492 void dpdk_efd_update_counters(dpdk_device_t *xd, u32 n_buffers, u16 enabled);
493 u32 is_efd_discardable(vlib_thread_main_t *tm,
494                        vlib_buffer_t * b0,
495                        struct rte_mbuf *mb);
496
497 /* dpdk vhost-user interrupt management */
498 u8 dpdk_vhost_user_want_interrupt (dpdk_device_t *xd, int idx);
499 void dpdk_vhost_user_send_interrupt (vlib_main_t * vm, dpdk_device_t * xd,
500                                     int idx);
501
502
503 static inline u64 vnet_get_aggregate_rx_packets (void)
504 {
505     dpdk_main_t * dm = &dpdk_main;
506     u64 sum = 0;
507     dpdk_worker_t * dw;
508
509     vec_foreach(dw, dm->workers)
510         sum += dw->aggregate_rx_packets;
511
512     return sum;
513 }
514
515 void dpdk_rx_trace (dpdk_main_t * dm,
516                     vlib_node_runtime_t * node,
517                     dpdk_device_t * xd,
518                     u16 queue_id,
519                     u32 * buffers,
520                     uword n_buffers);
521
522 #define EFD_OPERATION_LESS_THAN          0
523 #define EFD_OPERATION_GREATER_OR_EQUAL   1
524
525 void efd_config(u32 enabled,
526                 u32 ip_prec,  u32 ip_op,
527                 u32 mpls_exp, u32 mpls_op,
528                 u32 vlan_cos, u32 vlan_op);
529
530 void post_sw_interface_set_flags (vlib_main_t *vm, u32 sw_if_index, u32 flags);
531
532 typedef struct vhost_user_memory vhost_user_memory_t;
533
534 void dpdk_vhost_user_process_init (void **ctx);
535 void dpdk_vhost_user_process_cleanup (void *ctx);
536 uword dpdk_vhost_user_process_if (vlib_main_t *vm, dpdk_device_t *xd, void *ctx);
537
538 // vhost-user calls
539 int dpdk_vhost_user_create_if (vnet_main_t * vnm, vlib_main_t * vm,
540                               const char * sock_filename,
541                               u8 is_server,
542                               u32 * sw_if_index,
543                               u64 feature_mask,
544                               u8 renumber, u32 custom_dev_instance,
545                               u8 *hwaddr);
546 int dpdk_vhost_user_modify_if (vnet_main_t * vnm, vlib_main_t * vm,
547                               const char * sock_filename,
548                               u8 is_server,
549                               u32 sw_if_index,
550                               u64 feature_mask,
551                               u8 renumber, u32 custom_dev_instance);
552 int dpdk_vhost_user_delete_if (vnet_main_t * vnm, vlib_main_t * vm,
553                               u32 sw_if_index);
554 int dpdk_vhost_user_dump_ifs (vnet_main_t * vnm, vlib_main_t * vm,
555                              vhost_user_intf_details_t **out_vuids);
556
557 u32 dpdk_get_admin_up_down_in_progress (void);
558
559 uword
560 dpdk_input_rss (vlib_main_t * vm, vlib_node_runtime_t * node, vlib_frame_t * f);
561
562 format_function_t format_dpdk_device_name;
563 format_function_t format_dpdk_device;
564 format_function_t format_dpdk_tx_dma_trace;
565 format_function_t format_dpdk_rx_dma_trace;
566 format_function_t format_dpdk_rte_mbuf;
567 format_function_t format_dpdk_rx_rte_mbuf;
568 unformat_function_t unformat_socket_mem;
569
570 #endif /* __included_dpdk_h__ */