FD.io VPP  v19.01.3-6-g70449b9b9
Vector Packet Processing
vhost_user.c
Go to the documentation of this file.
1 /*
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 
36 #include <vnet/ip/ip.h>
37 
38 #include <vnet/ethernet/ethernet.h>
39 #include <vnet/devices/devices.h>
40 #include <vnet/feature/feature.h>
41 
44 
45 /**
46  * @file
47  * @brief vHost User Device Driver.
48  *
49  * This file contains the source code for vHost User interface.
50  */
51 
52 
54 
55 /* *INDENT-OFF* */
56 vhost_user_main_t vhost_user_main = {
57  .mtu_bytes = 1518,
58 };
59 
60 VNET_HW_INTERFACE_CLASS (vhost_interface_class, static) = {
61  .name = "vhost-user",
62 };
63 /* *INDENT-ON* */
64 
65 static long
67 {
68  struct statfs s;
69  fstatfs (fd, &s);
70  return s.f_bsize;
71 }
72 
73 static void
75 {
76  int i, r, q;
78 
79  for (i = 0; i < vui->nregions; i++)
80  {
81  if (vui->region_mmap_addr[i] != MAP_FAILED)
82  {
83 
84  long page_sz = get_huge_page_size (vui->region_mmap_fd[i]);
85 
86  ssize_t map_sz = (vui->regions[i].memory_size +
87  vui->regions[i].mmap_offset +
88  page_sz - 1) & ~(page_sz - 1);
89 
90  r =
91  munmap (vui->region_mmap_addr[i] - vui->regions[i].mmap_offset,
92  map_sz);
93 
94  vu_log_debug (vui, "unmap memory region %d addr 0x%lx len 0x%lx "
95  "page_sz 0x%x", i, vui->region_mmap_addr[i], map_sz,
96  page_sz);
97 
98  vui->region_mmap_addr[i] = MAP_FAILED;
99 
100  if (r == -1)
101  {
102  vu_log_err (vui, "failed to unmap memory region (errno %d)",
103  errno);
104  }
105  close (vui->region_mmap_fd[i]);
106  }
107  }
108  vui->nregions = 0;
109 
110  for (q = 0; q < VHOST_VRING_MAX_N; q++)
111  {
112  vq = &vui->vrings[q];
113  vq->avail = 0;
114  vq->used = 0;
115  vq->desc = 0;
116  }
117 }
118 
121 {
122  //Let's try to assign one queue to each thread
123  u32 qid;
124  u32 thread_index = 0;
125 
126  vui->use_tx_spinlock = 0;
127  while (1)
128  {
129  for (qid = 0; qid < VHOST_VRING_MAX_N / 2; qid++)
130  {
131  vhost_user_vring_t *rxvq = &vui->vrings[VHOST_VRING_IDX_RX (qid)];
132  if (!rxvq->started || !rxvq->enabled)
133  continue;
134 
135  vui->per_cpu_tx_qid[thread_index] = qid;
136  thread_index++;
137  if (thread_index == vlib_get_thread_main ()->n_vlib_mains)
138  return;
139  }
140  //We need to loop, meaning the spinlock has to be used
141  vui->use_tx_spinlock = 1;
142  if (thread_index == 0)
143  {
144  //Could not find a single valid one
145  for (thread_index = 0;
146  thread_index < vlib_get_thread_main ()->n_vlib_mains;
147  thread_index++)
148  {
149  vui->per_cpu_tx_qid[thread_index] = 0;
150  }
151  return;
152  }
153  }
154 }
155 
156 /**
157  * @brief Unassign existing interface/queue to thread mappings and re-assign
158  * new interface/queue to thread mappings
159  */
162 {
163  vhost_user_vring_t *txvq = &vui->vrings[qid];
164  vnet_main_t *vnm = vnet_get_main ();
165  int rv;
166  u32 q = qid >> 1;
167 
168  ASSERT ((qid & 1) == 1); // should be odd
169  // Assign new queue mappings for the interface
171  vhost_user_input_node.index);
174  /* Set polling as the default */
176  txvq->qid = q;
177  rv = vnet_hw_interface_set_rx_mode (vnm, vui->hw_if_index, q, txvq->mode);
178  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);
181 }
182 
183 /** @brief Returns whether at least one TX and one RX vring are enabled */
186 {
187  int i, found[2] = { }; //RX + TX
188 
189  for (i = 0; i < VHOST_VRING_MAX_N; i++)
190  if (vui->vrings[i].started && vui->vrings[i].enabled)
191  found[i & 1] = 1;
192 
193  return found[0] && found[1];
194 }
195 
198 {
199  /* if we have pointers to descriptor table, go up */
200  int is_ready = vhost_user_intf_ready (vui);
201  if (is_ready != vui->is_ready)
202  {
203  vu_log_debug (vui, "interface %d %s", vui->sw_if_index,
204  is_ready ? "ready" : "down");
205  if (vui->admin_up)
208  : 0);
209  vui->is_ready = is_ready;
210  }
211 }
212 
213 static void
215 {
216  u32 qid;
217  vnet_main_t *vnm = vnet_get_main ();
218 
219  qid = ifq & 0xff;
220  if ((qid & 1) == 0)
221  /* Only care about the odd number, or TX, virtqueue */
222  return;
223 
224  if (vhost_user_intf_ready (vui))
225  // qid >> 1 is to convert virtqueue number to vring queue index
227 }
228 
229 static clib_error_t *
231 {
232  __attribute__ ((unused)) int n;
233  u8 buff[8];
234 
235  n = read (uf->file_descriptor, ((char *) &buff), 8);
236 
237  return 0;
238 }
239 
242 {
243  if (qid & 1) // RX is odd, TX is even
244  {
245  if (vui->vrings[qid].qid == -1)
247  }
248  else
250 }
251 
252 static clib_error_t *
254 {
255  __attribute__ ((unused)) int n;
256  u8 buff[8];
257  vhost_user_intf_t *vui =
258  pool_elt_at_index (vhost_user_main.vhost_user_interfaces,
259  uf->private_data >> 8);
260  u32 qid = uf->private_data & 0xff;
261 
262  n = read (uf->file_descriptor, ((char *) &buff), 8);
263  vu_log_debug (vui, "if %d KICK queue %d", uf->private_data >> 8, qid);
264  if (!vui->vrings[qid].started ||
265  (vhost_user_intf_ready (vui) != vui->is_ready))
266  {
267  if (vui->vrings[qid].started == 0)
268  {
269  vui->vrings[qid].started = 1;
270  vhost_user_thread_placement (vui, qid);
272  }
273  }
274 
276  return 0;
277 }
278 
281 {
282  vhost_user_vring_t *vring = &vui->vrings[qid];
283  clib_memset (vring, 0, sizeof (*vring));
284  vring->kickfd_idx = ~0;
285  vring->callfd_idx = ~0;
286  vring->errfd = -1;
287  vring->qid = -1;
288 
289  /*
290  * We have a bug with some qemu 2.5, and this may be a fix.
291  * Feel like interpretation holy text, but this is from vhost-user.txt.
292  * "
293  * One queue pair is enabled initially. More queues are enabled
294  * dynamically, by sending message VHOST_USER_SET_VRING_ENABLE.
295  * "
296  * Don't know who's right, but this is what DPDK does.
297  */
298  if (qid == 0 || qid == 1)
299  vring->enabled = 1;
300 }
301 
304 {
305  vhost_user_vring_t *vring = &vui->vrings[qid];
306 
307  if (vring->kickfd_idx != ~0)
308  {
310  vring->kickfd_idx);
311  clib_file_del (&file_main, uf);
312  vring->kickfd_idx = ~0;
313  }
314  if (vring->callfd_idx != ~0)
315  {
317  vring->callfd_idx);
318  clib_file_del (&file_main, uf);
319  vring->callfd_idx = ~0;
320  }
321  if (vring->errfd != -1)
322  {
323  close (vring->errfd);
324  vring->errfd = -1;
325  }
326 
327  // save the qid so that we don't need to unassign and assign_rx_thread
328  // when the interface comes back up. They are expensive calls.
329  u16 q = vui->vrings[qid].qid;
330  vhost_user_vring_init (vui, qid);
331  vui->vrings[qid].qid = q;
332 }
333 
336 {
337  vnet_main_t *vnm = vnet_get_main ();
338  int q;
339 
341 
342  if (vui->clib_file_index != ~0)
343  {
345  vui->clib_file_index = ~0;
346  }
347 
348  vui->is_ready = 0;
349 
350  for (q = 0; q < VHOST_VRING_MAX_N; q++)
351  vhost_user_vring_close (vui, q);
352 
353  unmap_all_mem_regions (vui);
354  vu_log_debug (vui, "interface ifindex %d disconnected", vui->sw_if_index);
355 }
356 
357 static clib_error_t *
359 {
360  int n, i, j;
361  int fd, number_of_fds = 0;
362  int fds[VHOST_MEMORY_MAX_NREGIONS];
363  vhost_user_msg_t msg;
364  struct msghdr mh;
365  struct iovec iov[1];
367  vhost_user_intf_t *vui;
368  struct cmsghdr *cmsg;
369  u8 q;
370  clib_file_t template = { 0 };
371  vnet_main_t *vnm = vnet_get_main ();
373 
374  vui = pool_elt_at_index (vum->vhost_user_interfaces, uf->private_data);
375 
376  char control[CMSG_SPACE (VHOST_MEMORY_MAX_NREGIONS * sizeof (int))];
377 
378  clib_memset (&mh, 0, sizeof (mh));
379  clib_memset (control, 0, sizeof (control));
380 
381  for (i = 0; i < VHOST_MEMORY_MAX_NREGIONS; i++)
382  fds[i] = -1;
383 
384  /* set the payload */
385  iov[0].iov_base = (void *) &msg;
386  iov[0].iov_len = VHOST_USER_MSG_HDR_SZ;
387 
388  mh.msg_iov = iov;
389  mh.msg_iovlen = 1;
390  mh.msg_control = control;
391  mh.msg_controllen = sizeof (control);
392 
393  n = recvmsg (uf->file_descriptor, &mh, 0);
394 
395  if (n != VHOST_USER_MSG_HDR_SZ)
396  {
397  if (n == -1)
398  {
399  vu_log_debug (vui, "recvmsg returned error %d %s", errno,
400  strerror (errno));
401  }
402  else
403  {
404  vu_log_debug (vui, "n (%d) != VHOST_USER_MSG_HDR_SZ (%d)",
406  }
407  goto close_socket;
408  }
409 
410  if (mh.msg_flags & MSG_CTRUNC)
411  {
412  vu_log_debug (vui, "MSG_CTRUNC is set");
413  goto close_socket;
414  }
415 
416  cmsg = CMSG_FIRSTHDR (&mh);
417 
418  if (cmsg && (cmsg->cmsg_len > 0) && (cmsg->cmsg_level == SOL_SOCKET) &&
419  (cmsg->cmsg_type == SCM_RIGHTS) &&
420  (cmsg->cmsg_len - CMSG_LEN (0) <=
421  VHOST_MEMORY_MAX_NREGIONS * sizeof (int)))
422  {
423  number_of_fds = (cmsg->cmsg_len - CMSG_LEN (0)) / sizeof (int);
424  clib_memcpy_fast (fds, CMSG_DATA (cmsg), number_of_fds * sizeof (int));
425  }
426 
427  /* version 1, no reply bit set */
428  if ((msg.flags & 7) != 1)
429  {
430  vu_log_debug (vui, "malformed message received. closing socket");
431  goto close_socket;
432  }
433 
434  {
435  int rv;
436  rv =
437  read (uf->file_descriptor, ((char *) &msg) + VHOST_USER_MSG_HDR_SZ,
438  msg.size);
439  if (rv < 0)
440  {
441  vu_log_debug (vui, "read failed %s", strerror (errno));
442  goto close_socket;
443  }
444  else if (rv != msg.size)
445  {
446  vu_log_debug (vui, "message too short (read %dB should be %dB)", rv,
447  msg.size);
448  goto close_socket;
449  }
450  }
451 
452  switch (msg.request)
453  {
455  msg.flags |= 4;
456  msg.u64 = (1ULL << FEAT_VIRTIO_NET_F_MRG_RXBUF) |
457  (1ULL << FEAT_VIRTIO_NET_F_CTRL_VQ) |
458  (1ULL << FEAT_VIRTIO_F_ANY_LAYOUT) |
459  (1ULL << FEAT_VIRTIO_F_INDIRECT_DESC) |
460  (1ULL << FEAT_VHOST_F_LOG_ALL) |
461  (1ULL << FEAT_VIRTIO_NET_F_GUEST_ANNOUNCE) |
462  (1ULL << FEAT_VIRTIO_NET_F_MQ) |
463  (1ULL << FEAT_VHOST_USER_F_PROTOCOL_FEATURES) |
464  (1ULL << FEAT_VIRTIO_F_VERSION_1);
465  msg.u64 &= vui->feature_mask;
466  msg.size = sizeof (msg.u64);
467  vu_log_debug (vui, "if %d msg VHOST_USER_GET_FEATURES - reply "
468  "0x%016llx", vui->hw_if_index, msg.u64);
469  n =
470  send (uf->file_descriptor, &msg, VHOST_USER_MSG_HDR_SZ + msg.size, 0);
471  if (n != (msg.size + VHOST_USER_MSG_HDR_SZ))
472  {
473  vu_log_debug (vui, "could not send message response");
474  goto close_socket;
475  }
476  break;
477 
479  vu_log_debug (vui, "if %d msg VHOST_USER_SET_FEATURES features "
480  "0x%016llx", vui->hw_if_index, msg.u64);
481 
482  vui->features = msg.u64;
483 
484  if (vui->features &
485  ((1 << FEAT_VIRTIO_NET_F_MRG_RXBUF) |
486  (1ULL << FEAT_VIRTIO_F_VERSION_1)))
487  vui->virtio_net_hdr_sz = 12;
488  else
489  vui->virtio_net_hdr_sz = 10;
490 
491  vui->is_any_layout =
492  (vui->features & (1 << FEAT_VIRTIO_F_ANY_LAYOUT)) ? 1 : 0;
493 
496  vui->is_ready = 0;
498  break;
499 
501  vu_log_debug (vui, "if %d msg VHOST_USER_SET_MEM_TABLE nregions %d",
502  vui->hw_if_index, msg.memory.nregions);
503 
504  if ((msg.memory.nregions < 1) ||
505  (msg.memory.nregions > VHOST_MEMORY_MAX_NREGIONS))
506  {
507  vu_log_debug (vui, "number of mem regions must be between 1 and %i",
508  VHOST_MEMORY_MAX_NREGIONS);
509  goto close_socket;
510  }
511 
512  if (msg.memory.nregions != number_of_fds)
513  {
514  vu_log_debug (vui, "each memory region must have FD");
515  goto close_socket;
516  }
517 
518  /* Do the mmap without barrier sync */
519  void *region_mmap_addr[VHOST_MEMORY_MAX_NREGIONS];
520  for (i = 0; i < msg.memory.nregions; i++)
521  {
522  long page_sz = get_huge_page_size (fds[i]);
523 
524  /* align size to page */
525  ssize_t map_sz = (msg.memory.regions[i].memory_size +
526  msg.memory.regions[i].mmap_offset +
527  page_sz - 1) & ~(page_sz - 1);
528 
529  region_mmap_addr[i] = mmap (0, map_sz, PROT_READ | PROT_WRITE,
530  MAP_SHARED, fds[i], 0);
531  if (region_mmap_addr[i] == MAP_FAILED)
532  {
533  vu_log_err (vui, "failed to map memory. errno is %d", errno);
534  for (j = 0; j < i; j++)
535  munmap (region_mmap_addr[j], map_sz);
536  goto close_socket;
537  }
538  vu_log_debug (vui, "map memory region %d addr 0 len 0x%lx fd %d "
539  "mapped 0x%lx page_sz 0x%x", i, map_sz, fds[i],
540  region_mmap_addr[i], page_sz);
541  }
542 
544  unmap_all_mem_regions (vui);
545  for (i = 0; i < msg.memory.nregions; i++)
546  {
547  clib_memcpy_fast (&(vui->regions[i]), &msg.memory.regions[i],
548  sizeof (vhost_user_memory_region_t));
549 
550  vui->region_mmap_addr[i] = region_mmap_addr[i];
551  vui->region_guest_addr_lo[i] = vui->regions[i].guest_phys_addr;
552  vui->region_guest_addr_hi[i] = vui->regions[i].guest_phys_addr +
553  vui->regions[i].memory_size;
554 
555  vui->region_mmap_addr[i] += vui->regions[i].mmap_offset;
556  vui->region_mmap_fd[i] = fds[i];
557 
558  vui->nregions++;
559  }
561  break;
562 
564  vu_log_debug (vui, "if %d msg VHOST_USER_SET_VRING_NUM idx %d num %d",
565  vui->hw_if_index, msg.state.index, msg.state.num);
566 
567  if ((msg.state.num > 32768) || /* maximum ring size is 32768 */
568  (msg.state.num == 0) || /* it cannot be zero */
569  ((msg.state.num - 1) & msg.state.num)) /* must be power of 2 */
570  goto close_socket;
571  vui->vrings[msg.state.index].qsz_mask = msg.state.num - 1;
572  break;
573 
575  vu_log_debug (vui, "if %d msg VHOST_USER_SET_VRING_ADDR idx %d",
576  vui->hw_if_index, msg.state.index);
577 
578  if (msg.state.index >= VHOST_VRING_MAX_N)
579  {
580  vu_log_debug (vui, "invalid vring index VHOST_USER_SET_VRING_ADDR:"
581  " %d >= %d", msg.state.index, VHOST_VRING_MAX_N);
582  goto close_socket;
583  }
584 
585  if (msg.size < sizeof (msg.addr))
586  {
587  vu_log_debug (vui, "vhost message is too short (%d < %d)",
588  msg.size, sizeof (msg.addr));
589  goto close_socket;
590  }
591 
592  vring_desc_t *desc = map_user_mem (vui, msg.addr.desc_user_addr);
593  vring_used_t *used = map_user_mem (vui, msg.addr.used_user_addr);
594  vring_avail_t *avail = map_user_mem (vui, msg.addr.avail_user_addr);
595 
596  if ((desc == NULL) || (used == NULL) || (avail == NULL))
597  {
598  vu_log_debug (vui, "failed to map user memory for hw_if_index %d",
599  vui->hw_if_index);
600  goto close_socket;
601  }
602 
604  vui->vrings[msg.state.index].desc = desc;
605  vui->vrings[msg.state.index].used = used;
606  vui->vrings[msg.state.index].avail = avail;
607 
608  vui->vrings[msg.state.index].log_guest_addr = msg.addr.log_guest_addr;
609  vui->vrings[msg.state.index].log_used =
610  (msg.addr.flags & (1 << VHOST_VRING_F_LOG)) ? 1 : 0;
611 
612  /* Spec says: If VHOST_USER_F_PROTOCOL_FEATURES has not been negotiated,
613  the ring is initialized in an enabled state. */
614  if (!(vui->features & (1 << FEAT_VHOST_USER_F_PROTOCOL_FEATURES)))
615  vui->vrings[msg.state.index].enabled = 1;
616 
617  vui->vrings[msg.state.index].last_used_idx =
618  vui->vrings[msg.state.index].last_avail_idx =
619  vui->vrings[msg.state.index].used->idx;
620 
621  /* tell driver that we don't want interrupts */
622  vui->vrings[msg.state.index].used->flags = VRING_USED_F_NO_NOTIFY;
625  break;
626 
628  vu_log_debug (vui, "if %d msg VHOST_USER_SET_OWNER", vui->hw_if_index);
629  break;
630 
632  vu_log_debug (vui, "if %d msg VHOST_USER_RESET_OWNER",
633  vui->hw_if_index);
634  break;
635 
637  vu_log_debug (vui, "if %d msg VHOST_USER_SET_VRING_CALL %d",
638  vui->hw_if_index, msg.u64);
639 
640  q = (u8) (msg.u64 & 0xFF);
641 
642  /* if there is old fd, delete and close it */
643  if (vui->vrings[q].callfd_idx != ~0)
644  {
646  vui->vrings[q].callfd_idx);
647  clib_file_del (&file_main, uf);
648  vui->vrings[q].callfd_idx = ~0;
649  }
650 
651  if (!(msg.u64 & VHOST_USER_VRING_NOFD_MASK))
652  {
653  if (number_of_fds != 1)
654  {
655  vu_log_debug (vui, "More than one fd received !");
656  goto close_socket;
657  }
658 
659  template.read_function = vhost_user_callfd_read_ready;
660  template.file_descriptor = fds[0];
661  template.private_data =
662  ((vui - vhost_user_main.vhost_user_interfaces) << 8) + q;
663  vui->vrings[q].callfd_idx = clib_file_add (&file_main, &template);
664  }
665  else
666  vui->vrings[q].callfd_idx = ~0;
667  break;
668 
670  vu_log_debug (vui, "if %d msg VHOST_USER_SET_VRING_KICK %d",
671  vui->hw_if_index, msg.u64);
672 
673  q = (u8) (msg.u64 & 0xFF);
674 
675  if (vui->vrings[q].kickfd_idx != ~0)
676  {
678  vui->vrings[q].kickfd_idx);
679  clib_file_del (&file_main, uf);
680  vui->vrings[q].kickfd_idx = ~0;
681  }
682 
683  if (!(msg.u64 & VHOST_USER_VRING_NOFD_MASK))
684  {
685  if (number_of_fds != 1)
686  {
687  vu_log_debug (vui, "More than one fd received !");
688  goto close_socket;
689  }
690 
691  template.read_function = vhost_user_kickfd_read_ready;
692  template.file_descriptor = fds[0];
693  template.private_data =
694  (((uword) (vui - vhost_user_main.vhost_user_interfaces)) << 8) +
695  q;
696  vui->vrings[q].kickfd_idx = clib_file_add (&file_main, &template);
697  }
698  else
699  {
700  //When no kickfd is set, the queue is initialized as started
701  vui->vrings[q].kickfd_idx = ~0;
702  vui->vrings[q].started = 1;
704  }
706  break;
707 
709  vu_log_debug (vui, "if %d msg VHOST_USER_SET_VRING_ERR %d",
710  vui->hw_if_index, msg.u64);
711 
712  q = (u8) (msg.u64 & 0xFF);
713 
714  if (vui->vrings[q].errfd != -1)
715  close (vui->vrings[q].errfd);
716 
717  if (!(msg.u64 & VHOST_USER_VRING_NOFD_MASK))
718  {
719  if (number_of_fds != 1)
720  goto close_socket;
721 
722  vui->vrings[q].errfd = fds[0];
723  }
724  else
725  vui->vrings[q].errfd = -1;
726  break;
727 
729  vu_log_debug (vui, "if %d msg VHOST_USER_SET_VRING_BASE idx %d num %d",
730  vui->hw_if_index, msg.state.index, msg.state.num);
732  vui->vrings[msg.state.index].last_avail_idx = msg.state.num;
734  break;
735 
737  if (msg.state.index >= VHOST_VRING_MAX_N)
738  {
739  vu_log_debug (vui, "invalid vring index VHOST_USER_GET_VRING_BASE:"
740  " %d >= %d", msg.state.index, VHOST_VRING_MAX_N);
741  goto close_socket;
742  }
743 
744  /* protection is needed to prevent rx/tx from changing last_avail_idx */
746  /*
747  * Copy last_avail_idx from the vring before closing it because
748  * closing the vring also initializes the vring last_avail_idx
749  */
750  msg.state.num = vui->vrings[msg.state.index].last_avail_idx;
751  msg.flags |= 4;
752  msg.size = sizeof (msg.state);
753 
754  /*
755  * Spec says: Client must [...] stop ring upon receiving
756  * VHOST_USER_GET_VRING_BASE
757  */
758  vhost_user_vring_close (vui, msg.state.index);
760  vu_log_debug (vui, "if %d msg VHOST_USER_GET_VRING_BASE idx %d num %d",
761  vui->hw_if_index, msg.state.index, msg.state.num);
762  n =
763  send (uf->file_descriptor, &msg, VHOST_USER_MSG_HDR_SZ + msg.size, 0);
764  if (n != (msg.size + VHOST_USER_MSG_HDR_SZ))
765  {
766  vu_log_debug (vui, "could not send message response");
767  goto close_socket;
768  }
770  break;
771 
772  case VHOST_USER_NONE:
773  vu_log_debug (vui, "if %d msg VHOST_USER_NONE", vui->hw_if_index);
774  break;
775 
777  vu_log_debug (vui, "if %d msg VHOST_USER_SET_LOG_BASE",
778  vui->hw_if_index);
779 
780  if (msg.size != sizeof (msg.log))
781  {
782  vu_log_debug (vui, "invalid msg size for VHOST_USER_SET_LOG_BASE:"
783  " %d instead of %d", msg.size, sizeof (msg.log));
784  goto close_socket;
785  }
786 
788  {
789  vu_log_debug (vui, "VHOST_USER_PROTOCOL_F_LOG_SHMFD not set but "
790  "VHOST_USER_SET_LOG_BASE received");
791  goto close_socket;
792  }
793 
794  fd = fds[0];
795  /* align size to page */
796  long page_sz = get_huge_page_size (fd);
797  ssize_t map_sz =
798  (msg.log.size + msg.log.offset + page_sz - 1) & ~(page_sz - 1);
799 
800  void *log_base_addr = mmap (0, map_sz, PROT_READ | PROT_WRITE,
801  MAP_SHARED, fd, 0);
802 
803  vu_log_debug (vui, "map log region addr 0 len 0x%lx off 0x%lx fd %d "
804  "mapped 0x%lx", map_sz, msg.log.offset, fd,
805  log_base_addr);
806 
807  if (log_base_addr == MAP_FAILED)
808  {
809  vu_log_err (vui, "failed to map memory. errno is %d", errno);
810  goto close_socket;
811  }
812 
814  vui->log_base_addr = log_base_addr;
815  vui->log_base_addr += msg.log.offset;
816  vui->log_size = msg.log.size;
818 
819  msg.flags |= 4;
820  msg.size = sizeof (msg.u64);
821  n =
822  send (uf->file_descriptor, &msg, VHOST_USER_MSG_HDR_SZ + msg.size, 0);
823  if (n != (msg.size + VHOST_USER_MSG_HDR_SZ))
824  {
825  vu_log_debug (vui, "could not send message response");
826  goto close_socket;
827  }
828  break;
829 
831  vu_log_debug (vui, "if %d msg VHOST_USER_SET_LOG_FD", vui->hw_if_index);
832  break;
833 
835  msg.flags |= 4;
836  msg.u64 = (1 << VHOST_USER_PROTOCOL_F_LOG_SHMFD) |
838  msg.size = sizeof (msg.u64);
839  vu_log_debug (vui, "if %d msg VHOST_USER_GET_PROTOCOL_FEATURES - "
840  "reply 0x%016llx", vui->hw_if_index, msg.u64);
841  n =
842  send (uf->file_descriptor, &msg, VHOST_USER_MSG_HDR_SZ + msg.size, 0);
843  if (n != (msg.size + VHOST_USER_MSG_HDR_SZ))
844  {
845  vu_log_debug (vui, "could not send message response");
846  goto close_socket;
847  }
848  break;
849 
851  vu_log_debug (vui, "if %d msg VHOST_USER_SET_PROTOCOL_FEATURES "
852  "features 0x%016llx", vui->hw_if_index, msg.u64);
853  vui->protocol_features = msg.u64;
854  break;
855 
857  msg.flags |= 4;
858  msg.u64 = VHOST_VRING_MAX_N;
859  msg.size = sizeof (msg.u64);
860  vu_log_debug (vui, "if %d msg VHOST_USER_GET_QUEUE_NUM - reply %d",
861  vui->hw_if_index, msg.u64);
862  n =
863  send (uf->file_descriptor, &msg, VHOST_USER_MSG_HDR_SZ + msg.size, 0);
864  if (n != (msg.size + VHOST_USER_MSG_HDR_SZ))
865  {
866  vu_log_debug (vui, "could not send message response");
867  goto close_socket;
868  }
869  break;
870 
872  vu_log_debug (vui, "if %d VHOST_USER_SET_VRING_ENABLE: %s queue %d",
873  vui->hw_if_index, msg.state.num ? "enable" : "disable",
874  msg.state.index);
875  if (msg.state.index >= VHOST_VRING_MAX_N)
876  {
877  vu_log_debug (vui, "invalid vring idx VHOST_USER_SET_VRING_ENABLE:"
878  " %d >= %d", msg.state.index, VHOST_VRING_MAX_N);
879  goto close_socket;
880  }
881 
882  vui->vrings[msg.state.index].enabled = msg.state.num;
883  vhost_user_thread_placement (vui, msg.state.index);
885  break;
886 
887  default:
888  vu_log_debug (vui, "unknown vhost-user message %d received. "
889  "closing socket", msg.request);
890  goto close_socket;
891  }
892 
893  return 0;
894 
895 close_socket:
900  return 0;
901 }
902 
903 static clib_error_t *
905 {
908  vhost_user_intf_t *vui =
910 
911  vu_log_debug (vui, "socket error on if %d", vui->sw_if_index);
915  return 0;
916 }
917 
918 static clib_error_t *
920 {
921  int client_fd, client_len;
922  struct sockaddr_un client;
923  clib_file_t template = { 0 };
925  vhost_user_intf_t *vui;
926 
928 
929  client_len = sizeof (client);
930  client_fd = accept (uf->file_descriptor,
931  (struct sockaddr *) &client,
932  (socklen_t *) & client_len);
933 
934  if (client_fd < 0)
935  return clib_error_return_unix (0, "accept");
936 
937  if (vui->clib_file_index != ~0)
938  {
939  vu_log_debug (vui, "Close client socket for vhost interface %d, fd %d",
942  }
943 
944  vu_log_debug (vui, "New client socket for vhost interface %d, fd %d",
945  vui->sw_if_index, client_fd);
946  template.read_function = vhost_user_socket_read;
947  template.error_function = vhost_user_socket_error;
948  template.file_descriptor = client_fd;
949  template.private_data = vui - vhost_user_main.vhost_user_interfaces;
950  vui->clib_file_index = clib_file_add (&file_main, &template);
951  return 0;
952 }
953 
954 static clib_error_t *
956 {
957  clib_error_t *error;
960 
961  error = vlib_call_init_function (vm, ip4_init);
962  if (error)
963  return error;
964 
965  vum->log_default = vlib_log_register_class ("vhost-user", 0);
966 
967  vum->coalesce_frames = 32;
968  vum->coalesce_time = 1e-3;
969 
970  vec_validate (vum->cpus, tm->n_vlib_mains - 1);
971 
972  vhost_cpu_t *cpu;
973  vec_foreach (cpu, vum->cpus)
974  {
975  /* This is actually not necessary as validate already zeroes it
976  * Just keeping the loop here for later because I am lazy. */
977  cpu->rx_buffers_len = 0;
978  }
979 
980  vum->random = random_default_seed ();
981 
983 
984  return 0;
985 }
986 
988 
989 static uword
992 {
993  vhost_user_intf_t *vui;
994  f64 timeout = 3153600000.0 /* 100 years */ ;
995  uword event_type, *event_data = 0;
997  u16 qid;
998  f64 now, poll_time_remaining;
999  f64 next_timeout;
1000  u8 stop_timer = 0;
1001 
1002  while (1)
1003  {
1004  poll_time_remaining =
1006  event_type = vlib_process_get_events (vm, &event_data);
1007  vec_reset_length (event_data);
1008 
1009  /*
1010  * Use the remaining timeout if it is less than coalesce time to avoid
1011  * resetting the existing timer in the middle of expiration
1012  */
1013  timeout = poll_time_remaining;
1014  if (vlib_process_suspend_time_is_zero (timeout) ||
1015  (timeout > vum->coalesce_time))
1016  timeout = vum->coalesce_time;
1017 
1018  now = vlib_time_now (vm);
1019  switch (event_type)
1020  {
1022  stop_timer = 1;
1023  break;
1024 
1026  stop_timer = 0;
1027  if (!vlib_process_suspend_time_is_zero (poll_time_remaining))
1028  break;
1029  /* fall through */
1030 
1031  case ~0:
1032  /* *INDENT-OFF* */
1033  pool_foreach (vui, vum->vhost_user_interfaces, {
1034  next_timeout = timeout;
1035  for (qid = 0; qid < VHOST_VRING_MAX_N / 2; qid += 2)
1036  {
1037  vhost_user_vring_t *rxvq = &vui->vrings[qid];
1038  vhost_user_vring_t *txvq = &vui->vrings[qid + 1];
1039 
1040  if (txvq->qid == -1)
1041  continue;
1042  if (txvq->n_since_last_int)
1043  {
1044  if (now >= txvq->int_deadline)
1045  vhost_user_send_call (vm, txvq);
1046  else
1047  next_timeout = txvq->int_deadline - now;
1048  }
1049 
1050  if (rxvq->n_since_last_int)
1051  {
1052  if (now >= rxvq->int_deadline)
1053  vhost_user_send_call (vm, rxvq);
1054  else
1055  next_timeout = rxvq->int_deadline - now;
1056  }
1057 
1058  if ((next_timeout < timeout) && (next_timeout > 0.0))
1059  timeout = next_timeout;
1060  }
1061  });
1062  /* *INDENT-ON* */
1063  break;
1064 
1065  default:
1066  clib_warning ("BUG: unhandled event type %d", event_type);
1067  break;
1068  }
1069  /* No less than 1 millisecond */
1070  if (timeout < 1e-3)
1071  timeout = 1e-3;
1072  if (stop_timer)
1073  timeout = 3153600000.0;
1074  }
1075  return 0;
1076 }
1077 
1078 /* *INDENT-OFF* */
1081  .type = VLIB_NODE_TYPE_PROCESS,
1082  .name = "vhost-user-send-interrupt-process",
1083 };
1084 /* *INDENT-ON* */
1085 
1086 static uword
1089 {
1091  vhost_user_intf_t *vui;
1092  struct sockaddr_un sun;
1093  int sockfd;
1094  clib_file_t template = { 0 };
1095  f64 timeout = 3153600000.0 /* 100 years */ ;
1096  uword *event_data = 0;
1097 
1098  sockfd = -1;
1099  sun.sun_family = AF_UNIX;
1101  template.error_function = vhost_user_socket_error;
1102 
1103  while (1)
1104  {
1106  vlib_process_get_events (vm, &event_data);
1107  vec_reset_length (event_data);
1108 
1109  timeout = 3.0;
1110 
1111  /* *INDENT-OFF* */
1112  pool_foreach (vui, vum->vhost_user_interfaces, {
1113 
1114  if (vui->unix_server_index == ~0) { //Nothing to do for server sockets
1115  if (vui->clib_file_index == ~0)
1116  {
1117  if ((sockfd < 0) &&
1118  ((sockfd = socket (AF_UNIX, SOCK_STREAM, 0)) < 0))
1119  {
1120  /*
1121  * 1st time error or new error for this interface,
1122  * spit out the message and record the error
1123  */
1124  if (!vui->sock_errno || (vui->sock_errno != errno))
1125  {
1126  clib_unix_warning
1127  ("Error: Could not open unix socket for %s",
1128  vui->sock_filename);
1129  vui->sock_errno = errno;
1130  }
1131  continue;
1132  }
1133 
1134  /* try to connect */
1135  strncpy (sun.sun_path, (char *) vui->sock_filename,
1136  sizeof (sun.sun_path) - 1);
1137 
1138  /* Avoid hanging VPP if the other end does not accept */
1139  if (fcntl(sockfd, F_SETFL, O_NONBLOCK) < 0)
1140  clib_unix_warning ("fcntl");
1141 
1142  if (connect (sockfd, (struct sockaddr *) &sun,
1143  sizeof (struct sockaddr_un)) == 0)
1144  {
1145  /* Set the socket to blocking as it was before */
1146  if (fcntl(sockfd, F_SETFL, 0) < 0)
1147  clib_unix_warning ("fcntl2");
1148 
1149  vui->sock_errno = 0;
1150  template.file_descriptor = sockfd;
1151  template.private_data =
1152  vui - vhost_user_main.vhost_user_interfaces;
1153  vui->clib_file_index = clib_file_add (&file_main, &template);
1154 
1155  /* This sockfd is considered consumed */
1156  sockfd = -1;
1157  }
1158  else
1159  {
1160  vui->sock_errno = errno;
1161  }
1162  }
1163  else
1164  {
1165  /* check if socket is alive */
1166  int error = 0;
1167  socklen_t len = sizeof (error);
1168  int fd = UNIX_GET_FD(vui->clib_file_index);
1169  int retval =
1170  getsockopt (fd, SOL_SOCKET, SO_ERROR, &error, &len);
1171 
1172  if (retval)
1173  {
1174  vu_log_debug (vui, "getsockopt returned %d", retval);
1175  vhost_user_if_disconnect (vui);
1176  }
1177  }
1178  }
1179  });
1180  /* *INDENT-ON* */
1181  }
1182  return 0;
1183 }
1184 
1185 /* *INDENT-OFF* */
1187  .function = vhost_user_process,
1188  .type = VLIB_NODE_TYPE_PROCESS,
1189  .name = "vhost-user-process",
1190 };
1191 /* *INDENT-ON* */
1192 
1193 /**
1194  * Disables and reset interface structure.
1195  * It can then be either init again, or removed from used interfaces.
1196  */
1197 static void
1199 {
1200  int q;
1202 
1203  // disconnect interface sockets
1206 
1207  for (q = 0; q < VHOST_VRING_MAX_N; q++)
1208  {
1209  // Remove existing queue mapping for the interface
1210  if (q & 1)
1211  {
1212  int rv;
1213  vnet_main_t *vnm = vnet_get_main ();
1214  vhost_user_vring_t *txvq = &vui->vrings[q];
1215 
1216  if (txvq->qid != -1)
1217  {
1219  vui->hw_if_index,
1220  q >> 1);
1221  if (rv)
1222  vu_log_warn (vui, "unable to unassign interface %d, "
1223  "queue %d: rc=%d", vui->hw_if_index, q >> 1, rv);
1224  }
1225  }
1226 
1227  clib_mem_free ((void *) vui->vring_locks[q]);
1228  }
1229 
1230  if (vui->unix_server_index != ~0)
1231  {
1232  //Close server socket
1234  vui->unix_server_index);
1235  clib_file_del (&file_main, uf);
1236  vui->unix_server_index = ~0;
1237  unlink (vui->sock_filename);
1238  }
1239 
1241  &vui->if_index);
1242 }
1243 
1244 int
1246 {
1248  vhost_user_intf_t *vui;
1249  int rv = 0;
1250  vnet_hw_interface_t *hwif;
1251  u16 qid;
1252 
1253  if (!(hwif = vnet_get_sup_hw_interface (vnm, sw_if_index)) ||
1255  return VNET_API_ERROR_INVALID_SW_IF_INDEX;
1256 
1258 
1259  vu_log_debug (vui, "Deleting vhost-user interface %s (instance %d)",
1260  hwif->name, hwif->dev_instance);
1261 
1262  for (qid = 1; qid < VHOST_VRING_MAX_N / 2; qid += 2)
1263  {
1264  vhost_user_vring_t *txvq = &vui->vrings[qid];
1265 
1266  if (txvq->qid == -1)
1267  continue;
1268  if ((vum->ifq_count > 0) &&
1271  {
1272  vum->ifq_count--;
1273  // Stop the timer if there is no more interrupt interface/queue
1274  if ((vum->ifq_count == 0) &&
1275  (vum->coalesce_time > 0.0) && (vum->coalesce_frames > 0))
1276  {
1280  break;
1281  }
1282  }
1283  }
1284 
1285  // Disable and reset interface
1286  vhost_user_term_if (vui);
1287 
1288  // Reset renumbered iface
1289  if (hwif->dev_instance <
1292 
1293  // Delete ethernet interface
1295 
1296  // Back to pool
1297  pool_put (vum->vhost_user_interfaces, vui);
1298 
1299  return rv;
1300 }
1301 
1302 static clib_error_t *
1304 {
1305  vnet_main_t *vnm = vnet_get_main ();
1307  vhost_user_intf_t *vui;
1308 
1310  /* *INDENT-OFF* */
1311  pool_foreach (vui, vum->vhost_user_interfaces, {
1312  vhost_user_delete_if (vnm, vm, vui->sw_if_index);
1313  });
1314  /* *INDENT-ON* */
1316  return 0;
1317 }
1318 
1320 
1321 /**
1322  * Open server unix socket on specified sock_filename.
1323  */
1324 static int
1325 vhost_user_init_server_sock (const char *sock_filename, int *sock_fd)
1326 {
1327  int rv = 0;
1328  struct sockaddr_un un = { };
1329  int fd;
1330  /* create listening socket */
1331  if ((fd = socket (AF_UNIX, SOCK_STREAM, 0)) < 0)
1332  return VNET_API_ERROR_SYSCALL_ERROR_1;
1333 
1334  un.sun_family = AF_UNIX;
1335  strncpy ((char *) un.sun_path, (char *) sock_filename,
1336  sizeof (un.sun_path) - 1);
1337 
1338  /* remove if exists */
1339  unlink ((char *) sock_filename);
1340 
1341  if (bind (fd, (struct sockaddr *) &un, sizeof (un)) == -1)
1342  {
1343  rv = VNET_API_ERROR_SYSCALL_ERROR_2;
1344  goto error;
1345  }
1346 
1347  if (listen (fd, 1) == -1)
1348  {
1349  rv = VNET_API_ERROR_SYSCALL_ERROR_3;
1350  goto error;
1351  }
1352 
1353  *sock_fd = fd;
1354  return 0;
1355 
1356 error:
1357  close (fd);
1358  return rv;
1359 }
1360 
1361 /**
1362  * Create ethernet interface for vhost user interface.
1363  */
1364 static void
1366  vhost_user_intf_t * vui, u8 * hwaddress)
1367 {
1369  u8 hwaddr[6];
1370  clib_error_t *error;
1371 
1372  /* create hw and sw interface */
1373  if (hwaddress)
1374  {
1375  clib_memcpy (hwaddr, hwaddress, 6);
1376  }
1377  else
1378  {
1379  random_u32 (&vum->random);
1380  clib_memcpy (hwaddr + 2, &vum->random, sizeof (vum->random));
1381  hwaddr[0] = 2;
1382  hwaddr[1] = 0xfe;
1383  }
1384 
1386  (vnm,
1388  vui - vum->vhost_user_interfaces /* device instance */ ,
1389  hwaddr /* ethernet address */ ,
1390  &vui->hw_if_index, 0 /* flag change */ );
1391 
1392  if (error)
1393  clib_error_report (error);
1394 }
1395 
1396 /*
1397  * Initialize vui with specified attributes
1398  */
1399 static void
1401  vhost_user_intf_t * vui,
1402  int server_sock_fd,
1403  const char *sock_filename,
1404  u64 feature_mask, u32 * sw_if_index)
1405 {
1406  vnet_sw_interface_t *sw;
1407  int q;
1409  vnet_hw_interface_t *hw;
1410 
1411  hw = vnet_get_hw_interface (vnm, vui->hw_if_index);
1412  sw = vnet_get_hw_sw_interface (vnm, vui->hw_if_index);
1413  if (server_sock_fd != -1)
1414  {
1415  clib_file_t template = { 0 };
1417  template.file_descriptor = server_sock_fd;
1418  template.private_data = vui - vum->vhost_user_interfaces; //hw index
1419  vui->unix_server_index = clib_file_add (&file_main, &template);
1420  }
1421  else
1422  {
1423  vui->unix_server_index = ~0;
1424  }
1425 
1426  vui->sw_if_index = sw->sw_if_index;
1427  strncpy (vui->sock_filename, sock_filename,
1428  ARRAY_LEN (vui->sock_filename) - 1);
1429  vui->sock_errno = 0;
1430  vui->is_ready = 0;
1431  vui->feature_mask = feature_mask;
1432  vui->clib_file_index = ~0;
1433  vui->log_base_addr = 0;
1434  vui->if_index = vui - vum->vhost_user_interfaces;
1436  &vui->if_index, 0);
1437 
1438  for (q = 0; q < VHOST_VRING_MAX_N; q++)
1439  vhost_user_vring_init (vui, q);
1440 
1443 
1444  if (sw_if_index)
1445  *sw_if_index = vui->sw_if_index;
1446 
1447  for (q = 0; q < VHOST_VRING_MAX_N; q++)
1448  {
1451  clib_memset ((void *) vui->vring_locks[q], 0, CLIB_CACHE_LINE_BYTES);
1452  }
1453 
1455  vlib_get_thread_main ()->n_vlib_mains - 1);
1457 }
1458 
1459 int
1461  const char *sock_filename,
1462  u8 is_server,
1463  u32 * sw_if_index,
1464  u64 feature_mask,
1465  u8 renumber, u32 custom_dev_instance, u8 * hwaddr)
1466 {
1467  vhost_user_intf_t *vui = NULL;
1468  u32 sw_if_idx = ~0;
1469  int rv = 0;
1470  int server_sock_fd = -1;
1472  uword *if_index;
1473 
1474  if (sock_filename == NULL || !(strlen (sock_filename) > 0))
1475  {
1476  return VNET_API_ERROR_INVALID_ARGUMENT;
1477  }
1478 
1479  if_index = mhash_get (&vum->if_index_by_sock_name, (void *) sock_filename);
1480  if (if_index)
1481  {
1482  if (sw_if_index)
1483  {
1484  vui = &vum->vhost_user_interfaces[*if_index];
1485  *sw_if_index = vui->sw_if_index;
1486  }
1487  return VNET_API_ERROR_IF_ALREADY_EXISTS;
1488  }
1489 
1490  if (is_server)
1491  {
1492  if ((rv =
1493  vhost_user_init_server_sock (sock_filename, &server_sock_fd)) != 0)
1494  {
1495  return rv;
1496  }
1497  }
1498 
1499  /* Protect the uninitialized vui from being dispatched by rx/tx */
1501  pool_get (vhost_user_main.vhost_user_interfaces, vui);
1502  vhost_user_create_ethernet (vnm, vm, vui, hwaddr);
1504 
1505  vhost_user_vui_init (vnm, vui, server_sock_fd, sock_filename,
1506  feature_mask, &sw_if_idx);
1507  vnet_sw_interface_set_mtu (vnm, vui->sw_if_index, 9000);
1509 
1510  if (renumber)
1511  vnet_interface_name_renumber (sw_if_idx, custom_dev_instance);
1512 
1513  if (sw_if_index)
1514  *sw_if_index = sw_if_idx;
1515 
1516  // Process node must connect
1518 
1519  return rv;
1520 }
1521 
1522 int
1524  const char *sock_filename,
1525  u8 is_server,
1526  u32 sw_if_index,
1527  u64 feature_mask, u8 renumber, u32 custom_dev_instance)
1528 {
1530  vhost_user_intf_t *vui = NULL;
1531  u32 sw_if_idx = ~0;
1532  int server_sock_fd = -1;
1533  int rv = 0;
1534  vnet_hw_interface_t *hwif;
1535  uword *if_index;
1536 
1537  if (!(hwif = vnet_get_sup_hw_interface (vnm, sw_if_index)) ||
1539  return VNET_API_ERROR_INVALID_SW_IF_INDEX;
1540 
1541  if (sock_filename == NULL || !(strlen (sock_filename) > 0))
1542  return VNET_API_ERROR_INVALID_ARGUMENT;
1543 
1545 
1546  /*
1547  * Disallow changing the interface to have the same path name
1548  * as other interface
1549  */
1550  if_index = mhash_get (&vum->if_index_by_sock_name, (void *) sock_filename);
1551  if (if_index && (*if_index != vui->if_index))
1552  return VNET_API_ERROR_IF_ALREADY_EXISTS;
1553 
1554  // First try to open server socket
1555  if (is_server)
1556  if ((rv = vhost_user_init_server_sock (sock_filename,
1557  &server_sock_fd)) != 0)
1558  return rv;
1559 
1560  vhost_user_term_if (vui);
1561  vhost_user_vui_init (vnm, vui, server_sock_fd,
1562  sock_filename, feature_mask, &sw_if_idx);
1563 
1564  if (renumber)
1565  vnet_interface_name_renumber (sw_if_idx, custom_dev_instance);
1566 
1567  // Process node must connect
1569 
1570  return rv;
1571 }
1572 
1573 clib_error_t *
1575  unformat_input_t * input,
1576  vlib_cli_command_t * cmd)
1577 {
1578  unformat_input_t _line_input, *line_input = &_line_input;
1579  u8 *sock_filename = NULL;
1580  u32 sw_if_index;
1581  u8 is_server = 0;
1582  u64 feature_mask = (u64) ~ (0ULL);
1583  u8 renumber = 0;
1584  u32 custom_dev_instance = ~0;
1585  u8 hwaddr[6];
1586  u8 *hw = NULL;
1587  clib_error_t *error = NULL;
1588 
1589  /* Get a line of input. */
1590  if (!unformat_user (input, unformat_line_input, line_input))
1591  return 0;
1592 
1593  while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
1594  {
1595  if (unformat (line_input, "socket %s", &sock_filename))
1596  ;
1597  else if (unformat (line_input, "server"))
1598  is_server = 1;
1599  else if (unformat (line_input, "feature-mask 0x%llx", &feature_mask))
1600  ;
1601  else
1602  if (unformat
1603  (line_input, "hwaddr %U", unformat_ethernet_address, hwaddr))
1604  hw = hwaddr;
1605  else if (unformat (line_input, "renumber %d", &custom_dev_instance))
1606  {
1607  renumber = 1;
1608  }
1609  else
1610  {
1611  error = clib_error_return (0, "unknown input `%U'",
1612  format_unformat_error, line_input);
1613  goto done;
1614  }
1615  }
1616 
1617  vnet_main_t *vnm = vnet_get_main ();
1618 
1619  int rv;
1620  if ((rv = vhost_user_create_if (vnm, vm, (char *) sock_filename,
1621  is_server, &sw_if_index, feature_mask,
1622  renumber, custom_dev_instance, hw)))
1623  {
1624  error = clib_error_return (0, "vhost_user_create_if returned %d", rv);
1625  goto done;
1626  }
1627 
1629  sw_if_index);
1630 
1631 done:
1632  vec_free (sock_filename);
1633  unformat_free (line_input);
1634 
1635  return error;
1636 }
1637 
1638 clib_error_t *
1640  unformat_input_t * input,
1641  vlib_cli_command_t * cmd)
1642 {
1643  unformat_input_t _line_input, *line_input = &_line_input;
1644  u32 sw_if_index = ~0;
1645  vnet_main_t *vnm = vnet_get_main ();
1646  clib_error_t *error = NULL;
1647 
1648  /* Get a line of input. */
1649  if (!unformat_user (input, unformat_line_input, line_input))
1650  return 0;
1651 
1652  while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
1653  {
1654  if (unformat (line_input, "sw_if_index %d", &sw_if_index))
1655  ;
1656  else if (unformat
1657  (line_input, "%U", unformat_vnet_sw_interface, vnm,
1658  &sw_if_index))
1659  {
1660  vnet_hw_interface_t *hwif =
1661  vnet_get_sup_hw_interface (vnm, sw_if_index);
1662  if (hwif == NULL ||
1664  {
1665  error = clib_error_return (0, "Not a vhost interface");
1666  goto done;
1667  }
1668  }
1669  else
1670  {
1671  error = clib_error_return (0, "unknown input `%U'",
1672  format_unformat_error, line_input);
1673  goto done;
1674  }
1675  }
1676 
1677  vhost_user_delete_if (vnm, vm, sw_if_index);
1678 
1679 done:
1680  unformat_free (line_input);
1681 
1682  return error;
1683 }
1684 
1685 int
1687  vhost_user_intf_details_t ** out_vuids)
1688 {
1689  int rv = 0;
1691  vhost_user_intf_t *vui;
1692  vhost_user_intf_details_t *r_vuids = NULL;
1694  u32 *hw_if_indices = 0;
1696  u8 *s = NULL;
1697  int i;
1698 
1699  if (!out_vuids)
1700  return -1;
1701 
1703  vec_add1 (hw_if_indices, vui->hw_if_index);
1704  );
1705 
1706  for (i = 0; i < vec_len (hw_if_indices); i++)
1707  {
1708  hi = vnet_get_hw_interface (vnm, hw_if_indices[i]);
1710 
1711  vec_add2 (r_vuids, vuid, 1);
1712  vuid->sw_if_index = vui->sw_if_index;
1713  vuid->virtio_net_hdr_sz = vui->virtio_net_hdr_sz;
1714  vuid->features = vui->features;
1715  vuid->num_regions = vui->nregions;
1716  vuid->is_server = vui->unix_server_index != ~0;
1717  vuid->sock_errno = vui->sock_errno;
1718  strncpy ((char *) vuid->sock_filename, (char *) vui->sock_filename,
1719  sizeof (vuid->sock_filename));
1720  vuid->sock_filename[ARRAY_LEN (vuid->sock_filename) - 1] = '\0';
1721  s = format (s, "%v%c", hi->name, 0);
1722 
1723  strncpy ((char *) vuid->if_name, (char *) s,
1724  ARRAY_LEN (vuid->if_name) - 1);
1725  _vec_len (s) = 0;
1726  }
1727 
1728  vec_free (s);
1729  vec_free (hw_if_indices);
1730 
1731  *out_vuids = r_vuids;
1732 
1733  return rv;
1734 }
1735 
1736 clib_error_t *
1738  unformat_input_t * input,
1739  vlib_cli_command_t * cmd)
1740 {
1741  clib_error_t *error = 0;
1742  vnet_main_t *vnm = vnet_get_main ();
1744  vhost_user_intf_t *vui;
1745  u32 hw_if_index, *hw_if_indices = 0;
1747  u16 qid;
1748  u32 ci;
1749  int i, j, q;
1750  int show_descr = 0;
1751  struct feat_struct
1752  {
1753  u8 bit;
1754  char *str;
1755  };
1756  struct feat_struct *feat_entry;
1757 
1758  static struct feat_struct feat_array[] = {
1759 #define _(s,b) { .str = #s, .bit = b, },
1761 #undef _
1762  {.str = NULL}
1763  };
1764 
1765 #define foreach_protocol_feature \
1766  _(VHOST_USER_PROTOCOL_F_MQ) \
1767  _(VHOST_USER_PROTOCOL_F_LOG_SHMFD)
1768 
1769  static struct feat_struct proto_feat_array[] = {
1770 #define _(s) { .str = #s, .bit = s},
1772 #undef _
1773  {.str = NULL}
1774  };
1775 
1776  while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
1777  {
1778  if (unformat
1779  (input, "%U", unformat_vnet_hw_interface, vnm, &hw_if_index))
1780  {
1781  hi = vnet_get_hw_interface (vnm, hw_if_index);
1782  if (vhost_user_device_class.index != hi->dev_class_index)
1783  {
1784  error = clib_error_return (0, "unknown input `%U'",
1785  format_unformat_error, input);
1786  goto done;
1787  }
1788  vec_add1 (hw_if_indices, hw_if_index);
1789  }
1790  else if (unformat (input, "descriptors") || unformat (input, "desc"))
1791  show_descr = 1;
1792  else
1793  {
1794  error = clib_error_return (0, "unknown input `%U'",
1795  format_unformat_error, input);
1796  goto done;
1797  }
1798  }
1799  if (vec_len (hw_if_indices) == 0)
1800  {
1802  vec_add1 (hw_if_indices, vui->hw_if_index);
1803  );
1804  }
1805  vlib_cli_output (vm, "Virtio vhost-user interfaces");
1806  vlib_cli_output (vm, "Global:\n coalesce frames %d time %e",
1807  vum->coalesce_frames, vum->coalesce_time);
1808  vlib_cli_output (vm, " number of rx virtqueues in interrupt mode: %d",
1809  vum->ifq_count);
1810 
1811  for (i = 0; i < vec_len (hw_if_indices); i++)
1812  {
1813  hi = vnet_get_hw_interface (vnm, hw_if_indices[i]);
1815  vlib_cli_output (vm, "Interface: %U (ifindex %d)",
1816  format_vnet_hw_if_index_name, vnm, hw_if_indices[i],
1817  hw_if_indices[i]);
1818 
1819  vlib_cli_output (vm, "virtio_net_hdr_sz %d\n"
1820  " features mask (0x%llx): \n"
1821  " features (0x%llx): \n",
1822  vui->virtio_net_hdr_sz, vui->feature_mask,
1823  vui->features);
1824 
1825  feat_entry = (struct feat_struct *) &feat_array;
1826  while (feat_entry->str)
1827  {
1828  if (vui->features & (1ULL << feat_entry->bit))
1829  vlib_cli_output (vm, " %s (%d)", feat_entry->str,
1830  feat_entry->bit);
1831  feat_entry++;
1832  }
1833 
1834  vlib_cli_output (vm, " protocol features (0x%llx)",
1835  vui->protocol_features);
1836  feat_entry = (struct feat_struct *) &proto_feat_array;
1837  while (feat_entry->str)
1838  {
1839  if (vui->protocol_features & (1ULL << feat_entry->bit))
1840  vlib_cli_output (vm, " %s (%d)", feat_entry->str,
1841  feat_entry->bit);
1842  feat_entry++;
1843  }
1844 
1845  vlib_cli_output (vm, "\n");
1846 
1847  vlib_cli_output (vm, " socket filename %s type %s errno \"%s\"\n\n",
1848  vui->sock_filename,
1849  (vui->unix_server_index != ~0) ? "server" : "client",
1850  strerror (vui->sock_errno));
1851 
1852  vlib_cli_output (vm, " rx placement: ");
1853 
1854  for (qid = 1; qid < VHOST_VRING_MAX_N / 2; qid += 2)
1855  {
1856  vnet_main_t *vnm = vnet_get_main ();
1857  uword thread_index;
1859  vhost_user_vring_t *txvq = &vui->vrings[qid];
1860 
1861  if (txvq->qid == -1)
1862  continue;
1863  thread_index =
1865  qid >> 1);
1866  vnet_hw_interface_get_rx_mode (vnm, vui->hw_if_index, qid >> 1,
1867  &mode);
1868  vlib_cli_output (vm, " thread %d on vring %d, %U\n",
1869  thread_index, qid,
1871  }
1872 
1873  vlib_cli_output (vm, " tx placement: %s\n",
1874  vui->use_tx_spinlock ? "spin-lock" : "lock-free");
1875 
1877  {
1878  vlib_cli_output (vm, " thread %d on vring %d\n", ci,
1879  VHOST_VRING_IDX_RX (vui->per_cpu_tx_qid[ci]));
1880  }
1881 
1882  vlib_cli_output (vm, "\n");
1883 
1884  vlib_cli_output (vm, " Memory regions (total %d)\n", vui->nregions);
1885 
1886  if (vui->nregions)
1887  {
1888  vlib_cli_output (vm,
1889  " region fd guest_phys_addr memory_size userspace_addr mmap_offset mmap_addr\n");
1890  vlib_cli_output (vm,
1891  " ====== ===== ================== ================== ================== ================== ==================\n");
1892  }
1893  for (j = 0; j < vui->nregions; j++)
1894  {
1895  vlib_cli_output (vm,
1896  " %d %-5d 0x%016lx 0x%016lx 0x%016lx 0x%016lx 0x%016lx\n",
1897  j, vui->region_mmap_fd[j],
1898  vui->regions[j].guest_phys_addr,
1899  vui->regions[j].memory_size,
1900  vui->regions[j].userspace_addr,
1901  vui->regions[j].mmap_offset,
1903  }
1904  for (q = 0; q < VHOST_VRING_MAX_N; q++)
1905  {
1906  if (!vui->vrings[q].started)
1907  continue;
1908 
1909  vlib_cli_output (vm, "\n Virtqueue %d (%s%s)\n", q,
1910  (q & 1) ? "RX" : "TX",
1911  vui->vrings[q].enabled ? "" : " disabled");
1912 
1913  vlib_cli_output (vm,
1914  " qsz %d last_avail_idx %d last_used_idx %d\n",
1915  vui->vrings[q].qsz_mask + 1,
1916  vui->vrings[q].last_avail_idx,
1917  vui->vrings[q].last_used_idx);
1918 
1919  if (vui->vrings[q].avail && vui->vrings[q].used)
1920  vlib_cli_output (vm,
1921  " avail.flags %x avail.idx %d used.flags %x used.idx %d\n",
1922  vui->vrings[q].avail->flags,
1923  vui->vrings[q].avail->idx,
1924  vui->vrings[q].used->flags,
1925  vui->vrings[q].used->idx);
1926 
1927  int kickfd = UNIX_GET_FD (vui->vrings[q].kickfd_idx);
1928  int callfd = UNIX_GET_FD (vui->vrings[q].callfd_idx);
1929  vlib_cli_output (vm, " kickfd %d callfd %d errfd %d\n",
1930  kickfd, callfd, vui->vrings[q].errfd);
1931 
1932  if (show_descr)
1933  {
1934  vlib_cli_output (vm, "\n descriptor table:\n");
1935  vlib_cli_output (vm,
1936  " id addr len flags next user_addr\n");
1937  vlib_cli_output (vm,
1938  " ===== ================== ===== ====== ===== ==================\n");
1939  for (j = 0; j < vui->vrings[q].qsz_mask + 1; j++)
1940  {
1941  u32 mem_hint = 0;
1942  vlib_cli_output (vm,
1943  " %-5d 0x%016lx %-5d 0x%04x %-5d 0x%016lx\n",
1944  j, vui->vrings[q].desc[j].addr,
1945  vui->vrings[q].desc[j].len,
1946  vui->vrings[q].desc[j].flags,
1947  vui->vrings[q].desc[j].next,
1949  (vui,
1950  vui->vrings[q].desc[j].
1951  addr, &mem_hint)));
1952  }
1953  }
1954  }
1955  vlib_cli_output (vm, "\n");
1956  }
1957 done:
1958  vec_free (hw_if_indices);
1959  return error;
1960 }
1961 
1962 /*
1963  * CLI functions
1964  */
1965 
1966 /*?
1967  * Create a vHost User interface. Once created, a new virtual interface
1968  * will exist with the name '<em>VirtualEthernet0/0/x</em>', where '<em>x</em>'
1969  * is the next free index.
1970  *
1971  * There are several parameters associated with a vHost interface:
1972  *
1973  * - <b>socket <socket-filename></b> - Name of the linux socket used by hypervisor
1974  * and VPP to manage the vHost interface. If in '<em>server</em>' mode, VPP will
1975  * create the socket if it does not already exist. If in '<em>client</em>' mode,
1976  * hypervisor will create the socket if it does not already exist. The VPP code
1977  * is indifferent to the file location. However, if SELinux is enabled, then the
1978  * socket needs to be created in '<em>/var/run/vpp/</em>'.
1979  *
1980  * - <b>server</b> - Optional flag to indicate that VPP should be the server for
1981  * the linux socket. If not provided, VPP will be the client. In '<em>server</em>'
1982  * mode, the VM can be reset without tearing down the vHost Interface. In
1983  * '<em>client</em>' mode, VPP can be reset without bringing down the VM and
1984  * tearing down the vHost Interface.
1985  *
1986  * - <b>feature-mask <hex></b> - Optional virtio/vhost feature set negotiated at
1987  * startup. <b>This is intended for degugging only.</b> It is recommended that this
1988  * parameter not be used except by experienced users. By default, all supported
1989  * features will be advertised. Otherwise, provide the set of features desired.
1990  * - 0x000008000 (15) - VIRTIO_NET_F_MRG_RXBUF
1991  * - 0x000020000 (17) - VIRTIO_NET_F_CTRL_VQ
1992  * - 0x000200000 (21) - VIRTIO_NET_F_GUEST_ANNOUNCE
1993  * - 0x000400000 (22) - VIRTIO_NET_F_MQ
1994  * - 0x004000000 (26) - VHOST_F_LOG_ALL
1995  * - 0x008000000 (27) - VIRTIO_F_ANY_LAYOUT
1996  * - 0x010000000 (28) - VIRTIO_F_INDIRECT_DESC
1997  * - 0x040000000 (30) - VHOST_USER_F_PROTOCOL_FEATURES
1998  * - 0x100000000 (32) - VIRTIO_F_VERSION_1
1999  *
2000  * - <b>hwaddr <mac-addr></b> - Optional ethernet address, can be in either
2001  * X:X:X:X:X:X unix or X.X.X cisco format.
2002  *
2003  * - <b>renumber <dev_instance></b> - Optional parameter which allows the instance
2004  * in the name to be specified. If instance already exists, name will be used
2005  * anyway and multiple instances will have the same name. Use with caution.
2006  *
2007  * @cliexpar
2008  * Example of how to create a vhost interface with VPP as the client and all features enabled:
2009  * @cliexstart{create vhost-user socket /var/run/vpp/vhost1.sock}
2010  * VirtualEthernet0/0/0
2011  * @cliexend
2012  * Example of how to create a vhost interface with VPP as the server and with just
2013  * multiple queues enabled:
2014  * @cliexstart{create vhost-user socket /var/run/vpp/vhost2.sock server feature-mask 0x40400000}
2015  * VirtualEthernet0/0/1
2016  * @cliexend
2017  * Once the vHost interface is created, enable the interface using:
2018  * @cliexcmd{set interface state VirtualEthernet0/0/0 up}
2019 ?*/
2020 /* *INDENT-OFF* */
2021 VLIB_CLI_COMMAND (vhost_user_connect_command, static) = {
2022  .path = "create vhost-user",
2023  .short_help = "create vhost-user socket <socket-filename> [server] "
2024  "[feature-mask <hex>] [hwaddr <mac-addr>] [renumber <dev_instance>] ",
2025  .function = vhost_user_connect_command_fn,
2026  .is_mp_safe = 1,
2027 };
2028 /* *INDENT-ON* */
2029 
2030 /*?
2031  * Delete a vHost User interface using the interface name or the
2032  * software interface index. Use the '<em>show interface</em>'
2033  * command to determine the software interface index. On deletion,
2034  * the linux socket will not be deleted.
2035  *
2036  * @cliexpar
2037  * Example of how to delete a vhost interface by name:
2038  * @cliexcmd{delete vhost-user VirtualEthernet0/0/1}
2039  * Example of how to delete a vhost interface by software interface index:
2040  * @cliexcmd{delete vhost-user sw_if_index 1}
2041 ?*/
2042 /* *INDENT-OFF* */
2043 VLIB_CLI_COMMAND (vhost_user_delete_command, static) = {
2044  .path = "delete vhost-user",
2045  .short_help = "delete vhost-user {<interface> | sw_if_index <sw_idx>}",
2046  .function = vhost_user_delete_command_fn,
2047 };
2048 
2049 /*?
2050  * Display the attributes of a single vHost User interface (provide interface
2051  * name), multiple vHost User interfaces (provide a list of interface names seperated
2052  * by spaces) or all Vhost User interfaces (omit an interface name to display all
2053  * vHost interfaces).
2054  *
2055  * @cliexpar
2056  * @parblock
2057  * Example of how to display a vhost interface:
2058  * @cliexstart{show vhost-user VirtualEthernet0/0/0}
2059  * Virtio vhost-user interfaces
2060  * Global:
2061  * coalesce frames 32 time 1e-3
2062  * Interface: VirtualEthernet0/0/0 (ifindex 1)
2063  * virtio_net_hdr_sz 12
2064  * features mask (0xffffffffffffffff):
2065  * features (0x50408000):
2066  * VIRTIO_NET_F_MRG_RXBUF (15)
2067  * VIRTIO_NET_F_MQ (22)
2068  * VIRTIO_F_INDIRECT_DESC (28)
2069  * VHOST_USER_F_PROTOCOL_FEATURES (30)
2070  * protocol features (0x3)
2071  * VHOST_USER_PROTOCOL_F_MQ (0)
2072  * VHOST_USER_PROTOCOL_F_LOG_SHMFD (1)
2073  *
2074  * socket filename /var/run/vpp/vhost1.sock type client errno "Success"
2075  *
2076  * rx placement:
2077  * thread 1 on vring 1
2078  * thread 1 on vring 5
2079  * thread 2 on vring 3
2080  * thread 2 on vring 7
2081  * tx placement: spin-lock
2082  * thread 0 on vring 0
2083  * thread 1 on vring 2
2084  * thread 2 on vring 0
2085  *
2086  * Memory regions (total 2)
2087  * region fd guest_phys_addr memory_size userspace_addr mmap_offset mmap_addr
2088  * ====== ===== ================== ================== ================== ================== ==================
2089  * 0 60 0x0000000000000000 0x00000000000a0000 0x00002aaaaac00000 0x0000000000000000 0x00002aab2b400000
2090  * 1 61 0x00000000000c0000 0x000000003ff40000 0x00002aaaaacc0000 0x00000000000c0000 0x00002aababcc0000
2091  *
2092  * Virtqueue 0 (TX)
2093  * qsz 256 last_avail_idx 0 last_used_idx 0
2094  * avail.flags 1 avail.idx 128 used.flags 1 used.idx 0
2095  * kickfd 62 callfd 64 errfd -1
2096  *
2097  * Virtqueue 1 (RX)
2098  * qsz 256 last_avail_idx 0 last_used_idx 0
2099  * avail.flags 1 avail.idx 0 used.flags 1 used.idx 0
2100  * kickfd 65 callfd 66 errfd -1
2101  *
2102  * Virtqueue 2 (TX)
2103  * qsz 256 last_avail_idx 0 last_used_idx 0
2104  * avail.flags 1 avail.idx 128 used.flags 1 used.idx 0
2105  * kickfd 63 callfd 70 errfd -1
2106  *
2107  * Virtqueue 3 (RX)
2108  * qsz 256 last_avail_idx 0 last_used_idx 0
2109  * avail.flags 1 avail.idx 0 used.flags 1 used.idx 0
2110  * kickfd 72 callfd 74 errfd -1
2111  *
2112  * Virtqueue 4 (TX disabled)
2113  * qsz 256 last_avail_idx 0 last_used_idx 0
2114  * avail.flags 1 avail.idx 0 used.flags 1 used.idx 0
2115  * kickfd 76 callfd 78 errfd -1
2116  *
2117  * Virtqueue 5 (RX disabled)
2118  * qsz 256 last_avail_idx 0 last_used_idx 0
2119  * avail.flags 1 avail.idx 0 used.flags 1 used.idx 0
2120  * kickfd 80 callfd 82 errfd -1
2121  *
2122  * Virtqueue 6 (TX disabled)
2123  * qsz 256 last_avail_idx 0 last_used_idx 0
2124  * avail.flags 1 avail.idx 0 used.flags 1 used.idx 0
2125  * kickfd 84 callfd 86 errfd -1
2126  *
2127  * Virtqueue 7 (RX disabled)
2128  * qsz 256 last_avail_idx 0 last_used_idx 0
2129  * avail.flags 1 avail.idx 0 used.flags 1 used.idx 0
2130  * kickfd 88 callfd 90 errfd -1
2131  *
2132  * @cliexend
2133  *
2134  * The optional '<em>descriptors</em>' parameter will display the same output as
2135  * the previous example but will include the descriptor table for each queue.
2136  * The output is truncated below:
2137  * @cliexstart{show vhost-user VirtualEthernet0/0/0 descriptors}
2138  * Virtio vhost-user interfaces
2139  * Global:
2140  * coalesce frames 32 time 1e-3
2141  * Interface: VirtualEthernet0/0/0 (ifindex 1)
2142  * virtio_net_hdr_sz 12
2143  * features mask (0xffffffffffffffff):
2144  * features (0x50408000):
2145  * VIRTIO_NET_F_MRG_RXBUF (15)
2146  * VIRTIO_NET_F_MQ (22)
2147  * :
2148  * Virtqueue 0 (TX)
2149  * qsz 256 last_avail_idx 0 last_used_idx 0
2150  * avail.flags 1 avail.idx 128 used.flags 1 used.idx 0
2151  * kickfd 62 callfd 64 errfd -1
2152  *
2153  * descriptor table:
2154  * id addr len flags next user_addr
2155  * ===== ================== ===== ====== ===== ==================
2156  * 0 0x0000000010b6e974 2060 0x0002 1 0x00002aabbc76e974
2157  * 1 0x0000000010b6e034 2060 0x0002 2 0x00002aabbc76e034
2158  * 2 0x0000000010b6d6f4 2060 0x0002 3 0x00002aabbc76d6f4
2159  * 3 0x0000000010b6cdb4 2060 0x0002 4 0x00002aabbc76cdb4
2160  * 4 0x0000000010b6c474 2060 0x0002 5 0x00002aabbc76c474
2161  * 5 0x0000000010b6bb34 2060 0x0002 6 0x00002aabbc76bb34
2162  * 6 0x0000000010b6b1f4 2060 0x0002 7 0x00002aabbc76b1f4
2163  * 7 0x0000000010b6a8b4 2060 0x0002 8 0x00002aabbc76a8b4
2164  * 8 0x0000000010b69f74 2060 0x0002 9 0x00002aabbc769f74
2165  * 9 0x0000000010b69634 2060 0x0002 10 0x00002aabbc769634
2166  * 10 0x0000000010b68cf4 2060 0x0002 11 0x00002aabbc768cf4
2167  * :
2168  * 249 0x0000000000000000 0 0x0000 250 0x00002aab2b400000
2169  * 250 0x0000000000000000 0 0x0000 251 0x00002aab2b400000
2170  * 251 0x0000000000000000 0 0x0000 252 0x00002aab2b400000
2171  * 252 0x0000000000000000 0 0x0000 253 0x00002aab2b400000
2172  * 253 0x0000000000000000 0 0x0000 254 0x00002aab2b400000
2173  * 254 0x0000000000000000 0 0x0000 255 0x00002aab2b400000
2174  * 255 0x0000000000000000 0 0x0000 32768 0x00002aab2b400000
2175  *
2176  * Virtqueue 1 (RX)
2177  * qsz 256 last_avail_idx 0 last_used_idx 0
2178  * :
2179  * @cliexend
2180  * @endparblock
2181 ?*/
2182 /* *INDENT-OFF* */
2183 VLIB_CLI_COMMAND (show_vhost_user_command, static) = {
2184  .path = "show vhost-user",
2185  .short_help = "show vhost-user [<interface> [<interface> [..]]] [descriptors]",
2186  .function = show_vhost_user_command_fn,
2187 };
2188 /* *INDENT-ON* */
2189 
2190 
2191 static clib_error_t *
2193 {
2195 
2196  while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
2197  {
2198  if (unformat (input, "coalesce-frames %d", &vum->coalesce_frames))
2199  ;
2200  else if (unformat (input, "coalesce-time %f", &vum->coalesce_time))
2201  ;
2202  else if (unformat (input, "dont-dump-memory"))
2203  vum->dont_dump_vhost_user_memory = 1;
2204  else
2205  return clib_error_return (0, "unknown input `%U'",
2206  format_unformat_error, input);
2207  }
2208 
2209  return 0;
2210 }
2211 
2212 /* vhost-user { ... } configuration. */
2213 VLIB_CONFIG_FUNCTION (vhost_user_config, "vhost-user");
2214 
2215 void
2217 {
2219  vhost_user_intf_t *vui;
2220 
2221  if (vum->dont_dump_vhost_user_memory)
2222  {
2224  unmap_all_mem_regions (vui);
2225  );
2226  }
2227 }
2228 
2229 /*
2230  * fd.io coding-style-patch-verification: ON
2231  *
2232  * Local Variables:
2233  * eval: (c-set-style "gnu")
2234  * End:
2235  */
unformat_function_t unformat_vnet_hw_interface
vlib_log_class_t vlib_log_register_class(char *class, char *subclass)
Definition: log.c:227
#define vec_validate(V, I)
Make sure vector is long enough for given index (no header, unspecified alignment) ...
Definition: vec.h:439
vmrglw vmrglh hi
#define vec_foreach_index(var, v)
Iterate over vector indices.
static void clib_file_del(clib_file_main_t *um, clib_file_t *f)
Definition: file.h:109
format_function_t format_vnet_hw_if_index_name
#define vu_log_warn(dev, f,...)
Definition: vhost_user.h:55
vring_desc_t * desc
Definition: vhost_user.h:237
static uword random_default_seed(void)
Default random seed (unix/linux user-mode)
Definition: random.h:91
#define VHOST_USER_PROTOCOL_F_LOG_SHMFD
Definition: vhost_user.h:32
static f64 vlib_process_wait_for_event_or_clock(vlib_main_t *vm, f64 dt)
Suspend a cooperative multi-tasking thread Waits for an event, or for the indicated number of seconds...
Definition: node_funcs.h:673
VNET_HW_INTERFACE_CLASS(vhost_interface_class, static)
vhost_cpu_t * cpus
Per-CPU data for vhost-user.
Definition: vhost_user.h:350
void ethernet_delete_interface(vnet_main_t *vnm, u32 hw_if_index)
Definition: interface.c:323
vnet_main_t * vnet_get_main(void)
Definition: misc.c:47
static vnet_hw_interface_t * vnet_get_sup_hw_interface(vnet_main_t *vnm, u32 sw_if_index)
u64 region_guest_addr_hi[VHOST_MEMORY_MAX_NREGIONS]
Definition: vhost_user.h:288
static clib_error_t * vhost_user_socksvr_accept_ready(clib_file_t *uf)
Definition: vhost_user.c:919
unsigned long u64
Definition: types.h:89
#define VHOST_VRING_MAX_N
Definition: vhost_user.h:22
#define clib_memcpy_fast(a, b, c)
Definition: string.h:81
#define NULL
Definition: clib.h:58
uword mhash_unset(mhash_t *h, void *key, uword *old_value)
Definition: mhash.c:353
clib_memset(h->entries, 0, sizeof(h->entries[0]) *entries)
static f64 vlib_time_now(vlib_main_t *vm)
Definition: main.h:232
static_always_inline void vhost_user_update_iface_state(vhost_user_intf_t *vui)
Definition: vhost_user.c:197
#define VLIB_BUFFER_PRE_DATA_SIZE
Definition: buffer.h:52
vring_avail_t * avail
Definition: vhost_user.h:238
static vnet_hw_interface_t * vnet_get_hw_interface(vnet_main_t *vnm, u32 hw_if_index)
u32 file_descriptor
Definition: file.h:54
vnet_device_class_t vhost_user_device_class
#define vec_add1(V, E)
Add 1 element to end of vector (unspecified alignment).
Definition: vec.h:525
int vnet_interface_name_renumber(u32 sw_if_index, u32 new_show_dev_instance)
Definition: interface.c:1349
static void vhost_user_vui_init(vnet_main_t *vnm, vhost_user_intf_t *vui, int server_sock_fd, const char *sock_filename, u64 feature_mask, u32 *sw_if_index)
Definition: vhost_user.c:1400
static clib_error_t * vhost_user_callfd_read_ready(clib_file_t *uf)
Definition: vhost_user.c:230
#define vec_add2(V, P, N)
Add N elements to end of vector V, return pointer to new elements in P.
Definition: vec.h:564
int i
#define VHOST_USER_EVENT_START_TIMER
Definition: vhost_user.h:263
uword unformat_user(unformat_input_t *input, unformat_function_t *func,...)
Definition: unformat.c:983
static_always_inline void vhost_user_vring_init(vhost_user_intf_t *vui, u32 qid)
Definition: vhost_user.c:280
u8 * format(u8 *s, const char *fmt,...)
Definition: format.c:419
unformat_function_t unformat_vnet_sw_interface
#define pool_get(P, E)
Allocate an object E from a pool P (unspecified alignment).
Definition: pool.h:236
vring_used_t * used
Definition: vhost_user.h:239
vhost_vring_addr_t addr
Definition: vhost_user.h:121
int vhost_user_modify_if(vnet_main_t *vnm, vlib_main_t *vm, const char *sock_filename, u8 is_server, u32 sw_if_index, u64 feature_mask, u8 renumber, u32 custom_dev_instance)
Definition: vhost_user.c:1523
format_function_t format_vnet_sw_if_index_name
#define VHOST_USER_VRING_NOFD_MASK
Definition: vhost_user.h:26
unsigned char u8
Definition: types.h:56
static_always_inline void vhost_user_rx_thread_placement(vhost_user_intf_t *vui, u32 qid)
Unassign existing interface/queue to thread mappings and re-assign new interface/queue to thread mapp...
Definition: vhost_user.c:161
static uword vlib_process_suspend_time_is_zero(f64 dt)
Returns TRUE if a process suspend time is less than 10us.
Definition: node_funcs.h:410
#define vec_reset_length(v)
Reset vector length to zero NULL-pointer tolerant.
clib_file_function_t * read_function
Definition: file.h:67
double f64
Definition: types.h:142
#define vlib_worker_thread_barrier_sync(X)
Definition: threads.h:204
static vnet_sw_interface_t * vnet_get_hw_sw_interface(vnet_main_t *vnm, u32 hw_if_index)
#define clib_memcpy(d, s, n)
Definition: string.h:180
#define vu_log_debug(dev, f,...)
Definition: vhost_user.h:48
clib_file_t * file_pool
Definition: file.h:88
vnet_hw_interface_rx_mode
Definition: interface.h:52
#define static_always_inline
Definition: clib.h:99
#define pool_foreach(VAR, POOL, BODY)
Iterate through pool.
Definition: pool.h:490
#define VLIB_INIT_FUNCTION(x)
Definition: init.h:163
static uword vlib_process_get_events(vlib_main_t *vm, uword **data_vector)
Return the first event type which has occurred and a vector of per-event data of that type...
Definition: node_funcs.h:516
u32 sw_if_index
Definition: vxlan_gbp.api:37
static clib_error_t * ip4_init(vlib_main_t *vm)
Definition: ip4_input.c:351
static clib_error_t * vhost_user_socket_read(clib_file_t *uf)
Definition: vhost_user.c:358
#define UNIX_GET_FD(unixfd_idx)
Definition: vhost_user.h:68
void * log_base_addr
Definition: vhost_user.h:298
static_always_inline void vhost_user_thread_placement(vhost_user_intf_t *vui, u32 qid)
Definition: vhost_user.c:241
static_always_inline void * map_guest_mem(vhost_user_intf_t *vui, uword addr, u32 *hint)
static_always_inline void vnet_device_input_set_interrupt_pending(vnet_main_t *vnm, u32 hw_if_index, u16 queue_id)
Definition: devices.h:136
vnet_hw_interface_flags_t flags
Definition: interface.h:516
#define vec_elt_at_index(v, i)
Get vector value at index i checking that i is in bounds.
#define VRING_USED_F_NO_NOTIFY
Definition: vhost_user.h:45
#define clib_error_return(e, args...)
Definition: error.h:99
clib_file_main_t file_main
Definition: main.c:63
unsigned int u32
Definition: types.h:88
static vlib_node_registration_t vhost_user_process_node
(constructor) VLIB_REGISTER_NODE (vhost_user_process_node)
Definition: vhost_user.c:1186
#define vlib_call_init_function(vm, x)
Definition: init.h:260
static clib_error_t * vhost_user_kickfd_read_ready(clib_file_t *uf)
Definition: vhost_user.c:253
static clib_error_t * vhost_user_socket_error(clib_file_t *uf)
Definition: vhost_user.c:904
void vhost_user_unmap_all(void)
Definition: vhost_user.c:2216
unformat_function_t unformat_line_input
Definition: format.h:282
static_always_inline void vhost_user_tx_thread_placement(vhost_user_intf_t *vui)
Definition: vhost_user.c:120
#define VHOST_USER_PROTOCOL_F_MQ
Definition: vhost_user.h:31
#define pool_elt_at_index(p, i)
Returns pointer to element at given index.
Definition: pool.h:511
static_always_inline uword vnet_get_device_input_thread_index(vnet_main_t *vnm, u32 hw_if_index, u16 queue_id)
Definition: devices.h:127
static void vhost_user_term_if(vhost_user_intf_t *vui)
Disables and reset interface structure.
Definition: vhost_user.c:1198
static void vlib_process_signal_event(vlib_main_t *vm, uword node_index, uword type_opaque, uword data)
Definition: node_funcs.h:934
static_always_inline int vhost_user_intf_ready(vhost_user_intf_t *vui)
Returns whether at least one TX and one RX vring are enabled.
Definition: vhost_user.c:185
u32 random
Pseudo random iterator.
Definition: vhost_user.h:353
uword mhash_set_mem(mhash_t *h, void *key, uword *new_value, uword *old_value)
Definition: mhash.c:271
vlib_node_registration_t vhost_user_input_node
(constructor) VLIB_REGISTER_NODE (vhost_user_input_node)
int vhost_user_create_if(vnet_main_t *vnm, vlib_main_t *vm, const char *sock_filename, u8 is_server, u32 *sw_if_index, u64 feature_mask, u8 renumber, u32 custom_dev_instance, u8 *hwaddr)
Definition: vhost_user.c:1460
struct _unformat_input_t unformat_input_t
unsigned short u16
Definition: types.h:57
#define clib_error_return_unix(e, args...)
Definition: error.h:102
int vnet_hw_interface_get_rx_mode(vnet_main_t *vnm, u32 hw_if_index, u16 queue_id, vnet_hw_interface_rx_mode *mode)
Definition: devices.c:313
#define pool_put(P, E)
Free an object E in pool P.
Definition: pool.h:286
int vhost_user_delete_if(vnet_main_t *vnm, vlib_main_t *vm, u32 sw_if_index)
Definition: vhost_user.c:1245
format_function_t format_vnet_hw_interface_rx_mode
#define VLIB_CONFIG_FUNCTION(x, n,...)
Definition: init.h:172
char sock_filename[256]
Definition: vhost_user.h:273
vhost_user_main_t vhost_user_main
Definition: vhost_user.c:56
#define VHOST_USER_MSG_HDR_SZ
Definition: vhost_user.h:20
u32 region_mmap_fd[VHOST_MEMORY_MAX_NREGIONS]
Definition: vhost_user.h:289
int vhost_user_dump_ifs(vnet_main_t *vnm, vlib_main_t *vm, vhost_user_intf_details_t **out_vuids)
Definition: vhost_user.c:1686
vhost_user_memory_region_t regions[VHOST_MEMORY_MAX_NREGIONS]
Definition: vhost_user.h:285
vlib_log_class_t log_default
Definition: vhost_user.h:359
#define VHOST_VRING_IDX_RX(qid)
Definition: vhost_user.h:23
u32 * show_dev_instance_by_real_dev_instance
Definition: vhost_user.h:344
static_always_inline void vhost_user_vring_close(vhost_user_intf_t *vui, u32 qid)
Definition: vhost_user.c:303
vhost_user_intf_t * vhost_user_interfaces
Definition: vhost_user.h:343
#define VLIB_REGISTER_NODE(x,...)
Definition: node.h:169
static void mhash_init_c_string(mhash_t *h, uword n_value_bytes)
Definition: mhash.h:78
#define UNFORMAT_END_OF_INPUT
Definition: format.h:144
vlib_main_t * vm
Definition: buffer.c:301
#define vec_free(V)
Free vector&#39;s memory (no header).
Definition: vec.h:341
static void unmap_all_mem_regions(vhost_user_intf_t *vui)
Definition: vhost_user.c:74
static clib_error_t * vhost_user_config(vlib_main_t *vm, unformat_input_t *input)
Definition: vhost_user.c:2192
#define VLIB_MAIN_LOOP_EXIT_FUNCTION(x)
Definition: init.h:168
#define VHOST_USER_EVENT_STOP_TIMER
Definition: vhost_user.h:264
#define clib_warning(format, args...)
Definition: error.h:59
static uword vhost_user_process(vlib_main_t *vm, vlib_node_runtime_t *rt, vlib_frame_t *f)
Definition: vhost_user.c:1087
#define ARRAY_LEN(x)
Definition: clib.h:62
clib_error_t * vhost_user_delete_command_fn(vlib_main_t *vm, unformat_input_t *input, vlib_cli_command_t *cmd)
Definition: vhost_user.c:1639
#define foreach_protocol_feature
static int vhost_user_init_server_sock(const char *sock_filename, int *sock_fd)
Open server unix socket on specified sock_filename.
Definition: vhost_user.c:1325
#define VLIB_CLI_COMMAND(x,...)
Definition: cli.h:155
uword unformat_ethernet_address(unformat_input_t *input, va_list *args)
Definition: format.c:233
clib_error_t * show_vhost_user_command_fn(vlib_main_t *vm, unformat_input_t *input, vlib_cli_command_t *cmd)
Definition: vhost_user.c:1737
#define ASSERT(truth)
#define VHOST_VRING_F_LOG
Definition: vhost_user.h:33
void vnet_hw_interface_assign_rx_thread(vnet_main_t *vnm, u32 hw_if_index, u16 queue_id, uword thread_index)
Definition: devices.c:139
static uword * mhash_get(mhash_t *h, const void *key)
Definition: mhash.h:110
#define vu_log_err(dev, f,...)
Definition: vhost_user.h:61
static uword clib_file_add(clib_file_main_t *um, clib_file_t *template)
Definition: file.h:96
static_always_inline void vhost_user_if_disconnect(vhost_user_intf_t *vui)
Definition: vhost_user.c:335
static void clib_mem_free(void *p)
Definition: mem.h:205
volatile u32 * vring_locks[VHOST_VRING_MAX_N]
Definition: vhost_user.h:293
clib_error_t * ethernet_register_interface(vnet_main_t *vnm, u32 dev_class_index, u32 dev_instance, u8 *address, u32 *hw_if_index_return, ethernet_flag_change_function_t flag_change)
Definition: interface.c:277
mhash_t if_index_by_sock_name
Definition: vhost_user.h:341
static clib_error_t * vhost_user_exit(vlib_main_t *vm)
Definition: vhost_user.c:1303
#define clib_error_report(e)
Definition: error.h:113
vlib_node_registration_t vhost_user_send_interrupt_node
(constructor) VLIB_REGISTER_NODE (vhost_user_send_interrupt_node)
Definition: vhost_user.c:53
static uword pointer_to_uword(const void *p)
Definition: types.h:131
static void vhost_user_create_ethernet(vnet_main_t *vnm, vlib_main_t *vm, vhost_user_intf_t *vui, u8 *hwaddress)
Create ethernet interface for vhost user interface.
Definition: vhost_user.c:1365
static vlib_main_t * vlib_get_main(void)
Definition: global_funcs.h:23
struct _vlib_node_registration vlib_node_registration_t
void * region_mmap_addr[VHOST_MEMORY_MAX_NREGIONS]
Definition: vhost_user.h:286
static long get_huge_page_size(int fd)
Definition: vhost_user.c:66
#define vec_len(v)
Number of elements in vector (rvalue-only, NULL tolerant)
vhost_user_vring_t vrings[VHOST_VRING_MAX_N]
Definition: vhost_user.h:292
clib_error_t * vnet_hw_interface_set_flags(vnet_main_t *vnm, u32 hw_if_index, vnet_hw_interface_flags_t flags)
Definition: interface.c:504
static void vhost_user_set_interrupt_pending(vhost_user_intf_t *vui, u32 ifq)
Definition: vhost_user.c:214
u64 uword
Definition: types.h:112
static void unformat_free(unformat_input_t *i)
Definition: format.h:162
#define VHOST_MEMORY_MAX_NREGIONS
Definition: vhost_user.h:19
clib_error_t * vhost_user_connect_command_fn(vlib_main_t *vm, unformat_input_t *input, vlib_cli_command_t *cmd)
Definition: vhost_user.c:1574
void vnet_sw_interface_set_mtu(vnet_main_t *vnm, u32 sw_if_index, u32 mtu)
Definition: interface.c:642
u32 rx_buffers_len
Definition: vhost_user.h:328
int vnet_hw_interface_unassign_rx_thread(vnet_main_t *vnm, u32 hw_if_index, u16 queue_id)
Definition: devices.c:188
static void * clib_mem_alloc_aligned(uword size, uword align)
Definition: mem.h:140
static u32 random_u32(u32 *seed)
32-bit random number generator
Definition: random.h:69
u8 * format_unformat_error(u8 *s, va_list *va)
Definition: unformat.c:91
void vlib_worker_thread_barrier_release(vlib_main_t *vm)
Definition: threads.c:1470
vl_api_gbp_vxlan_tunnel_mode_t mode
Definition: gbp.api:349
static vlib_thread_main_t * vlib_get_thread_main()
Definition: global_funcs.h:32
u64 region_guest_addr_lo[VHOST_MEMORY_MAX_NREGIONS]
Definition: vhost_user.h:287
#define vec_foreach(var, vec)
Vector iterator.
uword private_data
Definition: file.h:64
Definition: file.h:51
int vnet_hw_interface_set_rx_mode(vnet_main_t *vnm, u32 hw_if_index, u16 queue_id, vnet_hw_interface_rx_mode mode)
Definition: devices.c:253
static clib_error_t * vhost_user_init(vlib_main_t *vm)
Definition: vhost_user.c:955
static_always_inline void * map_user_mem(vhost_user_intf_t *vui, uword addr)
#define CLIB_CACHE_LINE_BYTES
Definition: cache.h:59
static uword vhost_user_send_interrupt_process(vlib_main_t *vm, vlib_node_runtime_t *rt, vlib_frame_t *f)
Definition: vhost_user.c:990
void vlib_cli_output(vlib_main_t *vm, char *fmt,...)
Definition: cli.c:762
vl_api_address_union_t un
Definition: ip_types.api:32
static void vnet_hw_interface_set_input_node(vnet_main_t *vnm, u32 hw_if_index, u32 node_index)
Definition: devices.h:79
uword unformat(unformat_input_t *i, const char *fmt,...)
Definition: unformat.c:972
static uword unformat_check_input(unformat_input_t *i)
Definition: format.h:170
int dont_dump_vhost_user_memory
Definition: vhost_user.h:347