blob: 5e720f6510a82f7e06fb157a3bb8fe22a84ac98b [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
Ed Warnickecb9cada2015-12-08 15:45:58 -070052#define VHOST_USER_DEBUG_SOCKET 0
Pierre Pfister116ea4b2016-11-08 15:49:28 +000053#define VHOST_DEBUG_VQ 0
Ed Warnickecb9cada2015-12-08 15:45:58 -070054
55#if VHOST_USER_DEBUG_SOCKET == 1
56#define DBG_SOCK(args...) clib_warning(args);
57#else
58#define DBG_SOCK(args...)
59#endif
60
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
89
Pierre Pfisterdbb3c252016-11-22 10:33:34 +000090#define UNIX_GET_FD(unixfd_idx) \
91 (unixfd_idx != ~0) ? \
92 pool_elt_at_index (unix_main.file_pool, \
93 unixfd_idx)->file_descriptor : -1;
94
Pierre Pfister116ea4b2016-11-08 15:49:28 +000095#define foreach_virtio_trace_flags \
96 _ (SIMPLE_CHAINED, 0, "Simple descriptor chaining") \
97 _ (SINGLE_DESC, 1, "Single descriptor packet") \
98 _ (INDIRECT, 2, "Indirect descriptor") \
99 _ (MAP_ERROR, 4, "Memory mapping error")
100
101typedef enum
102{
103#define _(n,i,s) VIRTIO_TRACE_F_##n,
104 foreach_virtio_trace_flags
105#undef _
106} virtio_trace_flag_t;
107
Ed Warnickecb9cada2015-12-08 15:45:58 -0700108vlib_node_registration_t vhost_user_input_node;
109
110#define foreach_vhost_user_tx_func_error \
Pierre Pfister328e99b2016-02-12 13:18:42 +0000111 _(NONE, "no error") \
Pierre Pfisterd3eb90e2016-11-29 15:36:14 +0000112 _(NOT_READY, "vhost vring not ready") \
113 _(DOWN, "vhost interface is down") \
Ed Warnickecb9cada2015-12-08 15:45:58 -0700114 _(PKT_DROP_NOBUF, "tx packet drops (no available descriptors)") \
Pierre Pfisterba1d0462016-07-27 16:38:20 +0100115 _(PKT_DROP_NOMRG, "tx packet drops (cannot merge descriptors)") \
116 _(MMAP_FAIL, "mmap failure") \
117 _(INDIRECT_OVERFLOW, "indirect descriptor table overflow")
Ed Warnickecb9cada2015-12-08 15:45:58 -0700118
Damjan Marion00a9dca2016-08-17 17:05:46 +0200119typedef enum
120{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700121#define _(f,s) VHOST_USER_TX_FUNC_ERROR_##f,
122 foreach_vhost_user_tx_func_error
123#undef _
Damjan Marion00a9dca2016-08-17 17:05:46 +0200124 VHOST_USER_TX_FUNC_N_ERROR,
Ed Warnickecb9cada2015-12-08 15:45:58 -0700125} vhost_user_tx_func_error_t;
126
Damjan Marion00a9dca2016-08-17 17:05:46 +0200127static char *vhost_user_tx_func_error_strings[] = {
Ed Warnickecb9cada2015-12-08 15:45:58 -0700128#define _(n,s) s,
Damjan Marion00a9dca2016-08-17 17:05:46 +0200129 foreach_vhost_user_tx_func_error
Ed Warnickecb9cada2015-12-08 15:45:58 -0700130#undef _
131};
132
133#define foreach_vhost_user_input_func_error \
134 _(NO_ERROR, "no error") \
Pierre Pfister328e99b2016-02-12 13:18:42 +0000135 _(NO_BUFFER, "no available buffer") \
136 _(MMAP_FAIL, "mmap failure") \
Pierre Pfisterba1d0462016-07-27 16:38:20 +0100137 _(INDIRECT_OVERFLOW, "indirect descriptor overflows table") \
138 _(UNDERSIZED_FRAME, "undersized ethernet frame received (< 14 bytes)") \
139 _(FULL_RX_QUEUE, "full rx queue (possible driver tx drop)")
Ed Warnickecb9cada2015-12-08 15:45:58 -0700140
Damjan Marion00a9dca2016-08-17 17:05:46 +0200141typedef enum
142{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700143#define _(f,s) VHOST_USER_INPUT_FUNC_ERROR_##f,
144 foreach_vhost_user_input_func_error
145#undef _
Damjan Marion00a9dca2016-08-17 17:05:46 +0200146 VHOST_USER_INPUT_FUNC_N_ERROR,
Ed Warnickecb9cada2015-12-08 15:45:58 -0700147} vhost_user_input_func_error_t;
148
Damjan Marion00a9dca2016-08-17 17:05:46 +0200149static char *vhost_user_input_func_error_strings[] = {
Ed Warnickecb9cada2015-12-08 15:45:58 -0700150#define _(n,s) s,
Damjan Marion00a9dca2016-08-17 17:05:46 +0200151 foreach_vhost_user_input_func_error
Ed Warnickecb9cada2015-12-08 15:45:58 -0700152#undef _
153};
154
Damjan Marion00a9dca2016-08-17 17:05:46 +0200155/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700156static vhost_user_main_t vhost_user_main = {
157 .mtu_bytes = 1518,
158};
159
160VNET_HW_INTERFACE_CLASS (vhost_interface_class, static) = {
161 .name = "vhost-user",
162};
Damjan Marion00a9dca2016-08-17 17:05:46 +0200163/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700164
Damjan Marion00a9dca2016-08-17 17:05:46 +0200165static u8 *
166format_vhost_user_interface_name (u8 * s, va_list * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700167{
168 u32 i = va_arg (*args, u32);
169 u32 show_dev_instance = ~0;
Damjan Marion00a9dca2016-08-17 17:05:46 +0200170 vhost_user_main_t *vum = &vhost_user_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700171
172 if (i < vec_len (vum->show_dev_instance_by_real_dev_instance))
173 show_dev_instance = vum->show_dev_instance_by_real_dev_instance[i];
174
175 if (show_dev_instance != ~0)
176 i = show_dev_instance;
177
178 s = format (s, "VirtualEthernet0/0/%d", i);
179 return s;
180}
181
Damjan Marion00a9dca2016-08-17 17:05:46 +0200182static int
183vhost_user_name_renumber (vnet_hw_interface_t * hi, u32 new_dev_instance)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700184{
Pierre Pfisterdbb3c252016-11-22 10:33:34 +0000185 // FIXME: check if the new dev instance is already used
Damjan Marion00a9dca2016-08-17 17:05:46 +0200186 vhost_user_main_t *vum = &vhost_user_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700187 vec_validate_init_empty (vum->show_dev_instance_by_real_dev_instance,
Damjan Marion00a9dca2016-08-17 17:05:46 +0200188 hi->dev_instance, ~0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700189
Damjan Marion00a9dca2016-08-17 17:05:46 +0200190 vum->show_dev_instance_by_real_dev_instance[hi->dev_instance] =
Ed Warnickecb9cada2015-12-08 15:45:58 -0700191 new_dev_instance;
192
Damjan Marion00a9dca2016-08-17 17:05:46 +0200193 DBG_SOCK ("renumbered vhost-user interface dev_instance %d to %d",
194 hi->dev_instance, new_dev_instance);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700195
196 return 0;
197}
198
Pierre Pfister11f92052016-09-21 08:08:55 +0100199static_always_inline void *
200map_guest_mem (vhost_user_intf_t * vui, uword addr, u32 * hint)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700201{
Pierre Pfister11f92052016-09-21 08:08:55 +0100202 int i = *hint;
203 if (PREDICT_TRUE ((vui->regions[i].guest_phys_addr <= addr) &&
204 ((vui->regions[i].guest_phys_addr +
205 vui->regions[i].memory_size) > addr)))
206 {
207 return (void *) (vui->region_mmap_addr[i] + addr -
208 vui->regions[i].guest_phys_addr);
209 }
Damjan Marion37623702016-09-20 11:25:27 +0200210#if __SSE4_2__
211 __m128i rl, rh, al, ah, r;
212 al = _mm_set1_epi64x (addr + 1);
213 ah = _mm_set1_epi64x (addr);
214
215 rl = _mm_loadu_si128 ((__m128i *) & vui->region_guest_addr_lo[0]);
216 rl = _mm_cmpgt_epi64 (al, rl);
217 rh = _mm_loadu_si128 ((__m128i *) & vui->region_guest_addr_hi[0]);
218 rh = _mm_cmpgt_epi64 (rh, ah);
219 r = _mm_and_si128 (rl, rh);
220
221 rl = _mm_loadu_si128 ((__m128i *) & vui->region_guest_addr_lo[2]);
222 rl = _mm_cmpgt_epi64 (al, rl);
223 rh = _mm_loadu_si128 ((__m128i *) & vui->region_guest_addr_hi[2]);
224 rh = _mm_cmpgt_epi64 (rh, ah);
225 r = _mm_blend_epi16 (r, _mm_and_si128 (rl, rh), 0x22);
226
227 rl = _mm_loadu_si128 ((__m128i *) & vui->region_guest_addr_lo[4]);
228 rl = _mm_cmpgt_epi64 (al, rl);
229 rh = _mm_loadu_si128 ((__m128i *) & vui->region_guest_addr_hi[4]);
230 rh = _mm_cmpgt_epi64 (rh, ah);
231 r = _mm_blend_epi16 (r, _mm_and_si128 (rl, rh), 0x44);
232
233 rl = _mm_loadu_si128 ((__m128i *) & vui->region_guest_addr_lo[6]);
234 rl = _mm_cmpgt_epi64 (al, rl);
235 rh = _mm_loadu_si128 ((__m128i *) & vui->region_guest_addr_hi[6]);
236 rh = _mm_cmpgt_epi64 (rh, ah);
237 r = _mm_blend_epi16 (r, _mm_and_si128 (rl, rh), 0x88);
238
239 r = _mm_shuffle_epi8 (r, _mm_set_epi64x (0, 0x0e060c040a020800));
Damjan Marion0b49e2b2017-02-09 21:49:06 +0100240 i = __builtin_ctzll (_mm_movemask_epi8 (r) |
241 (1 << VHOST_MEMORY_MAX_NREGIONS));
Damjan Marion37623702016-09-20 11:25:27 +0200242
243 if (i < vui->nregions)
244 {
Pierre Pfister11f92052016-09-21 08:08:55 +0100245 *hint = i;
Damjan Marion37623702016-09-20 11:25:27 +0200246 return (void *) (vui->region_mmap_addr[i] + addr -
247 vui->regions[i].guest_phys_addr);
248 }
249
250#else
Damjan Marion00a9dca2016-08-17 17:05:46 +0200251 for (i = 0; i < vui->nregions; i++)
252 {
253 if ((vui->regions[i].guest_phys_addr <= addr) &&
254 ((vui->regions[i].guest_phys_addr + vui->regions[i].memory_size) >
255 addr))
256 {
Pierre Pfister11f92052016-09-21 08:08:55 +0100257 *hint = i;
Damjan Marion00a9dca2016-08-17 17:05:46 +0200258 return (void *) (vui->region_mmap_addr[i] + addr -
259 vui->regions[i].guest_phys_addr);
260 }
261 }
Damjan Marion37623702016-09-20 11:25:27 +0200262#endif
Damjan Marion00a9dca2016-08-17 17:05:46 +0200263 DBG_VQ ("failed to map guest mem addr %llx", addr);
Pierre Pfister11f92052016-09-21 08:08:55 +0100264 *hint = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700265 return 0;
266}
267
Damjan Marion00a9dca2016-08-17 17:05:46 +0200268static inline void *
269map_user_mem (vhost_user_intf_t * vui, uword addr)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700270{
271 int i;
Damjan Marion00a9dca2016-08-17 17:05:46 +0200272 for (i = 0; i < vui->nregions; i++)
273 {
274 if ((vui->regions[i].userspace_addr <= addr) &&
275 ((vui->regions[i].userspace_addr + vui->regions[i].memory_size) >
276 addr))
277 {
278 return (void *) (vui->region_mmap_addr[i] + addr -
279 vui->regions[i].userspace_addr);
280 }
281 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700282 return 0;
283}
284
Damjan Marion00a9dca2016-08-17 17:05:46 +0200285static long
286get_huge_page_size (int fd)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700287{
288 struct statfs s;
Damjan Marion00a9dca2016-08-17 17:05:46 +0200289 fstatfs (fd, &s);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700290 return s.f_bsize;
291}
292
Damjan Marion00a9dca2016-08-17 17:05:46 +0200293static void
294unmap_all_mem_regions (vhost_user_intf_t * vui)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700295{
Damjan Marion00a9dca2016-08-17 17:05:46 +0200296 int i, r;
297 for (i = 0; i < vui->nregions; i++)
298 {
299 if (vui->region_mmap_addr[i] != (void *) -1)
300 {
Ed Warnickecb9cada2015-12-08 15:45:58 -0700301
Damjan Marion00a9dca2016-08-17 17:05:46 +0200302 long page_sz = get_huge_page_size (vui->region_mmap_fd[i]);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700303
Damjan Marion00a9dca2016-08-17 17:05:46 +0200304 ssize_t map_sz = (vui->regions[i].memory_size +
305 vui->regions[i].mmap_offset +
306 page_sz) & ~(page_sz - 1);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700307
Damjan Marion00a9dca2016-08-17 17:05:46 +0200308 r =
309 munmap (vui->region_mmap_addr[i] - vui->regions[i].mmap_offset,
310 map_sz);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700311
Damjan Marion00a9dca2016-08-17 17:05:46 +0200312 DBG_SOCK
313 ("unmap memory region %d addr 0x%lx len 0x%lx page_sz 0x%x", i,
314 vui->region_mmap_addr[i], map_sz, page_sz);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700315
Damjan Marion00a9dca2016-08-17 17:05:46 +0200316 vui->region_mmap_addr[i] = (void *) -1;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700317
Damjan Marion00a9dca2016-08-17 17:05:46 +0200318 if (r == -1)
319 {
320 clib_warning ("failed to unmap memory region (errno %d)",
321 errno);
322 }
323 close (vui->region_mmap_fd[i]);
324 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700325 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700326 vui->nregions = 0;
327}
328
Pierre Pfistere21c5282016-09-21 08:04:59 +0100329static void
330vhost_user_tx_thread_placement (vhost_user_intf_t * vui)
331{
332 //Let's try to assign one queue to each thread
333 u32 qid = 0;
Damjan Marion586afd72017-04-05 19:18:20 +0200334 u32 thread_index = 0;
Pierre Pfistere21c5282016-09-21 08:04:59 +0100335 vui->use_tx_spinlock = 0;
336 while (1)
337 {
338 for (qid = 0; qid < VHOST_VRING_MAX_N / 2; qid++)
339 {
340 vhost_user_vring_t *rxvq = &vui->vrings[VHOST_VRING_IDX_RX (qid)];
341 if (!rxvq->started || !rxvq->enabled)
342 continue;
343
Damjan Marion586afd72017-04-05 19:18:20 +0200344 vui->per_cpu_tx_qid[thread_index] = qid;
345 thread_index++;
346 if (thread_index == vlib_get_thread_main ()->n_vlib_mains)
Pierre Pfistere21c5282016-09-21 08:04:59 +0100347 return;
348 }
349 //We need to loop, meaning the spinlock has to be used
350 vui->use_tx_spinlock = 1;
Damjan Marion586afd72017-04-05 19:18:20 +0200351 if (thread_index == 0)
Pierre Pfistere21c5282016-09-21 08:04:59 +0100352 {
353 //Could not find a single valid one
Damjan Marion586afd72017-04-05 19:18:20 +0200354 for (thread_index = 0;
355 thread_index < vlib_get_thread_main ()->n_vlib_mains;
356 thread_index++)
Pierre Pfistere21c5282016-09-21 08:04:59 +0100357 {
Damjan Marion586afd72017-04-05 19:18:20 +0200358 vui->per_cpu_tx_qid[thread_index] = 0;
Pierre Pfistere21c5282016-09-21 08:04:59 +0100359 }
360 return;
361 }
362 }
363}
364
365static void
366vhost_user_rx_thread_placement ()
367{
368 vhost_user_main_t *vum = &vhost_user_main;
369 vhost_user_intf_t *vui;
370 vhost_cpu_t *vhc;
371 u32 *workers = 0;
Damjan Marion586afd72017-04-05 19:18:20 +0200372 u32 thread_index;
Steven7312cc72017-03-15 21:18:55 -0700373 vlib_main_t *vm;
Pierre Pfistere21c5282016-09-21 08:04:59 +0100374
375 //Let's list all workers cpu indexes
376 u32 i;
377 for (i = vum->input_cpu_first_index;
378 i < vum->input_cpu_first_index + vum->input_cpu_count; i++)
379 {
Dave Barach80f54e22017-03-08 19:08:56 -0500380 vlib_node_set_state (vlib_mains[i], vhost_user_input_node.index,
Pierre Pfistere21c5282016-09-21 08:04:59 +0100381 VLIB_NODE_STATE_DISABLED);
382 vec_add1 (workers, i);
383 }
384
385 vec_foreach (vhc, vum->cpus)
386 {
387 vec_reset_length (vhc->rx_queues);
388 }
389
390 i = 0;
Pierre Pfisterdbb3c252016-11-22 10:33:34 +0000391 vhost_iface_and_queue_t iaq;
392 /* *INDENT-OFF* */
393 pool_foreach (vui, vum->vhost_user_interfaces, {
394 u32 *vui_workers = vec_len (vui->workers) ? vui->workers : workers;
395 u32 qid;
396 for (qid = 0; qid < VHOST_VRING_MAX_N / 2; qid++)
397 {
398 vhost_user_vring_t *txvq =
399 &vui->vrings[VHOST_VRING_IDX_TX (qid)];
400 if (!txvq->started)
401 continue;
Pierre Pfistere21c5282016-09-21 08:04:59 +0100402
Pierre Pfisterdbb3c252016-11-22 10:33:34 +0000403 i %= vec_len (vui_workers);
Damjan Marion586afd72017-04-05 19:18:20 +0200404 thread_index = vui_workers[i];
Pierre Pfisterdbb3c252016-11-22 10:33:34 +0000405 i++;
Damjan Marion586afd72017-04-05 19:18:20 +0200406 vhc = &vum->cpus[thread_index];
Pierre Pfistere21c5282016-09-21 08:04:59 +0100407
Pierre Pfisterdbb3c252016-11-22 10:33:34 +0000408 iaq.qid = qid;
409 iaq.vhost_iface_index = vui - vum->vhost_user_interfaces;
410 vec_add1 (vhc->rx_queues, iaq);
Pierre Pfisterdbb3c252016-11-22 10:33:34 +0000411 }
412 });
413 /* *INDENT-ON* */
Steven7312cc72017-03-15 21:18:55 -0700414
415 vec_foreach (vhc, vum->cpus)
416 {
417 vhost_iface_and_queue_t *vhiq;
418 u8 mode = VHOST_USER_INTERRUPT_MODE;
419
420 vec_foreach (vhiq, vhc->rx_queues)
421 {
422 vui = &vum->vhost_user_interfaces[vhiq->vhost_iface_index];
423 if (vui->operation_mode == VHOST_USER_POLLING_MODE)
424 {
425 /* At least one interface is polling, cpu is set to polling */
426 mode = VHOST_USER_POLLING_MODE;
427 break;
428 }
429 }
430 vhc->operation_mode = mode;
431 }
432
Damjan Marion586afd72017-04-05 19:18:20 +0200433 for (thread_index = vum->input_cpu_first_index;
434 thread_index < vum->input_cpu_first_index + vum->input_cpu_count;
435 thread_index++)
Steven7312cc72017-03-15 21:18:55 -0700436 {
437 vlib_node_state_t state = VLIB_NODE_STATE_POLLING;
438
Damjan Marion586afd72017-04-05 19:18:20 +0200439 vhc = &vum->cpus[thread_index];
440 vm = vlib_mains ? vlib_mains[thread_index] : &vlib_global_main;
Steven7312cc72017-03-15 21:18:55 -0700441 switch (vhc->operation_mode)
442 {
443 case VHOST_USER_INTERRUPT_MODE:
444 state = VLIB_NODE_STATE_INTERRUPT;
445 break;
446 case VHOST_USER_POLLING_MODE:
447 state = VLIB_NODE_STATE_POLLING;
448 break;
449 default:
450 clib_warning ("BUG: bad operation mode %d", vhc->operation_mode);
451 break;
452 }
453 vlib_node_set_state (vm, vhost_user_input_node.index, state);
454 }
455
456 vec_free (workers);
Pierre Pfistere21c5282016-09-21 08:04:59 +0100457}
458
459static int
460vhost_user_thread_placement (u32 sw_if_index, u32 worker_thread_index, u8 del)
461{
462 vhost_user_main_t *vum = &vhost_user_main;
463 vhost_user_intf_t *vui;
464 vnet_hw_interface_t *hw;
465
466 if (worker_thread_index < vum->input_cpu_first_index ||
467 worker_thread_index >=
468 vum->input_cpu_first_index + vum->input_cpu_count)
469 return -1;
470
471 if (!(hw = vnet_get_sup_hw_interface (vnet_get_main (), sw_if_index)))
472 return -2;
473
Pierre Pfisterdbb3c252016-11-22 10:33:34 +0000474 vui = pool_elt_at_index (vum->vhost_user_interfaces, hw->dev_instance);
Pierre Pfistere21c5282016-09-21 08:04:59 +0100475 u32 found = ~0, *w;
476 vec_foreach (w, vui->workers)
477 {
478 if (*w == worker_thread_index)
479 {
480 found = w - vui->workers;
481 break;
482 }
483 }
484
485 if (del)
486 {
487 if (found == ~0)
488 return -3;
489 vec_del1 (vui->workers, found);
490 }
491 else if (found == ~0)
492 {
493 vec_add1 (vui->workers, worker_thread_index);
494 }
495
496 vhost_user_rx_thread_placement ();
497 return 0;
498}
499
500/** @brief Returns whether at least one TX and one RX vring are enabled */
501int
502vhost_user_intf_ready (vhost_user_intf_t * vui)
503{
504 int i, found[2] = { }; //RX + TX
505
506 for (i = 0; i < VHOST_VRING_MAX_N; i++)
507 if (vui->vrings[i].started && vui->vrings[i].enabled)
508 found[i & 1] = 1;
509
510 return found[0] && found[1];
511}
512
513static void
514vhost_user_update_iface_state (vhost_user_intf_t * vui)
515{
516 /* if we have pointers to descriptor table, go up */
517 int is_up = vhost_user_intf_ready (vui);
518 if (is_up != vui->is_up)
519 {
520 DBG_SOCK ("interface %d %s", vui->sw_if_index,
521 is_up ? "ready" : "down");
522 vnet_hw_interface_set_flags (vnet_get_main (), vui->hw_if_index,
523 is_up ? VNET_HW_INTERFACE_FLAG_LINK_UP :
524 0);
525 vui->is_up = is_up;
526 }
527 vhost_user_rx_thread_placement ();
528 vhost_user_tx_thread_placement (vui);
529}
Ed Warnickecb9cada2015-12-08 15:45:58 -0700530
Steven7312cc72017-03-15 21:18:55 -0700531static void
532vhost_user_set_interrupt_pending (vhost_user_intf_t * vui, u32 ifq)
533{
534 vhost_user_main_t *vum = &vhost_user_main;
535 vhost_cpu_t *vhc;
Damjan Marion586afd72017-04-05 19:18:20 +0200536 u32 thread_index;
Steven7312cc72017-03-15 21:18:55 -0700537 vhost_iface_and_queue_t *vhiq;
538 vlib_main_t *vm;
539 u32 ifq2;
540 u8 done = 0;
541
542 if (vhost_user_intf_ready (vui))
543 {
544 vec_foreach (vhc, vum->cpus)
545 {
546 if (vhc->operation_mode == VHOST_USER_POLLING_MODE)
547 continue;
548
549 vec_foreach (vhiq, vhc->rx_queues)
550 {
551 /*
552 * Match the interface and the virtqueue number
553 */
554 if ((vhiq->vhost_iface_index == (ifq >> 8)) &&
555 (VHOST_VRING_IDX_TX (vhiq->qid) == (ifq & 0xff)))
556 {
Damjan Marion586afd72017-04-05 19:18:20 +0200557 thread_index = vhc - vum->cpus;
558 vm = vlib_mains ? vlib_mains[thread_index] : &vlib_global_main;
Steven7312cc72017-03-15 21:18:55 -0700559 /*
560 * Convert RX virtqueue number in the lower byte to vring
561 * queue index for the input node process. Top bytes contain
562 * the interface, lower byte contains the queue index.
563 */
564 ifq2 = ((ifq >> 8) << 8) | vhiq->qid;
565 vhc->pending_input_bitmap =
566 clib_bitmap_set (vhc->pending_input_bitmap, ifq2, 1);
567 vlib_node_set_interrupt_pending (vm,
568 vhost_user_input_node.index);
569 done = 1;
570 break;
571 }
572 }
573 if (done)
574 break;
575 }
576 }
577}
578
Damjan Marion00a9dca2016-08-17 17:05:46 +0200579static clib_error_t *
580vhost_user_callfd_read_ready (unix_file_t * uf)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700581{
Damjan Marion00a9dca2016-08-17 17:05:46 +0200582 __attribute__ ((unused)) int n;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700583 u8 buff[8];
Steven7312cc72017-03-15 21:18:55 -0700584 vhost_user_intf_t *vui =
585 pool_elt_at_index (vhost_user_main.vhost_user_interfaces,
586 uf->private_data >> 8);
587
Damjan Marion00a9dca2016-08-17 17:05:46 +0200588 n = read (uf->file_descriptor, ((char *) &buff), 8);
Steven7312cc72017-03-15 21:18:55 -0700589 DBG_SOCK ("if %d CALL queue %d", uf->private_data >> 8,
590 uf->private_data & 0xff);
591 vhost_user_set_interrupt_pending (vui, uf->private_data);
592
Ed Warnickecb9cada2015-12-08 15:45:58 -0700593 return 0;
594}
595
Pierre Pfistere21c5282016-09-21 08:04:59 +0100596static clib_error_t *
597vhost_user_kickfd_read_ready (unix_file_t * uf)
598{
599 __attribute__ ((unused)) int n;
600 u8 buff[8];
601 vhost_user_intf_t *vui =
Pierre Pfisterdbb3c252016-11-22 10:33:34 +0000602 pool_elt_at_index (vhost_user_main.vhost_user_interfaces,
603 uf->private_data >> 8);
Pierre Pfistere21c5282016-09-21 08:04:59 +0100604 u32 qid = uf->private_data & 0xff;
Steven7312cc72017-03-15 21:18:55 -0700605
Pierre Pfistere21c5282016-09-21 08:04:59 +0100606 n = read (uf->file_descriptor, ((char *) &buff), 8);
607 DBG_SOCK ("if %d KICK queue %d", uf->private_data >> 8, qid);
608
609 vlib_worker_thread_barrier_sync (vlib_get_main ());
Steven7312cc72017-03-15 21:18:55 -0700610 if (!vui->vrings[qid].started ||
611 (vhost_user_intf_ready (vui) != vui->is_up))
612 {
613 vui->vrings[qid].started = 1;
614 vhost_user_update_iface_state (vui);
615 }
Pierre Pfistere21c5282016-09-21 08:04:59 +0100616 vlib_worker_thread_barrier_release (vlib_get_main ());
Steven7312cc72017-03-15 21:18:55 -0700617
618 vhost_user_set_interrupt_pending (vui, uf->private_data);
Pierre Pfistere21c5282016-09-21 08:04:59 +0100619 return 0;
620}
621
622/**
623 * @brief Try once to lock the vring
624 * @return 0 on success, non-zero on failure.
625 */
626static inline int
627vhost_user_vring_try_lock (vhost_user_intf_t * vui, u32 qid)
628{
629 return __sync_lock_test_and_set (vui->vring_locks[qid], 1);
630}
631
632/**
633 * @brief Spin until the vring is successfully locked
634 */
635static inline void
636vhost_user_vring_lock (vhost_user_intf_t * vui, u32 qid)
637{
638 while (vhost_user_vring_try_lock (vui, qid))
639 ;
640}
641
642/**
643 * @brief Unlock the vring lock
644 */
645static inline void
646vhost_user_vring_unlock (vhost_user_intf_t * vui, u32 qid)
647{
648 *vui->vring_locks[qid] = 0;
649}
650
651static inline void
652vhost_user_vring_init (vhost_user_intf_t * vui, u32 qid)
653{
654 vhost_user_vring_t *vring = &vui->vrings[qid];
655 memset (vring, 0, sizeof (*vring));
Pierre Pfisterdbb3c252016-11-22 10:33:34 +0000656 vring->kickfd_idx = ~0;
657 vring->callfd_idx = ~0;
Pierre Pfistere21c5282016-09-21 08:04:59 +0100658 vring->errfd = -1;
659
660 /*
661 * We have a bug with some qemu 2.5, and this may be a fix.
662 * Feel like interpretation holy text, but this is from vhost-user.txt.
663 * "
664 * One queue pair is enabled initially. More queues are enabled
665 * dynamically, by sending message VHOST_USER_SET_VRING_ENABLE.
666 * "
667 * Don't know who's right, but this is what DPDK does.
668 */
669 if (qid == 0 || qid == 1)
670 vring->enabled = 1;
671}
672
673static inline void
674vhost_user_vring_close (vhost_user_intf_t * vui, u32 qid)
675{
676 vhost_user_vring_t *vring = &vui->vrings[qid];
Pierre Pfisterdbb3c252016-11-22 10:33:34 +0000677 if (vring->kickfd_idx != ~0)
Pierre Pfistere21c5282016-09-21 08:04:59 +0100678 {
679 unix_file_t *uf = pool_elt_at_index (unix_main.file_pool,
680 vring->kickfd_idx);
681 unix_file_del (&unix_main, uf);
Pierre Pfisterdbb3c252016-11-22 10:33:34 +0000682 vring->kickfd_idx = ~0;
Pierre Pfistere21c5282016-09-21 08:04:59 +0100683 }
Pierre Pfisterdbb3c252016-11-22 10:33:34 +0000684 if (vring->callfd_idx != ~0)
Pierre Pfistere21c5282016-09-21 08:04:59 +0100685 {
686 unix_file_t *uf = pool_elt_at_index (unix_main.file_pool,
687 vring->callfd_idx);
688 unix_file_del (&unix_main, uf);
Pierre Pfisterdbb3c252016-11-22 10:33:34 +0000689 vring->callfd_idx = ~0;
Pierre Pfistere21c5282016-09-21 08:04:59 +0100690 }
691 if (vring->errfd != -1)
Stevenf6dae052017-03-09 23:49:32 -0800692 {
693 close (vring->errfd);
694 vring->errfd = -1;
695 }
Pierre Pfistere21c5282016-09-21 08:04:59 +0100696 vhost_user_vring_init (vui, qid);
697}
698
Damjan Marion00a9dca2016-08-17 17:05:46 +0200699static inline void
700vhost_user_if_disconnect (vhost_user_intf_t * vui)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700701{
Damjan Marion00a9dca2016-08-17 17:05:46 +0200702 vnet_main_t *vnm = vnet_get_main ();
Ed Warnickecb9cada2015-12-08 15:45:58 -0700703 int q;
704
Damjan Marion00a9dca2016-08-17 17:05:46 +0200705 vnet_hw_interface_set_flags (vnm, vui->hw_if_index, 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700706
Damjan Marion00a9dca2016-08-17 17:05:46 +0200707 if (vui->unix_file_index != ~0)
708 {
Ed Warnickecb9cada2015-12-08 15:45:58 -0700709 unix_file_del (&unix_main, unix_main.file_pool + vui->unix_file_index);
710 vui->unix_file_index = ~0;
Damjan Marion00a9dca2016-08-17 17:05:46 +0200711 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700712
Ed Warnickecb9cada2015-12-08 15:45:58 -0700713 vui->is_up = 0;
Steve Shin44489572016-09-22 12:08:55 -0700714
Pierre Pfistere21c5282016-09-21 08:04:59 +0100715 for (q = 0; q < VHOST_VRING_MAX_N; q++)
716 vhost_user_vring_close (vui, q);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700717
Damjan Marion00a9dca2016-08-17 17:05:46 +0200718 unmap_all_mem_regions (vui);
719 DBG_SOCK ("interface ifindex %d disconnected", vui->sw_if_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700720}
721
Yoann Desmouceaux4667c222016-02-24 22:51:00 +0100722#define VHOST_LOG_PAGE 0x1000
Pierre Pfisterd3eb90e2016-11-29 15:36:14 +0000723static_always_inline void
724vhost_user_log_dirty_pages_2 (vhost_user_intf_t * vui,
725 u64 addr, u64 len, u8 is_host_address)
Yoann Desmouceaux4667c222016-02-24 22:51:00 +0100726{
Damjan Marion00a9dca2016-08-17 17:05:46 +0200727 if (PREDICT_TRUE (vui->log_base_addr == 0
728 || !(vui->features & (1 << FEAT_VHOST_F_LOG_ALL))))
729 {
730 return;
731 }
Pierre Pfisterd3eb90e2016-11-29 15:36:14 +0000732 if (is_host_address)
733 {
734 addr = (u64) map_user_mem (vui, (uword) addr);
735 }
Damjan Marion00a9dca2016-08-17 17:05:46 +0200736 if (PREDICT_FALSE ((addr + len - 1) / VHOST_LOG_PAGE / 8 >= vui->log_size))
737 {
738 DBG_SOCK ("vhost_user_log_dirty_pages(): out of range\n");
739 return;
740 }
Yoann Desmouceaux4667c222016-02-24 22:51:00 +0100741
Damjan Marion00a9dca2016-08-17 17:05:46 +0200742 CLIB_MEMORY_BARRIER ();
Yoann Desmouceaux4667c222016-02-24 22:51:00 +0100743 u64 page = addr / VHOST_LOG_PAGE;
Damjan Marion00a9dca2016-08-17 17:05:46 +0200744 while (page * VHOST_LOG_PAGE < addr + len)
745 {
746 ((u8 *) vui->log_base_addr)[page / 8] |= 1 << page % 8;
747 page++;
748 }
Yoann Desmouceaux4667c222016-02-24 22:51:00 +0100749}
750
Pierre Pfisterd3eb90e2016-11-29 15:36:14 +0000751static_always_inline void
752vhost_user_log_dirty_pages (vhost_user_intf_t * vui, u64 addr, u64 len)
753{
754 vhost_user_log_dirty_pages_2 (vui, addr, len, 0);
755}
756
Yoann Desmouceaux4667c222016-02-24 22:51:00 +0100757#define vhost_user_log_dirty_ring(vui, vq, member) \
Yoann Desmouceauxfe2da0e2016-03-08 14:54:28 +0100758 if (PREDICT_FALSE(vq->log_used)) { \
Damjan Marion8d281b32016-08-24 14:32:39 +0200759 vhost_user_log_dirty_pages(vui, vq->log_guest_addr + STRUCT_OFFSET_OF(vring_used_t, member), \
Yoann Desmouceauxfe2da0e2016-03-08 14:54:28 +0100760 sizeof(vq->used->member)); \
761 }
Yoann Desmouceaux4667c222016-02-24 22:51:00 +0100762
Damjan Marion00a9dca2016-08-17 17:05:46 +0200763static clib_error_t *
764vhost_user_socket_read (unix_file_t * uf)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700765{
766 int n, i;
767 int fd, number_of_fds = 0;
768 int fds[VHOST_MEMORY_MAX_NREGIONS];
769 vhost_user_msg_t msg;
770 struct msghdr mh;
771 struct iovec iov[1];
Damjan Marion00a9dca2016-08-17 17:05:46 +0200772 vhost_user_main_t *vum = &vhost_user_main;
773 vhost_user_intf_t *vui;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700774 struct cmsghdr *cmsg;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700775 u8 q;
Damjan Marion00a9dca2016-08-17 17:05:46 +0200776 unix_file_t template = { 0 };
777 vnet_main_t *vnm = vnet_get_main ();
Ed Warnickecb9cada2015-12-08 15:45:58 -0700778
Pierre Pfisterdbb3c252016-11-22 10:33:34 +0000779 vui = pool_elt_at_index (vum->vhost_user_interfaces, uf->private_data);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700780
Damjan Marion00a9dca2016-08-17 17:05:46 +0200781 char control[CMSG_SPACE (VHOST_MEMORY_MAX_NREGIONS * sizeof (int))];
Ed Warnickecb9cada2015-12-08 15:45:58 -0700782
Damjan Marion00a9dca2016-08-17 17:05:46 +0200783 memset (&mh, 0, sizeof (mh));
784 memset (control, 0, sizeof (control));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700785
Damjan Marion00a9dca2016-08-17 17:05:46 +0200786 for (i = 0; i < VHOST_MEMORY_MAX_NREGIONS; i++)
Damjan Mariona290d7c2016-08-16 12:37:24 +0200787 fds[i] = -1;
788
Ed Warnickecb9cada2015-12-08 15:45:58 -0700789 /* set the payload */
790 iov[0].iov_base = (void *) &msg;
791 iov[0].iov_len = VHOST_USER_MSG_HDR_SZ;
792
793 mh.msg_iov = iov;
794 mh.msg_iovlen = 1;
795 mh.msg_control = control;
Damjan Marion00a9dca2016-08-17 17:05:46 +0200796 mh.msg_controllen = sizeof (control);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700797
Damjan Marion00a9dca2016-08-17 17:05:46 +0200798 n = recvmsg (uf->file_descriptor, &mh, 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700799
Pierre Pfistere21c5282016-09-21 08:04:59 +0100800 /* Stop workers to avoid end of the world */
801 vlib_worker_thread_barrier_sync (vlib_get_main ());
802
Ed Warnickecb9cada2015-12-08 15:45:58 -0700803 if (n != VHOST_USER_MSG_HDR_SZ)
Pierre Pfistere21c5282016-09-21 08:04:59 +0100804 {
805 if (n == -1)
806 {
807 DBG_SOCK ("recvmsg returned error %d %s", errno, strerror (errno));
808 }
809 else
810 {
811 DBG_SOCK ("n (%d) != VHOST_USER_MSG_HDR_SZ (%d)",
812 n, VHOST_USER_MSG_HDR_SZ);
813 }
814 goto close_socket;
815 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700816
Damjan Marion00a9dca2016-08-17 17:05:46 +0200817 if (mh.msg_flags & MSG_CTRUNC)
818 {
Pierre Pfistere21c5282016-09-21 08:04:59 +0100819 DBG_SOCK ("MSG_CTRUNC is set");
Damjan Marion00a9dca2016-08-17 17:05:46 +0200820 goto close_socket;
821 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700822
Damjan Marion00a9dca2016-08-17 17:05:46 +0200823 cmsg = CMSG_FIRSTHDR (&mh);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700824
825 if (cmsg && (cmsg->cmsg_len > 0) && (cmsg->cmsg_level == SOL_SOCKET) &&
826 (cmsg->cmsg_type == SCM_RIGHTS) &&
Damjan Marion00a9dca2016-08-17 17:05:46 +0200827 (cmsg->cmsg_len - CMSG_LEN (0) <=
828 VHOST_MEMORY_MAX_NREGIONS * sizeof (int)))
829 {
830 number_of_fds = (cmsg->cmsg_len - CMSG_LEN (0)) / sizeof (int);
831 clib_memcpy (fds, CMSG_DATA (cmsg), number_of_fds * sizeof (int));
832 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700833
Damjan Marion00a9dca2016-08-17 17:05:46 +0200834 /* version 1, no reply bit set */
835 if ((msg.flags & 7) != 1)
836 {
837 DBG_SOCK ("malformed message received. closing socket");
838 goto close_socket;
839 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700840
841 {
Pierre Pfistere21c5282016-09-21 08:04:59 +0100842 int rv;
843 rv =
844 read (uf->file_descriptor, ((char *) &msg) + VHOST_USER_MSG_HDR_SZ,
845 msg.size);
846 if (rv < 0)
847 {
848 DBG_SOCK ("read failed %s", strerror (errno));
849 goto close_socket;
850 }
851 else if (rv != msg.size)
852 {
853 DBG_SOCK ("message too short (read %dB should be %dB)", rv, msg.size);
854 goto close_socket;
855 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700856 }
857
Damjan Marion00a9dca2016-08-17 17:05:46 +0200858 switch (msg.request)
859 {
Ed Warnickecb9cada2015-12-08 15:45:58 -0700860 case VHOST_USER_GET_FEATURES:
Ed Warnickecb9cada2015-12-08 15:45:58 -0700861 msg.flags |= 4;
Pierre Pfistere21c5282016-09-21 08:04:59 +0100862 msg.u64 = (1ULL << FEAT_VIRTIO_NET_F_MRG_RXBUF) |
863 (1ULL << FEAT_VIRTIO_NET_F_CTRL_VQ) |
864 (1ULL << FEAT_VIRTIO_F_ANY_LAYOUT) |
865 (1ULL << FEAT_VIRTIO_F_INDIRECT_DESC) |
866 (1ULL << FEAT_VHOST_F_LOG_ALL) |
867 (1ULL << FEAT_VIRTIO_NET_F_GUEST_ANNOUNCE) |
868 (1ULL << FEAT_VIRTIO_NET_F_MQ) |
869 (1ULL << FEAT_VHOST_USER_F_PROTOCOL_FEATURES) |
870 (1ULL << FEAT_VIRTIO_F_VERSION_1);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700871 msg.u64 &= vui->feature_mask;
Damjan Marion00a9dca2016-08-17 17:05:46 +0200872 msg.size = sizeof (msg.u64);
Pierre Pfistere21c5282016-09-21 08:04:59 +0100873 DBG_SOCK ("if %d msg VHOST_USER_GET_FEATURES - reply 0x%016llx",
874 vui->hw_if_index, msg.u64);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700875 break;
876
877 case VHOST_USER_SET_FEATURES:
Damjan Marion00a9dca2016-08-17 17:05:46 +0200878 DBG_SOCK ("if %d msg VHOST_USER_SET_FEATURES features 0x%016llx",
879 vui->hw_if_index, msg.u64);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700880
881 vui->features = msg.u64;
Yoann Desmouceaux4667c222016-02-24 22:51:00 +0100882
Pierre Pfistere21c5282016-09-21 08:04:59 +0100883 if (vui->features &
884 ((1 << FEAT_VIRTIO_NET_F_MRG_RXBUF) |
885 (1ULL << FEAT_VIRTIO_F_VERSION_1)))
Damjan Marion00a9dca2016-08-17 17:05:46 +0200886 vui->virtio_net_hdr_sz = 12;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700887 else
Damjan Marion00a9dca2016-08-17 17:05:46 +0200888 vui->virtio_net_hdr_sz = 10;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700889
Damjan Marion00a9dca2016-08-17 17:05:46 +0200890 vui->is_any_layout =
891 (vui->features & (1 << FEAT_VIRTIO_F_ANY_LAYOUT)) ? 1 : 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700892
893 ASSERT (vui->virtio_net_hdr_sz < VLIB_BUFFER_PRE_DATA_SIZE);
Damjan Marion00a9dca2016-08-17 17:05:46 +0200894 vnet_hw_interface_set_flags (vnm, vui->hw_if_index, 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700895 vui->is_up = 0;
896
Pierre Pfistere21c5282016-09-21 08:04:59 +0100897 /*for (q = 0; q < VHOST_VRING_MAX_N; q++)
898 vhost_user_vring_close(&vui->vrings[q]); */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700899
900 break;
901
902 case VHOST_USER_SET_MEM_TABLE:
Damjan Marion00a9dca2016-08-17 17:05:46 +0200903 DBG_SOCK ("if %d msg VHOST_USER_SET_MEM_TABLE nregions %d",
904 vui->hw_if_index, msg.memory.nregions);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700905
906 if ((msg.memory.nregions < 1) ||
Damjan Marion00a9dca2016-08-17 17:05:46 +0200907 (msg.memory.nregions > VHOST_MEMORY_MAX_NREGIONS))
908 {
Ed Warnickecb9cada2015-12-08 15:45:58 -0700909
Damjan Marion00a9dca2016-08-17 17:05:46 +0200910 DBG_SOCK ("number of mem regions must be between 1 and %i",
911 VHOST_MEMORY_MAX_NREGIONS);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700912
Damjan Marion00a9dca2016-08-17 17:05:46 +0200913 goto close_socket;
914 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700915
Damjan Marion00a9dca2016-08-17 17:05:46 +0200916 if (msg.memory.nregions != number_of_fds)
917 {
918 DBG_SOCK ("each memory region must have FD");
919 goto close_socket;
920 }
921 unmap_all_mem_regions (vui);
922 for (i = 0; i < msg.memory.nregions; i++)
923 {
924 clib_memcpy (&(vui->regions[i]), &msg.memory.regions[i],
925 sizeof (vhost_user_memory_region_t));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700926
Damjan Marion00a9dca2016-08-17 17:05:46 +0200927 long page_sz = get_huge_page_size (fds[i]);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700928
Damjan Marion00a9dca2016-08-17 17:05:46 +0200929 /* align size to 2M page */
930 ssize_t map_sz = (vui->regions[i].memory_size +
931 vui->regions[i].mmap_offset +
932 page_sz) & ~(page_sz - 1);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700933
Damjan Marion00a9dca2016-08-17 17:05:46 +0200934 vui->region_mmap_addr[i] = mmap (0, map_sz, PROT_READ | PROT_WRITE,
935 MAP_SHARED, fds[i], 0);
Damjan Marion37623702016-09-20 11:25:27 +0200936 vui->region_guest_addr_lo[i] = vui->regions[i].guest_phys_addr;
937 vui->region_guest_addr_hi[i] = vui->regions[i].guest_phys_addr +
938 vui->regions[i].memory_size;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700939
Damjan Marion00a9dca2016-08-17 17:05:46 +0200940 DBG_SOCK
941 ("map memory region %d addr 0 len 0x%lx fd %d mapped 0x%lx "
942 "page_sz 0x%x", i, map_sz, fds[i], vui->region_mmap_addr[i],
943 page_sz);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700944
Damjan Marion00a9dca2016-08-17 17:05:46 +0200945 if (vui->region_mmap_addr[i] == MAP_FAILED)
946 {
947 clib_warning ("failed to map memory. errno is %d", errno);
948 goto close_socket;
949 }
950 vui->region_mmap_addr[i] += vui->regions[i].mmap_offset;
951 vui->region_mmap_fd[i] = fds[i];
952 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700953 vui->nregions = msg.memory.nregions;
954 break;
955
956 case VHOST_USER_SET_VRING_NUM:
Damjan Marion00a9dca2016-08-17 17:05:46 +0200957 DBG_SOCK ("if %d msg VHOST_USER_SET_VRING_NUM idx %d num %d",
958 vui->hw_if_index, msg.state.index, msg.state.num);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700959
Damjan Marion00a9dca2016-08-17 17:05:46 +0200960 if ((msg.state.num > 32768) || /* maximum ring size is 32768 */
961 (msg.state.num == 0) || /* it cannot be zero */
Pierre Pfistere21c5282016-09-21 08:04:59 +0100962 ((msg.state.num - 1) & msg.state.num)) /* must be power of 2 */
Damjan Marion00a9dca2016-08-17 17:05:46 +0200963 goto close_socket;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700964 vui->vrings[msg.state.index].qsz = msg.state.num;
965 break;
966
967 case VHOST_USER_SET_VRING_ADDR:
Damjan Marion00a9dca2016-08-17 17:05:46 +0200968 DBG_SOCK ("if %d msg VHOST_USER_SET_VRING_ADDR idx %d",
969 vui->hw_if_index, msg.state.index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700970
Pierre Pfistere21c5282016-09-21 08:04:59 +0100971 if (msg.state.index >= VHOST_VRING_MAX_N)
972 {
973 DBG_SOCK ("invalid vring index VHOST_USER_SET_VRING_ADDR:"
974 " %d >= %d", msg.state.index, VHOST_VRING_MAX_N);
975 goto close_socket;
976 }
977
978 if (msg.size < sizeof (msg.addr))
979 {
980 DBG_SOCK ("vhost message is too short (%d < %d)",
981 msg.size, sizeof (msg.addr));
982 goto close_socket;
983 }
984
Damjan Marion00a9dca2016-08-17 17:05:46 +0200985 vui->vrings[msg.state.index].desc = (vring_desc_t *)
986 map_user_mem (vui, msg.addr.desc_user_addr);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700987 vui->vrings[msg.state.index].used = (vring_used_t *)
Damjan Marion00a9dca2016-08-17 17:05:46 +0200988 map_user_mem (vui, msg.addr.used_user_addr);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700989 vui->vrings[msg.state.index].avail = (vring_avail_t *)
Damjan Marion00a9dca2016-08-17 17:05:46 +0200990 map_user_mem (vui, msg.addr.avail_user_addr);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700991
992 if ((vui->vrings[msg.state.index].desc == NULL) ||
Damjan Marion00a9dca2016-08-17 17:05:46 +0200993 (vui->vrings[msg.state.index].used == NULL) ||
994 (vui->vrings[msg.state.index].avail == NULL))
995 {
996 DBG_SOCK ("failed to map user memory for hw_if_index %d",
997 vui->hw_if_index);
998 goto close_socket;
999 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001000
Yoann Desmouceaux4667c222016-02-24 22:51:00 +01001001 vui->vrings[msg.state.index].log_guest_addr = msg.addr.log_guest_addr;
Yoann Desmouceauxfe2da0e2016-03-08 14:54:28 +01001002 vui->vrings[msg.state.index].log_used =
Damjan Marion00a9dca2016-08-17 17:05:46 +02001003 (msg.addr.flags & (1 << VHOST_VRING_F_LOG)) ? 1 : 0;
Yoann Desmouceaux4667c222016-02-24 22:51:00 +01001004
1005 /* Spec says: If VHOST_USER_F_PROTOCOL_FEATURES has not been negotiated,
Damjan Marion00a9dca2016-08-17 17:05:46 +02001006 the ring is initialized in an enabled state. */
Damjan Marion00a9dca2016-08-17 17:05:46 +02001007 if (!(vui->features & (1 << FEAT_VHOST_USER_F_PROTOCOL_FEATURES)))
1008 {
1009 vui->vrings[msg.state.index].enabled = 1;
1010 }
Yoann Desmouceaux4667c222016-02-24 22:51:00 +01001011
Ed Warnickecb9cada2015-12-08 15:45:58 -07001012 vui->vrings[msg.state.index].last_used_idx =
Damjan Marion10eb1ea2016-10-13 10:02:19 +02001013 vui->vrings[msg.state.index].last_avail_idx =
Damjan Marion00a9dca2016-08-17 17:05:46 +02001014 vui->vrings[msg.state.index].used->idx;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001015
Steven7312cc72017-03-15 21:18:55 -07001016 if (vui->operation_mode == VHOST_USER_POLLING_MODE)
1017 /* tell driver that we don't want interrupts */
1018 vui->vrings[msg.state.index].used->flags = VRING_USED_F_NO_NOTIFY;
1019 else
1020 /* tell driver that we want interrupts */
1021 vui->vrings[msg.state.index].used->flags = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001022 break;
1023
1024 case VHOST_USER_SET_OWNER:
Damjan Marion00a9dca2016-08-17 17:05:46 +02001025 DBG_SOCK ("if %d msg VHOST_USER_SET_OWNER", vui->hw_if_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001026 break;
1027
1028 case VHOST_USER_RESET_OWNER:
Damjan Marion00a9dca2016-08-17 17:05:46 +02001029 DBG_SOCK ("if %d msg VHOST_USER_RESET_OWNER", vui->hw_if_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001030 break;
1031
1032 case VHOST_USER_SET_VRING_CALL:
Damjan Marion00a9dca2016-08-17 17:05:46 +02001033 DBG_SOCK ("if %d msg VHOST_USER_SET_VRING_CALL u64 %d",
1034 vui->hw_if_index, msg.u64);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001035
1036 q = (u8) (msg.u64 & 0xFF);
1037
Pierre Pfistere21c5282016-09-21 08:04:59 +01001038 /* if there is old fd, delete and close it */
Pierre Pfisterdbb3c252016-11-22 10:33:34 +00001039 if (vui->vrings[q].callfd_idx != ~0)
Pierre Pfistere21c5282016-09-21 08:04:59 +01001040 {
1041 unix_file_t *uf = pool_elt_at_index (unix_main.file_pool,
1042 vui->vrings[q].callfd_idx);
1043 unix_file_del (&unix_main, uf);
Pierre Pfisterdbb3c252016-11-22 10:33:34 +00001044 vui->vrings[q].callfd_idx = ~0;
Pierre Pfistere21c5282016-09-21 08:04:59 +01001045 }
1046
Ed Warnickecb9cada2015-12-08 15:45:58 -07001047 if (!(msg.u64 & 0x100))
Damjan Marion00a9dca2016-08-17 17:05:46 +02001048 {
1049 if (number_of_fds != 1)
Damjan Marion00a9dca2016-08-17 17:05:46 +02001050 {
Pierre Pfistere21c5282016-09-21 08:04:59 +01001051 DBG_SOCK ("More than one fd received !");
1052 goto close_socket;
Damjan Marion00a9dca2016-08-17 17:05:46 +02001053 }
Pierre Pfistere21c5282016-09-21 08:04:59 +01001054
Damjan Marion00a9dca2016-08-17 17:05:46 +02001055 template.read_function = vhost_user_callfd_read_ready;
1056 template.file_descriptor = fds[0];
Pierre Pfisterdbb3c252016-11-22 10:33:34 +00001057 template.private_data =
1058 ((vui - vhost_user_main.vhost_user_interfaces) << 8) + q;
Damjan Marion00a9dca2016-08-17 17:05:46 +02001059 vui->vrings[q].callfd_idx = unix_file_add (&unix_main, &template);
1060 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001061 else
Pierre Pfisterdbb3c252016-11-22 10:33:34 +00001062 vui->vrings[q].callfd_idx = ~0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001063 break;
1064
1065 case VHOST_USER_SET_VRING_KICK:
Damjan Marion00a9dca2016-08-17 17:05:46 +02001066 DBG_SOCK ("if %d msg VHOST_USER_SET_VRING_KICK u64 %d",
1067 vui->hw_if_index, msg.u64);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001068
1069 q = (u8) (msg.u64 & 0xFF);
1070
Pierre Pfisterdbb3c252016-11-22 10:33:34 +00001071 if (vui->vrings[q].kickfd_idx != ~0)
Pierre Pfistere21c5282016-09-21 08:04:59 +01001072 {
1073 unix_file_t *uf = pool_elt_at_index (unix_main.file_pool,
Pierre Pfisterdbb3c252016-11-22 10:33:34 +00001074 vui->vrings[q].kickfd_idx);
Pierre Pfistere21c5282016-09-21 08:04:59 +01001075 unix_file_del (&unix_main, uf);
Pierre Pfisterdbb3c252016-11-22 10:33:34 +00001076 vui->vrings[q].kickfd_idx = ~0;
Pierre Pfistere21c5282016-09-21 08:04:59 +01001077 }
1078
Ed Warnickecb9cada2015-12-08 15:45:58 -07001079 if (!(msg.u64 & 0x100))
Damjan Marion00a9dca2016-08-17 17:05:46 +02001080 {
1081 if (number_of_fds != 1)
Pierre Pfistere21c5282016-09-21 08:04:59 +01001082 {
1083 DBG_SOCK ("More than one fd received !");
1084 goto close_socket;
1085 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001086
Pierre Pfistere21c5282016-09-21 08:04:59 +01001087 template.read_function = vhost_user_kickfd_read_ready;
1088 template.file_descriptor = fds[0];
1089 template.private_data =
Pierre Pfisterdbb3c252016-11-22 10:33:34 +00001090 (((uword) (vui - vhost_user_main.vhost_user_interfaces)) << 8) +
1091 q;
Pierre Pfistere21c5282016-09-21 08:04:59 +01001092 vui->vrings[q].kickfd_idx = unix_file_add (&unix_main, &template);
Damjan Marion00a9dca2016-08-17 17:05:46 +02001093 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001094 else
Pierre Pfistere21c5282016-09-21 08:04:59 +01001095 {
Pierre Pfisterdbb3c252016-11-22 10:33:34 +00001096 //When no kickfd is set, the queue is initialized as started
1097 vui->vrings[q].kickfd_idx = ~0;
Pierre Pfistere21c5282016-09-21 08:04:59 +01001098 vui->vrings[q].started = 1;
1099 }
1100
Ed Warnickecb9cada2015-12-08 15:45:58 -07001101 break;
1102
1103 case VHOST_USER_SET_VRING_ERR:
Damjan Marion00a9dca2016-08-17 17:05:46 +02001104 DBG_SOCK ("if %d msg VHOST_USER_SET_VRING_ERR u64 %d",
1105 vui->hw_if_index, msg.u64);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001106
1107 q = (u8) (msg.u64 & 0xFF);
1108
Pierre Pfistere21c5282016-09-21 08:04:59 +01001109 if (vui->vrings[q].errfd != -1)
1110 close (vui->vrings[q].errfd);
1111
Ed Warnickecb9cada2015-12-08 15:45:58 -07001112 if (!(msg.u64 & 0x100))
Damjan Marion00a9dca2016-08-17 17:05:46 +02001113 {
1114 if (number_of_fds != 1)
1115 goto close_socket;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001116
Pierre Pfistere21c5282016-09-21 08:04:59 +01001117 vui->vrings[q].errfd = fds[0];
Damjan Marion00a9dca2016-08-17 17:05:46 +02001118 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001119 else
Pierre Pfistere21c5282016-09-21 08:04:59 +01001120 vui->vrings[q].errfd = -1;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001121
Ed Warnickecb9cada2015-12-08 15:45:58 -07001122 break;
1123
1124 case VHOST_USER_SET_VRING_BASE:
Damjan Marion00a9dca2016-08-17 17:05:46 +02001125 DBG_SOCK ("if %d msg VHOST_USER_SET_VRING_BASE idx %d num %d",
1126 vui->hw_if_index, msg.state.index, msg.state.num);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001127
1128 vui->vrings[msg.state.index].last_avail_idx = msg.state.num;
1129 break;
1130
1131 case VHOST_USER_GET_VRING_BASE:
Damjan Marion00a9dca2016-08-17 17:05:46 +02001132 DBG_SOCK ("if %d msg VHOST_USER_GET_VRING_BASE idx %d num %d",
1133 vui->hw_if_index, msg.state.index, msg.state.num);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001134
Pierre Pfistere21c5282016-09-21 08:04:59 +01001135 if (msg.state.index >= VHOST_VRING_MAX_N)
1136 {
1137 DBG_SOCK ("invalid vring index VHOST_USER_GET_VRING_BASE:"
1138 " %d >= %d", msg.state.index, VHOST_VRING_MAX_N);
1139 goto close_socket;
1140 }
1141
Stevenf6dae052017-03-09 23:49:32 -08001142 /*
1143 * Copy last_avail_idx from the vring before closing it because
1144 * closing the vring also initializes the vring last_avail_idx
1145 */
Yoann Desmouceaux4667c222016-02-24 22:51:00 +01001146 msg.state.num = vui->vrings[msg.state.index].last_avail_idx;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001147 msg.flags |= 4;
Damjan Marion00a9dca2016-08-17 17:05:46 +02001148 msg.size = sizeof (msg.state);
Stevenf6dae052017-03-09 23:49:32 -08001149
1150 /* Spec says: Client must [...] stop ring upon receiving VHOST_USER_GET_VRING_BASE. */
1151 vhost_user_vring_close (vui, msg.state.index);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001152 break;
1153
1154 case VHOST_USER_NONE:
Damjan Marion00a9dca2016-08-17 17:05:46 +02001155 DBG_SOCK ("if %d msg VHOST_USER_NONE", vui->hw_if_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001156
1157 break;
1158
1159 case VHOST_USER_SET_LOG_BASE:
Damjan Marion00a9dca2016-08-17 17:05:46 +02001160 {
1161 DBG_SOCK ("if %d msg VHOST_USER_SET_LOG_BASE", vui->hw_if_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001162
Damjan Marion00a9dca2016-08-17 17:05:46 +02001163 if (msg.size != sizeof (msg.log))
1164 {
1165 DBG_SOCK
1166 ("invalid msg size for VHOST_USER_SET_LOG_BASE: %d instead of %d",
1167 msg.size, sizeof (msg.log));
1168 goto close_socket;
1169 }
1170
1171 if (!
1172 (vui->protocol_features & (1 << VHOST_USER_PROTOCOL_F_LOG_SHMFD)))
1173 {
1174 DBG_SOCK
1175 ("VHOST_USER_PROTOCOL_F_LOG_SHMFD not set but VHOST_USER_SET_LOG_BASE received");
1176 goto close_socket;
1177 }
1178
1179 fd = fds[0];
1180 /* align size to 2M page */
1181 long page_sz = get_huge_page_size (fd);
1182 ssize_t map_sz =
1183 (msg.log.size + msg.log.offset + page_sz) & ~(page_sz - 1);
1184
1185 vui->log_base_addr = mmap (0, map_sz, PROT_READ | PROT_WRITE,
1186 MAP_SHARED, fd, 0);
1187
1188 DBG_SOCK
1189 ("map log region addr 0 len 0x%lx off 0x%lx fd %d mapped 0x%lx",
1190 map_sz, msg.log.offset, fd, vui->log_base_addr);
1191
1192 if (vui->log_base_addr == MAP_FAILED)
1193 {
1194 clib_warning ("failed to map memory. errno is %d", errno);
1195 goto close_socket;
1196 }
1197
1198 vui->log_base_addr += msg.log.offset;
1199 vui->log_size = msg.log.size;
1200
1201 msg.flags |= 4;
1202 msg.size = sizeof (msg.u64);
1203
1204 break;
Yoann Desmouceaux4667c222016-02-24 22:51:00 +01001205 }
1206
Ed Warnickecb9cada2015-12-08 15:45:58 -07001207 case VHOST_USER_SET_LOG_FD:
Damjan Marion00a9dca2016-08-17 17:05:46 +02001208 DBG_SOCK ("if %d msg VHOST_USER_SET_LOG_FD", vui->hw_if_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001209
1210 break;
1211
Yoann Desmouceaux4667c222016-02-24 22:51:00 +01001212 case VHOST_USER_GET_PROTOCOL_FEATURES:
Damjan Marion00a9dca2016-08-17 17:05:46 +02001213 DBG_SOCK ("if %d msg VHOST_USER_GET_PROTOCOL_FEATURES",
1214 vui->hw_if_index);
Yoann Desmouceaux4667c222016-02-24 22:51:00 +01001215
1216 msg.flags |= 4;
Pierre Pfistere21c5282016-09-21 08:04:59 +01001217 msg.u64 = (1 << VHOST_USER_PROTOCOL_F_LOG_SHMFD) |
1218 (1 << VHOST_USER_PROTOCOL_F_MQ);
Damjan Marion00a9dca2016-08-17 17:05:46 +02001219 msg.size = sizeof (msg.u64);
Yoann Desmouceaux4667c222016-02-24 22:51:00 +01001220 break;
1221
1222 case VHOST_USER_SET_PROTOCOL_FEATURES:
Damjan Marion00a9dca2016-08-17 17:05:46 +02001223 DBG_SOCK ("if %d msg VHOST_USER_SET_PROTOCOL_FEATURES features 0x%lx",
1224 vui->hw_if_index, msg.u64);
Yoann Desmouceaux4667c222016-02-24 22:51:00 +01001225
1226 vui->protocol_features = msg.u64;
1227
1228 break;
1229
Pierre Pfistere21c5282016-09-21 08:04:59 +01001230 case VHOST_USER_GET_QUEUE_NUM:
1231 DBG_SOCK ("if %d msg VHOST_USER_GET_QUEUE_NUM", vui->hw_if_index);
1232 msg.flags |= 4;
1233 msg.u64 = VHOST_VRING_MAX_N;
1234 msg.size = sizeof (msg.u64);
1235 break;
1236
Yoann Desmouceaux4667c222016-02-24 22:51:00 +01001237 case VHOST_USER_SET_VRING_ENABLE:
Pierre Pfistere21c5282016-09-21 08:04:59 +01001238 DBG_SOCK ("if %d VHOST_USER_SET_VRING_ENABLE: %s queue %d",
1239 vui->hw_if_index, msg.state.num ? "enable" : "disable",
1240 msg.state.index);
1241 if (msg.state.index >= VHOST_VRING_MAX_N)
1242 {
1243 DBG_SOCK ("invalid vring index VHOST_USER_SET_VRING_ENABLE:"
1244 " %d >= %d", msg.state.index, VHOST_VRING_MAX_N);
1245 goto close_socket;
1246 }
1247
Yoann Desmouceaux4667c222016-02-24 22:51:00 +01001248 vui->vrings[msg.state.index].enabled = msg.state.num;
1249 break;
1250
Ed Warnickecb9cada2015-12-08 15:45:58 -07001251 default:
Damjan Marion00a9dca2016-08-17 17:05:46 +02001252 DBG_SOCK ("unknown vhost-user message %d received. closing socket",
1253 msg.request);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001254 goto close_socket;
Damjan Marion00a9dca2016-08-17 17:05:46 +02001255 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001256
Ed Warnickecb9cada2015-12-08 15:45:58 -07001257 /* if we need to reply */
1258 if (msg.flags & 4)
Damjan Marion00a9dca2016-08-17 17:05:46 +02001259 {
1260 n =
1261 send (uf->file_descriptor, &msg, VHOST_USER_MSG_HDR_SZ + msg.size, 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001262 if (n != (msg.size + VHOST_USER_MSG_HDR_SZ))
Pierre Pfistere21c5282016-09-21 08:04:59 +01001263 {
1264 DBG_SOCK ("could not send message response");
1265 goto close_socket;
1266 }
Damjan Marion00a9dca2016-08-17 17:05:46 +02001267 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001268
Pierre Pfistere21c5282016-09-21 08:04:59 +01001269 vhost_user_update_iface_state (vui);
1270 vlib_worker_thread_barrier_release (vlib_get_main ());
Ed Warnickecb9cada2015-12-08 15:45:58 -07001271 return 0;
1272
1273close_socket:
Damjan Marion00a9dca2016-08-17 17:05:46 +02001274 vhost_user_if_disconnect (vui);
Pierre Pfistere21c5282016-09-21 08:04:59 +01001275 vhost_user_update_iface_state (vui);
1276 vlib_worker_thread_barrier_release (vlib_get_main ());
Ed Warnickecb9cada2015-12-08 15:45:58 -07001277 return 0;
1278}
1279
Damjan Marion00a9dca2016-08-17 17:05:46 +02001280static clib_error_t *
1281vhost_user_socket_error (unix_file_t * uf)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001282{
Pierre Pfistere21c5282016-09-21 08:04:59 +01001283 vlib_main_t *vm = vlib_get_main ();
Damjan Marion00a9dca2016-08-17 17:05:46 +02001284 vhost_user_main_t *vum = &vhost_user_main;
Pierre Pfisterdbb3c252016-11-22 10:33:34 +00001285 vhost_user_intf_t *vui =
1286 pool_elt_at_index (vum->vhost_user_interfaces, uf->private_data);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001287
Pierre Pfistere21c5282016-09-21 08:04:59 +01001288 DBG_SOCK ("socket error on if %d", vui->sw_if_index);
1289 vlib_worker_thread_barrier_sync (vm);
Damjan Marion00a9dca2016-08-17 17:05:46 +02001290 vhost_user_if_disconnect (vui);
Pierre Pfistere21c5282016-09-21 08:04:59 +01001291 vhost_user_rx_thread_placement ();
1292 vlib_worker_thread_barrier_release (vm);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001293 return 0;
1294}
1295
Damjan Marion00a9dca2016-08-17 17:05:46 +02001296static clib_error_t *
1297vhost_user_socksvr_accept_ready (unix_file_t * uf)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001298{
1299 int client_fd, client_len;
1300 struct sockaddr_un client;
Damjan Marion00a9dca2016-08-17 17:05:46 +02001301 unix_file_t template = { 0 };
1302 vhost_user_main_t *vum = &vhost_user_main;
1303 vhost_user_intf_t *vui;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001304
Pierre Pfisterdbb3c252016-11-22 10:33:34 +00001305 vui = pool_elt_at_index (vum->vhost_user_interfaces, uf->private_data);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001306
Damjan Marion00a9dca2016-08-17 17:05:46 +02001307 client_len = sizeof (client);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001308 client_fd = accept (uf->file_descriptor,
Damjan Marion00a9dca2016-08-17 17:05:46 +02001309 (struct sockaddr *) &client,
1310 (socklen_t *) & client_len);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001311
1312 if (client_fd < 0)
Damjan Marion00a9dca2016-08-17 17:05:46 +02001313 return clib_error_return_unix (0, "accept");
Ed Warnickecb9cada2015-12-08 15:45:58 -07001314
Pierre Pfistere21c5282016-09-21 08:04:59 +01001315 DBG_SOCK ("New client socket for vhost interface %d", vui->sw_if_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001316 template.read_function = vhost_user_socket_read;
1317 template.error_function = vhost_user_socket_error;
1318 template.file_descriptor = client_fd;
Pierre Pfisterdbb3c252016-11-22 10:33:34 +00001319 template.private_data = vui - vhost_user_main.vhost_user_interfaces;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001320 vui->unix_file_index = unix_file_add (&unix_main, &template);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001321 return 0;
1322}
1323
1324static clib_error_t *
1325vhost_user_init (vlib_main_t * vm)
1326{
Damjan Marion00a9dca2016-08-17 17:05:46 +02001327 clib_error_t *error;
1328 vhost_user_main_t *vum = &vhost_user_main;
1329 vlib_thread_main_t *tm = vlib_get_thread_main ();
Damjan Marion0dafaa72016-09-20 23:21:02 +02001330 vlib_thread_registration_t *tr;
1331 uword *p;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001332
1333 error = vlib_call_init_function (vm, ip4_init);
1334 if (error)
1335 return error;
1336
Ed Warnickecb9cada2015-12-08 15:45:58 -07001337 vum->coalesce_frames = 32;
1338 vum->coalesce_time = 1e-3;
1339
Pierre Pfistere21c5282016-09-21 08:04:59 +01001340 vec_validate (vum->cpus, tm->n_vlib_mains - 1);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001341
Pierre Pfisterd3eb90e2016-11-29 15:36:14 +00001342 vhost_cpu_t *cpu;
1343 vec_foreach (cpu, vum->cpus)
1344 {
1345 /* This is actually not necessary as validate already zeroes it
1346 * Just keeping the loop here for later because I am lazy. */
1347 cpu->rx_buffers_len = 0;
1348 }
1349
Damjan Marion0dafaa72016-09-20 23:21:02 +02001350 /* find out which cpus will be used for input */
1351 vum->input_cpu_first_index = 0;
1352 vum->input_cpu_count = 1;
1353 p = hash_get_mem (tm->thread_registrations_by_name, "workers");
1354 tr = p ? (vlib_thread_registration_t *) p[0] : 0;
1355
1356 if (tr && tr->count > 0)
1357 {
1358 vum->input_cpu_first_index = tr->first_index;
1359 vum->input_cpu_count = tr->count;
1360 }
1361
Pierre Pfisterdbb3c252016-11-22 10:33:34 +00001362 vum->random = random_default_seed ();
1363
Ed Warnickecb9cada2015-12-08 15:45:58 -07001364 return 0;
1365}
1366
1367VLIB_INIT_FUNCTION (vhost_user_init);
1368
1369static clib_error_t *
1370vhost_user_exit (vlib_main_t * vm)
1371{
1372 /* TODO cleanup */
1373 return 0;
1374}
1375
1376VLIB_MAIN_LOOP_EXIT_FUNCTION (vhost_user_exit);
1377
Damjan Marion00a9dca2016-08-17 17:05:46 +02001378static u8 *
Pierre Pfister116ea4b2016-11-08 15:49:28 +00001379format_vhost_trace (u8 * s, va_list * va)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001380{
1381 CLIB_UNUSED (vlib_main_t * vm) = va_arg (*va, vlib_main_t *);
1382 CLIB_UNUSED (vlib_node_t * node) = va_arg (*va, vlib_node_t *);
Damjan Marion00a9dca2016-08-17 17:05:46 +02001383 CLIB_UNUSED (vnet_main_t * vnm) = vnet_get_main ();
1384 vhost_user_main_t *vum = &vhost_user_main;
Pierre Pfister116ea4b2016-11-08 15:49:28 +00001385 vhost_trace_t *t = va_arg (*va, vhost_trace_t *);
Pierre Pfisterdbb3c252016-11-22 10:33:34 +00001386 vhost_user_intf_t *vui = pool_elt_at_index (vum->vhost_user_interfaces,
1387 t->device_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001388
Damjan Marion00a9dca2016-08-17 17:05:46 +02001389 vnet_sw_interface_t *sw = vnet_get_sw_interface (vnm, vui->sw_if_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001390
Ed Warnickecb9cada2015-12-08 15:45:58 -07001391 uword indent = format_get_indent (s);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001392
Pierre Pfister116ea4b2016-11-08 15:49:28 +00001393 s = format (s, "%U %U queue %d\n", format_white_space, indent,
Pierre Pfistere21c5282016-09-21 08:04:59 +01001394 format_vnet_sw_interface_name, vnm, sw, t->qid);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001395
Pierre Pfister116ea4b2016-11-08 15:49:28 +00001396 s = format (s, "%U virtio flags:\n", format_white_space, indent);
1397#define _(n,i,st) \
1398 if (t->virtio_ring_flags & (1 << VIRTIO_TRACE_F_##n)) \
1399 s = format (s, "%U %s %s\n", format_white_space, indent, #n, st);
1400 foreach_virtio_trace_flags
1401#undef _
1402 s = format (s, "%U virtio_net_hdr first_desc_len %u\n",
1403 format_white_space, indent, t->first_desc_len);
1404
1405 s = format (s, "%U flags 0x%02x gso_type %u\n",
Damjan Marion00a9dca2016-08-17 17:05:46 +02001406 format_white_space, indent,
Pierre Pfister116ea4b2016-11-08 15:49:28 +00001407 t->hdr.hdr.flags, t->hdr.hdr.gso_type);
1408
1409 if (vui->virtio_net_hdr_sz == 12)
1410 s = format (s, "%U num_buff %u",
1411 format_white_space, indent, t->hdr.num_buffers);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001412
1413 return s;
1414}
1415
Damjan Marion00a9dca2016-08-17 17:05:46 +02001416void
Pierre Pfister116ea4b2016-11-08 15:49:28 +00001417vhost_user_rx_trace (vhost_trace_t * t,
1418 vhost_user_intf_t * vui, u16 qid,
1419 vlib_buffer_t * b, vhost_user_vring_t * txvq)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001420{
Damjan Marion00a9dca2016-08-17 17:05:46 +02001421 vhost_user_main_t *vum = &vhost_user_main;
Pierre Pfister116ea4b2016-11-08 15:49:28 +00001422 u32 qsz_mask = txvq->qsz - 1;
1423 u32 last_avail_idx = txvq->last_avail_idx;
1424 u32 desc_current = txvq->avail->ring[last_avail_idx & qsz_mask];
1425 vring_desc_t *hdr_desc = 0;
1426 virtio_net_hdr_mrg_rxbuf_t *hdr;
1427 u32 hint = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001428
Pierre Pfister116ea4b2016-11-08 15:49:28 +00001429 memset (t, 0, sizeof (*t));
1430 t->device_index = vui - vum->vhost_user_interfaces;
1431 t->qid = qid;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001432
Pierre Pfister116ea4b2016-11-08 15:49:28 +00001433 hdr_desc = &txvq->desc[desc_current];
1434 if (txvq->desc[desc_current].flags & VIRTQ_DESC_F_INDIRECT)
Damjan Marion00a9dca2016-08-17 17:05:46 +02001435 {
Pierre Pfister116ea4b2016-11-08 15:49:28 +00001436 t->virtio_ring_flags |= 1 << VIRTIO_TRACE_F_INDIRECT;
Pierre Pfisterd3eb90e2016-11-29 15:36:14 +00001437 /* Header is the first here */
Pierre Pfister116ea4b2016-11-08 15:49:28 +00001438 hdr_desc = map_guest_mem (vui, txvq->desc[desc_current].addr, &hint);
1439 }
1440 if (txvq->desc[desc_current].flags & VIRTQ_DESC_F_NEXT)
1441 {
1442 t->virtio_ring_flags |= 1 << VIRTIO_TRACE_F_SIMPLE_CHAINED;
1443 }
1444 if (!(txvq->desc[desc_current].flags & VIRTQ_DESC_F_NEXT) &&
1445 !(txvq->desc[desc_current].flags & VIRTQ_DESC_F_INDIRECT))
1446 {
1447 t->virtio_ring_flags |= 1 << VIRTIO_TRACE_F_SINGLE_DESC;
1448 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001449
Pierre Pfister116ea4b2016-11-08 15:49:28 +00001450 t->first_desc_len = hdr_desc ? hdr_desc->len : 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001451
Pierre Pfister116ea4b2016-11-08 15:49:28 +00001452 if (!hdr_desc || !(hdr = map_guest_mem (vui, hdr_desc->addr, &hint)))
1453 {
1454 t->virtio_ring_flags |= 1 << VIRTIO_TRACE_F_MAP_ERROR;
1455 }
1456 else
1457 {
1458 u32 len = vui->virtio_net_hdr_sz;
1459 memcpy (&t->hdr, hdr, len > hdr_desc->len ? hdr_desc->len : len);
Damjan Marion00a9dca2016-08-17 17:05:46 +02001460 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001461}
1462
Damjan Marion00a9dca2016-08-17 17:05:46 +02001463static inline void
1464vhost_user_send_call (vlib_main_t * vm, vhost_user_vring_t * vq)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001465{
Damjan Marion00a9dca2016-08-17 17:05:46 +02001466 vhost_user_main_t *vum = &vhost_user_main;
1467 u64 x = 1;
Pierre Pfisterdbb3c252016-11-22 10:33:34 +00001468 int fd = UNIX_GET_FD (vq->callfd_idx);
Damjan Marion00a9dca2016-08-17 17:05:46 +02001469 int rv __attribute__ ((unused));
Pierre Pfisterdbb3c252016-11-22 10:33:34 +00001470 /* TODO: pay attention to rv */
1471 rv = write (fd, &x, sizeof (x));
Damjan Marion00a9dca2016-08-17 17:05:46 +02001472 vq->n_since_last_int = 0;
1473 vq->int_deadline = vlib_time_now (vm) + vum->coalesce_time;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001474}
1475
Pierre Pfisterd3eb90e2016-11-29 15:36:14 +00001476static_always_inline u32
1477vhost_user_input_copy (vhost_user_intf_t * vui, vhost_copy_t * cpy,
1478 u16 copy_len, u32 * map_hint)
1479{
1480 void *src0, *src1, *src2, *src3;
1481 if (PREDICT_TRUE (copy_len >= 4))
1482 {
1483 if (PREDICT_FALSE (!(src2 = map_guest_mem (vui, cpy[0].src, map_hint))))
1484 return 1;
1485 if (PREDICT_FALSE (!(src3 = map_guest_mem (vui, cpy[1].src, map_hint))))
1486 return 1;
1487
1488 while (PREDICT_TRUE (copy_len >= 4))
1489 {
1490 src0 = src2;
1491 src1 = src3;
1492
1493 if (PREDICT_FALSE
1494 (!(src2 = map_guest_mem (vui, cpy[2].src, map_hint))))
1495 return 1;
1496 if (PREDICT_FALSE
1497 (!(src3 = map_guest_mem (vui, cpy[3].src, map_hint))))
1498 return 1;
1499
1500 CLIB_PREFETCH (src2, 64, LOAD);
1501 CLIB_PREFETCH (src3, 64, LOAD);
1502
1503 clib_memcpy ((void *) cpy[0].dst, src0, cpy[0].len);
1504 clib_memcpy ((void *) cpy[1].dst, src1, cpy[1].len);
1505 copy_len -= 2;
1506 cpy += 2;
1507 }
1508 }
1509 while (copy_len)
1510 {
1511 if (PREDICT_FALSE (!(src0 = map_guest_mem (vui, cpy->src, map_hint))))
1512 return 1;
1513 clib_memcpy ((void *) cpy->dst, src0, cpy->len);
1514 copy_len -= 1;
1515 cpy += 1;
1516 }
1517 return 0;
1518}
1519
1520/**
1521 * Try to discard packets from the tx ring (VPP RX path).
1522 * Returns the number of discarded packets.
1523 */
1524u32
1525vhost_user_rx_discard_packet (vlib_main_t * vm,
1526 vhost_user_intf_t * vui,
1527 vhost_user_vring_t * txvq, u32 discard_max)
1528{
1529 /*
1530 * On the RX side, each packet corresponds to one descriptor
1531 * (it is the same whether it is a shallow descriptor, chained, or indirect).
1532 * Therefore, discarding a packet is like discarding a descriptor.
1533 */
1534 u32 discarded_packets = 0;
1535 u32 avail_idx = txvq->avail->idx;
1536 u16 qsz_mask = txvq->qsz - 1;
1537 while (discarded_packets != discard_max)
1538 {
1539 if (avail_idx == txvq->last_avail_idx)
1540 goto out;
1541
1542 u16 desc_chain_head =
1543 txvq->avail->ring[txvq->last_avail_idx & qsz_mask];
1544 txvq->last_avail_idx++;
1545 txvq->used->ring[txvq->last_used_idx & qsz_mask].id = desc_chain_head;
1546 txvq->used->ring[txvq->last_used_idx & qsz_mask].len = 0;
1547 vhost_user_log_dirty_ring (vui, txvq,
1548 ring[txvq->last_used_idx & qsz_mask]);
1549 txvq->last_used_idx++;
1550 discarded_packets++;
1551 }
1552
1553out:
1554 CLIB_MEMORY_BARRIER ();
1555 txvq->used->idx = txvq->last_used_idx;
1556 vhost_user_log_dirty_ring (vui, txvq, idx);
1557 return discarded_packets;
1558}
1559
1560/*
1561 * In case of overflow, we need to rewind the array of allocated buffers.
1562 */
1563static void
1564vhost_user_input_rewind_buffers (vlib_main_t * vm,
1565 vhost_cpu_t * cpu, vlib_buffer_t * b_head)
1566{
1567 u32 bi_current = cpu->rx_buffers[cpu->rx_buffers_len];
1568 vlib_buffer_t *b_current = vlib_get_buffer (vm, bi_current);
1569 b_current->current_length = 0;
1570 b_current->flags = 0;
1571 while (b_current != b_head)
1572 {
1573 cpu->rx_buffers_len++;
1574 bi_current = cpu->rx_buffers[cpu->rx_buffers_len];
1575 b_current = vlib_get_buffer (vm, bi_current);
1576 b_current->current_length = 0;
1577 b_current->flags = 0;
1578 }
1579}
Yoann Desmouceaux4667c222016-02-24 22:51:00 +01001580
Damjan Marion00a9dca2016-08-17 17:05:46 +02001581static u32
1582vhost_user_if_input (vlib_main_t * vm,
1583 vhost_user_main_t * vum,
Pierre Pfistere21c5282016-09-21 08:04:59 +01001584 vhost_user_intf_t * vui,
1585 u16 qid, vlib_node_runtime_t * node)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001586{
Pierre Pfistere21c5282016-09-21 08:04:59 +01001587 vhost_user_vring_t *txvq = &vui->vrings[VHOST_VRING_IDX_TX (qid)];
Pierre Pfisterd3eb90e2016-11-29 15:36:14 +00001588 u16 n_rx_packets = 0;
1589 u32 n_rx_bytes = 0;
1590 u16 n_left;
Damjan Marion00a9dca2016-08-17 17:05:46 +02001591 u32 n_left_to_next, *to_next;
Pierre Pfisterd3eb90e2016-11-29 15:36:14 +00001592 u32 next_index = VNET_DEVICE_INPUT_NEXT_ETHERNET_INPUT;
1593 u32 n_trace = vlib_get_trace_count (vm, node);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001594 u16 qsz_mask;
Pierre Pfisterd3eb90e2016-11-29 15:36:14 +00001595 u32 map_hint = 0;
Damjan Marion586afd72017-04-05 19:18:20 +02001596 u16 thread_index = vlib_get_thread_index ();
Pierre Pfisterd3eb90e2016-11-29 15:36:14 +00001597 u16 copy_len = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001598
Pierre Pfisterd3eb90e2016-11-29 15:36:14 +00001599 {
1600 /* do we have pending interrupts ? */
1601 vhost_user_vring_t *rxvq = &vui->vrings[VHOST_VRING_IDX_RX (qid)];
1602 f64 now = vlib_time_now (vm);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001603
Pierre Pfisterd3eb90e2016-11-29 15:36:14 +00001604 if ((txvq->n_since_last_int) && (txvq->int_deadline < now))
1605 vhost_user_send_call (vm, txvq);
1606
1607 if ((rxvq->n_since_last_int) && (rxvq->int_deadline < now))
1608 vhost_user_send_call (vm, rxvq);
1609 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001610
Damjan Marion00a9dca2016-08-17 17:05:46 +02001611 if (PREDICT_FALSE (txvq->avail->flags & 0xFFFE))
Ed Warnickecb9cada2015-12-08 15:45:58 -07001612 return 0;
1613
Pierre Pfisterba1d0462016-07-27 16:38:20 +01001614 n_left = (u16) (txvq->avail->idx - txvq->last_avail_idx);
1615
Ed Warnickecb9cada2015-12-08 15:45:58 -07001616 /* nothing to do */
Pierre Pfisterba1d0462016-07-27 16:38:20 +01001617 if (PREDICT_FALSE (n_left == 0))
Ed Warnickecb9cada2015-12-08 15:45:58 -07001618 return 0;
1619
Pierre Pfistere21c5282016-09-21 08:04:59 +01001620 if (PREDICT_FALSE (!vui->admin_up || !(txvq->enabled)))
Pierre Pfisterba1d0462016-07-27 16:38:20 +01001621 {
Pierre Pfistere21c5282016-09-21 08:04:59 +01001622 /*
1623 * Discard input packet if interface is admin down or vring is not
1624 * enabled.
1625 * "For example, for a networking device, in the disabled state
1626 * client must not supply any new RX packets, but must process
1627 * and discard any TX packets."
1628 */
Pierre Pfisterd3eb90e2016-11-29 15:36:14 +00001629 vhost_user_rx_discard_packet (vm, vui, txvq,
1630 VHOST_USER_DOWN_DISCARD_COUNT);
Damjan Marion00a9dca2016-08-17 17:05:46 +02001631 return 0;
1632 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001633
Pierre Pfistere21c5282016-09-21 08:04:59 +01001634 if (PREDICT_FALSE (n_left == txvq->qsz))
1635 {
Pierre Pfisterd3eb90e2016-11-29 15:36:14 +00001636 /*
1637 * Informational error logging when VPP is not
1638 * receiving packets fast enough.
1639 */
Pierre Pfistere21c5282016-09-21 08:04:59 +01001640 vlib_error_count (vm, node->node_index,
1641 VHOST_USER_INPUT_FUNC_ERROR_FULL_RX_QUEUE, 1);
1642 }
1643
Ed Warnickecb9cada2015-12-08 15:45:58 -07001644 qsz_mask = txvq->qsz - 1;
1645
Pierre Pfister328e99b2016-02-12 13:18:42 +00001646 if (n_left > VLIB_FRAME_SIZE)
1647 n_left = VLIB_FRAME_SIZE;
1648
Pierre Pfisterd3eb90e2016-11-29 15:36:14 +00001649 /*
1650 * For small packets (<2kB), we will not need more than one vlib buffer
1651 * per packet. In case packets are bigger, we will just yeld at some point
1652 * in the loop and come back later. This is not an issue as for big packet,
1653 * processing cost really comes from the memory copy.
Pierre Pfister328e99b2016-02-12 13:18:42 +00001654 */
Damjan Marion586afd72017-04-05 19:18:20 +02001655 if (PREDICT_FALSE (vum->cpus[thread_index].rx_buffers_len < n_left + 1))
Damjan Marion00a9dca2016-08-17 17:05:46 +02001656 {
Damjan Marion586afd72017-04-05 19:18:20 +02001657 u32 curr_len = vum->cpus[thread_index].rx_buffers_len;
1658 vum->cpus[thread_index].rx_buffers_len +=
Damjan Marion00a9dca2016-08-17 17:05:46 +02001659 vlib_buffer_alloc_from_free_list (vm,
Damjan Marion586afd72017-04-05 19:18:20 +02001660 vum->cpus[thread_index].rx_buffers +
Pierre Pfisterba1d0462016-07-27 16:38:20 +01001661 curr_len,
Pierre Pfisterd3eb90e2016-11-29 15:36:14 +00001662 VHOST_USER_RX_BUFFERS_N - curr_len,
Damjan Marion00a9dca2016-08-17 17:05:46 +02001663 VLIB_BUFFER_DEFAULT_FREE_LIST_INDEX);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001664
Pierre Pfisterd3eb90e2016-11-29 15:36:14 +00001665 if (PREDICT_FALSE
Damjan Marion586afd72017-04-05 19:18:20 +02001666 (vum->cpus[thread_index].rx_buffers_len <
Pierre Pfisterd3eb90e2016-11-29 15:36:14 +00001667 VHOST_USER_RX_BUFFER_STARVATION))
Damjan Marion00a9dca2016-08-17 17:05:46 +02001668 {
Pierre Pfisterd3eb90e2016-11-29 15:36:14 +00001669 /* In case of buffer starvation, discard some packets from the queue
1670 * and log the event.
1671 * We keep doing best effort for the remaining packets. */
Damjan Marion586afd72017-04-05 19:18:20 +02001672 u32 flush = (n_left + 1 > vum->cpus[thread_index].rx_buffers_len) ?
1673 n_left + 1 - vum->cpus[thread_index].rx_buffers_len : 1;
Pierre Pfisterd3eb90e2016-11-29 15:36:14 +00001674 flush = vhost_user_rx_discard_packet (vm, vui, txvq, flush);
1675
1676 n_left -= flush;
1677 vlib_increment_simple_counter (vnet_main.
1678 interface_main.sw_if_counters +
1679 VNET_INTERFACE_COUNTER_DROP,
Damjan Marion586afd72017-04-05 19:18:20 +02001680 vlib_get_thread_index (),
Pierre Pfisterd3eb90e2016-11-29 15:36:14 +00001681 vui->sw_if_index, flush);
1682
1683 vlib_error_count (vm, vhost_user_input_node.index,
1684 VHOST_USER_INPUT_FUNC_ERROR_NO_BUFFER, flush);
Damjan Marion00a9dca2016-08-17 17:05:46 +02001685 }
1686 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001687
Damjan Marion00a9dca2016-08-17 17:05:46 +02001688 while (n_left > 0)
1689 {
1690 vlib_get_next_frame (vm, node, next_index, to_next, n_left_to_next);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001691
Damjan Marion00a9dca2016-08-17 17:05:46 +02001692 while (n_left > 0 && n_left_to_next > 0)
1693 {
1694 vlib_buffer_t *b_head, *b_current;
Pierre Pfisterd3eb90e2016-11-29 15:36:14 +00001695 u32 bi_current;
1696 u16 desc_current;
1697 u32 desc_data_offset;
1698 vring_desc_t *desc_table = txvq->desc;
Damjan Marion00a9dca2016-08-17 17:05:46 +02001699
Damjan Marion586afd72017-04-05 19:18:20 +02001700 if (PREDICT_FALSE (vum->cpus[thread_index].rx_buffers_len <= 1))
Pierre Pfisterba1d0462016-07-27 16:38:20 +01001701 {
Pierre Pfisterd3eb90e2016-11-29 15:36:14 +00001702 /* Not enough rx_buffers
1703 * Note: We yeld on 1 so we don't need to do an additional
1704 * check for the next buffer prefetch.
1705 */
1706 n_left = 0;
1707 break;
Pierre Pfisterba1d0462016-07-27 16:38:20 +01001708 }
1709
Pierre Pfisterd3eb90e2016-11-29 15:36:14 +00001710 desc_current = txvq->avail->ring[txvq->last_avail_idx & qsz_mask];
Damjan Marion586afd72017-04-05 19:18:20 +02001711 vum->cpus[thread_index].rx_buffers_len--;
1712 bi_current = (vum->cpus[thread_index].rx_buffers)
1713 [vum->cpus[thread_index].rx_buffers_len];
Pierre Pfisterd3eb90e2016-11-29 15:36:14 +00001714 b_head = b_current = vlib_get_buffer (vm, bi_current);
1715 to_next[0] = bi_current; //We do that now so we can forget about bi_current
1716 to_next++;
1717 n_left_to_next--;
1718
1719 vlib_prefetch_buffer_with_index (vm,
Damjan Marion586afd72017-04-05 19:18:20 +02001720 (vum->
1721 cpus[thread_index].rx_buffers)
1722 [vum->cpus[thread_index].
Pierre Pfisterd3eb90e2016-11-29 15:36:14 +00001723 rx_buffers_len - 1], LOAD);
1724
1725 /* Just preset the used descriptor id and length for later */
1726 txvq->used->ring[txvq->last_used_idx & qsz_mask].id = desc_current;
1727 txvq->used->ring[txvq->last_used_idx & qsz_mask].len = 0;
1728 vhost_user_log_dirty_ring (vui, txvq,
1729 ring[txvq->last_used_idx & qsz_mask]);
1730
1731 /* The buffer should already be initialized */
1732 b_head->total_length_not_including_first_buffer = 0;
1733 b_head->flags |= VLIB_BUFFER_TOTAL_LENGTH_VALID;
1734
Pierre Pfister116ea4b2016-11-08 15:49:28 +00001735 if (PREDICT_FALSE (n_trace))
1736 {
Pierre Pfisterd3eb90e2016-11-29 15:36:14 +00001737 //TODO: next_index is not exactly known at that point
Pierre Pfister116ea4b2016-11-08 15:49:28 +00001738 vlib_trace_buffer (vm, node, next_index, b_head,
1739 /* follow_chain */ 0);
1740 vhost_trace_t *t0 =
1741 vlib_add_trace (vm, node, b_head, sizeof (t0[0]));
1742 vhost_user_rx_trace (t0, vui, qid, b_head, txvq);
1743 n_trace--;
1744 vlib_set_trace_count (vm, node, n_trace);
1745 }
Damjan Marion00a9dca2016-08-17 17:05:46 +02001746
Pierre Pfisterd3eb90e2016-11-29 15:36:14 +00001747 /* This depends on the setup but is very consistent
1748 * So I think the CPU branch predictor will make a pretty good job
1749 * at optimizing the decision. */
1750 if (txvq->desc[desc_current].flags & VIRTQ_DESC_F_INDIRECT)
1751 {
1752 desc_table = map_guest_mem (vui, txvq->desc[desc_current].addr,
1753 &map_hint);
1754 desc_current = 0;
1755 if (PREDICT_FALSE (desc_table == 0))
1756 {
1757 //FIXME: Handle error by shutdown the queue
1758 goto out;
1759 }
1760 }
1761
Damjan Marion00a9dca2016-08-17 17:05:46 +02001762 if (PREDICT_TRUE (vui->is_any_layout) ||
Pierre Pfisterd3eb90e2016-11-29 15:36:14 +00001763 (!(desc_table[desc_current].flags & VIRTQ_DESC_F_NEXT)))
Damjan Marion00a9dca2016-08-17 17:05:46 +02001764 {
1765 /* ANYLAYOUT or single buffer */
Pierre Pfisterd3eb90e2016-11-29 15:36:14 +00001766 desc_data_offset = vui->virtio_net_hdr_sz;
Damjan Marion00a9dca2016-08-17 17:05:46 +02001767 }
1768 else
1769 {
1770 /* CSR case without ANYLAYOUT, skip 1st buffer */
Pierre Pfisterd3eb90e2016-11-29 15:36:14 +00001771 desc_data_offset = desc_table[desc_current].len;
Pierre Pfisterba1d0462016-07-27 16:38:20 +01001772 }
1773
Damjan Marion00a9dca2016-08-17 17:05:46 +02001774 while (1)
1775 {
Pierre Pfisterd3eb90e2016-11-29 15:36:14 +00001776 /* Get more input if necessary. Or end of packet. */
1777 if (desc_data_offset == desc_table[desc_current].len)
Damjan Marion00a9dca2016-08-17 17:05:46 +02001778 {
Pierre Pfisterd3eb90e2016-11-29 15:36:14 +00001779 if (PREDICT_FALSE (desc_table[desc_current].flags &
1780 VIRTQ_DESC_F_NEXT))
Damjan Marion00a9dca2016-08-17 17:05:46 +02001781 {
Pierre Pfisterd3eb90e2016-11-29 15:36:14 +00001782 desc_current = desc_table[desc_current].next;
1783 desc_data_offset = 0;
1784 }
1785 else
1786 {
1787 goto out;
Damjan Marion00a9dca2016-08-17 17:05:46 +02001788 }
1789 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001790
Pierre Pfisterd3eb90e2016-11-29 15:36:14 +00001791 /* Get more output if necessary. Or end of packet. */
1792 if (PREDICT_FALSE
1793 (b_current->current_length == VLIB_BUFFER_DATA_SIZE))
1794 {
1795 if (PREDICT_FALSE
Damjan Marion586afd72017-04-05 19:18:20 +02001796 (vum->cpus[thread_index].rx_buffers_len == 0))
Pierre Pfisterd3eb90e2016-11-29 15:36:14 +00001797 {
Steven62411e72017-02-03 09:30:37 -08001798 /* Cancel speculation */
1799 to_next--;
1800 n_left_to_next++;
1801
Pierre Pfisterd3eb90e2016-11-29 15:36:14 +00001802 /*
1803 * Checking if there are some left buffers.
1804 * If not, just rewind the used buffers and stop.
1805 * Note: Scheduled copies are not cancelled. This is
1806 * not an issue as they would still be valid. Useless,
1807 * but valid.
1808 */
1809 vhost_user_input_rewind_buffers (vm,
Damjan Marion586afd72017-04-05 19:18:20 +02001810 &vum->cpus
1811 [thread_index],
Pierre Pfisterd3eb90e2016-11-29 15:36:14 +00001812 b_head);
1813 n_left = 0;
1814 goto stop;
1815 }
1816
1817 /* Get next output */
Damjan Marion586afd72017-04-05 19:18:20 +02001818 vum->cpus[thread_index].rx_buffers_len--;
Pierre Pfisterd3eb90e2016-11-29 15:36:14 +00001819 u32 bi_next =
Damjan Marion586afd72017-04-05 19:18:20 +02001820 (vum->cpus[thread_index].rx_buffers)[vum->cpus
1821 [thread_index].rx_buffers_len];
Pierre Pfisterd3eb90e2016-11-29 15:36:14 +00001822 b_current->next_buffer = bi_next;
1823 b_current->flags |= VLIB_BUFFER_NEXT_PRESENT;
1824 bi_current = bi_next;
1825 b_current = vlib_get_buffer (vm, bi_current);
1826 }
1827
1828 /* Prepare a copy order executed later for the data */
Damjan Marion586afd72017-04-05 19:18:20 +02001829 vhost_copy_t *cpy = &vum->cpus[thread_index].copy[copy_len];
Pierre Pfisterd3eb90e2016-11-29 15:36:14 +00001830 copy_len++;
1831 u32 desc_data_l =
1832 desc_table[desc_current].len - desc_data_offset;
1833 cpy->len = VLIB_BUFFER_DATA_SIZE - b_current->current_length;
1834 cpy->len = (cpy->len > desc_data_l) ? desc_data_l : cpy->len;
1835 cpy->dst = (uword) vlib_buffer_get_current (b_current);
1836 cpy->src = desc_table[desc_current].addr + desc_data_offset;
1837
1838 desc_data_offset += cpy->len;
1839
1840 b_current->current_length += cpy->len;
1841 b_head->total_length_not_including_first_buffer += cpy->len;
Damjan Marion00a9dca2016-08-17 17:05:46 +02001842 }
Pierre Pfisterd3eb90e2016-11-29 15:36:14 +00001843
Pierre Pfisterba1d0462016-07-27 16:38:20 +01001844 out:
Pierre Pfisterd3eb90e2016-11-29 15:36:14 +00001845 CLIB_PREFETCH (&n_left, sizeof (n_left), LOAD);
1846
1847 n_rx_bytes += b_head->total_length_not_including_first_buffer;
1848 n_rx_packets++;
1849
1850 b_head->total_length_not_including_first_buffer -=
1851 b_head->current_length;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001852
Damjan Marion00a9dca2016-08-17 17:05:46 +02001853 /* consume the descriptor and return it as used */
1854 txvq->last_avail_idx++;
Damjan Marion00a9dca2016-08-17 17:05:46 +02001855 txvq->last_used_idx++;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001856
Damjan Marion00a9dca2016-08-17 17:05:46 +02001857 VLIB_BUFFER_TRACE_TRAJECTORY_INIT (b_head);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001858
Damjan Marion00a9dca2016-08-17 17:05:46 +02001859 vnet_buffer (b_head)->sw_if_index[VLIB_RX] = vui->sw_if_index;
1860 vnet_buffer (b_head)->sw_if_index[VLIB_TX] = (u32) ~ 0;
Pierre Pfisterd3eb90e2016-11-29 15:36:14 +00001861 b_head->error = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001862
Pierre Pfisterd3eb90e2016-11-29 15:36:14 +00001863 {
1864 u32 next0 = VNET_DEVICE_INPUT_NEXT_ETHERNET_INPUT;
Pierre Pfister328e99b2016-02-12 13:18:42 +00001865
Pierre Pfisterd3eb90e2016-11-29 15:36:14 +00001866 /* redirect if feature path enabled */
1867 vnet_feature_start_device_input_x1 (vui->sw_if_index, &next0,
Damjan Marion35af9e52017-03-06 12:02:50 +01001868 b_head);
Damjan Marion22311502016-10-28 20:30:15 +02001869
Pierre Pfisterd3eb90e2016-11-29 15:36:14 +00001870 u32 bi = to_next[-1]; //Cannot use to_next[-1] in the macro
1871 vlib_validate_buffer_enqueue_x1 (vm, node, next_index,
1872 to_next, n_left_to_next,
1873 bi, next0);
1874 }
Damjan Marion22311502016-10-28 20:30:15 +02001875
Damjan Marion00a9dca2016-08-17 17:05:46 +02001876 n_left--;
Pierre Pfisterd3eb90e2016-11-29 15:36:14 +00001877
1878 /*
1879 * Although separating memory copies from virtio ring parsing
1880 * is beneficial, we can offer to perform the copies from time
1881 * to time in order to free some space in the ring.
1882 */
1883 if (PREDICT_FALSE (copy_len >= VHOST_USER_RX_COPY_THRESHOLD))
Pierre Pfistere21c5282016-09-21 08:04:59 +01001884 {
Pierre Pfisterd3eb90e2016-11-29 15:36:14 +00001885 if (PREDICT_FALSE
Damjan Marion586afd72017-04-05 19:18:20 +02001886 (vhost_user_input_copy (vui, vum->cpus[thread_index].copy,
Pierre Pfisterd3eb90e2016-11-29 15:36:14 +00001887 copy_len, &map_hint)))
1888 {
1889 clib_warning
1890 ("Memory mapping error on interface hw_if_index=%d "
1891 "(Shutting down - Switch interface down and up to restart)",
1892 vui->hw_if_index);
1893 vui->admin_up = 0;
1894 copy_len = 0;
1895 break;
1896 }
1897 copy_len = 0;
1898
1899 /* give buffers back to driver */
1900 CLIB_MEMORY_BARRIER ();
1901 txvq->used->idx = txvq->last_used_idx;
1902 vhost_user_log_dirty_ring (vui, txvq, idx);
Pierre Pfistere21c5282016-09-21 08:04:59 +01001903 }
Damjan Marion00a9dca2016-08-17 17:05:46 +02001904 }
Pierre Pfisterd3eb90e2016-11-29 15:36:14 +00001905 stop:
Damjan Marion00a9dca2016-08-17 17:05:46 +02001906 vlib_put_next_frame (vm, node, next_index, n_left_to_next);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001907 }
1908
Pierre Pfisterd3eb90e2016-11-29 15:36:14 +00001909 /* Do the memory copies */
1910 if (PREDICT_FALSE
Damjan Marion586afd72017-04-05 19:18:20 +02001911 (vhost_user_input_copy (vui, vum->cpus[thread_index].copy,
Pierre Pfisterd3eb90e2016-11-29 15:36:14 +00001912 copy_len, &map_hint)))
1913 {
1914 clib_warning ("Memory mapping error on interface hw_if_index=%d "
1915 "(Shutting down - Switch interface down and up to restart)",
1916 vui->hw_if_index);
1917 vui->admin_up = 0;
1918 }
Pierre Pfister328e99b2016-02-12 13:18:42 +00001919
1920 /* give buffers back to driver */
Damjan Marion00a9dca2016-08-17 17:05:46 +02001921 CLIB_MEMORY_BARRIER ();
Pierre Pfister328e99b2016-02-12 13:18:42 +00001922 txvq->used->idx = txvq->last_used_idx;
Damjan Marion00a9dca2016-08-17 17:05:46 +02001923 vhost_user_log_dirty_ring (vui, txvq, idx);
Pierre Pfister328e99b2016-02-12 13:18:42 +00001924
Ed Warnickecb9cada2015-12-08 15:45:58 -07001925 /* interrupt (call) handling */
Steven7312cc72017-03-15 21:18:55 -07001926 if ((txvq->callfd_idx != ~0) &&
1927 !(txvq->avail->flags & VRING_AVAIL_F_NO_INTERRUPT))
Damjan Marion00a9dca2016-08-17 17:05:46 +02001928 {
1929 txvq->n_since_last_int += n_rx_packets;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001930
Damjan Marion00a9dca2016-08-17 17:05:46 +02001931 if (txvq->n_since_last_int > vum->coalesce_frames)
1932 vhost_user_send_call (vm, txvq);
1933 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001934
1935 /* increase rx counters */
1936 vlib_increment_combined_counter
Damjan Marion00a9dca2016-08-17 17:05:46 +02001937 (vnet_main.interface_main.combined_sw_if_counters
1938 + VNET_INTERFACE_COUNTER_RX,
Damjan Marion586afd72017-04-05 19:18:20 +02001939 vlib_get_thread_index (), vui->sw_if_index, n_rx_packets, n_rx_bytes);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001940
Damjan Marion586afd72017-04-05 19:18:20 +02001941 vnet_device_increment_rx_packets (thread_index, n_rx_packets);
Damjan Marionb3bb1012017-02-28 21:55:28 +01001942
Ed Warnickecb9cada2015-12-08 15:45:58 -07001943 return n_rx_packets;
1944}
1945
1946static uword
1947vhost_user_input (vlib_main_t * vm,
Damjan Marion00a9dca2016-08-17 17:05:46 +02001948 vlib_node_runtime_t * node, vlib_frame_t * f)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001949{
Damjan Marion00a9dca2016-08-17 17:05:46 +02001950 vhost_user_main_t *vum = &vhost_user_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001951 uword n_rx_packets = 0;
Damjan Marion586afd72017-04-05 19:18:20 +02001952 u32 thread_index = vlib_get_thread_index ();
Pierre Pfistere21c5282016-09-21 08:04:59 +01001953 vhost_iface_and_queue_t *vhiq;
Steven7312cc72017-03-15 21:18:55 -07001954 vhost_user_intf_t *vui;
1955 vhost_cpu_t *vhc;
Pierre Pfistere21c5282016-09-21 08:04:59 +01001956
Damjan Marion586afd72017-04-05 19:18:20 +02001957 vhc = &vum->cpus[thread_index];
Steven7312cc72017-03-15 21:18:55 -07001958 if (PREDICT_TRUE (vhc->operation_mode == VHOST_USER_POLLING_MODE))
1959 {
Damjan Marion586afd72017-04-05 19:18:20 +02001960 vec_foreach (vhiq, vum->cpus[thread_index].rx_queues)
Steven7312cc72017-03-15 21:18:55 -07001961 {
1962 vui = &vum->vhost_user_interfaces[vhiq->vhost_iface_index];
1963 n_rx_packets += vhost_user_if_input (vm, vum, vui, vhiq->qid, node);
1964 }
1965 }
1966 else
1967 {
1968 int i;
1969
1970 /* *INDENT-OFF* */
1971 clib_bitmap_foreach (i, vhc->pending_input_bitmap, ({
1972 int qid = i & 0xff;
1973
1974 clib_bitmap_set (vhc->pending_input_bitmap, i, 0);
1975 vui = pool_elt_at_index (vum->vhost_user_interfaces, i >> 8);
1976 n_rx_packets += vhost_user_if_input (vm, vum, vui, qid, node);
1977 }));
1978 /* *INDENT-ON* */
1979 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001980 return n_rx_packets;
1981}
1982
Damjan Marion00a9dca2016-08-17 17:05:46 +02001983/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07001984VLIB_REGISTER_NODE (vhost_user_input_node) = {
1985 .function = vhost_user_input,
1986 .type = VLIB_NODE_TYPE_INPUT,
1987 .name = "vhost-user-input",
Damjan Marion51327ac2016-11-09 11:59:42 +01001988 .sibling_of = "device-input",
Ed Warnickecb9cada2015-12-08 15:45:58 -07001989
1990 /* Will be enabled if/when hardware is detected. */
1991 .state = VLIB_NODE_STATE_DISABLED,
1992
1993 .format_buffer = format_ethernet_header_with_length,
Pierre Pfister116ea4b2016-11-08 15:49:28 +00001994 .format_trace = format_vhost_trace,
Ed Warnickecb9cada2015-12-08 15:45:58 -07001995
1996 .n_errors = VHOST_USER_INPUT_FUNC_N_ERROR,
1997 .error_strings = vhost_user_input_func_error_strings,
Ed Warnickecb9cada2015-12-08 15:45:58 -07001998};
1999
Damjan Marion1c80e832016-05-11 23:07:18 +02002000VLIB_NODE_FUNCTION_MULTIARCH (vhost_user_input_node, vhost_user_input)
Damjan Marion00a9dca2016-08-17 17:05:46 +02002001/* *INDENT-ON* */
Damjan Marion1c80e832016-05-11 23:07:18 +02002002
Pierre Pfister116ea4b2016-11-08 15:49:28 +00002003
2004void
2005vhost_user_tx_trace (vhost_trace_t * t,
2006 vhost_user_intf_t * vui, u16 qid,
2007 vlib_buffer_t * b, vhost_user_vring_t * rxvq)
2008{
2009 vhost_user_main_t *vum = &vhost_user_main;
2010 u32 qsz_mask = rxvq->qsz - 1;
2011 u32 last_avail_idx = rxvq->last_avail_idx;
2012 u32 desc_current = rxvq->avail->ring[last_avail_idx & qsz_mask];
2013 vring_desc_t *hdr_desc = 0;
2014 u32 hint = 0;
2015
2016 memset (t, 0, sizeof (*t));
2017 t->device_index = vui - vum->vhost_user_interfaces;
2018 t->qid = qid;
2019
2020 hdr_desc = &rxvq->desc[desc_current];
2021 if (rxvq->desc[desc_current].flags & VIRTQ_DESC_F_INDIRECT)
2022 {
2023 t->virtio_ring_flags |= 1 << VIRTIO_TRACE_F_INDIRECT;
Pierre Pfisterd3eb90e2016-11-29 15:36:14 +00002024 /* Header is the first here */
Pierre Pfister116ea4b2016-11-08 15:49:28 +00002025 hdr_desc = map_guest_mem (vui, rxvq->desc[desc_current].addr, &hint);
2026 }
2027 if (rxvq->desc[desc_current].flags & VIRTQ_DESC_F_NEXT)
2028 {
2029 t->virtio_ring_flags |= 1 << VIRTIO_TRACE_F_SIMPLE_CHAINED;
2030 }
2031 if (!(rxvq->desc[desc_current].flags & VIRTQ_DESC_F_NEXT) &&
2032 !(rxvq->desc[desc_current].flags & VIRTQ_DESC_F_INDIRECT))
2033 {
2034 t->virtio_ring_flags |= 1 << VIRTIO_TRACE_F_SINGLE_DESC;
2035 }
2036
2037 t->first_desc_len = hdr_desc ? hdr_desc->len : 0;
2038}
2039
Pierre Pfisterd3eb90e2016-11-29 15:36:14 +00002040static_always_inline u32
2041vhost_user_tx_copy (vhost_user_intf_t * vui, vhost_copy_t * cpy,
2042 u16 copy_len, u32 * map_hint)
2043{
2044 void *dst0, *dst1, *dst2, *dst3;
2045 if (PREDICT_TRUE (copy_len >= 4))
2046 {
2047 if (PREDICT_FALSE (!(dst2 = map_guest_mem (vui, cpy[0].dst, map_hint))))
2048 return 1;
2049 if (PREDICT_FALSE (!(dst3 = map_guest_mem (vui, cpy[1].dst, map_hint))))
2050 return 1;
2051 while (PREDICT_TRUE (copy_len >= 4))
2052 {
2053 dst0 = dst2;
2054 dst1 = dst3;
2055
2056 if (PREDICT_FALSE
2057 (!(dst2 = map_guest_mem (vui, cpy[2].dst, map_hint))))
2058 return 1;
2059 if (PREDICT_FALSE
2060 (!(dst3 = map_guest_mem (vui, cpy[3].dst, map_hint))))
2061 return 1;
2062
2063 CLIB_PREFETCH ((void *) cpy[2].src, 64, LOAD);
2064 CLIB_PREFETCH ((void *) cpy[3].src, 64, LOAD);
2065
2066 clib_memcpy (dst0, (void *) cpy[0].src, cpy[0].len);
2067 clib_memcpy (dst1, (void *) cpy[1].src, cpy[1].len);
2068
2069 vhost_user_log_dirty_pages_2 (vui, cpy[0].dst, cpy[0].len, 1);
2070 vhost_user_log_dirty_pages_2 (vui, cpy[1].dst, cpy[1].len, 1);
2071 copy_len -= 2;
2072 cpy += 2;
2073 }
2074 }
2075 while (copy_len)
2076 {
2077 if (PREDICT_FALSE (!(dst0 = map_guest_mem (vui, cpy->dst, map_hint))))
2078 return 1;
2079 clib_memcpy (dst0, (void *) cpy->src, cpy->len);
2080 vhost_user_log_dirty_pages_2 (vui, cpy->dst, cpy->len, 1);
2081 copy_len -= 1;
2082 cpy += 1;
2083 }
2084 return 0;
2085}
2086
2087
Ed Warnickecb9cada2015-12-08 15:45:58 -07002088static uword
Pierre Pfisterdbb3c252016-11-22 10:33:34 +00002089vhost_user_tx (vlib_main_t * vm,
2090 vlib_node_runtime_t * node, vlib_frame_t * frame)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002091{
Damjan Marion00a9dca2016-08-17 17:05:46 +02002092 u32 *buffers = vlib_frame_args (frame);
Pierre Pfisterd3eb90e2016-11-29 15:36:14 +00002093 u32 n_left = frame->n_vectors;
Damjan Marion00a9dca2016-08-17 17:05:46 +02002094 vhost_user_main_t *vum = &vhost_user_main;
Damjan Marion00a9dca2016-08-17 17:05:46 +02002095 vnet_interface_output_runtime_t *rd = (void *) node->runtime_data;
2096 vhost_user_intf_t *vui =
Pierre Pfisterdbb3c252016-11-22 10:33:34 +00002097 pool_elt_at_index (vum->vhost_user_interfaces, rd->dev_instance);
Pierre Pfistere21c5282016-09-21 08:04:59 +01002098 u32 qid = ~0;
2099 vhost_user_vring_t *rxvq;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002100 u16 qsz_mask;
Pierre Pfisterd3eb90e2016-11-29 15:36:14 +00002101 u8 error;
Damjan Marion586afd72017-04-05 19:18:20 +02002102 u32 thread_index = vlib_get_thread_index ();
Pierre Pfisterd3eb90e2016-11-29 15:36:14 +00002103 u32 map_hint = 0;
2104 u8 retry = 8;
2105 u16 copy_len;
2106 u16 tx_headers_len;
Pierre Pfisterba1d0462016-07-27 16:38:20 +01002107
Pierre Pfisterd3eb90e2016-11-29 15:36:14 +00002108 if (PREDICT_FALSE (!vui->admin_up))
2109 {
2110 error = VHOST_USER_TX_FUNC_ERROR_DOWN;
2111 goto done3;
2112 }
2113
2114 if (PREDICT_FALSE (!vui->is_up))
Damjan Marion00a9dca2016-08-17 17:05:46 +02002115 {
2116 error = VHOST_USER_TX_FUNC_ERROR_NOT_READY;
Pierre Pfistere21c5282016-09-21 08:04:59 +01002117 goto done3;
Damjan Marion00a9dca2016-08-17 17:05:46 +02002118 }
Damjan Marion920ecc22016-01-12 18:34:24 +01002119
Pierre Pfistere21c5282016-09-21 08:04:59 +01002120 qid =
Pierre Pfisterd3eb90e2016-11-29 15:36:14 +00002121 VHOST_VRING_IDX_RX (*vec_elt_at_index
Damjan Marion586afd72017-04-05 19:18:20 +02002122 (vui->per_cpu_tx_qid, vlib_get_thread_index ()));
Pierre Pfistere21c5282016-09-21 08:04:59 +01002123 rxvq = &vui->vrings[qid];
2124 if (PREDICT_FALSE (vui->use_tx_spinlock))
2125 vhost_user_vring_lock (vui, qid);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002126
Damjan Marion00a9dca2016-08-17 17:05:46 +02002127 qsz_mask = rxvq->qsz - 1; /* qsz is always power of 2 */
Ed Warnickecb9cada2015-12-08 15:45:58 -07002128
Pierre Pfisterd3eb90e2016-11-29 15:36:14 +00002129retry:
2130 error = VHOST_USER_TX_FUNC_ERROR_NONE;
2131 tx_headers_len = 0;
2132 copy_len = 0;
2133 while (n_left > 0)
Damjan Marion00a9dca2016-08-17 17:05:46 +02002134 {
Pierre Pfisterd3eb90e2016-11-29 15:36:14 +00002135 vlib_buffer_t *b0, *current_b0;
2136 u16 desc_head, desc_index, desc_len;
2137 vring_desc_t *desc_table;
2138 uword buffer_map_addr;
2139 u32 buffer_len;
2140 u16 bytes_left;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002141
Pierre Pfisterd3eb90e2016-11-29 15:36:14 +00002142 if (PREDICT_TRUE (n_left > 1))
2143 vlib_prefetch_buffer_with_index (vm, buffers[1], LOAD);
2144
2145 b0 = vlib_get_buffer (vm, buffers[0]);
2146
2147 if (PREDICT_FALSE (b0->flags & VLIB_BUFFER_IS_TRACED))
Pierre Pfister116ea4b2016-11-08 15:49:28 +00002148 {
Damjan Marion586afd72017-04-05 19:18:20 +02002149 vum->cpus[thread_index].current_trace =
Pierre Pfisterd3eb90e2016-11-29 15:36:14 +00002150 vlib_add_trace (vm, node, b0,
Damjan Marion586afd72017-04-05 19:18:20 +02002151 sizeof (*vum->cpus[thread_index].current_trace));
2152 vhost_user_tx_trace (vum->cpus[thread_index].current_trace,
Pierre Pfisterd3eb90e2016-11-29 15:36:14 +00002153 vui, qid / 2, b0, rxvq);
2154 }
Pierre Pfister116ea4b2016-11-08 15:49:28 +00002155
Pierre Pfisterd3eb90e2016-11-29 15:36:14 +00002156 if (PREDICT_FALSE (rxvq->last_avail_idx == rxvq->avail->idx))
2157 {
2158 error = VHOST_USER_TX_FUNC_ERROR_PKT_DROP_NOBUF;
2159 goto done;
2160 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07002161
Pierre Pfisterd3eb90e2016-11-29 15:36:14 +00002162 desc_table = rxvq->desc;
2163 desc_head = desc_index =
2164 rxvq->avail->ring[rxvq->last_avail_idx & qsz_mask];
2165
2166 /* Go deeper in case of indirect descriptor
2167 * I don't know of any driver providing indirect for RX. */
2168 if (PREDICT_FALSE (rxvq->desc[desc_head].flags & VIRTQ_DESC_F_INDIRECT))
2169 {
2170 if (PREDICT_FALSE
2171 (rxvq->desc[desc_head].len < sizeof (vring_desc_t)))
Pierre Pfisterba1d0462016-07-27 16:38:20 +01002172 {
Pierre Pfisterd3eb90e2016-11-29 15:36:14 +00002173 error = VHOST_USER_TX_FUNC_ERROR_INDIRECT_OVERFLOW;
Pierre Pfisterba1d0462016-07-27 16:38:20 +01002174 goto done;
2175 }
2176 if (PREDICT_FALSE
Pierre Pfisterd3eb90e2016-11-29 15:36:14 +00002177 (!(desc_table =
2178 map_guest_mem (vui, rxvq->desc[desc_index].addr,
2179 &map_hint))))
Pierre Pfisterba1d0462016-07-27 16:38:20 +01002180 {
2181 error = VHOST_USER_TX_FUNC_ERROR_MMAP_FAIL;
2182 goto done;
2183 }
Pierre Pfisterd3eb90e2016-11-29 15:36:14 +00002184 desc_index = 0;
Damjan Marion00a9dca2016-08-17 17:05:46 +02002185 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07002186
Pierre Pfisterd3eb90e2016-11-29 15:36:14 +00002187 desc_len = vui->virtio_net_hdr_sz;
2188 buffer_map_addr = desc_table[desc_index].addr;
2189 buffer_len = desc_table[desc_index].len;
2190
2191 {
2192 // Get a header from the header array
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];
Pierre Pfisterd3eb90e2016-11-29 15:36:14 +00002195 tx_headers_len++;
2196 hdr->hdr.flags = 0;
2197 hdr->hdr.gso_type = 0;
2198 hdr->num_buffers = 1; //This is local, no need to check
2199
2200 // Prepare a copy order executed later for the header
Damjan Marion586afd72017-04-05 19:18:20 +02002201 vhost_copy_t *cpy = &vum->cpus[thread_index].copy[copy_len];
Pierre Pfisterd3eb90e2016-11-29 15:36:14 +00002202 copy_len++;
2203 cpy->len = vui->virtio_net_hdr_sz;
2204 cpy->dst = buffer_map_addr;
2205 cpy->src = (uword) hdr;
2206 }
2207
2208 buffer_map_addr += vui->virtio_net_hdr_sz;
2209 buffer_len -= vui->virtio_net_hdr_sz;
2210 bytes_left = b0->current_length;
2211 current_b0 = b0;
2212 while (1)
2213 {
2214 if (buffer_len == 0)
2215 { //Get new output
2216 if (desc_table[desc_index].flags & VIRTQ_DESC_F_NEXT)
2217 {
2218 //Next one is chained
2219 desc_index = desc_table[desc_index].next;
2220 buffer_map_addr = desc_table[desc_index].addr;
2221 buffer_len = desc_table[desc_index].len;
2222 }
2223 else if (vui->virtio_net_hdr_sz == 12) //MRG is available
2224 {
2225 virtio_net_hdr_mrg_rxbuf_t *hdr =
Damjan Marion586afd72017-04-05 19:18:20 +02002226 &vum->cpus[thread_index].tx_headers[tx_headers_len - 1];
Pierre Pfisterd3eb90e2016-11-29 15:36:14 +00002227
2228 //Move from available to used buffer
2229 rxvq->used->ring[rxvq->last_used_idx & qsz_mask].id =
2230 desc_head;
2231 rxvq->used->ring[rxvq->last_used_idx & qsz_mask].len =
2232 desc_len;
2233 vhost_user_log_dirty_ring (vui, rxvq,
2234 ring[rxvq->last_used_idx &
2235 qsz_mask]);
2236
2237 rxvq->last_avail_idx++;
2238 rxvq->last_used_idx++;
2239 hdr->num_buffers++;
2240 desc_len = 0;
2241
2242 if (PREDICT_FALSE
2243 (rxvq->last_avail_idx == rxvq->avail->idx))
2244 {
2245 //Dequeue queued descriptors for this packet
2246 rxvq->last_used_idx -= hdr->num_buffers - 1;
2247 rxvq->last_avail_idx -= hdr->num_buffers - 1;
2248 error = VHOST_USER_TX_FUNC_ERROR_PKT_DROP_NOBUF;
2249 goto done;
2250 }
2251
2252 desc_table = rxvq->desc;
2253 desc_head = desc_index =
2254 rxvq->avail->ring[rxvq->last_avail_idx & qsz_mask];
2255 if (PREDICT_FALSE
2256 (rxvq->desc[desc_head].flags & VIRTQ_DESC_F_INDIRECT))
2257 {
2258 //It is seriously unlikely that a driver will put indirect descriptor
2259 //after non-indirect descriptor.
2260 if (PREDICT_FALSE
2261 (rxvq->desc[desc_head].len < sizeof (vring_desc_t)))
2262 {
2263 error = VHOST_USER_TX_FUNC_ERROR_INDIRECT_OVERFLOW;
2264 goto done;
2265 }
2266 if (PREDICT_FALSE
2267 (!(desc_table =
2268 map_guest_mem (vui,
2269 rxvq->desc[desc_index].addr,
2270 &map_hint))))
2271 {
2272 error = VHOST_USER_TX_FUNC_ERROR_MMAP_FAIL;
2273 goto done;
2274 }
2275 desc_index = 0;
2276 }
2277 buffer_map_addr = desc_table[desc_index].addr;
2278 buffer_len = desc_table[desc_index].len;
2279 }
2280 else
2281 {
2282 error = VHOST_USER_TX_FUNC_ERROR_PKT_DROP_NOMRG;
2283 goto done;
2284 }
2285 }
2286
2287 {
Damjan Marion586afd72017-04-05 19:18:20 +02002288 vhost_copy_t *cpy = &vum->cpus[thread_index].copy[copy_len];
Pierre Pfisterd3eb90e2016-11-29 15:36:14 +00002289 copy_len++;
2290 cpy->len = bytes_left;
2291 cpy->len = (cpy->len > buffer_len) ? buffer_len : cpy->len;
2292 cpy->dst = buffer_map_addr;
2293 cpy->src = (uword) vlib_buffer_get_current (current_b0) +
2294 current_b0->current_length - bytes_left;
2295
2296 bytes_left -= cpy->len;
2297 buffer_len -= cpy->len;
2298 buffer_map_addr += cpy->len;
2299 desc_len += cpy->len;
2300
Pierre Pfister14ac8012016-12-08 07:58:47 +00002301 CLIB_PREFETCH (&rxvq->desc, CLIB_CACHE_LINE_BYTES, LOAD);
Pierre Pfisterd3eb90e2016-11-29 15:36:14 +00002302 }
2303
2304 // Check if vlib buffer has more data. If not, get more or break.
2305 if (PREDICT_TRUE (!bytes_left))
2306 {
2307 if (PREDICT_FALSE
2308 (current_b0->flags & VLIB_BUFFER_NEXT_PRESENT))
2309 {
2310 current_b0 = vlib_get_buffer (vm, current_b0->next_buffer);
2311 bytes_left = current_b0->current_length;
2312 }
2313 else
2314 {
2315 //End of packet
2316 break;
2317 }
2318 }
2319 }
2320
2321 //Move from available to used ring
2322 rxvq->used->ring[rxvq->last_used_idx & qsz_mask].id = desc_head;
2323 rxvq->used->ring[rxvq->last_used_idx & qsz_mask].len = desc_len;
2324 vhost_user_log_dirty_ring (vui, rxvq,
2325 ring[rxvq->last_used_idx & qsz_mask]);
2326 rxvq->last_avail_idx++;
2327 rxvq->last_used_idx++;
2328
2329 if (PREDICT_FALSE (b0->flags & VLIB_BUFFER_IS_TRACED))
2330 {
Damjan Marion586afd72017-04-05 19:18:20 +02002331 vum->cpus[thread_index].current_trace->hdr =
2332 vum->cpus[thread_index].tx_headers[tx_headers_len - 1];
Pierre Pfisterd3eb90e2016-11-29 15:36:14 +00002333 }
2334
2335 n_left--; //At the end for error counting when 'goto done' is invoked
2336 buffers++;
2337 }
2338
2339done:
2340 //Do the memory copies
2341 if (PREDICT_FALSE
Damjan Marion586afd72017-04-05 19:18:20 +02002342 (vhost_user_tx_copy (vui, vum->cpus[thread_index].copy,
Pierre Pfisterd3eb90e2016-11-29 15:36:14 +00002343 copy_len, &map_hint)))
2344 {
2345 clib_warning ("Memory mapping error on interface hw_if_index=%d "
2346 "(Shutting down - Switch interface down and up to restart)",
2347 vui->hw_if_index);
2348 vui->admin_up = 0;
2349 }
2350
2351 CLIB_MEMORY_BARRIER ();
2352 rxvq->used->idx = rxvq->last_used_idx;
2353 vhost_user_log_dirty_ring (vui, rxvq, idx);
2354
2355 /*
2356 * When n_left is set, error is always set to something too.
2357 * In case error is due to lack of remaining buffers, we go back up and
2358 * retry.
2359 * The idea is that it is better to waste some time on packets
2360 * that have been processed already than dropping them and get
2361 * more fresh packets with a good likelyhood that they will be dropped too.
2362 * This technique also gives more time to VM driver to pick-up packets.
2363 * In case the traffic flows from physical to virtual interfaces, this
2364 * technique will end-up leveraging the physical NIC buffer in order to
2365 * absorb the VM's CPU jitter.
2366 */
2367 if (n_left && (error == VHOST_USER_TX_FUNC_ERROR_PKT_DROP_NOBUF) && retry)
2368 {
2369 retry--;
2370 goto retry;
Damjan Marion00a9dca2016-08-17 17:05:46 +02002371 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07002372
Ed Warnickecb9cada2015-12-08 15:45:58 -07002373 /* interrupt (call) handling */
Steven7312cc72017-03-15 21:18:55 -07002374 if ((rxvq->callfd_idx != ~0) &&
2375 !(rxvq->avail->flags & VRING_AVAIL_F_NO_INTERRUPT))
Damjan Marion00a9dca2016-08-17 17:05:46 +02002376 {
Pierre Pfisterd3eb90e2016-11-29 15:36:14 +00002377 rxvq->n_since_last_int += frame->n_vectors - n_left;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002378
Damjan Marion00a9dca2016-08-17 17:05:46 +02002379 if (rxvq->n_since_last_int > vum->coalesce_frames)
2380 vhost_user_send_call (vm, rxvq);
2381 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07002382
Pierre Pfistere21c5282016-09-21 08:04:59 +01002383 vhost_user_vring_unlock (vui, qid);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002384
Pierre Pfistere21c5282016-09-21 08:04:59 +01002385done3:
Damjan Marion00a9dca2016-08-17 17:05:46 +02002386 if (PREDICT_FALSE (n_left && error != VHOST_USER_TX_FUNC_ERROR_NONE))
2387 {
2388 vlib_error_count (vm, node->node_index, error, n_left);
2389 vlib_increment_simple_counter
2390 (vnet_main.interface_main.sw_if_counters
2391 + VNET_INTERFACE_COUNTER_DROP,
Damjan Marion586afd72017-04-05 19:18:20 +02002392 vlib_get_thread_index (), vui->sw_if_index, n_left);
Damjan Marion00a9dca2016-08-17 17:05:46 +02002393 }
Pierre Pfister328e99b2016-02-12 13:18:42 +00002394
Ed Warnickecb9cada2015-12-08 15:45:58 -07002395 vlib_buffer_free (vm, vlib_frame_args (frame), frame->n_vectors);
2396 return frame->n_vectors;
2397}
2398
2399static clib_error_t *
Damjan Marion00a9dca2016-08-17 17:05:46 +02002400vhost_user_interface_admin_up_down (vnet_main_t * vnm, u32 hw_if_index,
2401 u32 flags)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002402{
Damjan Marion00a9dca2016-08-17 17:05:46 +02002403 vnet_hw_interface_t *hif = vnet_get_hw_interface (vnm, hw_if_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002404 uword is_up = (flags & VNET_SW_INTERFACE_FLAG_ADMIN_UP) != 0;
Damjan Marion00a9dca2016-08-17 17:05:46 +02002405 vhost_user_main_t *vum = &vhost_user_main;
2406 vhost_user_intf_t *vui =
Pierre Pfisterdbb3c252016-11-22 10:33:34 +00002407 pool_elt_at_index (vum->vhost_user_interfaces, hif->dev_instance);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002408
2409 vui->admin_up = is_up;
2410
2411 if (is_up)
2412 vnet_hw_interface_set_flags (vnm, vui->hw_if_index,
Damjan Marion00a9dca2016-08-17 17:05:46 +02002413 VNET_HW_INTERFACE_FLAG_LINK_UP);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002414
2415 return /* no error */ 0;
2416}
2417
Damjan Marion00a9dca2016-08-17 17:05:46 +02002418/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07002419VNET_DEVICE_CLASS (vhost_user_dev_class,static) = {
2420 .name = "vhost-user",
Pierre Pfisterdbb3c252016-11-22 10:33:34 +00002421 .tx_function = vhost_user_tx,
Ed Warnickecb9cada2015-12-08 15:45:58 -07002422 .tx_function_n_errors = VHOST_USER_TX_FUNC_N_ERROR,
2423 .tx_function_error_strings = vhost_user_tx_func_error_strings,
2424 .format_device_name = format_vhost_user_interface_name,
2425 .name_renumber = vhost_user_name_renumber,
2426 .admin_up_down_function = vhost_user_interface_admin_up_down,
Pierre Pfister116ea4b2016-11-08 15:49:28 +00002427 .format_tx_trace = format_vhost_trace,
Ed Warnickecb9cada2015-12-08 15:45:58 -07002428};
2429
Damjan Marion1c80e832016-05-11 23:07:18 +02002430VLIB_DEVICE_TX_FUNCTION_MULTIARCH (vhost_user_dev_class,
Pierre Pfisterdbb3c252016-11-22 10:33:34 +00002431 vhost_user_tx)
Damjan Marion00a9dca2016-08-17 17:05:46 +02002432/* *INDENT-ON* */
Damjan Marion1c80e832016-05-11 23:07:18 +02002433
Ed Warnickecb9cada2015-12-08 15:45:58 -07002434static uword
2435vhost_user_process (vlib_main_t * vm,
Damjan Marion00a9dca2016-08-17 17:05:46 +02002436 vlib_node_runtime_t * rt, vlib_frame_t * f)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002437{
Damjan Marion00a9dca2016-08-17 17:05:46 +02002438 vhost_user_main_t *vum = &vhost_user_main;
2439 vhost_user_intf_t *vui;
2440 struct sockaddr_un sun;
2441 int sockfd;
2442 unix_file_t template = { 0 };
2443 f64 timeout = 3153600000.0 /* 100 years */ ;
2444 uword *event_data = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002445
Steven0d150bb2017-03-22 12:05:19 -07002446 sockfd = -1;
Damjan Marion00a9dca2016-08-17 17:05:46 +02002447 sun.sun_family = AF_UNIX;
2448 template.read_function = vhost_user_socket_read;
2449 template.error_function = vhost_user_socket_error;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002450
Damjan Marion00a9dca2016-08-17 17:05:46 +02002451 while (1)
2452 {
2453 vlib_process_wait_for_event_or_clock (vm, timeout);
2454 vlib_process_get_events (vm, &event_data);
2455 vec_reset_length (event_data);
2456
2457 timeout = 3.0;
2458
Pierre Pfisterdbb3c252016-11-22 10:33:34 +00002459 /* *INDENT-OFF* */
2460 pool_foreach (vui, vum->vhost_user_interfaces, {
Damjan Marion00a9dca2016-08-17 17:05:46 +02002461
Pierre Pfisterdbb3c252016-11-22 10:33:34 +00002462 if (vui->unix_server_index == ~0) { //Nothing to do for server sockets
2463 if (vui->unix_file_index == ~0)
2464 {
Steven0d150bb2017-03-22 12:05:19 -07002465 if ((sockfd < 0) &&
2466 ((sockfd = socket (AF_UNIX, SOCK_STREAM, 0)) < 0))
2467 {
2468 /*
2469 * 1st time error or new error for this interface,
2470 * spit out the message and record the error
2471 */
2472 if (!vui->sock_errno || (vui->sock_errno != errno))
2473 {
2474 clib_unix_warning
2475 ("Error: Could not open unix socket for %s",
2476 vui->sock_filename);
2477 vui->sock_errno = errno;
2478 }
2479 continue;
2480 }
2481
Pierre Pfisterdbb3c252016-11-22 10:33:34 +00002482 /* try to connect */
2483 strncpy (sun.sun_path, (char *) vui->sock_filename,
2484 sizeof (sun.sun_path) - 1);
Damjan Marion00a9dca2016-08-17 17:05:46 +02002485
Andrew Yourtchenko0c3d4672017-01-03 16:52:22 +00002486 /* Avoid hanging VPP if the other end does not accept */
Dave Barach8f544962017-01-18 10:23:22 -05002487 if (fcntl(sockfd, F_SETFL, O_NONBLOCK) < 0)
2488 clib_unix_warning ("fcntl");
2489
Pierre Pfisterdbb3c252016-11-22 10:33:34 +00002490 if (connect (sockfd, (struct sockaddr *) &sun,
2491 sizeof (struct sockaddr_un)) == 0)
2492 {
Andrew Yourtchenko0c3d4672017-01-03 16:52:22 +00002493 /* Set the socket to blocking as it was before */
Dave Barach8f544962017-01-18 10:23:22 -05002494 if (fcntl(sockfd, F_SETFL, 0) < 0)
2495 clib_unix_warning ("fcntl2");
2496
Pierre Pfisterdbb3c252016-11-22 10:33:34 +00002497 vui->sock_errno = 0;
2498 template.file_descriptor = sockfd;
2499 template.private_data =
2500 vui - vhost_user_main.vhost_user_interfaces;
2501 vui->unix_file_index = unix_file_add (&unix_main, &template);
Damjan Marion00a9dca2016-08-17 17:05:46 +02002502
Steven0d150bb2017-03-22 12:05:19 -07002503 /* This sockfd is considered consumed */
2504 sockfd = -1;
Pierre Pfisterdbb3c252016-11-22 10:33:34 +00002505 }
2506 else
2507 {
2508 vui->sock_errno = errno;
2509 }
2510 }
2511 else
2512 {
2513 /* check if socket is alive */
2514 int error = 0;
2515 socklen_t len = sizeof (error);
2516 int fd = UNIX_GET_FD(vui->unix_file_index);
2517 int retval =
2518 getsockopt (fd, SOL_SOCKET, SO_ERROR, &error, &len);
Damjan Marion00a9dca2016-08-17 17:05:46 +02002519
Pierre Pfisterdbb3c252016-11-22 10:33:34 +00002520 if (retval)
2521 {
2522 DBG_SOCK ("getsockopt returned %d", retval);
2523 vhost_user_if_disconnect (vui);
2524 }
2525 }
Damjan Marion00a9dca2016-08-17 17:05:46 +02002526 }
Pierre Pfisterdbb3c252016-11-22 10:33:34 +00002527 });
2528 /* *INDENT-ON* */
Damjan Marion00a9dca2016-08-17 17:05:46 +02002529 }
2530 return 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002531}
2532
Damjan Marion00a9dca2016-08-17 17:05:46 +02002533/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07002534VLIB_REGISTER_NODE (vhost_user_process_node,static) = {
2535 .function = vhost_user_process,
2536 .type = VLIB_NODE_TYPE_PROCESS,
2537 .name = "vhost-user-process",
2538};
Damjan Marion00a9dca2016-08-17 17:05:46 +02002539/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07002540
Pierre Pfisterdbb3c252016-11-22 10:33:34 +00002541/**
2542 * Disables and reset interface structure.
2543 * It can then be either init again, or removed from used interfaces.
2544 */
2545static void
2546vhost_user_term_if (vhost_user_intf_t * vui)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002547{
Ole Troan553a4112017-01-10 10:07:04 +01002548 int q;
2549
Pierre Pfister7a91b462016-11-21 12:50:38 +00002550 // Delete configured thread pinning
2551 vec_reset_length (vui->workers);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002552 // disconnect interface sockets
Damjan Marion00a9dca2016-08-17 17:05:46 +02002553 vhost_user_if_disconnect (vui);
Pierre Pfisterfbb2ef62016-11-16 02:43:29 +00002554 vhost_user_update_iface_state (vui);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002555
Ole Troan553a4112017-01-10 10:07:04 +01002556 for (q = 0; q < VHOST_VRING_MAX_N; q++)
2557 {
2558 clib_mem_free ((void *) vui->vring_locks[q]);
2559 }
2560
Pierre Pfisterdbb3c252016-11-22 10:33:34 +00002561 if (vui->unix_server_index != ~0)
2562 {
2563 //Close server socket
2564 unix_file_t *uf = pool_elt_at_index (unix_main.file_pool,
2565 vui->unix_server_index);
2566 unix_file_del (&unix_main, uf);
2567 vui->unix_server_index = ~0;
2568 }
2569}
Ed Warnickecb9cada2015-12-08 15:45:58 -07002570
Pierre Pfisterdbb3c252016-11-22 10:33:34 +00002571int
2572vhost_user_delete_if (vnet_main_t * vnm, vlib_main_t * vm, u32 sw_if_index)
2573{
2574 vhost_user_main_t *vum = &vhost_user_main;
2575 vhost_user_intf_t *vui;
2576 int rv = 0;
2577 vnet_hw_interface_t *hwif;
2578
2579 if (!(hwif = vnet_get_sup_hw_interface (vnm, sw_if_index)) ||
2580 hwif->dev_class_index != vhost_user_dev_class.index)
2581 return VNET_API_ERROR_INVALID_SW_IF_INDEX;
2582
2583 DBG_SOCK ("Deleting vhost-user interface %s (instance %d)",
2584 hwif->name, hwif->dev_instance);
2585
2586 vui = pool_elt_at_index (vum->vhost_user_interfaces, hwif->dev_instance);
2587
2588 // Disable and reset interface
2589 vhost_user_term_if (vui);
2590
Pierre Pfisterdbb3c252016-11-22 10:33:34 +00002591 // Reset renumbered iface
2592 if (hwif->dev_instance <
2593 vec_len (vum->show_dev_instance_by_real_dev_instance))
2594 vum->show_dev_instance_by_real_dev_instance[hwif->dev_instance] = ~0;
2595
2596 // Delete ethernet interface
Ed Warnickecb9cada2015-12-08 15:45:58 -07002597 ethernet_delete_interface (vnm, vui->hw_if_index);
Wojciech Decd8e47872017-01-17 21:45:11 +01002598
2599 // Back to pool
2600 pool_put (vum->vhost_user_interfaces, vui);
2601
Ed Warnickecb9cada2015-12-08 15:45:58 -07002602 return rv;
2603}
2604
Pierre Pfisterdbb3c252016-11-22 10:33:34 +00002605/**
2606 * Open server unix socket on specified sock_filename.
2607 */
Damjan Marion00a9dca2016-08-17 17:05:46 +02002608static int
Pierre Pfisterdbb3c252016-11-22 10:33:34 +00002609vhost_user_init_server_sock (const char *sock_filename, int *sock_fd)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002610{
Pierre Pfister5afccb22016-07-25 14:32:02 +01002611 int rv = 0;
Damjan Marion00a9dca2016-08-17 17:05:46 +02002612 struct sockaddr_un un = { };
Ed Warnickecb9cada2015-12-08 15:45:58 -07002613 int fd;
2614 /* create listening socket */
Pierre Pfisterdbb3c252016-11-22 10:33:34 +00002615 if ((fd = socket (AF_UNIX, SOCK_STREAM, 0)) < 0)
2616 return VNET_API_ERROR_SYSCALL_ERROR_1;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002617
2618 un.sun_family = AF_UNIX;
Damjan Marion00a9dca2016-08-17 17:05:46 +02002619 strncpy ((char *) un.sun_path, (char *) sock_filename,
2620 sizeof (un.sun_path) - 1);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002621
2622 /* remove if exists */
Damjan Marion00a9dca2016-08-17 17:05:46 +02002623 unlink ((char *) sock_filename);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002624
Damjan Marion00a9dca2016-08-17 17:05:46 +02002625 if (bind (fd, (struct sockaddr *) &un, sizeof (un)) == -1)
2626 {
2627 rv = VNET_API_ERROR_SYSCALL_ERROR_2;
2628 goto error;
2629 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07002630
Damjan Marion00a9dca2016-08-17 17:05:46 +02002631 if (listen (fd, 1) == -1)
2632 {
2633 rv = VNET_API_ERROR_SYSCALL_ERROR_3;
2634 goto error;
2635 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07002636
Pierre Pfisterdbb3c252016-11-22 10:33:34 +00002637 *sock_fd = fd;
2638 return 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002639
2640error:
Damjan Marion00a9dca2016-08-17 17:05:46 +02002641 close (fd);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002642 return rv;
2643}
2644
Pierre Pfisterdbb3c252016-11-22 10:33:34 +00002645/**
2646 * Create ethernet interface for vhost user interface.
2647 */
Damjan Marion00a9dca2016-08-17 17:05:46 +02002648static void
2649vhost_user_create_ethernet (vnet_main_t * vnm, vlib_main_t * vm,
2650 vhost_user_intf_t * vui, u8 * hwaddress)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002651{
Damjan Marion00a9dca2016-08-17 17:05:46 +02002652 vhost_user_main_t *vum = &vhost_user_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002653 u8 hwaddr[6];
Damjan Marion00a9dca2016-08-17 17:05:46 +02002654 clib_error_t *error;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002655
2656 /* create hw and sw interface */
Damjan Marion00a9dca2016-08-17 17:05:46 +02002657 if (hwaddress)
2658 {
2659 clib_memcpy (hwaddr, hwaddress, 6);
2660 }
2661 else
2662 {
Pierre Pfisterdbb3c252016-11-22 10:33:34 +00002663 random_u32 (&vum->random);
2664 clib_memcpy (hwaddr + 2, &vum->random, sizeof (vum->random));
Damjan Marion00a9dca2016-08-17 17:05:46 +02002665 hwaddr[0] = 2;
2666 hwaddr[1] = 0xfe;
2667 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07002668
2669 error = ethernet_register_interface
2670 (vnm,
2671 vhost_user_dev_class.index,
Damjan Marion00a9dca2016-08-17 17:05:46 +02002672 vui - vum->vhost_user_interfaces /* device instance */ ,
2673 hwaddr /* ethernet address */ ,
2674 &vui->hw_if_index, 0 /* flag change */ );
Pierre Pfisterdbb3c252016-11-22 10:33:34 +00002675
Ed Warnickecb9cada2015-12-08 15:45:58 -07002676 if (error)
2677 clib_error_report (error);
Pierre Pfister328e99b2016-02-12 13:18:42 +00002678
2679 vnet_hw_interface_t *hi = vnet_get_hw_interface (vnm, vui->hw_if_index);
2680 hi->max_l3_packet_bytes[VLIB_RX] = hi->max_l3_packet_bytes[VLIB_TX] = 9000;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002681}
2682
Pierre Pfisterdbb3c252016-11-22 10:33:34 +00002683/*
2684 * Initialize vui with specified attributes
2685 */
Damjan Marion00a9dca2016-08-17 17:05:46 +02002686static void
2687vhost_user_vui_init (vnet_main_t * vnm,
Pierre Pfisterdbb3c252016-11-22 10:33:34 +00002688 vhost_user_intf_t * vui,
2689 int server_sock_fd,
Damjan Marion00a9dca2016-08-17 17:05:46 +02002690 const char *sock_filename,
Stevena1a09012017-03-08 00:23:13 -08002691 u64 feature_mask, u32 * sw_if_index, u8 operation_mode)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002692{
Damjan Marion00a9dca2016-08-17 17:05:46 +02002693 vnet_sw_interface_t *sw;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002694 sw = vnet_get_hw_sw_interface (vnm, vui->hw_if_index);
Yoann Desmouceaux4667c222016-02-24 22:51:00 +01002695 int q;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002696
Pierre Pfisterdbb3c252016-11-22 10:33:34 +00002697 if (server_sock_fd != -1)
2698 {
2699 unix_file_t template = { 0 };
2700 template.read_function = vhost_user_socksvr_accept_ready;
2701 template.file_descriptor = server_sock_fd;
2702 template.private_data = vui - vhost_user_main.vhost_user_interfaces; //hw index
2703 vui->unix_server_index = unix_file_add (&unix_main, &template);
2704 }
2705 else
2706 {
2707 vui->unix_server_index = ~0;
2708 }
2709
Ed Warnickecb9cada2015-12-08 15:45:58 -07002710 vui->sw_if_index = sw->sw_if_index;
Damjan Marion00a9dca2016-08-17 17:05:46 +02002711 strncpy (vui->sock_filename, sock_filename,
2712 ARRAY_LEN (vui->sock_filename) - 1);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002713 vui->sock_errno = 0;
2714 vui->is_up = 0;
2715 vui->feature_mask = feature_mask;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002716 vui->unix_file_index = ~0;
Yoann Desmouceaux4667c222016-02-24 22:51:00 +01002717 vui->log_base_addr = 0;
Stevena1a09012017-03-08 00:23:13 -08002718 vui->operation_mode = operation_mode;
Yoann Desmouceaux4667c222016-02-24 22:51:00 +01002719
Pierre Pfistere21c5282016-09-21 08:04:59 +01002720 for (q = 0; q < VHOST_VRING_MAX_N; q++)
2721 vhost_user_vring_init (vui, q);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002722
Damjan Marion00a9dca2016-08-17 17:05:46 +02002723 vnet_hw_interface_set_flags (vnm, vui->hw_if_index, 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002724
2725 if (sw_if_index)
Damjan Marion00a9dca2016-08-17 17:05:46 +02002726 *sw_if_index = vui->sw_if_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002727
Pierre Pfistere21c5282016-09-21 08:04:59 +01002728 for (q = 0; q < VHOST_VRING_MAX_N; q++)
Damjan Marion00a9dca2016-08-17 17:05:46 +02002729 {
Pierre Pfistere21c5282016-09-21 08:04:59 +01002730 vui->vring_locks[q] = clib_mem_alloc_aligned (CLIB_CACHE_LINE_BYTES,
2731 CLIB_CACHE_LINE_BYTES);
2732 memset ((void *) vui->vring_locks[q], 0, CLIB_CACHE_LINE_BYTES);
Damjan Marion00a9dca2016-08-17 17:05:46 +02002733 }
Pierre Pfistere21c5282016-09-21 08:04:59 +01002734
2735 vec_validate (vui->per_cpu_tx_qid,
2736 vlib_get_thread_main ()->n_vlib_mains - 1);
2737 vhost_user_tx_thread_placement (vui);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002738}
2739
Steven7312cc72017-03-15 21:18:55 -07002740static uword
2741vhost_user_send_interrupt_process (vlib_main_t * vm,
2742 vlib_node_runtime_t * rt, vlib_frame_t * f)
2743{
2744 vhost_user_intf_t *vui;
2745 f64 timeout = 3153600000.0 /* 100 years */ ;
2746 uword event_type, *event_data = 0;
2747 vhost_user_main_t *vum = &vhost_user_main;
2748 vhost_iface_and_queue_t *vhiq;
2749 vhost_cpu_t *vhc;
2750 f64 now, poll_time_remaining;
2751
2752 while (1)
2753 {
2754 poll_time_remaining =
2755 vlib_process_wait_for_event_or_clock (vm, timeout);
2756 event_type = vlib_process_get_events (vm, &event_data);
2757 vec_reset_length (event_data);
2758
2759 /*
2760 * Use the remaining timeout if it is less than coalesce time to avoid
2761 * resetting the existing timer in the middle of expiration
2762 */
2763 timeout = poll_time_remaining;
2764 if (vlib_process_suspend_time_is_zero (timeout) ||
2765 (timeout > vum->coalesce_time))
2766 timeout = vum->coalesce_time;
2767
2768 now = vlib_time_now (vm);
2769 switch (event_type)
2770 {
2771 case VHOST_USER_EVENT_START_TIMER:
2772 if (!vlib_process_suspend_time_is_zero (poll_time_remaining))
2773 break;
2774 /* fall through */
2775
2776 case ~0:
2777 vec_foreach (vhc, vum->cpus)
2778 {
Damjan Marion586afd72017-04-05 19:18:20 +02002779 u32 thread_index = vhc - vum->cpus;
Steven7312cc72017-03-15 21:18:55 -07002780 f64 next_timeout;
2781
2782 next_timeout = timeout;
Damjan Marion586afd72017-04-05 19:18:20 +02002783 vec_foreach (vhiq, vum->cpus[thread_index].rx_queues)
Steven7312cc72017-03-15 21:18:55 -07002784 {
2785 vui = &vum->vhost_user_interfaces[vhiq->vhost_iface_index];
2786 vhost_user_vring_t *rxvq =
2787 &vui->vrings[VHOST_VRING_IDX_RX (vhiq->qid)];
2788 vhost_user_vring_t *txvq =
2789 &vui->vrings[VHOST_VRING_IDX_TX (vhiq->qid)];
2790
2791 if (txvq->n_since_last_int)
2792 {
2793 if (now >= txvq->int_deadline)
2794 vhost_user_send_call (vm, txvq);
2795 else
2796 next_timeout = txvq->int_deadline - now;
2797 }
2798
2799 if (rxvq->n_since_last_int)
2800 {
2801 if (now >= rxvq->int_deadline)
2802 vhost_user_send_call (vm, rxvq);
2803 else
2804 next_timeout = rxvq->int_deadline - now;
2805 }
2806
2807 if ((next_timeout < timeout) && (next_timeout > 0.0))
2808 timeout = next_timeout;
2809 }
2810 }
2811 break;
2812
2813 default:
2814 clib_warning ("BUG: unhandled event type %d", event_type);
2815 break;
2816 }
2817 }
2818 return 0;
2819}
2820
2821/* *INDENT-OFF* */
2822VLIB_REGISTER_NODE (vhost_user_send_interrupt_node,static) = {
2823 .function = vhost_user_send_interrupt_process,
2824 .type = VLIB_NODE_TYPE_PROCESS,
2825 .name = "vhost-user-send-interrupt-process",
2826};
2827/* *INDENT-ON* */
2828
Damjan Marion00a9dca2016-08-17 17:05:46 +02002829int
2830vhost_user_create_if (vnet_main_t * vnm, vlib_main_t * vm,
2831 const char *sock_filename,
2832 u8 is_server,
2833 u32 * sw_if_index,
2834 u64 feature_mask,
Stevena1a09012017-03-08 00:23:13 -08002835 u8 renumber, u32 custom_dev_instance, u8 * hwaddr,
2836 u8 operation_mode)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002837{
Damjan Marion00a9dca2016-08-17 17:05:46 +02002838 vhost_user_intf_t *vui = NULL;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002839 u32 sw_if_idx = ~0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002840 int rv = 0;
Pierre Pfisterdbb3c252016-11-22 10:33:34 +00002841 int server_sock_fd = -1;
Steven7312cc72017-03-15 21:18:55 -07002842 vhost_user_main_t *vum = &vhost_user_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002843
Steven7312cc72017-03-15 21:18:55 -07002844 if ((operation_mode != VHOST_USER_POLLING_MODE) &&
2845 (operation_mode != VHOST_USER_INTERRUPT_MODE))
Stevena1a09012017-03-08 00:23:13 -08002846 return VNET_API_ERROR_UNIMPLEMENTED;
2847
Wojciech Dec3cd9eed2017-01-03 10:38:37 +01002848 if (sock_filename == NULL || !(strlen (sock_filename) > 0))
2849 {
2850 return VNET_API_ERROR_INVALID_ARGUMENT;
2851 }
2852
Damjan Marion00a9dca2016-08-17 17:05:46 +02002853 if (is_server)
2854 {
Pierre Pfisterdbb3c252016-11-22 10:33:34 +00002855 if ((rv =
2856 vhost_user_init_server_sock (sock_filename, &server_sock_fd)) != 0)
Damjan Marion00a9dca2016-08-17 17:05:46 +02002857 {
2858 return rv;
2859 }
2860 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07002861
Pierre Pfisterdbb3c252016-11-22 10:33:34 +00002862 pool_get (vhost_user_main.vhost_user_interfaces, vui);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002863
Pierre Pfisteref65cb02016-02-19 13:52:44 +00002864 vhost_user_create_ethernet (vnm, vm, vui, hwaddr);
Pierre Pfisterdbb3c252016-11-22 10:33:34 +00002865 vhost_user_vui_init (vnm, vui, server_sock_fd, sock_filename,
Stevena1a09012017-03-08 00:23:13 -08002866 feature_mask, &sw_if_idx, operation_mode);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002867
Damjan Marion00a9dca2016-08-17 17:05:46 +02002868 if (renumber)
Pierre Pfisterdbb3c252016-11-22 10:33:34 +00002869 vnet_interface_name_renumber (sw_if_idx, custom_dev_instance);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002870
2871 if (sw_if_index)
Damjan Marion00a9dca2016-08-17 17:05:46 +02002872 *sw_if_index = sw_if_idx;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002873
Pierre Pfisterdbb3c252016-11-22 10:33:34 +00002874 // Process node must connect
2875 vlib_process_signal_event (vm, vhost_user_process_node.index, 0, 0);
Steven7312cc72017-03-15 21:18:55 -07002876
2877 if ((operation_mode == VHOST_USER_INTERRUPT_MODE) &&
2878 !vum->interrupt_mode && (vum->coalesce_time > 0.0) &&
2879 (vum->coalesce_frames > 0))
2880 {
2881 vum->interrupt_mode = 1;
2882 vlib_process_signal_event (vm, vhost_user_send_interrupt_node.index,
2883 VHOST_USER_EVENT_START_TIMER, 0);
2884 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07002885 return rv;
2886}
2887
Damjan Marion00a9dca2016-08-17 17:05:46 +02002888int
2889vhost_user_modify_if (vnet_main_t * vnm, vlib_main_t * vm,
2890 const char *sock_filename,
2891 u8 is_server,
2892 u32 sw_if_index,
Stevena1a09012017-03-08 00:23:13 -08002893 u64 feature_mask, u8 renumber, u32 custom_dev_instance,
2894 u8 operation_mode)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002895{
Damjan Marion00a9dca2016-08-17 17:05:46 +02002896 vhost_user_main_t *vum = &vhost_user_main;
2897 vhost_user_intf_t *vui = NULL;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002898 u32 sw_if_idx = ~0;
Pierre Pfisterdbb3c252016-11-22 10:33:34 +00002899 int server_sock_fd = -1;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002900 int rv = 0;
Pierre Pfisterdbb3c252016-11-22 10:33:34 +00002901 vnet_hw_interface_t *hwif;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002902
Steven7312cc72017-03-15 21:18:55 -07002903 if ((operation_mode != VHOST_USER_POLLING_MODE) &&
2904 (operation_mode != VHOST_USER_INTERRUPT_MODE))
Stevena1a09012017-03-08 00:23:13 -08002905 return VNET_API_ERROR_UNIMPLEMENTED;
Pierre Pfisterdbb3c252016-11-22 10:33:34 +00002906 if (!(hwif = vnet_get_sup_hw_interface (vnm, sw_if_index)) ||
2907 hwif->dev_class_index != vhost_user_dev_class.index)
2908 return VNET_API_ERROR_INVALID_SW_IF_INDEX;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002909
Pierre Pfisterdbb3c252016-11-22 10:33:34 +00002910 vui = vec_elt_at_index (vum->vhost_user_interfaces, hwif->dev_instance);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002911
Pierre Pfisterdbb3c252016-11-22 10:33:34 +00002912 // First try to open server socket
Damjan Marion00a9dca2016-08-17 17:05:46 +02002913 if (is_server)
Pierre Pfisterdbb3c252016-11-22 10:33:34 +00002914 if ((rv = vhost_user_init_server_sock (sock_filename,
2915 &server_sock_fd)) != 0)
2916 return rv;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002917
Pierre Pfisterdbb3c252016-11-22 10:33:34 +00002918 vhost_user_term_if (vui);
2919 vhost_user_vui_init (vnm, vui, server_sock_fd,
Stevena1a09012017-03-08 00:23:13 -08002920 sock_filename, feature_mask, &sw_if_idx,
2921 operation_mode);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002922
Damjan Marion00a9dca2016-08-17 17:05:46 +02002923 if (renumber)
Pierre Pfisterdbb3c252016-11-22 10:33:34 +00002924 vnet_interface_name_renumber (sw_if_idx, custom_dev_instance);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002925
Pierre Pfisterdbb3c252016-11-22 10:33:34 +00002926 // Process node must connect
2927 vlib_process_signal_event (vm, vhost_user_process_node.index, 0, 0);
Steven7312cc72017-03-15 21:18:55 -07002928
2929 if ((operation_mode == VHOST_USER_INTERRUPT_MODE) &&
2930 !vum->interrupt_mode && (vum->coalesce_time > 0.0) &&
2931 (vum->coalesce_frames > 0))
2932 {
2933 vum->interrupt_mode = 1;
2934 vlib_process_signal_event (vm, vhost_user_send_interrupt_node.index,
2935 VHOST_USER_EVENT_START_TIMER, 0);
2936 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07002937 return rv;
2938}
2939
Steven7312cc72017-03-15 21:18:55 -07002940static uword
2941unformat_vhost_user_operation_mode (unformat_input_t * input, va_list * args)
2942{
2943 u8 *operation_mode = va_arg (*args, u8 *);
2944 uword rc = 1;
2945
2946 if (unformat (input, "interrupt"))
2947 *operation_mode = VHOST_USER_INTERRUPT_MODE;
2948 else if (unformat (input, "polling"))
2949 *operation_mode = VHOST_USER_POLLING_MODE;
2950 else
2951 rc = 0;
2952
2953 return rc;
2954}
2955
Ed Warnickecb9cada2015-12-08 15:45:58 -07002956clib_error_t *
2957vhost_user_connect_command_fn (vlib_main_t * vm,
Damjan Marion00a9dca2016-08-17 17:05:46 +02002958 unformat_input_t * input,
2959 vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002960{
Damjan Marion00a9dca2016-08-17 17:05:46 +02002961 unformat_input_t _line_input, *line_input = &_line_input;
2962 u8 *sock_filename = NULL;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002963 u32 sw_if_index;
2964 u8 is_server = 0;
Pierre Pfistere21c5282016-09-21 08:04:59 +01002965 u64 feature_mask = (u64) ~ (0ULL);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002966 u8 renumber = 0;
2967 u32 custom_dev_instance = ~0;
Pierre Pfisteref65cb02016-02-19 13:52:44 +00002968 u8 hwaddr[6];
2969 u8 *hw = NULL;
Billy McFalla9a20e72017-02-15 11:39:12 -05002970 clib_error_t *error = NULL;
Stevena1a09012017-03-08 00:23:13 -08002971 u8 operation_mode = VHOST_USER_POLLING_MODE;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002972
2973 /* Get a line of input. */
Damjan Marion00a9dca2016-08-17 17:05:46 +02002974 if (!unformat_user (input, unformat_line_input, line_input))
Ed Warnickecb9cada2015-12-08 15:45:58 -07002975 return 0;
2976
Damjan Marion00a9dca2016-08-17 17:05:46 +02002977 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
2978 {
2979 if (unformat (line_input, "socket %s", &sock_filename))
2980 ;
2981 else if (unformat (line_input, "server"))
2982 is_server = 1;
2983 else if (unformat (line_input, "feature-mask 0x%llx", &feature_mask))
2984 ;
2985 else
2986 if (unformat
2987 (line_input, "hwaddr %U", unformat_ethernet_address, hwaddr))
2988 hw = hwaddr;
2989 else if (unformat (line_input, "renumber %d", &custom_dev_instance))
2990 {
2991 renumber = 1;
2992 }
Steven7312cc72017-03-15 21:18:55 -07002993 else if (unformat (line_input, "mode %U",
2994 unformat_vhost_user_operation_mode, &operation_mode))
2995 ;
Damjan Marion00a9dca2016-08-17 17:05:46 +02002996 else
Billy McFalla9a20e72017-02-15 11:39:12 -05002997 {
2998 error = clib_error_return (0, "unknown input `%U'",
2999 format_unformat_error, line_input);
3000 goto done;
3001 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07003002 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07003003
Damjan Marion00a9dca2016-08-17 17:05:46 +02003004 vnet_main_t *vnm = vnet_get_main ();
Ed Warnickecb9cada2015-12-08 15:45:58 -07003005
Pierre Pfister5afccb22016-07-25 14:32:02 +01003006 int rv;
Damjan Marion00a9dca2016-08-17 17:05:46 +02003007 if ((rv = vhost_user_create_if (vnm, vm, (char *) sock_filename,
3008 is_server, &sw_if_index, feature_mask,
Stevena1a09012017-03-08 00:23:13 -08003009 renumber, custom_dev_instance, hw,
3010 operation_mode)))
Damjan Marion00a9dca2016-08-17 17:05:46 +02003011 {
Billy McFalla9a20e72017-02-15 11:39:12 -05003012 error = clib_error_return (0, "vhost_user_create_if returned %d", rv);
3013 goto done;
Damjan Marion00a9dca2016-08-17 17:05:46 +02003014 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07003015
Damjan Marion00a9dca2016-08-17 17:05:46 +02003016 vlib_cli_output (vm, "%U\n", format_vnet_sw_if_index_name, vnet_get_main (),
3017 sw_if_index);
Billy McFalla9a20e72017-02-15 11:39:12 -05003018
3019done:
3020 vec_free (sock_filename);
3021 unformat_free (line_input);
3022
3023 return error;
Ed Warnickecb9cada2015-12-08 15:45:58 -07003024}
3025
3026clib_error_t *
3027vhost_user_delete_command_fn (vlib_main_t * vm,
Damjan Marion00a9dca2016-08-17 17:05:46 +02003028 unformat_input_t * input,
3029 vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -07003030{
Damjan Marion00a9dca2016-08-17 17:05:46 +02003031 unformat_input_t _line_input, *line_input = &_line_input;
Ed Warnickecb9cada2015-12-08 15:45:58 -07003032 u32 sw_if_index = ~0;
Pierre Pfisterece983d2016-11-21 12:52:22 +00003033 vnet_main_t *vnm = vnet_get_main ();
Billy McFalla9a20e72017-02-15 11:39:12 -05003034 clib_error_t *error = NULL;
Ed Warnickecb9cada2015-12-08 15:45:58 -07003035
3036 /* Get a line of input. */
Damjan Marion00a9dca2016-08-17 17:05:46 +02003037 if (!unformat_user (input, unformat_line_input, line_input))
Ed Warnickecb9cada2015-12-08 15:45:58 -07003038 return 0;
3039
Damjan Marion00a9dca2016-08-17 17:05:46 +02003040 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
3041 {
3042 if (unformat (line_input, "sw_if_index %d", &sw_if_index))
3043 ;
Pierre Pfisterece983d2016-11-21 12:52:22 +00003044 else if (unformat
3045 (line_input, "%U", unformat_vnet_sw_interface, vnm,
3046 &sw_if_index))
3047 {
3048 vnet_hw_interface_t *hwif =
3049 vnet_get_sup_hw_interface (vnm, sw_if_index);
3050 if (hwif == NULL ||
3051 vhost_user_dev_class.index != hwif->dev_class_index)
Billy McFalla9a20e72017-02-15 11:39:12 -05003052 {
3053 error = clib_error_return (0, "Not a vhost interface");
3054 goto done;
3055 }
Pierre Pfisterece983d2016-11-21 12:52:22 +00003056 }
Damjan Marion00a9dca2016-08-17 17:05:46 +02003057 else
Billy McFalla9a20e72017-02-15 11:39:12 -05003058 {
3059 error = clib_error_return (0, "unknown input `%U'",
3060 format_unformat_error, line_input);
3061 goto done;
3062 }
Damjan Marion00a9dca2016-08-17 17:05:46 +02003063 }
Billy McFalla9a20e72017-02-15 11:39:12 -05003064
Damjan Marion00a9dca2016-08-17 17:05:46 +02003065 vhost_user_delete_if (vnm, vm, sw_if_index);
Billy McFalla9a20e72017-02-15 11:39:12 -05003066
3067done:
3068 unformat_free (line_input);
3069
3070 return error;
Ed Warnickecb9cada2015-12-08 15:45:58 -07003071}
3072
Damjan Marion00a9dca2016-08-17 17:05:46 +02003073int
3074vhost_user_dump_ifs (vnet_main_t * vnm, vlib_main_t * vm,
3075 vhost_user_intf_details_t ** out_vuids)
Ed Warnickecb9cada2015-12-08 15:45:58 -07003076{
3077 int rv = 0;
Damjan Marion00a9dca2016-08-17 17:05:46 +02003078 vhost_user_main_t *vum = &vhost_user_main;
3079 vhost_user_intf_t *vui;
3080 vhost_user_intf_details_t *r_vuids = NULL;
3081 vhost_user_intf_details_t *vuid = NULL;
3082 u32 *hw_if_indices = 0;
3083 vnet_hw_interface_t *hi;
Ed Warnickecb9cada2015-12-08 15:45:58 -07003084 u8 *s = NULL;
3085 int i;
3086
3087 if (!out_vuids)
Damjan Marion00a9dca2016-08-17 17:05:46 +02003088 return -1;
Ed Warnickecb9cada2015-12-08 15:45:58 -07003089
Pierre Pfisterdbb3c252016-11-22 10:33:34 +00003090 pool_foreach (vui, vum->vhost_user_interfaces,
3091 vec_add1 (hw_if_indices, vui->hw_if_index);
3092 );
Ed Warnickecb9cada2015-12-08 15:45:58 -07003093
Damjan Marion00a9dca2016-08-17 17:05:46 +02003094 for (i = 0; i < vec_len (hw_if_indices); i++)
3095 {
3096 hi = vnet_get_hw_interface (vnm, hw_if_indices[i]);
Pierre Pfisterdbb3c252016-11-22 10:33:34 +00003097 vui = pool_elt_at_index (vum->vhost_user_interfaces, hi->dev_instance);
Ed Warnickecb9cada2015-12-08 15:45:58 -07003098
Damjan Marion00a9dca2016-08-17 17:05:46 +02003099 vec_add2 (r_vuids, vuid, 1);
Stevena1a09012017-03-08 00:23:13 -08003100 vuid->operation_mode = vui->operation_mode;
Damjan Marion00a9dca2016-08-17 17:05:46 +02003101 vuid->sw_if_index = vui->sw_if_index;
3102 vuid->virtio_net_hdr_sz = vui->virtio_net_hdr_sz;
3103 vuid->features = vui->features;
Damjan Marion00a9dca2016-08-17 17:05:46 +02003104 vuid->num_regions = vui->nregions;
Marek Gradzki0578cd12017-02-13 14:19:51 +01003105 vuid->is_server = vui->unix_server_index != ~0;
Damjan Marion00a9dca2016-08-17 17:05:46 +02003106 vuid->sock_errno = vui->sock_errno;
3107 strncpy ((char *) vuid->sock_filename, (char *) vui->sock_filename,
3108 ARRAY_LEN (vuid->sock_filename) - 1);
Ed Warnickecb9cada2015-12-08 15:45:58 -07003109
Damjan Marion00a9dca2016-08-17 17:05:46 +02003110 s = format (s, "%v%c", hi->name, 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07003111
Damjan Marion00a9dca2016-08-17 17:05:46 +02003112 strncpy ((char *) vuid->if_name, (char *) s,
3113 ARRAY_LEN (vuid->if_name) - 1);
3114 _vec_len (s) = 0;
3115 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07003116
3117 vec_free (s);
3118 vec_free (hw_if_indices);
3119
3120 *out_vuids = r_vuids;
3121
3122 return rv;
3123}
3124
Steven7312cc72017-03-15 21:18:55 -07003125static u8 *
3126format_vhost_user_operation_mode (u8 * s, va_list * va)
3127{
3128 int operation_mode = va_arg (*va, int);
3129
3130 switch (operation_mode)
3131 {
3132 case VHOST_USER_POLLING_MODE:
3133 s = format (s, "%s", "polling");
3134 break;
3135 case VHOST_USER_INTERRUPT_MODE:
3136 s = format (s, "%s", "interrupt");
3137 break;
3138 default:
3139 s = format (s, "%s", "invalid");
3140 }
3141 return s;
3142}
3143
Ed Warnickecb9cada2015-12-08 15:45:58 -07003144clib_error_t *
3145show_vhost_user_command_fn (vlib_main_t * vm,
Damjan Marion00a9dca2016-08-17 17:05:46 +02003146 unformat_input_t * input,
3147 vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -07003148{
Damjan Marion00a9dca2016-08-17 17:05:46 +02003149 clib_error_t *error = 0;
3150 vnet_main_t *vnm = vnet_get_main ();
3151 vhost_user_main_t *vum = &vhost_user_main;
3152 vhost_user_intf_t *vui;
3153 u32 hw_if_index, *hw_if_indices = 0;
3154 vnet_hw_interface_t *hi;
Pierre Pfistere21c5282016-09-21 08:04:59 +01003155 vhost_cpu_t *vhc;
3156 vhost_iface_and_queue_t *vhiq;
3157 u32 ci;
3158
Ed Warnickecb9cada2015-12-08 15:45:58 -07003159 int i, j, q;
3160 int show_descr = 0;
Damjan Marion00a9dca2016-08-17 17:05:46 +02003161 struct feat_struct
3162 {
3163 u8 bit;
3164 char *str;
3165 };
Ed Warnickecb9cada2015-12-08 15:45:58 -07003166 struct feat_struct *feat_entry;
3167
3168 static struct feat_struct feat_array[] = {
3169#define _(s,b) { .str = #s, .bit = b, },
Damjan Marion00a9dca2016-08-17 17:05:46 +02003170 foreach_virtio_net_feature
Ed Warnickecb9cada2015-12-08 15:45:58 -07003171#undef _
Damjan Marion00a9dca2016-08-17 17:05:46 +02003172 {.str = NULL}
Ed Warnickecb9cada2015-12-08 15:45:58 -07003173 };
3174
Pierre Pfistere21c5282016-09-21 08:04:59 +01003175#define foreach_protocol_feature \
3176 _(VHOST_USER_PROTOCOL_F_MQ) \
3177 _(VHOST_USER_PROTOCOL_F_LOG_SHMFD)
3178
3179 static struct feat_struct proto_feat_array[] = {
3180#define _(s) { .str = #s, .bit = s},
3181 foreach_protocol_feature
3182#undef _
3183 {.str = NULL}
3184 };
3185
Damjan Marion00a9dca2016-08-17 17:05:46 +02003186 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
3187 {
3188 if (unformat
3189 (input, "%U", unformat_vnet_hw_interface, vnm, &hw_if_index))
3190 {
3191 vec_add1 (hw_if_indices, hw_if_index);
Damjan Marion00a9dca2016-08-17 17:05:46 +02003192 }
3193 else if (unformat (input, "descriptors") || unformat (input, "desc"))
3194 show_descr = 1;
3195 else
3196 {
3197 error = clib_error_return (0, "unknown input `%U'",
3198 format_unformat_error, input);
3199 goto done;
3200 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07003201 }
Damjan Marion00a9dca2016-08-17 17:05:46 +02003202 if (vec_len (hw_if_indices) == 0)
3203 {
Pierre Pfisterdbb3c252016-11-22 10:33:34 +00003204 pool_foreach (vui, vum->vhost_user_interfaces,
3205 vec_add1 (hw_if_indices, vui->hw_if_index);
3206 );
Ed Warnickecb9cada2015-12-08 15:45:58 -07003207 }
Damjan Marion00a9dca2016-08-17 17:05:46 +02003208 vlib_cli_output (vm, "Virtio vhost-user interfaces");
Pierre Pfistere21c5282016-09-21 08:04:59 +01003209 vlib_cli_output (vm, "Global:\n coalesce frames %d time %e",
Damjan Marion00a9dca2016-08-17 17:05:46 +02003210 vum->coalesce_frames, vum->coalesce_time);
3211
3212 for (i = 0; i < vec_len (hw_if_indices); i++)
3213 {
3214 hi = vnet_get_hw_interface (vnm, hw_if_indices[i]);
Pierre Pfisterdbb3c252016-11-22 10:33:34 +00003215 vui = pool_elt_at_index (vum->vhost_user_interfaces, hi->dev_instance);
Damjan Marion00a9dca2016-08-17 17:05:46 +02003216 vlib_cli_output (vm, "Interface: %s (ifindex %d)",
3217 hi->name, hw_if_indices[i]);
3218
Pierre Pfistere21c5282016-09-21 08:04:59 +01003219 vlib_cli_output (vm, "virtio_net_hdr_sz %d\n"
3220 " features mask (0x%llx): \n"
3221 " features (0x%llx): \n",
3222 vui->virtio_net_hdr_sz, vui->feature_mask,
3223 vui->features);
Damjan Marion00a9dca2016-08-17 17:05:46 +02003224
3225 feat_entry = (struct feat_struct *) &feat_array;
3226 while (feat_entry->str)
3227 {
Pierre Pfistere21c5282016-09-21 08:04:59 +01003228 if (vui->features & (1ULL << feat_entry->bit))
3229 vlib_cli_output (vm, " %s (%d)", feat_entry->str,
3230 feat_entry->bit);
3231 feat_entry++;
3232 }
3233
3234 vlib_cli_output (vm, " protocol features (0x%llx)",
3235 vui->protocol_features);
3236 feat_entry = (struct feat_struct *) &proto_feat_array;
3237 while (feat_entry->str)
3238 {
3239 if (vui->protocol_features & (1ULL << feat_entry->bit))
Damjan Marion00a9dca2016-08-17 17:05:46 +02003240 vlib_cli_output (vm, " %s (%d)", feat_entry->str,
3241 feat_entry->bit);
3242 feat_entry++;
3243 }
3244
3245 vlib_cli_output (vm, "\n");
3246
Damjan Marion00a9dca2016-08-17 17:05:46 +02003247 vlib_cli_output (vm, " socket filename %s type %s errno \"%s\"\n\n",
3248 vui->sock_filename,
Pierre Pfisterdbb3c252016-11-22 10:33:34 +00003249 (vui->unix_server_index != ~0) ? "server" : "client",
Damjan Marion00a9dca2016-08-17 17:05:46 +02003250 strerror (vui->sock_errno));
3251
Steven7312cc72017-03-15 21:18:55 -07003252 vlib_cli_output (vm, " configured mode: %U\n",
3253 format_vhost_user_operation_mode, vui->operation_mode);
Pierre Pfistere21c5282016-09-21 08:04:59 +01003254 vlib_cli_output (vm, " rx placement: ");
3255 vec_foreach (vhc, vum->cpus)
3256 {
3257 vec_foreach (vhiq, vhc->rx_queues)
3258 {
3259 if (vhiq->vhost_iface_index == vui - vum->vhost_user_interfaces)
Steven7312cc72017-03-15 21:18:55 -07003260 {
3261 vlib_cli_output (vm, " thread %d on vring %d\n",
3262 vhc - vum->cpus,
3263 VHOST_VRING_IDX_TX (vhiq->qid));
3264 vlib_cli_output (vm, " mode: %U\n",
3265 format_vhost_user_operation_mode,
3266 vhc->operation_mode);
3267 }
Pierre Pfistere21c5282016-09-21 08:04:59 +01003268 }
3269 }
3270
3271 vlib_cli_output (vm, " tx placement: %s\n",
3272 vui->use_tx_spinlock ? "spin-lock" : "lock-free");
3273
3274 vec_foreach_index (ci, vui->per_cpu_tx_qid)
3275 {
3276 vlib_cli_output (vm, " thread %d on vring %d\n", ci,
3277 VHOST_VRING_IDX_RX (vui->per_cpu_tx_qid[ci]));
3278 }
3279
3280 vlib_cli_output (vm, "\n");
3281
Damjan Marion00a9dca2016-08-17 17:05:46 +02003282 vlib_cli_output (vm, " Memory regions (total %d)\n", vui->nregions);
3283
3284 if (vui->nregions)
3285 {
3286 vlib_cli_output (vm,
3287 " region fd guest_phys_addr memory_size userspace_addr mmap_offset mmap_addr\n");
3288 vlib_cli_output (vm,
3289 " ====== ===== ================== ================== ================== ================== ==================\n");
3290 }
3291 for (j = 0; j < vui->nregions; j++)
3292 {
3293 vlib_cli_output (vm,
3294 " %d %-5d 0x%016lx 0x%016lx 0x%016lx 0x%016lx 0x%016lx\n",
3295 j, vui->region_mmap_fd[j],
3296 vui->regions[j].guest_phys_addr,
3297 vui->regions[j].memory_size,
3298 vui->regions[j].userspace_addr,
3299 vui->regions[j].mmap_offset,
3300 pointer_to_uword (vui->region_mmap_addr[j]));
3301 }
Pierre Pfistere21c5282016-09-21 08:04:59 +01003302 for (q = 0; q < VHOST_VRING_MAX_N; q++)
Damjan Marion00a9dca2016-08-17 17:05:46 +02003303 {
Pierre Pfistere21c5282016-09-21 08:04:59 +01003304 if (!vui->vrings[q].started)
3305 continue;
3306
3307 vlib_cli_output (vm, "\n Virtqueue %d (%s%s)\n", q,
3308 (q & 1) ? "RX" : "TX",
3309 vui->vrings[q].enabled ? "" : " disabled");
Damjan Marion00a9dca2016-08-17 17:05:46 +02003310
3311 vlib_cli_output (vm,
3312 " qsz %d last_avail_idx %d last_used_idx %d\n",
3313 vui->vrings[q].qsz, vui->vrings[q].last_avail_idx,
3314 vui->vrings[q].last_used_idx);
3315
3316 if (vui->vrings[q].avail && vui->vrings[q].used)
3317 vlib_cli_output (vm,
3318 " avail.flags %x avail.idx %d used.flags %x used.idx %d\n",
3319 vui->vrings[q].avail->flags,
3320 vui->vrings[q].avail->idx,
3321 vui->vrings[q].used->flags,
3322 vui->vrings[q].used->idx);
3323
Pierre Pfisterdbb3c252016-11-22 10:33:34 +00003324 int kickfd = UNIX_GET_FD (vui->vrings[q].kickfd_idx);
3325 int callfd = UNIX_GET_FD (vui->vrings[q].callfd_idx);
Damjan Marion00a9dca2016-08-17 17:05:46 +02003326 vlib_cli_output (vm, " kickfd %d callfd %d errfd %d\n",
Pierre Pfisterdbb3c252016-11-22 10:33:34 +00003327 kickfd, callfd, vui->vrings[q].errfd);
Damjan Marion00a9dca2016-08-17 17:05:46 +02003328
3329 if (show_descr)
3330 {
3331 vlib_cli_output (vm, "\n descriptor table:\n");
3332 vlib_cli_output (vm,
3333 " id addr len flags next user_addr\n");
3334 vlib_cli_output (vm,
3335 " ===== ================== ===== ====== ===== ==================\n");
3336 for (j = 0; j < vui->vrings[q].qsz; j++)
3337 {
Pierre Pfister11f92052016-09-21 08:08:55 +01003338 u32 mem_hint = 0;
Damjan Marion00a9dca2016-08-17 17:05:46 +02003339 vlib_cli_output (vm,
3340 " %-5d 0x%016lx %-5d 0x%04x %-5d 0x%016lx\n",
3341 j, vui->vrings[q].desc[j].addr,
3342 vui->vrings[q].desc[j].len,
3343 vui->vrings[q].desc[j].flags,
3344 vui->vrings[q].desc[j].next,
3345 pointer_to_uword (map_guest_mem
3346 (vui,
Pierre Pfisterba1d0462016-07-27 16:38:20 +01003347 vui->vrings[q].desc[j].
Pierre Pfister11f92052016-09-21 08:08:55 +01003348 addr, &mem_hint)));
Damjan Marion00a9dca2016-08-17 17:05:46 +02003349 }
3350 }
3351 }
3352 vlib_cli_output (vm, "\n");
3353 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07003354done:
3355 vec_free (hw_if_indices);
3356 return error;
3357}
3358
Damjan Marion8d281b32016-08-24 14:32:39 +02003359/*
3360 * CLI functions
3361 */
3362
Billy McFalla92501a2016-11-23 12:45:29 -05003363/*?
3364 * Create a vHost User interface. Once created, a new virtual interface
3365 * will exist with the name '<em>VirtualEthernet0/0/x</em>', where '<em>x</em>'
3366 * is the next free index.
3367 *
3368 * There are several parameters associated with a vHost interface:
3369 *
3370 * - <b>socket <socket-filename></b> - Name of the linux socket used by QEMU/VM and
3371 * VPP to manage the vHost interface. If socket does not already exist, VPP will
3372 * create the socket.
3373 *
3374 * - <b>server</b> - Optional flag to indicate that VPP should be the server for the
3375 * linux socket. If not provided, VPP will be the client.
3376 *
3377 * - <b>feature-mask <hex></b> - Optional virtio/vhost feature set negotiated at
3378 * startup. By default, all supported features will be advertised. Otherwise,
3379 * provide the set of features desired.
3380 * - 0x000008000 (15) - VIRTIO_NET_F_MRG_RXBUF
3381 * - 0x000020000 (17) - VIRTIO_NET_F_CTRL_VQ
3382 * - 0x000200000 (21) - VIRTIO_NET_F_GUEST_ANNOUNCE
3383 * - 0x000400000 (22) - VIRTIO_NET_F_MQ
3384 * - 0x004000000 (26) - VHOST_F_LOG_ALL
3385 * - 0x008000000 (27) - VIRTIO_F_ANY_LAYOUT
3386 * - 0x010000000 (28) - VIRTIO_F_INDIRECT_DESC
3387 * - 0x040000000 (30) - VHOST_USER_F_PROTOCOL_FEATURES
3388 * - 0x100000000 (32) - VIRTIO_F_VERSION_1
3389 *
3390 * - <b>hwaddr <mac-addr></b> - Optional ethernet address, can be in either
3391 * X:X:X:X:X:X unix or X.X.X cisco format.
3392 *
3393 * - <b>renumber <dev_instance></b> - Optional parameter which allows the instance
3394 * in the name to be specified. If instance already exists, name will be used
3395 * anyway and multiple instances will have the same name. Use with caution.
3396 *
Steven7312cc72017-03-15 21:18:55 -07003397 * - <b>mode [interrupt | polling]</b> - Optional parameter specifying
3398 * the input thread polling policy.
3399 *
Billy McFalla92501a2016-11-23 12:45:29 -05003400 * @cliexpar
3401 * Example of how to create a vhost interface with VPP as the client and all features enabled:
3402 * @cliexstart{create vhost-user socket /tmp/vhost1.sock}
3403 * VirtualEthernet0/0/0
3404 * @cliexend
3405 * Example of how to create a vhost interface with VPP as the server and with just
3406 * multiple queues enabled:
3407 * @cliexstart{create vhost-user socket /tmp/vhost2.sock server feature-mask 0x40400000}
3408 * VirtualEthernet0/0/1
3409 * @cliexend
3410 * Once the vHost interface is created, enable the interface using:
3411 * @cliexcmd{set interface state VirtualEthernet0/0/0 up}
3412?*/
Damjan Marion8d281b32016-08-24 14:32:39 +02003413/* *INDENT-OFF* */
3414VLIB_CLI_COMMAND (vhost_user_connect_command, static) = {
3415 .path = "create vhost-user",
Steven7312cc72017-03-15 21:18:55 -07003416 .short_help = "create vhost-user socket <socket-filename> [server] "
3417 "[feature-mask <hex>] [hwaddr <mac-addr>] [renumber <dev_instance>] "
3418 "[mode {interrupt | polling}]",
Damjan Marion8d281b32016-08-24 14:32:39 +02003419 .function = vhost_user_connect_command_fn,
3420};
Billy McFalla92501a2016-11-23 12:45:29 -05003421/* *INDENT-ON* */
Damjan Marion8d281b32016-08-24 14:32:39 +02003422
Billy McFalla92501a2016-11-23 12:45:29 -05003423/*?
3424 * Delete a vHost User interface using the interface name or the
Dave Barach13ad1f02017-03-26 19:36:18 -04003425 * software interface index. Use the '<em>show interface</em>'
Billy McFalla92501a2016-11-23 12:45:29 -05003426 * command to determine the software interface index. On deletion,
3427 * the linux socket will not be deleted.
3428 *
3429 * @cliexpar
3430 * Example of how to delete a vhost interface by name:
3431 * @cliexcmd{delete vhost-user VirtualEthernet0/0/1}
3432 * Example of how to delete a vhost interface by software interface index:
3433 * @cliexcmd{delete vhost-user sw_if_index 1}
3434?*/
3435/* *INDENT-OFF* */
Damjan Marion8d281b32016-08-24 14:32:39 +02003436VLIB_CLI_COMMAND (vhost_user_delete_command, static) = {
3437 .path = "delete vhost-user",
Billy McFalla92501a2016-11-23 12:45:29 -05003438 .short_help = "delete vhost-user {<interface> | sw_if_index <sw_idx>}",
Damjan Marion8d281b32016-08-24 14:32:39 +02003439 .function = vhost_user_delete_command_fn,
3440};
3441
Billy McFalla92501a2016-11-23 12:45:29 -05003442/*?
3443 * Display the attributes of a single vHost User interface (provide interface
3444 * name), multiple vHost User interfaces (provide a list of interface names seperated
3445 * by spaces) or all Vhost User interfaces (omit an interface name to display all
3446 * vHost interfaces).
3447 *
3448 * @cliexpar
3449 * @parblock
3450 * Example of how to display a vhost interface:
3451 * @cliexstart{show vhost-user VirtualEthernet0/0/0}
3452 * Virtio vhost-user interfaces
3453 * Global:
3454 * coalesce frames 32 time 1e-3
3455 * Interface: VirtualEthernet0/0/0 (ifindex 1)
3456 * virtio_net_hdr_sz 12
3457 * features mask (0xffffffffffffffff):
3458 * features (0x50408000):
3459 * VIRTIO_NET_F_MRG_RXBUF (15)
3460 * VIRTIO_NET_F_MQ (22)
3461 * VIRTIO_F_INDIRECT_DESC (28)
3462 * VHOST_USER_F_PROTOCOL_FEATURES (30)
3463 * protocol features (0x3)
3464 * VHOST_USER_PROTOCOL_F_MQ (0)
3465 * VHOST_USER_PROTOCOL_F_LOG_SHMFD (1)
3466 *
3467 * socket filename /tmp/vhost1.sock type client errno "Success"
3468 *
3469 * rx placement:
3470 * thread 1 on vring 1
3471 * thread 1 on vring 5
3472 * thread 2 on vring 3
3473 * thread 2 on vring 7
3474 * tx placement: spin-lock
3475 * thread 0 on vring 0
3476 * thread 1 on vring 2
3477 * thread 2 on vring 0
3478 *
3479 * Memory regions (total 2)
3480 * region fd guest_phys_addr memory_size userspace_addr mmap_offset mmap_addr
3481 * ====== ===== ================== ================== ================== ================== ==================
3482 * 0 60 0x0000000000000000 0x00000000000a0000 0x00002aaaaac00000 0x0000000000000000 0x00002aab2b400000
3483 * 1 61 0x00000000000c0000 0x000000003ff40000 0x00002aaaaacc0000 0x00000000000c0000 0x00002aababcc0000
3484 *
3485 * Virtqueue 0 (TX)
3486 * qsz 256 last_avail_idx 0 last_used_idx 0
3487 * avail.flags 1 avail.idx 128 used.flags 1 used.idx 0
3488 * kickfd 62 callfd 64 errfd -1
3489 *
3490 * Virtqueue 1 (RX)
3491 * qsz 256 last_avail_idx 0 last_used_idx 0
3492 * avail.flags 1 avail.idx 0 used.flags 1 used.idx 0
3493 * kickfd 65 callfd 66 errfd -1
3494 *
3495 * Virtqueue 2 (TX)
3496 * qsz 256 last_avail_idx 0 last_used_idx 0
3497 * avail.flags 1 avail.idx 128 used.flags 1 used.idx 0
3498 * kickfd 63 callfd 70 errfd -1
3499 *
3500 * Virtqueue 3 (RX)
3501 * qsz 256 last_avail_idx 0 last_used_idx 0
3502 * avail.flags 1 avail.idx 0 used.flags 1 used.idx 0
3503 * kickfd 72 callfd 74 errfd -1
3504 *
3505 * Virtqueue 4 (TX disabled)
3506 * qsz 256 last_avail_idx 0 last_used_idx 0
3507 * avail.flags 1 avail.idx 0 used.flags 1 used.idx 0
3508 * kickfd 76 callfd 78 errfd -1
3509 *
3510 * Virtqueue 5 (RX disabled)
3511 * qsz 256 last_avail_idx 0 last_used_idx 0
3512 * avail.flags 1 avail.idx 0 used.flags 1 used.idx 0
3513 * kickfd 80 callfd 82 errfd -1
3514 *
3515 * Virtqueue 6 (TX disabled)
3516 * qsz 256 last_avail_idx 0 last_used_idx 0
3517 * avail.flags 1 avail.idx 0 used.flags 1 used.idx 0
3518 * kickfd 84 callfd 86 errfd -1
3519 *
3520 * Virtqueue 7 (RX disabled)
3521 * qsz 256 last_avail_idx 0 last_used_idx 0
3522 * avail.flags 1 avail.idx 0 used.flags 1 used.idx 0
3523 * kickfd 88 callfd 90 errfd -1
3524 *
3525 * @cliexend
3526 *
3527 * The optional '<em>descriptors</em>' parameter will display the same output as
3528 * the previous example but will include the descriptor table for each queue.
3529 * The output is truncated below:
3530 * @cliexstart{show vhost-user VirtualEthernet0/0/0 descriptors}
3531 * Virtio vhost-user interfaces
3532 * Global:
3533 * coalesce frames 32 time 1e-3
3534 * Interface: VirtualEthernet0/0/0 (ifindex 1)
3535 * virtio_net_hdr_sz 12
3536 * features mask (0xffffffffffffffff):
3537 * features (0x50408000):
3538 * VIRTIO_NET_F_MRG_RXBUF (15)
3539 * VIRTIO_NET_F_MQ (22)
3540 * :
3541 * Virtqueue 0 (TX)
3542 * qsz 256 last_avail_idx 0 last_used_idx 0
3543 * avail.flags 1 avail.idx 128 used.flags 1 used.idx 0
3544 * kickfd 62 callfd 64 errfd -1
3545 *
3546 * descriptor table:
3547 * id addr len flags next user_addr
3548 * ===== ================== ===== ====== ===== ==================
3549 * 0 0x0000000010b6e974 2060 0x0002 1 0x00002aabbc76e974
3550 * 1 0x0000000010b6e034 2060 0x0002 2 0x00002aabbc76e034
3551 * 2 0x0000000010b6d6f4 2060 0x0002 3 0x00002aabbc76d6f4
3552 * 3 0x0000000010b6cdb4 2060 0x0002 4 0x00002aabbc76cdb4
3553 * 4 0x0000000010b6c474 2060 0x0002 5 0x00002aabbc76c474
3554 * 5 0x0000000010b6bb34 2060 0x0002 6 0x00002aabbc76bb34
3555 * 6 0x0000000010b6b1f4 2060 0x0002 7 0x00002aabbc76b1f4
3556 * 7 0x0000000010b6a8b4 2060 0x0002 8 0x00002aabbc76a8b4
3557 * 8 0x0000000010b69f74 2060 0x0002 9 0x00002aabbc769f74
3558 * 9 0x0000000010b69634 2060 0x0002 10 0x00002aabbc769634
3559 * 10 0x0000000010b68cf4 2060 0x0002 11 0x00002aabbc768cf4
3560 * :
3561 * 249 0x0000000000000000 0 0x0000 250 0x00002aab2b400000
3562 * 250 0x0000000000000000 0 0x0000 251 0x00002aab2b400000
3563 * 251 0x0000000000000000 0 0x0000 252 0x00002aab2b400000
3564 * 252 0x0000000000000000 0 0x0000 253 0x00002aab2b400000
3565 * 253 0x0000000000000000 0 0x0000 254 0x00002aab2b400000
3566 * 254 0x0000000000000000 0 0x0000 255 0x00002aab2b400000
3567 * 255 0x0000000000000000 0 0x0000 32768 0x00002aab2b400000
3568 *
3569 * Virtqueue 1 (RX)
3570 * qsz 256 last_avail_idx 0 last_used_idx 0
3571 * :
3572 * @cliexend
3573 * @endparblock
3574?*/
3575/* *INDENT-OFF* */
Damjan Marion8d281b32016-08-24 14:32:39 +02003576VLIB_CLI_COMMAND (show_vhost_user_command, static) = {
3577 .path = "show vhost-user",
Billy McFalla92501a2016-11-23 12:45:29 -05003578 .short_help = "show vhost-user [<interface> [<interface> [..]]] [descriptors]",
Damjan Marion8d281b32016-08-24 14:32:39 +02003579 .function = show_vhost_user_command_fn,
3580};
3581/* *INDENT-ON* */
Damjan Marion8d281b32016-08-24 14:32:39 +02003582
Ed Warnickecb9cada2015-12-08 15:45:58 -07003583static clib_error_t *
3584vhost_user_config (vlib_main_t * vm, unformat_input_t * input)
3585{
Damjan Marion00a9dca2016-08-17 17:05:46 +02003586 vhost_user_main_t *vum = &vhost_user_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -07003587
3588 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
3589 {
3590 if (unformat (input, "coalesce-frames %d", &vum->coalesce_frames))
Damjan Marion00a9dca2016-08-17 17:05:46 +02003591 ;
Ed Warnickecb9cada2015-12-08 15:45:58 -07003592 else if (unformat (input, "coalesce-time %f", &vum->coalesce_time))
Damjan Marion00a9dca2016-08-17 17:05:46 +02003593 ;
Ed Warnickecb9cada2015-12-08 15:45:58 -07003594 else if (unformat (input, "dont-dump-memory"))
Damjan Marion00a9dca2016-08-17 17:05:46 +02003595 vum->dont_dump_vhost_user_memory = 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -07003596 else
Damjan Marion00a9dca2016-08-17 17:05:46 +02003597 return clib_error_return (0, "unknown input `%U'",
3598 format_unformat_error, input);
Ed Warnickecb9cada2015-12-08 15:45:58 -07003599 }
3600
3601 return 0;
3602}
3603
3604/* vhost-user { ... } configuration. */
3605VLIB_CONFIG_FUNCTION (vhost_user_config, "vhost-user");
3606
3607void
3608vhost_user_unmap_all (void)
3609{
Damjan Marion00a9dca2016-08-17 17:05:46 +02003610 vhost_user_main_t *vum = &vhost_user_main;
3611 vhost_user_intf_t *vui;
Ed Warnickecb9cada2015-12-08 15:45:58 -07003612
3613 if (vum->dont_dump_vhost_user_memory)
3614 {
Pierre Pfisterdbb3c252016-11-22 10:33:34 +00003615 pool_foreach (vui, vum->vhost_user_interfaces,
3616 unmap_all_mem_regions (vui);
3617 );
Ed Warnickecb9cada2015-12-08 15:45:58 -07003618 }
3619}
Damjan Marion00a9dca2016-08-17 17:05:46 +02003620
Pierre Pfistere21c5282016-09-21 08:04:59 +01003621static clib_error_t *
3622vhost_thread_command_fn (vlib_main_t * vm,
3623 unformat_input_t * input, vlib_cli_command_t * cmd)
3624{
3625 unformat_input_t _line_input, *line_input = &_line_input;
3626 u32 worker_thread_index;
3627 u32 sw_if_index;
3628 u8 del = 0;
3629 int rv;
Billy McFalla9a20e72017-02-15 11:39:12 -05003630 clib_error_t *error = NULL;
Pierre Pfistere21c5282016-09-21 08:04:59 +01003631
3632 /* Get a line of input. */
3633 if (!unformat_user (input, unformat_line_input, line_input))
3634 return 0;
3635
3636 if (!unformat
3637 (line_input, "%U %d", unformat_vnet_sw_interface, vnet_get_main (),
3638 &sw_if_index, &worker_thread_index))
3639 {
Billy McFalla9a20e72017-02-15 11:39:12 -05003640 error = clib_error_return (0, "unknown input `%U'",
3641 format_unformat_error, line_input);
3642 goto done;
Pierre Pfistere21c5282016-09-21 08:04:59 +01003643 }
3644
3645 if (unformat (line_input, "del"))
3646 del = 1;
3647
3648 if ((rv =
3649 vhost_user_thread_placement (sw_if_index, worker_thread_index, del)))
Billy McFalla9a20e72017-02-15 11:39:12 -05003650 {
3651 error = clib_error_return (0, "vhost_user_thread_placement returned %d",
3652 rv);
3653 goto done;
3654 }
3655
3656done:
3657 unformat_free (line_input);
3658
3659 return error;
Pierre Pfistere21c5282016-09-21 08:04:59 +01003660}
3661
3662
Billy McFalla92501a2016-11-23 12:45:29 -05003663/*?
3664 * This command is used to move the RX processing for the given
3665 * interfaces to the provided thread. If the '<em>del</em>' option is used,
3666 * the forced thread assignment is removed and the thread assigment is
3667 * reassigned automatically. Use '<em>show vhost-user <interface></em>'
3668 * to see the thread assignment.
3669 *
3670 * @cliexpar
3671 * Example of how to move the RX processing for a given interface to a given thread:
3672 * @cliexcmd{vhost thread VirtualEthernet0/0/0 1}
3673 * Example of how to remove the forced thread assignment for a given interface:
3674 * @cliexcmd{vhost thread VirtualEthernet0/0/0 1 del}
3675?*/
Pierre Pfistere21c5282016-09-21 08:04:59 +01003676/* *INDENT-OFF* */
3677VLIB_CLI_COMMAND (vhost_user_thread_command, static) = {
3678 .path = "vhost thread",
3679 .short_help = "vhost thread <iface> <worker-index> [del]",
3680 .function = vhost_thread_command_fn,
3681};
3682/* *INDENT-ON* */
3683
Damjan Marion00a9dca2016-08-17 17:05:46 +02003684/*
3685 * fd.io coding-style-patch-verification: ON
3686 *
3687 * Local Variables:
3688 * eval: (c-set-style "gnu")
3689 * End:
3690 */