Initial commit of vpp code.
[vpp.git] / vnet / vnet / devices / virtio / vhost-user.c
1 /* 
2  *------------------------------------------------------------------
3  * vhost.c - vhost-user
4  *
5  * Copyright (c) 2014 Cisco and/or its affiliates.
6  * Licensed under the Apache License, Version 2.0 (the "License");
7  * you may not use this file except in compliance with the License.
8  * You may obtain a copy of the License at:
9  *
10  *     http://www.apache.org/licenses/LICENSE-2.0
11  *
12  * Unless required by applicable law or agreed to in writing, software
13  * distributed under the License is distributed on an "AS IS" BASIS,
14  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  * See the License for the specific language governing permissions and
16  * limitations under the License.
17  *------------------------------------------------------------------
18  */
19
20 #include <fcntl.h>              /* for open */
21 #include <sys/ioctl.h>
22 #include <sys/socket.h>
23 #include <sys/un.h>
24 #include <sys/stat.h>
25 #include <sys/types.h>
26 #include <sys/uio.h>            /* for iovec */
27 #include <netinet/in.h>
28 #include <sys/vfs.h>
29
30 #include <linux/if_arp.h>
31 #include <linux/if_tun.h>
32
33 #include <vlib/vlib.h>
34 #include <vlib/unix/unix.h>
35
36 #include <vnet/ip/ip.h>
37
38 #include <vnet/ethernet/ethernet.h>
39
40 #include <vnet/devices/virtio/vhost-user.h>
41
42 #define VHOST_USER_DEBUG_SOCKET 0
43 #define VHOST_USER_DEBUG_VQ 0
44
45 /* Set to get virtio_net_hdr in buffer pre-data
46    details will be shown in  packet trace */
47 #define VHOST_USER_COPY_TX_HDR 0
48
49 #if VHOST_USER_DEBUG_SOCKET == 1
50 #define DBG_SOCK(args...) clib_warning(args);
51 #else
52 #define DBG_SOCK(args...)
53 #endif
54
55 #if VHOST_USER_DEBUG_VQ == 1
56 #define DBG_VQ(args...) clib_warning(args);
57 #else
58 #define DBG_VQ(args...)
59 #endif
60
61 vlib_node_registration_t vhost_user_input_node;
62
63 #define foreach_vhost_user_tx_func_error      \
64   _(PKT_DROP_NOBUF, "tx packet drops (no available descriptors)")  \
65   _(MMAP_FAIL, "mmap failure")
66
67 typedef enum {
68 #define _(f,s) VHOST_USER_TX_FUNC_ERROR_##f,
69   foreach_vhost_user_tx_func_error
70 #undef _
71   VHOST_USER_TX_FUNC_N_ERROR,
72 } vhost_user_tx_func_error_t;
73
74 static char * vhost_user_tx_func_error_strings[] = {
75 #define _(n,s) s,
76     foreach_vhost_user_tx_func_error
77 #undef _
78 };
79
80 #define foreach_vhost_user_input_func_error      \
81   _(NO_ERROR, "no error")  \
82   _(UNDERSIZED_FRAME, "undersized ethernet frame received (< 14 bytes)")
83
84 typedef enum {
85 #define _(f,s) VHOST_USER_INPUT_FUNC_ERROR_##f,
86   foreach_vhost_user_input_func_error
87 #undef _
88   VHOST_USER_INPUT_FUNC_N_ERROR,
89 } vhost_user_input_func_error_t;
90
91 static char * vhost_user_input_func_error_strings[] = {
92 #define _(n,s) s,
93     foreach_vhost_user_input_func_error
94 #undef _
95 };
96
97 static vhost_user_main_t vhost_user_main = {
98   .mtu_bytes = 1518,
99 };
100
101 VNET_HW_INTERFACE_CLASS (vhost_interface_class, static) = {
102   .name = "vhost-user",
103 };
104
105 static u8 * format_vhost_user_interface_name (u8 * s, va_list * args)
106 {
107   u32 i = va_arg (*args, u32);
108   u32 show_dev_instance = ~0;
109   vhost_user_main_t * vum = &vhost_user_main;
110
111   if (i < vec_len (vum->show_dev_instance_by_real_dev_instance))
112     show_dev_instance = vum->show_dev_instance_by_real_dev_instance[i];
113
114   if (show_dev_instance != ~0)
115     i = show_dev_instance;
116
117   s = format (s, "VirtualEthernet0/0/%d", i);
118   return s;
119 }
120
121 static int vhost_user_name_renumber (vnet_hw_interface_t * hi,
122                                      u32 new_dev_instance)
123 {
124   vhost_user_main_t * vum = &vhost_user_main;
125
126   vec_validate_init_empty (vum->show_dev_instance_by_real_dev_instance,
127                            hi->dev_instance, ~0);
128
129   vum->show_dev_instance_by_real_dev_instance [hi->dev_instance] =
130     new_dev_instance;
131
132   DBG_SOCK("renumbered vhost-user interface dev_instance %d to %d",
133            hi->dev_instance, new_dev_instance);
134
135   return 0;
136 }
137
138
139 static inline void * map_guest_mem(vhost_user_intf_t * vui, u64 addr)
140 {
141   int i;
142   for (i=0; i<vui->nregions; i++) {
143     if ((vui->regions[i].guest_phys_addr <= addr) &&
144        ((vui->regions[i].guest_phys_addr + vui->regions[i].memory_size) > addr)) {
145          return (void *) (vui->region_mmap_addr[i] + addr - vui->regions[i].guest_phys_addr);
146        }
147   }
148   DBG_VQ("failed to map guest mem addr %llx", addr);
149   return 0;
150 }
151
152 static inline void * map_user_mem(vhost_user_intf_t * vui, u64 addr)
153 {
154   int i;
155   for (i=0; i<vui->nregions; i++) {
156     if ((vui->regions[i].userspace_addr <= addr) &&
157        ((vui->regions[i].userspace_addr + vui->regions[i].memory_size) > addr)) {
158          return (void *) (vui->region_mmap_addr[i] + addr - vui->regions[i].userspace_addr);
159        }
160   }
161   return 0;
162 }
163
164 static long get_huge_page_size(int fd)
165 {
166   struct statfs s;
167   fstatfs(fd, &s);
168   return s.f_bsize;
169 }
170
171 static void unmap_all_mem_regions(vhost_user_intf_t * vui)
172 {
173   int i,r;
174   for (i=0; i<vui->nregions; i++) {
175     if (vui->region_mmap_addr[i] != (void *) -1) {
176
177       long page_sz = get_huge_page_size(vui->region_mmap_fd[i]);
178
179       ssize_t map_sz = (vui->regions[i].memory_size +
180         vui->regions[i].mmap_offset + page_sz) & ~(page_sz - 1);
181
182       r = munmap(vui->region_mmap_addr[i] - vui->regions[i].mmap_offset, map_sz);
183
184       DBG_SOCK("unmap memory region %d addr 0x%lx len 0x%lx page_sz 0x%x", i,
185         vui->region_mmap_addr[i], map_sz, page_sz);
186
187       vui->region_mmap_addr[i]= (void *) -1;
188
189       if (r == -1) {
190         clib_warning("failed to unmap memory region (errno %d)", errno);
191       }
192       close(vui->region_mmap_fd[i]);
193     }
194   }
195   vui->nregions = 0;
196 }
197
198
199 static clib_error_t * vhost_user_callfd_read_ready (unix_file_t * uf)
200 {
201   __attribute__((unused)) int n;
202   u8 buff[8];
203   n = read(uf->file_descriptor, ((char*)&buff), 8);
204   return 0;
205 }
206
207 static inline void vhost_user_if_disconnect(vhost_user_intf_t * vui)
208 {
209   vhost_user_main_t * vum = &vhost_user_main;
210   vnet_main_t * vnm = vnet_get_main();
211   int q;
212
213   vnet_hw_interface_set_flags (vnm, vui->hw_if_index,  0);
214
215   if (vui->unix_file_index != ~0) {
216       unix_file_del (&unix_main, unix_main.file_pool + vui->unix_file_index);
217       vui->unix_file_index = ~0;
218   }
219
220   hash_unset(vum->vhost_user_interface_index_by_sock_fd, vui->unix_fd);
221   hash_unset(vum->vhost_user_interface_index_by_listener_fd, vui->unix_fd);
222   close(vui->unix_fd);
223   vui->unix_fd = -1;
224   vui->is_up = 0;
225   for (q = 0; q < vui->num_vrings; q++) {
226     vui->vrings[q].desc = NULL;
227     vui->vrings[q].avail = NULL;
228     vui->vrings[q].used = NULL;
229   }
230
231   unmap_all_mem_regions(vui);
232   DBG_SOCK("interface ifindex %d disconnected", vui->sw_if_index);
233 }
234
235 static clib_error_t * vhost_user_socket_read (unix_file_t * uf)
236 {
237   int n, i;
238   int fd, number_of_fds = 0;
239   int fds[VHOST_MEMORY_MAX_NREGIONS];
240   vhost_user_msg_t msg;
241   struct msghdr mh;
242   struct iovec iov[1];
243   vhost_user_main_t * vum = &vhost_user_main;
244   vhost_user_intf_t * vui;
245   struct cmsghdr *cmsg;
246   uword * p;
247   u8 q;
248   unix_file_t template = {0};
249   vnet_main_t * vnm = vnet_get_main();
250
251   p = hash_get (vum->vhost_user_interface_index_by_sock_fd,
252                 uf->file_descriptor);
253   if (p == 0) {
254       DBG_SOCK ("FD %d doesn't belong to any interface",
255                     uf->file_descriptor);
256       return 0;
257     }
258   else
259     vui = vec_elt_at_index (vum->vhost_user_interfaces, p[0]);
260
261   char control[CMSG_SPACE(VHOST_MEMORY_MAX_NREGIONS * sizeof(int))];
262
263   memset(&mh, 0, sizeof(mh));
264   memset(control, 0, sizeof(control));
265
266   /* set the payload */
267   iov[0].iov_base = (void *) &msg;
268   iov[0].iov_len = VHOST_USER_MSG_HDR_SZ;
269
270   mh.msg_iov = iov;
271   mh.msg_iovlen = 1;
272   mh.msg_control = control;
273   mh.msg_controllen = sizeof(control);
274
275   n = recvmsg(uf->file_descriptor, &mh, 0);
276
277   if (n != VHOST_USER_MSG_HDR_SZ)
278     goto close_socket;
279
280   if (mh.msg_flags & MSG_CTRUNC) {
281     goto close_socket;
282   }
283
284   cmsg = CMSG_FIRSTHDR(&mh);
285
286   if (cmsg && (cmsg->cmsg_len > 0) && (cmsg->cmsg_level == SOL_SOCKET) &&
287       (cmsg->cmsg_type == SCM_RIGHTS) &&
288       (cmsg->cmsg_len - CMSG_LEN(0) <= VHOST_MEMORY_MAX_NREGIONS * sizeof(int))) {
289         number_of_fds = (cmsg->cmsg_len - CMSG_LEN(0)) / sizeof(int);
290         memcpy(fds, CMSG_DATA(cmsg), number_of_fds * sizeof(int));
291   }
292
293   /* version 1, no reply bit set*/
294   if ((msg.flags & 7) != 1) {
295     DBG_SOCK("malformed message received. closing socket");
296     goto close_socket;
297   }
298
299   {
300       int rv __attribute__((unused));
301       /* $$$$ pay attention to rv */
302       rv = read(uf->file_descriptor, ((char*)&msg) + n, msg.size);
303   }
304
305   switch (msg.request) {
306     case VHOST_USER_GET_FEATURES:
307       DBG_SOCK("if %d msg VHOST_USER_GET_FEATURES",
308         vui->hw_if_index);
309
310       msg.flags |= 4;
311       msg.u64 = (1 << FEAT_VIRTIO_NET_F_MRG_RXBUF) |
312                 (1 << FEAT_VIRTIO_F_ANY_LAYOUT);
313       msg.u64 &= vui->feature_mask;
314
315       msg.size = sizeof(msg.u64);
316       break;
317
318     case VHOST_USER_SET_FEATURES:
319       DBG_SOCK("if %d msg VHOST_USER_SET_FEATURES features 0x%016llx",
320         vui->hw_if_index, msg.u64);
321
322       vui->features = msg.u64;
323       if (vui->features & (1 << FEAT_VIRTIO_NET_F_MRG_RXBUF))
324         vui->virtio_net_hdr_sz = 12;
325       else
326         vui->virtio_net_hdr_sz = 10;
327
328       vui->is_any_layout = (vui->features & (1 << FEAT_VIRTIO_F_ANY_LAYOUT)) ? 1 : 0;
329
330       ASSERT (vui->virtio_net_hdr_sz < VLIB_BUFFER_PRE_DATA_SIZE);
331       vnet_hw_interface_set_flags (vnm, vui->hw_if_index,  0);
332       vui->is_up = 0;
333
334       for (q = 0; q < 2; q++) {
335         vui->vrings[q].desc = 0;
336         vui->vrings[q].avail = 0;
337         vui->vrings[q].used = 0;
338       }
339
340       DBG_SOCK("interface %d disconnected", vui->sw_if_index);
341
342       break;
343
344     case VHOST_USER_SET_MEM_TABLE:
345       DBG_SOCK("if %d msg VHOST_USER_SET_MEM_TABLE nregions %d",
346         vui->hw_if_index, msg.memory.nregions);
347
348       if ((msg.memory.nregions < 1) ||
349           (msg.memory.nregions > VHOST_MEMORY_MAX_NREGIONS)) {
350
351         DBG_SOCK("number of mem regions must be between 1 and %i",
352           VHOST_MEMORY_MAX_NREGIONS);
353
354         goto close_socket;
355       }
356
357       if (msg.memory.nregions != number_of_fds) {
358         DBG_SOCK("each memory region must have FD");
359         goto close_socket;
360       }
361       unmap_all_mem_regions(vui);
362       for(i=0; i < msg.memory.nregions; i++) {
363         memcpy(&(vui->regions[i]), &msg.memory.regions[i],
364           sizeof(vhost_user_memory_region_t));
365
366         long page_sz = get_huge_page_size(fds[i]);
367
368         /* align size to 2M page */
369         ssize_t map_sz = (vui->regions[i].memory_size +
370           vui->regions[i].mmap_offset + page_sz) & ~(page_sz - 1);
371
372         vui->region_mmap_addr[i] = mmap(0, map_sz, PROT_READ | PROT_WRITE,
373                                         MAP_SHARED, fds[i], 0);
374
375         DBG_SOCK("map memory region %d addr 0 len 0x%lx fd %d mapped 0x%lx "
376           "page_sz 0x%x", i, map_sz, fds[i], vui->region_mmap_addr[i], page_sz);
377
378         if (vui->region_mmap_addr[i]  == MAP_FAILED) {
379           clib_warning("failed to map memory. errno is %d", errno);
380           goto close_socket;
381         }
382         vui->region_mmap_addr[i] += vui->regions[i].mmap_offset;
383         vui->region_mmap_fd[i] = fds[i];
384       }
385       vui->nregions = msg.memory.nregions;
386       break;
387
388     case VHOST_USER_SET_VRING_NUM:
389       DBG_SOCK("if %d msg VHOST_USER_SET_VRING_NUM idx %d num %d",
390         vui->hw_if_index, msg.state.index, msg.state.num);
391
392       if ((msg.state.num > 32768) || /* maximum ring size is 32768 */
393           (msg.state.num == 0) ||    /* it cannot be zero */
394           (msg.state.num % 2))       /* must be power of 2 */
395         goto close_socket;
396       vui->vrings[msg.state.index].qsz = msg.state.num;
397       break;
398
399     case VHOST_USER_SET_VRING_ADDR:
400       DBG_SOCK("if %d msg VHOST_USER_SET_VRING_ADDR idx %d",
401         vui->hw_if_index, msg.state.index);
402
403       vui->vrings[msg.state.index].desc = (vring_desc_t *) 
404           map_user_mem(vui, msg.addr.desc_user_addr);
405       vui->vrings[msg.state.index].used = (vring_used_t *)
406           map_user_mem(vui, msg.addr.used_user_addr);
407       vui->vrings[msg.state.index].avail = (vring_avail_t *)
408           map_user_mem(vui, msg.addr.avail_user_addr);
409
410       if ((vui->vrings[msg.state.index].desc == NULL) ||
411           (vui->vrings[msg.state.index].used == NULL) ||
412           (vui->vrings[msg.state.index].avail == NULL)) {
413         DBG_SOCK("failed to map user memory for hw_if_index %d",
414           vui->hw_if_index);
415         goto close_socket;
416       }
417
418       vui->vrings[msg.state.index].last_used_idx =
419           vui->vrings[msg.state.index].used->idx;
420
421       /* tell driver that we don't want interrupts */
422       vui->vrings[msg.state.index].used->flags |= 1;
423       break;
424
425     case VHOST_USER_SET_OWNER:
426       DBG_SOCK("if %d msg VHOST_USER_SET_OWNER",
427         vui->hw_if_index);
428       break;
429
430     case VHOST_USER_RESET_OWNER:
431       DBG_SOCK("if %d msg VHOST_USER_RESET_OWNER",
432         vui->hw_if_index);
433       break;
434
435     case VHOST_USER_SET_VRING_CALL:
436       DBG_SOCK("if %d msg VHOST_USER_SET_VRING_CALL u64 %d",
437         vui->hw_if_index, msg.u64);
438
439       q = (u8) (msg.u64 & 0xFF);
440
441       if (!(msg.u64 & 0x100))
442       {
443         if (number_of_fds != 1)
444           goto close_socket;
445
446         /* if there is old fd, delete it */
447         if (vui->vrings[q].callfd) {
448           unix_file_t * uf = pool_elt_at_index (unix_main.file_pool,
449             vui->vrings[q].callfd_idx);
450           unix_file_del (&unix_main, uf);
451         }
452         vui->vrings[q].callfd = fds[0];
453         template.read_function = vhost_user_callfd_read_ready;
454         template.file_descriptor = fds[0];
455         vui->vrings[q].callfd_idx = unix_file_add (&unix_main, &template);
456       }
457       else
458         vui->vrings[q].callfd = -1;
459       break;
460
461     case VHOST_USER_SET_VRING_KICK:
462       DBG_SOCK("if %d msg VHOST_USER_SET_VRING_KICK u64 %d",
463         vui->hw_if_index, msg.u64);
464
465       q = (u8) (msg.u64 & 0xFF);
466
467       if (!(msg.u64 & 0x100))
468       {
469         if (number_of_fds != 1)
470           goto close_socket;
471
472         vui->vrings[q].kickfd = fds[0];
473       }
474       else
475         vui->vrings[q].kickfd = -1;
476       break;
477
478     case VHOST_USER_SET_VRING_ERR:
479       DBG_SOCK("if %d msg VHOST_USER_SET_VRING_ERR u64 %d",
480         vui->hw_if_index, msg.u64);
481
482       q = (u8) (msg.u64 & 0xFF);
483
484       if (!(msg.u64 & 0x100))
485       {
486         if (number_of_fds != 1)
487           goto close_socket;
488
489         fd = fds[0];
490       }
491       else
492         fd = -1;
493
494       vui->vrings[q].errfd = fd;
495       break;
496
497     case VHOST_USER_SET_VRING_BASE:
498       DBG_SOCK("if %d msg VHOST_USER_SET_VRING_BASE idx %d num %d",
499         vui->hw_if_index, msg.state.index, msg.state.num);
500
501       vui->vrings[msg.state.index].last_avail_idx = msg.state.num;
502       break;
503
504     case VHOST_USER_GET_VRING_BASE:
505       DBG_SOCK("if %d msg VHOST_USER_GET_VRING_BASE idx %d num %d",
506         vui->hw_if_index, msg.state.index, msg.state.num);
507
508       msg.state.num = vui->vrings[msg.state.index].last_used_idx;
509       msg.flags |= 4;
510       msg.size = sizeof(msg.state);
511       break;
512
513     case VHOST_USER_NONE:
514       DBG_SOCK("if %d msg VHOST_USER_NONE",
515         vui->hw_if_index);
516
517       break;
518
519     case VHOST_USER_SET_LOG_BASE:
520       DBG_SOCK("if %d msg VHOST_USER_SET_LOG_BASE",
521         vui->hw_if_index);
522
523       break;
524
525     case VHOST_USER_SET_LOG_FD:
526       DBG_SOCK("if %d msg VHOST_USER_SET_LOG_FD",
527         vui->hw_if_index);
528
529       break;
530
531     default:
532       DBG_SOCK("unknown vhost-user message %d received. closing socket",
533         msg.request);
534       goto close_socket;
535   }
536
537   /* if we have pointers to descriptor table, go up*/
538   if (!vui->is_up &&
539     vui->vrings[VHOST_NET_VRING_IDX_TX].desc &&
540     vui->vrings[VHOST_NET_VRING_IDX_RX].desc) {
541
542       DBG_SOCK("interface %d connected", vui->sw_if_index);
543
544       vnet_hw_interface_set_flags (vnm, vui->hw_if_index,  VNET_HW_INTERFACE_FLAG_LINK_UP);
545       vui->is_up = 1;
546
547   }
548
549   /* if we need to reply */
550   if (msg.flags & 4)
551   {
552       n = send(uf->file_descriptor, &msg, VHOST_USER_MSG_HDR_SZ + msg.size, 0);
553       if (n != (msg.size + VHOST_USER_MSG_HDR_SZ))
554         goto close_socket;
555   }
556
557   return 0;
558
559 close_socket:
560   vhost_user_if_disconnect(vui);
561   return 0;
562 }
563
564 static clib_error_t * vhost_user_socket_error (unix_file_t * uf)
565 {
566   vhost_user_main_t * vum = &vhost_user_main;
567   vhost_user_intf_t * vui;
568   uword * p;
569
570   p = hash_get (vum->vhost_user_interface_index_by_sock_fd,
571                 uf->file_descriptor);
572   if (p == 0) {
573       DBG_SOCK ("fd %d doesn't belong to any interface",
574                     uf->file_descriptor);
575       return 0;
576     }
577   else
578     vui = vec_elt_at_index (vum->vhost_user_interfaces, p[0]);
579
580   vhost_user_if_disconnect(vui);
581   return 0;
582 }
583
584 static clib_error_t * vhost_user_socksvr_accept_ready (unix_file_t * uf)
585 {
586   int client_fd, client_len;
587   struct sockaddr_un client;
588   unix_file_t template = {0};
589   vhost_user_main_t * vum = &vhost_user_main;
590   vhost_user_intf_t * vui;
591   uword * p;
592
593   p = hash_get (vum->vhost_user_interface_index_by_listener_fd,
594                 uf->file_descriptor);
595   if (p == 0) {
596       DBG_SOCK ("fd %d doesn't belong to any interface",
597                     uf->file_descriptor);
598       return 0;
599     }
600   else
601     vui = vec_elt_at_index (vum->vhost_user_interfaces, p[0]);
602
603   client_len = sizeof(client);
604   client_fd = accept (uf->file_descriptor,
605                       (struct sockaddr *)&client,
606                       (socklen_t *)&client_len);
607
608   if (client_fd < 0)
609       return clib_error_return_unix (0, "accept");
610
611   template.read_function = vhost_user_socket_read;
612   template.error_function = vhost_user_socket_error;
613   template.file_descriptor = client_fd;
614   vui->unix_file_index = unix_file_add (&unix_main, &template);
615
616   vui->client_fd = client_fd;
617   hash_set (vum->vhost_user_interface_index_by_sock_fd, vui->client_fd,
618             vui - vum->vhost_user_interfaces);
619
620   return 0;
621 }
622
623 static clib_error_t *
624 vhost_user_init (vlib_main_t * vm)
625 {
626   clib_error_t * error;
627   vhost_user_main_t * vum = &vhost_user_main;
628   vlib_thread_main_t * tm = vlib_get_thread_main();
629
630   error = vlib_call_init_function (vm, ip4_init);
631   if (error)
632     return error;
633
634   vum->vhost_user_interface_index_by_listener_fd = hash_create (0, sizeof (uword));
635   vum->vhost_user_interface_index_by_sock_fd = hash_create (0, sizeof (uword));
636   vum->vhost_user_interface_index_by_sw_if_index = hash_create (0, sizeof (uword));
637   vum->coalesce_frames = 32;
638   vum->coalesce_time = 1e-3;
639
640   vec_validate_aligned (vum->rx_buffers, tm->n_vlib_mains - 1,
641                         CLIB_CACHE_LINE_BYTES);
642
643   return 0;
644 }
645
646 VLIB_INIT_FUNCTION (vhost_user_init);
647
648 static clib_error_t *
649 vhost_user_exit (vlib_main_t * vm)
650 {
651   /* TODO cleanup */
652   return 0;
653 }
654
655 VLIB_MAIN_LOOP_EXIT_FUNCTION (vhost_user_exit);
656
657 enum {
658   VHOST_USER_RX_NEXT_ETHERNET_INPUT,
659   VHOST_USER_RX_NEXT_DROP,
660   VHOST_USER_RX_N_NEXT,
661 };
662
663
664 typedef struct {
665   u16 virtqueue;
666   u16 device_index;
667 #if VHOST_USER_COPY_TX_HDR == 1
668   virtio_net_hdr_t hdr;
669 #endif
670 } vhost_user_input_trace_t;
671
672 static u8 * format_vhost_user_input_trace (u8 * s, va_list * va)
673 {
674   CLIB_UNUSED (vlib_main_t * vm) = va_arg (*va, vlib_main_t *);
675   CLIB_UNUSED (vlib_node_t * node) = va_arg (*va, vlib_node_t *);
676   CLIB_UNUSED (vnet_main_t * vnm) = vnet_get_main();
677   vhost_user_main_t * vum = &vhost_user_main;
678   vhost_user_input_trace_t * t = va_arg (*va, vhost_user_input_trace_t *);
679   vhost_user_intf_t * vui = vec_elt_at_index (vum->vhost_user_interfaces,
680                                               t->device_index);
681
682   vnet_sw_interface_t * sw = vnet_get_sw_interface (vnm, vui->sw_if_index);
683
684 #if VHOST_USER_COPY_TX_HDR == 1
685   uword indent = format_get_indent (s);
686 #endif
687
688   s = format (s, "%U virtqueue %d",
689               format_vnet_sw_interface_name, vnm, sw,
690               t->virtqueue);
691
692 #if VHOST_USER_COPY_TX_HDR == 1
693   s = format (s, "\n%Uvirtio_net_hdr flags 0x%02x gso_type %u hdr_len %u",
694               format_white_space, indent,
695               t->hdr.flags,
696               t->hdr.gso_type,
697               t->hdr.hdr_len);
698 #endif
699
700   return s;
701 }
702
703 void vhost_user_rx_trace (vlib_main_t * vm,
704                     vlib_node_runtime_t * node,
705                     vhost_user_intf_t *vui,
706                     i16 virtqueue)
707 {
708   u32 * b, n_left;
709   vhost_user_main_t * vum = &vhost_user_main;
710
711   u32 next_index = VHOST_USER_RX_NEXT_ETHERNET_INPUT;
712
713   n_left = vec_len(vui->d_trace_buffers);
714   b = vui->d_trace_buffers;
715
716   while (n_left >= 1)
717   {
718     u32 bi0;
719     vlib_buffer_t * b0;
720     vhost_user_input_trace_t * t0;
721
722     bi0 = b[0];
723     n_left -= 1;
724
725     b0 = vlib_get_buffer (vm, bi0);
726     vlib_trace_buffer (vm, node, next_index, b0, /* follow_chain */ 0);
727     t0 = vlib_add_trace (vm, node, b0, sizeof (t0[0]));
728     t0->virtqueue = virtqueue;
729     t0->device_index = vui - vum->vhost_user_interfaces;
730 #if VHOST_USER_COPY_TX_HDR == 1
731     rte_memcpy(&t0->hdr, b0->pre_data, sizeof(virtio_net_hdr_t));
732 #endif
733
734     b+=1;
735   }
736 }
737
738 static inline void vhost_user_send_call(vlib_main_t * vm, vhost_user_vring_t * vq)
739 {
740     vhost_user_main_t * vum = &vhost_user_main;
741     u64 x = 1;
742     int rv __attribute__((unused));
743     /* $$$$ pay attention to rv */
744     rv = write(vq->callfd, &x, sizeof(x));
745     vq->n_since_last_int = 0;
746     vq->int_deadline = vlib_time_now(vm) + vum->coalesce_time;
747 }
748
749 static u32 vhost_user_if_input ( vlib_main_t * vm,
750                                vhost_user_main_t * vum, 
751                                vhost_user_intf_t * vui,
752                                vlib_node_runtime_t * node)
753 {
754   vhost_user_vring_t * txvq = &vui->vrings[VHOST_NET_VRING_IDX_TX];
755   vhost_user_vring_t * rxvq = &vui->vrings[VHOST_NET_VRING_IDX_RX];
756   uword n_rx_packets = 0;
757   uword n_left;
758   u32 bi;
759   u32 n_left_to_next, * to_next;
760   u32 next_index = VHOST_USER_RX_NEXT_ETHERNET_INPUT;
761   uword n_rx_bytes = 0;
762   uword n_trace = vlib_get_trace_count (vm, node);
763   u16 qsz_mask;
764   f64 now = vlib_time_now (vm);
765   u32 cpu_index;
766
767   vec_reset_length (vui->d_trace_buffers);
768   u32 free_list_index = VLIB_BUFFER_DEFAULT_FREE_LIST_INDEX;
769
770   /* no descriptor ptr - bail out */
771   if (PREDICT_FALSE(!txvq->desc))
772     return 0;
773
774   /* do we have pending intterupts ? */
775   if ((txvq->n_since_last_int) && (txvq->int_deadline < now))
776     vhost_user_send_call(vm, txvq);
777
778   if ((rxvq->n_since_last_int) && (rxvq->int_deadline < now))
779     vhost_user_send_call(vm, rxvq);
780
781   /* only bit 0 of avail.flags is used so we don't want to deal with this
782      interface if any other bit is set */
783   if (PREDICT_FALSE(txvq->avail->flags & 0xFFFE))
784     return 0;
785
786   /* nothing to do */
787   if (txvq->avail->idx == txvq->last_avail_idx)
788     return 0;
789
790   cpu_index = os_get_cpu_number();
791
792   if (PREDICT_TRUE(txvq->avail->idx > txvq->last_avail_idx))
793     n_left = txvq->avail->idx - txvq->last_avail_idx;
794   else /* wrapped */
795     n_left = (u16) -1 - txvq->last_avail_idx + txvq->avail->idx;
796
797   if (PREDICT_FALSE(!vui->admin_up)) {
798       /* if intf is admin down, just drop all packets waiting in the ring */
799       txvq->last_avail_idx = txvq->last_used_idx = txvq->avail->idx;
800       CLIB_MEMORY_BARRIER();
801       txvq->used->idx = txvq->last_used_idx;
802       vhost_user_send_call(vm, txvq);
803
804       return 0;
805   }
806
807   if (PREDICT_FALSE(n_left > txvq->qsz)) {
808     return 0;
809   }
810
811   if (PREDICT_FALSE(n_left > VLIB_FRAME_SIZE))
812     n_left = VLIB_FRAME_SIZE;
813
814   /* Make sure we have some RX buffers. */
815   {
816     uword l = vec_len (vum->rx_buffers[cpu_index]);
817     uword n_alloc;
818
819     if (l < n_left)
820       {
821         if (! vum->rx_buffers[cpu_index]) {
822           vec_alloc (vum->rx_buffers[cpu_index], 2 * VLIB_FRAME_SIZE );
823         }
824
825         n_alloc = vlib_buffer_alloc_from_free_list
826             (vm, vum->rx_buffers[cpu_index] + l, 2 * VLIB_FRAME_SIZE - l,
827              free_list_index);
828         if (n_alloc == 0)
829           return 0;
830         _vec_len (vum->rx_buffers[cpu_index]) = l + n_alloc;
831       }
832   }
833
834   qsz_mask = txvq->qsz - 1;
835
836   while (n_left > 0) {
837     vlib_get_next_frame (vm, node, next_index, to_next, n_left_to_next);
838
839     while (n_left > 0 && n_left_to_next > 0) {
840       vlib_buffer_t * b;
841             u16 desc_chain_head = txvq->avail->ring[txvq->last_avail_idx & qsz_mask];
842             u16 desc_current = desc_chain_head;
843             uword i_rx = vec_len (vum->rx_buffers[cpu_index]) - 1;
844
845       bi = vum->rx_buffers[cpu_index][i_rx];
846       b = vlib_get_buffer (vm, bi);
847
848       vlib_prefetch_buffer_with_index (vm, vum->rx_buffers[cpu_index][i_rx-1], STORE);
849
850       uword offset;
851       if (PREDICT_TRUE(vui->is_any_layout))
852         offset = vui->virtio_net_hdr_sz;
853       else if (!(txvq->desc[desc_current].flags & VIRTQ_DESC_F_NEXT))
854         /* WSA case, no ANYLAYOUT but single buffer */
855         offset = vui->virtio_net_hdr_sz;
856       else
857         /* CSR case without ANYLAYOUT, skip 1st buffer */
858         offset = txvq->desc[desc_current].len;
859
860       uword ptr=0;
861
862       while(1) {
863         void * buffer_addr = map_guest_mem(vui, txvq->desc[desc_current].addr);
864         CLIB_PREFETCH (&txvq->desc[txvq->desc[desc_current].next], sizeof (vring_desc_t), READ);
865
866 #if VHOST_USER_COPY_TX_HDR == 1
867         if (PREDICT_TRUE(offset)) {
868           rte_memcpy(b->pre_data, buffer_addr, sizeof(virtio_net_hdr_t)); /* 12 byte hdr is not used on tx */
869         }
870 #endif
871
872         if (txvq->desc[desc_current].len > offset) {
873           u16 len = txvq->desc[desc_current].len - offset;
874
875           if (PREDICT_FALSE(len > VLIB_BUFFER_DEFAULT_FREE_LIST_BYTES))
876             len = VLIB_BUFFER_DEFAULT_FREE_LIST_BYTES;
877
878           rte_memcpy(vlib_buffer_get_current (b) + ptr,
879                buffer_addr + offset, len);
880         }
881         ptr += txvq->desc[desc_current].len - offset;
882         offset = 0;
883
884         /* if next flag is set, take next desc in the chain */
885         if (txvq->desc[desc_current].flags & VIRTQ_DESC_F_NEXT )
886           desc_current = txvq->desc[desc_current].next;
887         else
888           break;
889       }
890
891       txvq->last_avail_idx++;
892
893       /* returning buffer */
894       txvq->used->ring[txvq->last_used_idx & qsz_mask].id = desc_chain_head;
895       txvq->used->ring[txvq->last_used_idx & qsz_mask].len = ptr + vui->virtio_net_hdr_sz;
896
897       txvq->last_used_idx++;
898
899       b->current_length = ptr;
900
901       if(PREDICT_FALSE(b->current_length < 14)) {
902           vlib_error_count(vm, vhost_user_input_node.index,
903                            VHOST_USER_INPUT_FUNC_ERROR_UNDERSIZED_FRAME, 1);
904           goto skip_frame;
905       }
906
907       b->flags = 0;
908       b->current_data = 0;
909       b->flags = VLIB_BUFFER_TOTAL_LENGTH_VALID;
910       n_rx_bytes += ptr;
911       _vec_len (vum->rx_buffers[cpu_index]) = i_rx;
912
913             /*
914              * Turn this on if you run into
915              * "bad monkey" contexts, and you want to know exactly
916              * which nodes they've visited... See .../vlib/vlib/buffer.h
917              */
918             VLIB_BUFFER_TRACE_TRAJECTORY_INIT(b);
919
920       vnet_buffer (b)->sw_if_index[VLIB_RX] = vui->sw_if_index;
921       vnet_buffer (b)->sw_if_index[VLIB_TX] = (u32)~0;
922       b->error = node->errors[0];
923
924       to_next[0] = bi;
925       to_next++;
926       n_left_to_next--;
927       vlib_validate_buffer_enqueue_x1 (vm, node, next_index,
928                                  to_next, n_left_to_next,
929                                  bi, next_index);
930
931       if (PREDICT_FALSE (n_trace > n_rx_packets))
932             vec_add1 (vui->d_trace_buffers, bi);
933
934       n_rx_packets++;
935 skip_frame:
936             n_left--;
937     }
938
939     /* give buffers back to driver */
940     CLIB_MEMORY_BARRIER();
941     txvq->used->idx = txvq->last_used_idx;
942
943     vlib_put_next_frame (vm, node, next_index, n_left_to_next);
944   }
945
946   if (PREDICT_FALSE (vec_len (vui->d_trace_buffers) > 0))
947   {
948       vhost_user_rx_trace (vm, node, vui, VHOST_NET_VRING_IDX_TX);
949       vlib_set_trace_count (vm, node, n_trace - vec_len (vui->d_trace_buffers));
950   }
951
952   /* if no packets received we're done */
953   if(!n_rx_packets)
954     return 0;
955
956   /* interrupt (call) handling */
957   if((txvq->callfd > 0) && !(txvq->avail->flags & 1)) {
958     txvq->n_since_last_int += n_rx_packets;
959
960     if(txvq->n_since_last_int > vum->coalesce_frames)
961       vhost_user_send_call(vm, txvq);
962   }
963
964   /* increase rx counters */
965   vlib_increment_combined_counter
966   (vnet_main.interface_main.combined_sw_if_counters
967    + VNET_INTERFACE_COUNTER_RX,
968    os_get_cpu_number(),
969    vui->sw_if_index,
970    n_rx_packets, n_rx_bytes);
971
972   return n_rx_packets;
973 }
974
975 static uword
976 vhost_user_input (vlib_main_t * vm,
977             vlib_node_runtime_t * node,
978             vlib_frame_t * f)
979 {
980   vhost_user_main_t * vum = &vhost_user_main;
981   dpdk_main_t * dm = &dpdk_main;
982   vhost_user_intf_t * vui;
983   uword n_rx_packets = 0;
984   u32 cpu_index = os_get_cpu_number();
985   int i;
986
987   for(i = 0; i < vec_len(vum->vhost_user_interfaces); i++ )
988     {
989       vui = vec_elt_at_index(vum->vhost_user_interfaces, i);
990       if (!vui->is_up ||
991           (i % dm->input_cpu_count) == (cpu_index - dm->input_cpu_first_index))
992         continue;
993       n_rx_packets +=
994         vhost_user_if_input (vm, vum, vui, node);
995     }
996   return n_rx_packets;
997 }
998
999 VLIB_REGISTER_NODE (vhost_user_input_node) = {
1000   .function = vhost_user_input,
1001   .type = VLIB_NODE_TYPE_INPUT,
1002   .name = "vhost-user-input",
1003
1004   /* Will be enabled if/when hardware is detected. */
1005   .state = VLIB_NODE_STATE_DISABLED,
1006
1007   .format_buffer = format_ethernet_header_with_length,
1008   .format_trace = format_vhost_user_input_trace,
1009
1010   .n_errors = VHOST_USER_INPUT_FUNC_N_ERROR,
1011   .error_strings = vhost_user_input_func_error_strings,
1012
1013   .n_next_nodes = VHOST_USER_RX_N_NEXT,
1014   .next_nodes = {
1015     [VHOST_USER_RX_NEXT_DROP] = "error-drop",
1016     [VHOST_USER_RX_NEXT_ETHERNET_INPUT] = "ethernet-input",
1017   },
1018 };
1019
1020 static uword
1021 vhost_user_intfc_tx (vlib_main_t * vm,
1022                  vlib_node_runtime_t * node,
1023                  vlib_frame_t * frame)
1024 {
1025   u32 * buffers = vlib_frame_args (frame);
1026   u32 n_left = 0;
1027   u16 used_index;
1028   vhost_user_main_t * vum = &vhost_user_main;
1029   uword n_packets = 0;
1030   uword n_avail_desc;
1031   vnet_interface_output_runtime_t * rd = (void *) node->runtime_data;
1032   vhost_user_intf_t * vui = vec_elt_at_index (vum->vhost_user_interfaces, rd->dev_instance);
1033   vhost_user_vring_t * rxvq = &vui->vrings[VHOST_NET_VRING_IDX_RX];
1034   u16 qsz_mask;
1035
1036   if (PREDICT_FALSE(!vui->is_up))
1037      goto done2;
1038
1039   if (PREDICT_FALSE(!rxvq->desc))
1040      goto done2;
1041
1042   if (PREDICT_FALSE(vui->lockp != 0))
1043     {
1044       while (__sync_lock_test_and_set (vui->lockp, 1))
1045         ;
1046     }
1047
1048
1049   /* only bit 0 of avail.flags is used so we don't want to deal with this
1050      interface if any other bit is set */
1051   if (PREDICT_FALSE(rxvq->avail->flags & 0xFFFE))
1052       goto done2;
1053
1054   if (PREDICT_FALSE((rxvq->avail->idx == rxvq->last_avail_idx) ||
1055                     vui->sock_errno != 0)) {
1056      vlib_simple_counter_main_t * cm;
1057      vnet_main_t * vnm = vnet_get_main();
1058
1059      cm = vec_elt_at_index (vnm->interface_main.sw_if_counters,
1060                             VNET_INTERFACE_COUNTER_TX_ERROR);
1061      vlib_increment_simple_counter (cm, os_get_cpu_number(),
1062                                     0, frame->n_vectors);
1063
1064      vlib_error_count (vm, node->node_index,
1065                        VHOST_USER_TX_FUNC_ERROR_PKT_DROP_NOBUF,
1066                        frame->n_vectors);
1067      goto done2;
1068    }
1069
1070    if (PREDICT_TRUE(rxvq->avail->idx > rxvq->last_avail_idx))
1071      n_avail_desc = rxvq->avail->idx - rxvq->last_avail_idx;
1072    else /* wrapped */
1073      n_avail_desc = (u16) -1 - rxvq->last_avail_idx + rxvq->avail->idx;
1074
1075   DBG_VQ("rxvq->avail->idx %d rxvq->last_avail_idx %d n_avail_desc %d",
1076     rxvq->avail->idx, rxvq->last_avail_idx, n_avail_desc);
1077
1078   n_left = n_packets = frame->n_vectors;
1079   if (PREDICT_FALSE(n_packets > n_avail_desc)) {
1080     vlib_simple_counter_main_t * cm;
1081     vnet_main_t * vnm = vnet_get_main();
1082
1083     cm = vec_elt_at_index (vnm->interface_main.sw_if_counters,
1084                            VNET_INTERFACE_COUNTER_TX_ERROR);
1085     vlib_increment_simple_counter (cm, os_get_cpu_number(),
1086                                    0, frame->n_vectors);
1087
1088     vlib_error_count (vm, node->node_index,
1089                       VHOST_USER_TX_FUNC_ERROR_PKT_DROP_NOBUF,
1090                       n_packets - n_avail_desc);
1091     n_left = n_packets = n_avail_desc;
1092   }
1093
1094   used_index = rxvq->used->idx;
1095   qsz_mask = rxvq->qsz - 1; /* qsz is always power of 2 */
1096
1097   while (n_left >= 4)
1098   {
1099       vlib_buffer_t * b0, * b1;
1100       u16 desc_chain_head0,desc_chain_head1;
1101       u16 desc_current0,desc_current1;
1102       uword offset0, offset1;
1103       u16 bytes_left0, bytes_left1;
1104       void *buffer_addr0, *buffer_addr1;
1105
1106       vlib_prefetch_buffer_with_index (vm, buffers[2], LOAD);
1107       vlib_prefetch_buffer_with_index (vm, buffers[3], LOAD);
1108
1109       b0 = vlib_get_buffer (vm, buffers[0]);
1110       b1 = vlib_get_buffer (vm, buffers[1]);
1111       buffers+=2;
1112       n_left-=2;
1113
1114       desc_current0 = desc_chain_head0 = rxvq->avail->ring[rxvq->last_avail_idx & qsz_mask];
1115       desc_current1 = desc_chain_head1 = rxvq->avail->ring[(rxvq->last_avail_idx+1) & qsz_mask];
1116
1117       offset0 = vui->virtio_net_hdr_sz;
1118
1119       offset1 = vui->virtio_net_hdr_sz;
1120
1121       bytes_left0 = b0->current_length;
1122       bytes_left1 = b1->current_length;
1123
1124       buffer_addr0 = map_guest_mem(vui, rxvq->desc[desc_current0].addr);
1125       buffer_addr1 = map_guest_mem(vui, rxvq->desc[desc_current1].addr);
1126
1127       if (PREDICT_FALSE(!buffer_addr0)) {
1128         vlib_error_count (vm, node->node_index, VHOST_USER_TX_FUNC_ERROR_MMAP_FAIL, 1);
1129         goto done;
1130       }
1131       if (PREDICT_FALSE(!buffer_addr1)) {
1132         vlib_error_count (vm, node->node_index, VHOST_USER_TX_FUNC_ERROR_MMAP_FAIL, 1);
1133         goto done;
1134       }
1135
1136       virtio_net_hdr_mrg_rxbuf_t * hdr0 = (virtio_net_hdr_mrg_rxbuf_t *) buffer_addr0;
1137       virtio_net_hdr_mrg_rxbuf_t * hdr1 = (virtio_net_hdr_mrg_rxbuf_t *) buffer_addr1;
1138       hdr0->hdr.flags = 0;
1139       hdr1->hdr.flags = 0;
1140       hdr0->hdr.gso_type = 0;
1141       hdr1->hdr.gso_type = 0;
1142
1143       if (vui->virtio_net_hdr_sz == 12) {
1144         hdr0->num_buffers = 1;
1145         hdr1->num_buffers = 1;
1146       }
1147
1148       buffer_addr0 += offset0;
1149       buffer_addr1 += offset1;
1150
1151       if (PREDICT_FALSE(!vui->is_any_layout && rxvq->desc[desc_current0].flags & VIRTQ_DESC_F_NEXT))
1152         rxvq->desc[desc_current0].len = vui->virtio_net_hdr_sz;
1153
1154       if (PREDICT_FALSE(!vui->is_any_layout && rxvq->desc[desc_current1].flags & VIRTQ_DESC_F_NEXT))
1155         rxvq->desc[desc_current1].len = vui->virtio_net_hdr_sz;
1156
1157       while(1) {
1158         if (rxvq->desc[desc_current0].len - offset0 > 0 ) {
1159           u16 bytes_to_copy = bytes_left0 > (rxvq->desc[desc_current0].len - offset0) ? (rxvq->desc[desc_current0].len - offset0) : bytes_left0;
1160           rte_memcpy(buffer_addr0, vlib_buffer_get_current (b0) + b0->current_length - bytes_left0, bytes_to_copy);
1161           bytes_left0 -= bytes_to_copy;
1162         }
1163
1164         if (rxvq->desc[desc_current0].flags & VIRTQ_DESC_F_NEXT ) {
1165           offset0 = 0;
1166           desc_current0 = rxvq->desc[desc_current1].next;
1167           buffer_addr0 = map_guest_mem(vui, rxvq->desc[desc_current0].addr);
1168           if (PREDICT_FALSE(!buffer_addr0)) {
1169             vlib_error_count (vm, node->node_index, VHOST_USER_TX_FUNC_ERROR_MMAP_FAIL, 1);
1170             goto done;
1171           }
1172         }
1173         else
1174           break;
1175       }
1176
1177       while(1) {
1178         if (rxvq->desc[desc_current1].len - offset1 > 0 ) {
1179           u16 bytes_to_copy = bytes_left1 > (rxvq->desc[desc_current1].len - offset1) ? (rxvq->desc[desc_current1].len - offset1) : bytes_left1;
1180           rte_memcpy(buffer_addr1, vlib_buffer_get_current (b1) + b1->current_length - bytes_left1, bytes_to_copy);
1181           bytes_left1 -= bytes_to_copy;
1182         }
1183
1184         if (rxvq->desc[desc_current1].flags & VIRTQ_DESC_F_NEXT ) {
1185           offset1 = 0;
1186           desc_current1 = rxvq->desc[desc_current1].next;
1187           buffer_addr1 = map_guest_mem(vui, rxvq->desc[desc_current1].addr);
1188           if (PREDICT_FALSE(!buffer_addr1)) {
1189             vlib_error_count (vm, node->node_index, VHOST_USER_TX_FUNC_ERROR_MMAP_FAIL, 1);
1190             goto done;
1191           }
1192         }
1193         else
1194           break;
1195       }
1196
1197       rxvq->used->ring[used_index & qsz_mask].id = desc_chain_head0;
1198       rxvq->used->ring[used_index & qsz_mask].len = b0->current_length + vui->virtio_net_hdr_sz;
1199       used_index+=1;
1200       rxvq->used->ring[used_index & qsz_mask].id = desc_chain_head1;
1201       rxvq->used->ring[used_index & qsz_mask].len = b1->current_length + vui->virtio_net_hdr_sz;
1202       used_index+=1;
1203       rxvq->last_avail_idx+=2;
1204   }
1205
1206   while (n_left > 0)
1207   {
1208       vlib_buffer_t * b0;
1209       u16 desc_chain_head;
1210       u16 desc_current;
1211       void *buffer_addr;
1212
1213       b0 = vlib_get_buffer (vm, buffers[0]);
1214       buffers++;
1215       n_left--;
1216
1217       desc_chain_head = rxvq->avail->ring[rxvq->last_avail_idx & qsz_mask];
1218       desc_current = desc_chain_head;
1219
1220       uword offset = vui->virtio_net_hdr_sz;
1221
1222       u16 bytes_left = b0->current_length;
1223       buffer_addr = map_guest_mem(vui, rxvq->desc[desc_current].addr);
1224       if (PREDICT_FALSE(!buffer_addr)) {
1225         vlib_error_count (vm, node->node_index, VHOST_USER_TX_FUNC_ERROR_MMAP_FAIL, 1);
1226         goto done;
1227       }
1228
1229       virtio_net_hdr_mrg_rxbuf_t * hdr = (virtio_net_hdr_mrg_rxbuf_t *) buffer_addr;
1230       hdr->hdr.flags = 0;
1231       hdr->hdr.gso_type = 0;
1232
1233       if (vui->virtio_net_hdr_sz == 12) {
1234         hdr->num_buffers = 1;
1235       }
1236
1237       buffer_addr += offset;
1238
1239       if (PREDICT_FALSE(!vui->is_any_layout && rxvq->desc[desc_current].flags & VIRTQ_DESC_F_NEXT))
1240         rxvq->desc[desc_current].len = vui->virtio_net_hdr_sz;
1241
1242       while(1) {
1243         if (rxvq->desc[desc_current].len - offset > 0 ) {
1244           u16 bytes_to_copy = bytes_left > (rxvq->desc[desc_current].len - offset) ? (rxvq->desc[desc_current].len - offset) : bytes_left;
1245           rte_memcpy(buffer_addr, vlib_buffer_get_current (b0) + b0->current_length - bytes_left, bytes_to_copy);
1246           bytes_left -= bytes_to_copy;
1247         }
1248
1249         if (rxvq->desc[desc_current].flags & VIRTQ_DESC_F_NEXT ) {
1250           offset = 0;
1251           desc_current = rxvq->desc[desc_current].next;
1252           buffer_addr = map_guest_mem(vui, rxvq->desc[desc_current].addr);
1253           if (PREDICT_FALSE(!buffer_addr)) {
1254             vlib_error_count (vm, node->node_index, VHOST_USER_TX_FUNC_ERROR_MMAP_FAIL, 1);
1255             goto done;
1256           }
1257         }
1258         else 
1259           break;
1260       }
1261
1262       rxvq->used->ring[used_index & qsz_mask].id = desc_chain_head;
1263       rxvq->used->ring[used_index & qsz_mask].len = b0->current_length + vui->virtio_net_hdr_sz;
1264
1265       used_index++;
1266       rxvq->last_avail_idx++;
1267   }
1268
1269 done:
1270   CLIB_MEMORY_BARRIER();
1271   rxvq->used->idx = used_index;
1272
1273   /* interrupt (call) handling */
1274   if((rxvq->callfd > 0) && !(rxvq->avail->flags & 1)) {
1275     rxvq->n_since_last_int += n_packets - n_left;
1276
1277     if(rxvq->n_since_last_int > vum->coalesce_frames)
1278       vhost_user_send_call(vm, rxvq);
1279   }
1280
1281 done2:
1282
1283   if (PREDICT_FALSE(vui->lockp != 0))
1284       *vui->lockp = 0;
1285
1286   vlib_buffer_free (vm, vlib_frame_args (frame), frame->n_vectors);
1287   return frame->n_vectors;
1288 }
1289
1290 static clib_error_t *
1291 vhost_user_interface_admin_up_down (vnet_main_t * vnm, u32 hw_if_index, u32 flags)
1292 {
1293   vnet_hw_interface_t * hif = vnet_get_hw_interface (vnm, hw_if_index);
1294   uword is_up = (flags & VNET_SW_INTERFACE_FLAG_ADMIN_UP) != 0;
1295   vhost_user_main_t * vum = &vhost_user_main;
1296   vhost_user_intf_t * vui = vec_elt_at_index (vum->vhost_user_interfaces, hif->dev_instance);
1297
1298   vui->admin_up = is_up;
1299
1300   if (is_up)
1301     vnet_hw_interface_set_flags (vnm, vui->hw_if_index,
1302                                  VNET_HW_INTERFACE_FLAG_LINK_UP);
1303
1304   return /* no error */ 0;
1305 }
1306
1307 VNET_DEVICE_CLASS (vhost_user_dev_class,static) = {
1308   .name = "vhost-user",
1309   .tx_function = vhost_user_intfc_tx,
1310   .tx_function_n_errors = VHOST_USER_TX_FUNC_N_ERROR,
1311   .tx_function_error_strings = vhost_user_tx_func_error_strings,
1312   .format_device_name = format_vhost_user_interface_name,
1313   .name_renumber = vhost_user_name_renumber,
1314   .admin_up_down_function = vhost_user_interface_admin_up_down,
1315 };
1316
1317 static uword
1318 vhost_user_process (vlib_main_t * vm,
1319               vlib_node_runtime_t * rt,
1320               vlib_frame_t * f)
1321 {
1322     vhost_user_main_t * vum = &vhost_user_main;
1323     vhost_user_intf_t * vui;
1324     struct sockaddr_un sun;
1325     int sockfd;
1326     unix_file_t template = {0};
1327     f64 timeout = 3153600000.0 /* 100 years */;
1328     uword *event_data = 0;
1329
1330     sockfd = socket(AF_UNIX, SOCK_STREAM, 0);
1331     sun.sun_family = AF_UNIX;
1332     template.read_function = vhost_user_socket_read;
1333     template.error_function = vhost_user_socket_error;
1334
1335
1336     if (sockfd < 0)
1337       return 0;
1338
1339     while (1) {
1340         vlib_process_wait_for_event_or_clock (vm, timeout);
1341         vlib_process_get_events (vm, &event_data);
1342         vec_reset_length (event_data);
1343
1344         timeout = 3.0;
1345
1346         vec_foreach (vui, vum->vhost_user_interfaces) {
1347
1348           if (vui->sock_is_server || !vui->active)
1349             continue;
1350
1351           if  (vui->unix_fd == -1) {
1352             /* try to connect */
1353
1354             strncpy(sun.sun_path,  (char *) vui->sock_filename, sizeof(sun.sun_path) - 1);
1355
1356             if (connect(sockfd, (struct sockaddr *) &sun, sizeof(struct sockaddr_un)) == 0) {
1357                 vui->sock_errno = 0;
1358                 vui->unix_fd = sockfd;
1359                 template.file_descriptor = sockfd;
1360                 vui->unix_file_index = unix_file_add (&unix_main, &template);
1361                 hash_set (vum->vhost_user_interface_index_by_sock_fd, sockfd, vui - vum->vhost_user_interfaces);
1362
1363                 sockfd = socket(AF_UNIX, SOCK_STREAM, 0);
1364                 if (sockfd < 0)
1365                   return 0;
1366             }
1367             else {
1368               vui->sock_errno = errno;
1369             }
1370           } else {
1371             /* check if socket is alive */
1372             int error = 0;
1373             socklen_t len = sizeof (error);
1374             int retval = getsockopt(vui->unix_fd, SOL_SOCKET, SO_ERROR, &error, &len);
1375
1376             if (retval)
1377               vhost_user_if_disconnect(vui);
1378           }
1379         }
1380     }
1381     return 0;
1382 }
1383
1384 VLIB_REGISTER_NODE (vhost_user_process_node,static) = {
1385     .function = vhost_user_process,
1386     .type = VLIB_NODE_TYPE_PROCESS,
1387     .name = "vhost-user-process",
1388 };
1389
1390 int vhost_user_delete_if(vnet_main_t * vnm, vlib_main_t * vm,
1391                          u32 sw_if_index)
1392 {
1393   vhost_user_main_t * vum = &vhost_user_main;
1394   vhost_user_intf_t * vui;
1395   uword *p = NULL;
1396   int rv = 0;
1397
1398   p = hash_get (vum->vhost_user_interface_index_by_sw_if_index,
1399                 sw_if_index);
1400   if (p == 0) {
1401     return VNET_API_ERROR_INVALID_SW_IF_INDEX;
1402   } else {
1403     vui = vec_elt_at_index (vum->vhost_user_interfaces, p[0]);
1404   }
1405
1406   // interface is inactive
1407   vui->active = 0;
1408   // disconnect interface sockets
1409   vhost_user_if_disconnect(vui);
1410   // add to inactive interface list
1411   vec_add1 (vum->vhost_user_inactive_interfaces_index, p[0]);
1412
1413   // reset renumbered iface
1414   if (p[0] < vec_len (vum->show_dev_instance_by_real_dev_instance))
1415     vum->show_dev_instance_by_real_dev_instance[p[0]] = ~0;
1416
1417   ethernet_delete_interface (vnm, vui->hw_if_index);
1418   DBG_SOCK ("deleted (deactivated) vhost-user interface instance %d", p[0]);
1419
1420   return rv;
1421 }
1422
1423 // init server socket on specified sock_filename
1424 static int vhost_user_init_server_sock(const char * sock_filename, int *sockfd)
1425 {
1426   int rv = 0, len;
1427   struct sockaddr_un un;
1428   int fd;
1429   /* create listening socket */
1430   fd = socket(AF_UNIX, SOCK_STREAM, 0);
1431
1432   if (fd < 0) {
1433     return VNET_API_ERROR_SYSCALL_ERROR_1;
1434   }
1435
1436   un.sun_family = AF_UNIX;
1437   strcpy((char *) un.sun_path, (char *) sock_filename);
1438
1439   /* remove if exists */
1440   unlink( (char *) sock_filename);
1441
1442   len = strlen((char *) un.sun_path) + strlen((char *) sock_filename);
1443
1444   if (bind(fd, (struct sockaddr *) &un, len) == -1) {
1445     rv = VNET_API_ERROR_SYSCALL_ERROR_2;
1446     goto error;
1447   }
1448
1449   if (listen(fd, 1) == -1) {
1450     rv = VNET_API_ERROR_SYSCALL_ERROR_3;
1451     goto error;
1452   }
1453
1454   unix_file_t template = {0};
1455   template.read_function = vhost_user_socksvr_accept_ready;
1456   template.file_descriptor = fd;
1457   unix_file_add (&unix_main, &template);
1458   *sockfd = fd;
1459   return rv;
1460
1461 error:
1462   close(fd);
1463   return rv;
1464 }
1465
1466 // get new vhost_user_intf_t from inactive interfaces or create new one
1467 static vhost_user_intf_t *vhost_user_vui_new()
1468 {
1469   vhost_user_main_t * vum = &vhost_user_main;
1470   vhost_user_intf_t * vui = NULL;
1471   int inactive_cnt = vec_len(vum->vhost_user_inactive_interfaces_index);
1472   // if there are any inactive ifaces
1473   if (inactive_cnt > 0) {
1474     // take last
1475     u32 vui_idx = vum->vhost_user_inactive_interfaces_index[inactive_cnt - 1];
1476     if (vec_len(vum->vhost_user_interfaces) > vui_idx) {
1477       vui = vec_elt_at_index (vum->vhost_user_interfaces, vui_idx);
1478       DBG_SOCK("reusing inactive vhost-user interface index %d", vui_idx);
1479     }
1480     // "remove" from inactive list
1481     _vec_len(vum->vhost_user_inactive_interfaces_index) -= 1;
1482   }
1483
1484   // vui was not retrieved from inactive ifaces - create new
1485   if (!vui)
1486     vec_add2 (vum->vhost_user_interfaces, vui, 1);
1487   return vui;
1488 }
1489
1490 // create ethernet interface for vhost user intf
1491 static void vhost_user_create_ethernet(vnet_main_t * vnm, vlib_main_t * vm,
1492                                        vhost_user_intf_t *vui)
1493 {
1494   vhost_user_main_t * vum = &vhost_user_main;
1495   u8 hwaddr[6];
1496   clib_error_t * error;
1497
1498   /* create hw and sw interface */
1499   {
1500     f64 now = vlib_time_now(vm);
1501     u32 rnd;
1502     rnd = (u32) (now * 1e6);
1503     rnd = random_u32 (&rnd);
1504
1505     memcpy (hwaddr+2, &rnd, sizeof(rnd));
1506     hwaddr[0] = 2;
1507     hwaddr[1] = 0xfe;
1508   }
1509
1510   error = ethernet_register_interface
1511     (vnm,
1512      vhost_user_dev_class.index,
1513      vui - vum->vhost_user_interfaces /* device instance */,
1514      hwaddr /* ethernet address */,
1515      &vui->hw_if_index,
1516      0 /* flag change */);
1517   if (error)
1518     clib_error_report (error);
1519 }
1520
1521 // initialize vui with specified attributes
1522 static void vhost_user_vui_init(vnet_main_t * vnm,
1523                                 vhost_user_intf_t *vui, int sockfd,
1524                                 const char * sock_filename,
1525                                 u8 is_server, u64 feature_mask,
1526                                 u32 * sw_if_index)
1527 {
1528   vnet_sw_interface_t * sw;
1529   sw = vnet_get_hw_sw_interface (vnm, vui->hw_if_index);
1530   vlib_thread_main_t * tm = vlib_get_thread_main();
1531
1532   vui->unix_fd = sockfd;
1533   vui->sw_if_index = sw->sw_if_index;
1534   vui->num_vrings = 2;
1535   vui->sock_is_server = is_server;
1536   strncpy(vui->sock_filename, sock_filename, ARRAY_LEN(vui->sock_filename)-1);
1537   vui->sock_errno = 0;
1538   vui->is_up = 0;
1539   vui->feature_mask = feature_mask;
1540   vui->active = 1;
1541   vui->unix_file_index = ~0;
1542
1543   vnet_hw_interface_set_flags (vnm, vui->hw_if_index,  0);
1544
1545   if (sw_if_index)
1546       *sw_if_index = vui->sw_if_index;
1547
1548   if (tm->n_vlib_mains > 1)
1549   {
1550     vui->lockp = clib_mem_alloc_aligned (CLIB_CACHE_LINE_BYTES,
1551                                          CLIB_CACHE_LINE_BYTES);
1552     memset ((void *) vui->lockp, 0, CLIB_CACHE_LINE_BYTES);
1553   }
1554 }
1555
1556 // register vui and start polling on it
1557 static void vhost_user_vui_register(vlib_main_t * vm, vhost_user_intf_t *vui)
1558 {
1559   vhost_user_main_t * vum = &vhost_user_main;
1560   dpdk_main_t * dm = &dpdk_main;
1561   int cpu_index;
1562   vlib_thread_main_t * tm = vlib_get_thread_main();
1563
1564   hash_set (vum->vhost_user_interface_index_by_listener_fd, vui->unix_fd,
1565             vui - vum->vhost_user_interfaces);
1566   hash_set (vum->vhost_user_interface_index_by_sw_if_index, vui->sw_if_index,
1567             vui - vum->vhost_user_interfaces);
1568
1569   /* start polling */
1570   cpu_index = dm->input_cpu_first_index +
1571               (vui - vum->vhost_user_interfaces) % dm->input_cpu_count;
1572
1573   if (tm->n_vlib_mains == 1)
1574     vlib_node_set_state (vm, vhost_user_input_node.index,
1575                          VLIB_NODE_STATE_POLLING);
1576   else if (!dm->have_io_threads)
1577     vlib_node_set_state (vlib_mains[cpu_index], vhost_user_input_node.index,
1578                          VLIB_NODE_STATE_POLLING);
1579
1580   /* tell process to start polling for sockets */
1581   vlib_process_signal_event(vm, vhost_user_process_node.index, 0, 0);
1582 }
1583
1584 int vhost_user_create_if(vnet_main_t * vnm, vlib_main_t * vm,
1585                          const char * sock_filename,
1586                          u8 is_server,
1587                          u32 * sw_if_index,
1588                          u64 feature_mask,
1589                          u8 renumber, u32 custom_dev_instance)
1590 {
1591   vhost_user_intf_t * vui = NULL;
1592   dpdk_main_t * dm = &dpdk_main;
1593   vlib_thread_main_t * tm = vlib_get_thread_main();
1594   u32 sw_if_idx = ~0;
1595   int sockfd = -1;
1596   int rv = 0;
1597
1598   if (tm->n_vlib_mains > 1 && dm->have_io_threads)
1599     {
1600       clib_warning("vhost-user interfaces are not supported with multiple io threads");
1601       return -1;
1602     }
1603
1604   if (is_server) {
1605       if ((rv = vhost_user_init_server_sock (sock_filename, &sockfd)) != 0) {
1606           return rv;
1607       }
1608   }
1609
1610   vui = vhost_user_vui_new ();
1611   ASSERT(vui != NULL);
1612
1613   vhost_user_create_ethernet (vnm, vm, vui);
1614   vhost_user_vui_init (vnm, vui, sockfd, sock_filename, is_server,
1615                        feature_mask, &sw_if_idx);
1616
1617   if (renumber) {
1618     vnet_interface_name_renumber (sw_if_idx, custom_dev_instance);
1619   }
1620
1621   vhost_user_vui_register (vm, vui);
1622
1623   if (sw_if_index)
1624       *sw_if_index = sw_if_idx;
1625
1626   return rv;
1627 }
1628
1629 int vhost_user_modify_if(vnet_main_t * vnm, vlib_main_t * vm,
1630                          const char * sock_filename,
1631                          u8 is_server,
1632                          u32 sw_if_index,
1633                          u64 feature_mask,
1634                          u8 renumber, u32 custom_dev_instance)
1635 {
1636   vhost_user_main_t * vum = &vhost_user_main;
1637   vhost_user_intf_t * vui = NULL;
1638   u32 sw_if_idx = ~0;
1639   int sockfd = -1;
1640   int rv = 0;
1641   uword *p = NULL;
1642
1643   p = hash_get (vum->vhost_user_interface_index_by_sw_if_index,
1644                 sw_if_index);
1645   if (p == 0) {
1646     return VNET_API_ERROR_INVALID_SW_IF_INDEX;
1647   } else {
1648     vui = vec_elt_at_index (vum->vhost_user_interfaces, p[0]);
1649   }
1650
1651   // interface is inactive
1652   vui->active = 0;
1653   // disconnect interface sockets
1654   vhost_user_if_disconnect(vui);
1655
1656   if (is_server) {
1657       if ((rv = vhost_user_init_server_sock (sock_filename, &sockfd)) != 0) {
1658           return rv;
1659       }
1660   }
1661
1662   vhost_user_vui_init (vnm, vui, sockfd, sock_filename, is_server,
1663                        feature_mask, &sw_if_idx);
1664
1665   if (renumber) {
1666     vnet_interface_name_renumber (sw_if_idx, custom_dev_instance);
1667   }
1668
1669   vhost_user_vui_register (vm, vui);
1670
1671   return rv;
1672 }
1673
1674 clib_error_t *
1675 vhost_user_connect_command_fn (vlib_main_t * vm,
1676                  unformat_input_t * input,
1677                  vlib_cli_command_t * cmd)
1678 {
1679   unformat_input_t _line_input, * line_input = &_line_input;
1680   u8 * sock_filename = NULL;
1681   u32 sw_if_index;
1682   u8 is_server = 0;
1683   u64 feature_mask = (u64)~0;
1684   u8 renumber = 0;
1685   u32 custom_dev_instance = ~0;
1686
1687   /* Get a line of input. */
1688   if (! unformat_user (input, unformat_line_input, line_input))
1689     return 0;
1690
1691   while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT) {
1692     if (unformat (line_input, "socket %s", &sock_filename))
1693       ;
1694     else if (unformat (line_input, "server"))
1695       is_server = 1;
1696     else if (unformat (line_input, "feature-mask 0x%llx", &feature_mask))
1697       ;
1698     else if (unformat (line_input, "renumber %d", &custom_dev_instance)) {
1699         renumber = 1;
1700     }
1701     else
1702       return clib_error_return (0, "unknown input `%U'",
1703                                 format_unformat_error, input);
1704   }
1705   unformat_free (line_input);
1706
1707   vnet_main_t *vnm = vnet_get_main();
1708
1709   vhost_user_create_if(vnm, vm, (char *)sock_filename,
1710                        is_server, &sw_if_index, feature_mask,
1711                        renumber, custom_dev_instance);
1712
1713   vec_free(sock_filename);
1714
1715   return 0;
1716 }
1717
1718 clib_error_t *
1719 vhost_user_delete_command_fn (vlib_main_t * vm,
1720                  unformat_input_t * input,
1721                  vlib_cli_command_t * cmd)
1722 {
1723   unformat_input_t _line_input, * line_input = &_line_input;
1724   u32 sw_if_index = ~0;
1725
1726   /* Get a line of input. */
1727   if (! unformat_user (input, unformat_line_input, line_input))
1728     return 0;
1729
1730   while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT) {
1731     if (unformat (line_input, "sw_if_index %d", &sw_if_index))
1732       ;
1733     else
1734       return clib_error_return (0, "unknown input `%U'",
1735                                 format_unformat_error, input);
1736   }
1737   unformat_free (line_input);
1738
1739   vnet_main_t *vnm = vnet_get_main();
1740
1741   vhost_user_delete_if(vnm, vm, sw_if_index);
1742
1743   return 0;
1744 }
1745
1746 int vhost_user_dump_ifs(vnet_main_t * vnm, vlib_main_t * vm, vhost_user_intf_details_t **out_vuids)
1747 {
1748   int rv = 0;
1749   vhost_user_main_t * vum = &vhost_user_main;
1750   vhost_user_intf_t * vui;
1751   vhost_user_intf_details_t * r_vuids = NULL;
1752   vhost_user_intf_details_t * vuid = NULL;
1753   u32 * hw_if_indices = 0;
1754   vnet_hw_interface_t * hi;
1755   u8 *s = NULL;
1756   int i;
1757
1758   if (!out_vuids)
1759       return -1;
1760
1761   vec_foreach (vui, vum->vhost_user_interfaces) {
1762     if (vui->active)
1763       vec_add1(hw_if_indices, vui->hw_if_index);
1764   }
1765
1766   for (i = 0; i < vec_len (hw_if_indices); i++) {
1767     hi = vnet_get_hw_interface (vnm, hw_if_indices[i]);
1768     vui = vec_elt_at_index (vum->vhost_user_interfaces, hi->dev_instance);
1769
1770     vec_add2(r_vuids, vuid, 1);
1771     vuid->sw_if_index = vui->sw_if_index;
1772     vuid->virtio_net_hdr_sz = vui->virtio_net_hdr_sz;
1773     vuid->features = vui->features;
1774     vuid->is_server = vui->sock_is_server;
1775     vuid->num_regions = vui->nregions;
1776     vuid->sock_errno = vui->sock_errno;
1777     strncpy((char *)vuid->sock_filename, (char *)vui->sock_filename,
1778             ARRAY_LEN(vuid->sock_filename)-1);
1779
1780     s = format (s, "%v%c", hi->name, 0);
1781
1782     strncpy((char *)vuid->if_name, (char *)s,
1783             ARRAY_LEN(vuid->if_name)-1);
1784     _vec_len(s) = 0;
1785   }
1786
1787   vec_free (s);
1788   vec_free (hw_if_indices);
1789
1790   *out_vuids = r_vuids;
1791
1792   return rv;
1793 }
1794
1795 clib_error_t *
1796 show_vhost_user_command_fn (vlib_main_t * vm,
1797                  unformat_input_t * input,
1798                  vlib_cli_command_t * cmd)
1799 {
1800   clib_error_t * error = 0;
1801   vnet_main_t * vnm = vnet_get_main();
1802   vhost_user_main_t * vum = &vhost_user_main;
1803   vhost_user_intf_t * vui;
1804   u32 hw_if_index, * hw_if_indices = 0;
1805   vnet_hw_interface_t * hi;
1806   int i, j, q;
1807   int show_descr = 0;
1808   struct feat_struct { u8 bit; char *str;};
1809   struct feat_struct *feat_entry;
1810
1811   static struct feat_struct feat_array[] = {
1812 #define _(s,b) { .str = #s, .bit = b, },
1813   foreach_virtio_net_feature
1814 #undef _
1815   { .str = NULL }
1816   };
1817
1818   while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT) {
1819     if (unformat (input, "%U", unformat_vnet_hw_interface, vnm, &hw_if_index)) {
1820       vec_add1 (hw_if_indices, hw_if_index);
1821       vlib_cli_output(vm, "add %d", hw_if_index);
1822     }
1823     else if (unformat (input, "descriptors") || unformat (input, "desc") )
1824       show_descr = 1;
1825     else {
1826       error = clib_error_return (0, "unknown input `%U'",
1827                                      format_unformat_error, input);
1828       goto done;
1829     }
1830   }
1831   if (vec_len (hw_if_indices) == 0) {
1832     vec_foreach (vui, vum->vhost_user_interfaces) {
1833       if (vui->active)
1834         vec_add1(hw_if_indices, vui->hw_if_index);
1835     }
1836   }
1837   vlib_cli_output (vm, "Virtio vhost-user interfaces");
1838   vlib_cli_output (vm, "Global:\n  coalesce frames %d time %e\n\n",
1839                    vum->coalesce_frames, vum->coalesce_time);
1840
1841   for (i = 0; i < vec_len (hw_if_indices); i++) {
1842     hi = vnet_get_hw_interface (vnm, hw_if_indices[i]);
1843     vui = vec_elt_at_index (vum->vhost_user_interfaces, hi->dev_instance);
1844     vlib_cli_output (vm, "Interface: %s (ifindex %d)",
1845                          hi->name, hw_if_indices[i]);
1846
1847     vlib_cli_output (vm, "virtio_net_hdr_sz %d\n features (0x%llx): \n",
1848                          vui->virtio_net_hdr_sz, vui->features);
1849
1850     feat_entry = (struct feat_struct *) &feat_array;
1851     while(feat_entry->str) {
1852       if (vui->features & (1 << feat_entry->bit))
1853         vlib_cli_output (vm, "   %s (%d)", feat_entry->str, feat_entry->bit);
1854       feat_entry++;
1855     }
1856
1857     vlib_cli_output (vm, "\n");
1858
1859
1860     vlib_cli_output (vm, " socket filename %s type %s errno \"%s\"\n\n",
1861                          vui->sock_filename, vui->sock_is_server ? "server" : "client",
1862                          strerror(vui->sock_errno));
1863
1864     vlib_cli_output (vm, " Memory regions (total %d)\n", vui->nregions);
1865
1866     if (vui->nregions){
1867       vlib_cli_output(vm, " region fd    guest_phys_addr    memory_size        userspace_addr     mmap_offset        mmap_addr\n");
1868       vlib_cli_output(vm, " ====== ===== ================== ================== ================== ================== ==================\n");
1869     }
1870     for (j = 0; j < vui->nregions; j++) {
1871       vlib_cli_output(vm, "  %d     %-5d 0x%016lx 0x%016lx 0x%016lx 0x%016lx 0x%016lx\n", j,
1872         vui->region_mmap_fd[j],
1873         vui->regions[j].guest_phys_addr,
1874         vui->regions[j].memory_size,
1875         vui->regions[j].userspace_addr,
1876         vui->regions[j].mmap_offset,
1877         (u64) vui->region_mmap_addr[j]);
1878     }
1879     for (q = 0; q < vui->num_vrings; q++) {
1880       vlib_cli_output(vm, "\n Virtqueue %d\n", q);
1881
1882       vlib_cli_output(vm, "  qsz %d last_avail_idx %d last_used_idx %d\n",
1883         vui->vrings[q].qsz,
1884         vui->vrings[q].last_avail_idx,
1885         vui->vrings[q].last_used_idx);
1886
1887       if (vui->vrings[q].avail && vui->vrings[q].used)
1888         vlib_cli_output(vm, "  avail.flags %x avail.idx %d used.flags %x used.idx %d\n",
1889           vui->vrings[q].avail->flags,
1890           vui->vrings[q].avail->idx,
1891           vui->vrings[q].used->flags,
1892           vui->vrings[q].used->idx);
1893
1894       vlib_cli_output(vm, "  kickfd %d callfd %d errfd %d\n",
1895         vui->vrings[q].kickfd,
1896         vui->vrings[q].callfd,
1897         vui->vrings[q].errfd);
1898
1899       if (show_descr) {
1900         vlib_cli_output(vm, "\n  descriptor table:\n");
1901         vlib_cli_output(vm, "   id          addr         len  flags  next      user_addr\n");
1902         vlib_cli_output(vm, "  ===== ================== ===== ====== ===== ==================\n");
1903         for(j = 0; j < vui->vrings[q].qsz; j++) {
1904           vlib_cli_output(vm, "  %-5d 0x%016lx %-5d 0x%04x %-5d 0x%016lx\n",
1905             j,
1906             vui->vrings[q].desc[j].addr,
1907             vui->vrings[q].desc[j].len,
1908             vui->vrings[q].desc[j].flags,
1909             vui->vrings[q].desc[j].next,
1910             (u64) map_guest_mem(vui, vui->vrings[q].desc[j].addr));}
1911       }
1912     }
1913     vlib_cli_output (vm, "\n");
1914   }
1915 done:
1916   vec_free (hw_if_indices);
1917   return error;
1918 }
1919
1920 static clib_error_t *
1921 vhost_user_config (vlib_main_t * vm, unformat_input_t * input)
1922 {
1923   vhost_user_main_t * vum = &vhost_user_main;
1924
1925   while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
1926     {
1927       if (unformat (input, "coalesce-frames %d", &vum->coalesce_frames))
1928         ;
1929       else if (unformat (input, "coalesce-time %f", &vum->coalesce_time))
1930         ;
1931       else if (unformat (input, "dont-dump-memory"))
1932         vum->dont_dump_vhost_user_memory = 1;
1933       else
1934         return clib_error_return (0, "unknown input `%U'",
1935                                   format_unformat_error, input);
1936     }
1937
1938   return 0;
1939 }
1940
1941 /* vhost-user { ... } configuration. */
1942 VLIB_CONFIG_FUNCTION (vhost_user_config, "vhost-user");
1943
1944 void
1945 vhost_user_unmap_all (void)
1946 {
1947   vhost_user_main_t * vum = &vhost_user_main;
1948   vhost_user_intf_t * vui;
1949
1950   if (vum->dont_dump_vhost_user_memory)
1951     {
1952       vec_foreach (vui, vum->vhost_user_interfaces)
1953         {
1954           unmap_all_mem_regions(vui);
1955         }
1956     }
1957 }