Fix vhost-user input interface handling
[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         n_rx_packets += vhost_user_if_input (vm, vum, vui, node);
993     }
994   return n_rx_packets;
995 }
996
997 VLIB_REGISTER_NODE (vhost_user_input_node) = {
998   .function = vhost_user_input,
999   .type = VLIB_NODE_TYPE_INPUT,
1000   .name = "vhost-user-input",
1001
1002   /* Will be enabled if/when hardware is detected. */
1003   .state = VLIB_NODE_STATE_DISABLED,
1004
1005   .format_buffer = format_ethernet_header_with_length,
1006   .format_trace = format_vhost_user_input_trace,
1007
1008   .n_errors = VHOST_USER_INPUT_FUNC_N_ERROR,
1009   .error_strings = vhost_user_input_func_error_strings,
1010
1011   .n_next_nodes = VHOST_USER_RX_N_NEXT,
1012   .next_nodes = {
1013     [VHOST_USER_RX_NEXT_DROP] = "error-drop",
1014     [VHOST_USER_RX_NEXT_ETHERNET_INPUT] = "ethernet-input",
1015   },
1016 };
1017
1018 static uword
1019 vhost_user_intfc_tx (vlib_main_t * vm,
1020                  vlib_node_runtime_t * node,
1021                  vlib_frame_t * frame)
1022 {
1023   u32 * buffers = vlib_frame_args (frame);
1024   u32 n_left = 0;
1025   u16 used_index;
1026   vhost_user_main_t * vum = &vhost_user_main;
1027   uword n_packets = 0;
1028   uword n_avail_desc;
1029   vnet_interface_output_runtime_t * rd = (void *) node->runtime_data;
1030   vhost_user_intf_t * vui = vec_elt_at_index (vum->vhost_user_interfaces, rd->dev_instance);
1031   vhost_user_vring_t * rxvq = &vui->vrings[VHOST_NET_VRING_IDX_RX];
1032   u16 qsz_mask;
1033
1034   if (PREDICT_FALSE(!vui->is_up))
1035      goto done2;
1036
1037   if (PREDICT_FALSE(!rxvq->desc))
1038      goto done2;
1039
1040   if (PREDICT_FALSE(vui->lockp != 0))
1041     {
1042       while (__sync_lock_test_and_set (vui->lockp, 1))
1043         ;
1044     }
1045
1046
1047   /* only bit 0 of avail.flags is used so we don't want to deal with this
1048      interface if any other bit is set */
1049   if (PREDICT_FALSE(rxvq->avail->flags & 0xFFFE))
1050       goto done2;
1051
1052   if (PREDICT_FALSE((rxvq->avail->idx == rxvq->last_avail_idx) ||
1053                     vui->sock_errno != 0)) {
1054      vlib_simple_counter_main_t * cm;
1055      vnet_main_t * vnm = vnet_get_main();
1056
1057      cm = vec_elt_at_index (vnm->interface_main.sw_if_counters,
1058                             VNET_INTERFACE_COUNTER_TX_ERROR);
1059      vlib_increment_simple_counter (cm, os_get_cpu_number(),
1060                                     0, frame->n_vectors);
1061
1062      vlib_error_count (vm, node->node_index,
1063                        VHOST_USER_TX_FUNC_ERROR_PKT_DROP_NOBUF,
1064                        frame->n_vectors);
1065      goto done2;
1066    }
1067
1068    if (PREDICT_TRUE(rxvq->avail->idx > rxvq->last_avail_idx))
1069      n_avail_desc = rxvq->avail->idx - rxvq->last_avail_idx;
1070    else /* wrapped */
1071      n_avail_desc = (u16) -1 - rxvq->last_avail_idx + rxvq->avail->idx;
1072
1073   DBG_VQ("rxvq->avail->idx %d rxvq->last_avail_idx %d n_avail_desc %d",
1074     rxvq->avail->idx, rxvq->last_avail_idx, n_avail_desc);
1075
1076   n_left = n_packets = frame->n_vectors;
1077   if (PREDICT_FALSE(n_packets > n_avail_desc)) {
1078     vlib_simple_counter_main_t * cm;
1079     vnet_main_t * vnm = vnet_get_main();
1080
1081     cm = vec_elt_at_index (vnm->interface_main.sw_if_counters,
1082                            VNET_INTERFACE_COUNTER_TX_ERROR);
1083     vlib_increment_simple_counter (cm, os_get_cpu_number(),
1084                                    0, frame->n_vectors);
1085
1086     vlib_error_count (vm, node->node_index,
1087                       VHOST_USER_TX_FUNC_ERROR_PKT_DROP_NOBUF,
1088                       n_packets - n_avail_desc);
1089     n_left = n_packets = n_avail_desc;
1090   }
1091
1092   used_index = rxvq->used->idx;
1093   qsz_mask = rxvq->qsz - 1; /* qsz is always power of 2 */
1094
1095   while (n_left >= 4)
1096   {
1097       vlib_buffer_t * b0, * b1;
1098       u16 desc_chain_head0,desc_chain_head1;
1099       u16 desc_current0,desc_current1;
1100       uword offset0, offset1;
1101       u16 bytes_left0, bytes_left1;
1102       void *buffer_addr0, *buffer_addr1;
1103
1104       vlib_prefetch_buffer_with_index (vm, buffers[2], LOAD);
1105       vlib_prefetch_buffer_with_index (vm, buffers[3], LOAD);
1106
1107       b0 = vlib_get_buffer (vm, buffers[0]);
1108       b1 = vlib_get_buffer (vm, buffers[1]);
1109       buffers+=2;
1110       n_left-=2;
1111
1112       desc_current0 = desc_chain_head0 = rxvq->avail->ring[rxvq->last_avail_idx & qsz_mask];
1113       desc_current1 = desc_chain_head1 = rxvq->avail->ring[(rxvq->last_avail_idx+1) & qsz_mask];
1114
1115       offset0 = vui->virtio_net_hdr_sz;
1116
1117       offset1 = vui->virtio_net_hdr_sz;
1118
1119       bytes_left0 = b0->current_length;
1120       bytes_left1 = b1->current_length;
1121
1122       buffer_addr0 = map_guest_mem(vui, rxvq->desc[desc_current0].addr);
1123       buffer_addr1 = map_guest_mem(vui, rxvq->desc[desc_current1].addr);
1124
1125       if (PREDICT_FALSE(!buffer_addr0)) {
1126         vlib_error_count (vm, node->node_index, VHOST_USER_TX_FUNC_ERROR_MMAP_FAIL, 1);
1127         goto done;
1128       }
1129       if (PREDICT_FALSE(!buffer_addr1)) {
1130         vlib_error_count (vm, node->node_index, VHOST_USER_TX_FUNC_ERROR_MMAP_FAIL, 1);
1131         goto done;
1132       }
1133
1134       virtio_net_hdr_mrg_rxbuf_t * hdr0 = (virtio_net_hdr_mrg_rxbuf_t *) buffer_addr0;
1135       virtio_net_hdr_mrg_rxbuf_t * hdr1 = (virtio_net_hdr_mrg_rxbuf_t *) buffer_addr1;
1136       hdr0->hdr.flags = 0;
1137       hdr1->hdr.flags = 0;
1138       hdr0->hdr.gso_type = 0;
1139       hdr1->hdr.gso_type = 0;
1140
1141       if (vui->virtio_net_hdr_sz == 12) {
1142         hdr0->num_buffers = 1;
1143         hdr1->num_buffers = 1;
1144       }
1145
1146       buffer_addr0 += offset0;
1147       buffer_addr1 += offset1;
1148
1149       if (PREDICT_FALSE(!vui->is_any_layout && rxvq->desc[desc_current0].flags & VIRTQ_DESC_F_NEXT))
1150         rxvq->desc[desc_current0].len = vui->virtio_net_hdr_sz;
1151
1152       if (PREDICT_FALSE(!vui->is_any_layout && rxvq->desc[desc_current1].flags & VIRTQ_DESC_F_NEXT))
1153         rxvq->desc[desc_current1].len = vui->virtio_net_hdr_sz;
1154
1155       while(1) {
1156         if (rxvq->desc[desc_current0].len - offset0 > 0 ) {
1157           u16 bytes_to_copy = bytes_left0 > (rxvq->desc[desc_current0].len - offset0) ? (rxvq->desc[desc_current0].len - offset0) : bytes_left0;
1158           rte_memcpy(buffer_addr0, vlib_buffer_get_current (b0) + b0->current_length - bytes_left0, bytes_to_copy);
1159           bytes_left0 -= bytes_to_copy;
1160         }
1161
1162         if (rxvq->desc[desc_current0].flags & VIRTQ_DESC_F_NEXT ) {
1163           offset0 = 0;
1164           desc_current0 = rxvq->desc[desc_current1].next;
1165           buffer_addr0 = map_guest_mem(vui, rxvq->desc[desc_current0].addr);
1166           if (PREDICT_FALSE(!buffer_addr0)) {
1167             vlib_error_count (vm, node->node_index, VHOST_USER_TX_FUNC_ERROR_MMAP_FAIL, 1);
1168             goto done;
1169           }
1170         }
1171         else
1172           break;
1173       }
1174
1175       while(1) {
1176         if (rxvq->desc[desc_current1].len - offset1 > 0 ) {
1177           u16 bytes_to_copy = bytes_left1 > (rxvq->desc[desc_current1].len - offset1) ? (rxvq->desc[desc_current1].len - offset1) : bytes_left1;
1178           rte_memcpy(buffer_addr1, vlib_buffer_get_current (b1) + b1->current_length - bytes_left1, bytes_to_copy);
1179           bytes_left1 -= bytes_to_copy;
1180         }
1181
1182         if (rxvq->desc[desc_current1].flags & VIRTQ_DESC_F_NEXT ) {
1183           offset1 = 0;
1184           desc_current1 = rxvq->desc[desc_current1].next;
1185           buffer_addr1 = map_guest_mem(vui, rxvq->desc[desc_current1].addr);
1186           if (PREDICT_FALSE(!buffer_addr1)) {
1187             vlib_error_count (vm, node->node_index, VHOST_USER_TX_FUNC_ERROR_MMAP_FAIL, 1);
1188             goto done;
1189           }
1190         }
1191         else
1192           break;
1193       }
1194
1195       rxvq->used->ring[used_index & qsz_mask].id = desc_chain_head0;
1196       rxvq->used->ring[used_index & qsz_mask].len = b0->current_length + vui->virtio_net_hdr_sz;
1197       used_index+=1;
1198       rxvq->used->ring[used_index & qsz_mask].id = desc_chain_head1;
1199       rxvq->used->ring[used_index & qsz_mask].len = b1->current_length + vui->virtio_net_hdr_sz;
1200       used_index+=1;
1201       rxvq->last_avail_idx+=2;
1202   }
1203
1204   while (n_left > 0)
1205   {
1206       vlib_buffer_t * b0;
1207       u16 desc_chain_head;
1208       u16 desc_current;
1209       void *buffer_addr;
1210
1211       b0 = vlib_get_buffer (vm, buffers[0]);
1212       buffers++;
1213       n_left--;
1214
1215       desc_chain_head = rxvq->avail->ring[rxvq->last_avail_idx & qsz_mask];
1216       desc_current = desc_chain_head;
1217
1218       uword offset = vui->virtio_net_hdr_sz;
1219
1220       u16 bytes_left = b0->current_length;
1221       buffer_addr = map_guest_mem(vui, rxvq->desc[desc_current].addr);
1222       if (PREDICT_FALSE(!buffer_addr)) {
1223         vlib_error_count (vm, node->node_index, VHOST_USER_TX_FUNC_ERROR_MMAP_FAIL, 1);
1224         goto done;
1225       }
1226
1227       virtio_net_hdr_mrg_rxbuf_t * hdr = (virtio_net_hdr_mrg_rxbuf_t *) buffer_addr;
1228       hdr->hdr.flags = 0;
1229       hdr->hdr.gso_type = 0;
1230
1231       if (vui->virtio_net_hdr_sz == 12) {
1232         hdr->num_buffers = 1;
1233       }
1234
1235       buffer_addr += offset;
1236
1237       if (PREDICT_FALSE(!vui->is_any_layout && rxvq->desc[desc_current].flags & VIRTQ_DESC_F_NEXT))
1238         rxvq->desc[desc_current].len = vui->virtio_net_hdr_sz;
1239
1240       while(1) {
1241         if (rxvq->desc[desc_current].len - offset > 0 ) {
1242           u16 bytes_to_copy = bytes_left > (rxvq->desc[desc_current].len - offset) ? (rxvq->desc[desc_current].len - offset) : bytes_left;
1243           rte_memcpy(buffer_addr, vlib_buffer_get_current (b0) + b0->current_length - bytes_left, bytes_to_copy);
1244           bytes_left -= bytes_to_copy;
1245         }
1246
1247         if (rxvq->desc[desc_current].flags & VIRTQ_DESC_F_NEXT ) {
1248           offset = 0;
1249           desc_current = rxvq->desc[desc_current].next;
1250           buffer_addr = map_guest_mem(vui, rxvq->desc[desc_current].addr);
1251           if (PREDICT_FALSE(!buffer_addr)) {
1252             vlib_error_count (vm, node->node_index, VHOST_USER_TX_FUNC_ERROR_MMAP_FAIL, 1);
1253             goto done;
1254           }
1255         }
1256         else 
1257           break;
1258       }
1259
1260       rxvq->used->ring[used_index & qsz_mask].id = desc_chain_head;
1261       rxvq->used->ring[used_index & qsz_mask].len = b0->current_length + vui->virtio_net_hdr_sz;
1262
1263       used_index++;
1264       rxvq->last_avail_idx++;
1265   }
1266
1267 done:
1268   CLIB_MEMORY_BARRIER();
1269   rxvq->used->idx = used_index;
1270
1271   /* interrupt (call) handling */
1272   if((rxvq->callfd > 0) && !(rxvq->avail->flags & 1)) {
1273     rxvq->n_since_last_int += n_packets - n_left;
1274
1275     if(rxvq->n_since_last_int > vum->coalesce_frames)
1276       vhost_user_send_call(vm, rxvq);
1277   }
1278
1279 done2:
1280
1281   if (PREDICT_FALSE(vui->lockp != 0))
1282       *vui->lockp = 0;
1283
1284   vlib_buffer_free (vm, vlib_frame_args (frame), frame->n_vectors);
1285   return frame->n_vectors;
1286 }
1287
1288 static clib_error_t *
1289 vhost_user_interface_admin_up_down (vnet_main_t * vnm, u32 hw_if_index, u32 flags)
1290 {
1291   vnet_hw_interface_t * hif = vnet_get_hw_interface (vnm, hw_if_index);
1292   uword is_up = (flags & VNET_SW_INTERFACE_FLAG_ADMIN_UP) != 0;
1293   vhost_user_main_t * vum = &vhost_user_main;
1294   vhost_user_intf_t * vui = vec_elt_at_index (vum->vhost_user_interfaces, hif->dev_instance);
1295
1296   vui->admin_up = is_up;
1297
1298   if (is_up)
1299     vnet_hw_interface_set_flags (vnm, vui->hw_if_index,
1300                                  VNET_HW_INTERFACE_FLAG_LINK_UP);
1301
1302   return /* no error */ 0;
1303 }
1304
1305 VNET_DEVICE_CLASS (vhost_user_dev_class,static) = {
1306   .name = "vhost-user",
1307   .tx_function = vhost_user_intfc_tx,
1308   .tx_function_n_errors = VHOST_USER_TX_FUNC_N_ERROR,
1309   .tx_function_error_strings = vhost_user_tx_func_error_strings,
1310   .format_device_name = format_vhost_user_interface_name,
1311   .name_renumber = vhost_user_name_renumber,
1312   .admin_up_down_function = vhost_user_interface_admin_up_down,
1313 };
1314
1315 static uword
1316 vhost_user_process (vlib_main_t * vm,
1317               vlib_node_runtime_t * rt,
1318               vlib_frame_t * f)
1319 {
1320     vhost_user_main_t * vum = &vhost_user_main;
1321     vhost_user_intf_t * vui;
1322     struct sockaddr_un sun;
1323     int sockfd;
1324     unix_file_t template = {0};
1325     f64 timeout = 3153600000.0 /* 100 years */;
1326     uword *event_data = 0;
1327
1328     sockfd = socket(AF_UNIX, SOCK_STREAM, 0);
1329     sun.sun_family = AF_UNIX;
1330     template.read_function = vhost_user_socket_read;
1331     template.error_function = vhost_user_socket_error;
1332
1333
1334     if (sockfd < 0)
1335       return 0;
1336
1337     while (1) {
1338         vlib_process_wait_for_event_or_clock (vm, timeout);
1339         vlib_process_get_events (vm, &event_data);
1340         vec_reset_length (event_data);
1341
1342         timeout = 3.0;
1343
1344         vec_foreach (vui, vum->vhost_user_interfaces) {
1345
1346           if (vui->sock_is_server || !vui->active)
1347             continue;
1348
1349           if  (vui->unix_fd == -1) {
1350             /* try to connect */
1351
1352             strncpy(sun.sun_path,  (char *) vui->sock_filename, sizeof(sun.sun_path) - 1);
1353
1354             if (connect(sockfd, (struct sockaddr *) &sun, sizeof(struct sockaddr_un)) == 0) {
1355                 vui->sock_errno = 0;
1356                 vui->unix_fd = sockfd;
1357                 template.file_descriptor = sockfd;
1358                 vui->unix_file_index = unix_file_add (&unix_main, &template);
1359                 hash_set (vum->vhost_user_interface_index_by_sock_fd, sockfd, vui - vum->vhost_user_interfaces);
1360
1361                 sockfd = socket(AF_UNIX, SOCK_STREAM, 0);
1362                 if (sockfd < 0)
1363                   return 0;
1364             }
1365             else {
1366               vui->sock_errno = errno;
1367             }
1368           } else {
1369             /* check if socket is alive */
1370             int error = 0;
1371             socklen_t len = sizeof (error);
1372             int retval = getsockopt(vui->unix_fd, SOL_SOCKET, SO_ERROR, &error, &len);
1373
1374             if (retval)
1375               vhost_user_if_disconnect(vui);
1376           }
1377         }
1378     }
1379     return 0;
1380 }
1381
1382 VLIB_REGISTER_NODE (vhost_user_process_node,static) = {
1383     .function = vhost_user_process,
1384     .type = VLIB_NODE_TYPE_PROCESS,
1385     .name = "vhost-user-process",
1386 };
1387
1388 int vhost_user_delete_if(vnet_main_t * vnm, vlib_main_t * vm,
1389                          u32 sw_if_index)
1390 {
1391   vhost_user_main_t * vum = &vhost_user_main;
1392   vhost_user_intf_t * vui;
1393   uword *p = NULL;
1394   int rv = 0;
1395
1396   p = hash_get (vum->vhost_user_interface_index_by_sw_if_index,
1397                 sw_if_index);
1398   if (p == 0) {
1399     return VNET_API_ERROR_INVALID_SW_IF_INDEX;
1400   } else {
1401     vui = vec_elt_at_index (vum->vhost_user_interfaces, p[0]);
1402   }
1403
1404   // interface is inactive
1405   vui->active = 0;
1406   // disconnect interface sockets
1407   vhost_user_if_disconnect(vui);
1408   // add to inactive interface list
1409   vec_add1 (vum->vhost_user_inactive_interfaces_index, p[0]);
1410
1411   // reset renumbered iface
1412   if (p[0] < vec_len (vum->show_dev_instance_by_real_dev_instance))
1413     vum->show_dev_instance_by_real_dev_instance[p[0]] = ~0;
1414
1415   ethernet_delete_interface (vnm, vui->hw_if_index);
1416   DBG_SOCK ("deleted (deactivated) vhost-user interface instance %d", p[0]);
1417
1418   return rv;
1419 }
1420
1421 // init server socket on specified sock_filename
1422 static int vhost_user_init_server_sock(const char * sock_filename, int *sockfd)
1423 {
1424   int rv = 0, len;
1425   struct sockaddr_un un;
1426   int fd;
1427   /* create listening socket */
1428   fd = socket(AF_UNIX, SOCK_STREAM, 0);
1429
1430   if (fd < 0) {
1431     return VNET_API_ERROR_SYSCALL_ERROR_1;
1432   }
1433
1434   un.sun_family = AF_UNIX;
1435   strcpy((char *) un.sun_path, (char *) sock_filename);
1436
1437   /* remove if exists */
1438   unlink( (char *) sock_filename);
1439
1440   len = strlen((char *) un.sun_path) + strlen((char *) sock_filename);
1441
1442   if (bind(fd, (struct sockaddr *) &un, len) == -1) {
1443     rv = VNET_API_ERROR_SYSCALL_ERROR_2;
1444     goto error;
1445   }
1446
1447   if (listen(fd, 1) == -1) {
1448     rv = VNET_API_ERROR_SYSCALL_ERROR_3;
1449     goto error;
1450   }
1451
1452   unix_file_t template = {0};
1453   template.read_function = vhost_user_socksvr_accept_ready;
1454   template.file_descriptor = fd;
1455   unix_file_add (&unix_main, &template);
1456   *sockfd = fd;
1457   return rv;
1458
1459 error:
1460   close(fd);
1461   return rv;
1462 }
1463
1464 // get new vhost_user_intf_t from inactive interfaces or create new one
1465 static vhost_user_intf_t *vhost_user_vui_new()
1466 {
1467   vhost_user_main_t * vum = &vhost_user_main;
1468   vhost_user_intf_t * vui = NULL;
1469   int inactive_cnt = vec_len(vum->vhost_user_inactive_interfaces_index);
1470   // if there are any inactive ifaces
1471   if (inactive_cnt > 0) {
1472     // take last
1473     u32 vui_idx = vum->vhost_user_inactive_interfaces_index[inactive_cnt - 1];
1474     if (vec_len(vum->vhost_user_interfaces) > vui_idx) {
1475       vui = vec_elt_at_index (vum->vhost_user_interfaces, vui_idx);
1476       DBG_SOCK("reusing inactive vhost-user interface index %d", vui_idx);
1477     }
1478     // "remove" from inactive list
1479     _vec_len(vum->vhost_user_inactive_interfaces_index) -= 1;
1480   }
1481
1482   // vui was not retrieved from inactive ifaces - create new
1483   if (!vui)
1484     vec_add2 (vum->vhost_user_interfaces, vui, 1);
1485   return vui;
1486 }
1487
1488 // create ethernet interface for vhost user intf
1489 static void vhost_user_create_ethernet(vnet_main_t * vnm, vlib_main_t * vm,
1490                                        vhost_user_intf_t *vui)
1491 {
1492   vhost_user_main_t * vum = &vhost_user_main;
1493   u8 hwaddr[6];
1494   clib_error_t * error;
1495
1496   /* create hw and sw interface */
1497   {
1498     f64 now = vlib_time_now(vm);
1499     u32 rnd;
1500     rnd = (u32) (now * 1e6);
1501     rnd = random_u32 (&rnd);
1502
1503     memcpy (hwaddr+2, &rnd, sizeof(rnd));
1504     hwaddr[0] = 2;
1505     hwaddr[1] = 0xfe;
1506   }
1507
1508   error = ethernet_register_interface
1509     (vnm,
1510      vhost_user_dev_class.index,
1511      vui - vum->vhost_user_interfaces /* device instance */,
1512      hwaddr /* ethernet address */,
1513      &vui->hw_if_index,
1514      0 /* flag change */);
1515   if (error)
1516     clib_error_report (error);
1517 }
1518
1519 // initialize vui with specified attributes
1520 static void vhost_user_vui_init(vnet_main_t * vnm,
1521                                 vhost_user_intf_t *vui, int sockfd,
1522                                 const char * sock_filename,
1523                                 u8 is_server, u64 feature_mask,
1524                                 u32 * sw_if_index)
1525 {
1526   vnet_sw_interface_t * sw;
1527   sw = vnet_get_hw_sw_interface (vnm, vui->hw_if_index);
1528   vlib_thread_main_t * tm = vlib_get_thread_main();
1529
1530   vui->unix_fd = sockfd;
1531   vui->sw_if_index = sw->sw_if_index;
1532   vui->num_vrings = 2;
1533   vui->sock_is_server = is_server;
1534   strncpy(vui->sock_filename, sock_filename, ARRAY_LEN(vui->sock_filename)-1);
1535   vui->sock_errno = 0;
1536   vui->is_up = 0;
1537   vui->feature_mask = feature_mask;
1538   vui->active = 1;
1539   vui->unix_file_index = ~0;
1540
1541   vnet_hw_interface_set_flags (vnm, vui->hw_if_index,  0);
1542
1543   if (sw_if_index)
1544       *sw_if_index = vui->sw_if_index;
1545
1546   if (tm->n_vlib_mains > 1)
1547   {
1548     vui->lockp = clib_mem_alloc_aligned (CLIB_CACHE_LINE_BYTES,
1549                                          CLIB_CACHE_LINE_BYTES);
1550     memset ((void *) vui->lockp, 0, CLIB_CACHE_LINE_BYTES);
1551   }
1552 }
1553
1554 // register vui and start polling on it
1555 static void vhost_user_vui_register(vlib_main_t * vm, vhost_user_intf_t *vui)
1556 {
1557   vhost_user_main_t * vum = &vhost_user_main;
1558   dpdk_main_t * dm = &dpdk_main;
1559   int cpu_index;
1560   vlib_thread_main_t * tm = vlib_get_thread_main();
1561
1562   hash_set (vum->vhost_user_interface_index_by_listener_fd, vui->unix_fd,
1563             vui - vum->vhost_user_interfaces);
1564   hash_set (vum->vhost_user_interface_index_by_sw_if_index, vui->sw_if_index,
1565             vui - vum->vhost_user_interfaces);
1566
1567   /* start polling */
1568   cpu_index = dm->input_cpu_first_index +
1569               (vui - vum->vhost_user_interfaces) % dm->input_cpu_count;
1570
1571   if (tm->n_vlib_mains == 1)
1572     vlib_node_set_state (vm, vhost_user_input_node.index,
1573                          VLIB_NODE_STATE_POLLING);
1574   else if (!dm->have_io_threads)
1575     vlib_node_set_state (vlib_mains[cpu_index], vhost_user_input_node.index,
1576                          VLIB_NODE_STATE_POLLING);
1577
1578   /* tell process to start polling for sockets */
1579   vlib_process_signal_event(vm, vhost_user_process_node.index, 0, 0);
1580 }
1581
1582 int vhost_user_create_if(vnet_main_t * vnm, vlib_main_t * vm,
1583                          const char * sock_filename,
1584                          u8 is_server,
1585                          u32 * sw_if_index,
1586                          u64 feature_mask,
1587                          u8 renumber, u32 custom_dev_instance)
1588 {
1589   vhost_user_intf_t * vui = NULL;
1590   dpdk_main_t * dm = &dpdk_main;
1591   vlib_thread_main_t * tm = vlib_get_thread_main();
1592   u32 sw_if_idx = ~0;
1593   int sockfd = -1;
1594   int rv = 0;
1595
1596   if (tm->n_vlib_mains > 1 && dm->have_io_threads)
1597     {
1598       clib_warning("vhost-user interfaces are not supported with multiple io threads");
1599       return -1;
1600     }
1601
1602   if (is_server) {
1603       if ((rv = vhost_user_init_server_sock (sock_filename, &sockfd)) != 0) {
1604           return rv;
1605       }
1606   }
1607
1608   vui = vhost_user_vui_new ();
1609   ASSERT(vui != NULL);
1610
1611   vhost_user_create_ethernet (vnm, vm, vui);
1612   vhost_user_vui_init (vnm, vui, sockfd, sock_filename, is_server,
1613                        feature_mask, &sw_if_idx);
1614
1615   if (renumber) {
1616     vnet_interface_name_renumber (sw_if_idx, custom_dev_instance);
1617   }
1618
1619   vhost_user_vui_register (vm, vui);
1620
1621   if (sw_if_index)
1622       *sw_if_index = sw_if_idx;
1623
1624   return rv;
1625 }
1626
1627 int vhost_user_modify_if(vnet_main_t * vnm, vlib_main_t * vm,
1628                          const char * sock_filename,
1629                          u8 is_server,
1630                          u32 sw_if_index,
1631                          u64 feature_mask,
1632                          u8 renumber, u32 custom_dev_instance)
1633 {
1634   vhost_user_main_t * vum = &vhost_user_main;
1635   vhost_user_intf_t * vui = NULL;
1636   u32 sw_if_idx = ~0;
1637   int sockfd = -1;
1638   int rv = 0;
1639   uword *p = NULL;
1640
1641   p = hash_get (vum->vhost_user_interface_index_by_sw_if_index,
1642                 sw_if_index);
1643   if (p == 0) {
1644     return VNET_API_ERROR_INVALID_SW_IF_INDEX;
1645   } else {
1646     vui = vec_elt_at_index (vum->vhost_user_interfaces, p[0]);
1647   }
1648
1649   // interface is inactive
1650   vui->active = 0;
1651   // disconnect interface sockets
1652   vhost_user_if_disconnect(vui);
1653
1654   if (is_server) {
1655       if ((rv = vhost_user_init_server_sock (sock_filename, &sockfd)) != 0) {
1656           return rv;
1657       }
1658   }
1659
1660   vhost_user_vui_init (vnm, vui, sockfd, sock_filename, is_server,
1661                        feature_mask, &sw_if_idx);
1662
1663   if (renumber) {
1664     vnet_interface_name_renumber (sw_if_idx, custom_dev_instance);
1665   }
1666
1667   vhost_user_vui_register (vm, vui);
1668
1669   return rv;
1670 }
1671
1672 clib_error_t *
1673 vhost_user_connect_command_fn (vlib_main_t * vm,
1674                  unformat_input_t * input,
1675                  vlib_cli_command_t * cmd)
1676 {
1677   unformat_input_t _line_input, * line_input = &_line_input;
1678   u8 * sock_filename = NULL;
1679   u32 sw_if_index;
1680   u8 is_server = 0;
1681   u64 feature_mask = (u64)~0;
1682   u8 renumber = 0;
1683   u32 custom_dev_instance = ~0;
1684
1685   /* Get a line of input. */
1686   if (! unformat_user (input, unformat_line_input, line_input))
1687     return 0;
1688
1689   while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT) {
1690     if (unformat (line_input, "socket %s", &sock_filename))
1691       ;
1692     else if (unformat (line_input, "server"))
1693       is_server = 1;
1694     else if (unformat (line_input, "feature-mask 0x%llx", &feature_mask))
1695       ;
1696     else if (unformat (line_input, "renumber %d", &custom_dev_instance)) {
1697         renumber = 1;
1698     }
1699     else
1700       return clib_error_return (0, "unknown input `%U'",
1701                                 format_unformat_error, input);
1702   }
1703   unformat_free (line_input);
1704
1705   vnet_main_t *vnm = vnet_get_main();
1706
1707   vhost_user_create_if(vnm, vm, (char *)sock_filename,
1708                        is_server, &sw_if_index, feature_mask,
1709                        renumber, custom_dev_instance);
1710
1711   vec_free(sock_filename);
1712
1713   return 0;
1714 }
1715
1716 clib_error_t *
1717 vhost_user_delete_command_fn (vlib_main_t * vm,
1718                  unformat_input_t * input,
1719                  vlib_cli_command_t * cmd)
1720 {
1721   unformat_input_t _line_input, * line_input = &_line_input;
1722   u32 sw_if_index = ~0;
1723
1724   /* Get a line of input. */
1725   if (! unformat_user (input, unformat_line_input, line_input))
1726     return 0;
1727
1728   while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT) {
1729     if (unformat (line_input, "sw_if_index %d", &sw_if_index))
1730       ;
1731     else
1732       return clib_error_return (0, "unknown input `%U'",
1733                                 format_unformat_error, input);
1734   }
1735   unformat_free (line_input);
1736
1737   vnet_main_t *vnm = vnet_get_main();
1738
1739   vhost_user_delete_if(vnm, vm, sw_if_index);
1740
1741   return 0;
1742 }
1743
1744 int vhost_user_dump_ifs(vnet_main_t * vnm, vlib_main_t * vm, vhost_user_intf_details_t **out_vuids)
1745 {
1746   int rv = 0;
1747   vhost_user_main_t * vum = &vhost_user_main;
1748   vhost_user_intf_t * vui;
1749   vhost_user_intf_details_t * r_vuids = NULL;
1750   vhost_user_intf_details_t * vuid = NULL;
1751   u32 * hw_if_indices = 0;
1752   vnet_hw_interface_t * hi;
1753   u8 *s = NULL;
1754   int i;
1755
1756   if (!out_vuids)
1757       return -1;
1758
1759   vec_foreach (vui, vum->vhost_user_interfaces) {
1760     if (vui->active)
1761       vec_add1(hw_if_indices, vui->hw_if_index);
1762   }
1763
1764   for (i = 0; i < vec_len (hw_if_indices); i++) {
1765     hi = vnet_get_hw_interface (vnm, hw_if_indices[i]);
1766     vui = vec_elt_at_index (vum->vhost_user_interfaces, hi->dev_instance);
1767
1768     vec_add2(r_vuids, vuid, 1);
1769     vuid->sw_if_index = vui->sw_if_index;
1770     vuid->virtio_net_hdr_sz = vui->virtio_net_hdr_sz;
1771     vuid->features = vui->features;
1772     vuid->is_server = vui->sock_is_server;
1773     vuid->num_regions = vui->nregions;
1774     vuid->sock_errno = vui->sock_errno;
1775     strncpy((char *)vuid->sock_filename, (char *)vui->sock_filename,
1776             ARRAY_LEN(vuid->sock_filename)-1);
1777
1778     s = format (s, "%v%c", hi->name, 0);
1779
1780     strncpy((char *)vuid->if_name, (char *)s,
1781             ARRAY_LEN(vuid->if_name)-1);
1782     _vec_len(s) = 0;
1783   }
1784
1785   vec_free (s);
1786   vec_free (hw_if_indices);
1787
1788   *out_vuids = r_vuids;
1789
1790   return rv;
1791 }
1792
1793 clib_error_t *
1794 show_vhost_user_command_fn (vlib_main_t * vm,
1795                  unformat_input_t * input,
1796                  vlib_cli_command_t * cmd)
1797 {
1798   clib_error_t * error = 0;
1799   vnet_main_t * vnm = vnet_get_main();
1800   vhost_user_main_t * vum = &vhost_user_main;
1801   vhost_user_intf_t * vui;
1802   u32 hw_if_index, * hw_if_indices = 0;
1803   vnet_hw_interface_t * hi;
1804   int i, j, q;
1805   int show_descr = 0;
1806   struct feat_struct { u8 bit; char *str;};
1807   struct feat_struct *feat_entry;
1808
1809   static struct feat_struct feat_array[] = {
1810 #define _(s,b) { .str = #s, .bit = b, },
1811   foreach_virtio_net_feature
1812 #undef _
1813   { .str = NULL }
1814   };
1815
1816   while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT) {
1817     if (unformat (input, "%U", unformat_vnet_hw_interface, vnm, &hw_if_index)) {
1818       vec_add1 (hw_if_indices, hw_if_index);
1819       vlib_cli_output(vm, "add %d", hw_if_index);
1820     }
1821     else if (unformat (input, "descriptors") || unformat (input, "desc") )
1822       show_descr = 1;
1823     else {
1824       error = clib_error_return (0, "unknown input `%U'",
1825                                      format_unformat_error, input);
1826       goto done;
1827     }
1828   }
1829   if (vec_len (hw_if_indices) == 0) {
1830     vec_foreach (vui, vum->vhost_user_interfaces) {
1831       if (vui->active)
1832         vec_add1(hw_if_indices, vui->hw_if_index);
1833     }
1834   }
1835   vlib_cli_output (vm, "Virtio vhost-user interfaces");
1836   vlib_cli_output (vm, "Global:\n  coalesce frames %d time %e\n\n",
1837                    vum->coalesce_frames, vum->coalesce_time);
1838
1839   for (i = 0; i < vec_len (hw_if_indices); i++) {
1840     hi = vnet_get_hw_interface (vnm, hw_if_indices[i]);
1841     vui = vec_elt_at_index (vum->vhost_user_interfaces, hi->dev_instance);
1842     vlib_cli_output (vm, "Interface: %s (ifindex %d)",
1843                          hi->name, hw_if_indices[i]);
1844
1845     vlib_cli_output (vm, "virtio_net_hdr_sz %d\n features (0x%llx): \n",
1846                          vui->virtio_net_hdr_sz, vui->features);
1847
1848     feat_entry = (struct feat_struct *) &feat_array;
1849     while(feat_entry->str) {
1850       if (vui->features & (1 << feat_entry->bit))
1851         vlib_cli_output (vm, "   %s (%d)", feat_entry->str, feat_entry->bit);
1852       feat_entry++;
1853     }
1854
1855     vlib_cli_output (vm, "\n");
1856
1857
1858     vlib_cli_output (vm, " socket filename %s type %s errno \"%s\"\n\n",
1859                          vui->sock_filename, vui->sock_is_server ? "server" : "client",
1860                          strerror(vui->sock_errno));
1861
1862     vlib_cli_output (vm, " Memory regions (total %d)\n", vui->nregions);
1863
1864     if (vui->nregions){
1865       vlib_cli_output(vm, " region fd    guest_phys_addr    memory_size        userspace_addr     mmap_offset        mmap_addr\n");
1866       vlib_cli_output(vm, " ====== ===== ================== ================== ================== ================== ==================\n");
1867     }
1868     for (j = 0; j < vui->nregions; j++) {
1869       vlib_cli_output(vm, "  %d     %-5d 0x%016lx 0x%016lx 0x%016lx 0x%016lx 0x%016lx\n", j,
1870         vui->region_mmap_fd[j],
1871         vui->regions[j].guest_phys_addr,
1872         vui->regions[j].memory_size,
1873         vui->regions[j].userspace_addr,
1874         vui->regions[j].mmap_offset,
1875         (u64) vui->region_mmap_addr[j]);
1876     }
1877     for (q = 0; q < vui->num_vrings; q++) {
1878       vlib_cli_output(vm, "\n Virtqueue %d\n", q);
1879
1880       vlib_cli_output(vm, "  qsz %d last_avail_idx %d last_used_idx %d\n",
1881         vui->vrings[q].qsz,
1882         vui->vrings[q].last_avail_idx,
1883         vui->vrings[q].last_used_idx);
1884
1885       if (vui->vrings[q].avail && vui->vrings[q].used)
1886         vlib_cli_output(vm, "  avail.flags %x avail.idx %d used.flags %x used.idx %d\n",
1887           vui->vrings[q].avail->flags,
1888           vui->vrings[q].avail->idx,
1889           vui->vrings[q].used->flags,
1890           vui->vrings[q].used->idx);
1891
1892       vlib_cli_output(vm, "  kickfd %d callfd %d errfd %d\n",
1893         vui->vrings[q].kickfd,
1894         vui->vrings[q].callfd,
1895         vui->vrings[q].errfd);
1896
1897       if (show_descr) {
1898         vlib_cli_output(vm, "\n  descriptor table:\n");
1899         vlib_cli_output(vm, "   id          addr         len  flags  next      user_addr\n");
1900         vlib_cli_output(vm, "  ===== ================== ===== ====== ===== ==================\n");
1901         for(j = 0; j < vui->vrings[q].qsz; j++) {
1902           vlib_cli_output(vm, "  %-5d 0x%016lx %-5d 0x%04x %-5d 0x%016lx\n",
1903             j,
1904             vui->vrings[q].desc[j].addr,
1905             vui->vrings[q].desc[j].len,
1906             vui->vrings[q].desc[j].flags,
1907             vui->vrings[q].desc[j].next,
1908             (u64) map_guest_mem(vui, vui->vrings[q].desc[j].addr));}
1909       }
1910     }
1911     vlib_cli_output (vm, "\n");
1912   }
1913 done:
1914   vec_free (hw_if_indices);
1915   return error;
1916 }
1917
1918 static clib_error_t *
1919 vhost_user_config (vlib_main_t * vm, unformat_input_t * input)
1920 {
1921   vhost_user_main_t * vum = &vhost_user_main;
1922
1923   while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
1924     {
1925       if (unformat (input, "coalesce-frames %d", &vum->coalesce_frames))
1926         ;
1927       else if (unformat (input, "coalesce-time %f", &vum->coalesce_time))
1928         ;
1929       else if (unformat (input, "dont-dump-memory"))
1930         vum->dont_dump_vhost_user_memory = 1;
1931       else
1932         return clib_error_return (0, "unknown input `%U'",
1933                                   format_unformat_error, input);
1934     }
1935
1936   return 0;
1937 }
1938
1939 /* vhost-user { ... } configuration. */
1940 VLIB_CONFIG_FUNCTION (vhost_user_config, "vhost-user");
1941
1942 void
1943 vhost_user_unmap_all (void)
1944 {
1945   vhost_user_main_t * vum = &vhost_user_main;
1946   vhost_user_intf_t * vui;
1947
1948   if (vum->dont_dump_vhost_user_memory)
1949     {
1950       vec_foreach (vui, vum->vhost_user_interfaces)
1951         {
1952           unmap_all_mem_regions(vui);
1953         }
1954     }
1955 }