Add clib_memcpy macro based on DPDK rte_memcpy implementation
[vpp.git] / vnet / vnet / devices / dpdk / vhost_user.c
1 /*
2  * Copyright (c) 2015 Cisco and/or its affiliates.
3  * Licensed under the Apache License, Version 2.0 (the "License");
4  * you may not use this file except in compliance with the License.
5  * You may obtain a copy of the License at:
6  *
7  *     http://www.apache.org/licenses/LICENSE-2.0
8  *
9  * Unless required by applicable law or agreed to in writing, software
10  * distributed under the License is distributed on an "AS IS" BASIS,
11  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12  * See the License for the specific language governing permissions and
13  * limitations under the License.
14  */
15 #include <assert.h>
16 #include <sys/socket.h>
17 #include <sys/un.h>
18 #include <sys/stat.h>
19 #include <sys/vfs.h>
20
21 #include <vlib/vlib.h>
22 #include <vlib/unix/unix.h>
23
24 #include <vnet/vnet.h>
25 #include <vppinfra/vec.h>
26 #include <vppinfra/error.h>
27 #include <vppinfra/format.h>
28
29 #include <vnet/ethernet/ethernet.h>
30 #include <vnet/devices/dpdk/dpdk.h>
31
32 #include <vnet/devices/virtio/vhost-user.h>
33
34 #define VHOST_USER_DEBUG_SOCKET 0
35
36 #if VHOST_USER_DEBUG_SOCKET == 1
37 #define DBG_SOCK(args...) clib_warning(args);
38 #else
39 #define DBG_SOCK(args...)
40 #endif
41
42 static const char *vhost_message_str[] __attribute__((unused)) = {
43     [VHOST_USER_NONE] = "VHOST_USER_NONE",
44     [VHOST_USER_GET_FEATURES] = "VHOST_USER_GET_FEATURES",
45     [VHOST_USER_SET_FEATURES] = "VHOST_USER_SET_FEATURES",
46     [VHOST_USER_SET_OWNER] = "VHOST_USER_SET_OWNER",
47     [VHOST_USER_RESET_OWNER] = "VHOST_USER_RESET_OWNER",
48     [VHOST_USER_SET_MEM_TABLE] = "VHOST_USER_SET_MEM_TABLE",
49     [VHOST_USER_SET_LOG_BASE] = "VHOST_USER_SET_LOG_BASE",
50     [VHOST_USER_SET_LOG_FD] = "VHOST_USER_SET_LOG_FD",
51     [VHOST_USER_SET_VRING_NUM] = "VHOST_USER_SET_VRING_NUM",
52     [VHOST_USER_SET_VRING_ADDR] = "VHOST_USER_SET_VRING_ADDR",
53     [VHOST_USER_SET_VRING_BASE] = "VHOST_USER_SET_VRING_BASE",
54     [VHOST_USER_GET_VRING_BASE] = "VHOST_USER_GET_VRING_BASE",
55     [VHOST_USER_SET_VRING_KICK] = "VHOST_USER_SET_VRING_KICK",
56     [VHOST_USER_SET_VRING_CALL] = "VHOST_USER_SET_VRING_CALL",
57     [VHOST_USER_SET_VRING_ERR]  = "VHOST_USER_SET_VRING_ERR",
58 #if RTE_VERSION >= RTE_VERSION_NUM(2, 2, 0, 0)
59     [VHOST_USER_GET_PROTOCOL_FEATURES]  = "VHOST_USER_GET_PROTOCOL_FEATURES",
60     [VHOST_USER_SET_PROTOCOL_FEATURES]  = "VHOST_USER_SET_PROTOCOL_FEATURES",
61     [VHOST_USER_GET_QUEUE_NUM]  = "VHOST_USER_GET_QUEUE_NUM",
62     [VHOST_USER_SET_VRING_ENABLE]  = "VHOST_USER_SET_VRING_ENABLE",
63 #endif
64 };
65
66 #if RTE_VERSION >= RTE_VERSION_NUM(2, 2, 0, 0)
67 static int dpdk_vhost_user_set_vring_enable(u32 hw_if_index,
68     u8 idx, int enable);
69 #endif
70
71 /*
72  * DPDK vhost-user functions 
73  */
74
75 /* portions taken from dpdk 
76  *   BSD LICENSE
77  *
78  *   Copyright(c) 2010-2014 Intel Corporation. All rights reserved.
79  *   All rights reserved.
80  *
81  *   Redistribution and use in source and binary forms, with or without
82  *   modification, are permitted provided that the following conditions
83  *   are met:
84  *
85  *     * Redistributions of source code must retain the above copyright
86  *       notice, this list of conditions and the following disclaimer.
87  *     * Redistributions in binary form must reproduce the above copyright
88  *       notice, this list of conditions and the following disclaimer in
89  *       the documentation and/or other materials provided with the
90  *       distribution.
91  *     * Neither the name of Intel Corporation nor the names of its
92  *       contributors may be used to endorse or promote products derived
93  *       from this software without specific prior written permission.
94  *
95  *   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
96  *   "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
97  *   LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
98  *   A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
99  *   OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
100  *   SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
101  *   LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
102  *   DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
103  *   THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
104  *   (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
105  *   OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
106  */
107
108
109 static uint64_t
110 qva_to_vva(struct virtio_net *dev, uint64_t qemu_va)
111 {
112   struct virtio_memory_regions *region;
113   uint64_t vhost_va = 0;
114   uint32_t regionidx = 0;
115
116   /* Find the region where the address lives. */
117   for (regionidx = 0; regionidx < dev->mem->nregions; regionidx++) {
118     region = &dev->mem->regions[regionidx];
119     if ((qemu_va >= region->userspace_address) &&
120       (qemu_va <= region->userspace_address +
121       region->memory_size)) {
122       vhost_va = qemu_va + region->guest_phys_address +
123         region->address_offset -
124         region->userspace_address;
125       break;
126     }
127   }
128   return vhost_va;
129 }
130
131 static dpdk_device_t *
132 dpdk_vhost_user_device_from_hw_if_index(u32 hw_if_index)
133 {
134   vnet_main_t *vnm = vnet_get_main();
135   dpdk_main_t * dm = &dpdk_main;
136   vnet_hw_interface_t * hi = vnet_get_hw_interface (vnm, hw_if_index);
137   dpdk_device_t * xd = vec_elt_at_index (dm->devices, hi->dev_instance);
138
139   if (xd->dev_type != VNET_DPDK_DEV_VHOST_USER)
140     return 0;
141
142   return xd;
143 }
144
145 static dpdk_device_t *
146 dpdk_vhost_user_device_from_sw_if_index(u32 sw_if_index)
147 {
148   vnet_main_t *vnm = vnet_get_main();
149   vnet_sw_interface_t * sw = vnet_get_sw_interface (vnm, sw_if_index);
150   ASSERT (sw->type == VNET_SW_INTERFACE_TYPE_HARDWARE);
151
152   return dpdk_vhost_user_device_from_hw_if_index(sw->hw_if_index);
153 }
154
155 static void stop_processing_packets(u32 hw_if_index, u8 idx)
156 {
157   dpdk_device_t *xd =
158     dpdk_vhost_user_device_from_hw_if_index(hw_if_index);
159   assert(xd);
160 #if RTE_VERSION >= RTE_VERSION_NUM(2, 2, 0, 0)
161   xd->vu_vhost_dev.virtqueue[idx]->enabled = 0;
162 #else
163   xd->vu_is_running = 0;
164 #endif
165 }
166
167 static void disable_interface(dpdk_device_t * xd)
168 {
169 #if RTE_VERSION >= RTE_VERSION_NUM(2, 2, 0, 0)
170   u8 idx;
171   int numqs = xd->vu_vhost_dev.virt_qp_nb * VIRTIO_QNUM;
172   for (idx = 0;  idx < numqs; idx++)
173     xd->vu_vhost_dev.virtqueue[idx]->enabled = 0;
174 #endif
175
176   xd->vu_is_running = 0;
177 }
178
179 static inline void * map_guest_mem(dpdk_device_t * xd, u64 addr)
180 {
181   dpdk_vu_intf_t * vui = xd->vu_intf;
182   struct virtio_memory * mem = xd->vu_vhost_dev.mem;
183   int i;
184   for (i=0; i<mem->nregions; i++) {
185     if ((mem->regions[i].guest_phys_address <= addr) &&
186        ((mem->regions[i].guest_phys_address + mem->regions[i].memory_size) > addr)) {
187          return (void *) (vui->region_addr[i] + addr - mem->regions[i].guest_phys_address);
188        }
189   }
190   DBG_SOCK("failed to map guest mem addr %lx", addr);
191   return 0;
192 }
193
194 static clib_error_t *
195 dpdk_create_vhost_user_if_internal (u32 * hw_if_index, u32 if_id, u8 *hwaddr)
196 {
197   dpdk_main_t * dm = &dpdk_main;
198   vlib_main_t * vm = vlib_get_main();
199   vlib_thread_main_t * tm = vlib_get_thread_main();
200   vnet_sw_interface_t * sw;
201   clib_error_t * error;
202   dpdk_device_and_queue_t * dq;
203   int num_qpairs = 1;
204   dpdk_vu_intf_t *vui = NULL;
205
206 #if RTE_VERSION >= RTE_VERSION_NUM(2, 2, 0, 0)
207   num_qpairs = dm->use_rss < 1 ? 1 : tm->n_vlib_mains;
208 #endif
209
210   dpdk_device_t * xd = NULL;
211   u8 addr[6];
212   int j;
213
214   vlib_worker_thread_barrier_sync (vm);
215
216   int inactive_cnt = vec_len(dm->vu_inactive_interfaces_device_index);
217   // if there are any inactive ifaces
218   if (inactive_cnt > 0) {
219     // take last
220     u32 vui_idx = dm->vu_inactive_interfaces_device_index[inactive_cnt - 1];
221     if (vec_len(dm->devices) > vui_idx) {
222       xd = vec_elt_at_index (dm->devices, vui_idx);
223       if (xd->dev_type == VNET_DPDK_DEV_VHOST_USER) {
224           DBG_SOCK("reusing inactive vhost-user interface sw_if_index %d", xd->vlib_sw_if_index);
225       } else {
226           clib_warning("error: inactive vhost-user interface sw_if_index %d not VHOST_USER type!",
227                   xd->vlib_sw_if_index);
228           // reset so new interface is created
229           xd = NULL;
230       }
231     }
232     // "remove" from inactive list
233     _vec_len(dm->vu_inactive_interfaces_device_index) -= 1;
234   }
235
236   if (xd) {
237       // existing interface used - do not overwrite if_id if not needed
238       if (if_id != (u32)~0)
239           xd->vu_if_id = if_id;
240
241       // reset virtqueues
242       vui = xd->vu_intf;
243       for (j = 0; j < num_qpairs * VIRTIO_QNUM; j++) {
244           memset(xd->vu_vhost_dev.virtqueue[j], 0, sizeof(struct vhost_virtqueue));
245           xd->vu_vhost_dev.virtqueue[j]->kickfd = -1; 
246           xd->vu_vhost_dev.virtqueue[j]->callfd = -1; 
247           xd->vu_vhost_dev.virtqueue[j]->backend = -1; 
248           vui->vrings[j].packets = 0;
249           vui->vrings[j].bytes = 0;
250        }
251
252       // reset lockp
253       dpdk_device_lock_free(xd);
254       dpdk_device_lock_init(xd);
255
256       // reset tx vectors
257       for (j = 0; j < tm->n_vlib_mains; j++)
258         {
259           vec_validate_ha (xd->tx_vectors[j], DPDK_TX_RING_SIZE,
260                            sizeof(tx_ring_hdr_t), CLIB_CACHE_LINE_BYTES);
261           vec_reset_length (xd->tx_vectors[j]);
262         }
263
264       // reset rx vector
265       for (j = 0; j < xd->rx_q_used; j++)
266         {
267           vec_validate_aligned (xd->rx_vectors[j], VLIB_FRAME_SIZE-1,
268                                 CLIB_CACHE_LINE_BYTES);
269           vec_reset_length (xd->rx_vectors[j]);
270         }
271   } else {
272       // vui was not retrieved from inactive ifaces - create new
273       vec_add2_aligned (dm->devices, xd, 1, CLIB_CACHE_LINE_BYTES);
274       xd->dev_type = VNET_DPDK_DEV_VHOST_USER;
275       xd->rx_q_used = num_qpairs;
276       xd->tx_q_used = num_qpairs;
277 #if RTE_VERSION >= RTE_VERSION_NUM(2, 2, 0, 0)
278       xd->vu_vhost_dev.virt_qp_nb = num_qpairs;
279 #endif
280
281       vec_validate_aligned (xd->rx_vectors, xd->rx_q_used, CLIB_CACHE_LINE_BYTES);
282
283       if (if_id == (u32)~0)
284           xd->vu_if_id = dm->next_vu_if_id++;
285       else
286           xd->vu_if_id = if_id;
287
288       xd->device_index = xd - dm->devices;
289       xd->per_interface_next_index = ~0;
290       xd->vu_intf = clib_mem_alloc (sizeof(*(xd->vu_intf)));
291
292       xd->vu_vhost_dev.mem = clib_mem_alloc (sizeof(struct virtio_memory) +
293                                              VHOST_MEMORY_MAX_NREGIONS *
294                                              sizeof(struct virtio_memory_regions));
295
296       /* Will be set when guest sends VHOST_USER_SET_MEM_TABLE cmd */
297       xd->vu_vhost_dev.mem->nregions = 0;
298
299       /* 
300        * New virtqueue structure is an array of VHOST_MAX_QUEUE_PAIRS * 2
301        * We need to allocate numq pairs.
302        */
303       vui = xd->vu_intf;
304       for (j = 0; j < num_qpairs * VIRTIO_QNUM; j++) {
305           xd->vu_vhost_dev.virtqueue[j] = clib_mem_alloc (sizeof(struct vhost_virtqueue));
306           memset(xd->vu_vhost_dev.virtqueue[j], 0, sizeof(struct vhost_virtqueue));
307           xd->vu_vhost_dev.virtqueue[j]->kickfd = -1; 
308           xd->vu_vhost_dev.virtqueue[j]->callfd = -1; 
309           xd->vu_vhost_dev.virtqueue[j]->backend = -1; 
310           vui->vrings[j].packets = 0;
311           vui->vrings[j].bytes = 0;
312       }
313
314       dpdk_device_lock_init(xd);
315
316       DBG_SOCK("tm->n_vlib_mains: %d. TX %d, RX: %d, num_qpairs: %d, Lock: %p",
317         tm->n_vlib_mains, xd->tx_q_used, xd->rx_q_used, num_qpairs, xd->lockp);
318
319       vec_validate_aligned (xd->tx_vectors, tm->n_vlib_mains,
320                             CLIB_CACHE_LINE_BYTES);
321
322       for (j = 0; j < tm->n_vlib_mains; j++)
323         {
324           vec_validate_ha (xd->tx_vectors[j], DPDK_TX_RING_SIZE,
325                            sizeof(tx_ring_hdr_t), CLIB_CACHE_LINE_BYTES);
326           vec_reset_length (xd->tx_vectors[j]);
327         }
328
329       // reset rx vector
330       for (j = 0; j < xd->rx_q_used; j++)
331         {
332           vec_validate_aligned (xd->rx_vectors[j], VLIB_FRAME_SIZE-1,
333                                 CLIB_CACHE_LINE_BYTES);
334           vec_reset_length (xd->rx_vectors[j]);
335         }
336
337       vec_validate_aligned (xd->frames, tm->n_vlib_mains,
338                             CLIB_CACHE_LINE_BYTES);
339
340   }
341   /*
342    * Generate random MAC address for the interface
343    */
344   if (hwaddr) {
345     clib_memcpy(addr, hwaddr, sizeof(addr));
346   } else {
347     f64 now = vlib_time_now(vm);
348     u32 rnd;
349     rnd = (u32) (now * 1e6);
350     rnd = random_u32 (&rnd);
351
352     clib_memcpy (addr+2, &rnd, sizeof(rnd));
353     addr[0] = 2;
354     addr[1] = 0xfe;
355   }
356
357   error = ethernet_register_interface
358     (dm->vnet_main,
359      dpdk_device_class.index,
360      xd->device_index,
361      /* ethernet address */ addr,
362      &xd->vlib_hw_if_index,
363      0);
364
365   if (error)
366     return error;
367
368   sw = vnet_get_hw_sw_interface (dm->vnet_main, xd->vlib_hw_if_index);
369   xd->vlib_sw_if_index = sw->sw_if_index;
370
371   *hw_if_index = xd->vlib_hw_if_index;
372
373   DBG_SOCK("xd->device_index: %d, dm->input_cpu_count: %d, "
374     "dm->input_cpu_first_index: %d\n", xd->device_index,
375     dm->input_cpu_count, dm->input_cpu_first_index);
376
377   int q, next_cpu = 0;
378   for (q = 0; q < num_qpairs; q++) {
379       int cpu = dm->input_cpu_first_index +
380         (next_cpu % dm->input_cpu_count);
381
382       unsigned lcore = vlib_worker_threads[cpu].dpdk_lcore_id;
383       vec_validate(xd->cpu_socket_id_by_queue, q);
384       xd->cpu_socket_id_by_queue[q] = rte_lcore_to_socket_id(lcore);
385
386       vec_add2(dm->devices_by_cpu[cpu], dq, 1);
387       dq->device = xd->device_index;
388       dq->queue_id = q;
389       DBG_SOCK("CPU for %d = %d. QID: %d", *hw_if_index, cpu, dq->queue_id);
390
391       // start polling if it was not started yet (because of no phys ifaces)
392       if (tm->n_vlib_mains == 1 && dpdk_input_node.state != VLIB_NODE_STATE_POLLING)
393         vlib_node_set_state (vm, dpdk_input_node.index, VLIB_NODE_STATE_POLLING);
394
395       if (tm->n_vlib_mains > 1 && tm->main_thread_is_io_node)
396         vlib_node_set_state (vm, dpdk_io_input_node.index, VLIB_NODE_STATE_POLLING);
397
398       if (tm->n_vlib_mains > 1 && !tm->main_thread_is_io_node)
399         vlib_node_set_state (vlib_mains[cpu], dpdk_input_node.index,
400                              VLIB_NODE_STATE_POLLING);
401       next_cpu++;
402   }
403
404   vlib_worker_thread_barrier_release (vm);
405   return 0;
406 }
407
408 #if RTE_VERSION >= RTE_VERSION_NUM(2, 2, 0, 0)
409 static clib_error_t *
410 dpdk_vhost_user_set_protocol_features(u32 hw_if_index, u64 prot_features)
411 {
412   dpdk_device_t * xd;
413   xd = dpdk_vhost_user_device_from_hw_if_index(hw_if_index);
414   assert(xd);
415   xd->vu_vhost_dev.protocol_features = prot_features;
416   return 0;
417 }
418 #endif
419
420 static clib_error_t *
421 dpdk_vhost_user_get_features(u32 hw_if_index, u64 * features)
422 {
423   *features = rte_vhost_feature_get();
424
425   DBG_SOCK("supported features: 0x%lx", *features);
426   return 0;
427 }
428
429 static clib_error_t *
430 dpdk_vhost_user_set_features(u32 hw_if_index, u64 features)
431 {
432   dpdk_device_t * xd;
433   u16 hdr_len = sizeof(struct virtio_net_hdr);
434
435
436   if (!(xd = dpdk_vhost_user_device_from_hw_if_index(hw_if_index))) {
437     clib_warning("not a vhost-user interface");
438     return 0;
439   }
440
441   xd->vu_vhost_dev.features = features;
442
443   if (xd->vu_vhost_dev.features & (1 << VIRTIO_NET_F_MRG_RXBUF))
444     hdr_len = sizeof(struct virtio_net_hdr_mrg_rxbuf);
445
446   int numqs = VIRTIO_QNUM;
447   u8 idx;
448 #if RTE_VERSION >= RTE_VERSION_NUM(2, 2, 0, 0)
449   int prot_feature = features &
450         (1ULL << VHOST_USER_F_PROTOCOL_FEATURES);
451   numqs = xd->vu_vhost_dev.virt_qp_nb * VIRTIO_QNUM;
452 #endif
453   for (idx = 0; idx < numqs; idx++) {
454       xd->vu_vhost_dev.virtqueue[idx]->vhost_hlen = hdr_len;
455 #if RTE_VERSION >= RTE_VERSION_NUM(2, 2, 0, 0)
456       /*
457        * Spec says, if F_PROTOCOL_FEATURE is not set by the
458        * slave, then all the vrings should start off as
459        * enabled. If slave negotiates F_PROTOCOL_FEATURE, then
460        * slave is responsible to enable it.
461        */
462       if (! prot_feature)
463           dpdk_vhost_user_set_vring_enable(hw_if_index, idx, 1);
464 #endif
465   }
466
467   return 0;
468 }
469
470 static clib_error_t *
471 dpdk_vhost_user_set_mem_table(u32 hw_if_index, vhost_user_memory_t * vum, int fd[])
472 {
473   struct virtio_memory * mem;
474   int i;
475   dpdk_device_t * xd;
476   dpdk_vu_intf_t * vui;
477
478   if (!(xd = dpdk_vhost_user_device_from_hw_if_index(hw_if_index))) {
479     clib_warning("not a vhost-user interface");
480     return 0;
481   }
482
483   vui = xd->vu_intf;
484   mem = xd->vu_vhost_dev.mem;
485
486   mem->nregions = vum->nregions;
487
488   for (i=0; i < mem->nregions; i++) {
489     u64 mapped_size, mapped_address;
490
491     mem->regions[i].guest_phys_address     = vum->regions[i].guest_phys_addr;
492     mem->regions[i].guest_phys_address_end = vum->regions[i].guest_phys_addr +
493                                              vum->regions[i].memory_size;
494     mem->regions[i].memory_size            = vum->regions[i].memory_size;
495     mem->regions[i].userspace_address      = vum->regions[i].userspace_addr;
496
497     mapped_size = mem->regions[i].memory_size + vum->regions[i].mmap_offset;
498     mapped_address = pointer_to_uword(mmap(NULL, mapped_size, PROT_READ | PROT_WRITE, MAP_SHARED, fd[i], 0));
499
500     if (uword_to_pointer(mapped_address, void*) == MAP_FAILED)
501     {
502       clib_warning("mmap error");
503       return 0;
504     }
505
506     mapped_address +=  vum->regions[i].mmap_offset;
507     vui->region_addr[i] = mapped_address;
508     vui->region_fd[i] = fd[i];
509     mem->regions[i].address_offset = mapped_address - mem->regions[i].guest_phys_address;
510
511     if (vum->regions[i].guest_phys_addr == 0) {
512       mem->base_address = vum->regions[i].userspace_addr;
513       mem->mapped_address = mem->regions[i].address_offset;
514     }
515   }
516
517   disable_interface(xd);
518   return 0;
519 }
520
521 static clib_error_t *
522 dpdk_vhost_user_set_vring_num(u32 hw_if_index, u8 idx, u32 num)
523 {
524   dpdk_device_t * xd;
525   struct vhost_virtqueue *vq;
526
527   DBG_SOCK("idx %u num %u", idx, num);
528
529   if (!(xd = dpdk_vhost_user_device_from_hw_if_index(hw_if_index))) {
530     clib_warning("not a vhost-user interface");
531     return 0;
532   }
533   vq = xd->vu_vhost_dev.virtqueue[idx];
534   vq->size = num;
535
536   stop_processing_packets(hw_if_index, idx);
537
538   return 0;
539 }
540
541 static clib_error_t *
542 dpdk_vhost_user_set_vring_addr(u32 hw_if_index, u8 idx, u64 desc, u64 used, u64 avail)
543 {
544   dpdk_device_t * xd;
545   struct vhost_virtqueue *vq;
546
547   DBG_SOCK("idx %u desc 0x%lx used 0x%lx avail 0x%lx",
548     idx, desc, used, avail);
549
550   if (!(xd = dpdk_vhost_user_device_from_hw_if_index(hw_if_index))) {
551     clib_warning("not a vhost-user interface");
552     return 0;
553   }
554   vq = xd->vu_vhost_dev.virtqueue[idx];
555
556   vq->desc = (struct vring_desc *) qva_to_vva(&xd->vu_vhost_dev, desc);
557   vq->used = (struct vring_used *) qva_to_vva(&xd->vu_vhost_dev, used);
558   vq->avail = (struct vring_avail *) qva_to_vva(&xd->vu_vhost_dev, avail);
559
560   if (!(vq->desc && vq->used && vq->avail)) {
561     clib_warning("falied to set vring addr");
562   }
563
564   stop_processing_packets(hw_if_index, idx);
565
566   return 0;
567 }
568
569 static clib_error_t *
570 dpdk_vhost_user_get_vring_base(u32 hw_if_index, u8 idx, u32 * num)
571 {
572   dpdk_device_t * xd;
573   struct vhost_virtqueue *vq;
574
575   if (!(xd = dpdk_vhost_user_device_from_hw_if_index(hw_if_index))) {
576     clib_warning("not a vhost-user interface");
577     return 0;
578   }
579
580   vq = xd->vu_vhost_dev.virtqueue[idx];
581   *num = vq->last_used_idx;
582
583 /*
584  * From spec:
585  * Client must start ring upon receiving a kick
586  * (that is, detecting that file descriptor is readable)
587  * on the descriptor specified by VHOST_USER_SET_VRING_KICK,
588  * and stop ring upon receiving VHOST_USER_GET_VRING_BASE.
589  */
590   DBG_SOCK("Stopping vring Q %u of device %d", idx, hw_if_index);
591 #if RTE_VERSION >= RTE_VERSION_NUM(2, 2, 0, 0)
592   dpdk_vu_intf_t *vui = xd->vu_intf;
593   vui->vrings[idx].enabled = 0; /* Reset local copy */
594   vui->vrings[idx].callfd = -1; /* Reset FD */
595   vq->enabled = 0;
596   vq->desc = NULL;
597   vq->used = NULL;
598   vq->avail = NULL;
599
600   /* Check if all Qs are disabled */
601   int numqs = xd->vu_vhost_dev.virt_qp_nb * VIRTIO_QNUM;
602   for (idx = 0;  idx < numqs; idx++) {
603     if (xd->vu_vhost_dev.virtqueue[idx]->enabled)
604         break;
605   }
606
607   /* If all vrings are disabed then disable device */
608   if (idx == numqs)  {
609       DBG_SOCK("Device %d disabled", hw_if_index);
610       xd->vu_is_running = 0;
611   }
612 #else
613   vq->desc = NULL;
614   vq->used = NULL;
615   vq->avail = NULL;
616   xd->vu_is_running = 0;
617 #endif
618
619   return 0;
620 }
621
622 static clib_error_t *
623 dpdk_vhost_user_set_vring_base(u32 hw_if_index, u8 idx, u32 num)
624 {
625   dpdk_device_t * xd;
626   struct vhost_virtqueue *vq;
627
628   DBG_SOCK("idx %u num %u", idx, num);
629
630   if (!(xd = dpdk_vhost_user_device_from_hw_if_index(hw_if_index))) {
631     clib_warning("not a vhost-user interface");
632     return 0;
633   }
634
635   vq = xd->vu_vhost_dev.virtqueue[idx];
636   vq->last_used_idx = num;
637   vq->last_used_idx_res = num;
638
639   stop_processing_packets(hw_if_index, idx);
640
641   return 0;
642 }
643
644 static clib_error_t *
645 dpdk_vhost_user_set_vring_kick(u32 hw_if_index, u8 idx, int fd)
646 {
647   dpdk_main_t * dm = &dpdk_main;
648   dpdk_device_t * xd;
649 #if RTE_VERSION >= RTE_VERSION_NUM(2, 2, 0, 0)
650   dpdk_vu_vring *vring;
651 #endif
652   struct vhost_virtqueue *vq0, *vq1, *vq;
653   int index, vu_is_running = 0;
654
655   if (!(xd = dpdk_vhost_user_device_from_hw_if_index(hw_if_index))) {
656     clib_warning("not a vhost-user interface");
657     return 0;
658   }
659
660   vq = xd->vu_vhost_dev.virtqueue[idx];
661   vq->kickfd = fd;
662
663 #if RTE_VERSION >= RTE_VERSION_NUM(2, 2, 0, 0)
664   vring = &xd->vu_intf->vrings[idx];
665   vq->enabled = (vq->desc && vq->avail && vq->used && vring->enabled) ? 1 : 0;
666 #endif
667
668   /*
669    * Set xd->vu_is_running if at least one pair of
670    * RX/TX queues are enabled.
671    */
672   int numqs = VIRTIO_QNUM;
673 #if RTE_VERSION >= RTE_VERSION_NUM(2, 2, 0, 0)
674   numqs = xd->vu_vhost_dev.virt_qp_nb * VIRTIO_QNUM;
675 #endif
676
677   for (index = 0; index < numqs; index += 2) {
678     vq0 = xd->vu_vhost_dev.virtqueue[index]; /* RX */
679     vq1 = xd->vu_vhost_dev.virtqueue[index + 1]; /* TX */
680 #if RTE_VERSION >= RTE_VERSION_NUM(2, 2, 0, 0)
681     if (vq0->enabled && vq1->enabled)
682 #else
683     if (vq0->desc && vq0->avail && vq0->used &&
684       vq1->desc && vq1->avail && vq1->used)
685 #endif
686     {
687         vu_is_running = 1;
688         break;
689     }
690   }
691   DBG_SOCK("SET_VRING_KICK - idx %d, running %d, fd: %d",
692     idx, vu_is_running, fd);
693
694   xd->vu_is_running = vu_is_running;
695   if (xd->vu_is_running && xd->admin_up) {
696     vnet_hw_interface_set_flags (dm->vnet_main,
697       xd->vlib_hw_if_index, VNET_HW_INTERFACE_FLAG_LINK_UP |
698       ETH_LINK_FULL_DUPLEX );
699   }
700
701   return 0;
702 }
703
704 #if RTE_VERSION >= RTE_VERSION_NUM(2, 2, 0, 0)
705 static int
706 dpdk_vhost_user_set_vring_enable(u32 hw_if_index, u8 idx, int enable)
707 {
708   dpdk_device_t * xd;
709   struct vhost_virtqueue *vq;
710   dpdk_vu_intf_t *vui;
711
712   if (!(xd = dpdk_vhost_user_device_from_hw_if_index(hw_if_index))) {
713     clib_warning("not a vhost-user interface");
714     return 0;
715   }
716
717   vui = xd->vu_intf;
718   /*
719    * Guest vhost driver wrongly enables queue before
720    * setting the vring address. Therefore, save a
721    * local copy. Reflect it in vq structure if addresses
722    * are set. If not, vq will be enabled when vring
723    * is kicked.
724    */
725   vui->vrings[idx].enabled = enable; /* Save local copy */
726
727   int numqs = xd->vu_vhost_dev.virt_qp_nb * VIRTIO_QNUM;
728   while (numqs--) {
729     if (! vui->vrings[numqs].enabled)
730         break;
731   }
732
733   if (numqs == -1) /* All Qs are enabled */
734     xd->need_txlock = 0;
735   else
736     xd->need_txlock = 1;
737
738   vq = xd->vu_vhost_dev.virtqueue[idx];
739   if (vq->desc && vq->avail && vq->used)
740     xd->vu_vhost_dev.virtqueue[idx]->enabled = enable;
741
742   return 0;
743 }
744 #endif
745
746 static clib_error_t * dpdk_vhost_user_callfd_read_ready (unix_file_t * uf)
747 {
748   __attribute__((unused)) int n;
749   u8 buff[8];
750   n = read(uf->file_descriptor, ((char*)&buff), 8);
751   return 0;
752 }
753
754 static clib_error_t *
755 dpdk_vhost_user_set_vring_call(u32 hw_if_index, u8 idx, int fd)
756 {
757   dpdk_device_t * xd;
758   struct vhost_virtqueue *vq;
759   unix_file_t template = {0};
760
761   DBG_SOCK("SET_VRING_CALL - idx %d, fd %d", idx, fd);
762
763   if (!(xd = dpdk_vhost_user_device_from_hw_if_index(hw_if_index))) {
764     clib_warning("not a vhost-user interface");
765     return 0;
766   }
767
768   dpdk_vu_intf_t *vui = xd->vu_intf;
769
770   /* if there is old fd, delete it */
771   if (vui->vrings[idx].callfd > 0) {
772     unix_file_t * uf = pool_elt_at_index (unix_main.file_pool,
773       vui->vrings[idx].callfd_idx);
774     unix_file_del (&unix_main, uf);
775   }
776   vui->vrings[idx].callfd = fd;
777   template.read_function = dpdk_vhost_user_callfd_read_ready;
778   template.file_descriptor = fd;
779   vui->vrings[idx].callfd_idx = unix_file_add (&unix_main, &template);
780
781   vq = xd->vu_vhost_dev.virtqueue[idx];
782   vq->callfd = -1; /* We use locally saved vring->callfd; */
783
784   return 0;
785 }
786
787 u8
788 dpdk_vhost_user_want_interrupt(dpdk_device_t *xd, int idx)
789 {
790     dpdk_vu_intf_t *vui = xd->vu_intf;
791     ASSERT(vui != NULL);
792
793     if (PREDICT_FALSE(vui->num_vrings <= 0))
794         return 0;
795
796     dpdk_vu_vring *vring = &(vui->vrings[idx]);
797     struct vhost_virtqueue *vq = xd->vu_vhost_dev.virtqueue[idx];
798
799     /* return if vm is interested in interrupts */
800     return (vring->callfd > 0) && !(vq->avail->flags & VRING_AVAIL_F_NO_INTERRUPT);
801 }
802
803 void
804 dpdk_vhost_user_send_interrupt(vlib_main_t * vm, dpdk_device_t * xd, int idx)
805 {
806     dpdk_main_t * dm = &dpdk_main;
807     dpdk_vu_intf_t *vui = xd->vu_intf;
808     ASSERT(vui != NULL);
809
810     if (PREDICT_FALSE(vui->num_vrings <= 0))
811         return;
812
813     dpdk_vu_vring *vring = &(vui->vrings[idx]);
814     struct vhost_virtqueue *vq = xd->vu_vhost_dev.virtqueue[idx];
815
816     /* if vm is interested in interrupts */
817     if((vring->callfd > 0) && !(vq->avail->flags & VRING_AVAIL_F_NO_INTERRUPT)) {
818         eventfd_write(vring->callfd, (eventfd_t)1);
819         vring->n_since_last_int = 0;
820         vring->int_deadline = vlib_time_now(vm) + dm->vhost_coalesce_time;
821     }
822 }
823
824 /*
825  * vhost-user interface management functions 
826  */
827
828 // initialize vui with specified attributes
829 static void 
830 dpdk_vhost_user_vui_init(vnet_main_t * vnm,
831                          dpdk_device_t *xd, int sockfd,
832                          const char * sock_filename,
833                          u8 is_server, u64 feature_mask,
834                          u32 * sw_if_index)
835 {
836   dpdk_vu_intf_t *vui = xd->vu_intf;
837   memset(vui, 0, sizeof(*vui));
838
839   vui->unix_fd = sockfd;
840 #if RTE_VERSION >= RTE_VERSION_NUM(2, 2, 0, 0)
841   vui->num_vrings = xd->vu_vhost_dev.virt_qp_nb * VIRTIO_QNUM;
842 #else
843   vui->num_vrings = VIRTIO_QNUM;
844 #endif
845   DBG_SOCK("dpdk_vhost_user_vui_init VRINGS: %d", vui->num_vrings);
846   vui->sock_is_server = is_server;
847   strncpy(vui->sock_filename, sock_filename, ARRAY_LEN(vui->sock_filename)-1);
848   vui->sock_errno = 0;
849   vui->is_up = 0;
850   vui->feature_mask = feature_mask;
851   vui->active = 1;
852   vui->unix_file_index = ~0;
853
854   vnet_hw_interface_set_flags (vnm, xd->vlib_hw_if_index,  0);
855
856   if (sw_if_index)
857       *sw_if_index = xd->vlib_sw_if_index;
858 }
859
860 // register vui and start polling on it
861 static void 
862 dpdk_vhost_user_vui_register(vlib_main_t * vm, dpdk_device_t *xd)
863 {
864   dpdk_main_t * dm = &dpdk_main;
865   dpdk_vu_intf_t *vui = xd->vu_intf;
866
867   hash_set (dm->vu_sw_if_index_by_listener_fd, vui->unix_fd,
868             xd->vlib_sw_if_index);
869 }
870
871 static inline void
872 dpdk_vhost_user_if_disconnect(dpdk_device_t * xd)
873 {
874     dpdk_vu_intf_t *vui = xd->vu_intf;
875     vnet_main_t * vnm = vnet_get_main();
876     dpdk_main_t * dm = &dpdk_main;
877
878     xd->admin_up = 0;
879     vnet_hw_interface_set_flags (vnm, xd->vlib_hw_if_index,  0);
880
881     if (vui->unix_file_index != ~0) {
882         unix_file_del (&unix_main, unix_main.file_pool + vui->unix_file_index);
883         vui->unix_file_index = ~0;
884     }
885
886     hash_unset(dm->vu_sw_if_index_by_sock_fd, vui->unix_fd);
887     hash_unset(dm->vu_sw_if_index_by_listener_fd, vui->unix_fd);
888     close(vui->unix_fd);
889     vui->unix_fd = -1;
890     vui->is_up = 0;
891
892     DBG_SOCK("interface ifindex %d disconnected", xd->vlib_sw_if_index);
893 }
894
895 static clib_error_t * dpdk_vhost_user_socket_read (unix_file_t * uf)
896 {
897   int n;
898   int fd, number_of_fds = 0;
899   int fds[VHOST_MEMORY_MAX_NREGIONS];
900   vhost_user_msg_t msg;
901   struct msghdr mh;
902   struct iovec iov[1];
903   dpdk_main_t * dm = &dpdk_main;
904   dpdk_device_t *xd;
905   dpdk_vu_intf_t *vui;
906   struct cmsghdr *cmsg;
907   uword * p;
908   u8 q;
909   vnet_main_t * vnm = vnet_get_main();
910
911   p = hash_get (dm->vu_sw_if_index_by_sock_fd, uf->file_descriptor);
912   if (p == 0) {
913       DBG_SOCK ("FD %d doesn't belong to any interface",
914                     uf->file_descriptor);
915       return 0;
916     }
917   else
918       xd = dpdk_vhost_user_device_from_sw_if_index(p[0]);
919
920   ASSERT(xd != NULL);
921   vui = xd->vu_intf;
922
923   char control[CMSG_SPACE(VHOST_MEMORY_MAX_NREGIONS * sizeof(int))];
924
925   memset(&mh, 0, sizeof(mh));
926   memset(control, 0, sizeof(control));
927
928   /* set the payload */
929   iov[0].iov_base = (void *) &msg;
930   iov[0].iov_len = VHOST_USER_MSG_HDR_SZ;
931
932   mh.msg_iov = iov;
933   mh.msg_iovlen = 1;
934   mh.msg_control = control;
935   mh.msg_controllen = sizeof(control);
936
937   n = recvmsg(uf->file_descriptor, &mh, 0);
938
939   if (n != VHOST_USER_MSG_HDR_SZ)
940     goto close_socket;
941
942   if (mh.msg_flags & MSG_CTRUNC) {
943     goto close_socket;
944   }
945
946   cmsg = CMSG_FIRSTHDR(&mh);
947
948   if (cmsg && (cmsg->cmsg_len > 0) && (cmsg->cmsg_level == SOL_SOCKET) &&
949       (cmsg->cmsg_type == SCM_RIGHTS) &&
950       (cmsg->cmsg_len - CMSG_LEN(0) <= VHOST_MEMORY_MAX_NREGIONS * sizeof(int))) {
951         number_of_fds = (cmsg->cmsg_len - CMSG_LEN(0)) / sizeof(int);
952         clib_memcpy(fds, CMSG_DATA(cmsg), number_of_fds * sizeof(int));
953   }
954
955   /* version 1, no reply bit set*/
956   if ((msg.flags & 7) != 1) {
957     DBG_SOCK("malformed message received. closing socket");
958     goto close_socket;
959   }
960
961   {
962       int rv __attribute__((unused));
963       /* $$$$ pay attention to rv */
964       rv = read(uf->file_descriptor, ((char*)&msg) + n, msg.size);
965   }
966
967   DBG_SOCK("VPP VHOST message %s", vhost_message_str[msg.request]);
968   switch (msg.request) {
969     case VHOST_USER_GET_FEATURES:
970       DBG_SOCK("if %d msg VHOST_USER_GET_FEATURES",
971         xd->vlib_hw_if_index);
972
973       msg.flags |= VHOST_USER_REPLY_MASK;
974
975       dpdk_vhost_user_get_features(xd->vlib_hw_if_index, &msg.u64);
976       msg.u64 &= vui->feature_mask;
977       msg.size = sizeof(msg.u64);
978       break;
979
980     case VHOST_USER_SET_FEATURES:
981       DBG_SOCK("if %d msg VHOST_USER_SET_FEATURES features 0x%016lx",
982         xd->vlib_hw_if_index, msg.u64);
983
984       dpdk_vhost_user_set_features(xd->vlib_hw_if_index, msg.u64);
985       break;
986
987     case VHOST_USER_SET_MEM_TABLE:
988       DBG_SOCK("if %d msg VHOST_USER_SET_MEM_TABLE nregions %d",
989         xd->vlib_hw_if_index, msg.memory.nregions);
990
991       if ((msg.memory.nregions < 1) ||
992           (msg.memory.nregions > VHOST_MEMORY_MAX_NREGIONS)) {
993
994         DBG_SOCK("number of mem regions must be between 1 and %i",
995           VHOST_MEMORY_MAX_NREGIONS);
996
997         goto close_socket;
998       }
999
1000       if (msg.memory.nregions != number_of_fds) {
1001         DBG_SOCK("each memory region must have FD");
1002         goto close_socket;
1003       }
1004
1005       dpdk_vhost_user_set_mem_table(xd->vlib_hw_if_index, &msg.memory, fds);
1006       break;
1007
1008     case VHOST_USER_SET_VRING_NUM:
1009       DBG_SOCK("if %d msg VHOST_USER_SET_VRING_NUM idx %d num %d",
1010         xd->vlib_hw_if_index, msg.state.index, msg.state.num);
1011
1012       if ((msg.state.num > 32768) || /* maximum ring size is 32768 */
1013           (msg.state.num == 0) ||    /* it cannot be zero */
1014           (msg.state.num % 2))       /* must be power of 2 */
1015         goto close_socket;
1016
1017       dpdk_vhost_user_set_vring_num(xd->vlib_hw_if_index, msg.state.index, msg.state.num);
1018       break;
1019
1020     case VHOST_USER_SET_VRING_ADDR:
1021       DBG_SOCK("if %d msg VHOST_USER_SET_VRING_ADDR idx %d",
1022         xd->vlib_hw_if_index, msg.state.index);
1023
1024       dpdk_vhost_user_set_vring_addr(xd->vlib_hw_if_index, msg.state.index,
1025                                     msg.addr.desc_user_addr,
1026                                     msg.addr.used_user_addr,
1027                                     msg.addr.avail_user_addr);
1028       break;
1029
1030     case VHOST_USER_SET_OWNER:
1031       DBG_SOCK("if %d msg VHOST_USER_SET_OWNER",
1032         xd->vlib_hw_if_index);
1033       break;
1034
1035     case VHOST_USER_RESET_OWNER:
1036       DBG_SOCK("if %d msg VHOST_USER_RESET_OWNER",
1037         xd->vlib_hw_if_index);
1038       break;
1039
1040     case VHOST_USER_SET_VRING_CALL:
1041       q = (u8) (msg.u64 & 0xFF);
1042
1043       DBG_SOCK("if %d msg VHOST_USER_SET_VRING_CALL u64 %lx, idx: %d",
1044         xd->vlib_hw_if_index, msg.u64, q);
1045
1046       if (!(msg.u64 & 0x100))
1047       {
1048         if (number_of_fds != 1)
1049           goto close_socket;
1050         fd = fds[0];
1051       } else {
1052         fd = -1;
1053       }
1054       dpdk_vhost_user_set_vring_call(xd->vlib_hw_if_index, q, fd);
1055
1056       break;
1057
1058     case VHOST_USER_SET_VRING_KICK:
1059
1060       q = (u8) (msg.u64 & 0xFF);
1061
1062       DBG_SOCK("if %d msg VHOST_USER_SET_VRING_KICK u64 %lx, idx: %d",
1063         xd->vlib_hw_if_index, msg.u64, q);
1064
1065       if (!(msg.u64 & 0x100))
1066       {
1067         if (number_of_fds != 1)
1068           goto close_socket;
1069
1070         vui->vrings[q].kickfd = fds[0];
1071       }
1072       else
1073         vui->vrings[q].kickfd = -1;
1074
1075       dpdk_vhost_user_set_vring_kick(xd->vlib_hw_if_index, q, vui->vrings[q].kickfd);
1076       break;
1077
1078     case VHOST_USER_SET_VRING_ERR:
1079
1080       q = (u8) (msg.u64 & 0xFF);
1081
1082       DBG_SOCK("if %d msg VHOST_USER_SET_VRING_ERR u64 %lx, idx: %d",
1083         xd->vlib_hw_if_index, msg.u64, q);
1084
1085       if (!(msg.u64 & 0x100))
1086       {
1087         if (number_of_fds != 1)
1088           goto close_socket;
1089
1090         fd = fds[0];
1091       }
1092       else
1093         fd = -1;
1094
1095       vui->vrings[q].errfd = fd;
1096       break;
1097
1098     case VHOST_USER_SET_VRING_BASE:
1099       DBG_SOCK("if %d msg VHOST_USER_SET_VRING_BASE idx %d num %d",
1100         xd->vlib_hw_if_index, msg.state.index, msg.state.num);
1101
1102       dpdk_vhost_user_set_vring_base(xd->vlib_hw_if_index, msg.state.index, msg.state.num);
1103       break;
1104
1105     case VHOST_USER_GET_VRING_BASE:
1106       DBG_SOCK("if %d msg VHOST_USER_GET_VRING_BASE idx %d num %d",
1107         xd->vlib_hw_if_index, msg.state.index, msg.state.num);
1108
1109       msg.flags |= VHOST_USER_REPLY_MASK;
1110       msg.size = sizeof(msg.state);
1111
1112       dpdk_vhost_user_get_vring_base(xd->vlib_hw_if_index, msg.state.index, &msg.state.num);
1113       break;
1114
1115     case VHOST_USER_NONE:
1116       DBG_SOCK("if %d msg VHOST_USER_NONE",
1117         xd->vlib_hw_if_index);
1118       break;
1119
1120     case VHOST_USER_SET_LOG_BASE:
1121       DBG_SOCK("if %d msg VHOST_USER_SET_LOG_BASE",
1122         xd->vlib_hw_if_index);
1123       break;
1124
1125     case VHOST_USER_SET_LOG_FD:
1126       DBG_SOCK("if %d msg VHOST_USER_SET_LOG_FD",
1127         xd->vlib_hw_if_index);
1128       break;
1129
1130 #if RTE_VERSION >= RTE_VERSION_NUM(2, 2, 0, 0)
1131     case VHOST_USER_GET_PROTOCOL_FEATURES:
1132       DBG_SOCK("if %d msg VHOST_USER_GET_PROTOCOL_FEATURES",
1133         xd->vlib_hw_if_index);
1134
1135       msg.flags |= VHOST_USER_REPLY_MASK;
1136       msg.u64 = VHOST_USER_PROTOCOL_FEATURES;
1137       DBG_SOCK("VHOST_USER_PROTOCOL_FEATURES: %llx", VHOST_USER_PROTOCOL_FEATURES);
1138       msg.size = sizeof(msg.u64);
1139       break;
1140
1141     case VHOST_USER_SET_PROTOCOL_FEATURES:
1142       DBG_SOCK("if %d msg VHOST_USER_SET_PROTOCOL_FEATURES",
1143         xd->vlib_hw_if_index);
1144
1145       DBG_SOCK("VHOST_USER_SET_PROTOCOL_FEATURES: 0x%lx",
1146         msg.u64);
1147       dpdk_vhost_user_set_protocol_features(xd->vlib_hw_if_index,
1148         msg.u64);
1149       break;
1150
1151     case VHOST_USER_SET_VRING_ENABLE:
1152       DBG_SOCK("%d VPP VHOST_USER_SET_VRING_ENABLE IDX: %d, Enable: %d",
1153         xd->vlib_hw_if_index, msg.state.index, msg.state.num);
1154       dpdk_vhost_user_set_vring_enable
1155         (xd->vlib_hw_if_index, msg.state.index, msg.state.num);
1156       break;
1157
1158     case VHOST_USER_GET_QUEUE_NUM:
1159       DBG_SOCK("if %d msg VHOST_USER_GET_QUEUE_NUM:",
1160         xd->vlib_hw_if_index);
1161
1162       msg.flags |= VHOST_USER_REPLY_MASK;
1163       msg.u64 = xd->vu_vhost_dev.virt_qp_nb;
1164       msg.size = sizeof(msg.u64);
1165       break;
1166 #endif
1167
1168     default:
1169       DBG_SOCK("unknown vhost-user message %d received. closing socket",
1170         msg.request);
1171       goto close_socket;
1172   }
1173
1174   /* if we have pointers to descriptor table, go up*/
1175   if (!vui->is_up &&
1176       xd->vu_vhost_dev.virtqueue[VHOST_NET_VRING_IDX_TX]->desc &&
1177       xd->vu_vhost_dev.virtqueue[VHOST_NET_VRING_IDX_RX]->desc) {
1178
1179       DBG_SOCK("interface %d connected", xd->vlib_sw_if_index);
1180
1181       vnet_hw_interface_set_flags (vnm, xd->vlib_hw_if_index,  VNET_HW_INTERFACE_FLAG_LINK_UP);
1182       vui->is_up = 1;
1183       xd->admin_up = 1;
1184   }
1185
1186   /* if we need to reply */
1187   if (msg.flags & VHOST_USER_REPLY_MASK)
1188   {
1189       n = send(uf->file_descriptor, &msg, VHOST_USER_MSG_HDR_SZ + msg.size, 0);
1190       if (n != (msg.size + VHOST_USER_MSG_HDR_SZ))
1191         goto close_socket;
1192   }
1193
1194   return 0;
1195
1196 close_socket:
1197   DBG_SOCK("error: close_socket");
1198   dpdk_vhost_user_if_disconnect(xd);
1199   return 0;
1200 }
1201
1202 static clib_error_t * dpdk_vhost_user_socket_error (unix_file_t * uf)
1203 {
1204   dpdk_main_t * dm = &dpdk_main;
1205   dpdk_device_t *xd;
1206   uword * p;
1207
1208   p = hash_get (dm->vu_sw_if_index_by_sock_fd, uf->file_descriptor);
1209   if (p == 0) {
1210       DBG_SOCK ("FD %d doesn't belong to any interface",
1211                     uf->file_descriptor);
1212       return 0;
1213     }
1214   else
1215       xd = dpdk_vhost_user_device_from_sw_if_index(p[0]);
1216
1217   dpdk_vhost_user_if_disconnect(xd);
1218   return 0;
1219 }
1220
1221 static clib_error_t * dpdk_vhost_user_socksvr_accept_ready (unix_file_t * uf)
1222 {
1223   int client_fd, client_len;
1224   struct sockaddr_un client;
1225   unix_file_t template = {0};
1226   dpdk_main_t * dm = &dpdk_main;
1227   dpdk_device_t * xd = NULL;
1228   dpdk_vu_intf_t * vui;
1229   uword * p;
1230
1231   p = hash_get (dm->vu_sw_if_index_by_listener_fd,
1232                 uf->file_descriptor);
1233   if (p == 0) {
1234       DBG_SOCK ("fd %d doesn't belong to any interface",
1235                     uf->file_descriptor);
1236       return 0;
1237     }
1238
1239   xd = dpdk_vhost_user_device_from_sw_if_index(p[0]);
1240   ASSERT(xd != NULL);
1241   vui = xd->vu_intf;
1242
1243   client_len = sizeof(client);
1244   client_fd = accept (uf->file_descriptor,
1245                       (struct sockaddr *)&client,
1246                       (socklen_t *)&client_len);
1247
1248   if (client_fd < 0)
1249       return clib_error_return_unix (0, "accept");
1250
1251   template.read_function = dpdk_vhost_user_socket_read;
1252   template.error_function = dpdk_vhost_user_socket_error;
1253   template.file_descriptor = client_fd;
1254   vui->unix_file_index = unix_file_add (&unix_main, &template);
1255
1256   vui->client_fd = client_fd;
1257   hash_set (dm->vu_sw_if_index_by_sock_fd, vui->client_fd,
1258             xd->vlib_sw_if_index);
1259
1260   return 0;
1261 }
1262
1263 // init server socket on specified sock_filename
1264 static int dpdk_vhost_user_init_server_sock(const char * sock_filename, int *sockfd)
1265 {
1266   int rv = 0, len;
1267   struct sockaddr_un un;
1268   int fd;
1269   /* create listening socket */
1270   fd = socket(AF_UNIX, SOCK_STREAM, 0);
1271
1272   if (fd < 0) {
1273     return VNET_API_ERROR_SYSCALL_ERROR_1;
1274   }
1275
1276   un.sun_family = AF_UNIX;
1277   strcpy((char *) un.sun_path, (char *) sock_filename);
1278
1279   /* remove if exists */
1280   unlink( (char *) sock_filename);
1281
1282   len = strlen((char *) un.sun_path) + strlen((char *) sock_filename);
1283
1284   if (bind(fd, (struct sockaddr *) &un, len) == -1) {
1285     rv = VNET_API_ERROR_SYSCALL_ERROR_2;
1286     goto error;
1287   }
1288
1289   if (listen(fd, 1) == -1) {
1290     rv = VNET_API_ERROR_SYSCALL_ERROR_3;
1291     goto error;
1292   }
1293
1294   unix_file_t template = {0};
1295   template.read_function = dpdk_vhost_user_socksvr_accept_ready;
1296   template.file_descriptor = fd;
1297   unix_file_add (&unix_main, &template);
1298   *sockfd = fd;
1299   return rv;
1300
1301 error:
1302   close(fd);
1303   return rv;
1304 }
1305
1306 /*
1307  * vhost-user interface control functions used from vpe api
1308  */
1309
1310 int dpdk_vhost_user_create_if(vnet_main_t * vnm, vlib_main_t * vm,
1311                               const char * sock_filename,
1312                               u8 is_server,
1313                               u32 * sw_if_index,
1314                               u64 feature_mask,
1315                               u8 renumber, u32 custom_dev_instance,
1316                               u8 *hwaddr)
1317 {
1318   dpdk_main_t * dm = &dpdk_main;
1319   dpdk_device_t *xd;
1320   u32 hw_if_idx = ~0;
1321   int sockfd = -1;
1322   int rv = 0;
1323
1324   // using virtio vhost user?
1325   if (dm->use_virtio_vhost) {
1326       return vhost_user_create_if(vnm, vm, sock_filename, is_server,
1327               sw_if_index, feature_mask, renumber, custom_dev_instance, hwaddr);
1328   }
1329
1330   if (is_server) {
1331     if ((rv = dpdk_vhost_user_init_server_sock (sock_filename, &sockfd)) != 0) {
1332         return rv;
1333     }
1334   }
1335
1336   if (renumber) {
1337       // set next vhost-user if id if custom one is higher or equal
1338       if (custom_dev_instance >= dm->next_vu_if_id)
1339           dm->next_vu_if_id = custom_dev_instance + 1;
1340
1341     dpdk_create_vhost_user_if_internal(&hw_if_idx, custom_dev_instance, hwaddr);
1342   } else 
1343     dpdk_create_vhost_user_if_internal(&hw_if_idx, (u32)~0, hwaddr);
1344   DBG_SOCK("dpdk vhost-user interface created hw_if_index %d", hw_if_idx);
1345
1346   xd = dpdk_vhost_user_device_from_hw_if_index(hw_if_idx);
1347   ASSERT(xd != NULL);
1348
1349   dpdk_vhost_user_vui_init (vnm, xd, sockfd, sock_filename, is_server,
1350                             feature_mask, sw_if_index);
1351
1352   dpdk_vhost_user_vui_register (vm, xd);
1353   return rv;
1354 }
1355
1356 int dpdk_vhost_user_modify_if(vnet_main_t * vnm, vlib_main_t * vm,
1357                          const char * sock_filename,
1358                          u8 is_server,
1359                          u32 sw_if_index,
1360                          u64 feature_mask,
1361                          u8 renumber, u32 custom_dev_instance)
1362 {
1363   dpdk_main_t * dm = &dpdk_main;
1364   dpdk_device_t * xd;
1365   dpdk_vu_intf_t * vui = NULL;
1366   u32 sw_if_idx = ~0;
1367   int sockfd = -1;
1368   int rv = 0;
1369
1370   // using virtio vhost user?
1371   if (dm->use_virtio_vhost) {
1372       return vhost_user_modify_if(vnm, vm, sock_filename, is_server,
1373               sw_if_index, feature_mask, renumber, custom_dev_instance);
1374   }
1375
1376   xd = dpdk_vhost_user_device_from_sw_if_index(sw_if_index);
1377
1378   if (xd == NULL)
1379     return VNET_API_ERROR_INVALID_SW_IF_INDEX;
1380
1381   vui = xd->vu_intf;
1382
1383   // interface is inactive
1384   vui->active = 0;
1385   // disconnect interface sockets
1386   dpdk_vhost_user_if_disconnect(xd);
1387
1388   if (is_server) {
1389       if ((rv = dpdk_vhost_user_init_server_sock (sock_filename, &sockfd)) != 0) {
1390           return rv;
1391       }
1392   }
1393
1394   dpdk_vhost_user_vui_init (vnm, xd, sockfd, sock_filename, is_server,
1395                        feature_mask, &sw_if_idx);
1396
1397   if (renumber) {
1398     vnet_interface_name_renumber (sw_if_idx, custom_dev_instance);
1399   }
1400
1401   dpdk_vhost_user_vui_register (vm, xd);
1402
1403   return rv;
1404 }
1405
1406 int dpdk_vhost_user_delete_if(vnet_main_t * vnm, vlib_main_t * vm,
1407                          u32 sw_if_index)
1408 {
1409   dpdk_main_t * dm = &dpdk_main;
1410   dpdk_device_t * xd = NULL;
1411   dpdk_vu_intf_t * vui;
1412   int rv = 0;
1413
1414   // using virtio vhost user?
1415   if (dm->use_virtio_vhost) {
1416       return vhost_user_delete_if(vnm, vm, sw_if_index);
1417   }
1418
1419   xd = dpdk_vhost_user_device_from_sw_if_index(sw_if_index);
1420
1421   if (xd == NULL)
1422     return VNET_API_ERROR_INVALID_SW_IF_INDEX;
1423
1424   vui = xd->vu_intf;
1425
1426   // interface is inactive
1427   vui->active = 0;
1428   // disconnect interface sockets
1429   dpdk_vhost_user_if_disconnect(xd);
1430   // add to inactive interface list
1431   vec_add1 (dm->vu_inactive_interfaces_device_index, xd->device_index);
1432
1433   ethernet_delete_interface (vnm, xd->vlib_hw_if_index);
1434   DBG_SOCK ("deleted (deactivated) vhost-user interface sw_if_index %d", sw_if_index);
1435
1436   return rv;
1437 }
1438
1439 int dpdk_vhost_user_dump_ifs(vnet_main_t * vnm, vlib_main_t * vm, vhost_user_intf_details_t **out_vuids)
1440 {
1441     int rv = 0;
1442     dpdk_main_t * dm = &dpdk_main;
1443     dpdk_device_t * xd;
1444     dpdk_vu_intf_t * vui;
1445     struct virtio_net * vhost_dev;
1446     vhost_user_intf_details_t * r_vuids = NULL;
1447     vhost_user_intf_details_t * vuid = NULL;
1448     u32 * hw_if_indices = 0;
1449     vnet_hw_interface_t * hi;
1450     u8 *s = NULL;
1451     int i;
1452
1453     if (!out_vuids)
1454         return -1;
1455
1456     // using virtio vhost user?
1457     if (dm->use_virtio_vhost) {
1458         return vhost_user_dump_ifs(vnm, vm, out_vuids);
1459     }
1460
1461     vec_foreach (xd, dm->devices) {
1462       if (xd->dev_type == VNET_DPDK_DEV_VHOST_USER &&
1463               xd->vu_intf->active)
1464         vec_add1(hw_if_indices, xd->vlib_hw_if_index);
1465     }
1466
1467     for (i = 0; i < vec_len (hw_if_indices); i++) {
1468       hi = vnet_get_hw_interface (vnm, hw_if_indices[i]);
1469       xd = dpdk_vhost_user_device_from_hw_if_index(hw_if_indices[i]);
1470       if (!xd) {
1471           clib_warning("invalid vhost-user interface hw_if_index %d", hw_if_indices[i]);
1472           continue;
1473       }
1474
1475       vui = xd->vu_intf;
1476       ASSERT(vui != NULL);
1477       vhost_dev = &xd->vu_vhost_dev;
1478       u32 virtio_net_hdr_sz = (vui->num_vrings > 0 ?
1479             vhost_dev->virtqueue[0]->vhost_hlen : 0);
1480
1481       vec_add2(r_vuids, vuid, 1);
1482       vuid->sw_if_index = xd->vlib_sw_if_index;
1483       vuid->virtio_net_hdr_sz = virtio_net_hdr_sz;
1484       vuid->features = vhost_dev->features;
1485       vuid->is_server = vui->sock_is_server;
1486       vuid->num_regions = (vhost_dev->mem != NULL ? vhost_dev->mem->nregions : 0);
1487       vuid->sock_errno = vui->sock_errno;
1488       strncpy((char *)vuid->sock_filename, (char *)vui->sock_filename,
1489               ARRAY_LEN(vuid->sock_filename)-1);
1490
1491       s = format (s, "%v%c", hi->name, 0);
1492
1493       strncpy((char *)vuid->if_name, (char *)s,
1494               ARRAY_LEN(vuid->if_name)-1);
1495       _vec_len(s) = 0;
1496     }
1497
1498     vec_free (s);
1499     vec_free (hw_if_indices);
1500
1501     *out_vuids = r_vuids;
1502
1503     return rv;
1504 }
1505
1506 /*
1507  * Processing functions called from dpdk process fn
1508  */
1509
1510 typedef struct {
1511     struct sockaddr_un sun;
1512     int sockfd;
1513     unix_file_t template;
1514     uword *event_data;
1515 } dpdk_vu_process_state;
1516
1517 void dpdk_vhost_user_process_init (void **ctx)
1518 {
1519     dpdk_vu_process_state *state = clib_mem_alloc (sizeof(dpdk_vu_process_state));
1520     memset(state, 0, sizeof(*state));
1521     state->sockfd = socket(AF_UNIX, SOCK_STREAM, 0);
1522     state->sun.sun_family = AF_UNIX;
1523     state->template.read_function = dpdk_vhost_user_socket_read;
1524     state->template.error_function = dpdk_vhost_user_socket_error;
1525     state->event_data = 0;
1526     *ctx = state;
1527 }
1528
1529 void dpdk_vhost_user_process_cleanup (void *ctx)
1530 {
1531     clib_mem_free(ctx);
1532 }
1533
1534 uword dpdk_vhost_user_process_if (vlib_main_t *vm, dpdk_device_t *xd, void *ctx)
1535 {
1536     dpdk_main_t * dm = &dpdk_main;
1537     dpdk_vu_process_state *state = (dpdk_vu_process_state *)ctx;
1538     dpdk_vu_intf_t *vui = xd->vu_intf;
1539
1540     if (vui->sock_is_server || !vui->active)
1541         return 0;
1542
1543     if (vui->unix_fd == -1) {
1544         /* try to connect */
1545         strncpy(state->sun.sun_path,  (char *) vui->sock_filename, sizeof(state->sun.sun_path) - 1);
1546
1547         if (connect(state->sockfd, (struct sockaddr *) &(state->sun), sizeof(struct sockaddr_un)) == 0) {
1548             vui->sock_errno = 0;
1549             vui->unix_fd = state->sockfd;
1550             state->template.file_descriptor = state->sockfd;
1551             vui->unix_file_index = unix_file_add (&unix_main, &(state->template));
1552             hash_set (dm->vu_sw_if_index_by_sock_fd, state->sockfd, xd->vlib_sw_if_index);
1553
1554             state->sockfd = socket(AF_UNIX, SOCK_STREAM, 0);
1555             if (state->sockfd < 0)
1556                 return -1;
1557         } else {
1558             vui->sock_errno = errno;
1559         }
1560     } else {
1561         /* check if socket is alive */
1562         int error = 0;
1563         socklen_t len = sizeof (error);
1564         int retval = getsockopt(vui->unix_fd, SOL_SOCKET, SO_ERROR, &error, &len);
1565
1566         if (retval)
1567             dpdk_vhost_user_if_disconnect(xd);
1568     }
1569     return 0;
1570 }
1571
1572 /*
1573  * CLI functions
1574  */
1575
1576 static clib_error_t *
1577 dpdk_vhost_user_connect_command_fn (vlib_main_t * vm,
1578                  unformat_input_t * input,
1579                  vlib_cli_command_t * cmd)
1580 {
1581   dpdk_main_t * dm = &dpdk_main;
1582   unformat_input_t _line_input, * line_input = &_line_input;
1583   u8 * sock_filename = NULL;
1584   u32 sw_if_index;
1585   u8 is_server = 0;
1586   u64 feature_mask = (u64)~0;
1587   u8 renumber = 0;
1588   u32 custom_dev_instance = ~0;
1589   u8 hwaddr[6];
1590   u8 *hw = NULL;
1591
1592   if (dm->use_virtio_vhost) {
1593       return vhost_user_connect_command_fn(vm, input, cmd);
1594   }
1595
1596   /* Get a line of input. */
1597   if (! unformat_user (input, unformat_line_input, line_input))
1598     return 0;
1599
1600   while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT) {
1601     if (unformat (line_input, "socket %s", &sock_filename))
1602       ;
1603     else if (unformat (line_input, "server"))
1604       is_server = 1;
1605     else if (unformat (line_input, "feature-mask 0x%llx", &feature_mask))
1606       ;
1607     else if (unformat (line_input, "hwaddr %U", unformat_ethernet_address, hwaddr))
1608       hw = hwaddr;
1609     else if (unformat (line_input, "renumber %d", &custom_dev_instance)) {
1610         renumber = 1;
1611     }
1612     else
1613       return clib_error_return (0, "unknown input `%U'",
1614                                 format_unformat_error, input);
1615   }
1616   unformat_free (line_input);
1617
1618   vnet_main_t *vnm = vnet_get_main();
1619   if (sock_filename == NULL)
1620       return clib_error_return (0, "missing socket file");
1621
1622   dpdk_vhost_user_create_if(vnm, vm, (char *)sock_filename,
1623                             is_server, &sw_if_index, feature_mask,
1624                             renumber, custom_dev_instance, hw);
1625
1626   vec_free(sock_filename);
1627   return 0;
1628 }
1629
1630 VLIB_CLI_COMMAND (dpdk_vhost_user_connect_command, static) = {
1631     .path = "create vhost-user",
1632     .short_help = "create vhost-user socket <socket-filename> [server] [feature-mask <hex>] [renumber <dev_instance>]",
1633     .function = dpdk_vhost_user_connect_command_fn,
1634 };
1635
1636 static clib_error_t *
1637 dpdk_vhost_user_delete_command_fn (vlib_main_t * vm,
1638                  unformat_input_t * input,
1639                  vlib_cli_command_t * cmd)
1640 {
1641   dpdk_main_t * dm = &dpdk_main;
1642   clib_error_t * error = 0;
1643   unformat_input_t _line_input, * line_input = &_line_input;
1644   u32 sw_if_index = ~0;
1645
1646   if (dm->use_virtio_vhost) {
1647       return vhost_user_delete_command_fn(vm, input, cmd);
1648   }
1649
1650   /* Get a line of input. */
1651   if (! unformat_user (input, unformat_line_input, line_input))
1652     return 0;
1653
1654   while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT) {
1655     if (unformat (line_input, "sw_if_index %d", &sw_if_index))
1656       ;
1657     else
1658       return clib_error_return (0, "unknown input `%U'",
1659                                 format_unformat_error, input);
1660   }
1661   unformat_free (line_input);
1662
1663   if (sw_if_index == ~0) {
1664       error = clib_error_return (0, "invalid sw_if_index",
1665                                  format_unformat_error, input);
1666       return error;
1667   }
1668
1669   vnet_main_t *vnm = vnet_get_main();
1670
1671   dpdk_vhost_user_delete_if(vnm, vm, sw_if_index);
1672
1673   return 0;
1674 }
1675
1676 VLIB_CLI_COMMAND (dpdk_vhost_user_delete_command, static) = {
1677     .path = "delete vhost-user",
1678     .short_help = "delete vhost-user sw_if_index <nn>",
1679     .function = dpdk_vhost_user_delete_command_fn,
1680 };
1681
1682 #define foreach_dpdk_vhost_feature      \
1683  _ (VIRTIO_NET_F_MRG_RXBUF)             \
1684  _ (VIRTIO_NET_F_CTRL_VQ)               \
1685  _ (VIRTIO_NET_F_CTRL_RX)
1686
1687 static clib_error_t *
1688 show_dpdk_vhost_user_command_fn (vlib_main_t * vm,
1689                  unformat_input_t * input,
1690                  vlib_cli_command_t * cmd)
1691 {
1692   clib_error_t * error = 0;
1693   dpdk_main_t * dm = &dpdk_main;
1694   vnet_main_t * vnm = vnet_get_main();
1695   dpdk_device_t * xd;
1696   dpdk_vu_intf_t * vui;
1697   struct virtio_net * vhost_dev;
1698   u32 hw_if_index, * hw_if_indices = 0;
1699   vnet_hw_interface_t * hi;
1700   int i, j, q;
1701   int show_descr = 0;
1702   struct virtio_memory * mem;
1703   struct feat_struct { u8 bit; char *str;};
1704   struct feat_struct *feat_entry;
1705
1706   static struct feat_struct feat_array[] = {
1707 #define _(f) { .str = #f, .bit = f, },
1708   foreach_dpdk_vhost_feature
1709 #undef _
1710   { .str = NULL }
1711   };
1712
1713   if (dm->use_virtio_vhost) {
1714     return show_vhost_user_command_fn(vm, input, cmd);
1715   }
1716
1717   while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT) {
1718     if (unformat (input, "%U", unformat_vnet_hw_interface, vnm, &hw_if_index)) {
1719       vec_add1 (hw_if_indices, hw_if_index);
1720       vlib_cli_output(vm, "add %d", hw_if_index);
1721     }
1722     else if (unformat (input, "descriptors") || unformat (input, "desc") )
1723       show_descr = 1;
1724     else {
1725       error = clib_error_return (0, "unknown input `%U'",
1726                                      format_unformat_error, input);
1727       goto done;
1728     }
1729   }
1730   if (vec_len (hw_if_indices) == 0) {
1731     vec_foreach (xd, dm->devices) {
1732       if (xd->dev_type == VNET_DPDK_DEV_VHOST_USER && xd->vu_intf->active)
1733         vec_add1(hw_if_indices, xd->vlib_hw_if_index);
1734     }
1735   }
1736
1737   vlib_cli_output (vm, "DPDK vhost-user interfaces");
1738   vlib_cli_output (vm, "Global:\n  coalesce frames %d time %e\n\n",
1739                    dm->vhost_coalesce_frames, dm->vhost_coalesce_time);
1740
1741   for (i = 0; i < vec_len (hw_if_indices); i++) {
1742     hi = vnet_get_hw_interface (vnm, hw_if_indices[i]);
1743
1744     if (!(xd = dpdk_vhost_user_device_from_hw_if_index(hw_if_indices[i]))) {
1745         error = clib_error_return (0, "not dpdk vhost-user interface: '%s'",
1746                                        hi->name);
1747         goto done;
1748     }
1749     vui = xd->vu_intf;
1750     vhost_dev = &xd->vu_vhost_dev;
1751     mem = vhost_dev->mem;
1752     u32 virtio_net_hdr_sz = (vui->num_vrings > 0 ?
1753             vhost_dev->virtqueue[0]->vhost_hlen : 0);
1754
1755     vlib_cli_output (vm, "Interface: %v (ifindex %d)",
1756                          hi->name, hw_if_indices[i]);
1757
1758     vlib_cli_output (vm, "virtio_net_hdr_sz %d\n features (0x%llx): \n",
1759                          virtio_net_hdr_sz, xd->vu_vhost_dev.features);
1760
1761     feat_entry = (struct feat_struct *) &feat_array;
1762     while(feat_entry->str) {
1763       if (xd->vu_vhost_dev.features & (1 << feat_entry->bit))
1764         vlib_cli_output (vm, "   %s (%d)", feat_entry->str, feat_entry->bit);
1765       feat_entry++;
1766     }
1767
1768     vlib_cli_output (vm, "\n");
1769
1770     vlib_cli_output (vm, " socket filename %s type %s errno \"%s\"\n\n",
1771                          vui->sock_filename, vui->sock_is_server ? "server" : "client",
1772                          strerror(vui->sock_errno));
1773
1774     vlib_cli_output (vm, " Memory regions (total %d)\n", mem->nregions);
1775
1776     if (mem->nregions){
1777       vlib_cli_output(vm, " region fd    guest_phys_addr    memory_size        userspace_addr     mmap_offset        mmap_addr\n");
1778       vlib_cli_output(vm, " ====== ===== ================== ================== ================== ================== ==================\n");
1779     }
1780     for (j = 0; j < mem->nregions; j++) {
1781       vlib_cli_output(vm, "  %d     %-5d 0x%016lx 0x%016lx 0x%016lx 0x%016lx 0x%016lx\n", j,
1782         vui->region_fd[j],
1783         mem->regions[j].guest_phys_address,
1784         mem->regions[j].memory_size,
1785         mem->regions[j].userspace_address,
1786         mem->regions[j].address_offset,
1787         vui->region_addr[j]);
1788     }
1789     for (q = 0; q < vui->num_vrings; q++) {
1790       struct vhost_virtqueue *vq = vhost_dev->virtqueue[q];
1791       const char *qtype = (q & 1) ? "TX" : "RX";
1792
1793       vlib_cli_output(vm, "\n Virtqueue %d (%s)\n", q/2, qtype);
1794
1795       vlib_cli_output(vm, "  qsz %d last_used_idx %d last_used_idx_res %d\n",
1796               vq->size, vq->last_used_idx, vq->last_used_idx_res);
1797
1798       if (vq->avail && vq->used)
1799         vlib_cli_output(vm, "  avail.flags %x avail.idx %d used.flags %x used.idx %d\n",
1800           vq->avail->flags, vq->avail->idx, vq->used->flags, vq->used->idx);
1801
1802 #if RTE_VERSION >= RTE_VERSION_NUM(2, 2, 0, 0)
1803       vlib_cli_output(vm, "  kickfd %d callfd %d errfd %d enabled %d\n",
1804         vq->kickfd, vq->callfd, vui->vrings[q].errfd, vq->enabled);
1805
1806       if (show_descr && vq->enabled) {
1807 #else
1808       vlib_cli_output(vm, "  kickfd %d callfd %d errfd\n",
1809         vq->kickfd, vq->callfd, vui->vrings[q].errfd);
1810
1811       if (show_descr) {
1812 #endif
1813         vlib_cli_output(vm, "\n  descriptor table:\n");
1814         vlib_cli_output(vm, "   id          addr         len  flags  next      user_addr\n");
1815         vlib_cli_output(vm, "  ===== ================== ===== ====== ===== ==================\n");
1816         for(j = 0; j < vq->size; j++) {
1817           vlib_cli_output(vm, "  %-5d 0x%016lx %-5d 0x%04x %-5d 0x%016lx\n",
1818             j,
1819             vq->desc[j].addr,
1820             vq->desc[j].len,
1821             vq->desc[j].flags,
1822             vq->desc[j].next,
1823             (u64) map_guest_mem(xd, vq->desc[j].addr));}
1824       }
1825     }
1826     vlib_cli_output (vm, "\n");
1827   }
1828 done:
1829   vec_free (hw_if_indices);
1830   return error;
1831 }
1832
1833 VLIB_CLI_COMMAND (show_vhost_user_command, static) = {
1834     .path = "show vhost-user",
1835     .short_help = "show vhost-user interface",
1836     .function = show_dpdk_vhost_user_command_fn,
1837 };