FD.io VPP  v17.07.01-10-g3be13f0
Vector Packet Processing
vhost-user.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 __VIRTIO_VHOST_USER_H__
16 #define __VIRTIO_VHOST_USER_H__
17 /* vhost-user data structures */
18 
19 #define VHOST_MEMORY_MAX_NREGIONS 8
20 #define VHOST_USER_MSG_HDR_SZ 12
21 #define VHOST_VRING_MAX_SIZE 32768
22 #define VHOST_VRING_MAX_N 16 //8TX + 8RX
23 #define VHOST_VRING_IDX_RX(qid) (2*qid)
24 #define VHOST_VRING_IDX_TX(qid) (2*qid + 1)
25 
26 #define VIRTQ_DESC_F_NEXT 1
27 #define VIRTQ_DESC_F_INDIRECT 4
28 #define VHOST_USER_REPLY_MASK (0x1 << 2)
29 
30 #define VHOST_USER_PROTOCOL_F_MQ 0
31 #define VHOST_USER_PROTOCOL_F_LOG_SHMFD 1
32 #define VHOST_VRING_F_LOG 0
33 
34 #define VHOST_USER_F_PROTOCOL_FEATURES 30
35 #define VHOST_USER_PROTOCOL_FEATURES ((1ULL << VHOST_USER_PROTOCOL_F_MQ) | \
36  (1ULL << VHOST_USER_PROTOCOL_F_LOG_SHMFD))
37 
38 /* If multiqueue is provided by host, then we suppport it. */
39 #define VIRTIO_NET_CTRL_MQ 4
40 #define VIRTIO_NET_CTRL_MQ_VQ_PAIRS_SET 0
41 #define VIRTIO_NET_CTRL_MQ_VQ_PAIRS_MIN 1
42 #define VIRTIO_NET_CTRL_MQ_VQ_PAIRS_MAX 0x8000
43 
44 #define VRING_USED_F_NO_NOTIFY 1
45 #define VRING_AVAIL_F_NO_INTERRUPT 1
46 
47 #define foreach_virtio_net_feature \
48  _ (VIRTIO_NET_F_MRG_RXBUF, 15) \
49  _ (VIRTIO_NET_F_CTRL_VQ, 17) \
50  _ (VIRTIO_NET_F_GUEST_ANNOUNCE, 21) \
51  _ (VIRTIO_NET_F_MQ, 22) \
52  _ (VHOST_F_LOG_ALL, 26) \
53  _ (VIRTIO_F_ANY_LAYOUT, 27) \
54  _ (VIRTIO_F_INDIRECT_DESC, 28) \
55  _ (VHOST_USER_F_PROTOCOL_FEATURES, 30) \
56  _ (VIRTIO_F_VERSION_1, 32)
57 
58 
59 typedef enum
60 {
61 #define _(f,n) FEAT_##f = (n),
63 #undef _
65 
67  const char *sock_filename, u8 is_server,
68  u32 * sw_if_index, u64 feature_mask,
69  u8 renumber, u32 custom_dev_instance, u8 * hwaddr);
71  const char *sock_filename, u8 is_server,
72  u32 sw_if_index, u64 feature_mask,
73  u8 renumber, u32 custom_dev_instance);
75  u32 sw_if_index);
76 
77 /* *INDENT-OFF* */
79 {
84 } __attribute ((packed)) vhost_user_memory_region_t;
85 
86 typedef struct vhost_user_memory
87 {
90  vhost_user_memory_region_t regions[VHOST_MEMORY_MAX_NREGIONS];
91 } __attribute ((packed)) vhost_user_memory_t;
92 
93 typedef struct
94 {
95  u32 index, num;
96 } __attribute ((packed)) vhost_vring_state_t;
97 
98 typedef struct
99 {
100  u32 index, flags;
101  u64 desc_user_addr, used_user_addr, avail_user_addr, log_guest_addr;
102 } __attribute ((packed)) vhost_vring_addr_t;
103 
104 typedef struct vhost_user_log
105 {
108 } __attribute ((packed)) vhost_user_log_t;
109 
110 typedef enum vhost_user_req
111 {
133 
134 // vring_desc I/O buffer descriptor
135 typedef struct
136 {
137  uint64_t addr; // packet data buffer address
138  uint32_t len; // packet data buffer size
139  uint16_t flags; // (see below)
140  uint16_t next; // optional index next descriptor in chain
141 } __attribute ((packed)) vring_desc_t;
142 
143 typedef struct
144 {
145  uint16_t flags;
146  volatile uint16_t idx;
147  uint16_t ring[VHOST_VRING_MAX_SIZE];
148 } __attribute ((packed)) vring_avail_t;
149 
150 typedef struct
151 {
152  uint16_t flags;
153  uint16_t idx;
154  struct /* vring_used_elem */
155  {
156  uint32_t id;
157  uint32_t len;
158  } ring[VHOST_VRING_MAX_SIZE];
159 } __attribute ((packed)) vring_used_t;
160 
161 typedef struct
162 {
163  u8 flags;
164  u8 gso_type;
165  u16 hdr_len;
166  u16 gso_size;
167  u16 csum_start;
168  u16 csum_offset;
169 } __attribute ((packed)) virtio_net_hdr_t;
170 
171 typedef struct {
172  virtio_net_hdr_t hdr;
173  u16 num_buffers;
174 } __attribute ((packed)) virtio_net_hdr_mrg_rxbuf_t;
175 
176 typedef struct vhost_user_msg {
177  vhost_user_req_t request;
180  union
181  {
183  vhost_vring_state_t state;
184  vhost_vring_addr_t addr;
185  vhost_user_memory_t memory;
186  vhost_user_log_t log;
187  };
188 } __attribute ((packed)) vhost_user_msg_t;
189 /* *INDENT-ON* */
190 
191 typedef struct
192 {
193  CLIB_CACHE_LINE_ALIGN_MARK (cacheline0);
198  vring_desc_t *desc;
199  vring_avail_t *avail;
200  vring_used_t *used;
205  //Put non-runtime in a different cache line
206  CLIB_CACHE_LINE_ALIGN_MARK (cacheline1);
207  int errfd;
211 
212  /* The rx queue policy (interrupt/adaptive/polling) for this queue */
215 
216 #define VHOST_USER_EVENT_START_TIMER 1
217 #define VHOST_USER_EVENT_STOP_TIMER 2
218 
219 typedef struct
220 {
221  CLIB_CACHE_LINE_ALIGN_MARK (cacheline0);
226  char sock_filename[256];
229  u32 hw_if_index, sw_if_index;
230 
231  //Feature negotiation
235 
236  //Memory region information
238  vhost_user_memory_region_t regions[VHOST_MEMORY_MAX_NREGIONS];
239  void *region_mmap_addr[VHOST_MEMORY_MAX_NREGIONS];
240  u64 region_guest_addr_lo[VHOST_MEMORY_MAX_NREGIONS];
241  u64 region_guest_addr_hi[VHOST_MEMORY_MAX_NREGIONS];
243 
244  //Virtual rings
246  volatile u32 *vring_locks[VHOST_VRING_MAX_N];
247 
250 
253 
254  /* Whether to use spinlock or per_cpu_tx_qid assignment */
257 
258  /* Vector of active rx queues for this interface */
261 
262 typedef struct
263 {
267 } vhost_copy_t;
268 
269 typedef struct
270 {
271  u16 qid; /** The interface queue index (Not the virtio vring idx) */
272  u16 device_index; /** The device index */
273  u32 virtio_ring_flags; /** Runtime queue flags **/
274  u16 first_desc_len; /** Length of the first data descriptor **/
275  virtio_net_hdr_mrg_rxbuf_t hdr; /** Virtio header **/
276 } vhost_trace_t;
277 
278 
279 #define VHOST_USER_RX_BUFFERS_N (2 * VLIB_FRAME_SIZE + 2)
280 #define VHOST_USER_COPY_ARRAY_N (4 * VLIB_FRAME_SIZE)
281 
282 typedef struct
283 {
286 
287  virtio_net_hdr_mrg_rxbuf_t tx_headers[VLIB_FRAME_SIZE];
289 
290  /* This is here so it doesn't end-up
291  * using stack or registers. */
293 } vhost_cpu_t;
294 
295 typedef struct
296 {
304 
305  /** Per-CPU data for vhost-user */
307 
308  /** Pseudo random iterator */
310 
311  /* The number of rx interface/queue pairs in interrupt mode */
313 
314  /* debug on or off */
317 
318 typedef struct
319 {
320  u8 if_name[64];
325  u8 sock_filename[256];
329 
331  vhost_user_intf_details_t ** out_vuids);
332 
333 #endif
334 
335 /*
336  * fd.io coding-style-patch-verification: ON
337  *
338  * Local Variables:
339  * eval: (c-set-style "gnu")
340  * End:
341  */
Definition: mhash.h:46
#define CLIB_CACHE_LINE_ALIGN_MARK(mark)
Definition: cache.h:68
vring_desc_t * desc
Definition: vhost-user.h:198
vhost_user_log_t log
Definition: vhost-user.h:186
u32 virtio_ring_flags
The device index.
Definition: vhost-user.h:273
virtio_net_hdr_mrg_rxbuf_t hdr
Length of the first data descriptor.
Definition: vhost-user.h:275
vhost_cpu_t * cpus
Per-CPU data for vhost-user.
Definition: vhost-user.h:306
virtio_net_feature_t
Definition: vhost-user.h:59
enum vhost_user_req vhost_user_req_t
vring_avail_t * avail
Definition: vhost-user.h:199
vhost_vring_state_t state
Definition: vhost-user.h:183
vring_used_t * used
Definition: vhost-user.h:200
vhost_trace_t * current_trace
Definition: vhost-user.h:292
vhost_user_req
Definition: vhost-user.h:110
void * log_base_addr
Definition: vhost-user.h:251
unsigned long u64
Definition: types.h:89
#define VHOST_VRING_MAX_SIZE
Definition: vhost-user.h:21
#define foreach_virtio_net_feature
Definition: vhost-user.h:47
u32 random
Pseudo random iterator.
Definition: vhost-user.h:309
#define VLIB_FRAME_SIZE
Definition: node.h:329
vhost_vring_addr_t addr
Definition: vhost-user.h:184
int vhost_user_modify_if(vnet_main_t *vnm, vlib_main_t *vm, const char *sock_filename, u8 is_server, u32 sw_if_index, u64 feature_mask, u8 renumber, u32 custom_dev_instance)
Definition: vhost-user.c:2919
u32 * show_dev_instance_by_real_dev_instance
Definition: vhost-user.h:300
u16 device_index
The interface queue index (Not the virtio vring idx)
Definition: vhost-user.h:272
vhost_user_intf_t * vhost_user_interfaces
Definition: vhost-user.h:299
#define VHOST_USER_COPY_ARRAY_N
Definition: vhost-user.h:280
int vhost_user_create_if(vnet_main_t *vnm, vlib_main_t *vm, const char *sock_filename, u8 is_server, u32 *sw_if_index, u64 feature_mask, u8 renumber, u32 custom_dev_instance, u8 *hwaddr)
Definition: vhost-user.c:2861
#define VHOST_MEMORY_MAX_NREGIONS
Definition: vhost-user.h:19
u16 first_desc_len
Runtime queue flags.
Definition: vhost-user.h:274
vhost_user_memory_region_t regions[VHOST_MEMORY_MAX_NREGIONS]
Definition: vhost-user.h:77
int vhost_user_delete_if(vnet_main_t *vnm, vlib_main_t *vm, u32 sw_if_index)
Definition: vhost-user.c:2644
unsigned int u32
Definition: types.h:88
mhash_t if_index_by_sock_name
Definition: vhost-user.h:297
u64 uword
Definition: types.h:112
unsigned short u16
Definition: types.h:57
double f64
Definition: types.h:142
#define VHOST_USER_RX_BUFFERS_N
Definition: vhost-user.h:279
unsigned char u8
Definition: types.h:56
#define VHOST_VRING_MAX_N
Definition: vhost-user.h:22
u32 rx_buffers_len
Definition: vhost-user.h:284
vhost_vring_addr_t addr
Definition: vhost-user.h:82
int vhost_user_dump_ifs(vnet_main_t *vnm, vlib_main_t *vm, vhost_user_intf_details_t **out_vuids)
Definition: vhost-user.c:3082
u32 flags
Definition: vhost-user.h:76
vhost_user_memory_t memory
Definition: vhost-user.h:185
vhost_user_req_t request
Definition: vhost-user.h:177
int dont_dump_vhost_user_memory
Definition: vhost-user.h:303