47fad1d64657baf8927416a8ecda91af01e07911
[vpp.git] / vnet / vnet / devices / virtio / vhost-user.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 __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_NET_VRING_IDX_RX          0
23 #define VHOST_NET_VRING_IDX_TX          1
24 #define VHOST_NET_VRING_NUM             2
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 #if DPDK == 0
36 #define RTE_VERSION_NUM(a,b,c,d) 1
37 #define RTE_VERSION 0
38 #endif
39 #define VHOST_USER_PROTOCOL_FEATURES   ((1ULL << VHOST_USER_PROTOCOL_F_MQ) |    \
40                                         (1ULL << VHOST_USER_PROTOCOL_F_LOG_SHMFD))
41
42 /* If multiqueue is provided by host, then we suppport it. */
43 #define VIRTIO_NET_CTRL_MQ   4
44 #define VIRTIO_NET_CTRL_MQ_VQ_PAIRS_SET        0
45 #define VIRTIO_NET_CTRL_MQ_VQ_PAIRS_MIN        1
46 #define VIRTIO_NET_CTRL_MQ_VQ_PAIRS_MAX        0x8000
47
48 #define foreach_virtio_net_feature      \
49  _ (VIRTIO_NET_F_MRG_RXBUF, 15)         \
50  _ (VIRTIO_F_ANY_LAYOUT, 27)            \
51  _ (VIRTIO_F_INDIRECT_DESC, 28)         \
52  _ (VHOST_F_LOG_ALL, 26)                \
53  _ (VIRTIO_NET_F_GUEST_ANNOUNCE, 21)    \
54  _ (VHOST_USER_F_PROTOCOL_FEATURES, 30) \
55  _ (VIRTIO_F_VERSION_1, 32)
56
57
58 typedef enum
59 {
60 #define _(f,n) FEAT_##f = (n),
61   foreach_virtio_net_feature
62 #undef _
63 } virtio_net_feature_t;
64
65 int vhost_user_create_if (vnet_main_t * vnm, vlib_main_t * vm,
66                           const char *sock_filename, u8 is_server,
67                           u32 * sw_if_index, u64 feature_mask,
68                           u8 renumber, u32 custom_dev_instance, u8 * hwaddr);
69 int vhost_user_modify_if (vnet_main_t * vnm, vlib_main_t * vm,
70                           const char *sock_filename, u8 is_server,
71                           u32 sw_if_index, u64 feature_mask,
72                           u8 renumber, u32 custom_dev_instance);
73 int vhost_user_delete_if (vnet_main_t * vnm, vlib_main_t * vm,
74                           u32 sw_if_index);
75
76 typedef struct vhost_user_memory_region
77 {
78   u64 guest_phys_addr;
79   u64 memory_size;
80   u64 userspace_addr;
81   u64 mmap_offset;
82 } vhost_user_memory_region_t;
83
84 typedef struct vhost_user_memory
85 {
86   u32 nregions;
87   u32 padding;
88   vhost_user_memory_region_t regions[VHOST_MEMORY_MAX_NREGIONS];
89 } vhost_user_memory_t;
90
91 typedef struct
92 {
93   unsigned int index, num;
94 } vhost_vring_state_t;
95
96 typedef struct
97 {
98   unsigned int index, flags;
99   u64 desc_user_addr, used_user_addr, avail_user_addr, log_guest_addr;
100 } vhost_vring_addr_t;
101
102 typedef struct vhost_user_log
103 {
104   u64 size;
105   u64 offset;
106 } vhost_user_log_t;
107
108 typedef enum vhost_user_req
109 {
110   VHOST_USER_NONE = 0,
111   VHOST_USER_GET_FEATURES = 1,
112   VHOST_USER_SET_FEATURES = 2,
113   VHOST_USER_SET_OWNER = 3,
114   VHOST_USER_RESET_OWNER = 4,
115   VHOST_USER_SET_MEM_TABLE = 5,
116   VHOST_USER_SET_LOG_BASE = 6,
117   VHOST_USER_SET_LOG_FD = 7,
118   VHOST_USER_SET_VRING_NUM = 8,
119   VHOST_USER_SET_VRING_ADDR = 9,
120   VHOST_USER_SET_VRING_BASE = 10,
121   VHOST_USER_GET_VRING_BASE = 11,
122   VHOST_USER_SET_VRING_KICK = 12,
123   VHOST_USER_SET_VRING_CALL = 13,
124   VHOST_USER_SET_VRING_ERR = 14,
125   VHOST_USER_GET_PROTOCOL_FEATURES = 15,
126   VHOST_USER_SET_PROTOCOL_FEATURES = 16,
127   VHOST_USER_GET_QUEUE_NUM = 17,
128   VHOST_USER_SET_VRING_ENABLE = 18,
129   VHOST_USER_MAX
130 } vhost_user_req_t;
131
132 // vring_desc I/O buffer descriptor
133 /* *INDENT-OFF* */
134 typedef struct
135 {
136   uint64_t addr;  // packet data buffer address
137   uint32_t len;   // packet data buffer size
138   uint16_t flags; // (see below)
139   uint16_t next;  // optional index next descriptor in chain
140 } __attribute ((packed)) vring_desc_t;
141
142 typedef struct
143 {
144   uint16_t flags;
145   uint16_t idx;
146   uint16_t ring[VHOST_VRING_MAX_SIZE];
147 } __attribute ((packed)) vring_avail_t;
148
149 typedef struct
150 {
151   uint16_t flags;
152   uint16_t idx;
153   struct /* vring_used_elem */
154     {
155       uint32_t id;
156       uint32_t len;
157     } ring[VHOST_VRING_MAX_SIZE];
158 } __attribute ((packed)) vring_used_t;
159
160 typedef struct
161 {
162   u8 flags;
163   u8 gso_type;
164   u16 hdr_len;
165   u16 gso_size;
166   u16 csum_start;
167   u16 csum_offset;
168 } __attribute ((packed)) virtio_net_hdr_t;
169
170 typedef struct  {
171   virtio_net_hdr_t hdr;
172   u16 num_buffers;
173 } __attribute ((packed)) virtio_net_hdr_mrg_rxbuf_t;
174
175 typedef struct vhost_user_msg {
176   vhost_user_req_t request;
177   u32 flags;
178   u32 size;
179   union
180     {
181       u64 u64;
182       vhost_vring_state_t state;
183       vhost_vring_addr_t addr;
184       vhost_user_memory_t memory;
185       vhost_user_log_t log;
186     };
187 } __attribute ((packed)) vhost_user_msg_t;
188 /* *INDENT-ON* */
189
190 typedef struct
191 {
192   u32 qsz;
193   u16 last_avail_idx;
194   u16 last_used_idx;
195   vring_desc_t *desc;
196   vring_avail_t *avail;
197   vring_used_t *used;
198   u64 log_guest_addr;
199   int callfd;
200   int kickfd;
201   int errfd;
202   u32 enabled;
203   u32 log_used;
204   u32 callfd_idx;
205   u32 n_since_last_int;
206   f64 int_deadline;
207 } vhost_user_vring_t;
208
209 typedef struct
210 {
211   CLIB_CACHE_LINE_ALIGN_MARK (cacheline0);
212   volatile u32 *lockp;
213   u32 is_up;
214   u32 admin_up;
215   u32 unix_fd;
216   u32 unix_file_index;
217   u32 client_fd;
218   char sock_filename[256];
219   int sock_errno;
220   u8 sock_is_server;
221   u32 hw_if_index, sw_if_index;
222   u8 active;
223
224   u32 nregions;
225   u64 features;
226   u64 feature_mask;
227   u64 protocol_features;
228   u32 num_vrings;
229   vhost_user_memory_region_t regions[VHOST_MEMORY_MAX_NREGIONS];
230   void *region_mmap_addr[VHOST_MEMORY_MAX_NREGIONS];
231   u64 region_guest_addr_lo[VHOST_MEMORY_MAX_NREGIONS];
232   u64 region_guest_addr_hi[VHOST_MEMORY_MAX_NREGIONS];
233   u32 region_mmap_fd[VHOST_MEMORY_MAX_NREGIONS];
234   vhost_user_vring_t vrings[2];
235   int virtio_net_hdr_sz;
236   int is_any_layout;
237   u32 *d_trace_buffers;
238
239   void *log_base_addr;
240   u64 log_size;
241 } vhost_user_intf_t;
242
243 typedef struct
244 {
245   u32 **rx_buffers;
246   u32 mtu_bytes;
247   vhost_user_intf_t *vhost_user_interfaces;
248   u32 *vhost_user_inactive_interfaces_index;
249   uword *vhost_user_interface_index_by_listener_fd;
250   uword *vhost_user_interface_index_by_sock_fd;
251   uword *vhost_user_interface_index_by_sw_if_index;
252   u32 *show_dev_instance_by_real_dev_instance;
253   u32 coalesce_frames;
254   f64 coalesce_time;
255   int dont_dump_vhost_user_memory;
256
257   /* first cpu index */
258   u32 input_cpu_first_index;
259
260   /* total cpu count */
261   u32 input_cpu_count;
262 } vhost_user_main_t;
263
264 typedef struct
265 {
266   u8 if_name[64];
267   u32 sw_if_index;
268   u32 virtio_net_hdr_sz;
269   u64 features;
270   u8 is_server;
271   u8 sock_filename[256];
272   u32 num_regions;
273   int sock_errno;
274 } vhost_user_intf_details_t;
275
276 int vhost_user_dump_ifs (vnet_main_t * vnm, vlib_main_t * vm,
277                          vhost_user_intf_details_t ** out_vuids);
278
279 // CLI commands to be used from dpdk
280 clib_error_t *vhost_user_connect_command_fn (vlib_main_t * vm,
281                                              unformat_input_t * input,
282                                              vlib_cli_command_t * cmd);
283 clib_error_t *vhost_user_delete_command_fn (vlib_main_t * vm,
284                                             unformat_input_t * input,
285                                             vlib_cli_command_t * cmd);
286 clib_error_t *show_vhost_user_command_fn (vlib_main_t * vm,
287                                           unformat_input_t * input,
288                                           vlib_cli_command_t * cmd);
289
290 #endif
291
292 /*
293  * fd.io coding-style-patch-verification: ON
294  *
295  * Local Variables:
296  * eval: (c-set-style "gnu")
297  * End:
298  */