blob: 426f03c6ab120d1490828eb6b99bbcb48403ba7a [file] [log] [blame]
Mohsin Kazmie7cde312018-06-26 17:20:11 +02001/*
2 *------------------------------------------------------------------
3 * vhost.c - vhost-user
4 *
5 * Copyright (c) 2014-2018 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
Mohsin Kazmie7cde312018-06-26 17:20:11 +020036#include <vnet/ethernet/ethernet.h>
37#include <vnet/devices/devices.h>
38#include <vnet/feature/feature.h>
Damjan Marion94100532020-11-06 23:25:57 +010039#include <vnet/interface/rx_queue_funcs.h>
Mohsin Kazmie7cde312018-06-26 17:20:11 +020040
41#include <vnet/devices/virtio/vhost_user.h>
42#include <vnet/devices/virtio/vhost_user_inline.h>
43
44/**
45 * @file
46 * @brief vHost User Device Driver.
47 *
48 * This file contains the source code for vHost User interface.
49 */
50
51
52vlib_node_registration_t vhost_user_send_interrupt_node;
53
54/* *INDENT-OFF* */
55vhost_user_main_t vhost_user_main = {
56 .mtu_bytes = 1518,
57};
58
59VNET_HW_INTERFACE_CLASS (vhost_interface_class, static) = {
60 .name = "vhost-user",
61};
62/* *INDENT-ON* */
63
64static long
65get_huge_page_size (int fd)
66{
67 struct statfs s;
68 fstatfs (fd, &s);
69 return s.f_bsize;
70}
71
72static void
73unmap_all_mem_regions (vhost_user_intf_t * vui)
74{
Yichen Wang28812a02018-08-28 23:05:27 -070075 int i, r, q;
76 vhost_user_vring_t *vq;
77
Mohsin Kazmie7cde312018-06-26 17:20:11 +020078 for (i = 0; i < vui->nregions; i++)
79 {
80 if (vui->region_mmap_addr[i] != MAP_FAILED)
81 {
82
83 long page_sz = get_huge_page_size (vui->region_mmap_fd[i]);
84
85 ssize_t map_sz = (vui->regions[i].memory_size +
86 vui->regions[i].mmap_offset +
87 page_sz - 1) & ~(page_sz - 1);
88
89 r =
90 munmap (vui->region_mmap_addr[i] - vui->regions[i].mmap_offset,
91 map_sz);
92
Jerome Tollet2f54c272018-10-02 11:41:11 +020093 vu_log_debug (vui, "unmap memory region %d addr 0x%lx len 0x%lx "
94 "page_sz 0x%x", i, vui->region_mmap_addr[i], map_sz,
95 page_sz);
Mohsin Kazmie7cde312018-06-26 17:20:11 +020096
97 vui->region_mmap_addr[i] = MAP_FAILED;
98
99 if (r == -1)
100 {
Jerome Tollet2f54c272018-10-02 11:41:11 +0200101 vu_log_err (vui, "failed to unmap memory region (errno %d)",
102 errno);
Mohsin Kazmie7cde312018-06-26 17:20:11 +0200103 }
104 close (vui->region_mmap_fd[i]);
105 }
106 }
107 vui->nregions = 0;
Yichen Wang28812a02018-08-28 23:05:27 -0700108
Steven Luong2c1084a2020-12-10 20:44:22 -0800109 for (q = 0; q < vui->num_qid; q++)
Yichen Wang28812a02018-08-28 23:05:27 -0700110 {
111 vq = &vui->vrings[q];
112 vq->avail = 0;
113 vq->used = 0;
114 vq->desc = 0;
115 }
Mohsin Kazmie7cde312018-06-26 17:20:11 +0200116}
117
Steven Luong67f935e2019-02-01 10:23:56 -0800118static_always_inline void
Mohsin Kazmie7cde312018-06-26 17:20:11 +0200119vhost_user_tx_thread_placement (vhost_user_intf_t * vui)
120{
121 //Let's try to assign one queue to each thread
Steven Luong67f935e2019-02-01 10:23:56 -0800122 u32 qid;
Mohsin Kazmie7cde312018-06-26 17:20:11 +0200123 u32 thread_index = 0;
Steven Luong67f935e2019-02-01 10:23:56 -0800124
Mohsin Kazmie7cde312018-06-26 17:20:11 +0200125 vui->use_tx_spinlock = 0;
126 while (1)
127 {
Steven Luong2c1084a2020-12-10 20:44:22 -0800128 for (qid = 0; qid < vui->num_qid / 2; qid++)
Mohsin Kazmie7cde312018-06-26 17:20:11 +0200129 {
130 vhost_user_vring_t *rxvq = &vui->vrings[VHOST_VRING_IDX_RX (qid)];
131 if (!rxvq->started || !rxvq->enabled)
132 continue;
133
134 vui->per_cpu_tx_qid[thread_index] = qid;
135 thread_index++;
136 if (thread_index == vlib_get_thread_main ()->n_vlib_mains)
137 return;
138 }
139 //We need to loop, meaning the spinlock has to be used
140 vui->use_tx_spinlock = 1;
141 if (thread_index == 0)
142 {
143 //Could not find a single valid one
144 for (thread_index = 0;
145 thread_index < vlib_get_thread_main ()->n_vlib_mains;
146 thread_index++)
147 {
148 vui->per_cpu_tx_qid[thread_index] = 0;
149 }
150 return;
151 }
152 }
153}
154
155/**
156 * @brief Unassign existing interface/queue to thread mappings and re-assign
157 * new interface/queue to thread mappings
158 */
Steven Luong67f935e2019-02-01 10:23:56 -0800159static_always_inline void
160vhost_user_rx_thread_placement (vhost_user_intf_t * vui, u32 qid)
Mohsin Kazmie7cde312018-06-26 17:20:11 +0200161{
Steven Luong67f935e2019-02-01 10:23:56 -0800162 vhost_user_vring_t *txvq = &vui->vrings[qid];
Mohsin Kazmie7cde312018-06-26 17:20:11 +0200163 vnet_main_t *vnm = vnet_get_main ();
Mohsin Kazmie7cde312018-06-26 17:20:11 +0200164 int rv;
Steven Luong67f935e2019-02-01 10:23:56 -0800165 u32 q = qid >> 1;
Mohsin Kazmie7cde312018-06-26 17:20:11 +0200166
Steven Luong67f935e2019-02-01 10:23:56 -0800167 ASSERT ((qid & 1) == 1); // should be odd
168 // Assign new queue mappings for the interface
Damjan Marion94100532020-11-06 23:25:57 +0100169 vnet_hw_if_set_input_node (vnm, vui->hw_if_index,
170 vhost_user_input_node.index);
171 txvq->queue_index = vnet_hw_if_register_rx_queue (vnm, vui->hw_if_index, q,
172 VNET_HW_IF_RXQ_THREAD_ANY);
Damjan Marioneabd4242020-10-07 20:59:07 +0200173 if (txvq->mode == VNET_HW_IF_RX_MODE_UNKNOWN)
Steven Luong67f935e2019-02-01 10:23:56 -0800174 /* Set polling as the default */
Damjan Marioneabd4242020-10-07 20:59:07 +0200175 txvq->mode = VNET_HW_IF_RX_MODE_POLLING;
Steven Luong67f935e2019-02-01 10:23:56 -0800176 txvq->qid = q;
Damjan Marion94100532020-11-06 23:25:57 +0100177 rv = vnet_hw_if_set_rx_queue_mode (vnm, txvq->queue_index, txvq->mode);
Steven Luong67f935e2019-02-01 10:23:56 -0800178 if (rv)
179 vu_log_warn (vui, "unable to set rx mode for interface %d, "
180 "queue %d: rc=%d", vui->hw_if_index, q, rv);
Damjan Marion94100532020-11-06 23:25:57 +0100181 vnet_hw_if_update_runtime_data (vnm, vui->hw_if_index);
Mohsin Kazmie7cde312018-06-26 17:20:11 +0200182}
183
184/** @brief Returns whether at least one TX and one RX vring are enabled */
185static_always_inline int
186vhost_user_intf_ready (vhost_user_intf_t * vui)
187{
188 int i, found[2] = { }; //RX + TX
189
Steven Luong2c1084a2020-12-10 20:44:22 -0800190 for (i = 0; i < vui->num_qid; i++)
Mohsin Kazmie7cde312018-06-26 17:20:11 +0200191 if (vui->vrings[i].started && vui->vrings[i].enabled)
192 found[i & 1] = 1;
193
194 return found[0] && found[1];
195}
196
Steven Luong67f935e2019-02-01 10:23:56 -0800197static_always_inline void
Mohsin Kazmie7cde312018-06-26 17:20:11 +0200198vhost_user_update_iface_state (vhost_user_intf_t * vui)
199{
200 /* if we have pointers to descriptor table, go up */
Juraj Slobodab192feb2018-10-01 12:42:07 +0200201 int is_ready = vhost_user_intf_ready (vui);
202 if (is_ready != vui->is_ready)
Mohsin Kazmie7cde312018-06-26 17:20:11 +0200203 {
Jerome Tollet2f54c272018-10-02 11:41:11 +0200204 vu_log_debug (vui, "interface %d %s", vui->sw_if_index,
205 is_ready ? "ready" : "down");
Juraj Slobodab192feb2018-10-01 12:42:07 +0200206 if (vui->admin_up)
207 vnet_hw_interface_set_flags (vnet_get_main (), vui->hw_if_index,
208 is_ready ? VNET_HW_INTERFACE_FLAG_LINK_UP
209 : 0);
210 vui->is_ready = is_ready;
Mohsin Kazmie7cde312018-06-26 17:20:11 +0200211 }
Mohsin Kazmie7cde312018-06-26 17:20:11 +0200212}
213
214static void
215vhost_user_set_interrupt_pending (vhost_user_intf_t * vui, u32 ifq)
216{
217 u32 qid;
218 vnet_main_t *vnm = vnet_get_main ();
Damjan Marion94100532020-11-06 23:25:57 +0100219 vhost_user_vring_t *txvq;
Mohsin Kazmie7cde312018-06-26 17:20:11 +0200220
221 qid = ifq & 0xff;
222 if ((qid & 1) == 0)
223 /* Only care about the odd number, or TX, virtqueue */
224 return;
225
Damjan Marion94100532020-11-06 23:25:57 +0100226 // qid >> 1 is to convert virtqueue number to vring queue index
227 qid >>= 1;
228 txvq = &vui->vrings[VHOST_VRING_IDX_TX (qid)];
229 if (vhost_user_intf_ready (vui) &&
230 ((txvq->mode == VNET_HW_IF_RX_MODE_ADAPTIVE) ||
231 (txvq->mode == VNET_HW_IF_RX_MODE_INTERRUPT)))
232 vnet_hw_if_rx_queue_set_int_pending (vnm, txvq->queue_index);
Mohsin Kazmie7cde312018-06-26 17:20:11 +0200233}
234
235static clib_error_t *
236vhost_user_callfd_read_ready (clib_file_t * uf)
237{
238 __attribute__ ((unused)) int n;
239 u8 buff[8];
240
241 n = read (uf->file_descriptor, ((char *) &buff), 8);
242
243 return 0;
244}
245
Steven Luong67f935e2019-02-01 10:23:56 -0800246static_always_inline void
247vhost_user_thread_placement (vhost_user_intf_t * vui, u32 qid)
248{
249 if (qid & 1) // RX is odd, TX is even
250 {
251 if (vui->vrings[qid].qid == -1)
252 vhost_user_rx_thread_placement (vui, qid);
253 }
254 else
255 vhost_user_tx_thread_placement (vui);
256}
257
Mohsin Kazmie7cde312018-06-26 17:20:11 +0200258static clib_error_t *
259vhost_user_kickfd_read_ready (clib_file_t * uf)
260{
261 __attribute__ ((unused)) int n;
262 u8 buff[8];
263 vhost_user_intf_t *vui =
264 pool_elt_at_index (vhost_user_main.vhost_user_interfaces,
265 uf->private_data >> 8);
266 u32 qid = uf->private_data & 0xff;
267
268 n = read (uf->file_descriptor, ((char *) &buff), 8);
Steven Luong2c1084a2020-12-10 20:44:22 -0800269 vu_log_debug (vui, "if %d KICK queue %d", vui->hw_if_index, qid);
Mohsin Kazmie7cde312018-06-26 17:20:11 +0200270 if (!vui->vrings[qid].started ||
Juraj Slobodab192feb2018-10-01 12:42:07 +0200271 (vhost_user_intf_ready (vui) != vui->is_ready))
Mohsin Kazmie7cde312018-06-26 17:20:11 +0200272 {
Steven Luong67f935e2019-02-01 10:23:56 -0800273 if (vui->vrings[qid].started == 0)
274 {
275 vui->vrings[qid].started = 1;
276 vhost_user_thread_placement (vui, qid);
277 vhost_user_update_iface_state (vui);
278 }
Mohsin Kazmie7cde312018-06-26 17:20:11 +0200279 }
280
281 vhost_user_set_interrupt_pending (vui, uf->private_data);
282 return 0;
283}
284
285static_always_inline void
286vhost_user_vring_init (vhost_user_intf_t * vui, u32 qid)
287{
288 vhost_user_vring_t *vring = &vui->vrings[qid];
Steven Luong2c1084a2020-12-10 20:44:22 -0800289
Dave Barachb7b92992018-10-17 10:38:51 -0400290 clib_memset (vring, 0, sizeof (*vring));
Mohsin Kazmie7cde312018-06-26 17:20:11 +0200291 vring->kickfd_idx = ~0;
292 vring->callfd_idx = ~0;
293 vring->errfd = -1;
Steven Luong67f935e2019-02-01 10:23:56 -0800294 vring->qid = -1;
Mohsin Kazmie7cde312018-06-26 17:20:11 +0200295
Steven Luong2c1084a2020-12-10 20:44:22 -0800296 clib_spinlock_init (&vring->vring_lock);
297
Mohsin Kazmie7cde312018-06-26 17:20:11 +0200298 /*
299 * We have a bug with some qemu 2.5, and this may be a fix.
300 * Feel like interpretation holy text, but this is from vhost-user.txt.
301 * "
302 * One queue pair is enabled initially. More queues are enabled
303 * dynamically, by sending message VHOST_USER_SET_VRING_ENABLE.
304 * "
305 * Don't know who's right, but this is what DPDK does.
306 */
307 if (qid == 0 || qid == 1)
308 vring->enabled = 1;
309}
310
311static_always_inline void
312vhost_user_vring_close (vhost_user_intf_t * vui, u32 qid)
313{
314 vhost_user_vring_t *vring = &vui->vrings[qid];
Steven Luong67f935e2019-02-01 10:23:56 -0800315
Mohsin Kazmie7cde312018-06-26 17:20:11 +0200316 if (vring->kickfd_idx != ~0)
317 {
318 clib_file_t *uf = pool_elt_at_index (file_main.file_pool,
319 vring->kickfd_idx);
320 clib_file_del (&file_main, uf);
321 vring->kickfd_idx = ~0;
322 }
323 if (vring->callfd_idx != ~0)
324 {
325 clib_file_t *uf = pool_elt_at_index (file_main.file_pool,
326 vring->callfd_idx);
327 clib_file_del (&file_main, uf);
328 vring->callfd_idx = ~0;
329 }
330 if (vring->errfd != -1)
331 {
332 close (vring->errfd);
333 vring->errfd = -1;
334 }
Steven Luong67f935e2019-02-01 10:23:56 -0800335
Steven Luong2c1084a2020-12-10 20:44:22 -0800336 clib_spinlock_free (&vring->vring_lock);
337
Steven Luong67f935e2019-02-01 10:23:56 -0800338 // save the qid so that we don't need to unassign and assign_rx_thread
339 // when the interface comes back up. They are expensive calls.
340 u16 q = vui->vrings[qid].qid;
Mohsin Kazmie7cde312018-06-26 17:20:11 +0200341 vhost_user_vring_init (vui, qid);
Steven Luong67f935e2019-02-01 10:23:56 -0800342 vui->vrings[qid].qid = q;
Mohsin Kazmie7cde312018-06-26 17:20:11 +0200343}
344
345static_always_inline void
346vhost_user_if_disconnect (vhost_user_intf_t * vui)
347{
348 vnet_main_t *vnm = vnet_get_main ();
349 int q;
350
351 vnet_hw_interface_set_flags (vnm, vui->hw_if_index, 0);
352
353 if (vui->clib_file_index != ~0)
354 {
355 clib_file_del (&file_main, file_main.file_pool + vui->clib_file_index);
356 vui->clib_file_index = ~0;
357 }
358
Juraj Slobodab192feb2018-10-01 12:42:07 +0200359 vui->is_ready = 0;
Mohsin Kazmie7cde312018-06-26 17:20:11 +0200360
Steven Luong2c1084a2020-12-10 20:44:22 -0800361 for (q = 0; q < vui->num_qid; q++)
Mohsin Kazmie7cde312018-06-26 17:20:11 +0200362 vhost_user_vring_close (vui, q);
363
364 unmap_all_mem_regions (vui);
Jerome Tollet2f54c272018-10-02 11:41:11 +0200365 vu_log_debug (vui, "interface ifindex %d disconnected", vui->sw_if_index);
Mohsin Kazmie7cde312018-06-26 17:20:11 +0200366}
367
368static clib_error_t *
369vhost_user_socket_read (clib_file_t * uf)
370{
Steven Luong67f935e2019-02-01 10:23:56 -0800371 int n, i, j;
Mohsin Kazmie7cde312018-06-26 17:20:11 +0200372 int fd, number_of_fds = 0;
373 int fds[VHOST_MEMORY_MAX_NREGIONS];
374 vhost_user_msg_t msg;
375 struct msghdr mh;
376 struct iovec iov[1];
377 vhost_user_main_t *vum = &vhost_user_main;
378 vhost_user_intf_t *vui;
379 struct cmsghdr *cmsg;
380 u8 q;
381 clib_file_t template = { 0 };
382 vnet_main_t *vnm = vnet_get_main ();
Steven Luong67f935e2019-02-01 10:23:56 -0800383 vlib_main_t *vm = vlib_get_main ();
Mohsin Kazmie7cde312018-06-26 17:20:11 +0200384
385 vui = pool_elt_at_index (vum->vhost_user_interfaces, uf->private_data);
386
387 char control[CMSG_SPACE (VHOST_MEMORY_MAX_NREGIONS * sizeof (int))];
388
Dave Barachb7b92992018-10-17 10:38:51 -0400389 clib_memset (&mh, 0, sizeof (mh));
390 clib_memset (control, 0, sizeof (control));
Mohsin Kazmie7cde312018-06-26 17:20:11 +0200391
392 for (i = 0; i < VHOST_MEMORY_MAX_NREGIONS; i++)
393 fds[i] = -1;
394
395 /* set the payload */
396 iov[0].iov_base = (void *) &msg;
397 iov[0].iov_len = VHOST_USER_MSG_HDR_SZ;
398
399 mh.msg_iov = iov;
400 mh.msg_iovlen = 1;
401 mh.msg_control = control;
402 mh.msg_controllen = sizeof (control);
403
404 n = recvmsg (uf->file_descriptor, &mh, 0);
405
Mohsin Kazmie7cde312018-06-26 17:20:11 +0200406 if (n != VHOST_USER_MSG_HDR_SZ)
407 {
408 if (n == -1)
409 {
Jerome Tollet2f54c272018-10-02 11:41:11 +0200410 vu_log_debug (vui, "recvmsg returned error %d %s", errno,
411 strerror (errno));
Mohsin Kazmie7cde312018-06-26 17:20:11 +0200412 }
413 else
414 {
Jerome Tollet2f54c272018-10-02 11:41:11 +0200415 vu_log_debug (vui, "n (%d) != VHOST_USER_MSG_HDR_SZ (%d)",
416 n, VHOST_USER_MSG_HDR_SZ);
Mohsin Kazmie7cde312018-06-26 17:20:11 +0200417 }
418 goto close_socket;
419 }
420
421 if (mh.msg_flags & MSG_CTRUNC)
422 {
Jerome Tollet2f54c272018-10-02 11:41:11 +0200423 vu_log_debug (vui, "MSG_CTRUNC is set");
Mohsin Kazmie7cde312018-06-26 17:20:11 +0200424 goto close_socket;
425 }
426
427 cmsg = CMSG_FIRSTHDR (&mh);
428
429 if (cmsg && (cmsg->cmsg_len > 0) && (cmsg->cmsg_level == SOL_SOCKET) &&
430 (cmsg->cmsg_type == SCM_RIGHTS) &&
431 (cmsg->cmsg_len - CMSG_LEN (0) <=
432 VHOST_MEMORY_MAX_NREGIONS * sizeof (int)))
433 {
434 number_of_fds = (cmsg->cmsg_len - CMSG_LEN (0)) / sizeof (int);
Dave Barach178cf492018-11-13 16:34:13 -0500435 clib_memcpy_fast (fds, CMSG_DATA (cmsg), number_of_fds * sizeof (int));
Mohsin Kazmie7cde312018-06-26 17:20:11 +0200436 }
437
438 /* version 1, no reply bit set */
439 if ((msg.flags & 7) != 1)
440 {
Jerome Tollet2f54c272018-10-02 11:41:11 +0200441 vu_log_debug (vui, "malformed message received. closing socket");
Mohsin Kazmie7cde312018-06-26 17:20:11 +0200442 goto close_socket;
443 }
444
445 {
446 int rv;
447 rv =
448 read (uf->file_descriptor, ((char *) &msg) + VHOST_USER_MSG_HDR_SZ,
449 msg.size);
450 if (rv < 0)
451 {
Jerome Tollet2f54c272018-10-02 11:41:11 +0200452 vu_log_debug (vui, "read failed %s", strerror (errno));
Mohsin Kazmie7cde312018-06-26 17:20:11 +0200453 goto close_socket;
454 }
455 else if (rv != msg.size)
456 {
Jerome Tollet2f54c272018-10-02 11:41:11 +0200457 vu_log_debug (vui, "message too short (read %dB should be %dB)", rv,
458 msg.size);
Mohsin Kazmie7cde312018-06-26 17:20:11 +0200459 goto close_socket;
460 }
461 }
462
463 switch (msg.request)
464 {
465 case VHOST_USER_GET_FEATURES:
466 msg.flags |= 4;
Mohsin Kazmia7a22812020-08-31 17:17:16 +0200467 msg.u64 = VIRTIO_FEATURE (VIRTIO_NET_F_MRG_RXBUF) |
468 VIRTIO_FEATURE (VIRTIO_NET_F_CTRL_VQ) |
469 VIRTIO_FEATURE (VIRTIO_F_ANY_LAYOUT) |
470 VIRTIO_FEATURE (VIRTIO_RING_F_INDIRECT_DESC) |
471 VIRTIO_FEATURE (VHOST_F_LOG_ALL) |
472 VIRTIO_FEATURE (VIRTIO_NET_F_GUEST_ANNOUNCE) |
473 VIRTIO_FEATURE (VIRTIO_NET_F_MQ) |
474 VIRTIO_FEATURE (VHOST_USER_F_PROTOCOL_FEATURES) |
475 VIRTIO_FEATURE (VIRTIO_F_VERSION_1);
Mohsin Kazmie7cde312018-06-26 17:20:11 +0200476 msg.u64 &= vui->feature_mask;
Steven Luong4208a4c2019-05-06 08:51:56 -0700477
Steven Luong27ba5002020-11-17 13:30:44 -0800478 if (vui->enable_event_idx)
479 msg.u64 |= VIRTIO_FEATURE (VIRTIO_RING_F_EVENT_IDX);
Steven Luong4208a4c2019-05-06 08:51:56 -0700480 if (vui->enable_gso)
481 msg.u64 |= FEATURE_VIRTIO_NET_F_HOST_GUEST_TSO_FEATURE_BITS;
Steven Luongbc0d9ff2020-03-23 09:34:59 -0700482 if (vui->enable_packed)
Mohsin Kazmia7a22812020-08-31 17:17:16 +0200483 msg.u64 |= VIRTIO_FEATURE (VIRTIO_F_RING_PACKED);
Steven Luong4208a4c2019-05-06 08:51:56 -0700484
Mohsin Kazmie7cde312018-06-26 17:20:11 +0200485 msg.size = sizeof (msg.u64);
Jerome Tollet2f54c272018-10-02 11:41:11 +0200486 vu_log_debug (vui, "if %d msg VHOST_USER_GET_FEATURES - reply "
487 "0x%016llx", vui->hw_if_index, msg.u64);
Steven Luong67f935e2019-02-01 10:23:56 -0800488 n =
489 send (uf->file_descriptor, &msg, VHOST_USER_MSG_HDR_SZ + msg.size, 0);
490 if (n != (msg.size + VHOST_USER_MSG_HDR_SZ))
491 {
492 vu_log_debug (vui, "could not send message response");
493 goto close_socket;
494 }
Mohsin Kazmie7cde312018-06-26 17:20:11 +0200495 break;
496
497 case VHOST_USER_SET_FEATURES:
Jerome Tollet2f54c272018-10-02 11:41:11 +0200498 vu_log_debug (vui, "if %d msg VHOST_USER_SET_FEATURES features "
499 "0x%016llx", vui->hw_if_index, msg.u64);
Mohsin Kazmie7cde312018-06-26 17:20:11 +0200500
501 vui->features = msg.u64;
502
503 if (vui->features &
Mohsin Kazmia7a22812020-08-31 17:17:16 +0200504 (VIRTIO_FEATURE (VIRTIO_NET_F_MRG_RXBUF) |
505 VIRTIO_FEATURE (VIRTIO_F_VERSION_1)))
Mohsin Kazmie7cde312018-06-26 17:20:11 +0200506 vui->virtio_net_hdr_sz = 12;
507 else
508 vui->virtio_net_hdr_sz = 10;
509
510 vui->is_any_layout =
Mohsin Kazmia7a22812020-08-31 17:17:16 +0200511 (vui->features & VIRTIO_FEATURE (VIRTIO_F_ANY_LAYOUT)) ? 1 : 0;
Mohsin Kazmie7cde312018-06-26 17:20:11 +0200512
513 ASSERT (vui->virtio_net_hdr_sz < VLIB_BUFFER_PRE_DATA_SIZE);
Steven Luong4208a4c2019-05-06 08:51:56 -0700514 vnet_hw_interface_t *hw = vnet_get_hw_interface (vnm, vui->hw_if_index);
515 if (vui->enable_gso &&
Steven Luonga75ad872019-08-06 21:51:34 -0700516 ((vui->features & FEATURE_VIRTIO_NET_F_HOST_GUEST_TSO_FEATURE_BITS)
517 == FEATURE_VIRTIO_NET_F_HOST_GUEST_TSO_FEATURE_BITS))
518 hw->flags |=
519 (VNET_HW_INTERFACE_FLAG_SUPPORTS_GSO |
520 VNET_HW_INTERFACE_FLAG_SUPPORTS_TX_L4_CKSUM_OFFLOAD);
Steven Luong4208a4c2019-05-06 08:51:56 -0700521 else
Steven Luonga75ad872019-08-06 21:51:34 -0700522 hw->flags &= ~(VNET_HW_INTERFACE_FLAG_SUPPORTS_GSO |
523 VNET_HW_INTERFACE_FLAG_SUPPORTS_TX_L4_CKSUM_OFFLOAD);
Mohsin Kazmie7cde312018-06-26 17:20:11 +0200524 vnet_hw_interface_set_flags (vnm, vui->hw_if_index, 0);
Juraj Slobodab192feb2018-10-01 12:42:07 +0200525 vui->is_ready = 0;
Steven Luong545866b2019-07-18 18:38:52 -0700526 vhost_user_update_iface_state (vui);
Mohsin Kazmie7cde312018-06-26 17:20:11 +0200527 break;
528
529 case VHOST_USER_SET_MEM_TABLE:
Jerome Tollet2f54c272018-10-02 11:41:11 +0200530 vu_log_debug (vui, "if %d msg VHOST_USER_SET_MEM_TABLE nregions %d",
531 vui->hw_if_index, msg.memory.nregions);
Mohsin Kazmie7cde312018-06-26 17:20:11 +0200532
533 if ((msg.memory.nregions < 1) ||
534 (msg.memory.nregions > VHOST_MEMORY_MAX_NREGIONS))
535 {
Jerome Tollet2f54c272018-10-02 11:41:11 +0200536 vu_log_debug (vui, "number of mem regions must be between 1 and %i",
537 VHOST_MEMORY_MAX_NREGIONS);
Mohsin Kazmie7cde312018-06-26 17:20:11 +0200538 goto close_socket;
539 }
540
541 if (msg.memory.nregions != number_of_fds)
542 {
Jerome Tollet2f54c272018-10-02 11:41:11 +0200543 vu_log_debug (vui, "each memory region must have FD");
Mohsin Kazmie7cde312018-06-26 17:20:11 +0200544 goto close_socket;
545 }
Steven Luong67f935e2019-02-01 10:23:56 -0800546
547 /* Do the mmap without barrier sync */
548 void *region_mmap_addr[VHOST_MEMORY_MAX_NREGIONS];
549 for (i = 0; i < msg.memory.nregions; i++)
550 {
551 long page_sz = get_huge_page_size (fds[i]);
552
553 /* align size to page */
554 ssize_t map_sz = (msg.memory.regions[i].memory_size +
555 msg.memory.regions[i].mmap_offset +
556 page_sz - 1) & ~(page_sz - 1);
557
558 region_mmap_addr[i] = mmap (0, map_sz, PROT_READ | PROT_WRITE,
559 MAP_SHARED, fds[i], 0);
560 if (region_mmap_addr[i] == MAP_FAILED)
561 {
562 vu_log_err (vui, "failed to map memory. errno is %d", errno);
563 for (j = 0; j < i; j++)
564 munmap (region_mmap_addr[j], map_sz);
565 goto close_socket;
566 }
567 vu_log_debug (vui, "map memory region %d addr 0 len 0x%lx fd %d "
568 "mapped 0x%lx page_sz 0x%x", i, map_sz, fds[i],
569 region_mmap_addr[i], page_sz);
570 }
571
572 vlib_worker_thread_barrier_sync (vm);
Mohsin Kazmie7cde312018-06-26 17:20:11 +0200573 unmap_all_mem_regions (vui);
574 for (i = 0; i < msg.memory.nregions; i++)
575 {
Dave Barach178cf492018-11-13 16:34:13 -0500576 clib_memcpy_fast (&(vui->regions[i]), &msg.memory.regions[i],
577 sizeof (vhost_user_memory_region_t));
Mohsin Kazmie7cde312018-06-26 17:20:11 +0200578
Steven Luong67f935e2019-02-01 10:23:56 -0800579 vui->region_mmap_addr[i] = region_mmap_addr[i];
Mohsin Kazmie7cde312018-06-26 17:20:11 +0200580 vui->region_guest_addr_lo[i] = vui->regions[i].guest_phys_addr;
581 vui->region_guest_addr_hi[i] = vui->regions[i].guest_phys_addr +
582 vui->regions[i].memory_size;
583
Mohsin Kazmie7cde312018-06-26 17:20:11 +0200584 vui->region_mmap_addr[i] += vui->regions[i].mmap_offset;
585 vui->region_mmap_fd[i] = fds[i];
586
587 vui->nregions++;
588 }
Steven Luong4442f7c2019-10-02 07:33:48 -0700589
590 /*
591 * Re-compute desc, used, and avail descriptor table if vring address
592 * is set.
593 */
Steven Luong2c1084a2020-12-10 20:44:22 -0800594 for (q = 0; q < vui->num_qid; q++)
Steven Luong4442f7c2019-10-02 07:33:48 -0700595 {
596 if (vui->vrings[q].desc_user_addr &&
597 vui->vrings[q].used_user_addr && vui->vrings[q].avail_user_addr)
598 {
599 vui->vrings[q].desc =
600 map_user_mem (vui, vui->vrings[q].desc_user_addr);
601 vui->vrings[q].used =
602 map_user_mem (vui, vui->vrings[q].used_user_addr);
603 vui->vrings[q].avail =
604 map_user_mem (vui, vui->vrings[q].avail_user_addr);
605 }
606 }
Steven Luong67f935e2019-02-01 10:23:56 -0800607 vlib_worker_thread_barrier_release (vm);
Mohsin Kazmie7cde312018-06-26 17:20:11 +0200608 break;
609
610 case VHOST_USER_SET_VRING_NUM:
Jerome Tollet2f54c272018-10-02 11:41:11 +0200611 vu_log_debug (vui, "if %d msg VHOST_USER_SET_VRING_NUM idx %d num %d",
612 vui->hw_if_index, msg.state.index, msg.state.num);
Mohsin Kazmie7cde312018-06-26 17:20:11 +0200613
614 if ((msg.state.num > 32768) || /* maximum ring size is 32768 */
615 (msg.state.num == 0) || /* it cannot be zero */
Benoît Ganne32526a42020-12-08 19:08:05 +0100616 ((msg.state.num - 1) & msg.state.num) || /* must be power of 2 */
Steven Luong2c1084a2020-12-10 20:44:22 -0800617 (msg.state.index >= vui->num_qid))
618 {
619 vu_log_debug (vui, "invalid VHOST_USER_SET_VRING_NUM: msg.state.num"
620 " %d, msg.state.index %d, curruent max q %d",
621 msg.state.num, msg.state.index, vui->num_qid);
622 goto close_socket;
623 }
Mohsin Kazmie7cde312018-06-26 17:20:11 +0200624 vui->vrings[msg.state.index].qsz_mask = msg.state.num - 1;
625 break;
626
627 case VHOST_USER_SET_VRING_ADDR:
Jerome Tollet2f54c272018-10-02 11:41:11 +0200628 vu_log_debug (vui, "if %d msg VHOST_USER_SET_VRING_ADDR idx %d",
629 vui->hw_if_index, msg.state.index);
Mohsin Kazmie7cde312018-06-26 17:20:11 +0200630
Steven Luong2c1084a2020-12-10 20:44:22 -0800631 if (msg.state.index >= vui->num_qid)
Mohsin Kazmie7cde312018-06-26 17:20:11 +0200632 {
Jerome Tollet2f54c272018-10-02 11:41:11 +0200633 vu_log_debug (vui, "invalid vring index VHOST_USER_SET_VRING_ADDR:"
Steven Luong2c1084a2020-12-10 20:44:22 -0800634 " %u >= %u", msg.state.index, vui->num_qid);
Mohsin Kazmie7cde312018-06-26 17:20:11 +0200635 goto close_socket;
636 }
637
638 if (msg.size < sizeof (msg.addr))
639 {
Jerome Tollet2f54c272018-10-02 11:41:11 +0200640 vu_log_debug (vui, "vhost message is too short (%d < %d)",
641 msg.size, sizeof (msg.addr));
Mohsin Kazmie7cde312018-06-26 17:20:11 +0200642 goto close_socket;
643 }
644
Steven Luong67f935e2019-02-01 10:23:56 -0800645 vring_desc_t *desc = map_user_mem (vui, msg.addr.desc_user_addr);
646 vring_used_t *used = map_user_mem (vui, msg.addr.used_user_addr);
647 vring_avail_t *avail = map_user_mem (vui, msg.addr.avail_user_addr);
Mohsin Kazmie7cde312018-06-26 17:20:11 +0200648
Steven Luong67f935e2019-02-01 10:23:56 -0800649 if ((desc == NULL) || (used == NULL) || (avail == NULL))
Mohsin Kazmie7cde312018-06-26 17:20:11 +0200650 {
Jerome Tollet2f54c272018-10-02 11:41:11 +0200651 vu_log_debug (vui, "failed to map user memory for hw_if_index %d",
652 vui->hw_if_index);
Mohsin Kazmie7cde312018-06-26 17:20:11 +0200653 goto close_socket;
654 }
655
Steven Luong4442f7c2019-10-02 07:33:48 -0700656 vui->vrings[msg.state.index].desc_user_addr = msg.addr.desc_user_addr;
657 vui->vrings[msg.state.index].used_user_addr = msg.addr.used_user_addr;
658 vui->vrings[msg.state.index].avail_user_addr = msg.addr.avail_user_addr;
659
Steven Luong67f935e2019-02-01 10:23:56 -0800660 vlib_worker_thread_barrier_sync (vm);
661 vui->vrings[msg.state.index].desc = desc;
662 vui->vrings[msg.state.index].used = used;
663 vui->vrings[msg.state.index].avail = avail;
664
Mohsin Kazmie7cde312018-06-26 17:20:11 +0200665 vui->vrings[msg.state.index].log_guest_addr = msg.addr.log_guest_addr;
666 vui->vrings[msg.state.index].log_used =
667 (msg.addr.flags & (1 << VHOST_VRING_F_LOG)) ? 1 : 0;
668
669 /* Spec says: If VHOST_USER_F_PROTOCOL_FEATURES has not been negotiated,
670 the ring is initialized in an enabled state. */
Mohsin Kazmia7a22812020-08-31 17:17:16 +0200671 if (!(vui->features & VIRTIO_FEATURE (VHOST_USER_F_PROTOCOL_FEATURES)))
Steven Luong67f935e2019-02-01 10:23:56 -0800672 vui->vrings[msg.state.index].enabled = 1;
Mohsin Kazmie7cde312018-06-26 17:20:11 +0200673
674 vui->vrings[msg.state.index].last_used_idx =
675 vui->vrings[msg.state.index].last_avail_idx =
676 vui->vrings[msg.state.index].used->idx;
Steven Luong27ba5002020-11-17 13:30:44 -0800677 vui->vrings[msg.state.index].last_kick =
678 vui->vrings[msg.state.index].last_used_idx;
Mohsin Kazmie7cde312018-06-26 17:20:11 +0200679
680 /* tell driver that we don't want interrupts */
Steven Luongbc0d9ff2020-03-23 09:34:59 -0700681 if (vhost_user_is_packed_ring_supported (vui))
682 vui->vrings[msg.state.index].used_event->flags =
683 VRING_EVENT_F_DISABLE;
684 else
685 vui->vrings[msg.state.index].used->flags = VRING_USED_F_NO_NOTIFY;
Steven Luong67f935e2019-02-01 10:23:56 -0800686 vlib_worker_thread_barrier_release (vm);
687 vhost_user_update_iface_state (vui);
Mohsin Kazmie7cde312018-06-26 17:20:11 +0200688 break;
689
690 case VHOST_USER_SET_OWNER:
Jerome Tollet2f54c272018-10-02 11:41:11 +0200691 vu_log_debug (vui, "if %d msg VHOST_USER_SET_OWNER", vui->hw_if_index);
Mohsin Kazmie7cde312018-06-26 17:20:11 +0200692 break;
693
694 case VHOST_USER_RESET_OWNER:
Jerome Tollet2f54c272018-10-02 11:41:11 +0200695 vu_log_debug (vui, "if %d msg VHOST_USER_RESET_OWNER",
696 vui->hw_if_index);
Mohsin Kazmie7cde312018-06-26 17:20:11 +0200697 break;
698
699 case VHOST_USER_SET_VRING_CALL:
Jerome Tollet2f54c272018-10-02 11:41:11 +0200700 vu_log_debug (vui, "if %d msg VHOST_USER_SET_VRING_CALL %d",
701 vui->hw_if_index, msg.u64);
Mohsin Kazmie7cde312018-06-26 17:20:11 +0200702
703 q = (u8) (msg.u64 & 0xFF);
Steven Luong2c1084a2020-12-10 20:44:22 -0800704 if (vui->num_qid > q)
Mohsin Kazmie7cde312018-06-26 17:20:11 +0200705 {
Steven Luong2c1084a2020-12-10 20:44:22 -0800706 /* if there is old fd, delete and close it */
707 if (vui->vrings[q].callfd_idx != ~0)
708 {
709 clib_file_t *uf = pool_elt_at_index (file_main.file_pool,
710 vui->vrings[q].callfd_idx);
711 clib_file_del (&file_main, uf);
712 vui->vrings[q].callfd_idx = ~0;
713 }
714 }
715 else if (vec_len (vui->vrings) > q)
716 {
717 /* grow vrings by pair (RX + TX) */
718 vui->num_qid = (q & 1) ? (q + 1) : (q + 2);
719 }
720 else
721 {
722 u32 i, new_max_q, old_max_q = vec_len (vui->vrings);
723
724 /*
725 * Double the array size if it is less than 64 entries.
726 * Slow down thereafter.
727 */
728 if (vec_len (vui->vrings) < (VHOST_VRING_INIT_MQ_PAIR_SZ << 3))
729 new_max_q = vec_len (vui->vrings) << 1;
730 else
731 new_max_q = vec_len (vui->vrings) +
732 (VHOST_VRING_INIT_MQ_PAIR_SZ << 2);
733 if (new_max_q > (VHOST_VRING_MAX_MQ_PAIR_SZ << 1))
734 new_max_q = (VHOST_VRING_MAX_MQ_PAIR_SZ << 1);
735
736 /* sync with the worker threads, vrings may move due to realloc */
737 vlib_worker_thread_barrier_sync (vm);
738 vec_validate_aligned (vui->vrings, new_max_q - 1,
739 CLIB_CACHE_LINE_BYTES);
740 vlib_worker_thread_barrier_release (vm);
741
742 for (i = old_max_q; i < vec_len (vui->vrings); i++)
743 vhost_user_vring_init (vui, i);
744
745 /* grow vrings by pair (RX + TX) */
746 vui->num_qid = (q & 1) ? (q + 1) : (q + 2);
Mohsin Kazmie7cde312018-06-26 17:20:11 +0200747 }
748
749 if (!(msg.u64 & VHOST_USER_VRING_NOFD_MASK))
750 {
751 if (number_of_fds != 1)
752 {
Jerome Tollet2f54c272018-10-02 11:41:11 +0200753 vu_log_debug (vui, "More than one fd received !");
Mohsin Kazmie7cde312018-06-26 17:20:11 +0200754 goto close_socket;
755 }
756
757 template.read_function = vhost_user_callfd_read_ready;
758 template.file_descriptor = fds[0];
759 template.private_data =
760 ((vui - vhost_user_main.vhost_user_interfaces) << 8) + q;
Paul Vinciguerra5481ad42020-01-28 14:47:17 -0500761 template.description = format (0, "vhost user");
Mohsin Kazmie7cde312018-06-26 17:20:11 +0200762 vui->vrings[q].callfd_idx = clib_file_add (&file_main, &template);
763 }
764 else
765 vui->vrings[q].callfd_idx = ~0;
766 break;
767
768 case VHOST_USER_SET_VRING_KICK:
Jerome Tollet2f54c272018-10-02 11:41:11 +0200769 vu_log_debug (vui, "if %d msg VHOST_USER_SET_VRING_KICK %d",
770 vui->hw_if_index, msg.u64);
Mohsin Kazmie7cde312018-06-26 17:20:11 +0200771
772 q = (u8) (msg.u64 & 0xFF);
Steven Luong2c1084a2020-12-10 20:44:22 -0800773 if (q >= vui->num_qid)
774 {
775 vu_log_debug (vui, "invalid vring index VHOST_USER_SET_VRING_KICK:"
776 " %u >= %u", q, vui->num_qid);
777 goto close_socket;
778 }
Mohsin Kazmie7cde312018-06-26 17:20:11 +0200779
780 if (vui->vrings[q].kickfd_idx != ~0)
781 {
782 clib_file_t *uf = pool_elt_at_index (file_main.file_pool,
783 vui->vrings[q].kickfd_idx);
784 clib_file_del (&file_main, uf);
785 vui->vrings[q].kickfd_idx = ~0;
786 }
787
788 if (!(msg.u64 & VHOST_USER_VRING_NOFD_MASK))
789 {
790 if (number_of_fds != 1)
791 {
Jerome Tollet2f54c272018-10-02 11:41:11 +0200792 vu_log_debug (vui, "More than one fd received !");
Mohsin Kazmie7cde312018-06-26 17:20:11 +0200793 goto close_socket;
794 }
795
796 template.read_function = vhost_user_kickfd_read_ready;
797 template.file_descriptor = fds[0];
798 template.private_data =
799 (((uword) (vui - vhost_user_main.vhost_user_interfaces)) << 8) +
800 q;
801 vui->vrings[q].kickfd_idx = clib_file_add (&file_main, &template);
802 }
803 else
804 {
805 //When no kickfd is set, the queue is initialized as started
806 vui->vrings[q].kickfd_idx = ~0;
807 vui->vrings[q].started = 1;
Steven Luong67f935e2019-02-01 10:23:56 -0800808 vhost_user_thread_placement (vui, q);
Mohsin Kazmie7cde312018-06-26 17:20:11 +0200809 }
Steven Luong67f935e2019-02-01 10:23:56 -0800810 vhost_user_update_iface_state (vui);
Mohsin Kazmie7cde312018-06-26 17:20:11 +0200811 break;
812
813 case VHOST_USER_SET_VRING_ERR:
Jerome Tollet2f54c272018-10-02 11:41:11 +0200814 vu_log_debug (vui, "if %d msg VHOST_USER_SET_VRING_ERR %d",
815 vui->hw_if_index, msg.u64);
Mohsin Kazmie7cde312018-06-26 17:20:11 +0200816
817 q = (u8) (msg.u64 & 0xFF);
Steven Luong2c1084a2020-12-10 20:44:22 -0800818 if (q >= vui->num_qid)
819 {
820 vu_log_debug (vui, "invalid vring index VHOST_USER_SET_VRING_ERR:"
821 " %u >= %u", q, vui->num_qid);
822 goto close_socket;
823 }
Mohsin Kazmie7cde312018-06-26 17:20:11 +0200824
825 if (vui->vrings[q].errfd != -1)
826 close (vui->vrings[q].errfd);
827
828 if (!(msg.u64 & VHOST_USER_VRING_NOFD_MASK))
829 {
830 if (number_of_fds != 1)
831 goto close_socket;
832
833 vui->vrings[q].errfd = fds[0];
834 }
835 else
836 vui->vrings[q].errfd = -1;
Mohsin Kazmie7cde312018-06-26 17:20:11 +0200837 break;
838
839 case VHOST_USER_SET_VRING_BASE:
Steven Luongbc0d9ff2020-03-23 09:34:59 -0700840 vu_log_debug (vui,
841 "if %d msg VHOST_USER_SET_VRING_BASE idx %d num 0x%x",
Jerome Tollet2f54c272018-10-02 11:41:11 +0200842 vui->hw_if_index, msg.state.index, msg.state.num);
Steven Luong2c1084a2020-12-10 20:44:22 -0800843 if (msg.state.index >= vui->num_qid)
844 {
845 vu_log_debug (vui, "invalid vring index VHOST_USER_SET_VRING_ADDR:"
846 " %u >= %u", msg.state.index, vui->num_qid);
847 goto close_socket;
848 }
Steven Luong67f935e2019-02-01 10:23:56 -0800849 vlib_worker_thread_barrier_sync (vm);
Mohsin Kazmie7cde312018-06-26 17:20:11 +0200850 vui->vrings[msg.state.index].last_avail_idx = msg.state.num;
Steven Luongbc0d9ff2020-03-23 09:34:59 -0700851 if (vhost_user_is_packed_ring_supported (vui))
852 {
853 /*
854 * 0 1 2 3
855 * 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
856 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
857 * | last avail idx | | last used idx | |
858 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
859 * ^ ^
860 * | |
861 * avail wrap counter used wrap counter
862 */
863 /* last avail idx at bit 0-14. */
864 vui->vrings[msg.state.index].last_avail_idx =
865 msg.state.num & 0x7fff;
866 /* avail wrap counter at bit 15 */
867 vui->vrings[msg.state.index].avail_wrap_counter =
868 ! !(msg.state.num & (1 << 15));
869
870 /*
871 * Although last_used_idx is passed in the upper 16 bits in qemu
872 * implementation, in practice, last_avail_idx and last_used_idx are
873 * usually the same. As a result, DPDK does not bother to pass us
874 * last_used_idx. The spec is not clear on thex coding. I figured it
875 * out by reading the qemu code. So let's just read last_avail_idx
876 * and set last_used_idx equals to last_avail_idx.
877 */
878 vui->vrings[msg.state.index].last_used_idx =
879 vui->vrings[msg.state.index].last_avail_idx;
Steven Luong27ba5002020-11-17 13:30:44 -0800880 vui->vrings[msg.state.index].last_kick =
881 vui->vrings[msg.state.index].last_used_idx;
Steven Luongbc0d9ff2020-03-23 09:34:59 -0700882 vui->vrings[msg.state.index].used_wrap_counter =
883 vui->vrings[msg.state.index].avail_wrap_counter;
884
885 if (vui->vrings[msg.state.index].avail_wrap_counter == 1)
886 vui->vrings[msg.state.index].avail_wrap_counter =
Mohsin Kazmia7a22812020-08-31 17:17:16 +0200887 VRING_DESC_F_AVAIL;
Steven Luongbc0d9ff2020-03-23 09:34:59 -0700888 }
Steven Luong67f935e2019-02-01 10:23:56 -0800889 vlib_worker_thread_barrier_release (vm);
Mohsin Kazmie7cde312018-06-26 17:20:11 +0200890 break;
891
892 case VHOST_USER_GET_VRING_BASE:
Steven Luong2c1084a2020-12-10 20:44:22 -0800893 if (msg.state.index >= vui->num_qid)
Mohsin Kazmie7cde312018-06-26 17:20:11 +0200894 {
Jerome Tollet2f54c272018-10-02 11:41:11 +0200895 vu_log_debug (vui, "invalid vring index VHOST_USER_GET_VRING_BASE:"
Steven Luong2c1084a2020-12-10 20:44:22 -0800896 " %u >= %u", msg.state.index, vui->num_qid);
Mohsin Kazmie7cde312018-06-26 17:20:11 +0200897 goto close_socket;
898 }
899
Steven Luong67f935e2019-02-01 10:23:56 -0800900 /* protection is needed to prevent rx/tx from changing last_avail_idx */
901 vlib_worker_thread_barrier_sync (vm);
Mohsin Kazmie7cde312018-06-26 17:20:11 +0200902 /*
903 * Copy last_avail_idx from the vring before closing it because
904 * closing the vring also initializes the vring last_avail_idx
905 */
906 msg.state.num = vui->vrings[msg.state.index].last_avail_idx;
Steven Luongbc0d9ff2020-03-23 09:34:59 -0700907 if (vhost_user_is_packed_ring_supported (vui))
908 {
909 msg.state.num =
910 (vui->vrings[msg.state.index].last_avail_idx & 0x7fff) |
911 (! !vui->vrings[msg.state.index].avail_wrap_counter << 15);
912 msg.state.num |=
913 ((vui->vrings[msg.state.index].last_used_idx & 0x7fff) |
914 (! !vui->vrings[msg.state.index].used_wrap_counter << 15)) << 16;
915 }
Mohsin Kazmie7cde312018-06-26 17:20:11 +0200916 msg.flags |= 4;
917 msg.size = sizeof (msg.state);
918
Steven Luong67f935e2019-02-01 10:23:56 -0800919 /*
920 * Spec says: Client must [...] stop ring upon receiving
921 * VHOST_USER_GET_VRING_BASE
922 */
Mohsin Kazmie7cde312018-06-26 17:20:11 +0200923 vhost_user_vring_close (vui, msg.state.index);
Steven Luong67f935e2019-02-01 10:23:56 -0800924 vlib_worker_thread_barrier_release (vm);
Steven Luongbc0d9ff2020-03-23 09:34:59 -0700925 vu_log_debug (vui,
926 "if %d msg VHOST_USER_GET_VRING_BASE idx %d num 0x%x",
Jerome Tollet2f54c272018-10-02 11:41:11 +0200927 vui->hw_if_index, msg.state.index, msg.state.num);
Steven Luong67f935e2019-02-01 10:23:56 -0800928 n =
929 send (uf->file_descriptor, &msg, VHOST_USER_MSG_HDR_SZ + msg.size, 0);
930 if (n != (msg.size + VHOST_USER_MSG_HDR_SZ))
931 {
932 vu_log_debug (vui, "could not send message response");
933 goto close_socket;
934 }
935 vhost_user_update_iface_state (vui);
Mohsin Kazmie7cde312018-06-26 17:20:11 +0200936 break;
937
938 case VHOST_USER_NONE:
Jerome Tollet2f54c272018-10-02 11:41:11 +0200939 vu_log_debug (vui, "if %d msg VHOST_USER_NONE", vui->hw_if_index);
Mohsin Kazmie7cde312018-06-26 17:20:11 +0200940 break;
941
942 case VHOST_USER_SET_LOG_BASE:
Steven Luong67f935e2019-02-01 10:23:56 -0800943 vu_log_debug (vui, "if %d msg VHOST_USER_SET_LOG_BASE",
944 vui->hw_if_index);
Mohsin Kazmie7cde312018-06-26 17:20:11 +0200945
Steven Luong67f935e2019-02-01 10:23:56 -0800946 if (msg.size != sizeof (msg.log))
947 {
948 vu_log_debug (vui, "invalid msg size for VHOST_USER_SET_LOG_BASE:"
949 " %d instead of %d", msg.size, sizeof (msg.log));
950 goto close_socket;
951 }
Mohsin Kazmie7cde312018-06-26 17:20:11 +0200952
Steven Luong67f935e2019-02-01 10:23:56 -0800953 if (!(vui->protocol_features & (1 << VHOST_USER_PROTOCOL_F_LOG_SHMFD)))
954 {
955 vu_log_debug (vui, "VHOST_USER_PROTOCOL_F_LOG_SHMFD not set but "
956 "VHOST_USER_SET_LOG_BASE received");
957 goto close_socket;
958 }
Mohsin Kazmie7cde312018-06-26 17:20:11 +0200959
Steven Luong67f935e2019-02-01 10:23:56 -0800960 fd = fds[0];
961 /* align size to page */
962 long page_sz = get_huge_page_size (fd);
963 ssize_t map_sz =
964 (msg.log.size + msg.log.offset + page_sz - 1) & ~(page_sz - 1);
Mohsin Kazmie7cde312018-06-26 17:20:11 +0200965
Steven Luong67f935e2019-02-01 10:23:56 -0800966 void *log_base_addr = mmap (0, map_sz, PROT_READ | PROT_WRITE,
967 MAP_SHARED, fd, 0);
Mohsin Kazmie7cde312018-06-26 17:20:11 +0200968
Steven Luong67f935e2019-02-01 10:23:56 -0800969 vu_log_debug (vui, "map log region addr 0 len 0x%lx off 0x%lx fd %d "
970 "mapped 0x%lx", map_sz, msg.log.offset, fd,
971 log_base_addr);
Mohsin Kazmie7cde312018-06-26 17:20:11 +0200972
Steven Luong67f935e2019-02-01 10:23:56 -0800973 if (log_base_addr == MAP_FAILED)
974 {
975 vu_log_err (vui, "failed to map memory. errno is %d", errno);
976 goto close_socket;
977 }
Mohsin Kazmie7cde312018-06-26 17:20:11 +0200978
Steven Luong67f935e2019-02-01 10:23:56 -0800979 vlib_worker_thread_barrier_sync (vm);
980 vui->log_base_addr = log_base_addr;
981 vui->log_base_addr += msg.log.offset;
982 vui->log_size = msg.log.size;
983 vlib_worker_thread_barrier_release (vm);
Mohsin Kazmie7cde312018-06-26 17:20:11 +0200984
Steven Luong67f935e2019-02-01 10:23:56 -0800985 msg.flags |= 4;
986 msg.size = sizeof (msg.u64);
987 n =
988 send (uf->file_descriptor, &msg, VHOST_USER_MSG_HDR_SZ + msg.size, 0);
989 if (n != (msg.size + VHOST_USER_MSG_HDR_SZ))
990 {
991 vu_log_debug (vui, "could not send message response");
992 goto close_socket;
993 }
994 break;
Mohsin Kazmie7cde312018-06-26 17:20:11 +0200995
996 case VHOST_USER_SET_LOG_FD:
Jerome Tollet2f54c272018-10-02 11:41:11 +0200997 vu_log_debug (vui, "if %d msg VHOST_USER_SET_LOG_FD", vui->hw_if_index);
Mohsin Kazmie7cde312018-06-26 17:20:11 +0200998 break;
999
1000 case VHOST_USER_GET_PROTOCOL_FEATURES:
1001 msg.flags |= 4;
1002 msg.u64 = (1 << VHOST_USER_PROTOCOL_F_LOG_SHMFD) |
1003 (1 << VHOST_USER_PROTOCOL_F_MQ);
1004 msg.size = sizeof (msg.u64);
Jerome Tollet2f54c272018-10-02 11:41:11 +02001005 vu_log_debug (vui, "if %d msg VHOST_USER_GET_PROTOCOL_FEATURES - "
1006 "reply 0x%016llx", vui->hw_if_index, msg.u64);
Steven Luong67f935e2019-02-01 10:23:56 -08001007 n =
1008 send (uf->file_descriptor, &msg, VHOST_USER_MSG_HDR_SZ + msg.size, 0);
1009 if (n != (msg.size + VHOST_USER_MSG_HDR_SZ))
1010 {
1011 vu_log_debug (vui, "could not send message response");
1012 goto close_socket;
1013 }
Mohsin Kazmie7cde312018-06-26 17:20:11 +02001014 break;
1015
1016 case VHOST_USER_SET_PROTOCOL_FEATURES:
Jerome Tollet2f54c272018-10-02 11:41:11 +02001017 vu_log_debug (vui, "if %d msg VHOST_USER_SET_PROTOCOL_FEATURES "
1018 "features 0x%016llx", vui->hw_if_index, msg.u64);
Mohsin Kazmie7cde312018-06-26 17:20:11 +02001019 vui->protocol_features = msg.u64;
Mohsin Kazmie7cde312018-06-26 17:20:11 +02001020 break;
1021
1022 case VHOST_USER_GET_QUEUE_NUM:
1023 msg.flags |= 4;
Steven Luong2c1084a2020-12-10 20:44:22 -08001024 msg.u64 = VHOST_VRING_MAX_MQ_PAIR_SZ;
Mohsin Kazmie7cde312018-06-26 17:20:11 +02001025 msg.size = sizeof (msg.u64);
Jerome Tollet2f54c272018-10-02 11:41:11 +02001026 vu_log_debug (vui, "if %d msg VHOST_USER_GET_QUEUE_NUM - reply %d",
1027 vui->hw_if_index, msg.u64);
Steven Luong67f935e2019-02-01 10:23:56 -08001028 n =
1029 send (uf->file_descriptor, &msg, VHOST_USER_MSG_HDR_SZ + msg.size, 0);
1030 if (n != (msg.size + VHOST_USER_MSG_HDR_SZ))
1031 {
1032 vu_log_debug (vui, "could not send message response");
1033 goto close_socket;
1034 }
Mohsin Kazmie7cde312018-06-26 17:20:11 +02001035 break;
1036
1037 case VHOST_USER_SET_VRING_ENABLE:
Jerome Tollet2f54c272018-10-02 11:41:11 +02001038 vu_log_debug (vui, "if %d VHOST_USER_SET_VRING_ENABLE: %s queue %d",
1039 vui->hw_if_index, msg.state.num ? "enable" : "disable",
1040 msg.state.index);
Steven Luong2c1084a2020-12-10 20:44:22 -08001041 if (msg.state.index >= vui->num_qid)
Mohsin Kazmie7cde312018-06-26 17:20:11 +02001042 {
Jerome Tollet2f54c272018-10-02 11:41:11 +02001043 vu_log_debug (vui, "invalid vring idx VHOST_USER_SET_VRING_ENABLE:"
Steven Luong2c1084a2020-12-10 20:44:22 -08001044 " %u >= %u", msg.state.index, vui->num_qid);
Mohsin Kazmie7cde312018-06-26 17:20:11 +02001045 goto close_socket;
1046 }
1047
1048 vui->vrings[msg.state.index].enabled = msg.state.num;
Steven Luong67f935e2019-02-01 10:23:56 -08001049 vhost_user_thread_placement (vui, msg.state.index);
1050 vhost_user_update_iface_state (vui);
Mohsin Kazmie7cde312018-06-26 17:20:11 +02001051 break;
1052
1053 default:
Jerome Tollet2f54c272018-10-02 11:41:11 +02001054 vu_log_debug (vui, "unknown vhost-user message %d received. "
1055 "closing socket", msg.request);
Mohsin Kazmie7cde312018-06-26 17:20:11 +02001056 goto close_socket;
1057 }
1058
Mohsin Kazmie7cde312018-06-26 17:20:11 +02001059 return 0;
1060
1061close_socket:
Steven Luong67f935e2019-02-01 10:23:56 -08001062 vlib_worker_thread_barrier_sync (vm);
Mohsin Kazmie7cde312018-06-26 17:20:11 +02001063 vhost_user_if_disconnect (vui);
Steven Luong67f935e2019-02-01 10:23:56 -08001064 vlib_worker_thread_barrier_release (vm);
Mohsin Kazmie7cde312018-06-26 17:20:11 +02001065 vhost_user_update_iface_state (vui);
Mohsin Kazmie7cde312018-06-26 17:20:11 +02001066 return 0;
1067}
1068
1069static clib_error_t *
1070vhost_user_socket_error (clib_file_t * uf)
1071{
1072 vlib_main_t *vm = vlib_get_main ();
1073 vhost_user_main_t *vum = &vhost_user_main;
1074 vhost_user_intf_t *vui =
1075 pool_elt_at_index (vum->vhost_user_interfaces, uf->private_data);
1076
Jerome Tollet2f54c272018-10-02 11:41:11 +02001077 vu_log_debug (vui, "socket error on if %d", vui->sw_if_index);
Mohsin Kazmie7cde312018-06-26 17:20:11 +02001078 vlib_worker_thread_barrier_sync (vm);
1079 vhost_user_if_disconnect (vui);
Mohsin Kazmie7cde312018-06-26 17:20:11 +02001080 vlib_worker_thread_barrier_release (vm);
1081 return 0;
1082}
1083
1084static clib_error_t *
1085vhost_user_socksvr_accept_ready (clib_file_t * uf)
1086{
1087 int client_fd, client_len;
1088 struct sockaddr_un client;
1089 clib_file_t template = { 0 };
1090 vhost_user_main_t *vum = &vhost_user_main;
1091 vhost_user_intf_t *vui;
1092
1093 vui = pool_elt_at_index (vum->vhost_user_interfaces, uf->private_data);
1094
1095 client_len = sizeof (client);
1096 client_fd = accept (uf->file_descriptor,
1097 (struct sockaddr *) &client,
1098 (socklen_t *) & client_len);
1099
1100 if (client_fd < 0)
1101 return clib_error_return_unix (0, "accept");
1102
1103 if (vui->clib_file_index != ~0)
1104 {
Jerome Tollet2f54c272018-10-02 11:41:11 +02001105 vu_log_debug (vui, "Close client socket for vhost interface %d, fd %d",
1106 vui->sw_if_index, UNIX_GET_FD (vui->clib_file_index));
Mohsin Kazmie7cde312018-06-26 17:20:11 +02001107 clib_file_del (&file_main, file_main.file_pool + vui->clib_file_index);
1108 }
1109
Jerome Tollet2f54c272018-10-02 11:41:11 +02001110 vu_log_debug (vui, "New client socket for vhost interface %d, fd %d",
1111 vui->sw_if_index, client_fd);
Mohsin Kazmie7cde312018-06-26 17:20:11 +02001112 template.read_function = vhost_user_socket_read;
1113 template.error_function = vhost_user_socket_error;
1114 template.file_descriptor = client_fd;
1115 template.private_data = vui - vhost_user_main.vhost_user_interfaces;
Paul Vinciguerra5481ad42020-01-28 14:47:17 -05001116 template.description = format (0, "vhost interface %d", vui->sw_if_index);
Mohsin Kazmie7cde312018-06-26 17:20:11 +02001117 vui->clib_file_index = clib_file_add (&file_main, &template);
Steven Luong2c1084a2020-12-10 20:44:22 -08001118 vui->num_qid = 2;
Mohsin Kazmie7cde312018-06-26 17:20:11 +02001119 return 0;
1120}
1121
1122static clib_error_t *
1123vhost_user_init (vlib_main_t * vm)
1124{
Mohsin Kazmie7cde312018-06-26 17:20:11 +02001125 vhost_user_main_t *vum = &vhost_user_main;
1126 vlib_thread_main_t *tm = vlib_get_thread_main ();
1127
Jerome Tollet2f54c272018-10-02 11:41:11 +02001128 vum->log_default = vlib_log_register_class ("vhost-user", 0);
1129
Mohsin Kazmie7cde312018-06-26 17:20:11 +02001130 vum->coalesce_frames = 32;
1131 vum->coalesce_time = 1e-3;
1132
1133 vec_validate (vum->cpus, tm->n_vlib_mains - 1);
1134
1135 vhost_cpu_t *cpu;
1136 vec_foreach (cpu, vum->cpus)
1137 {
1138 /* This is actually not necessary as validate already zeroes it
1139 * Just keeping the loop here for later because I am lazy. */
1140 cpu->rx_buffers_len = 0;
1141 }
1142
1143 vum->random = random_default_seed ();
1144
1145 mhash_init_c_string (&vum->if_index_by_sock_name, sizeof (uword));
1146
1147 return 0;
1148}
1149
Dave Barachf8d50682019-05-14 18:01:44 -04001150/* *INDENT-OFF* */
1151VLIB_INIT_FUNCTION (vhost_user_init) =
1152{
1153 .runs_after = VLIB_INITS("ip4_init"),
1154};
1155/* *INDENT-ON* */
Mohsin Kazmie7cde312018-06-26 17:20:11 +02001156
1157static uword
1158vhost_user_send_interrupt_process (vlib_main_t * vm,
1159 vlib_node_runtime_t * rt, vlib_frame_t * f)
1160{
1161 vhost_user_intf_t *vui;
1162 f64 timeout = 3153600000.0 /* 100 years */ ;
1163 uword event_type, *event_data = 0;
1164 vhost_user_main_t *vum = &vhost_user_main;
Steven Luong67f935e2019-02-01 10:23:56 -08001165 u16 qid;
Mohsin Kazmie7cde312018-06-26 17:20:11 +02001166 f64 now, poll_time_remaining;
1167 f64 next_timeout;
1168 u8 stop_timer = 0;
1169
1170 while (1)
1171 {
1172 poll_time_remaining =
1173 vlib_process_wait_for_event_or_clock (vm, timeout);
1174 event_type = vlib_process_get_events (vm, &event_data);
1175 vec_reset_length (event_data);
1176
1177 /*
1178 * Use the remaining timeout if it is less than coalesce time to avoid
1179 * resetting the existing timer in the middle of expiration
1180 */
1181 timeout = poll_time_remaining;
1182 if (vlib_process_suspend_time_is_zero (timeout) ||
1183 (timeout > vum->coalesce_time))
1184 timeout = vum->coalesce_time;
1185
1186 now = vlib_time_now (vm);
1187 switch (event_type)
1188 {
1189 case VHOST_USER_EVENT_STOP_TIMER:
1190 stop_timer = 1;
1191 break;
1192
1193 case VHOST_USER_EVENT_START_TIMER:
1194 stop_timer = 0;
1195 if (!vlib_process_suspend_time_is_zero (poll_time_remaining))
1196 break;
1197 /* fall through */
1198
1199 case ~0:
1200 /* *INDENT-OFF* */
Damjan Marionb2c31b62020-12-13 21:47:40 +01001201 pool_foreach (vui, vum->vhost_user_interfaces) {
Mohsin Kazmie7cde312018-06-26 17:20:11 +02001202 next_timeout = timeout;
Steven Luong2c1084a2020-12-10 20:44:22 -08001203 for (qid = 0; qid < vui->num_qid / 2; qid += 2)
Mohsin Kazmie7cde312018-06-26 17:20:11 +02001204 {
Steven Luong67f935e2019-02-01 10:23:56 -08001205 vhost_user_vring_t *rxvq = &vui->vrings[qid];
1206 vhost_user_vring_t *txvq = &vui->vrings[qid + 1];
Mohsin Kazmie7cde312018-06-26 17:20:11 +02001207
Steven Luong67f935e2019-02-01 10:23:56 -08001208 if (txvq->qid == -1)
1209 continue;
Mohsin Kazmie7cde312018-06-26 17:20:11 +02001210 if (txvq->n_since_last_int)
1211 {
1212 if (now >= txvq->int_deadline)
Steven Luong27ba5002020-11-17 13:30:44 -08001213 vhost_user_send_call (vm, vui, txvq);
Mohsin Kazmie7cde312018-06-26 17:20:11 +02001214 else
1215 next_timeout = txvq->int_deadline - now;
1216 }
1217
1218 if (rxvq->n_since_last_int)
1219 {
1220 if (now >= rxvq->int_deadline)
Steven Luong27ba5002020-11-17 13:30:44 -08001221 vhost_user_send_call (vm, vui, rxvq);
Mohsin Kazmie7cde312018-06-26 17:20:11 +02001222 else
1223 next_timeout = rxvq->int_deadline - now;
1224 }
1225
1226 if ((next_timeout < timeout) && (next_timeout > 0.0))
1227 timeout = next_timeout;
1228 }
Damjan Marionb2c31b62020-12-13 21:47:40 +01001229 }
Mohsin Kazmie7cde312018-06-26 17:20:11 +02001230 /* *INDENT-ON* */
1231 break;
1232
1233 default:
1234 clib_warning ("BUG: unhandled event type %d", event_type);
1235 break;
1236 }
1237 /* No less than 1 millisecond */
1238 if (timeout < 1e-3)
1239 timeout = 1e-3;
1240 if (stop_timer)
1241 timeout = 3153600000.0;
1242 }
1243 return 0;
1244}
1245
1246/* *INDENT-OFF* */
1247VLIB_REGISTER_NODE (vhost_user_send_interrupt_node) = {
1248 .function = vhost_user_send_interrupt_process,
1249 .type = VLIB_NODE_TYPE_PROCESS,
1250 .name = "vhost-user-send-interrupt-process",
1251};
1252/* *INDENT-ON* */
1253
1254static uword
1255vhost_user_process (vlib_main_t * vm,
1256 vlib_node_runtime_t * rt, vlib_frame_t * f)
1257{
1258 vhost_user_main_t *vum = &vhost_user_main;
1259 vhost_user_intf_t *vui;
1260 struct sockaddr_un sun;
1261 int sockfd;
1262 clib_file_t template = { 0 };
1263 f64 timeout = 3153600000.0 /* 100 years */ ;
1264 uword *event_data = 0;
1265
1266 sockfd = -1;
1267 sun.sun_family = AF_UNIX;
1268 template.read_function = vhost_user_socket_read;
1269 template.error_function = vhost_user_socket_error;
Paul Vinciguerra5481ad42020-01-28 14:47:17 -05001270 template.description = format (0, "vhost user process");
Mohsin Kazmie7cde312018-06-26 17:20:11 +02001271
1272 while (1)
1273 {
1274 vlib_process_wait_for_event_or_clock (vm, timeout);
1275 vlib_process_get_events (vm, &event_data);
1276 vec_reset_length (event_data);
1277
1278 timeout = 3.0;
1279
1280 /* *INDENT-OFF* */
Damjan Marionb2c31b62020-12-13 21:47:40 +01001281 pool_foreach (vui, vum->vhost_user_interfaces) {
Mohsin Kazmie7cde312018-06-26 17:20:11 +02001282
1283 if (vui->unix_server_index == ~0) { //Nothing to do for server sockets
1284 if (vui->clib_file_index == ~0)
1285 {
1286 if ((sockfd < 0) &&
1287 ((sockfd = socket (AF_UNIX, SOCK_STREAM, 0)) < 0))
1288 {
1289 /*
1290 * 1st time error or new error for this interface,
1291 * spit out the message and record the error
1292 */
1293 if (!vui->sock_errno || (vui->sock_errno != errno))
1294 {
1295 clib_unix_warning
1296 ("Error: Could not open unix socket for %s",
1297 vui->sock_filename);
1298 vui->sock_errno = errno;
1299 }
1300 continue;
1301 }
1302
1303 /* try to connect */
1304 strncpy (sun.sun_path, (char *) vui->sock_filename,
1305 sizeof (sun.sun_path) - 1);
Damjan Marion62c25ab2020-12-12 23:32:12 +01001306 sun.sun_path[sizeof (sun.sun_path) - 1] = 0;
Mohsin Kazmie7cde312018-06-26 17:20:11 +02001307
1308 /* Avoid hanging VPP if the other end does not accept */
1309 if (fcntl(sockfd, F_SETFL, O_NONBLOCK) < 0)
1310 clib_unix_warning ("fcntl");
1311
1312 if (connect (sockfd, (struct sockaddr *) &sun,
1313 sizeof (struct sockaddr_un)) == 0)
1314 {
1315 /* Set the socket to blocking as it was before */
1316 if (fcntl(sockfd, F_SETFL, 0) < 0)
1317 clib_unix_warning ("fcntl2");
1318
1319 vui->sock_errno = 0;
1320 template.file_descriptor = sockfd;
1321 template.private_data =
1322 vui - vhost_user_main.vhost_user_interfaces;
1323 vui->clib_file_index = clib_file_add (&file_main, &template);
Steven Luong2c1084a2020-12-10 20:44:22 -08001324 vui->num_qid = 2;
Mohsin Kazmie7cde312018-06-26 17:20:11 +02001325
1326 /* This sockfd is considered consumed */
1327 sockfd = -1;
1328 }
1329 else
1330 {
1331 vui->sock_errno = errno;
1332 }
1333 }
1334 else
1335 {
1336 /* check if socket is alive */
1337 int error = 0;
1338 socklen_t len = sizeof (error);
1339 int fd = UNIX_GET_FD(vui->clib_file_index);
1340 int retval =
1341 getsockopt (fd, SOL_SOCKET, SO_ERROR, &error, &len);
1342
1343 if (retval)
1344 {
Jerome Tollet2f54c272018-10-02 11:41:11 +02001345 vu_log_debug (vui, "getsockopt returned %d", retval);
Mohsin Kazmie7cde312018-06-26 17:20:11 +02001346 vhost_user_if_disconnect (vui);
1347 }
1348 }
1349 }
Damjan Marionb2c31b62020-12-13 21:47:40 +01001350 }
Mohsin Kazmie7cde312018-06-26 17:20:11 +02001351 /* *INDENT-ON* */
1352 }
1353 return 0;
1354}
1355
1356/* *INDENT-OFF* */
1357VLIB_REGISTER_NODE (vhost_user_process_node,static) = {
1358 .function = vhost_user_process,
1359 .type = VLIB_NODE_TYPE_PROCESS,
1360 .name = "vhost-user-process",
1361};
1362/* *INDENT-ON* */
1363
1364/**
1365 * Disables and reset interface structure.
1366 * It can then be either init again, or removed from used interfaces.
1367 */
1368static void
1369vhost_user_term_if (vhost_user_intf_t * vui)
1370{
1371 int q;
1372 vhost_user_main_t *vum = &vhost_user_main;
1373
1374 // disconnect interface sockets
1375 vhost_user_if_disconnect (vui);
Steven Luong4208a4c2019-05-06 08:51:56 -07001376 vhost_user_update_gso_interface_count (vui, 0 /* delete */ );
Mohsin Kazmie7cde312018-06-26 17:20:11 +02001377 vhost_user_update_iface_state (vui);
1378
Steven Luong2c1084a2020-12-10 20:44:22 -08001379 for (q = 0; q < vui->num_qid; q++)
Mohsin Kazmie7cde312018-06-26 17:20:11 +02001380 {
Steven Luong2c1084a2020-12-10 20:44:22 -08001381 clib_spinlock_free (&vui->vrings[q].vring_lock);
Mohsin Kazmie7cde312018-06-26 17:20:11 +02001382 }
1383
1384 if (vui->unix_server_index != ~0)
1385 {
1386 //Close server socket
1387 clib_file_t *uf = pool_elt_at_index (file_main.file_pool,
1388 vui->unix_server_index);
1389 clib_file_del (&file_main, uf);
1390 vui->unix_server_index = ~0;
1391 unlink (vui->sock_filename);
1392 }
1393
1394 mhash_unset (&vum->if_index_by_sock_name, vui->sock_filename,
1395 &vui->if_index);
1396}
1397
1398int
1399vhost_user_delete_if (vnet_main_t * vnm, vlib_main_t * vm, u32 sw_if_index)
1400{
1401 vhost_user_main_t *vum = &vhost_user_main;
1402 vhost_user_intf_t *vui;
1403 int rv = 0;
1404 vnet_hw_interface_t *hwif;
Steven Luong67f935e2019-02-01 10:23:56 -08001405 u16 qid;
Mohsin Kazmie7cde312018-06-26 17:20:11 +02001406
Dave Barach3940de32019-07-23 16:28:36 -04001407 if (!
1408 (hwif =
1409 vnet_get_sup_hw_interface_api_visible_or_null (vnm, sw_if_index))
1410 || hwif->dev_class_index != vhost_user_device_class.index)
Mohsin Kazmie7cde312018-06-26 17:20:11 +02001411 return VNET_API_ERROR_INVALID_SW_IF_INDEX;
1412
Mohsin Kazmie7cde312018-06-26 17:20:11 +02001413 vui = pool_elt_at_index (vum->vhost_user_interfaces, hwif->dev_instance);
1414
Jerome Tollet2f54c272018-10-02 11:41:11 +02001415 vu_log_debug (vui, "Deleting vhost-user interface %s (instance %d)",
1416 hwif->name, hwif->dev_instance);
1417
Steven Luong2c1084a2020-12-10 20:44:22 -08001418 for (qid = 1; qid < vui->num_qid / 2; qid += 2)
Steven Luong67f935e2019-02-01 10:23:56 -08001419 {
1420 vhost_user_vring_t *txvq = &vui->vrings[qid];
Mohsin Kazmie7cde312018-06-26 17:20:11 +02001421
Steven Luong67f935e2019-02-01 10:23:56 -08001422 if (txvq->qid == -1)
1423 continue;
1424 if ((vum->ifq_count > 0) &&
Damjan Marioneabd4242020-10-07 20:59:07 +02001425 ((txvq->mode == VNET_HW_IF_RX_MODE_INTERRUPT) ||
1426 (txvq->mode == VNET_HW_IF_RX_MODE_ADAPTIVE)))
Steven Luong67f935e2019-02-01 10:23:56 -08001427 {
1428 vum->ifq_count--;
1429 // Stop the timer if there is no more interrupt interface/queue
1430 if ((vum->ifq_count == 0) &&
1431 (vum->coalesce_time > 0.0) && (vum->coalesce_frames > 0))
1432 {
1433 vlib_process_signal_event (vm,
1434 vhost_user_send_interrupt_node.index,
1435 VHOST_USER_EVENT_STOP_TIMER, 0);
1436 break;
1437 }
1438 }
1439 }
Mohsin Kazmie7cde312018-06-26 17:20:11 +02001440
1441 // Disable and reset interface
1442 vhost_user_term_if (vui);
1443
1444 // Reset renumbered iface
1445 if (hwif->dev_instance <
1446 vec_len (vum->show_dev_instance_by_real_dev_instance))
1447 vum->show_dev_instance_by_real_dev_instance[hwif->dev_instance] = ~0;
1448
1449 // Delete ethernet interface
1450 ethernet_delete_interface (vnm, vui->hw_if_index);
1451
Steven Luong2c1084a2020-12-10 20:44:22 -08001452 // free vrings
1453 vec_free (vui->vrings);
1454
Mohsin Kazmie7cde312018-06-26 17:20:11 +02001455 // Back to pool
1456 pool_put (vum->vhost_user_interfaces, vui);
1457
1458 return rv;
1459}
1460
1461static clib_error_t *
1462vhost_user_exit (vlib_main_t * vm)
1463{
1464 vnet_main_t *vnm = vnet_get_main ();
1465 vhost_user_main_t *vum = &vhost_user_main;
1466 vhost_user_intf_t *vui;
1467
1468 vlib_worker_thread_barrier_sync (vlib_get_main ());
1469 /* *INDENT-OFF* */
Damjan Marionb2c31b62020-12-13 21:47:40 +01001470 pool_foreach (vui, vum->vhost_user_interfaces) {
Mohsin Kazmie7cde312018-06-26 17:20:11 +02001471 vhost_user_delete_if (vnm, vm, vui->sw_if_index);
Damjan Marionb2c31b62020-12-13 21:47:40 +01001472 }
Mohsin Kazmie7cde312018-06-26 17:20:11 +02001473 /* *INDENT-ON* */
1474 vlib_worker_thread_barrier_release (vlib_get_main ());
1475 return 0;
1476}
1477
1478VLIB_MAIN_LOOP_EXIT_FUNCTION (vhost_user_exit);
1479
1480/**
1481 * Open server unix socket on specified sock_filename.
1482 */
1483static int
1484vhost_user_init_server_sock (const char *sock_filename, int *sock_fd)
1485{
1486 int rv = 0;
1487 struct sockaddr_un un = { };
1488 int fd;
1489 /* create listening socket */
1490 if ((fd = socket (AF_UNIX, SOCK_STREAM, 0)) < 0)
1491 return VNET_API_ERROR_SYSCALL_ERROR_1;
1492
1493 un.sun_family = AF_UNIX;
1494 strncpy ((char *) un.sun_path, (char *) sock_filename,
1495 sizeof (un.sun_path) - 1);
1496
1497 /* remove if exists */
1498 unlink ((char *) sock_filename);
1499
1500 if (bind (fd, (struct sockaddr *) &un, sizeof (un)) == -1)
1501 {
1502 rv = VNET_API_ERROR_SYSCALL_ERROR_2;
1503 goto error;
1504 }
1505
1506 if (listen (fd, 1) == -1)
1507 {
1508 rv = VNET_API_ERROR_SYSCALL_ERROR_3;
1509 goto error;
1510 }
1511
1512 *sock_fd = fd;
1513 return 0;
1514
1515error:
1516 close (fd);
1517 return rv;
1518}
1519
1520/**
1521 * Create ethernet interface for vhost user interface.
1522 */
1523static void
Steven Luongd6361c72021-01-26 23:44:19 -08001524vhost_user_create_ethernet (vnet_main_t *vnm, vlib_main_t *vm,
1525 vhost_user_intf_t *vui,
1526 vhost_user_create_if_args_t *args)
Mohsin Kazmie7cde312018-06-26 17:20:11 +02001527{
1528 vhost_user_main_t *vum = &vhost_user_main;
1529 u8 hwaddr[6];
1530 clib_error_t *error;
1531
1532 /* create hw and sw interface */
Steven Luongd6361c72021-01-26 23:44:19 -08001533 if (args->use_custom_mac)
Mohsin Kazmie7cde312018-06-26 17:20:11 +02001534 {
Steven Luongd6361c72021-01-26 23:44:19 -08001535 clib_memcpy (hwaddr, args->hwaddr, 6);
Mohsin Kazmie7cde312018-06-26 17:20:11 +02001536 }
1537 else
1538 {
1539 random_u32 (&vum->random);
1540 clib_memcpy (hwaddr + 2, &vum->random, sizeof (vum->random));
1541 hwaddr[0] = 2;
1542 hwaddr[1] = 0xfe;
1543 }
1544
1545 error = ethernet_register_interface
1546 (vnm,
1547 vhost_user_device_class.index,
1548 vui - vum->vhost_user_interfaces /* device instance */ ,
1549 hwaddr /* ethernet address */ ,
1550 &vui->hw_if_index, 0 /* flag change */ );
1551
1552 if (error)
1553 clib_error_report (error);
Mohsin Kazmie7cde312018-06-26 17:20:11 +02001554}
1555
1556/*
1557 * Initialize vui with specified attributes
1558 */
1559static void
Steven Luong27ba5002020-11-17 13:30:44 -08001560vhost_user_vui_init (vnet_main_t * vnm, vhost_user_intf_t * vui,
1561 int server_sock_fd, vhost_user_create_if_args_t * args,
1562 u32 * sw_if_index)
Mohsin Kazmie7cde312018-06-26 17:20:11 +02001563{
1564 vnet_sw_interface_t *sw;
1565 int q;
1566 vhost_user_main_t *vum = &vhost_user_main;
1567 vnet_hw_interface_t *hw;
1568
1569 hw = vnet_get_hw_interface (vnm, vui->hw_if_index);
1570 sw = vnet_get_hw_sw_interface (vnm, vui->hw_if_index);
1571 if (server_sock_fd != -1)
1572 {
1573 clib_file_t template = { 0 };
1574 template.read_function = vhost_user_socksvr_accept_ready;
1575 template.file_descriptor = server_sock_fd;
1576 template.private_data = vui - vum->vhost_user_interfaces; //hw index
Paul Vinciguerra5481ad42020-01-28 14:47:17 -05001577 template.description = format (0, "vhost user %d", sw);
Mohsin Kazmie7cde312018-06-26 17:20:11 +02001578 vui->unix_server_index = clib_file_add (&file_main, &template);
1579 }
1580 else
1581 {
1582 vui->unix_server_index = ~0;
1583 }
1584
1585 vui->sw_if_index = sw->sw_if_index;
Steven Luong27ba5002020-11-17 13:30:44 -08001586 strncpy (vui->sock_filename, args->sock_filename,
Mohsin Kazmie7cde312018-06-26 17:20:11 +02001587 ARRAY_LEN (vui->sock_filename) - 1);
1588 vui->sock_errno = 0;
Juraj Slobodab192feb2018-10-01 12:42:07 +02001589 vui->is_ready = 0;
Steven Luong27ba5002020-11-17 13:30:44 -08001590 vui->feature_mask = args->feature_mask;
Mohsin Kazmie7cde312018-06-26 17:20:11 +02001591 vui->clib_file_index = ~0;
1592 vui->log_base_addr = 0;
1593 vui->if_index = vui - vum->vhost_user_interfaces;
Steven Luong27ba5002020-11-17 13:30:44 -08001594 vui->enable_gso = args->enable_gso;
1595 vui->enable_event_idx = args->enable_event_idx;
1596 vui->enable_packed = args->enable_packed;
Steven Luong4208a4c2019-05-06 08:51:56 -07001597 /*
1598 * enable_gso takes precedence over configurable feature mask if there
1599 * is a clash.
1600 * if feature mask disables gso, but enable_gso is configured,
1601 * then gso is enable
1602 * if feature mask enables gso, but enable_gso is not configured,
1603 * then gso is enable
1604 *
1605 * if gso is enable via feature mask, it must enable both host and guest
1606 * gso feature mask, we don't support one sided GSO or partial GSO.
1607 */
1608 if ((vui->enable_gso == 0) &&
Steven Luong27ba5002020-11-17 13:30:44 -08001609 ((args->feature_mask & FEATURE_VIRTIO_NET_F_HOST_GUEST_TSO_FEATURE_BITS)
1610 == (FEATURE_VIRTIO_NET_F_HOST_GUEST_TSO_FEATURE_BITS)))
Steven Luong4208a4c2019-05-06 08:51:56 -07001611 vui->enable_gso = 1;
1612 vhost_user_update_gso_interface_count (vui, 1 /* add */ );
Mohsin Kazmie7cde312018-06-26 17:20:11 +02001613 mhash_set_mem (&vum->if_index_by_sock_name, vui->sock_filename,
1614 &vui->if_index, 0);
1615
Steven Luong2c1084a2020-12-10 20:44:22 -08001616 vec_validate_aligned (vui->vrings, (VHOST_VRING_INIT_MQ_PAIR_SZ << 1) - 1,
1617 CLIB_CACHE_LINE_BYTES);
1618 vui->num_qid = 2;
1619 for (q = 0; q < vec_len (vui->vrings); q++)
Mohsin Kazmie7cde312018-06-26 17:20:11 +02001620 vhost_user_vring_init (vui, q);
1621
1622 hw->flags |= VNET_HW_INTERFACE_FLAG_SUPPORTS_INT_MODE;
1623 vnet_hw_interface_set_flags (vnm, vui->hw_if_index, 0);
1624
1625 if (sw_if_index)
1626 *sw_if_index = vui->sw_if_index;
1627
Mohsin Kazmie7cde312018-06-26 17:20:11 +02001628 vec_validate (vui->per_cpu_tx_qid,
1629 vlib_get_thread_main ()->n_vlib_mains - 1);
1630 vhost_user_tx_thread_placement (vui);
1631}
1632
1633int
1634vhost_user_create_if (vnet_main_t * vnm, vlib_main_t * vm,
Steven Luong27ba5002020-11-17 13:30:44 -08001635 vhost_user_create_if_args_t * args)
Mohsin Kazmie7cde312018-06-26 17:20:11 +02001636{
1637 vhost_user_intf_t *vui = NULL;
1638 u32 sw_if_idx = ~0;
1639 int rv = 0;
1640 int server_sock_fd = -1;
1641 vhost_user_main_t *vum = &vhost_user_main;
1642 uword *if_index;
1643
Steven Luong27ba5002020-11-17 13:30:44 -08001644 if (args->sock_filename == NULL || !(strlen (args->sock_filename) > 0))
Mohsin Kazmie7cde312018-06-26 17:20:11 +02001645 {
1646 return VNET_API_ERROR_INVALID_ARGUMENT;
1647 }
1648
Steven Luong27ba5002020-11-17 13:30:44 -08001649 if_index = mhash_get (&vum->if_index_by_sock_name,
1650 (void *) args->sock_filename);
Mohsin Kazmie7cde312018-06-26 17:20:11 +02001651 if (if_index)
1652 {
Steven Luong27ba5002020-11-17 13:30:44 -08001653 vui = &vum->vhost_user_interfaces[*if_index];
1654 args->sw_if_index = vui->sw_if_index;
Mohsin Kazmie7cde312018-06-26 17:20:11 +02001655 return VNET_API_ERROR_IF_ALREADY_EXISTS;
1656 }
1657
Steven Luong27ba5002020-11-17 13:30:44 -08001658 if (args->is_server)
Mohsin Kazmie7cde312018-06-26 17:20:11 +02001659 {
1660 if ((rv =
Steven Luong27ba5002020-11-17 13:30:44 -08001661 vhost_user_init_server_sock (args->sock_filename,
1662 &server_sock_fd)) != 0)
Mohsin Kazmie7cde312018-06-26 17:20:11 +02001663 {
1664 return rv;
1665 }
1666 }
1667
Steven Luong67f935e2019-02-01 10:23:56 -08001668 /* Protect the uninitialized vui from being dispatched by rx/tx */
1669 vlib_worker_thread_barrier_sync (vm);
Mohsin Kazmie7cde312018-06-26 17:20:11 +02001670 pool_get (vhost_user_main.vhost_user_interfaces, vui);
Steven Luongd6361c72021-01-26 23:44:19 -08001671 vhost_user_create_ethernet (vnm, vm, vui, args);
Steven Luong67f935e2019-02-01 10:23:56 -08001672 vlib_worker_thread_barrier_release (vm);
1673
Steven Luong27ba5002020-11-17 13:30:44 -08001674 vhost_user_vui_init (vnm, vui, server_sock_fd, args, &sw_if_idx);
Juraj Sloboda83c46a22018-09-28 12:04:26 +02001675 vnet_sw_interface_set_mtu (vnm, vui->sw_if_index, 9000);
Steven Luong67f935e2019-02-01 10:23:56 -08001676 vhost_user_rx_thread_placement (vui, 1);
Mohsin Kazmie7cde312018-06-26 17:20:11 +02001677
Steven Luong27ba5002020-11-17 13:30:44 -08001678 if (args->renumber)
1679 vnet_interface_name_renumber (sw_if_idx, args->custom_dev_instance);
Mohsin Kazmie7cde312018-06-26 17:20:11 +02001680
Steven Luong27ba5002020-11-17 13:30:44 -08001681 args->sw_if_index = sw_if_idx;
Mohsin Kazmie7cde312018-06-26 17:20:11 +02001682
1683 // Process node must connect
1684 vlib_process_signal_event (vm, vhost_user_process_node.index, 0, 0);
1685
1686 return rv;
1687}
1688
1689int
1690vhost_user_modify_if (vnet_main_t * vnm, vlib_main_t * vm,
Steven Luong27ba5002020-11-17 13:30:44 -08001691 vhost_user_create_if_args_t * args)
Mohsin Kazmie7cde312018-06-26 17:20:11 +02001692{
1693 vhost_user_main_t *vum = &vhost_user_main;
1694 vhost_user_intf_t *vui = NULL;
1695 u32 sw_if_idx = ~0;
1696 int server_sock_fd = -1;
1697 int rv = 0;
1698 vnet_hw_interface_t *hwif;
1699 uword *if_index;
1700
Steven Luong27ba5002020-11-17 13:30:44 -08001701 if (!(hwif = vnet_get_sup_hw_interface_api_visible_or_null (vnm,
1702 args->sw_if_index))
Dave Barach3940de32019-07-23 16:28:36 -04001703 || hwif->dev_class_index != vhost_user_device_class.index)
Mohsin Kazmie7cde312018-06-26 17:20:11 +02001704 return VNET_API_ERROR_INVALID_SW_IF_INDEX;
1705
Steven Luong27ba5002020-11-17 13:30:44 -08001706 if (args->sock_filename == NULL || !(strlen (args->sock_filename) > 0))
Mohsin Kazmie7cde312018-06-26 17:20:11 +02001707 return VNET_API_ERROR_INVALID_ARGUMENT;
1708
1709 vui = vec_elt_at_index (vum->vhost_user_interfaces, hwif->dev_instance);
1710
1711 /*
1712 * Disallow changing the interface to have the same path name
1713 * as other interface
1714 */
Steven Luong27ba5002020-11-17 13:30:44 -08001715 if_index = mhash_get (&vum->if_index_by_sock_name,
1716 (void *) args->sock_filename);
Mohsin Kazmie7cde312018-06-26 17:20:11 +02001717 if (if_index && (*if_index != vui->if_index))
1718 return VNET_API_ERROR_IF_ALREADY_EXISTS;
1719
1720 // First try to open server socket
Steven Luong27ba5002020-11-17 13:30:44 -08001721 if (args->is_server)
1722 if ((rv = vhost_user_init_server_sock (args->sock_filename,
Mohsin Kazmie7cde312018-06-26 17:20:11 +02001723 &server_sock_fd)) != 0)
1724 return rv;
1725
1726 vhost_user_term_if (vui);
Steven Luong27ba5002020-11-17 13:30:44 -08001727 vhost_user_vui_init (vnm, vui, server_sock_fd, args, &sw_if_idx);
Mohsin Kazmie7cde312018-06-26 17:20:11 +02001728
Steven Luong27ba5002020-11-17 13:30:44 -08001729 if (args->renumber)
1730 vnet_interface_name_renumber (sw_if_idx, args->custom_dev_instance);
Mohsin Kazmie7cde312018-06-26 17:20:11 +02001731
1732 // Process node must connect
1733 vlib_process_signal_event (vm, vhost_user_process_node.index, 0, 0);
1734
1735 return rv;
1736}
1737
1738clib_error_t *
1739vhost_user_connect_command_fn (vlib_main_t * vm,
1740 unformat_input_t * input,
1741 vlib_cli_command_t * cmd)
1742{
Steven Luong27ba5002020-11-17 13:30:44 -08001743 vnet_main_t *vnm = vnet_get_main ();
Mohsin Kazmie7cde312018-06-26 17:20:11 +02001744 unformat_input_t _line_input, *line_input = &_line_input;
Mohsin Kazmie7cde312018-06-26 17:20:11 +02001745 clib_error_t *error = NULL;
Steven Luong27ba5002020-11-17 13:30:44 -08001746 vhost_user_create_if_args_t args = { 0 };
1747 int rv;
Mohsin Kazmie7cde312018-06-26 17:20:11 +02001748
1749 /* Get a line of input. */
1750 if (!unformat_user (input, unformat_line_input, line_input))
1751 return 0;
1752
Steven Luong27ba5002020-11-17 13:30:44 -08001753 args.feature_mask = (u64) ~ (0ULL);
1754 args.custom_dev_instance = ~0;
Steven Luong4208a4c2019-05-06 08:51:56 -07001755 /* GSO feature is disable by default */
Steven Luong27ba5002020-11-17 13:30:44 -08001756 args.feature_mask &= ~FEATURE_VIRTIO_NET_F_HOST_GUEST_TSO_FEATURE_BITS;
Steven Luongbc0d9ff2020-03-23 09:34:59 -07001757 /* packed-ring feature is disable by default */
Steven Luong27ba5002020-11-17 13:30:44 -08001758 args.feature_mask &= ~VIRTIO_FEATURE (VIRTIO_F_RING_PACKED);
1759 /* event_idx feature is disable by default */
1760 args.feature_mask &= ~VIRTIO_FEATURE (VIRTIO_RING_F_EVENT_IDX);
1761
Mohsin Kazmie7cde312018-06-26 17:20:11 +02001762 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
1763 {
Steven Luong27ba5002020-11-17 13:30:44 -08001764 if (unformat (line_input, "socket %s", &args.sock_filename))
Mohsin Kazmie7cde312018-06-26 17:20:11 +02001765 ;
1766 else if (unformat (line_input, "server"))
Steven Luong27ba5002020-11-17 13:30:44 -08001767 args.is_server = 1;
Steven Luong4208a4c2019-05-06 08:51:56 -07001768 else if (unformat (line_input, "gso"))
Steven Luong27ba5002020-11-17 13:30:44 -08001769 args.enable_gso = 1;
Steven Luongbc0d9ff2020-03-23 09:34:59 -07001770 else if (unformat (line_input, "packed"))
Steven Luong27ba5002020-11-17 13:30:44 -08001771 args.enable_packed = 1;
1772 else if (unformat (line_input, "event-idx"))
1773 args.enable_event_idx = 1;
1774 else if (unformat (line_input, "feature-mask 0x%llx",
1775 &args.feature_mask))
Mohsin Kazmie7cde312018-06-26 17:20:11 +02001776 ;
Steven Luong27ba5002020-11-17 13:30:44 -08001777 else if (unformat (line_input, "hwaddr %U", unformat_ethernet_address,
1778 args.hwaddr))
Steven Luongd6361c72021-01-26 23:44:19 -08001779 args.use_custom_mac = 1;
Steven Luong27ba5002020-11-17 13:30:44 -08001780 else if (unformat (line_input, "renumber %d",
1781 &args.custom_dev_instance))
1782 args.renumber = 1;
Mohsin Kazmie7cde312018-06-26 17:20:11 +02001783 else
1784 {
1785 error = clib_error_return (0, "unknown input `%U'",
1786 format_unformat_error, line_input);
1787 goto done;
1788 }
1789 }
1790
Steven Luong27ba5002020-11-17 13:30:44 -08001791 if ((rv = vhost_user_create_if (vnm, vm, &args)))
Mohsin Kazmie7cde312018-06-26 17:20:11 +02001792 {
1793 error = clib_error_return (0, "vhost_user_create_if returned %d", rv);
1794 goto done;
1795 }
1796
Steven Luong27ba5002020-11-17 13:30:44 -08001797 vlib_cli_output (vm, "%U\n", format_vnet_sw_if_index_name, vnm,
1798 args.sw_if_index);
Mohsin Kazmie7cde312018-06-26 17:20:11 +02001799
1800done:
Steven Luong27ba5002020-11-17 13:30:44 -08001801 vec_free (args.sock_filename);
Mohsin Kazmie7cde312018-06-26 17:20:11 +02001802 unformat_free (line_input);
1803
1804 return error;
1805}
1806
1807clib_error_t *
1808vhost_user_delete_command_fn (vlib_main_t * vm,
1809 unformat_input_t * input,
1810 vlib_cli_command_t * cmd)
1811{
1812 unformat_input_t _line_input, *line_input = &_line_input;
1813 u32 sw_if_index = ~0;
1814 vnet_main_t *vnm = vnet_get_main ();
1815 clib_error_t *error = NULL;
1816
1817 /* Get a line of input. */
1818 if (!unformat_user (input, unformat_line_input, line_input))
1819 return 0;
1820
1821 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
1822 {
1823 if (unformat (line_input, "sw_if_index %d", &sw_if_index))
1824 ;
1825 else if (unformat
1826 (line_input, "%U", unformat_vnet_sw_interface, vnm,
1827 &sw_if_index))
1828 {
1829 vnet_hw_interface_t *hwif =
Dave Barach3940de32019-07-23 16:28:36 -04001830 vnet_get_sup_hw_interface_api_visible_or_null (vnm, sw_if_index);
Mohsin Kazmie7cde312018-06-26 17:20:11 +02001831 if (hwif == NULL ||
1832 vhost_user_device_class.index != hwif->dev_class_index)
1833 {
1834 error = clib_error_return (0, "Not a vhost interface");
1835 goto done;
1836 }
1837 }
1838 else
1839 {
1840 error = clib_error_return (0, "unknown input `%U'",
1841 format_unformat_error, line_input);
1842 goto done;
1843 }
1844 }
1845
1846 vhost_user_delete_if (vnm, vm, sw_if_index);
1847
1848done:
1849 unformat_free (line_input);
1850
1851 return error;
1852}
1853
1854int
1855vhost_user_dump_ifs (vnet_main_t * vnm, vlib_main_t * vm,
1856 vhost_user_intf_details_t ** out_vuids)
1857{
1858 int rv = 0;
1859 vhost_user_main_t *vum = &vhost_user_main;
1860 vhost_user_intf_t *vui;
1861 vhost_user_intf_details_t *r_vuids = NULL;
1862 vhost_user_intf_details_t *vuid = NULL;
1863 u32 *hw_if_indices = 0;
1864 vnet_hw_interface_t *hi;
Mohsin Kazmie7cde312018-06-26 17:20:11 +02001865 int i;
1866
1867 if (!out_vuids)
1868 return -1;
1869
Damjan Marionb2c31b62020-12-13 21:47:40 +01001870 pool_foreach (vui, vum->vhost_user_interfaces)
1871 vec_add1 (hw_if_indices, vui->hw_if_index);
Mohsin Kazmie7cde312018-06-26 17:20:11 +02001872
1873 for (i = 0; i < vec_len (hw_if_indices); i++)
1874 {
1875 hi = vnet_get_hw_interface (vnm, hw_if_indices[i]);
1876 vui = pool_elt_at_index (vum->vhost_user_interfaces, hi->dev_instance);
1877
1878 vec_add2 (r_vuids, vuid, 1);
1879 vuid->sw_if_index = vui->sw_if_index;
1880 vuid->virtio_net_hdr_sz = vui->virtio_net_hdr_sz;
1881 vuid->features = vui->features;
1882 vuid->num_regions = vui->nregions;
1883 vuid->is_server = vui->unix_server_index != ~0;
1884 vuid->sock_errno = vui->sock_errno;
Benoît Ganne3a76dc32020-04-24 10:33:40 +02001885 snprintf ((char *) vuid->sock_filename, sizeof (vuid->sock_filename),
1886 "%s", vui->sock_filename);
1887 memcpy_s (vuid->if_name, sizeof (vuid->if_name), hi->name,
1888 clib_min (vec_len (hi->name), sizeof (vuid->if_name) - 1));
1889 vuid->if_name[sizeof (vuid->if_name) - 1] = 0;
Mohsin Kazmie7cde312018-06-26 17:20:11 +02001890 }
1891
Mohsin Kazmie7cde312018-06-26 17:20:11 +02001892 vec_free (hw_if_indices);
1893
1894 *out_vuids = r_vuids;
1895
1896 return rv;
1897}
1898
Steven Luongbc0d9ff2020-03-23 09:34:59 -07001899static u8 *
1900format_vhost_user_desc (u8 * s, va_list * args)
1901{
1902 char *fmt = va_arg (*args, char *);
1903 vhost_user_intf_t *vui = va_arg (*args, vhost_user_intf_t *);
1904 vring_desc_t *desc_table = va_arg (*args, vring_desc_t *);
1905 int idx = va_arg (*args, int);
1906 u32 *mem_hint = va_arg (*args, u32 *);
1907
1908 s = format (s, fmt, idx, desc_table[idx].addr, desc_table[idx].len,
1909 desc_table[idx].flags, desc_table[idx].next,
1910 pointer_to_uword (map_guest_mem (vui, desc_table[idx].addr,
1911 mem_hint)));
1912 return s;
1913}
1914
Steven Luongbc0d9ff2020-03-23 09:34:59 -07001915static void
Steven Luong27ba5002020-11-17 13:30:44 -08001916vhost_user_show_fds (vlib_main_t * vm, vhost_user_vring_t * vq)
Steven Luongbc0d9ff2020-03-23 09:34:59 -07001917{
Steven Luong27ba5002020-11-17 13:30:44 -08001918 int kickfd = UNIX_GET_FD (vq->kickfd_idx);
1919 int callfd = UNIX_GET_FD (vq->callfd_idx);
Steven Luongbc0d9ff2020-03-23 09:34:59 -07001920
1921 vlib_cli_output (vm, " kickfd %d callfd %d errfd %d\n", kickfd, callfd,
Steven Luong27ba5002020-11-17 13:30:44 -08001922 vq->errfd);
Steven Luongbc0d9ff2020-03-23 09:34:59 -07001923}
1924
1925static void
1926vhost_user_show_desc (vlib_main_t * vm, vhost_user_intf_t * vui, int q,
1927 int show_descr, int show_verbose)
1928{
1929 int j;
1930 u32 mem_hint = 0;
1931 u32 idx;
1932 u32 n_entries;
1933 vring_desc_t *desc_table;
Steven Luong27ba5002020-11-17 13:30:44 -08001934 vhost_user_vring_t *vq = &vui->vrings[q];
Steven Luongbc0d9ff2020-03-23 09:34:59 -07001935
Steven Luong27ba5002020-11-17 13:30:44 -08001936 if (vq->avail && vq->used)
1937 vlib_cli_output (vm, " avail.flags %x avail event idx %u avail.idx %d "
1938 "used event idx %u used.idx %d\n", vq->avail->flags,
1939 vhost_user_avail_event_idx (vq), vq->avail->idx,
1940 vhost_user_used_event_idx (vq), vq->used->idx);
Steven Luongbc0d9ff2020-03-23 09:34:59 -07001941
Steven Luong27ba5002020-11-17 13:30:44 -08001942 vhost_user_show_fds (vm, vq);
Steven Luongbc0d9ff2020-03-23 09:34:59 -07001943
1944 if (show_descr)
1945 {
1946 vlib_cli_output (vm, "\n descriptor table:\n");
1947 vlib_cli_output (vm,
1948 " slot addr len flags next "
1949 "user_addr\n");
1950 vlib_cli_output (vm,
1951 " ===== ================== ===== ====== ===== "
1952 "==================\n");
Steven Luong27ba5002020-11-17 13:30:44 -08001953 for (j = 0; j < vq->qsz_mask + 1; j++)
Steven Luongbc0d9ff2020-03-23 09:34:59 -07001954 {
Steven Luong27ba5002020-11-17 13:30:44 -08001955 desc_table = vq->desc;
Steven Luongbc0d9ff2020-03-23 09:34:59 -07001956 vlib_cli_output (vm, "%U", format_vhost_user_desc,
1957 " %-5d 0x%016lx %-5d 0x%04x %-5d 0x%016lx\n", vui,
1958 desc_table, j, &mem_hint);
Mohsin Kazmia7a22812020-08-31 17:17:16 +02001959 if (show_verbose && (desc_table[j].flags & VRING_DESC_F_INDIRECT))
Steven Luongbc0d9ff2020-03-23 09:34:59 -07001960 {
1961 n_entries = desc_table[j].len / sizeof (vring_desc_t);
1962 desc_table = map_guest_mem (vui, desc_table[j].addr, &mem_hint);
1963 if (desc_table)
1964 {
1965 for (idx = 0; idx < clib_min (20, n_entries); idx++)
1966 {
1967 vlib_cli_output
1968 (vm, "%U", format_vhost_user_desc,
1969 "> %-4u 0x%016lx %-5u 0x%04x %-5u 0x%016lx\n", vui,
1970 desc_table, idx, &mem_hint);
1971 }
1972 if (n_entries >= 20)
1973 vlib_cli_output (vm, "Skip displaying entries 20...%u\n",
1974 n_entries);
1975 }
1976 }
1977 }
1978 }
1979}
1980
1981static u8 *
1982format_vhost_user_packed_desc (u8 * s, va_list * args)
1983{
1984 char *fmt = va_arg (*args, char *);
1985 vhost_user_intf_t *vui = va_arg (*args, vhost_user_intf_t *);
1986 vring_packed_desc_t *desc_table = va_arg (*args, vring_packed_desc_t *);
1987 int idx = va_arg (*args, int);
1988 u32 *mem_hint = va_arg (*args, u32 *);
1989
1990 s = format (s, fmt, idx, desc_table[idx].addr, desc_table[idx].len,
1991 desc_table[idx].flags, desc_table[idx].id,
1992 pointer_to_uword (map_guest_mem (vui, desc_table[idx].addr,
1993 mem_hint)));
1994 return s;
1995}
1996
1997static u8 *
Steven Luong27ba5002020-11-17 13:30:44 -08001998format_vhost_user_event_idx_flags (u8 * s, va_list * args)
Steven Luongbc0d9ff2020-03-23 09:34:59 -07001999{
Steven Luong27ba5002020-11-17 13:30:44 -08002000 u32 flags = va_arg (*args, u32);
2001 typedef struct
2002 {
2003 u8 value;
2004 char *str;
2005 } event_idx_flags;
2006 static event_idx_flags event_idx_array[] = {
2007#define _(s,v) { .str = #s, .value = v, },
2008 foreach_virtio_event_idx_flags
2009#undef _
2010 };
2011 u32 num_entries = sizeof (event_idx_array) / sizeof (event_idx_flags);
Steven Luongbc0d9ff2020-03-23 09:34:59 -07002012
Steven Luong27ba5002020-11-17 13:30:44 -08002013 if (flags < num_entries)
2014 s = format (s, "%s", event_idx_array[flags].str);
2015 else
2016 s = format (s, "%u", flags);
Steven Luongbc0d9ff2020-03-23 09:34:59 -07002017 return s;
2018}
2019
2020static void
2021vhost_user_show_desc_packed (vlib_main_t * vm, vhost_user_intf_t * vui, int q,
2022 int show_descr, int show_verbose)
2023{
2024 int j;
2025 u32 mem_hint = 0;
2026 u32 idx;
2027 u32 n_entries;
2028 vring_packed_desc_t *desc_table;
Steven Luong27ba5002020-11-17 13:30:44 -08002029 vhost_user_vring_t *vq = &vui->vrings[q];
2030 u16 off_wrap, event_idx;
Steven Luongbc0d9ff2020-03-23 09:34:59 -07002031
Steven Luong27ba5002020-11-17 13:30:44 -08002032 off_wrap = vq->avail_event->off_wrap;
2033 event_idx = off_wrap & 0x7fff;
2034 vlib_cli_output (vm, " avail_event.flags %U avail_event.off_wrap %u "
2035 "avail event idx %u\n", format_vhost_user_event_idx_flags,
2036 (u32) vq->avail_event->flags, off_wrap, event_idx);
Steven Luongbc0d9ff2020-03-23 09:34:59 -07002037
Steven Luong27ba5002020-11-17 13:30:44 -08002038 off_wrap = vq->used_event->off_wrap;
2039 event_idx = off_wrap & 0x7fff;
2040 vlib_cli_output (vm, " used_event.flags %U used_event.off_wrap %u "
2041 "used event idx %u\n", format_vhost_user_event_idx_flags,
2042 (u32) vq->used_event->flags, off_wrap, event_idx);
2043
2044 vlib_cli_output (vm, " avail wrap counter %u, used wrap counter %u\n",
2045 vq->avail_wrap_counter, vq->used_wrap_counter);
2046
2047 vhost_user_show_fds (vm, vq);
Steven Luongbc0d9ff2020-03-23 09:34:59 -07002048
2049 if (show_descr)
2050 {
2051 vlib_cli_output (vm, "\n descriptor table:\n");
2052 vlib_cli_output (vm,
2053 " slot addr len flags id "
2054 "user_addr\n");
2055 vlib_cli_output (vm,
2056 " ===== ================== ===== ====== ===== "
2057 "==================\n");
Steven Luong27ba5002020-11-17 13:30:44 -08002058 for (j = 0; j < vq->qsz_mask + 1; j++)
Steven Luongbc0d9ff2020-03-23 09:34:59 -07002059 {
Steven Luong27ba5002020-11-17 13:30:44 -08002060 desc_table = vq->packed_desc;
Steven Luongbc0d9ff2020-03-23 09:34:59 -07002061 vlib_cli_output (vm, "%U", format_vhost_user_packed_desc,
2062 " %-5u 0x%016lx %-5u 0x%04x %-5u 0x%016lx\n", vui,
2063 desc_table, j, &mem_hint);
Mohsin Kazmia7a22812020-08-31 17:17:16 +02002064 if (show_verbose && (desc_table[j].flags & VRING_DESC_F_INDIRECT))
Steven Luongbc0d9ff2020-03-23 09:34:59 -07002065 {
2066 n_entries = desc_table[j].len >> 4;
2067 desc_table = map_guest_mem (vui, desc_table[j].addr, &mem_hint);
2068 if (desc_table)
2069 {
2070 for (idx = 0; idx < clib_min (20, n_entries); idx++)
2071 {
2072 vlib_cli_output
2073 (vm, "%U", format_vhost_user_packed_desc,
2074 "> %-4u 0x%016lx %-5u 0x%04x %-5u 0x%016lx\n", vui,
2075 desc_table, idx, &mem_hint);
2076 }
2077 if (n_entries >= 20)
2078 vlib_cli_output (vm, "Skip displaying entries 20...%u\n",
2079 n_entries);
2080 }
2081 }
2082 }
2083 }
2084}
2085
Mohsin Kazmie7cde312018-06-26 17:20:11 +02002086clib_error_t *
2087show_vhost_user_command_fn (vlib_main_t * vm,
2088 unformat_input_t * input,
2089 vlib_cli_command_t * cmd)
2090{
2091 clib_error_t *error = 0;
2092 vnet_main_t *vnm = vnet_get_main ();
2093 vhost_user_main_t *vum = &vhost_user_main;
2094 vhost_user_intf_t *vui;
2095 u32 hw_if_index, *hw_if_indices = 0;
2096 vnet_hw_interface_t *hi;
Steven Luong67f935e2019-02-01 10:23:56 -08002097 u16 qid;
Mohsin Kazmie7cde312018-06-26 17:20:11 +02002098 u32 ci;
2099 int i, j, q;
2100 int show_descr = 0;
Steven Luongbc0d9ff2020-03-23 09:34:59 -07002101 int show_verbose = 0;
Mohsin Kazmie7cde312018-06-26 17:20:11 +02002102 struct feat_struct
2103 {
2104 u8 bit;
2105 char *str;
2106 };
2107 struct feat_struct *feat_entry;
2108
2109 static struct feat_struct feat_array[] = {
2110#define _(s,b) { .str = #s, .bit = b, },
Mohsin Kazmia7a22812020-08-31 17:17:16 +02002111 foreach_virtio_net_features
Mohsin Kazmie7cde312018-06-26 17:20:11 +02002112#undef _
2113 {.str = NULL}
2114 };
2115
2116#define foreach_protocol_feature \
2117 _(VHOST_USER_PROTOCOL_F_MQ) \
2118 _(VHOST_USER_PROTOCOL_F_LOG_SHMFD)
2119
2120 static struct feat_struct proto_feat_array[] = {
2121#define _(s) { .str = #s, .bit = s},
2122 foreach_protocol_feature
2123#undef _
2124 {.str = NULL}
2125 };
2126
2127 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
2128 {
2129 if (unformat
2130 (input, "%U", unformat_vnet_hw_interface, vnm, &hw_if_index))
2131 {
2132 hi = vnet_get_hw_interface (vnm, hw_if_index);
2133 if (vhost_user_device_class.index != hi->dev_class_index)
2134 {
2135 error = clib_error_return (0, "unknown input `%U'",
2136 format_unformat_error, input);
2137 goto done;
2138 }
2139 vec_add1 (hw_if_indices, hw_if_index);
2140 }
2141 else if (unformat (input, "descriptors") || unformat (input, "desc"))
2142 show_descr = 1;
Steven Luongbc0d9ff2020-03-23 09:34:59 -07002143 else if (unformat (input, "verbose"))
2144 show_verbose = 1;
Mohsin Kazmie7cde312018-06-26 17:20:11 +02002145 else
2146 {
2147 error = clib_error_return (0, "unknown input `%U'",
2148 format_unformat_error, input);
2149 goto done;
2150 }
2151 }
2152 if (vec_len (hw_if_indices) == 0)
2153 {
Damjan Marionb2c31b62020-12-13 21:47:40 +01002154 pool_foreach (vui, vum->vhost_user_interfaces)
2155 vec_add1 (hw_if_indices, vui->hw_if_index);
Mohsin Kazmie7cde312018-06-26 17:20:11 +02002156 }
2157 vlib_cli_output (vm, "Virtio vhost-user interfaces");
2158 vlib_cli_output (vm, "Global:\n coalesce frames %d time %e",
2159 vum->coalesce_frames, vum->coalesce_time);
Steven Luong4208a4c2019-05-06 08:51:56 -07002160 vlib_cli_output (vm, " Number of rx virtqueues in interrupt mode: %d",
Mohsin Kazmie7cde312018-06-26 17:20:11 +02002161 vum->ifq_count);
Steven Luong4208a4c2019-05-06 08:51:56 -07002162 vlib_cli_output (vm, " Number of GSO interfaces: %d", vum->gso_count);
Mohsin Kazmie7cde312018-06-26 17:20:11 +02002163
2164 for (i = 0; i < vec_len (hw_if_indices); i++)
2165 {
2166 hi = vnet_get_hw_interface (vnm, hw_if_indices[i]);
2167 vui = pool_elt_at_index (vum->vhost_user_interfaces, hi->dev_instance);
Steven877ad142018-09-20 11:50:35 -07002168 vlib_cli_output (vm, "Interface: %U (ifindex %d)",
2169 format_vnet_hw_if_index_name, vnm, hw_if_indices[i],
2170 hw_if_indices[i]);
Steven Luong2c1084a2020-12-10 20:44:22 -08002171 vlib_cli_output (vm, " Number of qids %u", vui->num_qid);
Steven Luong4208a4c2019-05-06 08:51:56 -07002172 if (vui->enable_gso)
2173 vlib_cli_output (vm, " GSO enable");
Steven Luongbc0d9ff2020-03-23 09:34:59 -07002174 if (vui->enable_packed)
2175 vlib_cli_output (vm, " Packed ring enable");
Steven Luong27ba5002020-11-17 13:30:44 -08002176 if (vui->enable_event_idx)
2177 vlib_cli_output (vm, " Event index enable");
Mohsin Kazmie7cde312018-06-26 17:20:11 +02002178
2179 vlib_cli_output (vm, "virtio_net_hdr_sz %d\n"
2180 " features mask (0x%llx): \n"
2181 " features (0x%llx): \n",
2182 vui->virtio_net_hdr_sz, vui->feature_mask,
2183 vui->features);
2184
2185 feat_entry = (struct feat_struct *) &feat_array;
2186 while (feat_entry->str)
2187 {
2188 if (vui->features & (1ULL << feat_entry->bit))
2189 vlib_cli_output (vm, " %s (%d)", feat_entry->str,
2190 feat_entry->bit);
2191 feat_entry++;
2192 }
2193
2194 vlib_cli_output (vm, " protocol features (0x%llx)",
2195 vui->protocol_features);
2196 feat_entry = (struct feat_struct *) &proto_feat_array;
2197 while (feat_entry->str)
2198 {
2199 if (vui->protocol_features & (1ULL << feat_entry->bit))
2200 vlib_cli_output (vm, " %s (%d)", feat_entry->str,
2201 feat_entry->bit);
2202 feat_entry++;
2203 }
2204
2205 vlib_cli_output (vm, "\n");
2206
2207 vlib_cli_output (vm, " socket filename %s type %s errno \"%s\"\n\n",
2208 vui->sock_filename,
2209 (vui->unix_server_index != ~0) ? "server" : "client",
2210 strerror (vui->sock_errno));
2211
2212 vlib_cli_output (vm, " rx placement: ");
2213
Steven Luong2c1084a2020-12-10 20:44:22 -08002214 for (qid = 1; qid < vui->num_qid / 2; qid += 2)
Steven Luong67f935e2019-02-01 10:23:56 -08002215 {
2216 vnet_main_t *vnm = vnet_get_main ();
2217 uword thread_index;
Steven Luong67f935e2019-02-01 10:23:56 -08002218 vhost_user_vring_t *txvq = &vui->vrings[qid];
Mohsin Kazmie7cde312018-06-26 17:20:11 +02002219
Steven Luong67f935e2019-02-01 10:23:56 -08002220 if (txvq->qid == -1)
2221 continue;
2222 thread_index =
Damjan Marion94100532020-11-06 23:25:57 +01002223 vnet_hw_if_get_rx_queue_thread_index (vnm, txvq->queue_index);
2224 vlib_cli_output (vm, " thread %d on vring %d, %U\n", thread_index,
2225 qid, format_vnet_hw_if_rx_mode, txvq->mode);
Steven Luong67f935e2019-02-01 10:23:56 -08002226 }
Mohsin Kazmie7cde312018-06-26 17:20:11 +02002227
2228 vlib_cli_output (vm, " tx placement: %s\n",
2229 vui->use_tx_spinlock ? "spin-lock" : "lock-free");
2230
2231 vec_foreach_index (ci, vui->per_cpu_tx_qid)
2232 {
2233 vlib_cli_output (vm, " thread %d on vring %d\n", ci,
2234 VHOST_VRING_IDX_RX (vui->per_cpu_tx_qid[ci]));
2235 }
2236
2237 vlib_cli_output (vm, "\n");
2238
2239 vlib_cli_output (vm, " Memory regions (total %d)\n", vui->nregions);
2240
2241 if (vui->nregions)
2242 {
2243 vlib_cli_output (vm,
2244 " region fd guest_phys_addr memory_size userspace_addr mmap_offset mmap_addr\n");
2245 vlib_cli_output (vm,
2246 " ====== ===== ================== ================== ================== ================== ==================\n");
2247 }
2248 for (j = 0; j < vui->nregions; j++)
2249 {
2250 vlib_cli_output (vm,
2251 " %d %-5d 0x%016lx 0x%016lx 0x%016lx 0x%016lx 0x%016lx\n",
2252 j, vui->region_mmap_fd[j],
2253 vui->regions[j].guest_phys_addr,
2254 vui->regions[j].memory_size,
2255 vui->regions[j].userspace_addr,
2256 vui->regions[j].mmap_offset,
2257 pointer_to_uword (vui->region_mmap_addr[j]));
2258 }
Steven Luong2c1084a2020-12-10 20:44:22 -08002259 for (q = 0; q < vui->num_qid; q++)
Mohsin Kazmie7cde312018-06-26 17:20:11 +02002260 {
2261 if (!vui->vrings[q].started)
2262 continue;
2263
2264 vlib_cli_output (vm, "\n Virtqueue %d (%s%s)\n", q,
2265 (q & 1) ? "RX" : "TX",
2266 vui->vrings[q].enabled ? "" : " disabled");
2267
2268 vlib_cli_output (vm,
Steven Luong27ba5002020-11-17 13:30:44 -08002269 " qsz %d last_avail_idx %d last_used_idx %d"
2270 " last_kick %u\n",
Mohsin Kazmie7cde312018-06-26 17:20:11 +02002271 vui->vrings[q].qsz_mask + 1,
2272 vui->vrings[q].last_avail_idx,
Steven Luong27ba5002020-11-17 13:30:44 -08002273 vui->vrings[q].last_used_idx,
2274 vui->vrings[q].last_kick);
Mohsin Kazmie7cde312018-06-26 17:20:11 +02002275
Steven Luongbc0d9ff2020-03-23 09:34:59 -07002276 if (vhost_user_is_packed_ring_supported (vui))
2277 vhost_user_show_desc_packed (vm, vui, q, show_descr,
2278 show_verbose);
2279 else
2280 vhost_user_show_desc (vm, vui, q, show_descr, show_verbose);
Mohsin Kazmie7cde312018-06-26 17:20:11 +02002281 }
2282 vlib_cli_output (vm, "\n");
2283 }
2284done:
2285 vec_free (hw_if_indices);
2286 return error;
2287}
2288
2289/*
2290 * CLI functions
2291 */
2292
2293/*?
2294 * Create a vHost User interface. Once created, a new virtual interface
2295 * will exist with the name '<em>VirtualEthernet0/0/x</em>', where '<em>x</em>'
2296 * is the next free index.
2297 *
2298 * There are several parameters associated with a vHost interface:
2299 *
2300 * - <b>socket <socket-filename></b> - Name of the linux socket used by hypervisor
2301 * and VPP to manage the vHost interface. If in '<em>server</em>' mode, VPP will
2302 * create the socket if it does not already exist. If in '<em>client</em>' mode,
2303 * hypervisor will create the socket if it does not already exist. The VPP code
2304 * is indifferent to the file location. However, if SELinux is enabled, then the
2305 * socket needs to be created in '<em>/var/run/vpp/</em>'.
2306 *
2307 * - <b>server</b> - Optional flag to indicate that VPP should be the server for
2308 * the linux socket. If not provided, VPP will be the client. In '<em>server</em>'
2309 * mode, the VM can be reset without tearing down the vHost Interface. In
2310 * '<em>client</em>' mode, VPP can be reset without bringing down the VM and
2311 * tearing down the vHost Interface.
2312 *
2313 * - <b>feature-mask <hex></b> - Optional virtio/vhost feature set negotiated at
2314 * startup. <b>This is intended for degugging only.</b> It is recommended that this
2315 * parameter not be used except by experienced users. By default, all supported
2316 * features will be advertised. Otherwise, provide the set of features desired.
2317 * - 0x000008000 (15) - VIRTIO_NET_F_MRG_RXBUF
2318 * - 0x000020000 (17) - VIRTIO_NET_F_CTRL_VQ
2319 * - 0x000200000 (21) - VIRTIO_NET_F_GUEST_ANNOUNCE
2320 * - 0x000400000 (22) - VIRTIO_NET_F_MQ
2321 * - 0x004000000 (26) - VHOST_F_LOG_ALL
2322 * - 0x008000000 (27) - VIRTIO_F_ANY_LAYOUT
2323 * - 0x010000000 (28) - VIRTIO_F_INDIRECT_DESC
2324 * - 0x040000000 (30) - VHOST_USER_F_PROTOCOL_FEATURES
2325 * - 0x100000000 (32) - VIRTIO_F_VERSION_1
2326 *
2327 * - <b>hwaddr <mac-addr></b> - Optional ethernet address, can be in either
2328 * X:X:X:X:X:X unix or X.X.X cisco format.
2329 *
2330 * - <b>renumber <dev_instance></b> - Optional parameter which allows the instance
2331 * in the name to be specified. If instance already exists, name will be used
2332 * anyway and multiple instances will have the same name. Use with caution.
2333 *
2334 * @cliexpar
2335 * Example of how to create a vhost interface with VPP as the client and all features enabled:
2336 * @cliexstart{create vhost-user socket /var/run/vpp/vhost1.sock}
2337 * VirtualEthernet0/0/0
2338 * @cliexend
2339 * Example of how to create a vhost interface with VPP as the server and with just
2340 * multiple queues enabled:
2341 * @cliexstart{create vhost-user socket /var/run/vpp/vhost2.sock server feature-mask 0x40400000}
2342 * VirtualEthernet0/0/1
2343 * @cliexend
2344 * Once the vHost interface is created, enable the interface using:
2345 * @cliexcmd{set interface state VirtualEthernet0/0/0 up}
2346?*/
2347/* *INDENT-OFF* */
2348VLIB_CLI_COMMAND (vhost_user_connect_command, static) = {
2349 .path = "create vhost-user",
2350 .short_help = "create vhost-user socket <socket-filename> [server] "
Steven Luongbc0d9ff2020-03-23 09:34:59 -07002351 "[feature-mask <hex>] [hwaddr <mac-addr>] [renumber <dev_instance>] [gso] "
Steven Luong27ba5002020-11-17 13:30:44 -08002352 "[packed] [event-idx]",
Mohsin Kazmie7cde312018-06-26 17:20:11 +02002353 .function = vhost_user_connect_command_fn,
Steven Luong67f935e2019-02-01 10:23:56 -08002354 .is_mp_safe = 1,
Mohsin Kazmie7cde312018-06-26 17:20:11 +02002355};
2356/* *INDENT-ON* */
2357
2358/*?
2359 * Delete a vHost User interface using the interface name or the
2360 * software interface index. Use the '<em>show interface</em>'
2361 * command to determine the software interface index. On deletion,
2362 * the linux socket will not be deleted.
2363 *
2364 * @cliexpar
2365 * Example of how to delete a vhost interface by name:
2366 * @cliexcmd{delete vhost-user VirtualEthernet0/0/1}
2367 * Example of how to delete a vhost interface by software interface index:
2368 * @cliexcmd{delete vhost-user sw_if_index 1}
2369?*/
2370/* *INDENT-OFF* */
2371VLIB_CLI_COMMAND (vhost_user_delete_command, static) = {
2372 .path = "delete vhost-user",
2373 .short_help = "delete vhost-user {<interface> | sw_if_index <sw_idx>}",
2374 .function = vhost_user_delete_command_fn,
2375};
2376
2377/*?
2378 * Display the attributes of a single vHost User interface (provide interface
2379 * name), multiple vHost User interfaces (provide a list of interface names seperated
2380 * by spaces) or all Vhost User interfaces (omit an interface name to display all
2381 * vHost interfaces).
2382 *
2383 * @cliexpar
2384 * @parblock
2385 * Example of how to display a vhost interface:
2386 * @cliexstart{show vhost-user VirtualEthernet0/0/0}
2387 * Virtio vhost-user interfaces
2388 * Global:
2389 * coalesce frames 32 time 1e-3
2390 * Interface: VirtualEthernet0/0/0 (ifindex 1)
2391 * virtio_net_hdr_sz 12
2392 * features mask (0xffffffffffffffff):
2393 * features (0x50408000):
2394 * VIRTIO_NET_F_MRG_RXBUF (15)
2395 * VIRTIO_NET_F_MQ (22)
2396 * VIRTIO_F_INDIRECT_DESC (28)
2397 * VHOST_USER_F_PROTOCOL_FEATURES (30)
2398 * protocol features (0x3)
2399 * VHOST_USER_PROTOCOL_F_MQ (0)
2400 * VHOST_USER_PROTOCOL_F_LOG_SHMFD (1)
2401 *
2402 * socket filename /var/run/vpp/vhost1.sock type client errno "Success"
2403 *
2404 * rx placement:
2405 * thread 1 on vring 1
2406 * thread 1 on vring 5
2407 * thread 2 on vring 3
2408 * thread 2 on vring 7
2409 * tx placement: spin-lock
2410 * thread 0 on vring 0
2411 * thread 1 on vring 2
2412 * thread 2 on vring 0
2413 *
2414 * Memory regions (total 2)
2415 * region fd guest_phys_addr memory_size userspace_addr mmap_offset mmap_addr
2416 * ====== ===== ================== ================== ================== ================== ==================
2417 * 0 60 0x0000000000000000 0x00000000000a0000 0x00002aaaaac00000 0x0000000000000000 0x00002aab2b400000
2418 * 1 61 0x00000000000c0000 0x000000003ff40000 0x00002aaaaacc0000 0x00000000000c0000 0x00002aababcc0000
2419 *
2420 * Virtqueue 0 (TX)
2421 * qsz 256 last_avail_idx 0 last_used_idx 0
2422 * avail.flags 1 avail.idx 128 used.flags 1 used.idx 0
2423 * kickfd 62 callfd 64 errfd -1
2424 *
2425 * Virtqueue 1 (RX)
2426 * qsz 256 last_avail_idx 0 last_used_idx 0
2427 * avail.flags 1 avail.idx 0 used.flags 1 used.idx 0
2428 * kickfd 65 callfd 66 errfd -1
2429 *
2430 * Virtqueue 2 (TX)
2431 * qsz 256 last_avail_idx 0 last_used_idx 0
2432 * avail.flags 1 avail.idx 128 used.flags 1 used.idx 0
2433 * kickfd 63 callfd 70 errfd -1
2434 *
2435 * Virtqueue 3 (RX)
2436 * qsz 256 last_avail_idx 0 last_used_idx 0
2437 * avail.flags 1 avail.idx 0 used.flags 1 used.idx 0
2438 * kickfd 72 callfd 74 errfd -1
2439 *
2440 * Virtqueue 4 (TX disabled)
2441 * qsz 256 last_avail_idx 0 last_used_idx 0
2442 * avail.flags 1 avail.idx 0 used.flags 1 used.idx 0
2443 * kickfd 76 callfd 78 errfd -1
2444 *
2445 * Virtqueue 5 (RX disabled)
2446 * qsz 256 last_avail_idx 0 last_used_idx 0
2447 * avail.flags 1 avail.idx 0 used.flags 1 used.idx 0
2448 * kickfd 80 callfd 82 errfd -1
2449 *
2450 * Virtqueue 6 (TX disabled)
2451 * qsz 256 last_avail_idx 0 last_used_idx 0
2452 * avail.flags 1 avail.idx 0 used.flags 1 used.idx 0
2453 * kickfd 84 callfd 86 errfd -1
2454 *
2455 * Virtqueue 7 (RX disabled)
2456 * qsz 256 last_avail_idx 0 last_used_idx 0
2457 * avail.flags 1 avail.idx 0 used.flags 1 used.idx 0
2458 * kickfd 88 callfd 90 errfd -1
2459 *
2460 * @cliexend
2461 *
2462 * The optional '<em>descriptors</em>' parameter will display the same output as
2463 * the previous example but will include the descriptor table for each queue.
2464 * The output is truncated below:
2465 * @cliexstart{show vhost-user VirtualEthernet0/0/0 descriptors}
2466 * Virtio vhost-user interfaces
2467 * Global:
2468 * coalesce frames 32 time 1e-3
2469 * Interface: VirtualEthernet0/0/0 (ifindex 1)
2470 * virtio_net_hdr_sz 12
2471 * features mask (0xffffffffffffffff):
2472 * features (0x50408000):
2473 * VIRTIO_NET_F_MRG_RXBUF (15)
2474 * VIRTIO_NET_F_MQ (22)
2475 * :
2476 * Virtqueue 0 (TX)
2477 * qsz 256 last_avail_idx 0 last_used_idx 0
2478 * avail.flags 1 avail.idx 128 used.flags 1 used.idx 0
2479 * kickfd 62 callfd 64 errfd -1
2480 *
2481 * descriptor table:
2482 * id addr len flags next user_addr
2483 * ===== ================== ===== ====== ===== ==================
2484 * 0 0x0000000010b6e974 2060 0x0002 1 0x00002aabbc76e974
2485 * 1 0x0000000010b6e034 2060 0x0002 2 0x00002aabbc76e034
2486 * 2 0x0000000010b6d6f4 2060 0x0002 3 0x00002aabbc76d6f4
2487 * 3 0x0000000010b6cdb4 2060 0x0002 4 0x00002aabbc76cdb4
2488 * 4 0x0000000010b6c474 2060 0x0002 5 0x00002aabbc76c474
2489 * 5 0x0000000010b6bb34 2060 0x0002 6 0x00002aabbc76bb34
2490 * 6 0x0000000010b6b1f4 2060 0x0002 7 0x00002aabbc76b1f4
2491 * 7 0x0000000010b6a8b4 2060 0x0002 8 0x00002aabbc76a8b4
2492 * 8 0x0000000010b69f74 2060 0x0002 9 0x00002aabbc769f74
2493 * 9 0x0000000010b69634 2060 0x0002 10 0x00002aabbc769634
2494 * 10 0x0000000010b68cf4 2060 0x0002 11 0x00002aabbc768cf4
2495 * :
2496 * 249 0x0000000000000000 0 0x0000 250 0x00002aab2b400000
2497 * 250 0x0000000000000000 0 0x0000 251 0x00002aab2b400000
2498 * 251 0x0000000000000000 0 0x0000 252 0x00002aab2b400000
2499 * 252 0x0000000000000000 0 0x0000 253 0x00002aab2b400000
2500 * 253 0x0000000000000000 0 0x0000 254 0x00002aab2b400000
2501 * 254 0x0000000000000000 0 0x0000 255 0x00002aab2b400000
2502 * 255 0x0000000000000000 0 0x0000 32768 0x00002aab2b400000
2503 *
2504 * Virtqueue 1 (RX)
2505 * qsz 256 last_avail_idx 0 last_used_idx 0
2506 * :
2507 * @cliexend
2508 * @endparblock
2509?*/
2510/* *INDENT-OFF* */
2511VLIB_CLI_COMMAND (show_vhost_user_command, static) = {
2512 .path = "show vhost-user",
Steven Luongbc0d9ff2020-03-23 09:34:59 -07002513 .short_help = "show vhost-user [<interface> [<interface> [..]]] "
2514 "[[descriptors] [verbose]]",
Mohsin Kazmie7cde312018-06-26 17:20:11 +02002515 .function = show_vhost_user_command_fn,
2516};
2517/* *INDENT-ON* */
2518
Mohsin Kazmie7cde312018-06-26 17:20:11 +02002519
2520static clib_error_t *
2521vhost_user_config (vlib_main_t * vm, unformat_input_t * input)
2522{
2523 vhost_user_main_t *vum = &vhost_user_main;
2524
2525 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
2526 {
2527 if (unformat (input, "coalesce-frames %d", &vum->coalesce_frames))
2528 ;
2529 else if (unformat (input, "coalesce-time %f", &vum->coalesce_time))
2530 ;
2531 else if (unformat (input, "dont-dump-memory"))
2532 vum->dont_dump_vhost_user_memory = 1;
2533 else
2534 return clib_error_return (0, "unknown input `%U'",
2535 format_unformat_error, input);
2536 }
2537
2538 return 0;
2539}
2540
Mohsin Kazmie7cde312018-06-26 17:20:11 +02002541/* vhost-user { ... } configuration. */
2542VLIB_CONFIG_FUNCTION (vhost_user_config, "vhost-user");
2543
2544void
2545vhost_user_unmap_all (void)
2546{
2547 vhost_user_main_t *vum = &vhost_user_main;
2548 vhost_user_intf_t *vui;
2549
2550 if (vum->dont_dump_vhost_user_memory)
2551 {
Damjan Marionb2c31b62020-12-13 21:47:40 +01002552 pool_foreach (vui, vum->vhost_user_interfaces)
2553 unmap_all_mem_regions (vui);
Mohsin Kazmie7cde312018-06-26 17:20:11 +02002554 }
2555}
2556
2557/*
2558 * fd.io coding-style-patch-verification: ON
2559 *
2560 * Local Variables:
2561 * eval: (c-set-style "gnu")
2562 * End:
2563 */