|
FD.io VPP
v21.06-3-gbb25fbf28
Vector Packet Processing
|
Go to the documentation of this file.
15 #ifndef __VIRTIO_VHOST_USER_H__
16 #define __VIRTIO_VHOST_USER_H__
23 #define VHOST_MEMORY_MAX_NREGIONS 8
24 #define VHOST_USER_MSG_HDR_SZ 12
25 #define VHOST_VRING_INIT_MQ_PAIR_SZ 8 //8TX + 8RX
32 #define VHOST_VRING_MAX_MQ_PAIR_SZ 128
33 #define VHOST_VRING_IDX_RX(qid) (2*qid)
34 #define VHOST_VRING_IDX_TX(qid) (2*qid + 1)
36 #define VHOST_USER_VRING_NOFD_MASK 0x100
38 #define VHOST_USER_PROTOCOL_F_MQ 0
39 #define VHOST_USER_PROTOCOL_F_LOG_SHMFD 1
40 #define VHOST_VRING_F_LOG 0
42 #define VHOST_USER_PROTOCOL_FEATURES ((1ULL << VHOST_USER_PROTOCOL_F_MQ) | \
43 (1ULL << VHOST_USER_PROTOCOL_F_LOG_SHMFD))
45 #define vu_log_debug(dev, f, ...) \
47 vlib_log(VLIB_LOG_LEVEL_DEBUG, vhost_user_main.log_default, "%U: " f, \
48 format_vnet_hw_if_index_name, vnet_get_main(), \
49 dev->hw_if_index, ##__VA_ARGS__); \
52 #define vu_log_warn(dev, f, ...) \
54 vlib_log(VLIB_LOG_LEVEL_WARNING, vhost_user_main.log_default, "%U: " f, \
55 format_vnet_hw_if_index_name, vnet_get_main(), \
56 dev->hw_if_index, ##__VA_ARGS__); \
58 #define vu_log_err(dev, f, ...) \
60 vlib_log(VLIB_LOG_LEVEL_ERR, vhost_user_main.log_default, "%U: " f, \
61 format_vnet_hw_if_index_name, vnet_get_main(), \
62 dev->hw_if_index, ##__VA_ARGS__); \
65 #define UNIX_GET_FD(unixfd_idx) ({ \
66 typeof(unixfd_idx) __unixfd_idx = (unixfd_idx); \
67 (__unixfd_idx != ~0) ? \
68 pool_elt_at_index (file_main.file_pool, \
69 __unixfd_idx)->file_descriptor : -1; })
71 #define foreach_virtio_trace_flags \
72 _ (SIMPLE_CHAINED, 0, "Simple descriptor chaining") \
73 _ (SINGLE_DESC, 1, "Single descriptor packet") \
74 _ (INDIRECT, 2, "Indirect descriptor") \
75 _ (MAP_ERROR, 4, "Memory mapping error")
79 #define _(n,i,s) VIRTIO_TRACE_F_##n,
84 #define FEATURE_VIRTIO_NET_F_HOST_TSO_FEATURE_BITS \
85 (VIRTIO_FEATURE (VIRTIO_NET_F_CSUM) | \
86 VIRTIO_FEATURE (VIRTIO_NET_F_HOST_UFO) | \
87 VIRTIO_FEATURE (VIRTIO_NET_F_HOST_TSO4) | \
88 VIRTIO_FEATURE (VIRTIO_NET_F_HOST_TSO6))
90 #define FEATURE_VIRTIO_NET_F_GUEST_TSO_FEATURE_BITS \
91 (VIRTIO_FEATURE (VIRTIO_NET_F_GUEST_CSUM) | \
92 VIRTIO_FEATURE (VIRTIO_NET_F_GUEST_UFO) | \
93 VIRTIO_FEATURE (VIRTIO_NET_F_GUEST_TSO4) | \
94 VIRTIO_FEATURE (VIRTIO_NET_F_GUEST_TSO6))
96 #define FEATURE_VIRTIO_NET_F_HOST_GUEST_TSO_FEATURE_BITS \
97 (FEATURE_VIRTIO_NET_F_HOST_TSO_FEATURE_BITS | \
98 FEATURE_VIRTIO_NET_F_GUEST_TSO_FEATURE_BITS)
132 } __attribute ((packed)) vhost_user_memory_region_t;
139 } __attribute ((packed)) vhost_user_memory_t;
177 } __attribute ((packed)) vhost_user_msg_t;
236 #define VHOST_USER_EVENT_START_TIMER 1
237 #define VHOST_USER_EVENT_STOP_TIMER 2
246 char sock_filename[256];
306 virtio_net_hdr_mrg_rxbuf_t
hdr;
309 #define VHOST_USER_RX_BUFFERS_N (2 * VLIB_FRAME_SIZE + 2)
310 #define VHOST_USER_COPY_ARRAY_N (4 * VLIB_FRAME_SIZE)
361 u8 sock_filename[256];
@ VHOST_USER_SET_VRING_KICK
vlib_buffer_t ** rx_buffers_pdesc
struct _vnet_device_class vnet_device_class_t
vhost_user_memory_region_t regions[VHOST_MEMORY_MAX_NREGIONS]
#define VHOST_MEMORY_MAX_NREGIONS
vhost_vring_state_t state
#define CLIB_CACHE_LINE_ALIGN_MARK(mark)
vnet_device_class_t vhost_user_device_class
u16 device_index
The interface queue index (Not the virtio vring idx)
#define foreach_virtio_trace_flags
vlib_main_t * vm
X-connect all packets from the HOST to the PHY.
vring_desc_event_t * avail_event
vlib_node_registration_t vhost_user_input_node
(constructor) VLIB_REGISTER_NODE (vhost_user_input_node)
@ VHOST_USER_SET_VRING_NUM
vhost_user_memory_region_t regions[VHOST_MEMORY_MAX_NREGIONS]
@ VHOST_USER_GET_PROTOCOL_FEATURES
@ VHOST_USER_SET_LOG_BASE
@ VHOST_USER_SET_PROTOCOL_FEATURES
int vhost_user_modify_if(vnet_main_t *vnm, vlib_main_t *vm, vhost_user_create_if_args_t *args)
u32 virtio_ring_flags
The device index.
virtio_net_hdr_mrg_rxbuf_t hdr
Length of the first data descriptor.
vhost_trace_t * current_trace
vring_packed_desc_t * packed_desc
vhost_user_vring_t * vrings
@ VHOST_USER_SET_VRING_BASE
@ VHOST_USER_SET_FEATURES
struct _vlib_node_registration vlib_node_registration_t
vhost_cpu_t * cpus
Per-CPU data for vhost-user.
int vhost_user_create_if(vnet_main_t *vnm, vlib_main_t *vm, vhost_user_create_if_args_t *args)
@ VHOST_USER_GET_VRING_BASE
#define VHOST_USER_COPY_ARRAY_N
vring_desc_event_t * used_event
int vhost_user_delete_if(vnet_main_t *vnm, vlib_main_t *vm, u32 sw_if_index)
u32 * show_dev_instance_by_real_dev_instance
int vhost_user_dump_ifs(vnet_main_t *vnm, vlib_main_t *vm, vhost_user_intf_details_t **out_vuids)
vlib_node_registration_t vhost_user_send_interrupt_node
(constructor) VLIB_REGISTER_NODE (vhost_user_send_interrupt_node)
@ VHOST_USER_SET_VRING_ENABLE
clib_spinlock_t vring_lock
enum vhost_user_req vhost_user_req_t
@ VHOST_USER_GET_FEATURES
vhost_user_intf_t * vhost_user_interfaces
vlib_log_class_t log_default
u16 first_desc_len
Runtime queue flags
@ VHOST_USER_GET_QUEUE_NUM
vhost_user_memory_t memory
@ VHOST_USER_SET_VRING_ERR
vhost_user_main_t vhost_user_main
@ VHOST_USER_SET_VRING_CALL
int dont_dump_vhost_user_memory
vl_api_interface_index_t sw_if_index
u32 random
Pseudo random iterator.
@ VHOST_USER_SET_MEM_TABLE
#define VHOST_USER_RX_BUFFERS_N
mhash_t if_index_by_sock_name
VLIB buffer representation.
@ VHOST_USER_SET_VRING_ADDR