blob: 4e745d662fb7b3e09e269d7cccb217411d6c5932 [file] [log] [blame]
Damjan Marion00a9dca2016-08-17 17:05:46 +02001/*
Ed Warnickecb9cada2015-12-08 15:45:58 -07002 *------------------------------------------------------------------
3 * vhost.c - vhost-user
4 *
5 * Copyright (c) 2014 Cisco and/or its affiliates.
6 * Licensed under the Apache License, Version 2.0 (the "License");
7 * you may not use this file except in compliance with the License.
8 * You may obtain a copy of the License at:
9 *
10 * http://www.apache.org/licenses/LICENSE-2.0
11 *
12 * Unless required by applicable law or agreed to in writing, software
13 * distributed under the License is distributed on an "AS IS" BASIS,
14 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 * See the License for the specific language governing permissions and
16 * limitations under the License.
17 *------------------------------------------------------------------
18 */
19
20#include <fcntl.h> /* for open */
21#include <sys/ioctl.h>
22#include <sys/socket.h>
23#include <sys/un.h>
24#include <sys/stat.h>
25#include <sys/types.h>
26#include <sys/uio.h> /* for iovec */
27#include <netinet/in.h>
28#include <sys/vfs.h>
29
30#include <linux/if_arp.h>
31#include <linux/if_tun.h>
32
33#include <vlib/vlib.h>
34#include <vlib/unix/unix.h>
35
36#include <vnet/ip/ip.h>
37
38#include <vnet/ethernet/ethernet.h>
Damjan Marion8bdc63b2016-11-02 14:48:21 +010039#include <vnet/devices/devices.h>
Damjan Marion22311502016-10-28 20:30:15 +020040#include <vnet/feature/feature.h>
Ed Warnickecb9cada2015-12-08 15:45:58 -070041
42#include <vnet/devices/virtio/vhost-user.h>
43
Billy McFalla92501a2016-11-23 12:45:29 -050044/**
45 * @file
46 * @brief vHost User Device Driver.
47 *
48 * This file contains the source code for vHost User interface.
49 */
50
51
Pierre Pfister116ea4b2016-11-08 15:49:28 +000052#define VHOST_DEBUG_VQ 0
Ed Warnickecb9cada2015-12-08 15:45:58 -070053
Steven388e51a2017-06-01 12:49:23 -070054#define DBG_SOCK(args...) \
55 { \
56 vhost_user_main_t *_vum = &vhost_user_main; \
57 if (_vum->debug) \
58 clib_warning(args); \
59 };
Ed Warnickecb9cada2015-12-08 15:45:58 -070060
Pierre Pfister116ea4b2016-11-08 15:49:28 +000061#if VHOST_DEBUG_VQ == 1
Ed Warnickecb9cada2015-12-08 15:45:58 -070062#define DBG_VQ(args...) clib_warning(args);
63#else
64#define DBG_VQ(args...)
65#endif
66
Pierre Pfisterd3eb90e2016-11-29 15:36:14 +000067/*
68 * When an RX queue is down but active, received packets
69 * must be discarded. This value controls up to how many
70 * packets will be discarded during each round.
71 */
72#define VHOST_USER_DOWN_DISCARD_COUNT 256
73
74/*
75 * When the number of available buffers gets under this threshold,
76 * RX node will start discarding packets.
77 */
78#define VHOST_USER_RX_BUFFER_STARVATION 32
79
80/*
81 * On the receive side, the host should free descriptors as soon
82 * as possible in order to avoid TX drop in the VM.
83 * This value controls the number of copy operations that are stacked
84 * before copy is done for all and descriptors are given back to
85 * the guest.
86 * The value 64 was obtained by testing (48 and 128 were not as good).
87 */
88#define VHOST_USER_RX_COPY_THRESHOLD 64
Stevend7727532017-06-09 18:49:17 -070089/*
90 * On the transmit side, we keep processing the buffers from vlib in the while
91 * loop and prepare the copy order to be executed later. However, the static
92 * array which we keep the copy order is limited to VHOST_USER_COPY_ARRAY_N
93 * entries. In order to not corrupt memory, we have to do the copy when the
94 * static array reaches the copy threshold. We subtract 40 in case the code
95 * goes into the inner loop for a maximum of 64k frames which may require
96 * more array entries.
97 */
98#define VHOST_USER_TX_COPY_THRESHOLD (VHOST_USER_COPY_ARRAY_N - 40)
Pierre Pfisterd3eb90e2016-11-29 15:36:14 +000099
Haiyang Tan2ae51352018-02-06 11:16:48 -0500100#define UNIX_GET_FD(unixfd_idx) ({ \
101 typeof(unixfd_idx) __unixfd_idx = (unixfd_idx); \
102 (__unixfd_idx != ~0) ? \
Damjan Marion56dd5432017-09-08 19:52:02 +0200103 pool_elt_at_index (file_main.file_pool, \
Haiyang Tan2ae51352018-02-06 11:16:48 -0500104 __unixfd_idx)->file_descriptor : -1; })
Pierre Pfisterdbb3c252016-11-22 10:33:34 +0000105
Pierre Pfister116ea4b2016-11-08 15:49:28 +0000106#define foreach_virtio_trace_flags \
107 _ (SIMPLE_CHAINED, 0, "Simple descriptor chaining") \
108 _ (SINGLE_DESC, 1, "Single descriptor packet") \
109 _ (INDIRECT, 2, "Indirect descriptor") \
110 _ (MAP_ERROR, 4, "Memory mapping error")
111
112typedef enum
113{
114#define _(n,i,s) VIRTIO_TRACE_F_##n,
115 foreach_virtio_trace_flags
116#undef _
117} virtio_trace_flag_t;
118
Ed Warnickecb9cada2015-12-08 15:45:58 -0700119vlib_node_registration_t vhost_user_input_node;
120
121#define foreach_vhost_user_tx_func_error \
Pierre Pfister328e99b2016-02-12 13:18:42 +0000122 _(NONE, "no error") \
Pierre Pfisterd3eb90e2016-11-29 15:36:14 +0000123 _(NOT_READY, "vhost vring not ready") \
124 _(DOWN, "vhost interface is down") \
Ed Warnickecb9cada2015-12-08 15:45:58 -0700125 _(PKT_DROP_NOBUF, "tx packet drops (no available descriptors)") \
Pierre Pfisterba1d0462016-07-27 16:38:20 +0100126 _(PKT_DROP_NOMRG, "tx packet drops (cannot merge descriptors)") \
127 _(MMAP_FAIL, "mmap failure") \
128 _(INDIRECT_OVERFLOW, "indirect descriptor table overflow")
Ed Warnickecb9cada2015-12-08 15:45:58 -0700129
Damjan Marion00a9dca2016-08-17 17:05:46 +0200130typedef enum
131{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700132#define _(f,s) VHOST_USER_TX_FUNC_ERROR_##f,
133 foreach_vhost_user_tx_func_error
134#undef _
Damjan Marion00a9dca2016-08-17 17:05:46 +0200135 VHOST_USER_TX_FUNC_N_ERROR,
Ed Warnickecb9cada2015-12-08 15:45:58 -0700136} vhost_user_tx_func_error_t;
137
Damjan Marion00a9dca2016-08-17 17:05:46 +0200138static char *vhost_user_tx_func_error_strings[] = {
Ed Warnickecb9cada2015-12-08 15:45:58 -0700139#define _(n,s) s,
Damjan Marion00a9dca2016-08-17 17:05:46 +0200140 foreach_vhost_user_tx_func_error
Ed Warnickecb9cada2015-12-08 15:45:58 -0700141#undef _
142};
143
144#define foreach_vhost_user_input_func_error \
145 _(NO_ERROR, "no error") \
Pierre Pfister328e99b2016-02-12 13:18:42 +0000146 _(NO_BUFFER, "no available buffer") \
147 _(MMAP_FAIL, "mmap failure") \
Pierre Pfisterba1d0462016-07-27 16:38:20 +0100148 _(INDIRECT_OVERFLOW, "indirect descriptor overflows table") \
149 _(UNDERSIZED_FRAME, "undersized ethernet frame received (< 14 bytes)") \
150 _(FULL_RX_QUEUE, "full rx queue (possible driver tx drop)")
Ed Warnickecb9cada2015-12-08 15:45:58 -0700151
Damjan Marion00a9dca2016-08-17 17:05:46 +0200152typedef enum
153{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700154#define _(f,s) VHOST_USER_INPUT_FUNC_ERROR_##f,
155 foreach_vhost_user_input_func_error
156#undef _
Damjan Marion00a9dca2016-08-17 17:05:46 +0200157 VHOST_USER_INPUT_FUNC_N_ERROR,
Ed Warnickecb9cada2015-12-08 15:45:58 -0700158} vhost_user_input_func_error_t;
159
Damjan Marion00a9dca2016-08-17 17:05:46 +0200160static char *vhost_user_input_func_error_strings[] = {
Ed Warnickecb9cada2015-12-08 15:45:58 -0700161#define _(n,s) s,
Damjan Marion00a9dca2016-08-17 17:05:46 +0200162 foreach_vhost_user_input_func_error
Ed Warnickecb9cada2015-12-08 15:45:58 -0700163#undef _
164};
165
Damjan Marion00a9dca2016-08-17 17:05:46 +0200166/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700167static vhost_user_main_t vhost_user_main = {
168 .mtu_bytes = 1518,
169};
170
171VNET_HW_INTERFACE_CLASS (vhost_interface_class, static) = {
172 .name = "vhost-user",
173};
Damjan Marion00a9dca2016-08-17 17:05:46 +0200174/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700175
Damjan Marion00a9dca2016-08-17 17:05:46 +0200176static u8 *
177format_vhost_user_interface_name (u8 * s, va_list * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700178{
179 u32 i = va_arg (*args, u32);
180 u32 show_dev_instance = ~0;
Damjan Marion00a9dca2016-08-17 17:05:46 +0200181 vhost_user_main_t *vum = &vhost_user_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700182
183 if (i < vec_len (vum->show_dev_instance_by_real_dev_instance))
184 show_dev_instance = vum->show_dev_instance_by_real_dev_instance[i];
185
186 if (show_dev_instance != ~0)
187 i = show_dev_instance;
188
189 s = format (s, "VirtualEthernet0/0/%d", i);
190 return s;
191}
192
Damjan Marion00a9dca2016-08-17 17:05:46 +0200193static int
194vhost_user_name_renumber (vnet_hw_interface_t * hi, u32 new_dev_instance)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700195{
Pierre Pfisterdbb3c252016-11-22 10:33:34 +0000196 // FIXME: check if the new dev instance is already used
Damjan Marion00a9dca2016-08-17 17:05:46 +0200197 vhost_user_main_t *vum = &vhost_user_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700198 vec_validate_init_empty (vum->show_dev_instance_by_real_dev_instance,
Damjan Marion00a9dca2016-08-17 17:05:46 +0200199 hi->dev_instance, ~0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700200
Damjan Marion00a9dca2016-08-17 17:05:46 +0200201 vum->show_dev_instance_by_real_dev_instance[hi->dev_instance] =
Ed Warnickecb9cada2015-12-08 15:45:58 -0700202 new_dev_instance;
203
Damjan Marion00a9dca2016-08-17 17:05:46 +0200204 DBG_SOCK ("renumbered vhost-user interface dev_instance %d to %d",
205 hi->dev_instance, new_dev_instance);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700206
207 return 0;
208}
209
Pierre Pfister11f92052016-09-21 08:08:55 +0100210static_always_inline void *
211map_guest_mem (vhost_user_intf_t * vui, uword addr, u32 * hint)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700212{
Pierre Pfister11f92052016-09-21 08:08:55 +0100213 int i = *hint;
214 if (PREDICT_TRUE ((vui->regions[i].guest_phys_addr <= addr) &&
215 ((vui->regions[i].guest_phys_addr +
216 vui->regions[i].memory_size) > addr)))
217 {
218 return (void *) (vui->region_mmap_addr[i] + addr -
219 vui->regions[i].guest_phys_addr);
220 }
Damjan Marion37623702016-09-20 11:25:27 +0200221#if __SSE4_2__
222 __m128i rl, rh, al, ah, r;
223 al = _mm_set1_epi64x (addr + 1);
224 ah = _mm_set1_epi64x (addr);
225
226 rl = _mm_loadu_si128 ((__m128i *) & vui->region_guest_addr_lo[0]);
227 rl = _mm_cmpgt_epi64 (al, rl);
228 rh = _mm_loadu_si128 ((__m128i *) & vui->region_guest_addr_hi[0]);
229 rh = _mm_cmpgt_epi64 (rh, ah);
230 r = _mm_and_si128 (rl, rh);
231
232 rl = _mm_loadu_si128 ((__m128i *) & vui->region_guest_addr_lo[2]);
233 rl = _mm_cmpgt_epi64 (al, rl);
234 rh = _mm_loadu_si128 ((__m128i *) & vui->region_guest_addr_hi[2]);
235 rh = _mm_cmpgt_epi64 (rh, ah);
236 r = _mm_blend_epi16 (r, _mm_and_si128 (rl, rh), 0x22);
237
238 rl = _mm_loadu_si128 ((__m128i *) & vui->region_guest_addr_lo[4]);
239 rl = _mm_cmpgt_epi64 (al, rl);
240 rh = _mm_loadu_si128 ((__m128i *) & vui->region_guest_addr_hi[4]);
241 rh = _mm_cmpgt_epi64 (rh, ah);
242 r = _mm_blend_epi16 (r, _mm_and_si128 (rl, rh), 0x44);
243
244 rl = _mm_loadu_si128 ((__m128i *) & vui->region_guest_addr_lo[6]);
245 rl = _mm_cmpgt_epi64 (al, rl);
246 rh = _mm_loadu_si128 ((__m128i *) & vui->region_guest_addr_hi[6]);
247 rh = _mm_cmpgt_epi64 (rh, ah);
248 r = _mm_blend_epi16 (r, _mm_and_si128 (rl, rh), 0x88);
249
250 r = _mm_shuffle_epi8 (r, _mm_set_epi64x (0, 0x0e060c040a020800));
Damjan Marion11056002018-05-10 13:40:44 +0200251 i = count_trailing_zeros (_mm_movemask_epi8 (r) |
252 (1 << VHOST_MEMORY_MAX_NREGIONS));
Damjan Marion37623702016-09-20 11:25:27 +0200253
254 if (i < vui->nregions)
255 {
Pierre Pfister11f92052016-09-21 08:08:55 +0100256 *hint = i;
Damjan Marion37623702016-09-20 11:25:27 +0200257 return (void *) (vui->region_mmap_addr[i] + addr -
258 vui->regions[i].guest_phys_addr);
259 }
Nitin Saxenad3cb7ba2018-02-07 11:32:00 +0000260#elif __aarch64__ && __ARM_NEON
261 uint64x2_t al, ah, rl, rh, r;
262 uint32_t u32 = 0;
Damjan Marion37623702016-09-20 11:25:27 +0200263
Nitin Saxenad3cb7ba2018-02-07 11:32:00 +0000264 al = vdupq_n_u64 (addr + 1);
265 ah = vdupq_n_u64 (addr);
266
267 /*First Iteration */
268 rl = vld1q_u64 (&vui->region_guest_addr_lo[0]);
269 rl = vcgtq_u64 (al, rl);
270 rh = vld1q_u64 (&vui->region_guest_addr_hi[0]);
271 rh = vcgtq_u64 (rh, ah);
272 r = vandq_u64 (rl, rh);
273 u32 |= (vgetq_lane_u8 (vreinterpretq_u8_u64 (r), 0) & 0x1);
274 u32 |= ((vgetq_lane_u8 (vreinterpretq_u8_u64 (r), 8) & 0x1) << 1);
275
276 if (u32)
277 {
Damjan Marion11056002018-05-10 13:40:44 +0200278 i = count_trailing_zeros (u32);
Nitin Saxenad3cb7ba2018-02-07 11:32:00 +0000279 goto vhost_map_guest_mem_done;
280 }
281
282 /*Second Iteration */
283 rl = vld1q_u64 (&vui->region_guest_addr_lo[2]);
284 rl = vcgtq_u64 (al, rl);
285 rh = vld1q_u64 (&vui->region_guest_addr_hi[2]);
286 rh = vcgtq_u64 (rh, ah);
287 r = vandq_u64 (rl, rh);
288 u32 |= ((vgetq_lane_u8 (vreinterpretq_u8_u64 (r), 0) & 0x1) << 2);
289 u32 |= ((vgetq_lane_u8 (vreinterpretq_u8_u64 (r), 8) & 0x1) << 3);
290
291 if (u32)
292 {
Damjan Marion11056002018-05-10 13:40:44 +0200293 i = count_trailing_zeros (u32);
Nitin Saxenad3cb7ba2018-02-07 11:32:00 +0000294 goto vhost_map_guest_mem_done;
295 }
296
297 /*Third Iteration */
298 rl = vld1q_u64 (&vui->region_guest_addr_lo[4]);
299 rl = vcgtq_u64 (al, rl);
300 rh = vld1q_u64 (&vui->region_guest_addr_hi[4]);
301 rh = vcgtq_u64 (rh, ah);
302 r = vandq_u64 (rl, rh);
303 u32 |= ((vgetq_lane_u8 (vreinterpretq_u8_u64 (r), 0) & 0x1) << 4);
304 u32 |= ((vgetq_lane_u8 (vreinterpretq_u8_u64 (r), 8) & 0x1) << 5);
305
306 if (u32)
307 {
Damjan Marion11056002018-05-10 13:40:44 +0200308 i = count_trailing_zeros (u32);
Nitin Saxenad3cb7ba2018-02-07 11:32:00 +0000309 goto vhost_map_guest_mem_done;
310 }
311
312 /*Fourth Iteration */
313 rl = vld1q_u64 (&vui->region_guest_addr_lo[6]);
314 rl = vcgtq_u64 (al, rl);
315 rh = vld1q_u64 (&vui->region_guest_addr_hi[6]);
316 rh = vcgtq_u64 (rh, ah);
317 r = vandq_u64 (rl, rh);
318 u32 |= ((vgetq_lane_u8 (vreinterpretq_u8_u64 (r), 0) & 0x1) << 6);
319 u32 |= ((vgetq_lane_u8 (vreinterpretq_u8_u64 (r), 8) & 0x1) << 7);
320
Damjan Marion11056002018-05-10 13:40:44 +0200321 i = count_trailing_zeros (u32 | (1 << VHOST_MEMORY_MAX_NREGIONS));
Nitin Saxenad3cb7ba2018-02-07 11:32:00 +0000322
323vhost_map_guest_mem_done:
324 if (i < vui->nregions)
325 {
326 *hint = i;
327 return (void *) (vui->region_mmap_addr[i] + addr -
328 vui->regions[i].guest_phys_addr);
329 }
Damjan Marion37623702016-09-20 11:25:27 +0200330#else
Damjan Marion00a9dca2016-08-17 17:05:46 +0200331 for (i = 0; i < vui->nregions; i++)
332 {
333 if ((vui->regions[i].guest_phys_addr <= addr) &&
334 ((vui->regions[i].guest_phys_addr + vui->regions[i].memory_size) >
335 addr))
336 {
Pierre Pfister11f92052016-09-21 08:08:55 +0100337 *hint = i;
Damjan Marion00a9dca2016-08-17 17:05:46 +0200338 return (void *) (vui->region_mmap_addr[i] + addr -
339 vui->regions[i].guest_phys_addr);
340 }
341 }
Damjan Marion37623702016-09-20 11:25:27 +0200342#endif
Damjan Marion00a9dca2016-08-17 17:05:46 +0200343 DBG_VQ ("failed to map guest mem addr %llx", addr);
Pierre Pfister11f92052016-09-21 08:08:55 +0100344 *hint = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700345 return 0;
346}
347
Damjan Marion00a9dca2016-08-17 17:05:46 +0200348static inline void *
349map_user_mem (vhost_user_intf_t * vui, uword addr)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700350{
351 int i;
Damjan Marion00a9dca2016-08-17 17:05:46 +0200352 for (i = 0; i < vui->nregions; i++)
353 {
354 if ((vui->regions[i].userspace_addr <= addr) &&
355 ((vui->regions[i].userspace_addr + vui->regions[i].memory_size) >
356 addr))
357 {
358 return (void *) (vui->region_mmap_addr[i] + addr -
359 vui->regions[i].userspace_addr);
360 }
361 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700362 return 0;
363}
364
Damjan Marion00a9dca2016-08-17 17:05:46 +0200365static long
366get_huge_page_size (int fd)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700367{
368 struct statfs s;
Damjan Marion00a9dca2016-08-17 17:05:46 +0200369 fstatfs (fd, &s);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700370 return s.f_bsize;
371}
372
Damjan Marion00a9dca2016-08-17 17:05:46 +0200373static void
374unmap_all_mem_regions (vhost_user_intf_t * vui)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700375{
Damjan Marion00a9dca2016-08-17 17:05:46 +0200376 int i, r;
377 for (i = 0; i < vui->nregions; i++)
378 {
Haiyang Tan7b0933a2018-01-20 04:48:53 -0500379 if (vui->region_mmap_addr[i] != MAP_FAILED)
Damjan Marion00a9dca2016-08-17 17:05:46 +0200380 {
Ed Warnickecb9cada2015-12-08 15:45:58 -0700381
Damjan Marion00a9dca2016-08-17 17:05:46 +0200382 long page_sz = get_huge_page_size (vui->region_mmap_fd[i]);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700383
Damjan Marion00a9dca2016-08-17 17:05:46 +0200384 ssize_t map_sz = (vui->regions[i].memory_size +
385 vui->regions[i].mmap_offset +
Pierre Pfisterbed54892017-04-20 15:34:00 +0200386 page_sz - 1) & ~(page_sz - 1);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700387
Damjan Marion00a9dca2016-08-17 17:05:46 +0200388 r =
389 munmap (vui->region_mmap_addr[i] - vui->regions[i].mmap_offset,
390 map_sz);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700391
Damjan Marion00a9dca2016-08-17 17:05:46 +0200392 DBG_SOCK
393 ("unmap memory region %d addr 0x%lx len 0x%lx page_sz 0x%x", i,
394 vui->region_mmap_addr[i], map_sz, page_sz);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700395
Haiyang Tan7b0933a2018-01-20 04:48:53 -0500396 vui->region_mmap_addr[i] = MAP_FAILED;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700397
Damjan Marion00a9dca2016-08-17 17:05:46 +0200398 if (r == -1)
399 {
400 clib_warning ("failed to unmap memory region (errno %d)",
401 errno);
402 }
403 close (vui->region_mmap_fd[i]);
404 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700405 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700406 vui->nregions = 0;
407}
408
Pierre Pfistere21c5282016-09-21 08:04:59 +0100409static void
410vhost_user_tx_thread_placement (vhost_user_intf_t * vui)
411{
412 //Let's try to assign one queue to each thread
413 u32 qid = 0;
Damjan Marion586afd72017-04-05 19:18:20 +0200414 u32 thread_index = 0;
Pierre Pfistere21c5282016-09-21 08:04:59 +0100415 vui->use_tx_spinlock = 0;
416 while (1)
417 {
418 for (qid = 0; qid < VHOST_VRING_MAX_N / 2; qid++)
419 {
420 vhost_user_vring_t *rxvq = &vui->vrings[VHOST_VRING_IDX_RX (qid)];
421 if (!rxvq->started || !rxvq->enabled)
422 continue;
423
Damjan Marion586afd72017-04-05 19:18:20 +0200424 vui->per_cpu_tx_qid[thread_index] = qid;
425 thread_index++;
426 if (thread_index == vlib_get_thread_main ()->n_vlib_mains)
Pierre Pfistere21c5282016-09-21 08:04:59 +0100427 return;
428 }
429 //We need to loop, meaning the spinlock has to be used
430 vui->use_tx_spinlock = 1;
Damjan Marion586afd72017-04-05 19:18:20 +0200431 if (thread_index == 0)
Pierre Pfistere21c5282016-09-21 08:04:59 +0100432 {
433 //Could not find a single valid one
Damjan Marion586afd72017-04-05 19:18:20 +0200434 for (thread_index = 0;
435 thread_index < vlib_get_thread_main ()->n_vlib_mains;
436 thread_index++)
Pierre Pfistere21c5282016-09-21 08:04:59 +0100437 {
Damjan Marion586afd72017-04-05 19:18:20 +0200438 vui->per_cpu_tx_qid[thread_index] = 0;
Pierre Pfistere21c5282016-09-21 08:04:59 +0100439 }
440 return;
441 }
442 }
443}
444
Stevenf3b53642017-05-01 14:03:02 -0700445/**
446 * @brief Unassign existing interface/queue to thread mappings and re-assign
447 * new interface/queue to thread mappings
448 */
Pierre Pfistere21c5282016-09-21 08:04:59 +0100449static void
450vhost_user_rx_thread_placement ()
451{
452 vhost_user_main_t *vum = &vhost_user_main;
453 vhost_user_intf_t *vui;
Stevenf3b53642017-05-01 14:03:02 -0700454 vhost_user_vring_t *txvq;
455 vnet_main_t *vnm = vnet_get_main ();
456 u32 qid;
457 int rv;
458 u16 *queue;
Pierre Pfistere21c5282016-09-21 08:04:59 +0100459
Stevenf3b53642017-05-01 14:03:02 -0700460 // Scrap all existing mappings for all interfaces/queues
Pierre Pfisterdbb3c252016-11-22 10:33:34 +0000461 /* *INDENT-OFF* */
462 pool_foreach (vui, vum->vhost_user_interfaces, {
Stevenf3b53642017-05-01 14:03:02 -0700463 vec_foreach (queue, vui->rx_queues)
464 {
465 rv = vnet_hw_interface_unassign_rx_thread (vnm, vui->hw_if_index,
466 *queue);
467 if (rv)
468 clib_warning ("Warning: unable to unassign interface %d, "
469 "queue %d: rc=%d", vui->hw_if_index, *queue, rv);
470 }
471 vec_reset_length (vui->rx_queues);
472 });
473 /* *INDENT-ON* */
474
475 // Create the rx_queues for all interfaces
476 /* *INDENT-OFF* */
477 pool_foreach (vui, vum->vhost_user_interfaces, {
Pierre Pfisterdbb3c252016-11-22 10:33:34 +0000478 for (qid = 0; qid < VHOST_VRING_MAX_N / 2; qid++)
479 {
Stevenf3b53642017-05-01 14:03:02 -0700480 txvq = &vui->vrings[VHOST_VRING_IDX_TX (qid)];
481 if (txvq->started)
482 {
483 if (txvq->mode == VNET_HW_INTERFACE_RX_MODE_UNKNOWN)
484 /* Set polling as the default */
485 txvq->mode = VNET_HW_INTERFACE_RX_MODE_POLLING;
486 vec_add1 (vui->rx_queues, qid);
487 }
Pierre Pfisterdbb3c252016-11-22 10:33:34 +0000488 }
489 });
490 /* *INDENT-ON* */
Steven7312cc72017-03-15 21:18:55 -0700491
Stevenf3b53642017-05-01 14:03:02 -0700492 // Assign new mappings for all interfaces/queues
493 /* *INDENT-OFF* */
494 pool_foreach (vui, vum->vhost_user_interfaces, {
495 vnet_hw_interface_set_input_node (vnm, vui->hw_if_index,
496 vhost_user_input_node.index);
497 vec_foreach (queue, vui->rx_queues)
Steven7312cc72017-03-15 21:18:55 -0700498 {
Stevenf3b53642017-05-01 14:03:02 -0700499 vnet_hw_interface_assign_rx_thread (vnm, vui->hw_if_index, *queue,
500 ~0);
501 txvq = &vui->vrings[VHOST_VRING_IDX_TX (*queue)];
502 rv = vnet_hw_interface_set_rx_mode (vnm, vui->hw_if_index, *queue,
503 txvq->mode);
504 if (rv)
505 clib_warning ("Warning: unable to set rx mode for interface %d, "
506 "queue %d: rc=%d", vui->hw_if_index, *queue, rv);
Steven7312cc72017-03-15 21:18:55 -0700507 }
Stevenf3b53642017-05-01 14:03:02 -0700508 });
509 /* *INDENT-ON* */
Pierre Pfistere21c5282016-09-21 08:04:59 +0100510}
511
512/** @brief Returns whether at least one TX and one RX vring are enabled */
513int
514vhost_user_intf_ready (vhost_user_intf_t * vui)
515{
516 int i, found[2] = { }; //RX + TX
517
518 for (i = 0; i < VHOST_VRING_MAX_N; i++)
519 if (vui->vrings[i].started && vui->vrings[i].enabled)
520 found[i & 1] = 1;
521
522 return found[0] && found[1];
523}
524
525static void
526vhost_user_update_iface_state (vhost_user_intf_t * vui)
527{
528 /* if we have pointers to descriptor table, go up */
529 int is_up = vhost_user_intf_ready (vui);
530 if (is_up != vui->is_up)
531 {
532 DBG_SOCK ("interface %d %s", vui->sw_if_index,
533 is_up ? "ready" : "down");
534 vnet_hw_interface_set_flags (vnet_get_main (), vui->hw_if_index,
535 is_up ? VNET_HW_INTERFACE_FLAG_LINK_UP :
536 0);
537 vui->is_up = is_up;
538 }
539 vhost_user_rx_thread_placement ();
540 vhost_user_tx_thread_placement (vui);
541}
Ed Warnickecb9cada2015-12-08 15:45:58 -0700542
Steven7312cc72017-03-15 21:18:55 -0700543static void
544vhost_user_set_interrupt_pending (vhost_user_intf_t * vui, u32 ifq)
545{
Stevenf3b53642017-05-01 14:03:02 -0700546 u32 qid;
547 vnet_main_t *vnm = vnet_get_main ();
Stevene4dcba82017-04-04 16:56:54 -0700548
549 qid = ifq & 0xff;
Stevenf3b53642017-05-01 14:03:02 -0700550 if ((qid & 1) == 0)
551 /* Only care about the odd number, or TX, virtqueue */
Stevene4dcba82017-04-04 16:56:54 -0700552 return;
Steven7312cc72017-03-15 21:18:55 -0700553
554 if (vhost_user_intf_ready (vui))
Stevenf3b53642017-05-01 14:03:02 -0700555 // qid >> 1 is to convert virtqueue number to vring queue index
556 vnet_device_input_set_interrupt_pending (vnm, vui->hw_if_index, qid >> 1);
Steven7312cc72017-03-15 21:18:55 -0700557}
558
Damjan Marion00a9dca2016-08-17 17:05:46 +0200559static clib_error_t *
Damjan Marion56dd5432017-09-08 19:52:02 +0200560vhost_user_callfd_read_ready (clib_file_t * uf)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700561{
Damjan Marion00a9dca2016-08-17 17:05:46 +0200562 __attribute__ ((unused)) int n;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700563 u8 buff[8];
Steven7312cc72017-03-15 21:18:55 -0700564
Damjan Marion00a9dca2016-08-17 17:05:46 +0200565 n = read (uf->file_descriptor, ((char *) &buff), 8);
Steven7312cc72017-03-15 21:18:55 -0700566
Ed Warnickecb9cada2015-12-08 15:45:58 -0700567 return 0;
568}
569
Pierre Pfistere21c5282016-09-21 08:04:59 +0100570static clib_error_t *
Damjan Marion56dd5432017-09-08 19:52:02 +0200571vhost_user_kickfd_read_ready (clib_file_t * uf)
Pierre Pfistere21c5282016-09-21 08:04:59 +0100572{
573 __attribute__ ((unused)) int n;
574 u8 buff[8];
575 vhost_user_intf_t *vui =
Pierre Pfisterdbb3c252016-11-22 10:33:34 +0000576 pool_elt_at_index (vhost_user_main.vhost_user_interfaces,
577 uf->private_data >> 8);
Pierre Pfistere21c5282016-09-21 08:04:59 +0100578 u32 qid = uf->private_data & 0xff;
Steven7312cc72017-03-15 21:18:55 -0700579
Pierre Pfistere21c5282016-09-21 08:04:59 +0100580 n = read (uf->file_descriptor, ((char *) &buff), 8);
581 DBG_SOCK ("if %d KICK queue %d", uf->private_data >> 8, qid);
Steven7312cc72017-03-15 21:18:55 -0700582 if (!vui->vrings[qid].started ||
583 (vhost_user_intf_ready (vui) != vui->is_up))
584 {
Stevene4dcba82017-04-04 16:56:54 -0700585 vlib_worker_thread_barrier_sync (vlib_get_main ());
Steven7312cc72017-03-15 21:18:55 -0700586 vui->vrings[qid].started = 1;
587 vhost_user_update_iface_state (vui);
Stevene4dcba82017-04-04 16:56:54 -0700588 vlib_worker_thread_barrier_release (vlib_get_main ());
Steven7312cc72017-03-15 21:18:55 -0700589 }
Steven7312cc72017-03-15 21:18:55 -0700590
591 vhost_user_set_interrupt_pending (vui, uf->private_data);
Pierre Pfistere21c5282016-09-21 08:04:59 +0100592 return 0;
593}
594
595/**
596 * @brief Try once to lock the vring
597 * @return 0 on success, non-zero on failure.
598 */
599static inline int
600vhost_user_vring_try_lock (vhost_user_intf_t * vui, u32 qid)
601{
602 return __sync_lock_test_and_set (vui->vring_locks[qid], 1);
603}
604
605/**
606 * @brief Spin until the vring is successfully locked
607 */
608static inline void
609vhost_user_vring_lock (vhost_user_intf_t * vui, u32 qid)
610{
611 while (vhost_user_vring_try_lock (vui, qid))
612 ;
613}
614
615/**
616 * @brief Unlock the vring lock
617 */
618static inline void
619vhost_user_vring_unlock (vhost_user_intf_t * vui, u32 qid)
620{
621 *vui->vring_locks[qid] = 0;
622}
623
624static inline void
625vhost_user_vring_init (vhost_user_intf_t * vui, u32 qid)
626{
627 vhost_user_vring_t *vring = &vui->vrings[qid];
628 memset (vring, 0, sizeof (*vring));
Pierre Pfisterdbb3c252016-11-22 10:33:34 +0000629 vring->kickfd_idx = ~0;
630 vring->callfd_idx = ~0;
Pierre Pfistere21c5282016-09-21 08:04:59 +0100631 vring->errfd = -1;
632
633 /*
634 * We have a bug with some qemu 2.5, and this may be a fix.
635 * Feel like interpretation holy text, but this is from vhost-user.txt.
636 * "
637 * One queue pair is enabled initially. More queues are enabled
638 * dynamically, by sending message VHOST_USER_SET_VRING_ENABLE.
639 * "
640 * Don't know who's right, but this is what DPDK does.
641 */
642 if (qid == 0 || qid == 1)
643 vring->enabled = 1;
644}
645
646static inline void
647vhost_user_vring_close (vhost_user_intf_t * vui, u32 qid)
648{
649 vhost_user_vring_t *vring = &vui->vrings[qid];
Pierre Pfisterdbb3c252016-11-22 10:33:34 +0000650 if (vring->kickfd_idx != ~0)
Pierre Pfistere21c5282016-09-21 08:04:59 +0100651 {
Damjan Marion56dd5432017-09-08 19:52:02 +0200652 clib_file_t *uf = pool_elt_at_index (file_main.file_pool,
Pierre Pfistere21c5282016-09-21 08:04:59 +0100653 vring->kickfd_idx);
Damjan Marion56dd5432017-09-08 19:52:02 +0200654 clib_file_del (&file_main, uf);
Pierre Pfisterdbb3c252016-11-22 10:33:34 +0000655 vring->kickfd_idx = ~0;
Pierre Pfistere21c5282016-09-21 08:04:59 +0100656 }
Pierre Pfisterdbb3c252016-11-22 10:33:34 +0000657 if (vring->callfd_idx != ~0)
Pierre Pfistere21c5282016-09-21 08:04:59 +0100658 {
Damjan Marion56dd5432017-09-08 19:52:02 +0200659 clib_file_t *uf = pool_elt_at_index (file_main.file_pool,
Pierre Pfistere21c5282016-09-21 08:04:59 +0100660 vring->callfd_idx);
Damjan Marion56dd5432017-09-08 19:52:02 +0200661 clib_file_del (&file_main, uf);
Pierre Pfisterdbb3c252016-11-22 10:33:34 +0000662 vring->callfd_idx = ~0;
Pierre Pfistere21c5282016-09-21 08:04:59 +0100663 }
664 if (vring->errfd != -1)
Stevenf6dae052017-03-09 23:49:32 -0800665 {
666 close (vring->errfd);
667 vring->errfd = -1;
668 }
Pierre Pfistere21c5282016-09-21 08:04:59 +0100669 vhost_user_vring_init (vui, qid);
670}
671
Damjan Marion00a9dca2016-08-17 17:05:46 +0200672static inline void
673vhost_user_if_disconnect (vhost_user_intf_t * vui)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700674{
Damjan Marion00a9dca2016-08-17 17:05:46 +0200675 vnet_main_t *vnm = vnet_get_main ();
Ed Warnickecb9cada2015-12-08 15:45:58 -0700676 int q;
677
Damjan Marion00a9dca2016-08-17 17:05:46 +0200678 vnet_hw_interface_set_flags (vnm, vui->hw_if_index, 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700679
Damjan Marion56dd5432017-09-08 19:52:02 +0200680 if (vui->clib_file_index != ~0)
Damjan Marion00a9dca2016-08-17 17:05:46 +0200681 {
Damjan Marion56dd5432017-09-08 19:52:02 +0200682 clib_file_del (&file_main, file_main.file_pool + vui->clib_file_index);
683 vui->clib_file_index = ~0;
Damjan Marion00a9dca2016-08-17 17:05:46 +0200684 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700685
Ed Warnickecb9cada2015-12-08 15:45:58 -0700686 vui->is_up = 0;
Steve Shin44489572016-09-22 12:08:55 -0700687
Pierre Pfistere21c5282016-09-21 08:04:59 +0100688 for (q = 0; q < VHOST_VRING_MAX_N; q++)
689 vhost_user_vring_close (vui, q);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700690
Damjan Marion00a9dca2016-08-17 17:05:46 +0200691 unmap_all_mem_regions (vui);
692 DBG_SOCK ("interface ifindex %d disconnected", vui->sw_if_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700693}
694
Yoann Desmouceaux4667c222016-02-24 22:51:00 +0100695#define VHOST_LOG_PAGE 0x1000
Pierre Pfisterd3eb90e2016-11-29 15:36:14 +0000696static_always_inline void
697vhost_user_log_dirty_pages_2 (vhost_user_intf_t * vui,
698 u64 addr, u64 len, u8 is_host_address)
Yoann Desmouceaux4667c222016-02-24 22:51:00 +0100699{
Damjan Marion00a9dca2016-08-17 17:05:46 +0200700 if (PREDICT_TRUE (vui->log_base_addr == 0
701 || !(vui->features & (1 << FEAT_VHOST_F_LOG_ALL))))
702 {
703 return;
704 }
Pierre Pfisterd3eb90e2016-11-29 15:36:14 +0000705 if (is_host_address)
706 {
Damjan Marion7bee80c2017-04-26 15:32:12 +0200707 addr = pointer_to_uword (map_user_mem (vui, (uword) addr));
Pierre Pfisterd3eb90e2016-11-29 15:36:14 +0000708 }
Damjan Marion00a9dca2016-08-17 17:05:46 +0200709 if (PREDICT_FALSE ((addr + len - 1) / VHOST_LOG_PAGE / 8 >= vui->log_size))
710 {
711 DBG_SOCK ("vhost_user_log_dirty_pages(): out of range\n");
712 return;
713 }
Yoann Desmouceaux4667c222016-02-24 22:51:00 +0100714
Damjan Marion00a9dca2016-08-17 17:05:46 +0200715 CLIB_MEMORY_BARRIER ();
Yoann Desmouceaux4667c222016-02-24 22:51:00 +0100716 u64 page = addr / VHOST_LOG_PAGE;
Damjan Marion00a9dca2016-08-17 17:05:46 +0200717 while (page * VHOST_LOG_PAGE < addr + len)
718 {
719 ((u8 *) vui->log_base_addr)[page / 8] |= 1 << page % 8;
720 page++;
721 }
Yoann Desmouceaux4667c222016-02-24 22:51:00 +0100722}
723
Pierre Pfisterd3eb90e2016-11-29 15:36:14 +0000724static_always_inline void
725vhost_user_log_dirty_pages (vhost_user_intf_t * vui, u64 addr, u64 len)
726{
727 vhost_user_log_dirty_pages_2 (vui, addr, len, 0);
728}
729
Yoann Desmouceaux4667c222016-02-24 22:51:00 +0100730#define vhost_user_log_dirty_ring(vui, vq, member) \
Yoann Desmouceauxfe2da0e2016-03-08 14:54:28 +0100731 if (PREDICT_FALSE(vq->log_used)) { \
Damjan Marion8d281b32016-08-24 14:32:39 +0200732 vhost_user_log_dirty_pages(vui, vq->log_guest_addr + STRUCT_OFFSET_OF(vring_used_t, member), \
Yoann Desmouceauxfe2da0e2016-03-08 14:54:28 +0100733 sizeof(vq->used->member)); \
734 }
Yoann Desmouceaux4667c222016-02-24 22:51:00 +0100735
Damjan Marion00a9dca2016-08-17 17:05:46 +0200736static clib_error_t *
Damjan Marion56dd5432017-09-08 19:52:02 +0200737vhost_user_socket_read (clib_file_t * uf)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700738{
739 int n, i;
740 int fd, number_of_fds = 0;
741 int fds[VHOST_MEMORY_MAX_NREGIONS];
742 vhost_user_msg_t msg;
743 struct msghdr mh;
744 struct iovec iov[1];
Damjan Marion00a9dca2016-08-17 17:05:46 +0200745 vhost_user_main_t *vum = &vhost_user_main;
746 vhost_user_intf_t *vui;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700747 struct cmsghdr *cmsg;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700748 u8 q;
Damjan Marion56dd5432017-09-08 19:52:02 +0200749 clib_file_t template = { 0 };
Damjan Marion00a9dca2016-08-17 17:05:46 +0200750 vnet_main_t *vnm = vnet_get_main ();
Ed Warnickecb9cada2015-12-08 15:45:58 -0700751
Pierre Pfisterdbb3c252016-11-22 10:33:34 +0000752 vui = pool_elt_at_index (vum->vhost_user_interfaces, uf->private_data);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700753
Damjan Marion00a9dca2016-08-17 17:05:46 +0200754 char control[CMSG_SPACE (VHOST_MEMORY_MAX_NREGIONS * sizeof (int))];
Ed Warnickecb9cada2015-12-08 15:45:58 -0700755
Damjan Marion00a9dca2016-08-17 17:05:46 +0200756 memset (&mh, 0, sizeof (mh));
757 memset (control, 0, sizeof (control));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700758
Damjan Marion00a9dca2016-08-17 17:05:46 +0200759 for (i = 0; i < VHOST_MEMORY_MAX_NREGIONS; i++)
Damjan Mariona290d7c2016-08-16 12:37:24 +0200760 fds[i] = -1;
761
Ed Warnickecb9cada2015-12-08 15:45:58 -0700762 /* set the payload */
763 iov[0].iov_base = (void *) &msg;
764 iov[0].iov_len = VHOST_USER_MSG_HDR_SZ;
765
766 mh.msg_iov = iov;
767 mh.msg_iovlen = 1;
768 mh.msg_control = control;
Damjan Marion00a9dca2016-08-17 17:05:46 +0200769 mh.msg_controllen = sizeof (control);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700770
Damjan Marion00a9dca2016-08-17 17:05:46 +0200771 n = recvmsg (uf->file_descriptor, &mh, 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700772
Pierre Pfistere21c5282016-09-21 08:04:59 +0100773 /* Stop workers to avoid end of the world */
774 vlib_worker_thread_barrier_sync (vlib_get_main ());
775
Ed Warnickecb9cada2015-12-08 15:45:58 -0700776 if (n != VHOST_USER_MSG_HDR_SZ)
Pierre Pfistere21c5282016-09-21 08:04:59 +0100777 {
778 if (n == -1)
779 {
780 DBG_SOCK ("recvmsg returned error %d %s", errno, strerror (errno));
781 }
782 else
783 {
784 DBG_SOCK ("n (%d) != VHOST_USER_MSG_HDR_SZ (%d)",
785 n, VHOST_USER_MSG_HDR_SZ);
786 }
787 goto close_socket;
788 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700789
Damjan Marion00a9dca2016-08-17 17:05:46 +0200790 if (mh.msg_flags & MSG_CTRUNC)
791 {
Pierre Pfistere21c5282016-09-21 08:04:59 +0100792 DBG_SOCK ("MSG_CTRUNC is set");
Damjan Marion00a9dca2016-08-17 17:05:46 +0200793 goto close_socket;
794 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700795
Damjan Marion00a9dca2016-08-17 17:05:46 +0200796 cmsg = CMSG_FIRSTHDR (&mh);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700797
798 if (cmsg && (cmsg->cmsg_len > 0) && (cmsg->cmsg_level == SOL_SOCKET) &&
799 (cmsg->cmsg_type == SCM_RIGHTS) &&
Damjan Marion00a9dca2016-08-17 17:05:46 +0200800 (cmsg->cmsg_len - CMSG_LEN (0) <=
801 VHOST_MEMORY_MAX_NREGIONS * sizeof (int)))
802 {
803 number_of_fds = (cmsg->cmsg_len - CMSG_LEN (0)) / sizeof (int);
804 clib_memcpy (fds, CMSG_DATA (cmsg), number_of_fds * sizeof (int));
805 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700806
Damjan Marion00a9dca2016-08-17 17:05:46 +0200807 /* version 1, no reply bit set */
808 if ((msg.flags & 7) != 1)
809 {
810 DBG_SOCK ("malformed message received. closing socket");
811 goto close_socket;
812 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700813
814 {
Pierre Pfistere21c5282016-09-21 08:04:59 +0100815 int rv;
816 rv =
817 read (uf->file_descriptor, ((char *) &msg) + VHOST_USER_MSG_HDR_SZ,
818 msg.size);
819 if (rv < 0)
820 {
821 DBG_SOCK ("read failed %s", strerror (errno));
822 goto close_socket;
823 }
824 else if (rv != msg.size)
825 {
826 DBG_SOCK ("message too short (read %dB should be %dB)", rv, msg.size);
827 goto close_socket;
828 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700829 }
830
Damjan Marion00a9dca2016-08-17 17:05:46 +0200831 switch (msg.request)
832 {
Ed Warnickecb9cada2015-12-08 15:45:58 -0700833 case VHOST_USER_GET_FEATURES:
Ed Warnickecb9cada2015-12-08 15:45:58 -0700834 msg.flags |= 4;
Pierre Pfistere21c5282016-09-21 08:04:59 +0100835 msg.u64 = (1ULL << FEAT_VIRTIO_NET_F_MRG_RXBUF) |
836 (1ULL << FEAT_VIRTIO_NET_F_CTRL_VQ) |
837 (1ULL << FEAT_VIRTIO_F_ANY_LAYOUT) |
838 (1ULL << FEAT_VIRTIO_F_INDIRECT_DESC) |
839 (1ULL << FEAT_VHOST_F_LOG_ALL) |
840 (1ULL << FEAT_VIRTIO_NET_F_GUEST_ANNOUNCE) |
841 (1ULL << FEAT_VIRTIO_NET_F_MQ) |
842 (1ULL << FEAT_VHOST_USER_F_PROTOCOL_FEATURES) |
843 (1ULL << FEAT_VIRTIO_F_VERSION_1);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700844 msg.u64 &= vui->feature_mask;
Damjan Marion00a9dca2016-08-17 17:05:46 +0200845 msg.size = sizeof (msg.u64);
Pierre Pfistere21c5282016-09-21 08:04:59 +0100846 DBG_SOCK ("if %d msg VHOST_USER_GET_FEATURES - reply 0x%016llx",
847 vui->hw_if_index, msg.u64);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700848 break;
849
850 case VHOST_USER_SET_FEATURES:
Damjan Marion00a9dca2016-08-17 17:05:46 +0200851 DBG_SOCK ("if %d msg VHOST_USER_SET_FEATURES features 0x%016llx",
852 vui->hw_if_index, msg.u64);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700853
854 vui->features = msg.u64;
Yoann Desmouceaux4667c222016-02-24 22:51:00 +0100855
Pierre Pfistere21c5282016-09-21 08:04:59 +0100856 if (vui->features &
857 ((1 << FEAT_VIRTIO_NET_F_MRG_RXBUF) |
858 (1ULL << FEAT_VIRTIO_F_VERSION_1)))
Damjan Marion00a9dca2016-08-17 17:05:46 +0200859 vui->virtio_net_hdr_sz = 12;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700860 else
Damjan Marion00a9dca2016-08-17 17:05:46 +0200861 vui->virtio_net_hdr_sz = 10;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700862
Damjan Marion00a9dca2016-08-17 17:05:46 +0200863 vui->is_any_layout =
864 (vui->features & (1 << FEAT_VIRTIO_F_ANY_LAYOUT)) ? 1 : 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700865
866 ASSERT (vui->virtio_net_hdr_sz < VLIB_BUFFER_PRE_DATA_SIZE);
Damjan Marion00a9dca2016-08-17 17:05:46 +0200867 vnet_hw_interface_set_flags (vnm, vui->hw_if_index, 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700868 vui->is_up = 0;
869
Pierre Pfistere21c5282016-09-21 08:04:59 +0100870 /*for (q = 0; q < VHOST_VRING_MAX_N; q++)
871 vhost_user_vring_close(&vui->vrings[q]); */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700872
873 break;
874
875 case VHOST_USER_SET_MEM_TABLE:
Damjan Marion00a9dca2016-08-17 17:05:46 +0200876 DBG_SOCK ("if %d msg VHOST_USER_SET_MEM_TABLE nregions %d",
877 vui->hw_if_index, msg.memory.nregions);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700878
879 if ((msg.memory.nregions < 1) ||
Damjan Marion00a9dca2016-08-17 17:05:46 +0200880 (msg.memory.nregions > VHOST_MEMORY_MAX_NREGIONS))
881 {
Ed Warnickecb9cada2015-12-08 15:45:58 -0700882
Damjan Marion00a9dca2016-08-17 17:05:46 +0200883 DBG_SOCK ("number of mem regions must be between 1 and %i",
884 VHOST_MEMORY_MAX_NREGIONS);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700885
Damjan Marion00a9dca2016-08-17 17:05:46 +0200886 goto close_socket;
887 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700888
Damjan Marion00a9dca2016-08-17 17:05:46 +0200889 if (msg.memory.nregions != number_of_fds)
890 {
891 DBG_SOCK ("each memory region must have FD");
892 goto close_socket;
893 }
894 unmap_all_mem_regions (vui);
895 for (i = 0; i < msg.memory.nregions; i++)
896 {
897 clib_memcpy (&(vui->regions[i]), &msg.memory.regions[i],
898 sizeof (vhost_user_memory_region_t));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700899
Damjan Marion00a9dca2016-08-17 17:05:46 +0200900 long page_sz = get_huge_page_size (fds[i]);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700901
Haiyang Tan7b0933a2018-01-20 04:48:53 -0500902 /* align size to page */
Damjan Marion00a9dca2016-08-17 17:05:46 +0200903 ssize_t map_sz = (vui->regions[i].memory_size +
904 vui->regions[i].mmap_offset +
Pierre Pfisterbed54892017-04-20 15:34:00 +0200905 page_sz - 1) & ~(page_sz - 1);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700906
Damjan Marion00a9dca2016-08-17 17:05:46 +0200907 vui->region_mmap_addr[i] = mmap (0, map_sz, PROT_READ | PROT_WRITE,
908 MAP_SHARED, fds[i], 0);
Damjan Marion37623702016-09-20 11:25:27 +0200909 vui->region_guest_addr_lo[i] = vui->regions[i].guest_phys_addr;
910 vui->region_guest_addr_hi[i] = vui->regions[i].guest_phys_addr +
911 vui->regions[i].memory_size;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700912
Damjan Marion00a9dca2016-08-17 17:05:46 +0200913 DBG_SOCK
914 ("map memory region %d addr 0 len 0x%lx fd %d mapped 0x%lx "
915 "page_sz 0x%x", i, map_sz, fds[i], vui->region_mmap_addr[i],
916 page_sz);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700917
Damjan Marion00a9dca2016-08-17 17:05:46 +0200918 if (vui->region_mmap_addr[i] == MAP_FAILED)
919 {
920 clib_warning ("failed to map memory. errno is %d", errno);
921 goto close_socket;
922 }
923 vui->region_mmap_addr[i] += vui->regions[i].mmap_offset;
924 vui->region_mmap_fd[i] = fds[i];
Haiyang Tan352ecd92018-01-20 04:01:28 -0500925
926 vui->nregions++;
Damjan Marion00a9dca2016-08-17 17:05:46 +0200927 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700928 break;
929
930 case VHOST_USER_SET_VRING_NUM:
Damjan Marion00a9dca2016-08-17 17:05:46 +0200931 DBG_SOCK ("if %d msg VHOST_USER_SET_VRING_NUM idx %d num %d",
932 vui->hw_if_index, msg.state.index, msg.state.num);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700933
Damjan Marion00a9dca2016-08-17 17:05:46 +0200934 if ((msg.state.num > 32768) || /* maximum ring size is 32768 */
935 (msg.state.num == 0) || /* it cannot be zero */
Pierre Pfistere21c5282016-09-21 08:04:59 +0100936 ((msg.state.num - 1) & msg.state.num)) /* must be power of 2 */
Damjan Marion00a9dca2016-08-17 17:05:46 +0200937 goto close_socket;
Steven97878892017-08-29 09:23:26 -0700938 vui->vrings[msg.state.index].qsz_mask = msg.state.num - 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700939 break;
940
941 case VHOST_USER_SET_VRING_ADDR:
Damjan Marion00a9dca2016-08-17 17:05:46 +0200942 DBG_SOCK ("if %d msg VHOST_USER_SET_VRING_ADDR idx %d",
943 vui->hw_if_index, msg.state.index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700944
Pierre Pfistere21c5282016-09-21 08:04:59 +0100945 if (msg.state.index >= VHOST_VRING_MAX_N)
946 {
947 DBG_SOCK ("invalid vring index VHOST_USER_SET_VRING_ADDR:"
948 " %d >= %d", msg.state.index, VHOST_VRING_MAX_N);
949 goto close_socket;
950 }
951
952 if (msg.size < sizeof (msg.addr))
953 {
954 DBG_SOCK ("vhost message is too short (%d < %d)",
955 msg.size, sizeof (msg.addr));
956 goto close_socket;
957 }
958
Damjan Marion00a9dca2016-08-17 17:05:46 +0200959 vui->vrings[msg.state.index].desc = (vring_desc_t *)
960 map_user_mem (vui, msg.addr.desc_user_addr);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700961 vui->vrings[msg.state.index].used = (vring_used_t *)
Damjan Marion00a9dca2016-08-17 17:05:46 +0200962 map_user_mem (vui, msg.addr.used_user_addr);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700963 vui->vrings[msg.state.index].avail = (vring_avail_t *)
Damjan Marion00a9dca2016-08-17 17:05:46 +0200964 map_user_mem (vui, msg.addr.avail_user_addr);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700965
966 if ((vui->vrings[msg.state.index].desc == NULL) ||
Damjan Marion00a9dca2016-08-17 17:05:46 +0200967 (vui->vrings[msg.state.index].used == NULL) ||
968 (vui->vrings[msg.state.index].avail == NULL))
969 {
970 DBG_SOCK ("failed to map user memory for hw_if_index %d",
971 vui->hw_if_index);
972 goto close_socket;
973 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700974
Yoann Desmouceaux4667c222016-02-24 22:51:00 +0100975 vui->vrings[msg.state.index].log_guest_addr = msg.addr.log_guest_addr;
Yoann Desmouceauxfe2da0e2016-03-08 14:54:28 +0100976 vui->vrings[msg.state.index].log_used =
Damjan Marion00a9dca2016-08-17 17:05:46 +0200977 (msg.addr.flags & (1 << VHOST_VRING_F_LOG)) ? 1 : 0;
Yoann Desmouceaux4667c222016-02-24 22:51:00 +0100978
979 /* Spec says: If VHOST_USER_F_PROTOCOL_FEATURES has not been negotiated,
Damjan Marion00a9dca2016-08-17 17:05:46 +0200980 the ring is initialized in an enabled state. */
Damjan Marion00a9dca2016-08-17 17:05:46 +0200981 if (!(vui->features & (1 << FEAT_VHOST_USER_F_PROTOCOL_FEATURES)))
982 {
983 vui->vrings[msg.state.index].enabled = 1;
984 }
Yoann Desmouceaux4667c222016-02-24 22:51:00 +0100985
Ed Warnickecb9cada2015-12-08 15:45:58 -0700986 vui->vrings[msg.state.index].last_used_idx =
Damjan Marion10eb1ea2016-10-13 10:02:19 +0200987 vui->vrings[msg.state.index].last_avail_idx =
Damjan Marion00a9dca2016-08-17 17:05:46 +0200988 vui->vrings[msg.state.index].used->idx;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700989
Stevenf3b53642017-05-01 14:03:02 -0700990 /* tell driver that we don't want interrupts */
991 vui->vrings[msg.state.index].used->flags = VRING_USED_F_NO_NOTIFY;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700992 break;
993
994 case VHOST_USER_SET_OWNER:
Damjan Marion00a9dca2016-08-17 17:05:46 +0200995 DBG_SOCK ("if %d msg VHOST_USER_SET_OWNER", vui->hw_if_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700996 break;
997
998 case VHOST_USER_RESET_OWNER:
Damjan Marion00a9dca2016-08-17 17:05:46 +0200999 DBG_SOCK ("if %d msg VHOST_USER_RESET_OWNER", vui->hw_if_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001000 break;
1001
1002 case VHOST_USER_SET_VRING_CALL:
Steven388e51a2017-06-01 12:49:23 -07001003 DBG_SOCK ("if %d msg VHOST_USER_SET_VRING_CALL %d",
Damjan Marion00a9dca2016-08-17 17:05:46 +02001004 vui->hw_if_index, msg.u64);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001005
1006 q = (u8) (msg.u64 & 0xFF);
1007
Pierre Pfistere21c5282016-09-21 08:04:59 +01001008 /* if there is old fd, delete and close it */
Pierre Pfisterdbb3c252016-11-22 10:33:34 +00001009 if (vui->vrings[q].callfd_idx != ~0)
Pierre Pfistere21c5282016-09-21 08:04:59 +01001010 {
Damjan Marion56dd5432017-09-08 19:52:02 +02001011 clib_file_t *uf = pool_elt_at_index (file_main.file_pool,
Pierre Pfistere21c5282016-09-21 08:04:59 +01001012 vui->vrings[q].callfd_idx);
Damjan Marion56dd5432017-09-08 19:52:02 +02001013 clib_file_del (&file_main, uf);
Pierre Pfisterdbb3c252016-11-22 10:33:34 +00001014 vui->vrings[q].callfd_idx = ~0;
Pierre Pfistere21c5282016-09-21 08:04:59 +01001015 }
1016
Steven49a04b92017-07-29 08:56:08 -07001017 if (!(msg.u64 & VHOST_USER_VRING_NOFD_MASK))
Damjan Marion00a9dca2016-08-17 17:05:46 +02001018 {
1019 if (number_of_fds != 1)
Damjan Marion00a9dca2016-08-17 17:05:46 +02001020 {
Pierre Pfistere21c5282016-09-21 08:04:59 +01001021 DBG_SOCK ("More than one fd received !");
1022 goto close_socket;
Damjan Marion00a9dca2016-08-17 17:05:46 +02001023 }
Pierre Pfistere21c5282016-09-21 08:04:59 +01001024
Damjan Marion00a9dca2016-08-17 17:05:46 +02001025 template.read_function = vhost_user_callfd_read_ready;
1026 template.file_descriptor = fds[0];
Pierre Pfisterdbb3c252016-11-22 10:33:34 +00001027 template.private_data =
1028 ((vui - vhost_user_main.vhost_user_interfaces) << 8) + q;
Damjan Marion56dd5432017-09-08 19:52:02 +02001029 vui->vrings[q].callfd_idx = clib_file_add (&file_main, &template);
Damjan Marion00a9dca2016-08-17 17:05:46 +02001030 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001031 else
Pierre Pfisterdbb3c252016-11-22 10:33:34 +00001032 vui->vrings[q].callfd_idx = ~0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001033 break;
1034
1035 case VHOST_USER_SET_VRING_KICK:
Steven388e51a2017-06-01 12:49:23 -07001036 DBG_SOCK ("if %d msg VHOST_USER_SET_VRING_KICK %d",
Damjan Marion00a9dca2016-08-17 17:05:46 +02001037 vui->hw_if_index, msg.u64);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001038
1039 q = (u8) (msg.u64 & 0xFF);
1040
Pierre Pfisterdbb3c252016-11-22 10:33:34 +00001041 if (vui->vrings[q].kickfd_idx != ~0)
Pierre Pfistere21c5282016-09-21 08:04:59 +01001042 {
Damjan Marion56dd5432017-09-08 19:52:02 +02001043 clib_file_t *uf = pool_elt_at_index (file_main.file_pool,
Pierre Pfisterdbb3c252016-11-22 10:33:34 +00001044 vui->vrings[q].kickfd_idx);
Damjan Marion56dd5432017-09-08 19:52:02 +02001045 clib_file_del (&file_main, uf);
Pierre Pfisterdbb3c252016-11-22 10:33:34 +00001046 vui->vrings[q].kickfd_idx = ~0;
Pierre Pfistere21c5282016-09-21 08:04:59 +01001047 }
1048
Steven49a04b92017-07-29 08:56:08 -07001049 if (!(msg.u64 & VHOST_USER_VRING_NOFD_MASK))
Damjan Marion00a9dca2016-08-17 17:05:46 +02001050 {
1051 if (number_of_fds != 1)
Pierre Pfistere21c5282016-09-21 08:04:59 +01001052 {
1053 DBG_SOCK ("More than one fd received !");
1054 goto close_socket;
1055 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001056
Pierre Pfistere21c5282016-09-21 08:04:59 +01001057 template.read_function = vhost_user_kickfd_read_ready;
1058 template.file_descriptor = fds[0];
1059 template.private_data =
Pierre Pfisterdbb3c252016-11-22 10:33:34 +00001060 (((uword) (vui - vhost_user_main.vhost_user_interfaces)) << 8) +
1061 q;
Damjan Marion56dd5432017-09-08 19:52:02 +02001062 vui->vrings[q].kickfd_idx = clib_file_add (&file_main, &template);
Damjan Marion00a9dca2016-08-17 17:05:46 +02001063 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001064 else
Pierre Pfistere21c5282016-09-21 08:04:59 +01001065 {
Pierre Pfisterdbb3c252016-11-22 10:33:34 +00001066 //When no kickfd is set, the queue is initialized as started
1067 vui->vrings[q].kickfd_idx = ~0;
Pierre Pfistere21c5282016-09-21 08:04:59 +01001068 vui->vrings[q].started = 1;
1069 }
1070
Ed Warnickecb9cada2015-12-08 15:45:58 -07001071 break;
1072
1073 case VHOST_USER_SET_VRING_ERR:
Steven388e51a2017-06-01 12:49:23 -07001074 DBG_SOCK ("if %d msg VHOST_USER_SET_VRING_ERR %d",
Damjan Marion00a9dca2016-08-17 17:05:46 +02001075 vui->hw_if_index, msg.u64);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001076
1077 q = (u8) (msg.u64 & 0xFF);
1078
Pierre Pfistere21c5282016-09-21 08:04:59 +01001079 if (vui->vrings[q].errfd != -1)
1080 close (vui->vrings[q].errfd);
1081
Steven49a04b92017-07-29 08:56:08 -07001082 if (!(msg.u64 & VHOST_USER_VRING_NOFD_MASK))
Damjan Marion00a9dca2016-08-17 17:05:46 +02001083 {
1084 if (number_of_fds != 1)
1085 goto close_socket;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001086
Pierre Pfistere21c5282016-09-21 08:04:59 +01001087 vui->vrings[q].errfd = fds[0];
Damjan Marion00a9dca2016-08-17 17:05:46 +02001088 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001089 else
Pierre Pfistere21c5282016-09-21 08:04:59 +01001090 vui->vrings[q].errfd = -1;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001091
Ed Warnickecb9cada2015-12-08 15:45:58 -07001092 break;
1093
1094 case VHOST_USER_SET_VRING_BASE:
Damjan Marion00a9dca2016-08-17 17:05:46 +02001095 DBG_SOCK ("if %d msg VHOST_USER_SET_VRING_BASE idx %d num %d",
1096 vui->hw_if_index, msg.state.index, msg.state.num);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001097
1098 vui->vrings[msg.state.index].last_avail_idx = msg.state.num;
1099 break;
1100
1101 case VHOST_USER_GET_VRING_BASE:
Pierre Pfistere21c5282016-09-21 08:04:59 +01001102 if (msg.state.index >= VHOST_VRING_MAX_N)
1103 {
1104 DBG_SOCK ("invalid vring index VHOST_USER_GET_VRING_BASE:"
1105 " %d >= %d", msg.state.index, VHOST_VRING_MAX_N);
1106 goto close_socket;
1107 }
1108
Stevenf6dae052017-03-09 23:49:32 -08001109 /*
1110 * Copy last_avail_idx from the vring before closing it because
1111 * closing the vring also initializes the vring last_avail_idx
1112 */
Yoann Desmouceaux4667c222016-02-24 22:51:00 +01001113 msg.state.num = vui->vrings[msg.state.index].last_avail_idx;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001114 msg.flags |= 4;
Damjan Marion00a9dca2016-08-17 17:05:46 +02001115 msg.size = sizeof (msg.state);
Stevenf6dae052017-03-09 23:49:32 -08001116
1117 /* Spec says: Client must [...] stop ring upon receiving VHOST_USER_GET_VRING_BASE. */
1118 vhost_user_vring_close (vui, msg.state.index);
Steven388e51a2017-06-01 12:49:23 -07001119 DBG_SOCK ("if %d msg VHOST_USER_GET_VRING_BASE idx %d num %d",
1120 vui->hw_if_index, msg.state.index, msg.state.num);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001121 break;
1122
1123 case VHOST_USER_NONE:
Damjan Marion00a9dca2016-08-17 17:05:46 +02001124 DBG_SOCK ("if %d msg VHOST_USER_NONE", vui->hw_if_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001125
1126 break;
1127
1128 case VHOST_USER_SET_LOG_BASE:
Damjan Marion00a9dca2016-08-17 17:05:46 +02001129 {
1130 DBG_SOCK ("if %d msg VHOST_USER_SET_LOG_BASE", vui->hw_if_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001131
Damjan Marion00a9dca2016-08-17 17:05:46 +02001132 if (msg.size != sizeof (msg.log))
1133 {
1134 DBG_SOCK
1135 ("invalid msg size for VHOST_USER_SET_LOG_BASE: %d instead of %d",
1136 msg.size, sizeof (msg.log));
1137 goto close_socket;
1138 }
1139
1140 if (!
1141 (vui->protocol_features & (1 << VHOST_USER_PROTOCOL_F_LOG_SHMFD)))
1142 {
1143 DBG_SOCK
1144 ("VHOST_USER_PROTOCOL_F_LOG_SHMFD not set but VHOST_USER_SET_LOG_BASE received");
1145 goto close_socket;
1146 }
1147
1148 fd = fds[0];
Haiyang Tan7b0933a2018-01-20 04:48:53 -05001149 /* align size to page */
Damjan Marion00a9dca2016-08-17 17:05:46 +02001150 long page_sz = get_huge_page_size (fd);
1151 ssize_t map_sz =
Pierre Pfisterbed54892017-04-20 15:34:00 +02001152 (msg.log.size + msg.log.offset + page_sz - 1) & ~(page_sz - 1);
Damjan Marion00a9dca2016-08-17 17:05:46 +02001153
1154 vui->log_base_addr = mmap (0, map_sz, PROT_READ | PROT_WRITE,
1155 MAP_SHARED, fd, 0);
1156
1157 DBG_SOCK
1158 ("map log region addr 0 len 0x%lx off 0x%lx fd %d mapped 0x%lx",
1159 map_sz, msg.log.offset, fd, vui->log_base_addr);
1160
1161 if (vui->log_base_addr == MAP_FAILED)
1162 {
1163 clib_warning ("failed to map memory. errno is %d", errno);
1164 goto close_socket;
1165 }
1166
1167 vui->log_base_addr += msg.log.offset;
1168 vui->log_size = msg.log.size;
1169
1170 msg.flags |= 4;
1171 msg.size = sizeof (msg.u64);
1172
1173 break;
Yoann Desmouceaux4667c222016-02-24 22:51:00 +01001174 }
1175
Ed Warnickecb9cada2015-12-08 15:45:58 -07001176 case VHOST_USER_SET_LOG_FD:
Damjan Marion00a9dca2016-08-17 17:05:46 +02001177 DBG_SOCK ("if %d msg VHOST_USER_SET_LOG_FD", vui->hw_if_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001178
1179 break;
1180
Yoann Desmouceaux4667c222016-02-24 22:51:00 +01001181 case VHOST_USER_GET_PROTOCOL_FEATURES:
Yoann Desmouceaux4667c222016-02-24 22:51:00 +01001182 msg.flags |= 4;
Pierre Pfistere21c5282016-09-21 08:04:59 +01001183 msg.u64 = (1 << VHOST_USER_PROTOCOL_F_LOG_SHMFD) |
1184 (1 << VHOST_USER_PROTOCOL_F_MQ);
Damjan Marion00a9dca2016-08-17 17:05:46 +02001185 msg.size = sizeof (msg.u64);
Steven388e51a2017-06-01 12:49:23 -07001186 DBG_SOCK
1187 ("if %d msg VHOST_USER_GET_PROTOCOL_FEATURES - reply 0x%016llx",
1188 vui->hw_if_index, msg.u64);
Yoann Desmouceaux4667c222016-02-24 22:51:00 +01001189 break;
1190
1191 case VHOST_USER_SET_PROTOCOL_FEATURES:
Steven388e51a2017-06-01 12:49:23 -07001192 DBG_SOCK
1193 ("if %d msg VHOST_USER_SET_PROTOCOL_FEATURES features 0x%016llx",
1194 vui->hw_if_index, msg.u64);
Yoann Desmouceaux4667c222016-02-24 22:51:00 +01001195
1196 vui->protocol_features = msg.u64;
1197
1198 break;
1199
Pierre Pfistere21c5282016-09-21 08:04:59 +01001200 case VHOST_USER_GET_QUEUE_NUM:
Pierre Pfistere21c5282016-09-21 08:04:59 +01001201 msg.flags |= 4;
1202 msg.u64 = VHOST_VRING_MAX_N;
1203 msg.size = sizeof (msg.u64);
Steven388e51a2017-06-01 12:49:23 -07001204 DBG_SOCK ("if %d msg VHOST_USER_GET_QUEUE_NUM - reply %d",
1205 vui->hw_if_index, msg.u64);
Pierre Pfistere21c5282016-09-21 08:04:59 +01001206 break;
1207
Yoann Desmouceaux4667c222016-02-24 22:51:00 +01001208 case VHOST_USER_SET_VRING_ENABLE:
Pierre Pfistere21c5282016-09-21 08:04:59 +01001209 DBG_SOCK ("if %d VHOST_USER_SET_VRING_ENABLE: %s queue %d",
1210 vui->hw_if_index, msg.state.num ? "enable" : "disable",
1211 msg.state.index);
1212 if (msg.state.index >= VHOST_VRING_MAX_N)
1213 {
1214 DBG_SOCK ("invalid vring index VHOST_USER_SET_VRING_ENABLE:"
1215 " %d >= %d", msg.state.index, VHOST_VRING_MAX_N);
1216 goto close_socket;
1217 }
1218
Yoann Desmouceaux4667c222016-02-24 22:51:00 +01001219 vui->vrings[msg.state.index].enabled = msg.state.num;
1220 break;
1221
Ed Warnickecb9cada2015-12-08 15:45:58 -07001222 default:
Damjan Marion00a9dca2016-08-17 17:05:46 +02001223 DBG_SOCK ("unknown vhost-user message %d received. closing socket",
1224 msg.request);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001225 goto close_socket;
Damjan Marion00a9dca2016-08-17 17:05:46 +02001226 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001227
Ed Warnickecb9cada2015-12-08 15:45:58 -07001228 /* if we need to reply */
1229 if (msg.flags & 4)
Damjan Marion00a9dca2016-08-17 17:05:46 +02001230 {
1231 n =
1232 send (uf->file_descriptor, &msg, VHOST_USER_MSG_HDR_SZ + msg.size, 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001233 if (n != (msg.size + VHOST_USER_MSG_HDR_SZ))
Pierre Pfistere21c5282016-09-21 08:04:59 +01001234 {
1235 DBG_SOCK ("could not send message response");
1236 goto close_socket;
1237 }
Damjan Marion00a9dca2016-08-17 17:05:46 +02001238 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001239
Pierre Pfistere21c5282016-09-21 08:04:59 +01001240 vhost_user_update_iface_state (vui);
1241 vlib_worker_thread_barrier_release (vlib_get_main ());
Ed Warnickecb9cada2015-12-08 15:45:58 -07001242 return 0;
1243
1244close_socket:
Damjan Marion00a9dca2016-08-17 17:05:46 +02001245 vhost_user_if_disconnect (vui);
Pierre Pfistere21c5282016-09-21 08:04:59 +01001246 vhost_user_update_iface_state (vui);
1247 vlib_worker_thread_barrier_release (vlib_get_main ());
Ed Warnickecb9cada2015-12-08 15:45:58 -07001248 return 0;
1249}
1250
Damjan Marion00a9dca2016-08-17 17:05:46 +02001251static clib_error_t *
Damjan Marion56dd5432017-09-08 19:52:02 +02001252vhost_user_socket_error (clib_file_t * uf)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001253{
Pierre Pfistere21c5282016-09-21 08:04:59 +01001254 vlib_main_t *vm = vlib_get_main ();
Damjan Marion00a9dca2016-08-17 17:05:46 +02001255 vhost_user_main_t *vum = &vhost_user_main;
Pierre Pfisterdbb3c252016-11-22 10:33:34 +00001256 vhost_user_intf_t *vui =
1257 pool_elt_at_index (vum->vhost_user_interfaces, uf->private_data);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001258
Pierre Pfistere21c5282016-09-21 08:04:59 +01001259 DBG_SOCK ("socket error on if %d", vui->sw_if_index);
1260 vlib_worker_thread_barrier_sync (vm);
Damjan Marion00a9dca2016-08-17 17:05:46 +02001261 vhost_user_if_disconnect (vui);
Pierre Pfistere21c5282016-09-21 08:04:59 +01001262 vhost_user_rx_thread_placement ();
1263 vlib_worker_thread_barrier_release (vm);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001264 return 0;
1265}
1266
Damjan Marion00a9dca2016-08-17 17:05:46 +02001267static clib_error_t *
Damjan Marion56dd5432017-09-08 19:52:02 +02001268vhost_user_socksvr_accept_ready (clib_file_t * uf)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001269{
1270 int client_fd, client_len;
1271 struct sockaddr_un client;
Damjan Marion56dd5432017-09-08 19:52:02 +02001272 clib_file_t template = { 0 };
Damjan Marion00a9dca2016-08-17 17:05:46 +02001273 vhost_user_main_t *vum = &vhost_user_main;
1274 vhost_user_intf_t *vui;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001275
Pierre Pfisterdbb3c252016-11-22 10:33:34 +00001276 vui = pool_elt_at_index (vum->vhost_user_interfaces, uf->private_data);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001277
Damjan Marion00a9dca2016-08-17 17:05:46 +02001278 client_len = sizeof (client);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001279 client_fd = accept (uf->file_descriptor,
Damjan Marion00a9dca2016-08-17 17:05:46 +02001280 (struct sockaddr *) &client,
1281 (socklen_t *) & client_len);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001282
1283 if (client_fd < 0)
Damjan Marion00a9dca2016-08-17 17:05:46 +02001284 return clib_error_return_unix (0, "accept");
Ed Warnickecb9cada2015-12-08 15:45:58 -07001285
Haiyang Tan2ae51352018-02-06 11:16:48 -05001286 if (vui->clib_file_index != ~0)
1287 {
1288 DBG_SOCK ("Close client socket for vhost interface %d, fd %d",
1289 vui->sw_if_index, UNIX_GET_FD (vui->clib_file_index));
1290 clib_file_del (&file_main, file_main.file_pool + vui->clib_file_index);
1291 }
1292
1293 DBG_SOCK ("New client socket for vhost interface %d, fd %d",
1294 vui->sw_if_index, client_fd);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001295 template.read_function = vhost_user_socket_read;
1296 template.error_function = vhost_user_socket_error;
1297 template.file_descriptor = client_fd;
Pierre Pfisterdbb3c252016-11-22 10:33:34 +00001298 template.private_data = vui - vhost_user_main.vhost_user_interfaces;
Damjan Marion56dd5432017-09-08 19:52:02 +02001299 vui->clib_file_index = clib_file_add (&file_main, &template);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001300 return 0;
1301}
1302
1303static clib_error_t *
1304vhost_user_init (vlib_main_t * vm)
1305{
Damjan Marion00a9dca2016-08-17 17:05:46 +02001306 clib_error_t *error;
1307 vhost_user_main_t *vum = &vhost_user_main;
1308 vlib_thread_main_t *tm = vlib_get_thread_main ();
Ed Warnickecb9cada2015-12-08 15:45:58 -07001309
1310 error = vlib_call_init_function (vm, ip4_init);
1311 if (error)
1312 return error;
1313
Ed Warnickecb9cada2015-12-08 15:45:58 -07001314 vum->coalesce_frames = 32;
1315 vum->coalesce_time = 1e-3;
1316
Pierre Pfistere21c5282016-09-21 08:04:59 +01001317 vec_validate (vum->cpus, tm->n_vlib_mains - 1);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001318
Pierre Pfisterd3eb90e2016-11-29 15:36:14 +00001319 vhost_cpu_t *cpu;
1320 vec_foreach (cpu, vum->cpus)
1321 {
1322 /* This is actually not necessary as validate already zeroes it
1323 * Just keeping the loop here for later because I am lazy. */
1324 cpu->rx_buffers_len = 0;
1325 }
1326
Pierre Pfisterdbb3c252016-11-22 10:33:34 +00001327 vum->random = random_default_seed ();
1328
Steven5445f5f2017-04-25 16:16:00 -07001329 mhash_init_c_string (&vum->if_index_by_sock_name, sizeof (uword));
1330
Ed Warnickecb9cada2015-12-08 15:45:58 -07001331 return 0;
1332}
1333
1334VLIB_INIT_FUNCTION (vhost_user_init);
1335
Damjan Marion00a9dca2016-08-17 17:05:46 +02001336static u8 *
Pierre Pfister116ea4b2016-11-08 15:49:28 +00001337format_vhost_trace (u8 * s, va_list * va)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001338{
1339 CLIB_UNUSED (vlib_main_t * vm) = va_arg (*va, vlib_main_t *);
1340 CLIB_UNUSED (vlib_node_t * node) = va_arg (*va, vlib_node_t *);
Damjan Marion00a9dca2016-08-17 17:05:46 +02001341 CLIB_UNUSED (vnet_main_t * vnm) = vnet_get_main ();
1342 vhost_user_main_t *vum = &vhost_user_main;
Pierre Pfister116ea4b2016-11-08 15:49:28 +00001343 vhost_trace_t *t = va_arg (*va, vhost_trace_t *);
Pierre Pfisterdbb3c252016-11-22 10:33:34 +00001344 vhost_user_intf_t *vui = pool_elt_at_index (vum->vhost_user_interfaces,
1345 t->device_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001346
Damjan Marion00a9dca2016-08-17 17:05:46 +02001347 vnet_sw_interface_t *sw = vnet_get_sw_interface (vnm, vui->sw_if_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001348
Christophe Fontained3c008d2017-10-02 18:10:54 +02001349 u32 indent = format_get_indent (s);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001350
Pierre Pfister116ea4b2016-11-08 15:49:28 +00001351 s = format (s, "%U %U queue %d\n", format_white_space, indent,
Pierre Pfistere21c5282016-09-21 08:04:59 +01001352 format_vnet_sw_interface_name, vnm, sw, t->qid);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001353
Pierre Pfister116ea4b2016-11-08 15:49:28 +00001354 s = format (s, "%U virtio flags:\n", format_white_space, indent);
1355#define _(n,i,st) \
1356 if (t->virtio_ring_flags & (1 << VIRTIO_TRACE_F_##n)) \
1357 s = format (s, "%U %s %s\n", format_white_space, indent, #n, st);
1358 foreach_virtio_trace_flags
1359#undef _
1360 s = format (s, "%U virtio_net_hdr first_desc_len %u\n",
1361 format_white_space, indent, t->first_desc_len);
1362
1363 s = format (s, "%U flags 0x%02x gso_type %u\n",
Damjan Marion00a9dca2016-08-17 17:05:46 +02001364 format_white_space, indent,
Pierre Pfister116ea4b2016-11-08 15:49:28 +00001365 t->hdr.hdr.flags, t->hdr.hdr.gso_type);
1366
1367 if (vui->virtio_net_hdr_sz == 12)
1368 s = format (s, "%U num_buff %u",
1369 format_white_space, indent, t->hdr.num_buffers);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001370
1371 return s;
1372}
1373
Damjan Marion00a9dca2016-08-17 17:05:46 +02001374void
Pierre Pfister116ea4b2016-11-08 15:49:28 +00001375vhost_user_rx_trace (vhost_trace_t * t,
1376 vhost_user_intf_t * vui, u16 qid,
1377 vlib_buffer_t * b, vhost_user_vring_t * txvq)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001378{
Damjan Marion00a9dca2016-08-17 17:05:46 +02001379 vhost_user_main_t *vum = &vhost_user_main;
Pierre Pfister116ea4b2016-11-08 15:49:28 +00001380 u32 last_avail_idx = txvq->last_avail_idx;
Steven97878892017-08-29 09:23:26 -07001381 u32 desc_current = txvq->avail->ring[last_avail_idx & txvq->qsz_mask];
Pierre Pfister116ea4b2016-11-08 15:49:28 +00001382 vring_desc_t *hdr_desc = 0;
1383 virtio_net_hdr_mrg_rxbuf_t *hdr;
1384 u32 hint = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001385
Pierre Pfister116ea4b2016-11-08 15:49:28 +00001386 memset (t, 0, sizeof (*t));
1387 t->device_index = vui - vum->vhost_user_interfaces;
1388 t->qid = qid;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001389
Pierre Pfister116ea4b2016-11-08 15:49:28 +00001390 hdr_desc = &txvq->desc[desc_current];
1391 if (txvq->desc[desc_current].flags & VIRTQ_DESC_F_INDIRECT)
Damjan Marion00a9dca2016-08-17 17:05:46 +02001392 {
Pierre Pfister116ea4b2016-11-08 15:49:28 +00001393 t->virtio_ring_flags |= 1 << VIRTIO_TRACE_F_INDIRECT;
Pierre Pfisterd3eb90e2016-11-29 15:36:14 +00001394 /* Header is the first here */
Pierre Pfister116ea4b2016-11-08 15:49:28 +00001395 hdr_desc = map_guest_mem (vui, txvq->desc[desc_current].addr, &hint);
1396 }
1397 if (txvq->desc[desc_current].flags & VIRTQ_DESC_F_NEXT)
1398 {
1399 t->virtio_ring_flags |= 1 << VIRTIO_TRACE_F_SIMPLE_CHAINED;
1400 }
1401 if (!(txvq->desc[desc_current].flags & VIRTQ_DESC_F_NEXT) &&
1402 !(txvq->desc[desc_current].flags & VIRTQ_DESC_F_INDIRECT))
1403 {
1404 t->virtio_ring_flags |= 1 << VIRTIO_TRACE_F_SINGLE_DESC;
1405 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001406
Pierre Pfister116ea4b2016-11-08 15:49:28 +00001407 t->first_desc_len = hdr_desc ? hdr_desc->len : 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001408
Pierre Pfister116ea4b2016-11-08 15:49:28 +00001409 if (!hdr_desc || !(hdr = map_guest_mem (vui, hdr_desc->addr, &hint)))
1410 {
1411 t->virtio_ring_flags |= 1 << VIRTIO_TRACE_F_MAP_ERROR;
1412 }
1413 else
1414 {
1415 u32 len = vui->virtio_net_hdr_sz;
1416 memcpy (&t->hdr, hdr, len > hdr_desc->len ? hdr_desc->len : len);
Damjan Marion00a9dca2016-08-17 17:05:46 +02001417 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001418}
1419
Damjan Marion00a9dca2016-08-17 17:05:46 +02001420static inline void
1421vhost_user_send_call (vlib_main_t * vm, vhost_user_vring_t * vq)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001422{
Damjan Marion00a9dca2016-08-17 17:05:46 +02001423 vhost_user_main_t *vum = &vhost_user_main;
1424 u64 x = 1;
Pierre Pfisterdbb3c252016-11-22 10:33:34 +00001425 int fd = UNIX_GET_FD (vq->callfd_idx);
Stevenf3b53642017-05-01 14:03:02 -07001426 int rv;
1427
Pierre Pfisterdbb3c252016-11-22 10:33:34 +00001428 rv = write (fd, &x, sizeof (x));
Stevenf3b53642017-05-01 14:03:02 -07001429 if (rv <= 0)
1430 {
1431 clib_unix_warning
1432 ("Error: Could not write to unix socket for callfd %d", fd);
1433 return;
1434 }
1435
Damjan Marion00a9dca2016-08-17 17:05:46 +02001436 vq->n_since_last_int = 0;
1437 vq->int_deadline = vlib_time_now (vm) + vum->coalesce_time;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001438}
1439
Pierre Pfisterd3eb90e2016-11-29 15:36:14 +00001440static_always_inline u32
1441vhost_user_input_copy (vhost_user_intf_t * vui, vhost_copy_t * cpy,
1442 u16 copy_len, u32 * map_hint)
1443{
1444 void *src0, *src1, *src2, *src3;
1445 if (PREDICT_TRUE (copy_len >= 4))
1446 {
1447 if (PREDICT_FALSE (!(src2 = map_guest_mem (vui, cpy[0].src, map_hint))))
1448 return 1;
1449 if (PREDICT_FALSE (!(src3 = map_guest_mem (vui, cpy[1].src, map_hint))))
1450 return 1;
1451
1452 while (PREDICT_TRUE (copy_len >= 4))
1453 {
1454 src0 = src2;
1455 src1 = src3;
1456
1457 if (PREDICT_FALSE
1458 (!(src2 = map_guest_mem (vui, cpy[2].src, map_hint))))
1459 return 1;
1460 if (PREDICT_FALSE
1461 (!(src3 = map_guest_mem (vui, cpy[3].src, map_hint))))
1462 return 1;
1463
1464 CLIB_PREFETCH (src2, 64, LOAD);
1465 CLIB_PREFETCH (src3, 64, LOAD);
1466
1467 clib_memcpy ((void *) cpy[0].dst, src0, cpy[0].len);
1468 clib_memcpy ((void *) cpy[1].dst, src1, cpy[1].len);
1469 copy_len -= 2;
1470 cpy += 2;
1471 }
1472 }
1473 while (copy_len)
1474 {
1475 if (PREDICT_FALSE (!(src0 = map_guest_mem (vui, cpy->src, map_hint))))
1476 return 1;
1477 clib_memcpy ((void *) cpy->dst, src0, cpy->len);
1478 copy_len -= 1;
1479 cpy += 1;
1480 }
1481 return 0;
1482}
1483
1484/**
1485 * Try to discard packets from the tx ring (VPP RX path).
1486 * Returns the number of discarded packets.
1487 */
1488u32
1489vhost_user_rx_discard_packet (vlib_main_t * vm,
1490 vhost_user_intf_t * vui,
1491 vhost_user_vring_t * txvq, u32 discard_max)
1492{
1493 /*
1494 * On the RX side, each packet corresponds to one descriptor
1495 * (it is the same whether it is a shallow descriptor, chained, or indirect).
1496 * Therefore, discarding a packet is like discarding a descriptor.
1497 */
1498 u32 discarded_packets = 0;
1499 u32 avail_idx = txvq->avail->idx;
Pierre Pfisterd3eb90e2016-11-29 15:36:14 +00001500 while (discarded_packets != discard_max)
1501 {
1502 if (avail_idx == txvq->last_avail_idx)
1503 goto out;
1504
1505 u16 desc_chain_head =
Steven97878892017-08-29 09:23:26 -07001506 txvq->avail->ring[txvq->last_avail_idx & txvq->qsz_mask];
Pierre Pfisterd3eb90e2016-11-29 15:36:14 +00001507 txvq->last_avail_idx++;
Steven97878892017-08-29 09:23:26 -07001508 txvq->used->ring[txvq->last_used_idx & txvq->qsz_mask].id =
1509 desc_chain_head;
1510 txvq->used->ring[txvq->last_used_idx & txvq->qsz_mask].len = 0;
Pierre Pfisterd3eb90e2016-11-29 15:36:14 +00001511 vhost_user_log_dirty_ring (vui, txvq,
Steven97878892017-08-29 09:23:26 -07001512 ring[txvq->last_used_idx & txvq->qsz_mask]);
Pierre Pfisterd3eb90e2016-11-29 15:36:14 +00001513 txvq->last_used_idx++;
1514 discarded_packets++;
1515 }
1516
1517out:
1518 CLIB_MEMORY_BARRIER ();
1519 txvq->used->idx = txvq->last_used_idx;
1520 vhost_user_log_dirty_ring (vui, txvq, idx);
1521 return discarded_packets;
1522}
1523
1524/*
1525 * In case of overflow, we need to rewind the array of allocated buffers.
1526 */
1527static void
1528vhost_user_input_rewind_buffers (vlib_main_t * vm,
1529 vhost_cpu_t * cpu, vlib_buffer_t * b_head)
1530{
1531 u32 bi_current = cpu->rx_buffers[cpu->rx_buffers_len];
1532 vlib_buffer_t *b_current = vlib_get_buffer (vm, bi_current);
1533 b_current->current_length = 0;
1534 b_current->flags = 0;
1535 while (b_current != b_head)
1536 {
1537 cpu->rx_buffers_len++;
1538 bi_current = cpu->rx_buffers[cpu->rx_buffers_len];
1539 b_current = vlib_get_buffer (vm, bi_current);
1540 b_current->current_length = 0;
1541 b_current->flags = 0;
1542 }
Steven95827e42017-05-18 21:22:00 -07001543 cpu->rx_buffers_len++;
Pierre Pfisterd3eb90e2016-11-29 15:36:14 +00001544}
Yoann Desmouceaux4667c222016-02-24 22:51:00 +01001545
Damjan Marion00a9dca2016-08-17 17:05:46 +02001546static u32
1547vhost_user_if_input (vlib_main_t * vm,
1548 vhost_user_main_t * vum,
Pierre Pfistere21c5282016-09-21 08:04:59 +01001549 vhost_user_intf_t * vui,
Stevenf3b53642017-05-01 14:03:02 -07001550 u16 qid, vlib_node_runtime_t * node,
1551 vnet_hw_interface_rx_mode mode)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001552{
Pierre Pfistere21c5282016-09-21 08:04:59 +01001553 vhost_user_vring_t *txvq = &vui->vrings[VHOST_VRING_IDX_TX (qid)];
Pierre Pfisterd3eb90e2016-11-29 15:36:14 +00001554 u16 n_rx_packets = 0;
1555 u32 n_rx_bytes = 0;
1556 u16 n_left;
Damjan Marion00a9dca2016-08-17 17:05:46 +02001557 u32 n_left_to_next, *to_next;
Pierre Pfisterd3eb90e2016-11-29 15:36:14 +00001558 u32 next_index = VNET_DEVICE_INPUT_NEXT_ETHERNET_INPUT;
1559 u32 n_trace = vlib_get_trace_count (vm, node);
Pierre Pfisterd3eb90e2016-11-29 15:36:14 +00001560 u32 map_hint = 0;
Damjan Marion586afd72017-04-05 19:18:20 +02001561 u16 thread_index = vlib_get_thread_index ();
Pierre Pfisterd3eb90e2016-11-29 15:36:14 +00001562 u16 copy_len = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001563
Pierre Pfisterd3eb90e2016-11-29 15:36:14 +00001564 {
1565 /* do we have pending interrupts ? */
1566 vhost_user_vring_t *rxvq = &vui->vrings[VHOST_VRING_IDX_RX (qid)];
1567 f64 now = vlib_time_now (vm);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001568
Pierre Pfisterd3eb90e2016-11-29 15:36:14 +00001569 if ((txvq->n_since_last_int) && (txvq->int_deadline < now))
1570 vhost_user_send_call (vm, txvq);
1571
1572 if ((rxvq->n_since_last_int) && (rxvq->int_deadline < now))
1573 vhost_user_send_call (vm, rxvq);
1574 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001575
Stevenf3b53642017-05-01 14:03:02 -07001576 /*
1577 * For adaptive mode, it is optimized to reduce interrupts.
1578 * If the scheduler switches the input node to polling due
1579 * to burst of traffic, we tell the driver no interrupt.
1580 * When the traffic subsides, the scheduler switches the node back to
1581 * interrupt mode. We must tell the driver we want interrupt.
1582 */
1583 if (PREDICT_FALSE (mode == VNET_HW_INTERFACE_RX_MODE_ADAPTIVE))
1584 {
1585 if ((node->flags &
1586 VLIB_NODE_FLAG_SWITCH_FROM_POLLING_TO_INTERRUPT_MODE) ||
1587 !(node->flags &
1588 VLIB_NODE_FLAG_SWITCH_FROM_INTERRUPT_TO_POLLING_MODE))
1589 /* Tell driver we want notification */
1590 txvq->used->flags = 0;
1591 else
1592 /* Tell driver we don't want notification */
1593 txvq->used->flags = VRING_USED_F_NO_NOTIFY;
1594 }
1595
Damjan Marion00a9dca2016-08-17 17:05:46 +02001596 if (PREDICT_FALSE (txvq->avail->flags & 0xFFFE))
Ed Warnickecb9cada2015-12-08 15:45:58 -07001597 return 0;
1598
Pierre Pfisterba1d0462016-07-27 16:38:20 +01001599 n_left = (u16) (txvq->avail->idx - txvq->last_avail_idx);
1600
Ed Warnickecb9cada2015-12-08 15:45:58 -07001601 /* nothing to do */
Pierre Pfisterba1d0462016-07-27 16:38:20 +01001602 if (PREDICT_FALSE (n_left == 0))
Ed Warnickecb9cada2015-12-08 15:45:58 -07001603 return 0;
1604
Pierre Pfistere21c5282016-09-21 08:04:59 +01001605 if (PREDICT_FALSE (!vui->admin_up || !(txvq->enabled)))
Pierre Pfisterba1d0462016-07-27 16:38:20 +01001606 {
Pierre Pfistere21c5282016-09-21 08:04:59 +01001607 /*
1608 * Discard input packet if interface is admin down or vring is not
1609 * enabled.
1610 * "For example, for a networking device, in the disabled state
1611 * client must not supply any new RX packets, but must process
1612 * and discard any TX packets."
1613 */
Pierre Pfisterd3eb90e2016-11-29 15:36:14 +00001614 vhost_user_rx_discard_packet (vm, vui, txvq,
1615 VHOST_USER_DOWN_DISCARD_COUNT);
Damjan Marion00a9dca2016-08-17 17:05:46 +02001616 return 0;
1617 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001618
Steven97878892017-08-29 09:23:26 -07001619 if (PREDICT_FALSE (n_left == (txvq->qsz_mask + 1)))
Pierre Pfistere21c5282016-09-21 08:04:59 +01001620 {
Pierre Pfisterd3eb90e2016-11-29 15:36:14 +00001621 /*
1622 * Informational error logging when VPP is not
1623 * receiving packets fast enough.
1624 */
Pierre Pfistere21c5282016-09-21 08:04:59 +01001625 vlib_error_count (vm, node->node_index,
1626 VHOST_USER_INPUT_FUNC_ERROR_FULL_RX_QUEUE, 1);
1627 }
1628
Pierre Pfister328e99b2016-02-12 13:18:42 +00001629 if (n_left > VLIB_FRAME_SIZE)
1630 n_left = VLIB_FRAME_SIZE;
1631
Pierre Pfisterd3eb90e2016-11-29 15:36:14 +00001632 /*
1633 * For small packets (<2kB), we will not need more than one vlib buffer
1634 * per packet. In case packets are bigger, we will just yeld at some point
1635 * in the loop and come back later. This is not an issue as for big packet,
1636 * processing cost really comes from the memory copy.
Pierre Pfister56a86842017-10-05 14:24:05 +02001637 * The assumption is that big packets will fit in 40 buffers.
Pierre Pfister328e99b2016-02-12 13:18:42 +00001638 */
Pierre Pfister56a86842017-10-05 14:24:05 +02001639 if (PREDICT_FALSE (vum->cpus[thread_index].rx_buffers_len < n_left + 1 ||
1640 vum->cpus[thread_index].rx_buffers_len < 40))
Damjan Marion00a9dca2016-08-17 17:05:46 +02001641 {
Damjan Marion586afd72017-04-05 19:18:20 +02001642 u32 curr_len = vum->cpus[thread_index].rx_buffers_len;
1643 vum->cpus[thread_index].rx_buffers_len +=
Damjan Marion00a9dca2016-08-17 17:05:46 +02001644 vlib_buffer_alloc_from_free_list (vm,
Damjan Marion586afd72017-04-05 19:18:20 +02001645 vum->cpus[thread_index].rx_buffers +
Pierre Pfisterba1d0462016-07-27 16:38:20 +01001646 curr_len,
Pierre Pfisterd3eb90e2016-11-29 15:36:14 +00001647 VHOST_USER_RX_BUFFERS_N - curr_len,
Damjan Marion00a9dca2016-08-17 17:05:46 +02001648 VLIB_BUFFER_DEFAULT_FREE_LIST_INDEX);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001649
Pierre Pfisterd3eb90e2016-11-29 15:36:14 +00001650 if (PREDICT_FALSE
Damjan Marion586afd72017-04-05 19:18:20 +02001651 (vum->cpus[thread_index].rx_buffers_len <
Pierre Pfisterd3eb90e2016-11-29 15:36:14 +00001652 VHOST_USER_RX_BUFFER_STARVATION))
Damjan Marion00a9dca2016-08-17 17:05:46 +02001653 {
Pierre Pfisterd3eb90e2016-11-29 15:36:14 +00001654 /* In case of buffer starvation, discard some packets from the queue
1655 * and log the event.
1656 * We keep doing best effort for the remaining packets. */
Damjan Marion586afd72017-04-05 19:18:20 +02001657 u32 flush = (n_left + 1 > vum->cpus[thread_index].rx_buffers_len) ?
1658 n_left + 1 - vum->cpus[thread_index].rx_buffers_len : 1;
Pierre Pfisterd3eb90e2016-11-29 15:36:14 +00001659 flush = vhost_user_rx_discard_packet (vm, vui, txvq, flush);
1660
1661 n_left -= flush;
1662 vlib_increment_simple_counter (vnet_main.
1663 interface_main.sw_if_counters +
1664 VNET_INTERFACE_COUNTER_DROP,
Damjan Marion586afd72017-04-05 19:18:20 +02001665 vlib_get_thread_index (),
Pierre Pfisterd3eb90e2016-11-29 15:36:14 +00001666 vui->sw_if_index, flush);
1667
1668 vlib_error_count (vm, vhost_user_input_node.index,
1669 VHOST_USER_INPUT_FUNC_ERROR_NO_BUFFER, flush);
Damjan Marion00a9dca2016-08-17 17:05:46 +02001670 }
1671 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001672
Damjan Marion00a9dca2016-08-17 17:05:46 +02001673 while (n_left > 0)
1674 {
1675 vlib_get_next_frame (vm, node, next_index, to_next, n_left_to_next);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001676
Damjan Marion00a9dca2016-08-17 17:05:46 +02001677 while (n_left > 0 && n_left_to_next > 0)
1678 {
1679 vlib_buffer_t *b_head, *b_current;
Pierre Pfisterd3eb90e2016-11-29 15:36:14 +00001680 u32 bi_current;
1681 u16 desc_current;
1682 u32 desc_data_offset;
1683 vring_desc_t *desc_table = txvq->desc;
Damjan Marion00a9dca2016-08-17 17:05:46 +02001684
Damjan Marion586afd72017-04-05 19:18:20 +02001685 if (PREDICT_FALSE (vum->cpus[thread_index].rx_buffers_len <= 1))
Pierre Pfisterba1d0462016-07-27 16:38:20 +01001686 {
Pierre Pfisterd3eb90e2016-11-29 15:36:14 +00001687 /* Not enough rx_buffers
1688 * Note: We yeld on 1 so we don't need to do an additional
1689 * check for the next buffer prefetch.
1690 */
1691 n_left = 0;
1692 break;
Pierre Pfisterba1d0462016-07-27 16:38:20 +01001693 }
1694
Steven97878892017-08-29 09:23:26 -07001695 desc_current =
1696 txvq->avail->ring[txvq->last_avail_idx & txvq->qsz_mask];
Damjan Marion586afd72017-04-05 19:18:20 +02001697 vum->cpus[thread_index].rx_buffers_len--;
1698 bi_current = (vum->cpus[thread_index].rx_buffers)
1699 [vum->cpus[thread_index].rx_buffers_len];
Pierre Pfisterd3eb90e2016-11-29 15:36:14 +00001700 b_head = b_current = vlib_get_buffer (vm, bi_current);
1701 to_next[0] = bi_current; //We do that now so we can forget about bi_current
1702 to_next++;
1703 n_left_to_next--;
1704
1705 vlib_prefetch_buffer_with_index (vm,
Damjan Marion586afd72017-04-05 19:18:20 +02001706 (vum->
1707 cpus[thread_index].rx_buffers)
1708 [vum->cpus[thread_index].
Pierre Pfisterd3eb90e2016-11-29 15:36:14 +00001709 rx_buffers_len - 1], LOAD);
1710
1711 /* Just preset the used descriptor id and length for later */
Steven97878892017-08-29 09:23:26 -07001712 txvq->used->ring[txvq->last_used_idx & txvq->qsz_mask].id =
1713 desc_current;
1714 txvq->used->ring[txvq->last_used_idx & txvq->qsz_mask].len = 0;
Pierre Pfisterd3eb90e2016-11-29 15:36:14 +00001715 vhost_user_log_dirty_ring (vui, txvq,
Steven97878892017-08-29 09:23:26 -07001716 ring[txvq->last_used_idx &
1717 txvq->qsz_mask]);
Pierre Pfisterd3eb90e2016-11-29 15:36:14 +00001718
1719 /* The buffer should already be initialized */
1720 b_head->total_length_not_including_first_buffer = 0;
1721 b_head->flags |= VLIB_BUFFER_TOTAL_LENGTH_VALID;
1722
Pierre Pfister116ea4b2016-11-08 15:49:28 +00001723 if (PREDICT_FALSE (n_trace))
1724 {
Pierre Pfisterd3eb90e2016-11-29 15:36:14 +00001725 //TODO: next_index is not exactly known at that point
Pierre Pfister116ea4b2016-11-08 15:49:28 +00001726 vlib_trace_buffer (vm, node, next_index, b_head,
1727 /* follow_chain */ 0);
1728 vhost_trace_t *t0 =
1729 vlib_add_trace (vm, node, b_head, sizeof (t0[0]));
1730 vhost_user_rx_trace (t0, vui, qid, b_head, txvq);
1731 n_trace--;
1732 vlib_set_trace_count (vm, node, n_trace);
1733 }
Damjan Marion00a9dca2016-08-17 17:05:46 +02001734
Pierre Pfisterd3eb90e2016-11-29 15:36:14 +00001735 /* This depends on the setup but is very consistent
1736 * So I think the CPU branch predictor will make a pretty good job
1737 * at optimizing the decision. */
1738 if (txvq->desc[desc_current].flags & VIRTQ_DESC_F_INDIRECT)
1739 {
1740 desc_table = map_guest_mem (vui, txvq->desc[desc_current].addr,
1741 &map_hint);
1742 desc_current = 0;
1743 if (PREDICT_FALSE (desc_table == 0))
1744 {
Steven95827e42017-05-18 21:22:00 -07001745 vlib_error_count (vm, node->node_index,
1746 VHOST_USER_INPUT_FUNC_ERROR_MMAP_FAIL, 1);
Pierre Pfisterd3eb90e2016-11-29 15:36:14 +00001747 goto out;
1748 }
1749 }
1750
Damjan Marion00a9dca2016-08-17 17:05:46 +02001751 if (PREDICT_TRUE (vui->is_any_layout) ||
Pierre Pfisterd3eb90e2016-11-29 15:36:14 +00001752 (!(desc_table[desc_current].flags & VIRTQ_DESC_F_NEXT)))
Damjan Marion00a9dca2016-08-17 17:05:46 +02001753 {
1754 /* ANYLAYOUT or single buffer */
Pierre Pfisterd3eb90e2016-11-29 15:36:14 +00001755 desc_data_offset = vui->virtio_net_hdr_sz;
Damjan Marion00a9dca2016-08-17 17:05:46 +02001756 }
1757 else
1758 {
1759 /* CSR case without ANYLAYOUT, skip 1st buffer */
Pierre Pfisterd3eb90e2016-11-29 15:36:14 +00001760 desc_data_offset = desc_table[desc_current].len;
Pierre Pfisterba1d0462016-07-27 16:38:20 +01001761 }
1762
Damjan Marion00a9dca2016-08-17 17:05:46 +02001763 while (1)
1764 {
Pierre Pfisterd3eb90e2016-11-29 15:36:14 +00001765 /* Get more input if necessary. Or end of packet. */
1766 if (desc_data_offset == desc_table[desc_current].len)
Damjan Marion00a9dca2016-08-17 17:05:46 +02001767 {
Pierre Pfisterd3eb90e2016-11-29 15:36:14 +00001768 if (PREDICT_FALSE (desc_table[desc_current].flags &
1769 VIRTQ_DESC_F_NEXT))
Damjan Marion00a9dca2016-08-17 17:05:46 +02001770 {
Pierre Pfisterd3eb90e2016-11-29 15:36:14 +00001771 desc_current = desc_table[desc_current].next;
1772 desc_data_offset = 0;
1773 }
1774 else
1775 {
1776 goto out;
Damjan Marion00a9dca2016-08-17 17:05:46 +02001777 }
1778 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001779
Pierre Pfisterd3eb90e2016-11-29 15:36:14 +00001780 /* Get more output if necessary. Or end of packet. */
1781 if (PREDICT_FALSE
1782 (b_current->current_length == VLIB_BUFFER_DATA_SIZE))
1783 {
1784 if (PREDICT_FALSE
Damjan Marion586afd72017-04-05 19:18:20 +02001785 (vum->cpus[thread_index].rx_buffers_len == 0))
Pierre Pfisterd3eb90e2016-11-29 15:36:14 +00001786 {
Steven62411e72017-02-03 09:30:37 -08001787 /* Cancel speculation */
1788 to_next--;
1789 n_left_to_next++;
1790
Pierre Pfisterd3eb90e2016-11-29 15:36:14 +00001791 /*
1792 * Checking if there are some left buffers.
1793 * If not, just rewind the used buffers and stop.
1794 * Note: Scheduled copies are not cancelled. This is
1795 * not an issue as they would still be valid. Useless,
1796 * but valid.
1797 */
1798 vhost_user_input_rewind_buffers (vm,
Damjan Marion586afd72017-04-05 19:18:20 +02001799 &vum->cpus
1800 [thread_index],
Pierre Pfisterd3eb90e2016-11-29 15:36:14 +00001801 b_head);
1802 n_left = 0;
1803 goto stop;
1804 }
1805
1806 /* Get next output */
Damjan Marion586afd72017-04-05 19:18:20 +02001807 vum->cpus[thread_index].rx_buffers_len--;
Pierre Pfisterd3eb90e2016-11-29 15:36:14 +00001808 u32 bi_next =
Damjan Marion586afd72017-04-05 19:18:20 +02001809 (vum->cpus[thread_index].rx_buffers)[vum->cpus
1810 [thread_index].rx_buffers_len];
Pierre Pfisterd3eb90e2016-11-29 15:36:14 +00001811 b_current->next_buffer = bi_next;
1812 b_current->flags |= VLIB_BUFFER_NEXT_PRESENT;
1813 bi_current = bi_next;
1814 b_current = vlib_get_buffer (vm, bi_current);
1815 }
1816
1817 /* Prepare a copy order executed later for the data */
Damjan Marion586afd72017-04-05 19:18:20 +02001818 vhost_copy_t *cpy = &vum->cpus[thread_index].copy[copy_len];
Pierre Pfisterd3eb90e2016-11-29 15:36:14 +00001819 copy_len++;
1820 u32 desc_data_l =
1821 desc_table[desc_current].len - desc_data_offset;
1822 cpy->len = VLIB_BUFFER_DATA_SIZE - b_current->current_length;
1823 cpy->len = (cpy->len > desc_data_l) ? desc_data_l : cpy->len;
Steven025d4152017-05-16 21:26:13 -07001824 cpy->dst = (uword) (vlib_buffer_get_current (b_current) +
1825 b_current->current_length);
Pierre Pfisterd3eb90e2016-11-29 15:36:14 +00001826 cpy->src = desc_table[desc_current].addr + desc_data_offset;
1827
1828 desc_data_offset += cpy->len;
1829
1830 b_current->current_length += cpy->len;
1831 b_head->total_length_not_including_first_buffer += cpy->len;
Damjan Marion00a9dca2016-08-17 17:05:46 +02001832 }
Pierre Pfisterd3eb90e2016-11-29 15:36:14 +00001833
Pierre Pfisterba1d0462016-07-27 16:38:20 +01001834 out:
Pierre Pfisterd3eb90e2016-11-29 15:36:14 +00001835 CLIB_PREFETCH (&n_left, sizeof (n_left), LOAD);
1836
1837 n_rx_bytes += b_head->total_length_not_including_first_buffer;
1838 n_rx_packets++;
1839
1840 b_head->total_length_not_including_first_buffer -=
1841 b_head->current_length;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001842
Damjan Marion00a9dca2016-08-17 17:05:46 +02001843 /* consume the descriptor and return it as used */
1844 txvq->last_avail_idx++;
Damjan Marion00a9dca2016-08-17 17:05:46 +02001845 txvq->last_used_idx++;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001846
Damjan Marion00a9dca2016-08-17 17:05:46 +02001847 VLIB_BUFFER_TRACE_TRAJECTORY_INIT (b_head);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001848
Damjan Marion00a9dca2016-08-17 17:05:46 +02001849 vnet_buffer (b_head)->sw_if_index[VLIB_RX] = vui->sw_if_index;
1850 vnet_buffer (b_head)->sw_if_index[VLIB_TX] = (u32) ~ 0;
Pierre Pfisterd3eb90e2016-11-29 15:36:14 +00001851 b_head->error = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001852
Pierre Pfisterd3eb90e2016-11-29 15:36:14 +00001853 {
1854 u32 next0 = VNET_DEVICE_INPUT_NEXT_ETHERNET_INPUT;
Pierre Pfister328e99b2016-02-12 13:18:42 +00001855
Pierre Pfisterd3eb90e2016-11-29 15:36:14 +00001856 /* redirect if feature path enabled */
1857 vnet_feature_start_device_input_x1 (vui->sw_if_index, &next0,
Damjan Marion35af9e52017-03-06 12:02:50 +01001858 b_head);
Damjan Marion22311502016-10-28 20:30:15 +02001859
Pierre Pfisterd3eb90e2016-11-29 15:36:14 +00001860 u32 bi = to_next[-1]; //Cannot use to_next[-1] in the macro
1861 vlib_validate_buffer_enqueue_x1 (vm, node, next_index,
1862 to_next, n_left_to_next,
1863 bi, next0);
1864 }
Damjan Marion22311502016-10-28 20:30:15 +02001865
Damjan Marion00a9dca2016-08-17 17:05:46 +02001866 n_left--;
Pierre Pfisterd3eb90e2016-11-29 15:36:14 +00001867
1868 /*
1869 * Although separating memory copies from virtio ring parsing
1870 * is beneficial, we can offer to perform the copies from time
1871 * to time in order to free some space in the ring.
1872 */
1873 if (PREDICT_FALSE (copy_len >= VHOST_USER_RX_COPY_THRESHOLD))
Pierre Pfistere21c5282016-09-21 08:04:59 +01001874 {
Pierre Pfisterd3eb90e2016-11-29 15:36:14 +00001875 if (PREDICT_FALSE
Damjan Marion586afd72017-04-05 19:18:20 +02001876 (vhost_user_input_copy (vui, vum->cpus[thread_index].copy,
Pierre Pfisterd3eb90e2016-11-29 15:36:14 +00001877 copy_len, &map_hint)))
1878 {
Steven95827e42017-05-18 21:22:00 -07001879 vlib_error_count (vm, node->node_index,
1880 VHOST_USER_INPUT_FUNC_ERROR_MMAP_FAIL, 1);
Pierre Pfisterd3eb90e2016-11-29 15:36:14 +00001881 }
1882 copy_len = 0;
1883
1884 /* give buffers back to driver */
1885 CLIB_MEMORY_BARRIER ();
1886 txvq->used->idx = txvq->last_used_idx;
1887 vhost_user_log_dirty_ring (vui, txvq, idx);
Pierre Pfistere21c5282016-09-21 08:04:59 +01001888 }
Damjan Marion00a9dca2016-08-17 17:05:46 +02001889 }
Pierre Pfisterd3eb90e2016-11-29 15:36:14 +00001890 stop:
Damjan Marion00a9dca2016-08-17 17:05:46 +02001891 vlib_put_next_frame (vm, node, next_index, n_left_to_next);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001892 }
1893
Pierre Pfisterd3eb90e2016-11-29 15:36:14 +00001894 /* Do the memory copies */
1895 if (PREDICT_FALSE
Damjan Marion586afd72017-04-05 19:18:20 +02001896 (vhost_user_input_copy (vui, vum->cpus[thread_index].copy,
Pierre Pfisterd3eb90e2016-11-29 15:36:14 +00001897 copy_len, &map_hint)))
1898 {
Steven95827e42017-05-18 21:22:00 -07001899 vlib_error_count (vm, node->node_index,
1900 VHOST_USER_INPUT_FUNC_ERROR_MMAP_FAIL, 1);
Pierre Pfisterd3eb90e2016-11-29 15:36:14 +00001901 }
Pierre Pfister328e99b2016-02-12 13:18:42 +00001902
1903 /* give buffers back to driver */
Damjan Marion00a9dca2016-08-17 17:05:46 +02001904 CLIB_MEMORY_BARRIER ();
Pierre Pfister328e99b2016-02-12 13:18:42 +00001905 txvq->used->idx = txvq->last_used_idx;
Damjan Marion00a9dca2016-08-17 17:05:46 +02001906 vhost_user_log_dirty_ring (vui, txvq, idx);
Pierre Pfister328e99b2016-02-12 13:18:42 +00001907
Ed Warnickecb9cada2015-12-08 15:45:58 -07001908 /* interrupt (call) handling */
Steven7312cc72017-03-15 21:18:55 -07001909 if ((txvq->callfd_idx != ~0) &&
1910 !(txvq->avail->flags & VRING_AVAIL_F_NO_INTERRUPT))
Damjan Marion00a9dca2016-08-17 17:05:46 +02001911 {
1912 txvq->n_since_last_int += n_rx_packets;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001913
Damjan Marion00a9dca2016-08-17 17:05:46 +02001914 if (txvq->n_since_last_int > vum->coalesce_frames)
1915 vhost_user_send_call (vm, txvq);
1916 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001917
1918 /* increase rx counters */
1919 vlib_increment_combined_counter
Damjan Marion00a9dca2016-08-17 17:05:46 +02001920 (vnet_main.interface_main.combined_sw_if_counters
1921 + VNET_INTERFACE_COUNTER_RX,
Damjan Marion586afd72017-04-05 19:18:20 +02001922 vlib_get_thread_index (), vui->sw_if_index, n_rx_packets, n_rx_bytes);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001923
Damjan Marion586afd72017-04-05 19:18:20 +02001924 vnet_device_increment_rx_packets (thread_index, n_rx_packets);
Damjan Marionb3bb1012017-02-28 21:55:28 +01001925
Ed Warnickecb9cada2015-12-08 15:45:58 -07001926 return n_rx_packets;
1927}
1928
1929static uword
1930vhost_user_input (vlib_main_t * vm,
Damjan Marion00a9dca2016-08-17 17:05:46 +02001931 vlib_node_runtime_t * node, vlib_frame_t * f)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001932{
Damjan Marion00a9dca2016-08-17 17:05:46 +02001933 vhost_user_main_t *vum = &vhost_user_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001934 uword n_rx_packets = 0;
Steven7312cc72017-03-15 21:18:55 -07001935 vhost_user_intf_t *vui;
Stevenf3b53642017-05-01 14:03:02 -07001936 vnet_device_input_runtime_t *rt =
1937 (vnet_device_input_runtime_t *) node->runtime_data;
1938 vnet_device_and_queue_t *dq;
Pierre Pfistere21c5282016-09-21 08:04:59 +01001939
Stevenf3b53642017-05-01 14:03:02 -07001940 vec_foreach (dq, rt->devices_and_queues)
1941 {
1942 if (clib_smp_swap (&dq->interrupt_pending, 0) ||
1943 (node->state == VLIB_NODE_STATE_POLLING))
Steven7312cc72017-03-15 21:18:55 -07001944 {
Stevenf3b53642017-05-01 14:03:02 -07001945 vui =
1946 pool_elt_at_index (vum->vhost_user_interfaces, dq->dev_instance);
1947 n_rx_packets = vhost_user_if_input (vm, vum, vui, dq->queue_id, node,
1948 dq->mode);
Steven7312cc72017-03-15 21:18:55 -07001949 }
Stevenf3b53642017-05-01 14:03:02 -07001950 }
Steven7312cc72017-03-15 21:18:55 -07001951
Ed Warnickecb9cada2015-12-08 15:45:58 -07001952 return n_rx_packets;
1953}
1954
Damjan Marion00a9dca2016-08-17 17:05:46 +02001955/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07001956VLIB_REGISTER_NODE (vhost_user_input_node) = {
1957 .function = vhost_user_input,
1958 .type = VLIB_NODE_TYPE_INPUT,
1959 .name = "vhost-user-input",
Damjan Marion51327ac2016-11-09 11:59:42 +01001960 .sibling_of = "device-input",
Ed Warnickecb9cada2015-12-08 15:45:58 -07001961
1962 /* Will be enabled if/when hardware is detected. */
1963 .state = VLIB_NODE_STATE_DISABLED,
1964
1965 .format_buffer = format_ethernet_header_with_length,
Pierre Pfister116ea4b2016-11-08 15:49:28 +00001966 .format_trace = format_vhost_trace,
Ed Warnickecb9cada2015-12-08 15:45:58 -07001967
1968 .n_errors = VHOST_USER_INPUT_FUNC_N_ERROR,
1969 .error_strings = vhost_user_input_func_error_strings,
Ed Warnickecb9cada2015-12-08 15:45:58 -07001970};
1971
Damjan Marion1c80e832016-05-11 23:07:18 +02001972VLIB_NODE_FUNCTION_MULTIARCH (vhost_user_input_node, vhost_user_input)
Damjan Marion00a9dca2016-08-17 17:05:46 +02001973/* *INDENT-ON* */
Damjan Marion1c80e832016-05-11 23:07:18 +02001974
Pierre Pfister116ea4b2016-11-08 15:49:28 +00001975
1976void
1977vhost_user_tx_trace (vhost_trace_t * t,
1978 vhost_user_intf_t * vui, u16 qid,
1979 vlib_buffer_t * b, vhost_user_vring_t * rxvq)
1980{
1981 vhost_user_main_t *vum = &vhost_user_main;
Pierre Pfister116ea4b2016-11-08 15:49:28 +00001982 u32 last_avail_idx = rxvq->last_avail_idx;
Steven97878892017-08-29 09:23:26 -07001983 u32 desc_current = rxvq->avail->ring[last_avail_idx & rxvq->qsz_mask];
Pierre Pfister116ea4b2016-11-08 15:49:28 +00001984 vring_desc_t *hdr_desc = 0;
1985 u32 hint = 0;
1986
1987 memset (t, 0, sizeof (*t));
1988 t->device_index = vui - vum->vhost_user_interfaces;
1989 t->qid = qid;
1990
1991 hdr_desc = &rxvq->desc[desc_current];
1992 if (rxvq->desc[desc_current].flags & VIRTQ_DESC_F_INDIRECT)
1993 {
1994 t->virtio_ring_flags |= 1 << VIRTIO_TRACE_F_INDIRECT;
Pierre Pfisterd3eb90e2016-11-29 15:36:14 +00001995 /* Header is the first here */
Pierre Pfister116ea4b2016-11-08 15:49:28 +00001996 hdr_desc = map_guest_mem (vui, rxvq->desc[desc_current].addr, &hint);
1997 }
1998 if (rxvq->desc[desc_current].flags & VIRTQ_DESC_F_NEXT)
1999 {
2000 t->virtio_ring_flags |= 1 << VIRTIO_TRACE_F_SIMPLE_CHAINED;
2001 }
2002 if (!(rxvq->desc[desc_current].flags & VIRTQ_DESC_F_NEXT) &&
2003 !(rxvq->desc[desc_current].flags & VIRTQ_DESC_F_INDIRECT))
2004 {
2005 t->virtio_ring_flags |= 1 << VIRTIO_TRACE_F_SINGLE_DESC;
2006 }
2007
2008 t->first_desc_len = hdr_desc ? hdr_desc->len : 0;
2009}
2010
Pierre Pfisterd3eb90e2016-11-29 15:36:14 +00002011static_always_inline u32
2012vhost_user_tx_copy (vhost_user_intf_t * vui, vhost_copy_t * cpy,
2013 u16 copy_len, u32 * map_hint)
2014{
2015 void *dst0, *dst1, *dst2, *dst3;
2016 if (PREDICT_TRUE (copy_len >= 4))
2017 {
2018 if (PREDICT_FALSE (!(dst2 = map_guest_mem (vui, cpy[0].dst, map_hint))))
2019 return 1;
2020 if (PREDICT_FALSE (!(dst3 = map_guest_mem (vui, cpy[1].dst, map_hint))))
2021 return 1;
2022 while (PREDICT_TRUE (copy_len >= 4))
2023 {
2024 dst0 = dst2;
2025 dst1 = dst3;
2026
2027 if (PREDICT_FALSE
2028 (!(dst2 = map_guest_mem (vui, cpy[2].dst, map_hint))))
2029 return 1;
2030 if (PREDICT_FALSE
2031 (!(dst3 = map_guest_mem (vui, cpy[3].dst, map_hint))))
2032 return 1;
2033
2034 CLIB_PREFETCH ((void *) cpy[2].src, 64, LOAD);
2035 CLIB_PREFETCH ((void *) cpy[3].src, 64, LOAD);
2036
2037 clib_memcpy (dst0, (void *) cpy[0].src, cpy[0].len);
2038 clib_memcpy (dst1, (void *) cpy[1].src, cpy[1].len);
2039
2040 vhost_user_log_dirty_pages_2 (vui, cpy[0].dst, cpy[0].len, 1);
2041 vhost_user_log_dirty_pages_2 (vui, cpy[1].dst, cpy[1].len, 1);
2042 copy_len -= 2;
2043 cpy += 2;
2044 }
2045 }
2046 while (copy_len)
2047 {
2048 if (PREDICT_FALSE (!(dst0 = map_guest_mem (vui, cpy->dst, map_hint))))
2049 return 1;
2050 clib_memcpy (dst0, (void *) cpy->src, cpy->len);
2051 vhost_user_log_dirty_pages_2 (vui, cpy->dst, cpy->len, 1);
2052 copy_len -= 1;
2053 cpy += 1;
2054 }
2055 return 0;
2056}
2057
2058
Ed Warnickecb9cada2015-12-08 15:45:58 -07002059static uword
Pierre Pfisterdbb3c252016-11-22 10:33:34 +00002060vhost_user_tx (vlib_main_t * vm,
2061 vlib_node_runtime_t * node, vlib_frame_t * frame)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002062{
Damjan Marion00a9dca2016-08-17 17:05:46 +02002063 u32 *buffers = vlib_frame_args (frame);
Pierre Pfisterd3eb90e2016-11-29 15:36:14 +00002064 u32 n_left = frame->n_vectors;
Damjan Marion00a9dca2016-08-17 17:05:46 +02002065 vhost_user_main_t *vum = &vhost_user_main;
Damjan Marion00a9dca2016-08-17 17:05:46 +02002066 vnet_interface_output_runtime_t *rd = (void *) node->runtime_data;
2067 vhost_user_intf_t *vui =
Pierre Pfisterdbb3c252016-11-22 10:33:34 +00002068 pool_elt_at_index (vum->vhost_user_interfaces, rd->dev_instance);
Pierre Pfistere21c5282016-09-21 08:04:59 +01002069 u32 qid = ~0;
2070 vhost_user_vring_t *rxvq;
Pierre Pfisterd3eb90e2016-11-29 15:36:14 +00002071 u8 error;
Damjan Marion586afd72017-04-05 19:18:20 +02002072 u32 thread_index = vlib_get_thread_index ();
Pierre Pfisterd3eb90e2016-11-29 15:36:14 +00002073 u32 map_hint = 0;
2074 u8 retry = 8;
2075 u16 copy_len;
2076 u16 tx_headers_len;
Pierre Pfisterba1d0462016-07-27 16:38:20 +01002077
Pierre Pfisterd3eb90e2016-11-29 15:36:14 +00002078 if (PREDICT_FALSE (!vui->admin_up))
2079 {
2080 error = VHOST_USER_TX_FUNC_ERROR_DOWN;
2081 goto done3;
2082 }
2083
2084 if (PREDICT_FALSE (!vui->is_up))
Damjan Marion00a9dca2016-08-17 17:05:46 +02002085 {
2086 error = VHOST_USER_TX_FUNC_ERROR_NOT_READY;
Pierre Pfistere21c5282016-09-21 08:04:59 +01002087 goto done3;
Damjan Marion00a9dca2016-08-17 17:05:46 +02002088 }
Damjan Marion920ecc22016-01-12 18:34:24 +01002089
Pierre Pfistere21c5282016-09-21 08:04:59 +01002090 qid =
Pierre Pfisterd3eb90e2016-11-29 15:36:14 +00002091 VHOST_VRING_IDX_RX (*vec_elt_at_index
Stevend7727532017-06-09 18:49:17 -07002092 (vui->per_cpu_tx_qid, thread_index));
Pierre Pfistere21c5282016-09-21 08:04:59 +01002093 rxvq = &vui->vrings[qid];
2094 if (PREDICT_FALSE (vui->use_tx_spinlock))
2095 vhost_user_vring_lock (vui, qid);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002096
Pierre Pfisterd3eb90e2016-11-29 15:36:14 +00002097retry:
2098 error = VHOST_USER_TX_FUNC_ERROR_NONE;
2099 tx_headers_len = 0;
2100 copy_len = 0;
2101 while (n_left > 0)
Damjan Marion00a9dca2016-08-17 17:05:46 +02002102 {
Pierre Pfisterd3eb90e2016-11-29 15:36:14 +00002103 vlib_buffer_t *b0, *current_b0;
2104 u16 desc_head, desc_index, desc_len;
2105 vring_desc_t *desc_table;
2106 uword buffer_map_addr;
2107 u32 buffer_len;
2108 u16 bytes_left;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002109
Pierre Pfisterd3eb90e2016-11-29 15:36:14 +00002110 if (PREDICT_TRUE (n_left > 1))
2111 vlib_prefetch_buffer_with_index (vm, buffers[1], LOAD);
2112
2113 b0 = vlib_get_buffer (vm, buffers[0]);
2114
2115 if (PREDICT_FALSE (b0->flags & VLIB_BUFFER_IS_TRACED))
Pierre Pfister116ea4b2016-11-08 15:49:28 +00002116 {
Damjan Marion586afd72017-04-05 19:18:20 +02002117 vum->cpus[thread_index].current_trace =
Pierre Pfisterd3eb90e2016-11-29 15:36:14 +00002118 vlib_add_trace (vm, node, b0,
Damjan Marion586afd72017-04-05 19:18:20 +02002119 sizeof (*vum->cpus[thread_index].current_trace));
2120 vhost_user_tx_trace (vum->cpus[thread_index].current_trace,
Pierre Pfisterd3eb90e2016-11-29 15:36:14 +00002121 vui, qid / 2, b0, rxvq);
2122 }
Pierre Pfister116ea4b2016-11-08 15:49:28 +00002123
Pierre Pfisterd3eb90e2016-11-29 15:36:14 +00002124 if (PREDICT_FALSE (rxvq->last_avail_idx == rxvq->avail->idx))
2125 {
2126 error = VHOST_USER_TX_FUNC_ERROR_PKT_DROP_NOBUF;
2127 goto done;
2128 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07002129
Pierre Pfisterd3eb90e2016-11-29 15:36:14 +00002130 desc_table = rxvq->desc;
2131 desc_head = desc_index =
Steven97878892017-08-29 09:23:26 -07002132 rxvq->avail->ring[rxvq->last_avail_idx & rxvq->qsz_mask];
Pierre Pfisterd3eb90e2016-11-29 15:36:14 +00002133
2134 /* Go deeper in case of indirect descriptor
2135 * I don't know of any driver providing indirect for RX. */
2136 if (PREDICT_FALSE (rxvq->desc[desc_head].flags & VIRTQ_DESC_F_INDIRECT))
2137 {
2138 if (PREDICT_FALSE
2139 (rxvq->desc[desc_head].len < sizeof (vring_desc_t)))
Pierre Pfisterba1d0462016-07-27 16:38:20 +01002140 {
Pierre Pfisterd3eb90e2016-11-29 15:36:14 +00002141 error = VHOST_USER_TX_FUNC_ERROR_INDIRECT_OVERFLOW;
Pierre Pfisterba1d0462016-07-27 16:38:20 +01002142 goto done;
2143 }
2144 if (PREDICT_FALSE
Pierre Pfisterd3eb90e2016-11-29 15:36:14 +00002145 (!(desc_table =
2146 map_guest_mem (vui, rxvq->desc[desc_index].addr,
2147 &map_hint))))
Pierre Pfisterba1d0462016-07-27 16:38:20 +01002148 {
2149 error = VHOST_USER_TX_FUNC_ERROR_MMAP_FAIL;
2150 goto done;
2151 }
Pierre Pfisterd3eb90e2016-11-29 15:36:14 +00002152 desc_index = 0;
Damjan Marion00a9dca2016-08-17 17:05:46 +02002153 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07002154
Pierre Pfisterd3eb90e2016-11-29 15:36:14 +00002155 desc_len = vui->virtio_net_hdr_sz;
2156 buffer_map_addr = desc_table[desc_index].addr;
2157 buffer_len = desc_table[desc_index].len;
2158
2159 {
2160 // Get a header from the header array
2161 virtio_net_hdr_mrg_rxbuf_t *hdr =
Damjan Marion586afd72017-04-05 19:18:20 +02002162 &vum->cpus[thread_index].tx_headers[tx_headers_len];
Pierre Pfisterd3eb90e2016-11-29 15:36:14 +00002163 tx_headers_len++;
2164 hdr->hdr.flags = 0;
2165 hdr->hdr.gso_type = 0;
2166 hdr->num_buffers = 1; //This is local, no need to check
2167
2168 // Prepare a copy order executed later for the header
Damjan Marion586afd72017-04-05 19:18:20 +02002169 vhost_copy_t *cpy = &vum->cpus[thread_index].copy[copy_len];
Pierre Pfisterd3eb90e2016-11-29 15:36:14 +00002170 copy_len++;
2171 cpy->len = vui->virtio_net_hdr_sz;
2172 cpy->dst = buffer_map_addr;
2173 cpy->src = (uword) hdr;
2174 }
2175
2176 buffer_map_addr += vui->virtio_net_hdr_sz;
2177 buffer_len -= vui->virtio_net_hdr_sz;
2178 bytes_left = b0->current_length;
2179 current_b0 = b0;
2180 while (1)
2181 {
2182 if (buffer_len == 0)
2183 { //Get new output
2184 if (desc_table[desc_index].flags & VIRTQ_DESC_F_NEXT)
2185 {
2186 //Next one is chained
2187 desc_index = desc_table[desc_index].next;
2188 buffer_map_addr = desc_table[desc_index].addr;
2189 buffer_len = desc_table[desc_index].len;
2190 }
2191 else if (vui->virtio_net_hdr_sz == 12) //MRG is available
2192 {
2193 virtio_net_hdr_mrg_rxbuf_t *hdr =
Damjan Marion586afd72017-04-05 19:18:20 +02002194 &vum->cpus[thread_index].tx_headers[tx_headers_len - 1];
Pierre Pfisterd3eb90e2016-11-29 15:36:14 +00002195
2196 //Move from available to used buffer
Steven97878892017-08-29 09:23:26 -07002197 rxvq->used->ring[rxvq->last_used_idx & rxvq->qsz_mask].id =
Pierre Pfisterd3eb90e2016-11-29 15:36:14 +00002198 desc_head;
Steven97878892017-08-29 09:23:26 -07002199 rxvq->used->ring[rxvq->last_used_idx & rxvq->qsz_mask].len =
Pierre Pfisterd3eb90e2016-11-29 15:36:14 +00002200 desc_len;
2201 vhost_user_log_dirty_ring (vui, rxvq,
2202 ring[rxvq->last_used_idx &
Steven97878892017-08-29 09:23:26 -07002203 rxvq->qsz_mask]);
Pierre Pfisterd3eb90e2016-11-29 15:36:14 +00002204
2205 rxvq->last_avail_idx++;
2206 rxvq->last_used_idx++;
2207 hdr->num_buffers++;
2208 desc_len = 0;
2209
2210 if (PREDICT_FALSE
2211 (rxvq->last_avail_idx == rxvq->avail->idx))
2212 {
2213 //Dequeue queued descriptors for this packet
2214 rxvq->last_used_idx -= hdr->num_buffers - 1;
2215 rxvq->last_avail_idx -= hdr->num_buffers - 1;
2216 error = VHOST_USER_TX_FUNC_ERROR_PKT_DROP_NOBUF;
2217 goto done;
2218 }
2219
2220 desc_table = rxvq->desc;
2221 desc_head = desc_index =
Steven97878892017-08-29 09:23:26 -07002222 rxvq->avail->ring[rxvq->last_avail_idx & rxvq->qsz_mask];
Pierre Pfisterd3eb90e2016-11-29 15:36:14 +00002223 if (PREDICT_FALSE
2224 (rxvq->desc[desc_head].flags & VIRTQ_DESC_F_INDIRECT))
2225 {
2226 //It is seriously unlikely that a driver will put indirect descriptor
2227 //after non-indirect descriptor.
2228 if (PREDICT_FALSE
2229 (rxvq->desc[desc_head].len < sizeof (vring_desc_t)))
2230 {
2231 error = VHOST_USER_TX_FUNC_ERROR_INDIRECT_OVERFLOW;
2232 goto done;
2233 }
2234 if (PREDICT_FALSE
2235 (!(desc_table =
2236 map_guest_mem (vui,
2237 rxvq->desc[desc_index].addr,
2238 &map_hint))))
2239 {
2240 error = VHOST_USER_TX_FUNC_ERROR_MMAP_FAIL;
2241 goto done;
2242 }
2243 desc_index = 0;
2244 }
2245 buffer_map_addr = desc_table[desc_index].addr;
2246 buffer_len = desc_table[desc_index].len;
2247 }
2248 else
2249 {
2250 error = VHOST_USER_TX_FUNC_ERROR_PKT_DROP_NOMRG;
2251 goto done;
2252 }
2253 }
2254
2255 {
Damjan Marion586afd72017-04-05 19:18:20 +02002256 vhost_copy_t *cpy = &vum->cpus[thread_index].copy[copy_len];
Pierre Pfisterd3eb90e2016-11-29 15:36:14 +00002257 copy_len++;
2258 cpy->len = bytes_left;
2259 cpy->len = (cpy->len > buffer_len) ? buffer_len : cpy->len;
2260 cpy->dst = buffer_map_addr;
2261 cpy->src = (uword) vlib_buffer_get_current (current_b0) +
2262 current_b0->current_length - bytes_left;
2263
2264 bytes_left -= cpy->len;
2265 buffer_len -= cpy->len;
2266 buffer_map_addr += cpy->len;
2267 desc_len += cpy->len;
2268
Pierre Pfister14ac8012016-12-08 07:58:47 +00002269 CLIB_PREFETCH (&rxvq->desc, CLIB_CACHE_LINE_BYTES, LOAD);
Pierre Pfisterd3eb90e2016-11-29 15:36:14 +00002270 }
2271
2272 // Check if vlib buffer has more data. If not, get more or break.
2273 if (PREDICT_TRUE (!bytes_left))
2274 {
2275 if (PREDICT_FALSE
2276 (current_b0->flags & VLIB_BUFFER_NEXT_PRESENT))
2277 {
2278 current_b0 = vlib_get_buffer (vm, current_b0->next_buffer);
2279 bytes_left = current_b0->current_length;
2280 }
2281 else
2282 {
2283 //End of packet
2284 break;
2285 }
2286 }
2287 }
2288
2289 //Move from available to used ring
Steven97878892017-08-29 09:23:26 -07002290 rxvq->used->ring[rxvq->last_used_idx & rxvq->qsz_mask].id = desc_head;
2291 rxvq->used->ring[rxvq->last_used_idx & rxvq->qsz_mask].len = desc_len;
Pierre Pfisterd3eb90e2016-11-29 15:36:14 +00002292 vhost_user_log_dirty_ring (vui, rxvq,
Steven97878892017-08-29 09:23:26 -07002293 ring[rxvq->last_used_idx & rxvq->qsz_mask]);
Pierre Pfisterd3eb90e2016-11-29 15:36:14 +00002294 rxvq->last_avail_idx++;
2295 rxvq->last_used_idx++;
2296
2297 if (PREDICT_FALSE (b0->flags & VLIB_BUFFER_IS_TRACED))
2298 {
Damjan Marion586afd72017-04-05 19:18:20 +02002299 vum->cpus[thread_index].current_trace->hdr =
2300 vum->cpus[thread_index].tx_headers[tx_headers_len - 1];
Pierre Pfisterd3eb90e2016-11-29 15:36:14 +00002301 }
2302
2303 n_left--; //At the end for error counting when 'goto done' is invoked
Stevend7727532017-06-09 18:49:17 -07002304
2305 /*
2306 * Do the copy periodically to prevent
2307 * vum->cpus[thread_index].copy array overflow and corrupt memory
2308 */
2309 if (PREDICT_FALSE (copy_len >= VHOST_USER_TX_COPY_THRESHOLD))
2310 {
2311 if (PREDICT_FALSE
2312 (vhost_user_tx_copy (vui, vum->cpus[thread_index].copy,
2313 copy_len, &map_hint)))
2314 {
2315 vlib_error_count (vm, node->node_index,
2316 VHOST_USER_TX_FUNC_ERROR_MMAP_FAIL, 1);
2317 }
2318 copy_len = 0;
2319
2320 /* give buffers back to driver */
2321 CLIB_MEMORY_BARRIER ();
2322 rxvq->used->idx = rxvq->last_used_idx;
2323 vhost_user_log_dirty_ring (vui, rxvq, idx);
2324 }
Pierre Pfisterd3eb90e2016-11-29 15:36:14 +00002325 buffers++;
2326 }
2327
2328done:
2329 //Do the memory copies
2330 if (PREDICT_FALSE
Damjan Marion586afd72017-04-05 19:18:20 +02002331 (vhost_user_tx_copy (vui, vum->cpus[thread_index].copy,
Pierre Pfisterd3eb90e2016-11-29 15:36:14 +00002332 copy_len, &map_hint)))
2333 {
Steven95827e42017-05-18 21:22:00 -07002334 vlib_error_count (vm, node->node_index,
2335 VHOST_USER_TX_FUNC_ERROR_MMAP_FAIL, 1);
Pierre Pfisterd3eb90e2016-11-29 15:36:14 +00002336 }
2337
2338 CLIB_MEMORY_BARRIER ();
2339 rxvq->used->idx = rxvq->last_used_idx;
2340 vhost_user_log_dirty_ring (vui, rxvq, idx);
2341
2342 /*
2343 * When n_left is set, error is always set to something too.
2344 * In case error is due to lack of remaining buffers, we go back up and
2345 * retry.
2346 * The idea is that it is better to waste some time on packets
2347 * that have been processed already than dropping them and get
2348 * more fresh packets with a good likelyhood that they will be dropped too.
2349 * This technique also gives more time to VM driver to pick-up packets.
2350 * In case the traffic flows from physical to virtual interfaces, this
2351 * technique will end-up leveraging the physical NIC buffer in order to
2352 * absorb the VM's CPU jitter.
2353 */
2354 if (n_left && (error == VHOST_USER_TX_FUNC_ERROR_PKT_DROP_NOBUF) && retry)
2355 {
2356 retry--;
2357 goto retry;
Damjan Marion00a9dca2016-08-17 17:05:46 +02002358 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07002359
Ed Warnickecb9cada2015-12-08 15:45:58 -07002360 /* interrupt (call) handling */
Steven7312cc72017-03-15 21:18:55 -07002361 if ((rxvq->callfd_idx != ~0) &&
2362 !(rxvq->avail->flags & VRING_AVAIL_F_NO_INTERRUPT))
Damjan Marion00a9dca2016-08-17 17:05:46 +02002363 {
Pierre Pfisterd3eb90e2016-11-29 15:36:14 +00002364 rxvq->n_since_last_int += frame->n_vectors - n_left;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002365
Damjan Marion00a9dca2016-08-17 17:05:46 +02002366 if (rxvq->n_since_last_int > vum->coalesce_frames)
2367 vhost_user_send_call (vm, rxvq);
2368 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07002369
Pierre Pfistere21c5282016-09-21 08:04:59 +01002370 vhost_user_vring_unlock (vui, qid);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002371
Pierre Pfistere21c5282016-09-21 08:04:59 +01002372done3:
Damjan Marion00a9dca2016-08-17 17:05:46 +02002373 if (PREDICT_FALSE (n_left && error != VHOST_USER_TX_FUNC_ERROR_NONE))
2374 {
2375 vlib_error_count (vm, node->node_index, error, n_left);
2376 vlib_increment_simple_counter
2377 (vnet_main.interface_main.sw_if_counters
2378 + VNET_INTERFACE_COUNTER_DROP,
Stevend7727532017-06-09 18:49:17 -07002379 thread_index, vui->sw_if_index, n_left);
Damjan Marion00a9dca2016-08-17 17:05:46 +02002380 }
Pierre Pfister328e99b2016-02-12 13:18:42 +00002381
Ed Warnickecb9cada2015-12-08 15:45:58 -07002382 vlib_buffer_free (vm, vlib_frame_args (frame), frame->n_vectors);
2383 return frame->n_vectors;
2384}
2385
Stevenf3b53642017-05-01 14:03:02 -07002386static uword
2387vhost_user_send_interrupt_process (vlib_main_t * vm,
2388 vlib_node_runtime_t * rt, vlib_frame_t * f)
2389{
2390 vhost_user_intf_t *vui;
2391 f64 timeout = 3153600000.0 /* 100 years */ ;
2392 uword event_type, *event_data = 0;
2393 vhost_user_main_t *vum = &vhost_user_main;
2394 u16 *queue;
2395 f64 now, poll_time_remaining;
2396 f64 next_timeout;
2397 u8 stop_timer = 0;
2398
2399 while (1)
2400 {
2401 poll_time_remaining =
2402 vlib_process_wait_for_event_or_clock (vm, timeout);
2403 event_type = vlib_process_get_events (vm, &event_data);
2404 vec_reset_length (event_data);
2405
2406 /*
2407 * Use the remaining timeout if it is less than coalesce time to avoid
2408 * resetting the existing timer in the middle of expiration
2409 */
2410 timeout = poll_time_remaining;
2411 if (vlib_process_suspend_time_is_zero (timeout) ||
2412 (timeout > vum->coalesce_time))
2413 timeout = vum->coalesce_time;
2414
2415 now = vlib_time_now (vm);
2416 switch (event_type)
2417 {
2418 case VHOST_USER_EVENT_STOP_TIMER:
2419 stop_timer = 1;
2420 break;
2421
2422 case VHOST_USER_EVENT_START_TIMER:
2423 stop_timer = 0;
2424 if (!vlib_process_suspend_time_is_zero (poll_time_remaining))
2425 break;
2426 /* fall through */
2427
2428 case ~0:
2429 /* *INDENT-OFF* */
2430 pool_foreach (vui, vum->vhost_user_interfaces, {
2431 next_timeout = timeout;
2432 vec_foreach (queue, vui->rx_queues)
2433 {
2434 vhost_user_vring_t *rxvq =
2435 &vui->vrings[VHOST_VRING_IDX_RX (*queue)];
2436 vhost_user_vring_t *txvq =
2437 &vui->vrings[VHOST_VRING_IDX_TX (*queue)];
2438
2439 if (txvq->n_since_last_int)
2440 {
2441 if (now >= txvq->int_deadline)
2442 vhost_user_send_call (vm, txvq);
2443 else
2444 next_timeout = txvq->int_deadline - now;
2445 }
2446
2447 if (rxvq->n_since_last_int)
2448 {
2449 if (now >= rxvq->int_deadline)
2450 vhost_user_send_call (vm, rxvq);
2451 else
2452 next_timeout = rxvq->int_deadline - now;
2453 }
2454
2455 if ((next_timeout < timeout) && (next_timeout > 0.0))
2456 timeout = next_timeout;
2457 }
2458 });
2459 /* *INDENT-ON* */
2460 break;
2461
2462 default:
2463 clib_warning ("BUG: unhandled event type %d", event_type);
2464 break;
2465 }
2466 /* No less than 1 millisecond */
2467 if (timeout < 1e-3)
2468 timeout = 1e-3;
2469 if (stop_timer)
2470 timeout = 3153600000.0;
2471 }
2472 return 0;
2473}
2474
2475/* *INDENT-OFF* */
2476VLIB_REGISTER_NODE (vhost_user_send_interrupt_node,static) = {
2477 .function = vhost_user_send_interrupt_process,
2478 .type = VLIB_NODE_TYPE_PROCESS,
2479 .name = "vhost-user-send-interrupt-process",
2480};
2481/* *INDENT-ON* */
2482
2483static clib_error_t *
2484vhost_user_interface_rx_mode_change (vnet_main_t * vnm, u32 hw_if_index,
2485 u32 qid, vnet_hw_interface_rx_mode mode)
2486{
2487 vlib_main_t *vm = vnm->vlib_main;
2488 vnet_hw_interface_t *hif = vnet_get_hw_interface (vnm, hw_if_index);
2489 vhost_user_main_t *vum = &vhost_user_main;
2490 vhost_user_intf_t *vui =
2491 pool_elt_at_index (vum->vhost_user_interfaces, hif->dev_instance);
2492 vhost_user_vring_t *txvq = &vui->vrings[VHOST_VRING_IDX_TX (qid)];
2493
2494 if ((mode == VNET_HW_INTERFACE_RX_MODE_INTERRUPT) ||
2495 (mode == VNET_HW_INTERFACE_RX_MODE_ADAPTIVE))
2496 {
Steven49a04b92017-07-29 08:56:08 -07002497 if (txvq->kickfd_idx == ~0)
2498 {
2499 // We cannot support interrupt mode if the driver opts out
2500 return clib_error_return (0, "Driver does not support interrupt");
2501 }
Stevenf3b53642017-05-01 14:03:02 -07002502 if (txvq->mode == VNET_HW_INTERFACE_RX_MODE_POLLING)
2503 {
2504 vum->ifq_count++;
2505 // Start the timer if this is the first encounter on interrupt
2506 // interface/queue
2507 if ((vum->ifq_count == 1) &&
2508 (vum->coalesce_time > 0.0) && (vum->coalesce_frames > 0))
2509 vlib_process_signal_event (vm,
2510 vhost_user_send_interrupt_node.index,
2511 VHOST_USER_EVENT_START_TIMER, 0);
2512 }
2513 }
2514 else if (mode == VNET_HW_INTERFACE_RX_MODE_POLLING)
2515 {
2516 if (((txvq->mode == VNET_HW_INTERFACE_RX_MODE_INTERRUPT) ||
2517 (txvq->mode == VNET_HW_INTERFACE_RX_MODE_ADAPTIVE)) &&
2518 vum->ifq_count)
2519 {
2520 vum->ifq_count--;
2521 // Stop the timer if there is no more interrupt interface/queue
2522 if ((vum->ifq_count == 0) &&
2523 (vum->coalesce_time > 0.0) && (vum->coalesce_frames > 0))
2524 vlib_process_signal_event (vm,
2525 vhost_user_send_interrupt_node.index,
2526 VHOST_USER_EVENT_STOP_TIMER, 0);
2527 }
2528 }
2529
2530 txvq->mode = mode;
2531 if (mode == VNET_HW_INTERFACE_RX_MODE_POLLING)
2532 txvq->used->flags = VRING_USED_F_NO_NOTIFY;
2533 else if ((mode == VNET_HW_INTERFACE_RX_MODE_ADAPTIVE) ||
2534 (mode == VNET_HW_INTERFACE_RX_MODE_INTERRUPT))
2535 txvq->used->flags = 0;
2536 else
2537 {
2538 clib_warning ("BUG: unhandled mode %d changed for if %d queue %d", mode,
2539 hw_if_index, qid);
2540 return clib_error_return (0, "unsupported");
2541 }
2542
2543 return 0;
2544}
2545
Ed Warnickecb9cada2015-12-08 15:45:58 -07002546static clib_error_t *
Damjan Marion00a9dca2016-08-17 17:05:46 +02002547vhost_user_interface_admin_up_down (vnet_main_t * vnm, u32 hw_if_index,
2548 u32 flags)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002549{
Damjan Marion00a9dca2016-08-17 17:05:46 +02002550 vnet_hw_interface_t *hif = vnet_get_hw_interface (vnm, hw_if_index);
Damjan Marion00a9dca2016-08-17 17:05:46 +02002551 vhost_user_main_t *vum = &vhost_user_main;
2552 vhost_user_intf_t *vui =
Pierre Pfisterdbb3c252016-11-22 10:33:34 +00002553 pool_elt_at_index (vum->vhost_user_interfaces, hif->dev_instance);
Mohsin Kazmia50a14c2018-04-25 15:58:05 +02002554 u32 hw_flags = 0;
2555 vui->admin_up = (flags & VNET_SW_INTERFACE_FLAG_ADMIN_UP) != 0;
2556 hw_flags = vui->admin_up ? VNET_HW_INTERFACE_FLAG_LINK_UP : 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002557
Mohsin Kazmia50a14c2018-04-25 15:58:05 +02002558 vnet_hw_interface_set_flags (vnm, vui->hw_if_index, hw_flags);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002559
2560 return /* no error */ 0;
2561}
2562
Damjan Marion00a9dca2016-08-17 17:05:46 +02002563/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07002564VNET_DEVICE_CLASS (vhost_user_dev_class,static) = {
2565 .name = "vhost-user",
Pierre Pfisterdbb3c252016-11-22 10:33:34 +00002566 .tx_function = vhost_user_tx,
Ed Warnickecb9cada2015-12-08 15:45:58 -07002567 .tx_function_n_errors = VHOST_USER_TX_FUNC_N_ERROR,
2568 .tx_function_error_strings = vhost_user_tx_func_error_strings,
2569 .format_device_name = format_vhost_user_interface_name,
2570 .name_renumber = vhost_user_name_renumber,
2571 .admin_up_down_function = vhost_user_interface_admin_up_down,
Stevenf3b53642017-05-01 14:03:02 -07002572 .rx_mode_change_function = vhost_user_interface_rx_mode_change,
Pierre Pfister116ea4b2016-11-08 15:49:28 +00002573 .format_tx_trace = format_vhost_trace,
Ed Warnickecb9cada2015-12-08 15:45:58 -07002574};
2575
Damjan Marion1c80e832016-05-11 23:07:18 +02002576VLIB_DEVICE_TX_FUNCTION_MULTIARCH (vhost_user_dev_class,
Pierre Pfisterdbb3c252016-11-22 10:33:34 +00002577 vhost_user_tx)
Damjan Marion00a9dca2016-08-17 17:05:46 +02002578/* *INDENT-ON* */
Damjan Marion1c80e832016-05-11 23:07:18 +02002579
Ed Warnickecb9cada2015-12-08 15:45:58 -07002580static uword
2581vhost_user_process (vlib_main_t * vm,
Damjan Marion00a9dca2016-08-17 17:05:46 +02002582 vlib_node_runtime_t * rt, vlib_frame_t * f)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002583{
Damjan Marion00a9dca2016-08-17 17:05:46 +02002584 vhost_user_main_t *vum = &vhost_user_main;
2585 vhost_user_intf_t *vui;
2586 struct sockaddr_un sun;
2587 int sockfd;
Damjan Marion56dd5432017-09-08 19:52:02 +02002588 clib_file_t template = { 0 };
Damjan Marion00a9dca2016-08-17 17:05:46 +02002589 f64 timeout = 3153600000.0 /* 100 years */ ;
2590 uword *event_data = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002591
Steven0d150bb2017-03-22 12:05:19 -07002592 sockfd = -1;
Damjan Marion00a9dca2016-08-17 17:05:46 +02002593 sun.sun_family = AF_UNIX;
2594 template.read_function = vhost_user_socket_read;
2595 template.error_function = vhost_user_socket_error;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002596
Damjan Marion00a9dca2016-08-17 17:05:46 +02002597 while (1)
2598 {
2599 vlib_process_wait_for_event_or_clock (vm, timeout);
2600 vlib_process_get_events (vm, &event_data);
2601 vec_reset_length (event_data);
2602
2603 timeout = 3.0;
2604
Pierre Pfisterdbb3c252016-11-22 10:33:34 +00002605 /* *INDENT-OFF* */
2606 pool_foreach (vui, vum->vhost_user_interfaces, {
Damjan Marion00a9dca2016-08-17 17:05:46 +02002607
Pierre Pfisterdbb3c252016-11-22 10:33:34 +00002608 if (vui->unix_server_index == ~0) { //Nothing to do for server sockets
Damjan Marion56dd5432017-09-08 19:52:02 +02002609 if (vui->clib_file_index == ~0)
Pierre Pfisterdbb3c252016-11-22 10:33:34 +00002610 {
Steven0d150bb2017-03-22 12:05:19 -07002611 if ((sockfd < 0) &&
2612 ((sockfd = socket (AF_UNIX, SOCK_STREAM, 0)) < 0))
2613 {
2614 /*
2615 * 1st time error or new error for this interface,
2616 * spit out the message and record the error
2617 */
2618 if (!vui->sock_errno || (vui->sock_errno != errno))
2619 {
2620 clib_unix_warning
2621 ("Error: Could not open unix socket for %s",
2622 vui->sock_filename);
2623 vui->sock_errno = errno;
2624 }
2625 continue;
2626 }
2627
Pierre Pfisterdbb3c252016-11-22 10:33:34 +00002628 /* try to connect */
2629 strncpy (sun.sun_path, (char *) vui->sock_filename,
2630 sizeof (sun.sun_path) - 1);
Damjan Marion00a9dca2016-08-17 17:05:46 +02002631
Andrew Yourtchenko0c3d4672017-01-03 16:52:22 +00002632 /* Avoid hanging VPP if the other end does not accept */
Dave Barach8f544962017-01-18 10:23:22 -05002633 if (fcntl(sockfd, F_SETFL, O_NONBLOCK) < 0)
2634 clib_unix_warning ("fcntl");
2635
Pierre Pfisterdbb3c252016-11-22 10:33:34 +00002636 if (connect (sockfd, (struct sockaddr *) &sun,
2637 sizeof (struct sockaddr_un)) == 0)
2638 {
Andrew Yourtchenko0c3d4672017-01-03 16:52:22 +00002639 /* Set the socket to blocking as it was before */
Dave Barach8f544962017-01-18 10:23:22 -05002640 if (fcntl(sockfd, F_SETFL, 0) < 0)
2641 clib_unix_warning ("fcntl2");
2642
Pierre Pfisterdbb3c252016-11-22 10:33:34 +00002643 vui->sock_errno = 0;
2644 template.file_descriptor = sockfd;
2645 template.private_data =
2646 vui - vhost_user_main.vhost_user_interfaces;
Damjan Marion56dd5432017-09-08 19:52:02 +02002647 vui->clib_file_index = clib_file_add (&file_main, &template);
Damjan Marion00a9dca2016-08-17 17:05:46 +02002648
Steven0d150bb2017-03-22 12:05:19 -07002649 /* This sockfd is considered consumed */
2650 sockfd = -1;
Pierre Pfisterdbb3c252016-11-22 10:33:34 +00002651 }
2652 else
2653 {
2654 vui->sock_errno = errno;
2655 }
2656 }
2657 else
2658 {
2659 /* check if socket is alive */
2660 int error = 0;
2661 socklen_t len = sizeof (error);
Damjan Marion56dd5432017-09-08 19:52:02 +02002662 int fd = UNIX_GET_FD(vui->clib_file_index);
Pierre Pfisterdbb3c252016-11-22 10:33:34 +00002663 int retval =
2664 getsockopt (fd, SOL_SOCKET, SO_ERROR, &error, &len);
Damjan Marion00a9dca2016-08-17 17:05:46 +02002665
Pierre Pfisterdbb3c252016-11-22 10:33:34 +00002666 if (retval)
2667 {
2668 DBG_SOCK ("getsockopt returned %d", retval);
2669 vhost_user_if_disconnect (vui);
2670 }
2671 }
Damjan Marion00a9dca2016-08-17 17:05:46 +02002672 }
Pierre Pfisterdbb3c252016-11-22 10:33:34 +00002673 });
2674 /* *INDENT-ON* */
Damjan Marion00a9dca2016-08-17 17:05:46 +02002675 }
2676 return 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002677}
2678
Damjan Marion00a9dca2016-08-17 17:05:46 +02002679/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07002680VLIB_REGISTER_NODE (vhost_user_process_node,static) = {
2681 .function = vhost_user_process,
2682 .type = VLIB_NODE_TYPE_PROCESS,
2683 .name = "vhost-user-process",
2684};
Damjan Marion00a9dca2016-08-17 17:05:46 +02002685/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07002686
Pierre Pfisterdbb3c252016-11-22 10:33:34 +00002687/**
2688 * Disables and reset interface structure.
2689 * It can then be either init again, or removed from used interfaces.
2690 */
2691static void
2692vhost_user_term_if (vhost_user_intf_t * vui)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002693{
Ole Troan553a4112017-01-10 10:07:04 +01002694 int q;
Steven5445f5f2017-04-25 16:16:00 -07002695 vhost_user_main_t *vum = &vhost_user_main;
Ole Troan553a4112017-01-10 10:07:04 +01002696
Ed Warnickecb9cada2015-12-08 15:45:58 -07002697 // disconnect interface sockets
Damjan Marion00a9dca2016-08-17 17:05:46 +02002698 vhost_user_if_disconnect (vui);
Pierre Pfisterfbb2ef62016-11-16 02:43:29 +00002699 vhost_user_update_iface_state (vui);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002700
Ole Troan553a4112017-01-10 10:07:04 +01002701 for (q = 0; q < VHOST_VRING_MAX_N; q++)
2702 {
2703 clib_mem_free ((void *) vui->vring_locks[q]);
2704 }
2705
Pierre Pfisterdbb3c252016-11-22 10:33:34 +00002706 if (vui->unix_server_index != ~0)
2707 {
2708 //Close server socket
Damjan Marion56dd5432017-09-08 19:52:02 +02002709 clib_file_t *uf = pool_elt_at_index (file_main.file_pool,
Pierre Pfisterdbb3c252016-11-22 10:33:34 +00002710 vui->unix_server_index);
Damjan Marion56dd5432017-09-08 19:52:02 +02002711 clib_file_del (&file_main, uf);
Pierre Pfisterdbb3c252016-11-22 10:33:34 +00002712 vui->unix_server_index = ~0;
Steven53129422017-04-21 13:31:50 -07002713 unlink (vui->sock_filename);
Pierre Pfisterdbb3c252016-11-22 10:33:34 +00002714 }
Steven5445f5f2017-04-25 16:16:00 -07002715
2716 mhash_unset (&vum->if_index_by_sock_name, vui->sock_filename,
2717 &vui->if_index);
Pierre Pfisterdbb3c252016-11-22 10:33:34 +00002718}
Ed Warnickecb9cada2015-12-08 15:45:58 -07002719
Pierre Pfisterdbb3c252016-11-22 10:33:34 +00002720int
2721vhost_user_delete_if (vnet_main_t * vnm, vlib_main_t * vm, u32 sw_if_index)
2722{
2723 vhost_user_main_t *vum = &vhost_user_main;
2724 vhost_user_intf_t *vui;
2725 int rv = 0;
2726 vnet_hw_interface_t *hwif;
Stevenf3b53642017-05-01 14:03:02 -07002727 u16 *queue;
Pierre Pfisterdbb3c252016-11-22 10:33:34 +00002728
2729 if (!(hwif = vnet_get_sup_hw_interface (vnm, sw_if_index)) ||
2730 hwif->dev_class_index != vhost_user_dev_class.index)
2731 return VNET_API_ERROR_INVALID_SW_IF_INDEX;
2732
2733 DBG_SOCK ("Deleting vhost-user interface %s (instance %d)",
2734 hwif->name, hwif->dev_instance);
2735
2736 vui = pool_elt_at_index (vum->vhost_user_interfaces, hwif->dev_instance);
2737
Stevenf3b53642017-05-01 14:03:02 -07002738 vec_foreach (queue, vui->rx_queues)
2739 {
2740 vhost_user_vring_t *txvq;
2741
2742 txvq = &vui->vrings[VHOST_VRING_IDX_TX (*queue)];
2743 if ((vum->ifq_count > 0) &&
2744 ((txvq->mode == VNET_HW_INTERFACE_RX_MODE_INTERRUPT) ||
2745 (txvq->mode == VNET_HW_INTERFACE_RX_MODE_ADAPTIVE)))
2746 {
2747 vum->ifq_count--;
2748 // Stop the timer if there is no more interrupt interface/queue
2749 if ((vum->ifq_count == 0) &&
2750 (vum->coalesce_time > 0.0) && (vum->coalesce_frames > 0))
2751 {
2752 vlib_process_signal_event (vm,
2753 vhost_user_send_interrupt_node.index,
2754 VHOST_USER_EVENT_STOP_TIMER, 0);
2755 break;
2756 }
2757 }
2758 }
2759
Pierre Pfisterdbb3c252016-11-22 10:33:34 +00002760 // Disable and reset interface
2761 vhost_user_term_if (vui);
2762
Pierre Pfisterdbb3c252016-11-22 10:33:34 +00002763 // Reset renumbered iface
2764 if (hwif->dev_instance <
2765 vec_len (vum->show_dev_instance_by_real_dev_instance))
2766 vum->show_dev_instance_by_real_dev_instance[hwif->dev_instance] = ~0;
2767
2768 // Delete ethernet interface
Ed Warnickecb9cada2015-12-08 15:45:58 -07002769 ethernet_delete_interface (vnm, vui->hw_if_index);
Wojciech Decd8e47872017-01-17 21:45:11 +01002770
2771 // Back to pool
2772 pool_put (vum->vhost_user_interfaces, vui);
2773
Ed Warnickecb9cada2015-12-08 15:45:58 -07002774 return rv;
2775}
2776
Steven53129422017-04-21 13:31:50 -07002777static clib_error_t *
2778vhost_user_exit (vlib_main_t * vm)
2779{
2780 vnet_main_t *vnm = vnet_get_main ();
2781 vhost_user_main_t *vum = &vhost_user_main;
2782 vhost_user_intf_t *vui;
2783
Steven41748862017-04-25 13:49:51 -07002784 vlib_worker_thread_barrier_sync (vlib_get_main ());
Steven53129422017-04-21 13:31:50 -07002785 /* *INDENT-OFF* */
2786 pool_foreach (vui, vum->vhost_user_interfaces, {
2787 vhost_user_delete_if (vnm, vm, vui->sw_if_index);
2788 });
2789 /* *INDENT-ON* */
Steven41748862017-04-25 13:49:51 -07002790 vlib_worker_thread_barrier_release (vlib_get_main ());
Steven53129422017-04-21 13:31:50 -07002791 return 0;
2792}
2793
2794VLIB_MAIN_LOOP_EXIT_FUNCTION (vhost_user_exit);
2795
Pierre Pfisterdbb3c252016-11-22 10:33:34 +00002796/**
2797 * Open server unix socket on specified sock_filename.
2798 */
Damjan Marion00a9dca2016-08-17 17:05:46 +02002799static int
Pierre Pfisterdbb3c252016-11-22 10:33:34 +00002800vhost_user_init_server_sock (const char *sock_filename, int *sock_fd)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002801{
Pierre Pfister5afccb22016-07-25 14:32:02 +01002802 int rv = 0;
Damjan Marion00a9dca2016-08-17 17:05:46 +02002803 struct sockaddr_un un = { };
Ed Warnickecb9cada2015-12-08 15:45:58 -07002804 int fd;
2805 /* create listening socket */
Pierre Pfisterdbb3c252016-11-22 10:33:34 +00002806 if ((fd = socket (AF_UNIX, SOCK_STREAM, 0)) < 0)
2807 return VNET_API_ERROR_SYSCALL_ERROR_1;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002808
2809 un.sun_family = AF_UNIX;
Damjan Marion00a9dca2016-08-17 17:05:46 +02002810 strncpy ((char *) un.sun_path, (char *) sock_filename,
2811 sizeof (un.sun_path) - 1);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002812
2813 /* remove if exists */
Damjan Marion00a9dca2016-08-17 17:05:46 +02002814 unlink ((char *) sock_filename);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002815
Damjan Marion00a9dca2016-08-17 17:05:46 +02002816 if (bind (fd, (struct sockaddr *) &un, sizeof (un)) == -1)
2817 {
2818 rv = VNET_API_ERROR_SYSCALL_ERROR_2;
2819 goto error;
2820 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07002821
Damjan Marion00a9dca2016-08-17 17:05:46 +02002822 if (listen (fd, 1) == -1)
2823 {
2824 rv = VNET_API_ERROR_SYSCALL_ERROR_3;
2825 goto error;
2826 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07002827
Pierre Pfisterdbb3c252016-11-22 10:33:34 +00002828 *sock_fd = fd;
2829 return 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002830
2831error:
Damjan Marion00a9dca2016-08-17 17:05:46 +02002832 close (fd);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002833 return rv;
2834}
2835
Pierre Pfisterdbb3c252016-11-22 10:33:34 +00002836/**
2837 * Create ethernet interface for vhost user interface.
2838 */
Damjan Marion00a9dca2016-08-17 17:05:46 +02002839static void
2840vhost_user_create_ethernet (vnet_main_t * vnm, vlib_main_t * vm,
2841 vhost_user_intf_t * vui, u8 * hwaddress)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002842{
Damjan Marion00a9dca2016-08-17 17:05:46 +02002843 vhost_user_main_t *vum = &vhost_user_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002844 u8 hwaddr[6];
Damjan Marion00a9dca2016-08-17 17:05:46 +02002845 clib_error_t *error;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002846
2847 /* create hw and sw interface */
Damjan Marion00a9dca2016-08-17 17:05:46 +02002848 if (hwaddress)
2849 {
2850 clib_memcpy (hwaddr, hwaddress, 6);
2851 }
2852 else
2853 {
Pierre Pfisterdbb3c252016-11-22 10:33:34 +00002854 random_u32 (&vum->random);
2855 clib_memcpy (hwaddr + 2, &vum->random, sizeof (vum->random));
Damjan Marion00a9dca2016-08-17 17:05:46 +02002856 hwaddr[0] = 2;
2857 hwaddr[1] = 0xfe;
2858 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07002859
2860 error = ethernet_register_interface
2861 (vnm,
2862 vhost_user_dev_class.index,
Damjan Marion00a9dca2016-08-17 17:05:46 +02002863 vui - vum->vhost_user_interfaces /* device instance */ ,
2864 hwaddr /* ethernet address */ ,
2865 &vui->hw_if_index, 0 /* flag change */ );
Pierre Pfisterdbb3c252016-11-22 10:33:34 +00002866
Ed Warnickecb9cada2015-12-08 15:45:58 -07002867 if (error)
2868 clib_error_report (error);
Pierre Pfister328e99b2016-02-12 13:18:42 +00002869
Damjan Marionfe7d4a22018-04-13 19:43:39 +02002870 vnet_hw_interface_t *hi = vnet_get_hw_interface (vnm, vui->hw_if_index);
2871 hi->max_l3_packet_bytes[VLIB_RX] = hi->max_l3_packet_bytes[VLIB_TX] = 9000;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002872}
2873
Pierre Pfisterdbb3c252016-11-22 10:33:34 +00002874/*
2875 * Initialize vui with specified attributes
2876 */
Damjan Marion00a9dca2016-08-17 17:05:46 +02002877static void
2878vhost_user_vui_init (vnet_main_t * vnm,
Pierre Pfisterdbb3c252016-11-22 10:33:34 +00002879 vhost_user_intf_t * vui,
2880 int server_sock_fd,
Damjan Marion00a9dca2016-08-17 17:05:46 +02002881 const char *sock_filename,
Stevenf3b53642017-05-01 14:03:02 -07002882 u64 feature_mask, u32 * sw_if_index)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002883{
Damjan Marion00a9dca2016-08-17 17:05:46 +02002884 vnet_sw_interface_t *sw;
Yoann Desmouceaux4667c222016-02-24 22:51:00 +01002885 int q;
Steven5445f5f2017-04-25 16:16:00 -07002886 vhost_user_main_t *vum = &vhost_user_main;
Stevenf3b53642017-05-01 14:03:02 -07002887 vnet_hw_interface_t *hw;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002888
Stevenf3b53642017-05-01 14:03:02 -07002889 hw = vnet_get_hw_interface (vnm, vui->hw_if_index);
2890 sw = vnet_get_hw_sw_interface (vnm, vui->hw_if_index);
Pierre Pfisterdbb3c252016-11-22 10:33:34 +00002891 if (server_sock_fd != -1)
2892 {
Damjan Marion56dd5432017-09-08 19:52:02 +02002893 clib_file_t template = { 0 };
Pierre Pfisterdbb3c252016-11-22 10:33:34 +00002894 template.read_function = vhost_user_socksvr_accept_ready;
2895 template.file_descriptor = server_sock_fd;
Steven5445f5f2017-04-25 16:16:00 -07002896 template.private_data = vui - vum->vhost_user_interfaces; //hw index
Damjan Marion56dd5432017-09-08 19:52:02 +02002897 vui->unix_server_index = clib_file_add (&file_main, &template);
Pierre Pfisterdbb3c252016-11-22 10:33:34 +00002898 }
2899 else
2900 {
2901 vui->unix_server_index = ~0;
2902 }
2903
Ed Warnickecb9cada2015-12-08 15:45:58 -07002904 vui->sw_if_index = sw->sw_if_index;
Damjan Marion00a9dca2016-08-17 17:05:46 +02002905 strncpy (vui->sock_filename, sock_filename,
2906 ARRAY_LEN (vui->sock_filename) - 1);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002907 vui->sock_errno = 0;
2908 vui->is_up = 0;
2909 vui->feature_mask = feature_mask;
Damjan Marion56dd5432017-09-08 19:52:02 +02002910 vui->clib_file_index = ~0;
Yoann Desmouceaux4667c222016-02-24 22:51:00 +01002911 vui->log_base_addr = 0;
Steven5445f5f2017-04-25 16:16:00 -07002912 vui->if_index = vui - vum->vhost_user_interfaces;
2913 mhash_set_mem (&vum->if_index_by_sock_name, vui->sock_filename,
2914 &vui->if_index, 0);
Yoann Desmouceaux4667c222016-02-24 22:51:00 +01002915
Pierre Pfistere21c5282016-09-21 08:04:59 +01002916 for (q = 0; q < VHOST_VRING_MAX_N; q++)
2917 vhost_user_vring_init (vui, q);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002918
Stevenf3b53642017-05-01 14:03:02 -07002919 hw->flags |= VNET_HW_INTERFACE_FLAG_SUPPORTS_INT_MODE;
Damjan Marion00a9dca2016-08-17 17:05:46 +02002920 vnet_hw_interface_set_flags (vnm, vui->hw_if_index, 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002921
2922 if (sw_if_index)
Damjan Marion00a9dca2016-08-17 17:05:46 +02002923 *sw_if_index = vui->sw_if_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002924
Pierre Pfistere21c5282016-09-21 08:04:59 +01002925 for (q = 0; q < VHOST_VRING_MAX_N; q++)
Damjan Marion00a9dca2016-08-17 17:05:46 +02002926 {
Pierre Pfistere21c5282016-09-21 08:04:59 +01002927 vui->vring_locks[q] = clib_mem_alloc_aligned (CLIB_CACHE_LINE_BYTES,
2928 CLIB_CACHE_LINE_BYTES);
2929 memset ((void *) vui->vring_locks[q], 0, CLIB_CACHE_LINE_BYTES);
Damjan Marion00a9dca2016-08-17 17:05:46 +02002930 }
Pierre Pfistere21c5282016-09-21 08:04:59 +01002931
2932 vec_validate (vui->per_cpu_tx_qid,
2933 vlib_get_thread_main ()->n_vlib_mains - 1);
2934 vhost_user_tx_thread_placement (vui);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002935}
2936
Damjan Marion00a9dca2016-08-17 17:05:46 +02002937int
2938vhost_user_create_if (vnet_main_t * vnm, vlib_main_t * vm,
2939 const char *sock_filename,
2940 u8 is_server,
2941 u32 * sw_if_index,
2942 u64 feature_mask,
Stevenf3b53642017-05-01 14:03:02 -07002943 u8 renumber, u32 custom_dev_instance, u8 * hwaddr)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002944{
Damjan Marion00a9dca2016-08-17 17:05:46 +02002945 vhost_user_intf_t *vui = NULL;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002946 u32 sw_if_idx = ~0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002947 int rv = 0;
Pierre Pfisterdbb3c252016-11-22 10:33:34 +00002948 int server_sock_fd = -1;
Steven7312cc72017-03-15 21:18:55 -07002949 vhost_user_main_t *vum = &vhost_user_main;
Steven5445f5f2017-04-25 16:16:00 -07002950 uword *if_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002951
Wojciech Dec3cd9eed2017-01-03 10:38:37 +01002952 if (sock_filename == NULL || !(strlen (sock_filename) > 0))
2953 {
2954 return VNET_API_ERROR_INVALID_ARGUMENT;
2955 }
2956
Steven5445f5f2017-04-25 16:16:00 -07002957 if_index = mhash_get (&vum->if_index_by_sock_name, (void *) sock_filename);
2958 if (if_index)
2959 {
2960 if (sw_if_index)
2961 {
2962 vui = &vum->vhost_user_interfaces[*if_index];
2963 *sw_if_index = vui->sw_if_index;
2964 }
2965 return VNET_API_ERROR_IF_ALREADY_EXISTS;
2966 }
2967
Damjan Marion00a9dca2016-08-17 17:05:46 +02002968 if (is_server)
2969 {
Pierre Pfisterdbb3c252016-11-22 10:33:34 +00002970 if ((rv =
2971 vhost_user_init_server_sock (sock_filename, &server_sock_fd)) != 0)
Damjan Marion00a9dca2016-08-17 17:05:46 +02002972 {
2973 return rv;
2974 }
2975 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07002976
Pierre Pfisterdbb3c252016-11-22 10:33:34 +00002977 pool_get (vhost_user_main.vhost_user_interfaces, vui);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002978
Pierre Pfisteref65cb02016-02-19 13:52:44 +00002979 vhost_user_create_ethernet (vnm, vm, vui, hwaddr);
Pierre Pfisterdbb3c252016-11-22 10:33:34 +00002980 vhost_user_vui_init (vnm, vui, server_sock_fd, sock_filename,
Stevenf3b53642017-05-01 14:03:02 -07002981 feature_mask, &sw_if_idx);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002982
Damjan Marion00a9dca2016-08-17 17:05:46 +02002983 if (renumber)
Pierre Pfisterdbb3c252016-11-22 10:33:34 +00002984 vnet_interface_name_renumber (sw_if_idx, custom_dev_instance);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002985
2986 if (sw_if_index)
Damjan Marion00a9dca2016-08-17 17:05:46 +02002987 *sw_if_index = sw_if_idx;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002988
Pierre Pfisterdbb3c252016-11-22 10:33:34 +00002989 // Process node must connect
2990 vlib_process_signal_event (vm, vhost_user_process_node.index, 0, 0);
Steven7312cc72017-03-15 21:18:55 -07002991
Ed Warnickecb9cada2015-12-08 15:45:58 -07002992 return rv;
2993}
2994
Damjan Marion00a9dca2016-08-17 17:05:46 +02002995int
2996vhost_user_modify_if (vnet_main_t * vnm, vlib_main_t * vm,
2997 const char *sock_filename,
2998 u8 is_server,
2999 u32 sw_if_index,
Stevenf3b53642017-05-01 14:03:02 -07003000 u64 feature_mask, u8 renumber, u32 custom_dev_instance)
Ed Warnickecb9cada2015-12-08 15:45:58 -07003001{
Damjan Marion00a9dca2016-08-17 17:05:46 +02003002 vhost_user_main_t *vum = &vhost_user_main;
3003 vhost_user_intf_t *vui = NULL;
Ed Warnickecb9cada2015-12-08 15:45:58 -07003004 u32 sw_if_idx = ~0;
Pierre Pfisterdbb3c252016-11-22 10:33:34 +00003005 int server_sock_fd = -1;
Ed Warnickecb9cada2015-12-08 15:45:58 -07003006 int rv = 0;
Pierre Pfisterdbb3c252016-11-22 10:33:34 +00003007 vnet_hw_interface_t *hwif;
Steven5445f5f2017-04-25 16:16:00 -07003008 uword *if_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -07003009
Pierre Pfisterdbb3c252016-11-22 10:33:34 +00003010 if (!(hwif = vnet_get_sup_hw_interface (vnm, sw_if_index)) ||
3011 hwif->dev_class_index != vhost_user_dev_class.index)
3012 return VNET_API_ERROR_INVALID_SW_IF_INDEX;
Ed Warnickecb9cada2015-12-08 15:45:58 -07003013
Steven5445f5f2017-04-25 16:16:00 -07003014 if (sock_filename == NULL || !(strlen (sock_filename) > 0))
3015 return VNET_API_ERROR_INVALID_ARGUMENT;
3016
Pierre Pfisterdbb3c252016-11-22 10:33:34 +00003017 vui = vec_elt_at_index (vum->vhost_user_interfaces, hwif->dev_instance);
Ed Warnickecb9cada2015-12-08 15:45:58 -07003018
Steven5445f5f2017-04-25 16:16:00 -07003019 /*
3020 * Disallow changing the interface to have the same path name
3021 * as other interface
3022 */
3023 if_index = mhash_get (&vum->if_index_by_sock_name, (void *) sock_filename);
3024 if (if_index && (*if_index != vui->if_index))
3025 return VNET_API_ERROR_IF_ALREADY_EXISTS;
3026
Pierre Pfisterdbb3c252016-11-22 10:33:34 +00003027 // First try to open server socket
Damjan Marion00a9dca2016-08-17 17:05:46 +02003028 if (is_server)
Pierre Pfisterdbb3c252016-11-22 10:33:34 +00003029 if ((rv = vhost_user_init_server_sock (sock_filename,
3030 &server_sock_fd)) != 0)
3031 return rv;
Ed Warnickecb9cada2015-12-08 15:45:58 -07003032
Pierre Pfisterdbb3c252016-11-22 10:33:34 +00003033 vhost_user_term_if (vui);
3034 vhost_user_vui_init (vnm, vui, server_sock_fd,
Stevenf3b53642017-05-01 14:03:02 -07003035 sock_filename, feature_mask, &sw_if_idx);
Ed Warnickecb9cada2015-12-08 15:45:58 -07003036
Damjan Marion00a9dca2016-08-17 17:05:46 +02003037 if (renumber)
Pierre Pfisterdbb3c252016-11-22 10:33:34 +00003038 vnet_interface_name_renumber (sw_if_idx, custom_dev_instance);
Ed Warnickecb9cada2015-12-08 15:45:58 -07003039
Pierre Pfisterdbb3c252016-11-22 10:33:34 +00003040 // Process node must connect
3041 vlib_process_signal_event (vm, vhost_user_process_node.index, 0, 0);
Steven7312cc72017-03-15 21:18:55 -07003042
Ed Warnickecb9cada2015-12-08 15:45:58 -07003043 return rv;
3044}
3045
3046clib_error_t *
3047vhost_user_connect_command_fn (vlib_main_t * vm,
Damjan Marion00a9dca2016-08-17 17:05:46 +02003048 unformat_input_t * input,
3049 vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -07003050{
Damjan Marion00a9dca2016-08-17 17:05:46 +02003051 unformat_input_t _line_input, *line_input = &_line_input;
3052 u8 *sock_filename = NULL;
Ed Warnickecb9cada2015-12-08 15:45:58 -07003053 u32 sw_if_index;
3054 u8 is_server = 0;
Pierre Pfistere21c5282016-09-21 08:04:59 +01003055 u64 feature_mask = (u64) ~ (0ULL);
Ed Warnickecb9cada2015-12-08 15:45:58 -07003056 u8 renumber = 0;
3057 u32 custom_dev_instance = ~0;
Pierre Pfisteref65cb02016-02-19 13:52:44 +00003058 u8 hwaddr[6];
3059 u8 *hw = NULL;
Billy McFalla9a20e72017-02-15 11:39:12 -05003060 clib_error_t *error = NULL;
Ed Warnickecb9cada2015-12-08 15:45:58 -07003061
3062 /* Get a line of input. */
Damjan Marion00a9dca2016-08-17 17:05:46 +02003063 if (!unformat_user (input, unformat_line_input, line_input))
Ed Warnickecb9cada2015-12-08 15:45:58 -07003064 return 0;
3065
Damjan Marion00a9dca2016-08-17 17:05:46 +02003066 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
3067 {
3068 if (unformat (line_input, "socket %s", &sock_filename))
3069 ;
3070 else if (unformat (line_input, "server"))
3071 is_server = 1;
3072 else if (unformat (line_input, "feature-mask 0x%llx", &feature_mask))
3073 ;
3074 else
3075 if (unformat
3076 (line_input, "hwaddr %U", unformat_ethernet_address, hwaddr))
3077 hw = hwaddr;
3078 else if (unformat (line_input, "renumber %d", &custom_dev_instance))
3079 {
3080 renumber = 1;
3081 }
3082 else
Billy McFalla9a20e72017-02-15 11:39:12 -05003083 {
3084 error = clib_error_return (0, "unknown input `%U'",
3085 format_unformat_error, line_input);
3086 goto done;
3087 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07003088 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07003089
Damjan Marion00a9dca2016-08-17 17:05:46 +02003090 vnet_main_t *vnm = vnet_get_main ();
Ed Warnickecb9cada2015-12-08 15:45:58 -07003091
Pierre Pfister5afccb22016-07-25 14:32:02 +01003092 int rv;
Damjan Marion00a9dca2016-08-17 17:05:46 +02003093 if ((rv = vhost_user_create_if (vnm, vm, (char *) sock_filename,
3094 is_server, &sw_if_index, feature_mask,
Stevenf3b53642017-05-01 14:03:02 -07003095 renumber, custom_dev_instance, hw)))
Damjan Marion00a9dca2016-08-17 17:05:46 +02003096 {
Billy McFalla9a20e72017-02-15 11:39:12 -05003097 error = clib_error_return (0, "vhost_user_create_if returned %d", rv);
3098 goto done;
Damjan Marion00a9dca2016-08-17 17:05:46 +02003099 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07003100
Damjan Marion00a9dca2016-08-17 17:05:46 +02003101 vlib_cli_output (vm, "%U\n", format_vnet_sw_if_index_name, vnet_get_main (),
3102 sw_if_index);
Billy McFalla9a20e72017-02-15 11:39:12 -05003103
3104done:
3105 vec_free (sock_filename);
3106 unformat_free (line_input);
3107
3108 return error;
Ed Warnickecb9cada2015-12-08 15:45:58 -07003109}
3110
3111clib_error_t *
3112vhost_user_delete_command_fn (vlib_main_t * vm,
Damjan Marion00a9dca2016-08-17 17:05:46 +02003113 unformat_input_t * input,
3114 vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -07003115{
Damjan Marion00a9dca2016-08-17 17:05:46 +02003116 unformat_input_t _line_input, *line_input = &_line_input;
Ed Warnickecb9cada2015-12-08 15:45:58 -07003117 u32 sw_if_index = ~0;
Pierre Pfisterece983d2016-11-21 12:52:22 +00003118 vnet_main_t *vnm = vnet_get_main ();
Billy McFalla9a20e72017-02-15 11:39:12 -05003119 clib_error_t *error = NULL;
Ed Warnickecb9cada2015-12-08 15:45:58 -07003120
3121 /* Get a line of input. */
Damjan Marion00a9dca2016-08-17 17:05:46 +02003122 if (!unformat_user (input, unformat_line_input, line_input))
Ed Warnickecb9cada2015-12-08 15:45:58 -07003123 return 0;
3124
Damjan Marion00a9dca2016-08-17 17:05:46 +02003125 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
3126 {
3127 if (unformat (line_input, "sw_if_index %d", &sw_if_index))
3128 ;
Pierre Pfisterece983d2016-11-21 12:52:22 +00003129 else if (unformat
3130 (line_input, "%U", unformat_vnet_sw_interface, vnm,
3131 &sw_if_index))
3132 {
3133 vnet_hw_interface_t *hwif =
3134 vnet_get_sup_hw_interface (vnm, sw_if_index);
3135 if (hwif == NULL ||
3136 vhost_user_dev_class.index != hwif->dev_class_index)
Billy McFalla9a20e72017-02-15 11:39:12 -05003137 {
3138 error = clib_error_return (0, "Not a vhost interface");
3139 goto done;
3140 }
Pierre Pfisterece983d2016-11-21 12:52:22 +00003141 }
Damjan Marion00a9dca2016-08-17 17:05:46 +02003142 else
Billy McFalla9a20e72017-02-15 11:39:12 -05003143 {
3144 error = clib_error_return (0, "unknown input `%U'",
3145 format_unformat_error, line_input);
3146 goto done;
3147 }
Damjan Marion00a9dca2016-08-17 17:05:46 +02003148 }
Billy McFalla9a20e72017-02-15 11:39:12 -05003149
Damjan Marion00a9dca2016-08-17 17:05:46 +02003150 vhost_user_delete_if (vnm, vm, sw_if_index);
Billy McFalla9a20e72017-02-15 11:39:12 -05003151
3152done:
3153 unformat_free (line_input);
3154
3155 return error;
Ed Warnickecb9cada2015-12-08 15:45:58 -07003156}
3157
Damjan Marion00a9dca2016-08-17 17:05:46 +02003158int
3159vhost_user_dump_ifs (vnet_main_t * vnm, vlib_main_t * vm,
3160 vhost_user_intf_details_t ** out_vuids)
Ed Warnickecb9cada2015-12-08 15:45:58 -07003161{
3162 int rv = 0;
Damjan Marion00a9dca2016-08-17 17:05:46 +02003163 vhost_user_main_t *vum = &vhost_user_main;
3164 vhost_user_intf_t *vui;
3165 vhost_user_intf_details_t *r_vuids = NULL;
3166 vhost_user_intf_details_t *vuid = NULL;
3167 u32 *hw_if_indices = 0;
3168 vnet_hw_interface_t *hi;
Ed Warnickecb9cada2015-12-08 15:45:58 -07003169 u8 *s = NULL;
3170 int i;
3171
3172 if (!out_vuids)
Damjan Marion00a9dca2016-08-17 17:05:46 +02003173 return -1;
Ed Warnickecb9cada2015-12-08 15:45:58 -07003174
Pierre Pfisterdbb3c252016-11-22 10:33:34 +00003175 pool_foreach (vui, vum->vhost_user_interfaces,
3176 vec_add1 (hw_if_indices, vui->hw_if_index);
3177 );
Ed Warnickecb9cada2015-12-08 15:45:58 -07003178
Damjan Marion00a9dca2016-08-17 17:05:46 +02003179 for (i = 0; i < vec_len (hw_if_indices); i++)
3180 {
3181 hi = vnet_get_hw_interface (vnm, hw_if_indices[i]);
Pierre Pfisterdbb3c252016-11-22 10:33:34 +00003182 vui = pool_elt_at_index (vum->vhost_user_interfaces, hi->dev_instance);
Ed Warnickecb9cada2015-12-08 15:45:58 -07003183
Damjan Marion00a9dca2016-08-17 17:05:46 +02003184 vec_add2 (r_vuids, vuid, 1);
3185 vuid->sw_if_index = vui->sw_if_index;
3186 vuid->virtio_net_hdr_sz = vui->virtio_net_hdr_sz;
3187 vuid->features = vui->features;
Damjan Marion00a9dca2016-08-17 17:05:46 +02003188 vuid->num_regions = vui->nregions;
Marek Gradzki0578cd12017-02-13 14:19:51 +01003189 vuid->is_server = vui->unix_server_index != ~0;
Damjan Marion00a9dca2016-08-17 17:05:46 +02003190 vuid->sock_errno = vui->sock_errno;
3191 strncpy ((char *) vuid->sock_filename, (char *) vui->sock_filename,
3192 ARRAY_LEN (vuid->sock_filename) - 1);
Ed Warnickecb9cada2015-12-08 15:45:58 -07003193
Damjan Marion00a9dca2016-08-17 17:05:46 +02003194 s = format (s, "%v%c", hi->name, 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07003195
Damjan Marion00a9dca2016-08-17 17:05:46 +02003196 strncpy ((char *) vuid->if_name, (char *) s,
3197 ARRAY_LEN (vuid->if_name) - 1);
3198 _vec_len (s) = 0;
3199 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07003200
3201 vec_free (s);
3202 vec_free (hw_if_indices);
3203
3204 *out_vuids = r_vuids;
3205
3206 return rv;
3207}
3208
3209clib_error_t *
3210show_vhost_user_command_fn (vlib_main_t * vm,
Damjan Marion00a9dca2016-08-17 17:05:46 +02003211 unformat_input_t * input,
3212 vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -07003213{
Damjan Marion00a9dca2016-08-17 17:05:46 +02003214 clib_error_t *error = 0;
3215 vnet_main_t *vnm = vnet_get_main ();
3216 vhost_user_main_t *vum = &vhost_user_main;
3217 vhost_user_intf_t *vui;
3218 u32 hw_if_index, *hw_if_indices = 0;
3219 vnet_hw_interface_t *hi;
Stevenf3b53642017-05-01 14:03:02 -07003220 u16 *queue;
Pierre Pfistere21c5282016-09-21 08:04:59 +01003221 u32 ci;
Ed Warnickecb9cada2015-12-08 15:45:58 -07003222 int i, j, q;
3223 int show_descr = 0;
Damjan Marion00a9dca2016-08-17 17:05:46 +02003224 struct feat_struct
3225 {
3226 u8 bit;
3227 char *str;
3228 };
Ed Warnickecb9cada2015-12-08 15:45:58 -07003229 struct feat_struct *feat_entry;
3230
3231 static struct feat_struct feat_array[] = {
3232#define _(s,b) { .str = #s, .bit = b, },
Damjan Marion00a9dca2016-08-17 17:05:46 +02003233 foreach_virtio_net_feature
Ed Warnickecb9cada2015-12-08 15:45:58 -07003234#undef _
Damjan Marion00a9dca2016-08-17 17:05:46 +02003235 {.str = NULL}
Ed Warnickecb9cada2015-12-08 15:45:58 -07003236 };
3237
Pierre Pfistere21c5282016-09-21 08:04:59 +01003238#define foreach_protocol_feature \
3239 _(VHOST_USER_PROTOCOL_F_MQ) \
3240 _(VHOST_USER_PROTOCOL_F_LOG_SHMFD)
3241
3242 static struct feat_struct proto_feat_array[] = {
3243#define _(s) { .str = #s, .bit = s},
3244 foreach_protocol_feature
3245#undef _
3246 {.str = NULL}
3247 };
3248
Damjan Marion00a9dca2016-08-17 17:05:46 +02003249 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
3250 {
3251 if (unformat
3252 (input, "%U", unformat_vnet_hw_interface, vnm, &hw_if_index))
3253 {
Steven583f1582018-04-17 08:50:28 -07003254 hi = vnet_get_hw_interface (vnm, hw_if_index);
3255 if (vhost_user_dev_class.index != hi->dev_class_index)
3256 {
3257 error = clib_error_return (0, "unknown input `%U'",
3258 format_unformat_error, input);
3259 goto done;
3260 }
Damjan Marion00a9dca2016-08-17 17:05:46 +02003261 vec_add1 (hw_if_indices, hw_if_index);
Damjan Marion00a9dca2016-08-17 17:05:46 +02003262 }
3263 else if (unformat (input, "descriptors") || unformat (input, "desc"))
3264 show_descr = 1;
3265 else
3266 {
3267 error = clib_error_return (0, "unknown input `%U'",
3268 format_unformat_error, input);
3269 goto done;
3270 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07003271 }
Damjan Marion00a9dca2016-08-17 17:05:46 +02003272 if (vec_len (hw_if_indices) == 0)
3273 {
Pierre Pfisterdbb3c252016-11-22 10:33:34 +00003274 pool_foreach (vui, vum->vhost_user_interfaces,
3275 vec_add1 (hw_if_indices, vui->hw_if_index);
3276 );
Ed Warnickecb9cada2015-12-08 15:45:58 -07003277 }
Damjan Marion00a9dca2016-08-17 17:05:46 +02003278 vlib_cli_output (vm, "Virtio vhost-user interfaces");
Pierre Pfistere21c5282016-09-21 08:04:59 +01003279 vlib_cli_output (vm, "Global:\n coalesce frames %d time %e",
Damjan Marion00a9dca2016-08-17 17:05:46 +02003280 vum->coalesce_frames, vum->coalesce_time);
Stevenf3b53642017-05-01 14:03:02 -07003281 vlib_cli_output (vm, " number of rx virtqueues in interrupt mode: %d",
3282 vum->ifq_count);
Damjan Marion00a9dca2016-08-17 17:05:46 +02003283
3284 for (i = 0; i < vec_len (hw_if_indices); i++)
3285 {
3286 hi = vnet_get_hw_interface (vnm, hw_if_indices[i]);
Pierre Pfisterdbb3c252016-11-22 10:33:34 +00003287 vui = pool_elt_at_index (vum->vhost_user_interfaces, hi->dev_instance);
Damjan Marion00a9dca2016-08-17 17:05:46 +02003288 vlib_cli_output (vm, "Interface: %s (ifindex %d)",
3289 hi->name, hw_if_indices[i]);
3290
Pierre Pfistere21c5282016-09-21 08:04:59 +01003291 vlib_cli_output (vm, "virtio_net_hdr_sz %d\n"
3292 " features mask (0x%llx): \n"
3293 " features (0x%llx): \n",
3294 vui->virtio_net_hdr_sz, vui->feature_mask,
3295 vui->features);
Damjan Marion00a9dca2016-08-17 17:05:46 +02003296
3297 feat_entry = (struct feat_struct *) &feat_array;
3298 while (feat_entry->str)
3299 {
Pierre Pfistere21c5282016-09-21 08:04:59 +01003300 if (vui->features & (1ULL << feat_entry->bit))
3301 vlib_cli_output (vm, " %s (%d)", feat_entry->str,
3302 feat_entry->bit);
3303 feat_entry++;
3304 }
3305
3306 vlib_cli_output (vm, " protocol features (0x%llx)",
3307 vui->protocol_features);
3308 feat_entry = (struct feat_struct *) &proto_feat_array;
3309 while (feat_entry->str)
3310 {
3311 if (vui->protocol_features & (1ULL << feat_entry->bit))
Damjan Marion00a9dca2016-08-17 17:05:46 +02003312 vlib_cli_output (vm, " %s (%d)", feat_entry->str,
3313 feat_entry->bit);
3314 feat_entry++;
3315 }
3316
3317 vlib_cli_output (vm, "\n");
3318
Damjan Marion00a9dca2016-08-17 17:05:46 +02003319 vlib_cli_output (vm, " socket filename %s type %s errno \"%s\"\n\n",
3320 vui->sock_filename,
Pierre Pfisterdbb3c252016-11-22 10:33:34 +00003321 (vui->unix_server_index != ~0) ? "server" : "client",
Damjan Marion00a9dca2016-08-17 17:05:46 +02003322 strerror (vui->sock_errno));
3323
Pierre Pfistere21c5282016-09-21 08:04:59 +01003324 vlib_cli_output (vm, " rx placement: ");
Stevenf3b53642017-05-01 14:03:02 -07003325
3326 vec_foreach (queue, vui->rx_queues)
Pierre Pfistere21c5282016-09-21 08:04:59 +01003327 {
Stevenf3b53642017-05-01 14:03:02 -07003328 vnet_main_t *vnm = vnet_get_main ();
3329 uword thread_index;
3330 vnet_hw_interface_rx_mode mode;
3331
3332 thread_index = vnet_get_device_input_thread_index (vnm,
3333 vui->hw_if_index,
3334 *queue);
3335 vnet_hw_interface_get_rx_mode (vnm, vui->hw_if_index, *queue, &mode);
3336 vlib_cli_output (vm, " thread %d on vring %d, %U\n",
3337 thread_index, VHOST_VRING_IDX_TX (*queue),
3338 format_vnet_hw_interface_rx_mode, mode);
Pierre Pfistere21c5282016-09-21 08:04:59 +01003339 }
3340
3341 vlib_cli_output (vm, " tx placement: %s\n",
3342 vui->use_tx_spinlock ? "spin-lock" : "lock-free");
3343
3344 vec_foreach_index (ci, vui->per_cpu_tx_qid)
3345 {
3346 vlib_cli_output (vm, " thread %d on vring %d\n", ci,
3347 VHOST_VRING_IDX_RX (vui->per_cpu_tx_qid[ci]));
3348 }
3349
3350 vlib_cli_output (vm, "\n");
3351
Damjan Marion00a9dca2016-08-17 17:05:46 +02003352 vlib_cli_output (vm, " Memory regions (total %d)\n", vui->nregions);
3353
3354 if (vui->nregions)
3355 {
3356 vlib_cli_output (vm,
3357 " region fd guest_phys_addr memory_size userspace_addr mmap_offset mmap_addr\n");
3358 vlib_cli_output (vm,
3359 " ====== ===== ================== ================== ================== ================== ==================\n");
3360 }
3361 for (j = 0; j < vui->nregions; j++)
3362 {
3363 vlib_cli_output (vm,
3364 " %d %-5d 0x%016lx 0x%016lx 0x%016lx 0x%016lx 0x%016lx\n",
3365 j, vui->region_mmap_fd[j],
3366 vui->regions[j].guest_phys_addr,
3367 vui->regions[j].memory_size,
3368 vui->regions[j].userspace_addr,
3369 vui->regions[j].mmap_offset,
3370 pointer_to_uword (vui->region_mmap_addr[j]));
3371 }
Pierre Pfistere21c5282016-09-21 08:04:59 +01003372 for (q = 0; q < VHOST_VRING_MAX_N; q++)
Damjan Marion00a9dca2016-08-17 17:05:46 +02003373 {
Pierre Pfistere21c5282016-09-21 08:04:59 +01003374 if (!vui->vrings[q].started)
3375 continue;
3376
3377 vlib_cli_output (vm, "\n Virtqueue %d (%s%s)\n", q,
3378 (q & 1) ? "RX" : "TX",
3379 vui->vrings[q].enabled ? "" : " disabled");
Damjan Marion00a9dca2016-08-17 17:05:46 +02003380
3381 vlib_cli_output (vm,
3382 " qsz %d last_avail_idx %d last_used_idx %d\n",
Steven97878892017-08-29 09:23:26 -07003383 vui->vrings[q].qsz_mask + 1,
3384 vui->vrings[q].last_avail_idx,
Damjan Marion00a9dca2016-08-17 17:05:46 +02003385 vui->vrings[q].last_used_idx);
3386
3387 if (vui->vrings[q].avail && vui->vrings[q].used)
3388 vlib_cli_output (vm,
3389 " avail.flags %x avail.idx %d used.flags %x used.idx %d\n",
3390 vui->vrings[q].avail->flags,
3391 vui->vrings[q].avail->idx,
3392 vui->vrings[q].used->flags,
3393 vui->vrings[q].used->idx);
3394
Pierre Pfisterdbb3c252016-11-22 10:33:34 +00003395 int kickfd = UNIX_GET_FD (vui->vrings[q].kickfd_idx);
3396 int callfd = UNIX_GET_FD (vui->vrings[q].callfd_idx);
Damjan Marion00a9dca2016-08-17 17:05:46 +02003397 vlib_cli_output (vm, " kickfd %d callfd %d errfd %d\n",
Pierre Pfisterdbb3c252016-11-22 10:33:34 +00003398 kickfd, callfd, vui->vrings[q].errfd);
Damjan Marion00a9dca2016-08-17 17:05:46 +02003399
3400 if (show_descr)
3401 {
3402 vlib_cli_output (vm, "\n descriptor table:\n");
3403 vlib_cli_output (vm,
3404 " id addr len flags next user_addr\n");
3405 vlib_cli_output (vm,
3406 " ===== ================== ===== ====== ===== ==================\n");
Steven97878892017-08-29 09:23:26 -07003407 for (j = 0; j < vui->vrings[q].qsz_mask + 1; j++)
Damjan Marion00a9dca2016-08-17 17:05:46 +02003408 {
Pierre Pfister11f92052016-09-21 08:08:55 +01003409 u32 mem_hint = 0;
Damjan Marion00a9dca2016-08-17 17:05:46 +02003410 vlib_cli_output (vm,
3411 " %-5d 0x%016lx %-5d 0x%04x %-5d 0x%016lx\n",
3412 j, vui->vrings[q].desc[j].addr,
3413 vui->vrings[q].desc[j].len,
3414 vui->vrings[q].desc[j].flags,
3415 vui->vrings[q].desc[j].next,
3416 pointer_to_uword (map_guest_mem
3417 (vui,
Pierre Pfisterba1d0462016-07-27 16:38:20 +01003418 vui->vrings[q].desc[j].
Pierre Pfister11f92052016-09-21 08:08:55 +01003419 addr, &mem_hint)));
Damjan Marion00a9dca2016-08-17 17:05:46 +02003420 }
3421 }
3422 }
3423 vlib_cli_output (vm, "\n");
3424 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07003425done:
3426 vec_free (hw_if_indices);
3427 return error;
3428}
3429
Damjan Marion8d281b32016-08-24 14:32:39 +02003430/*
3431 * CLI functions
3432 */
3433
Billy McFalla92501a2016-11-23 12:45:29 -05003434/*?
3435 * Create a vHost User interface. Once created, a new virtual interface
3436 * will exist with the name '<em>VirtualEthernet0/0/x</em>', where '<em>x</em>'
3437 * is the next free index.
3438 *
3439 * There are several parameters associated with a vHost interface:
3440 *
Billy McFall28cf3b72018-01-15 17:54:52 -05003441 * - <b>socket <socket-filename></b> - Name of the linux socket used by hypervisor
3442 * and VPP to manage the vHost interface. If in '<em>server</em>' mode, VPP will
3443 * create the socket if it does not already exist. If in '<em>client</em>' mode,
3444 * hypervisor will create the socket if it does not already exist. The VPP code
3445 * is indifferent to the file location. However, if SELinux is enabled, then the
3446 * socket needs to be created in '<em>/var/run/vpp/</em>'.
Billy McFalla92501a2016-11-23 12:45:29 -05003447 *
Billy McFall28cf3b72018-01-15 17:54:52 -05003448 * - <b>server</b> - Optional flag to indicate that VPP should be the server for
3449 * the linux socket. If not provided, VPP will be the client. In '<em>server</em>'
3450 * mode, the VM can be reset without tearing down the vHost Interface. In
3451 * '<em>client</em>' mode, VPP can be reset without bringing down the VM and
3452 * tearing down the vHost Interface.
Billy McFalla92501a2016-11-23 12:45:29 -05003453 *
3454 * - <b>feature-mask <hex></b> - Optional virtio/vhost feature set negotiated at
Billy McFall28cf3b72018-01-15 17:54:52 -05003455 * startup. <b>This is intended for degugging only.</b> It is recommended that this
3456 * parameter not be used except by experienced users. By default, all supported
3457 * features will be advertised. Otherwise, provide the set of features desired.
Billy McFalla92501a2016-11-23 12:45:29 -05003458 * - 0x000008000 (15) - VIRTIO_NET_F_MRG_RXBUF
3459 * - 0x000020000 (17) - VIRTIO_NET_F_CTRL_VQ
3460 * - 0x000200000 (21) - VIRTIO_NET_F_GUEST_ANNOUNCE
3461 * - 0x000400000 (22) - VIRTIO_NET_F_MQ
3462 * - 0x004000000 (26) - VHOST_F_LOG_ALL
3463 * - 0x008000000 (27) - VIRTIO_F_ANY_LAYOUT
3464 * - 0x010000000 (28) - VIRTIO_F_INDIRECT_DESC
3465 * - 0x040000000 (30) - VHOST_USER_F_PROTOCOL_FEATURES
3466 * - 0x100000000 (32) - VIRTIO_F_VERSION_1
3467 *
3468 * - <b>hwaddr <mac-addr></b> - Optional ethernet address, can be in either
3469 * X:X:X:X:X:X unix or X.X.X cisco format.
3470 *
3471 * - <b>renumber <dev_instance></b> - Optional parameter which allows the instance
3472 * in the name to be specified. If instance already exists, name will be used
3473 * anyway and multiple instances will have the same name. Use with caution.
3474 *
3475 * @cliexpar
3476 * Example of how to create a vhost interface with VPP as the client and all features enabled:
Billy McFall28cf3b72018-01-15 17:54:52 -05003477 * @cliexstart{create vhost-user socket /var/run/vpp/vhost1.sock}
Billy McFalla92501a2016-11-23 12:45:29 -05003478 * VirtualEthernet0/0/0
3479 * @cliexend
3480 * Example of how to create a vhost interface with VPP as the server and with just
3481 * multiple queues enabled:
Billy McFall28cf3b72018-01-15 17:54:52 -05003482 * @cliexstart{create vhost-user socket /var/run/vpp/vhost2.sock server feature-mask 0x40400000}
Billy McFalla92501a2016-11-23 12:45:29 -05003483 * VirtualEthernet0/0/1
3484 * @cliexend
3485 * Once the vHost interface is created, enable the interface using:
3486 * @cliexcmd{set interface state VirtualEthernet0/0/0 up}
3487?*/
Damjan Marion8d281b32016-08-24 14:32:39 +02003488/* *INDENT-OFF* */
3489VLIB_CLI_COMMAND (vhost_user_connect_command, static) = {
3490 .path = "create vhost-user",
Steven7312cc72017-03-15 21:18:55 -07003491 .short_help = "create vhost-user socket <socket-filename> [server] "
Stevenf3b53642017-05-01 14:03:02 -07003492 "[feature-mask <hex>] [hwaddr <mac-addr>] [renumber <dev_instance>] ",
Damjan Marion8d281b32016-08-24 14:32:39 +02003493 .function = vhost_user_connect_command_fn,
3494};
Billy McFalla92501a2016-11-23 12:45:29 -05003495/* *INDENT-ON* */
Damjan Marion8d281b32016-08-24 14:32:39 +02003496
Billy McFalla92501a2016-11-23 12:45:29 -05003497/*?
3498 * Delete a vHost User interface using the interface name or the
Dave Barach13ad1f02017-03-26 19:36:18 -04003499 * software interface index. Use the '<em>show interface</em>'
Billy McFalla92501a2016-11-23 12:45:29 -05003500 * command to determine the software interface index. On deletion,
3501 * the linux socket will not be deleted.
3502 *
3503 * @cliexpar
3504 * Example of how to delete a vhost interface by name:
3505 * @cliexcmd{delete vhost-user VirtualEthernet0/0/1}
3506 * Example of how to delete a vhost interface by software interface index:
3507 * @cliexcmd{delete vhost-user sw_if_index 1}
3508?*/
3509/* *INDENT-OFF* */
Damjan Marion8d281b32016-08-24 14:32:39 +02003510VLIB_CLI_COMMAND (vhost_user_delete_command, static) = {
3511 .path = "delete vhost-user",
Billy McFalla92501a2016-11-23 12:45:29 -05003512 .short_help = "delete vhost-user {<interface> | sw_if_index <sw_idx>}",
Damjan Marion8d281b32016-08-24 14:32:39 +02003513 .function = vhost_user_delete_command_fn,
3514};
3515
Billy McFalla92501a2016-11-23 12:45:29 -05003516/*?
3517 * Display the attributes of a single vHost User interface (provide interface
3518 * name), multiple vHost User interfaces (provide a list of interface names seperated
3519 * by spaces) or all Vhost User interfaces (omit an interface name to display all
3520 * vHost interfaces).
3521 *
3522 * @cliexpar
3523 * @parblock
3524 * Example of how to display a vhost interface:
3525 * @cliexstart{show vhost-user VirtualEthernet0/0/0}
3526 * Virtio vhost-user interfaces
3527 * Global:
3528 * coalesce frames 32 time 1e-3
3529 * Interface: VirtualEthernet0/0/0 (ifindex 1)
3530 * virtio_net_hdr_sz 12
3531 * features mask (0xffffffffffffffff):
3532 * features (0x50408000):
3533 * VIRTIO_NET_F_MRG_RXBUF (15)
3534 * VIRTIO_NET_F_MQ (22)
3535 * VIRTIO_F_INDIRECT_DESC (28)
3536 * VHOST_USER_F_PROTOCOL_FEATURES (30)
3537 * protocol features (0x3)
3538 * VHOST_USER_PROTOCOL_F_MQ (0)
3539 * VHOST_USER_PROTOCOL_F_LOG_SHMFD (1)
3540 *
Billy McFall28cf3b72018-01-15 17:54:52 -05003541 * socket filename /var/run/vpp/vhost1.sock type client errno "Success"
Billy McFalla92501a2016-11-23 12:45:29 -05003542 *
3543 * rx placement:
3544 * thread 1 on vring 1
3545 * thread 1 on vring 5
3546 * thread 2 on vring 3
3547 * thread 2 on vring 7
3548 * tx placement: spin-lock
3549 * thread 0 on vring 0
3550 * thread 1 on vring 2
3551 * thread 2 on vring 0
3552 *
3553 * Memory regions (total 2)
3554 * region fd guest_phys_addr memory_size userspace_addr mmap_offset mmap_addr
3555 * ====== ===== ================== ================== ================== ================== ==================
3556 * 0 60 0x0000000000000000 0x00000000000a0000 0x00002aaaaac00000 0x0000000000000000 0x00002aab2b400000
3557 * 1 61 0x00000000000c0000 0x000000003ff40000 0x00002aaaaacc0000 0x00000000000c0000 0x00002aababcc0000
3558 *
3559 * Virtqueue 0 (TX)
3560 * qsz 256 last_avail_idx 0 last_used_idx 0
3561 * avail.flags 1 avail.idx 128 used.flags 1 used.idx 0
3562 * kickfd 62 callfd 64 errfd -1
3563 *
3564 * Virtqueue 1 (RX)
3565 * qsz 256 last_avail_idx 0 last_used_idx 0
3566 * avail.flags 1 avail.idx 0 used.flags 1 used.idx 0
3567 * kickfd 65 callfd 66 errfd -1
3568 *
3569 * Virtqueue 2 (TX)
3570 * qsz 256 last_avail_idx 0 last_used_idx 0
3571 * avail.flags 1 avail.idx 128 used.flags 1 used.idx 0
3572 * kickfd 63 callfd 70 errfd -1
3573 *
3574 * Virtqueue 3 (RX)
3575 * qsz 256 last_avail_idx 0 last_used_idx 0
3576 * avail.flags 1 avail.idx 0 used.flags 1 used.idx 0
3577 * kickfd 72 callfd 74 errfd -1
3578 *
3579 * Virtqueue 4 (TX disabled)
3580 * qsz 256 last_avail_idx 0 last_used_idx 0
3581 * avail.flags 1 avail.idx 0 used.flags 1 used.idx 0
3582 * kickfd 76 callfd 78 errfd -1
3583 *
3584 * Virtqueue 5 (RX disabled)
3585 * qsz 256 last_avail_idx 0 last_used_idx 0
3586 * avail.flags 1 avail.idx 0 used.flags 1 used.idx 0
3587 * kickfd 80 callfd 82 errfd -1
3588 *
3589 * Virtqueue 6 (TX disabled)
3590 * qsz 256 last_avail_idx 0 last_used_idx 0
3591 * avail.flags 1 avail.idx 0 used.flags 1 used.idx 0
3592 * kickfd 84 callfd 86 errfd -1
3593 *
3594 * Virtqueue 7 (RX disabled)
3595 * qsz 256 last_avail_idx 0 last_used_idx 0
3596 * avail.flags 1 avail.idx 0 used.flags 1 used.idx 0
3597 * kickfd 88 callfd 90 errfd -1
3598 *
3599 * @cliexend
3600 *
3601 * The optional '<em>descriptors</em>' parameter will display the same output as
3602 * the previous example but will include the descriptor table for each queue.
3603 * The output is truncated below:
3604 * @cliexstart{show vhost-user VirtualEthernet0/0/0 descriptors}
3605 * Virtio vhost-user interfaces
3606 * Global:
3607 * coalesce frames 32 time 1e-3
3608 * Interface: VirtualEthernet0/0/0 (ifindex 1)
3609 * virtio_net_hdr_sz 12
3610 * features mask (0xffffffffffffffff):
3611 * features (0x50408000):
3612 * VIRTIO_NET_F_MRG_RXBUF (15)
3613 * VIRTIO_NET_F_MQ (22)
3614 * :
3615 * Virtqueue 0 (TX)
3616 * qsz 256 last_avail_idx 0 last_used_idx 0
3617 * avail.flags 1 avail.idx 128 used.flags 1 used.idx 0
3618 * kickfd 62 callfd 64 errfd -1
3619 *
3620 * descriptor table:
3621 * id addr len flags next user_addr
3622 * ===== ================== ===== ====== ===== ==================
3623 * 0 0x0000000010b6e974 2060 0x0002 1 0x00002aabbc76e974
3624 * 1 0x0000000010b6e034 2060 0x0002 2 0x00002aabbc76e034
3625 * 2 0x0000000010b6d6f4 2060 0x0002 3 0x00002aabbc76d6f4
3626 * 3 0x0000000010b6cdb4 2060 0x0002 4 0x00002aabbc76cdb4
3627 * 4 0x0000000010b6c474 2060 0x0002 5 0x00002aabbc76c474
3628 * 5 0x0000000010b6bb34 2060 0x0002 6 0x00002aabbc76bb34
3629 * 6 0x0000000010b6b1f4 2060 0x0002 7 0x00002aabbc76b1f4
3630 * 7 0x0000000010b6a8b4 2060 0x0002 8 0x00002aabbc76a8b4
3631 * 8 0x0000000010b69f74 2060 0x0002 9 0x00002aabbc769f74
3632 * 9 0x0000000010b69634 2060 0x0002 10 0x00002aabbc769634
3633 * 10 0x0000000010b68cf4 2060 0x0002 11 0x00002aabbc768cf4
3634 * :
3635 * 249 0x0000000000000000 0 0x0000 250 0x00002aab2b400000
3636 * 250 0x0000000000000000 0 0x0000 251 0x00002aab2b400000
3637 * 251 0x0000000000000000 0 0x0000 252 0x00002aab2b400000
3638 * 252 0x0000000000000000 0 0x0000 253 0x00002aab2b400000
3639 * 253 0x0000000000000000 0 0x0000 254 0x00002aab2b400000
3640 * 254 0x0000000000000000 0 0x0000 255 0x00002aab2b400000
3641 * 255 0x0000000000000000 0 0x0000 32768 0x00002aab2b400000
3642 *
3643 * Virtqueue 1 (RX)
3644 * qsz 256 last_avail_idx 0 last_used_idx 0
3645 * :
3646 * @cliexend
3647 * @endparblock
3648?*/
3649/* *INDENT-OFF* */
Damjan Marion8d281b32016-08-24 14:32:39 +02003650VLIB_CLI_COMMAND (show_vhost_user_command, static) = {
3651 .path = "show vhost-user",
Billy McFalla92501a2016-11-23 12:45:29 -05003652 .short_help = "show vhost-user [<interface> [<interface> [..]]] [descriptors]",
Damjan Marion8d281b32016-08-24 14:32:39 +02003653 .function = show_vhost_user_command_fn,
3654};
3655/* *INDENT-ON* */
Damjan Marion8d281b32016-08-24 14:32:39 +02003656
Steven388e51a2017-06-01 12:49:23 -07003657clib_error_t *
3658debug_vhost_user_command_fn (vlib_main_t * vm,
3659 unformat_input_t * input,
3660 vlib_cli_command_t * cmd)
3661{
3662 unformat_input_t _line_input, *line_input = &_line_input;
3663 clib_error_t *error = NULL;
3664 vhost_user_main_t *vum = &vhost_user_main;
Steven2ee2d572017-07-21 16:38:41 -07003665 u8 onoff = 0;
3666 u8 input_found = 0;
Steven388e51a2017-06-01 12:49:23 -07003667
3668 /* Get a line of input. */
3669 if (!unformat_user (input, unformat_line_input, line_input))
Steven2ee2d572017-07-21 16:38:41 -07003670 return clib_error_return (0, "missing argument");
Steven388e51a2017-06-01 12:49:23 -07003671
3672 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
3673 {
Steven2ee2d572017-07-21 16:38:41 -07003674 if (input_found)
3675 {
3676 error = clib_error_return (0, "unknown input `%U'",
3677 format_unformat_error, line_input);
3678 goto done;
3679 }
3680
Steven388e51a2017-06-01 12:49:23 -07003681 if (unformat (line_input, "on"))
Steven2ee2d572017-07-21 16:38:41 -07003682 {
3683 input_found = 1;
3684 onoff = 1;
3685 }
Steven388e51a2017-06-01 12:49:23 -07003686 else if (unformat (line_input, "off"))
Steven2ee2d572017-07-21 16:38:41 -07003687 {
3688 input_found = 1;
3689 onoff = 0;
3690 }
Steven388e51a2017-06-01 12:49:23 -07003691 else
Steven2ee2d572017-07-21 16:38:41 -07003692 {
3693 error = clib_error_return (0, "unknown input `%U'",
3694 format_unformat_error, line_input);
3695 goto done;
3696 }
Steven388e51a2017-06-01 12:49:23 -07003697 }
3698
Steven2ee2d572017-07-21 16:38:41 -07003699 vum->debug = onoff;
3700
3701done:
Steven388e51a2017-06-01 12:49:23 -07003702 unformat_free (line_input);
3703
3704 return error;
3705}
3706
3707/* *INDENT-OFF* */
3708VLIB_CLI_COMMAND (debug_vhost_user_command, static) = {
3709 .path = "debug vhost-user",
3710 .short_help = "debug vhost-user <on | off>",
3711 .function = debug_vhost_user_command_fn,
3712};
3713/* *INDENT-ON* */
3714
Ed Warnickecb9cada2015-12-08 15:45:58 -07003715static clib_error_t *
3716vhost_user_config (vlib_main_t * vm, unformat_input_t * input)
3717{
Damjan Marion00a9dca2016-08-17 17:05:46 +02003718 vhost_user_main_t *vum = &vhost_user_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -07003719
3720 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
3721 {
3722 if (unformat (input, "coalesce-frames %d", &vum->coalesce_frames))
Damjan Marion00a9dca2016-08-17 17:05:46 +02003723 ;
Ed Warnickecb9cada2015-12-08 15:45:58 -07003724 else if (unformat (input, "coalesce-time %f", &vum->coalesce_time))
Damjan Marion00a9dca2016-08-17 17:05:46 +02003725 ;
Ed Warnickecb9cada2015-12-08 15:45:58 -07003726 else if (unformat (input, "dont-dump-memory"))
Damjan Marion00a9dca2016-08-17 17:05:46 +02003727 vum->dont_dump_vhost_user_memory = 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -07003728 else
Damjan Marion00a9dca2016-08-17 17:05:46 +02003729 return clib_error_return (0, "unknown input `%U'",
3730 format_unformat_error, input);
Ed Warnickecb9cada2015-12-08 15:45:58 -07003731 }
3732
3733 return 0;
3734}
3735
3736/* vhost-user { ... } configuration. */
3737VLIB_CONFIG_FUNCTION (vhost_user_config, "vhost-user");
3738
3739void
3740vhost_user_unmap_all (void)
3741{
Damjan Marion00a9dca2016-08-17 17:05:46 +02003742 vhost_user_main_t *vum = &vhost_user_main;
3743 vhost_user_intf_t *vui;
Ed Warnickecb9cada2015-12-08 15:45:58 -07003744
3745 if (vum->dont_dump_vhost_user_memory)
3746 {
Pierre Pfisterdbb3c252016-11-22 10:33:34 +00003747 pool_foreach (vui, vum->vhost_user_interfaces,
3748 unmap_all_mem_regions (vui);
3749 );
Ed Warnickecb9cada2015-12-08 15:45:58 -07003750 }
3751}
Damjan Marion00a9dca2016-08-17 17:05:46 +02003752
3753/*
3754 * fd.io coding-style-patch-verification: ON
3755 *
3756 * Local Variables:
3757 * eval: (c-set-style "gnu")
3758 * End:
3759 */