vlib: refactor checksum offload support
[vpp.git] / src / vnet / devices / virtio / vhost_user_input.c
1 /*
2  *------------------------------------------------------------------
3  * vhost-user-input
4  *
5  * Copyright (c) 2014-2018 Cisco and/or its affiliates.
6  * Licensed under the Apache License, Version 2.0 (the "License");
7  * you may not use this file except in compliance with the License.
8  * You may obtain a copy of the License at:
9  *
10  *     http://www.apache.org/licenses/LICENSE-2.0
11  *
12  * Unless required by applicable law or agreed to in writing, software
13  * distributed under the License is distributed on an "AS IS" BASIS,
14  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  * See the License for the specific language governing permissions and
16  * limitations under the License.
17  *------------------------------------------------------------------
18  */
19
20 #include <fcntl.h>              /* for open */
21 #include <sys/ioctl.h>
22 #include <sys/socket.h>
23 #include <sys/un.h>
24 #include <sys/stat.h>
25 #include <sys/types.h>
26 #include <sys/uio.h>            /* for iovec */
27 #include <netinet/in.h>
28 #include <sys/vfs.h>
29
30 #include <linux/if_arp.h>
31 #include <linux/if_tun.h>
32
33 #include <vlib/vlib.h>
34 #include <vlib/unix/unix.h>
35
36 #include <vnet/ethernet/ethernet.h>
37 #include <vnet/devices/devices.h>
38 #include <vnet/feature/feature.h>
39 #include <vnet/udp/udp_packet.h>
40 #include <vnet/interface/rx_queue_funcs.h>
41
42 #include <vnet/devices/virtio/vhost_user.h>
43 #include <vnet/devices/virtio/vhost_user_inline.h>
44
45 /*
46  * When an RX queue is down but active, received packets
47  * must be discarded. This value controls up to how many
48  * packets will be discarded during each round.
49  */
50 #define VHOST_USER_DOWN_DISCARD_COUNT 256
51
52 /*
53  * When the number of available buffers gets under this threshold,
54  * RX node will start discarding packets.
55  */
56 #define VHOST_USER_RX_BUFFER_STARVATION 32
57
58 /*
59  * On the receive side, the host should free descriptors as soon
60  * as possible in order to avoid TX drop in the VM.
61  * This value controls the number of copy operations that are stacked
62  * before copy is done for all and descriptors are given back to
63  * the guest.
64  * The value 64 was obtained by testing (48 and 128 were not as good).
65  */
66 #define VHOST_USER_RX_COPY_THRESHOLD 64
67
68 extern vlib_node_registration_t vhost_user_input_node;
69
70 #define foreach_vhost_user_input_func_error      \
71   _(NO_ERROR, "no error")  \
72   _(NO_BUFFER, "no available buffer")  \
73   _(MMAP_FAIL, "mmap failure")  \
74   _(INDIRECT_OVERFLOW, "indirect descriptor overflows table")  \
75   _(UNDERSIZED_FRAME, "undersized ethernet frame received (< 14 bytes)") \
76   _(NOT_READY, "vhost interface not ready or down") \
77   _(FULL_RX_QUEUE, "full rx queue (possible driver tx drop)")
78
79 typedef enum
80 {
81 #define _(f,s) VHOST_USER_INPUT_FUNC_ERROR_##f,
82   foreach_vhost_user_input_func_error
83 #undef _
84     VHOST_USER_INPUT_FUNC_N_ERROR,
85 } vhost_user_input_func_error_t;
86
87 static __clib_unused char *vhost_user_input_func_error_strings[] = {
88 #define _(n,s) s,
89   foreach_vhost_user_input_func_error
90 #undef _
91 };
92
93 static_always_inline void
94 vhost_user_rx_trace (vhost_trace_t * t,
95                      vhost_user_intf_t * vui, u16 qid,
96                      vlib_buffer_t * b, vhost_user_vring_t * txvq,
97                      u16 last_avail_idx)
98 {
99   vhost_user_main_t *vum = &vhost_user_main;
100   u32 desc_current = txvq->avail->ring[last_avail_idx & txvq->qsz_mask];
101   vring_desc_t *hdr_desc = 0;
102   virtio_net_hdr_mrg_rxbuf_t *hdr;
103   u32 hint = 0;
104
105   clib_memset (t, 0, sizeof (*t));
106   t->device_index = vui - vum->vhost_user_interfaces;
107   t->qid = qid;
108
109   hdr_desc = &txvq->desc[desc_current];
110   if (txvq->desc[desc_current].flags & VRING_DESC_F_INDIRECT)
111     {
112       t->virtio_ring_flags |= 1 << VIRTIO_TRACE_F_INDIRECT;
113       /* Header is the first here */
114       hdr_desc = map_guest_mem (vui, txvq->desc[desc_current].addr, &hint);
115     }
116   if (txvq->desc[desc_current].flags & VRING_DESC_F_NEXT)
117     {
118       t->virtio_ring_flags |= 1 << VIRTIO_TRACE_F_SIMPLE_CHAINED;
119     }
120   if (!(txvq->desc[desc_current].flags & VRING_DESC_F_NEXT) &&
121       !(txvq->desc[desc_current].flags & VRING_DESC_F_INDIRECT))
122     {
123       t->virtio_ring_flags |= 1 << VIRTIO_TRACE_F_SINGLE_DESC;
124     }
125
126   t->first_desc_len = hdr_desc ? hdr_desc->len : 0;
127
128   if (!hdr_desc || !(hdr = map_guest_mem (vui, hdr_desc->addr, &hint)))
129     {
130       t->virtio_ring_flags |= 1 << VIRTIO_TRACE_F_MAP_ERROR;
131     }
132   else
133     {
134       u32 len = vui->virtio_net_hdr_sz;
135       memcpy (&t->hdr, hdr, len > hdr_desc->len ? hdr_desc->len : len);
136     }
137 }
138
139 static_always_inline u32
140 vhost_user_input_copy (vhost_user_intf_t * vui, vhost_copy_t * cpy,
141                        u16 copy_len, u32 * map_hint)
142 {
143   void *src0, *src1, *src2, *src3;
144   if (PREDICT_TRUE (copy_len >= 4))
145     {
146       if (PREDICT_FALSE (!(src2 = map_guest_mem (vui, cpy[0].src, map_hint))))
147         return 1;
148       if (PREDICT_FALSE (!(src3 = map_guest_mem (vui, cpy[1].src, map_hint))))
149         return 1;
150
151       while (PREDICT_TRUE (copy_len >= 4))
152         {
153           src0 = src2;
154           src1 = src3;
155
156           if (PREDICT_FALSE
157               (!(src2 = map_guest_mem (vui, cpy[2].src, map_hint))))
158             return 1;
159           if (PREDICT_FALSE
160               (!(src3 = map_guest_mem (vui, cpy[3].src, map_hint))))
161             return 1;
162
163           CLIB_PREFETCH (src2, 64, LOAD);
164           CLIB_PREFETCH (src3, 64, LOAD);
165
166           clib_memcpy_fast ((void *) cpy[0].dst, src0, cpy[0].len);
167           clib_memcpy_fast ((void *) cpy[1].dst, src1, cpy[1].len);
168           copy_len -= 2;
169           cpy += 2;
170         }
171     }
172   while (copy_len)
173     {
174       if (PREDICT_FALSE (!(src0 = map_guest_mem (vui, cpy->src, map_hint))))
175         return 1;
176       clib_memcpy_fast ((void *) cpy->dst, src0, cpy->len);
177       copy_len -= 1;
178       cpy += 1;
179     }
180   return 0;
181 }
182
183 /**
184  * Try to discard packets from the tx ring (VPP RX path).
185  * Returns the number of discarded packets.
186  */
187 static_always_inline u32
188 vhost_user_rx_discard_packet (vlib_main_t * vm,
189                               vhost_user_intf_t * vui,
190                               vhost_user_vring_t * txvq, u32 discard_max)
191 {
192   /*
193    * On the RX side, each packet corresponds to one descriptor
194    * (it is the same whether it is a shallow descriptor, chained, or indirect).
195    * Therefore, discarding a packet is like discarding a descriptor.
196    */
197   u32 discarded_packets = 0;
198   u32 avail_idx = txvq->avail->idx;
199   u16 mask = txvq->qsz_mask;
200   u16 last_avail_idx = txvq->last_avail_idx;
201   u16 last_used_idx = txvq->last_used_idx;
202   while (discarded_packets != discard_max)
203     {
204       if (avail_idx == last_avail_idx)
205         goto out;
206
207       u16 desc_chain_head = txvq->avail->ring[last_avail_idx & mask];
208       last_avail_idx++;
209       txvq->used->ring[last_used_idx & mask].id = desc_chain_head;
210       txvq->used->ring[last_used_idx & mask].len = 0;
211       vhost_user_log_dirty_ring (vui, txvq, ring[last_used_idx & mask]);
212       last_used_idx++;
213       discarded_packets++;
214     }
215
216 out:
217   txvq->last_avail_idx = last_avail_idx;
218   txvq->last_used_idx = last_used_idx;
219   CLIB_MEMORY_STORE_BARRIER ();
220   txvq->used->idx = txvq->last_used_idx;
221   vhost_user_log_dirty_ring (vui, txvq, idx);
222   return discarded_packets;
223 }
224
225 /*
226  * In case of overflow, we need to rewind the array of allocated buffers.
227  */
228 static_always_inline void
229 vhost_user_input_rewind_buffers (vlib_main_t * vm,
230                                  vhost_cpu_t * cpu, vlib_buffer_t * b_head)
231 {
232   u32 bi_current = cpu->rx_buffers[cpu->rx_buffers_len];
233   vlib_buffer_t *b_current = vlib_get_buffer (vm, bi_current);
234   b_current->current_length = 0;
235   b_current->flags = 0;
236   while (b_current != b_head)
237     {
238       cpu->rx_buffers_len++;
239       bi_current = cpu->rx_buffers[cpu->rx_buffers_len];
240       b_current = vlib_get_buffer (vm, bi_current);
241       b_current->current_length = 0;
242       b_current->flags = 0;
243     }
244   cpu->rx_buffers_len++;
245 }
246
247 static_always_inline void
248 vhost_user_handle_rx_offload (vlib_buffer_t * b0, u8 * b0_data,
249                               virtio_net_hdr_t * hdr)
250 {
251   u8 l4_hdr_sz = 0;
252   u8 l4_proto = 0;
253   ethernet_header_t *eh = (ethernet_header_t *) b0_data;
254   u16 ethertype = clib_net_to_host_u16 (eh->type);
255   u16 l2hdr_sz = sizeof (ethernet_header_t);
256   u32 oflags = 0;
257
258   if (ethernet_frame_is_tagged (ethertype))
259     {
260       ethernet_vlan_header_t *vlan = (ethernet_vlan_header_t *) (eh + 1);
261
262       ethertype = clib_net_to_host_u16 (vlan->type);
263       l2hdr_sz += sizeof (*vlan);
264       if (ethertype == ETHERNET_TYPE_VLAN)
265         {
266           vlan++;
267           ethertype = clib_net_to_host_u16 (vlan->type);
268           l2hdr_sz += sizeof (*vlan);
269         }
270     }
271   vnet_buffer (b0)->l2_hdr_offset = 0;
272   vnet_buffer (b0)->l3_hdr_offset = l2hdr_sz;
273   vnet_buffer (b0)->l4_hdr_offset = hdr->csum_start;
274   b0->flags |= (VNET_BUFFER_F_L2_HDR_OFFSET_VALID |
275                 VNET_BUFFER_F_L3_HDR_OFFSET_VALID |
276                 VNET_BUFFER_F_L4_HDR_OFFSET_VALID);
277
278   if (PREDICT_TRUE (ethertype == ETHERNET_TYPE_IP4))
279     {
280       ip4_header_t *ip4 = (ip4_header_t *) (b0_data + l2hdr_sz);
281       l4_proto = ip4->protocol;
282       b0->flags |= VNET_BUFFER_F_IS_IP4;
283       oflags |= VNET_BUFFER_OFFLOAD_F_IP_CKSUM;
284     }
285   else if (PREDICT_TRUE (ethertype == ETHERNET_TYPE_IP6))
286     {
287       ip6_header_t *ip6 = (ip6_header_t *) (b0_data + l2hdr_sz);
288       l4_proto = ip6->protocol;
289       b0->flags |= VNET_BUFFER_F_IS_IP6;
290     }
291
292   if (l4_proto == IP_PROTOCOL_TCP)
293     {
294       tcp_header_t *tcp = (tcp_header_t *)
295         (b0_data + vnet_buffer (b0)->l4_hdr_offset);
296       l4_hdr_sz = tcp_header_bytes (tcp);
297       oflags |= VNET_BUFFER_OFFLOAD_F_TCP_CKSUM;
298     }
299   else if (l4_proto == IP_PROTOCOL_UDP)
300     {
301       l4_hdr_sz = sizeof (udp_header_t);
302       oflags |= VNET_BUFFER_OFFLOAD_F_UDP_CKSUM;
303     }
304
305   if (hdr->gso_type == VIRTIO_NET_HDR_GSO_UDP)
306     {
307       vnet_buffer2 (b0)->gso_size = hdr->gso_size;
308       vnet_buffer2 (b0)->gso_l4_hdr_sz = l4_hdr_sz;
309       b0->flags |= VNET_BUFFER_F_GSO;
310     }
311   else if (hdr->gso_type == VIRTIO_NET_HDR_GSO_TCPV4)
312     {
313       vnet_buffer2 (b0)->gso_size = hdr->gso_size;
314       vnet_buffer2 (b0)->gso_l4_hdr_sz = l4_hdr_sz;
315       b0->flags |= (VNET_BUFFER_F_GSO | VNET_BUFFER_F_IS_IP4);
316     }
317   else if (hdr->gso_type == VIRTIO_NET_HDR_GSO_TCPV6)
318     {
319       vnet_buffer2 (b0)->gso_size = hdr->gso_size;
320       vnet_buffer2 (b0)->gso_l4_hdr_sz = l4_hdr_sz;
321       b0->flags |= (VNET_BUFFER_F_GSO | VNET_BUFFER_F_IS_IP6);
322     }
323
324   if (oflags)
325     vnet_buffer_offload_flags_set (b0, oflags);
326 }
327
328 static_always_inline void
329 vhost_user_input_do_interrupt (vlib_main_t * vm, vhost_user_intf_t * vui,
330                                vhost_user_vring_t * txvq,
331                                vhost_user_vring_t * rxvq)
332 {
333   f64 now = vlib_time_now (vm);
334
335   if ((txvq->n_since_last_int) && (txvq->int_deadline < now))
336     vhost_user_send_call (vm, vui, txvq);
337
338   if ((rxvq->n_since_last_int) && (rxvq->int_deadline < now))
339     vhost_user_send_call (vm, vui, rxvq);
340 }
341
342 static_always_inline void
343 vhost_user_input_setup_frame (vlib_main_t * vm, vlib_node_runtime_t * node,
344                               vhost_user_intf_t * vui,
345                               u32 * current_config_index, u32 * next_index,
346                               u32 ** to_next, u32 * n_left_to_next)
347 {
348   vnet_feature_main_t *fm = &feature_main;
349   u8 feature_arc_idx = fm->device_input_feature_arc_index;
350
351   if (PREDICT_FALSE (vnet_have_features (feature_arc_idx, vui->sw_if_index)))
352     {
353       vnet_feature_config_main_t *cm;
354       cm = &fm->feature_config_mains[feature_arc_idx];
355       *current_config_index = vec_elt (cm->config_index_by_sw_if_index,
356                                        vui->sw_if_index);
357       vnet_get_config_data (&cm->config_main, current_config_index,
358                             next_index, 0);
359     }
360
361   vlib_get_new_next_frame (vm, node, *next_index, *to_next, *n_left_to_next);
362
363   if (*next_index == VNET_DEVICE_INPUT_NEXT_ETHERNET_INPUT)
364     {
365       /* give some hints to ethernet-input */
366       vlib_next_frame_t *nf;
367       vlib_frame_t *f;
368       ethernet_input_frame_t *ef;
369       nf = vlib_node_runtime_get_next_frame (vm, node, *next_index);
370       f = vlib_get_frame (vm, nf->frame);
371       f->flags = ETH_INPUT_FRAME_F_SINGLE_SW_IF_IDX;
372
373       ef = vlib_frame_scalar_args (f);
374       ef->sw_if_index = vui->sw_if_index;
375       ef->hw_if_index = vui->hw_if_index;
376       vlib_frame_no_append (f);
377     }
378 }
379
380 static_always_inline u32
381 vhost_user_if_input (vlib_main_t *vm, vhost_user_main_t *vum,
382                      vhost_user_intf_t *vui, u16 qid,
383                      vlib_node_runtime_t *node, u8 enable_csum)
384 {
385   vhost_user_vring_t *txvq = &vui->vrings[VHOST_VRING_IDX_TX (qid)];
386   vnet_feature_main_t *fm = &feature_main;
387   u16 n_rx_packets = 0;
388   u32 n_rx_bytes = 0;
389   u16 n_left;
390   u32 n_left_to_next, *to_next;
391   u32 next_index = VNET_DEVICE_INPUT_NEXT_ETHERNET_INPUT;
392   u32 n_trace = vlib_get_trace_count (vm, node);
393   u32 buffer_data_size = vlib_buffer_get_default_data_size (vm);
394   u32 map_hint = 0;
395   vhost_cpu_t *cpu = &vum->cpus[vm->thread_index];
396   u16 copy_len = 0;
397   u8 feature_arc_idx = fm->device_input_feature_arc_index;
398   u32 current_config_index = ~(u32) 0;
399   u16 mask = txvq->qsz_mask;
400
401   /* The descriptor table is not ready yet */
402   if (PREDICT_FALSE (txvq->avail == 0))
403     goto done;
404
405   {
406     /* do we have pending interrupts ? */
407     vhost_user_vring_t *rxvq = &vui->vrings[VHOST_VRING_IDX_RX (qid)];
408     vhost_user_input_do_interrupt (vm, vui, txvq, rxvq);
409   }
410
411   /*
412    * For adaptive mode, it is optimized to reduce interrupts.
413    * If the scheduler switches the input node to polling due
414    * to burst of traffic, we tell the driver no interrupt.
415    * When the traffic subsides, the scheduler switches the node back to
416    * interrupt mode. We must tell the driver we want interrupt.
417    */
418   if (PREDICT_FALSE (txvq->mode == VNET_HW_IF_RX_MODE_ADAPTIVE))
419     {
420       if ((node->flags &
421            VLIB_NODE_FLAG_SWITCH_FROM_POLLING_TO_INTERRUPT_MODE) ||
422           !(node->flags &
423             VLIB_NODE_FLAG_SWITCH_FROM_INTERRUPT_TO_POLLING_MODE))
424         /* Tell driver we want notification */
425         txvq->used->flags = 0;
426       else
427         /* Tell driver we don't want notification */
428         txvq->used->flags = VRING_USED_F_NO_NOTIFY;
429     }
430
431   if (PREDICT_FALSE (txvq->avail->flags & 0xFFFE))
432     goto done;
433
434   n_left = (u16) (txvq->avail->idx - txvq->last_avail_idx);
435
436   /* nothing to do */
437   if (PREDICT_FALSE (n_left == 0))
438     goto done;
439
440   if (PREDICT_FALSE (!vui->admin_up || !(txvq->enabled)))
441     {
442       /*
443        * Discard input packet if interface is admin down or vring is not
444        * enabled.
445        * "For example, for a networking device, in the disabled state
446        * client must not supply any new RX packets, but must process
447        * and discard any TX packets."
448        */
449       vhost_user_rx_discard_packet (vm, vui, txvq,
450                                     VHOST_USER_DOWN_DISCARD_COUNT);
451       goto done;
452     }
453
454   if (PREDICT_FALSE (n_left == (mask + 1)))
455     {
456       /*
457        * Informational error logging when VPP is not
458        * receiving packets fast enough.
459        */
460       vlib_error_count (vm, node->node_index,
461                         VHOST_USER_INPUT_FUNC_ERROR_FULL_RX_QUEUE, 1);
462     }
463
464   if (n_left > VLIB_FRAME_SIZE)
465     n_left = VLIB_FRAME_SIZE;
466
467   /*
468    * For small packets (<2kB), we will not need more than one vlib buffer
469    * per packet. In case packets are bigger, we will just yield at some point
470    * in the loop and come back later. This is not an issue as for big packet,
471    * processing cost really comes from the memory copy.
472    * The assumption is that big packets will fit in 40 buffers.
473    */
474   if (PREDICT_FALSE (cpu->rx_buffers_len < n_left + 1 ||
475                      cpu->rx_buffers_len < 40))
476     {
477       u32 curr_len = cpu->rx_buffers_len;
478       cpu->rx_buffers_len +=
479         vlib_buffer_alloc (vm, cpu->rx_buffers + curr_len,
480                            VHOST_USER_RX_BUFFERS_N - curr_len);
481
482       if (PREDICT_FALSE
483           (cpu->rx_buffers_len < VHOST_USER_RX_BUFFER_STARVATION))
484         {
485           /* In case of buffer starvation, discard some packets from the queue
486            * and log the event.
487            * We keep doing best effort for the remaining packets. */
488           u32 flush = (n_left + 1 > cpu->rx_buffers_len) ?
489             n_left + 1 - cpu->rx_buffers_len : 1;
490           flush = vhost_user_rx_discard_packet (vm, vui, txvq, flush);
491
492           n_left -= flush;
493           vlib_increment_simple_counter (vnet_main.
494                                          interface_main.sw_if_counters +
495                                          VNET_INTERFACE_COUNTER_DROP,
496                                          vm->thread_index, vui->sw_if_index,
497                                          flush);
498
499           vlib_error_count (vm, vhost_user_input_node.index,
500                             VHOST_USER_INPUT_FUNC_ERROR_NO_BUFFER, flush);
501         }
502     }
503
504   vhost_user_input_setup_frame (vm, node, vui, &current_config_index,
505                                 &next_index, &to_next, &n_left_to_next);
506
507   u16 last_avail_idx = txvq->last_avail_idx;
508   u16 last_used_idx = txvq->last_used_idx;
509
510   while (n_left > 0)
511     {
512       vlib_buffer_t *b_head, *b_current;
513       u32 bi_current;
514       u16 desc_current;
515       u32 desc_data_offset;
516       vring_desc_t *desc_table = txvq->desc;
517
518       if (PREDICT_FALSE (cpu->rx_buffers_len <= 1))
519         {
520           /* Not enough rx_buffers
521            * Note: We yeld on 1 so we don't need to do an additional
522            * check for the next buffer prefetch.
523            */
524           n_left = 0;
525           break;
526         }
527
528       desc_current = txvq->avail->ring[last_avail_idx & mask];
529       cpu->rx_buffers_len--;
530       bi_current = cpu->rx_buffers[cpu->rx_buffers_len];
531       b_head = b_current = vlib_get_buffer (vm, bi_current);
532       to_next[0] = bi_current;  //We do that now so we can forget about bi_current
533       to_next++;
534       n_left_to_next--;
535
536       vlib_prefetch_buffer_with_index
537         (vm, cpu->rx_buffers[cpu->rx_buffers_len - 1], LOAD);
538
539       /* Just preset the used descriptor id and length for later */
540       txvq->used->ring[last_used_idx & mask].id = desc_current;
541       txvq->used->ring[last_used_idx & mask].len = 0;
542       vhost_user_log_dirty_ring (vui, txvq, ring[last_used_idx & mask]);
543
544       /* The buffer should already be initialized */
545       b_head->total_length_not_including_first_buffer = 0;
546       b_head->flags |= VLIB_BUFFER_TOTAL_LENGTH_VALID;
547
548       if (PREDICT_FALSE
549           (n_trace > 0 && vlib_trace_buffer (vm, node, next_index, b_head,
550                                              /* follow_chain */ 0)))
551         {
552           vhost_trace_t *t0 =
553             vlib_add_trace (vm, node, b_head, sizeof (t0[0]));
554           vhost_user_rx_trace (t0, vui, qid, b_head, txvq, last_avail_idx);
555           n_trace--;
556           vlib_set_trace_count (vm, node, n_trace);
557         }
558
559       /* This depends on the setup but is very consistent
560        * So I think the CPU branch predictor will make a pretty good job
561        * at optimizing the decision. */
562       if (txvq->desc[desc_current].flags & VRING_DESC_F_INDIRECT)
563         {
564           desc_table = map_guest_mem (vui, txvq->desc[desc_current].addr,
565                                       &map_hint);
566           desc_current = 0;
567           if (PREDICT_FALSE (desc_table == 0))
568             {
569               vlib_error_count (vm, node->node_index,
570                                 VHOST_USER_INPUT_FUNC_ERROR_MMAP_FAIL, 1);
571               goto out;
572             }
573         }
574
575       desc_data_offset = vui->virtio_net_hdr_sz;
576
577       if (enable_csum)
578         {
579           virtio_net_hdr_mrg_rxbuf_t *hdr;
580           u8 *b_data;
581           u16 current;
582
583           hdr = map_guest_mem (vui, desc_table[desc_current].addr, &map_hint);
584           if (PREDICT_FALSE (hdr == 0))
585             {
586               vlib_error_count (vm, node->node_index,
587                                 VHOST_USER_INPUT_FUNC_ERROR_MMAP_FAIL, 1);
588               goto out;
589             }
590           if (hdr->hdr.flags & VIRTIO_NET_HDR_F_NEEDS_CSUM)
591             {
592               if ((desc_data_offset == desc_table[desc_current].len) &&
593                   (desc_table[desc_current].flags & VRING_DESC_F_NEXT))
594                 {
595                   current = desc_table[desc_current].next;
596                   b_data = map_guest_mem (vui, desc_table[current].addr,
597                                           &map_hint);
598                   if (PREDICT_FALSE (b_data == 0))
599                     {
600                       vlib_error_count (vm, node->node_index,
601                                         VHOST_USER_INPUT_FUNC_ERROR_MMAP_FAIL,
602                                         1);
603                       goto out;
604                     }
605                 }
606               else
607                 b_data = (u8 *) hdr + desc_data_offset;
608
609               vhost_user_handle_rx_offload (b_head, b_data, &hdr->hdr);
610             }
611         }
612
613       while (1)
614         {
615           /* Get more input if necessary. Or end of packet. */
616           if (desc_data_offset == desc_table[desc_current].len)
617             {
618               if (PREDICT_FALSE (desc_table[desc_current].flags &
619                                  VRING_DESC_F_NEXT))
620                 {
621                   desc_current = desc_table[desc_current].next;
622                   desc_data_offset = 0;
623                 }
624               else
625                 {
626                   goto out;
627                 }
628             }
629
630           /* Get more output if necessary. Or end of packet. */
631           if (PREDICT_FALSE (b_current->current_length == buffer_data_size))
632             {
633               if (PREDICT_FALSE (cpu->rx_buffers_len == 0))
634                 {
635                   /* Cancel speculation */
636                   to_next--;
637                   n_left_to_next++;
638
639                   /*
640                    * Checking if there are some left buffers.
641                    * If not, just rewind the used buffers and stop.
642                    * Note: Scheduled copies are not cancelled. This is
643                    * not an issue as they would still be valid. Useless,
644                    * but valid.
645                    */
646                   vhost_user_input_rewind_buffers (vm, cpu, b_head);
647                   n_left = 0;
648                   goto stop;
649                 }
650
651               /* Get next output */
652               cpu->rx_buffers_len--;
653               u32 bi_next = cpu->rx_buffers[cpu->rx_buffers_len];
654               b_current->next_buffer = bi_next;
655               b_current->flags |= VLIB_BUFFER_NEXT_PRESENT;
656               bi_current = bi_next;
657               b_current = vlib_get_buffer (vm, bi_current);
658             }
659
660           /* Prepare a copy order executed later for the data */
661           ASSERT (copy_len < VHOST_USER_COPY_ARRAY_N);
662           vhost_copy_t *cpy = &cpu->copy[copy_len];
663           copy_len++;
664           u32 desc_data_l = desc_table[desc_current].len - desc_data_offset;
665           cpy->len = buffer_data_size - b_current->current_length;
666           cpy->len = (cpy->len > desc_data_l) ? desc_data_l : cpy->len;
667           cpy->dst = (uword) (vlib_buffer_get_current (b_current) +
668                               b_current->current_length);
669           cpy->src = desc_table[desc_current].addr + desc_data_offset;
670
671           desc_data_offset += cpy->len;
672
673           b_current->current_length += cpy->len;
674           b_head->total_length_not_including_first_buffer += cpy->len;
675         }
676
677     out:
678
679       n_rx_bytes += b_head->total_length_not_including_first_buffer;
680       n_rx_packets++;
681
682       b_head->total_length_not_including_first_buffer -=
683         b_head->current_length;
684
685       /* consume the descriptor and return it as used */
686       last_avail_idx++;
687       last_used_idx++;
688
689       VLIB_BUFFER_TRACE_TRAJECTORY_INIT (b_head);
690
691       vnet_buffer (b_head)->sw_if_index[VLIB_RX] = vui->sw_if_index;
692       vnet_buffer (b_head)->sw_if_index[VLIB_TX] = (u32) ~ 0;
693       b_head->error = 0;
694
695       if (current_config_index != ~(u32) 0)
696         {
697           b_head->current_config_index = current_config_index;
698           vnet_buffer (b_head)->feature_arc_index = feature_arc_idx;
699         }
700
701       n_left--;
702
703       /*
704        * Although separating memory copies from virtio ring parsing
705        * is beneficial, we can offer to perform the copies from time
706        * to time in order to free some space in the ring.
707        */
708       if (PREDICT_FALSE (copy_len >= VHOST_USER_RX_COPY_THRESHOLD))
709         {
710           if (PREDICT_FALSE (vhost_user_input_copy (vui, cpu->copy,
711                                                     copy_len, &map_hint)))
712             {
713               vlib_error_count (vm, node->node_index,
714                                 VHOST_USER_INPUT_FUNC_ERROR_MMAP_FAIL, 1);
715             }
716           copy_len = 0;
717
718           /* give buffers back to driver */
719           CLIB_MEMORY_STORE_BARRIER ();
720           txvq->used->idx = last_used_idx;
721           vhost_user_log_dirty_ring (vui, txvq, idx);
722         }
723     }
724 stop:
725   vlib_put_next_frame (vm, node, next_index, n_left_to_next);
726
727   txvq->last_used_idx = last_used_idx;
728   txvq->last_avail_idx = last_avail_idx;
729
730   /* Do the memory copies */
731   if (PREDICT_FALSE (vhost_user_input_copy (vui, cpu->copy, copy_len,
732                                             &map_hint)))
733     {
734       vlib_error_count (vm, node->node_index,
735                         VHOST_USER_INPUT_FUNC_ERROR_MMAP_FAIL, 1);
736     }
737
738   /* give buffers back to driver */
739   CLIB_MEMORY_STORE_BARRIER ();
740   txvq->used->idx = txvq->last_used_idx;
741   vhost_user_log_dirty_ring (vui, txvq, idx);
742
743   /* interrupt (call) handling */
744   if ((txvq->callfd_idx != ~0) &&
745       !(txvq->avail->flags & VRING_AVAIL_F_NO_INTERRUPT))
746     {
747       txvq->n_since_last_int += n_rx_packets;
748
749       if (txvq->n_since_last_int > vum->coalesce_frames)
750         vhost_user_send_call (vm, vui, txvq);
751     }
752
753   /* increase rx counters */
754   vlib_increment_combined_counter
755     (vnet_main.interface_main.combined_sw_if_counters
756      + VNET_INTERFACE_COUNTER_RX, vm->thread_index, vui->sw_if_index,
757      n_rx_packets, n_rx_bytes);
758
759   vnet_device_increment_rx_packets (vm->thread_index, n_rx_packets);
760
761 done:
762   return n_rx_packets;
763 }
764
765 static_always_inline void
766 vhost_user_mark_desc_consumed (vhost_user_intf_t * vui,
767                                vhost_user_vring_t * txvq, u16 desc_head,
768                                u16 n_descs_processed)
769 {
770   vring_packed_desc_t *desc_table = txvq->packed_desc;
771   u16 desc_idx;
772   u16 mask = txvq->qsz_mask;
773
774   for (desc_idx = 0; desc_idx < n_descs_processed; desc_idx++)
775     {
776       if (txvq->used_wrap_counter)
777         desc_table[(desc_head + desc_idx) & mask].flags |=
778           (VRING_DESC_F_AVAIL | VRING_DESC_F_USED);
779       else
780         desc_table[(desc_head + desc_idx) & mask].flags &=
781           ~(VRING_DESC_F_AVAIL | VRING_DESC_F_USED);
782       vhost_user_advance_last_used_idx (txvq);
783     }
784 }
785
786 static_always_inline void
787 vhost_user_rx_trace_packed (vhost_trace_t * t, vhost_user_intf_t * vui,
788                             u16 qid, vhost_user_vring_t * txvq,
789                             u16 desc_current)
790 {
791   vhost_user_main_t *vum = &vhost_user_main;
792   vring_packed_desc_t *hdr_desc;
793   virtio_net_hdr_mrg_rxbuf_t *hdr;
794   u32 hint = 0;
795
796   clib_memset (t, 0, sizeof (*t));
797   t->device_index = vui - vum->vhost_user_interfaces;
798   t->qid = qid;
799
800   hdr_desc = &txvq->packed_desc[desc_current];
801   if (txvq->packed_desc[desc_current].flags & VRING_DESC_F_INDIRECT)
802     {
803       t->virtio_ring_flags |= 1 << VIRTIO_TRACE_F_INDIRECT;
804       /* Header is the first here */
805       hdr_desc = map_guest_mem (vui, txvq->packed_desc[desc_current].addr,
806                                 &hint);
807     }
808   if (txvq->packed_desc[desc_current].flags & VRING_DESC_F_NEXT)
809     t->virtio_ring_flags |= 1 << VIRTIO_TRACE_F_SIMPLE_CHAINED;
810
811   if (!(txvq->packed_desc[desc_current].flags & VRING_DESC_F_NEXT) &&
812       !(txvq->packed_desc[desc_current].flags & VRING_DESC_F_INDIRECT))
813     t->virtio_ring_flags |= 1 << VIRTIO_TRACE_F_SINGLE_DESC;
814
815   t->first_desc_len = hdr_desc ? hdr_desc->len : 0;
816
817   if (!hdr_desc || !(hdr = map_guest_mem (vui, hdr_desc->addr, &hint)))
818     t->virtio_ring_flags |= 1 << VIRTIO_TRACE_F_MAP_ERROR;
819   else
820     {
821       u32 len = vui->virtio_net_hdr_sz;
822       clib_memcpy_fast (&t->hdr, hdr,
823                         len > hdr_desc->len ? hdr_desc->len : len);
824     }
825 }
826
827 static_always_inline u32
828 vhost_user_rx_discard_packet_packed (vlib_main_t * vm,
829                                      vhost_user_intf_t * vui,
830                                      vhost_user_vring_t * txvq,
831                                      u32 discard_max)
832 {
833   u32 discarded_packets = 0;
834   u16 mask = txvq->qsz_mask;
835   u16 desc_current, desc_head;
836
837   desc_head = desc_current = txvq->last_used_idx & mask;
838
839   /*
840    * On the RX side, each packet corresponds to one descriptor
841    * (it is the same whether it is a shallow descriptor, chained, or indirect).
842    * Therefore, discarding a packet is like discarding a descriptor.
843    */
844   while ((discarded_packets != discard_max) &&
845          vhost_user_packed_desc_available (txvq, desc_current))
846     {
847       vhost_user_advance_last_avail_idx (txvq);
848       discarded_packets++;
849       desc_current = (desc_current + 1) & mask;
850     }
851
852   if (PREDICT_TRUE (discarded_packets))
853     vhost_user_mark_desc_consumed (vui, txvq, desc_head, discarded_packets);
854   return (discarded_packets);
855 }
856
857 static_always_inline u32
858 vhost_user_input_copy_packed (vhost_user_intf_t * vui, vhost_copy_t * cpy,
859                               u16 copy_len, u32 * map_hint)
860 {
861   void *src0, *src1, *src2, *src3, *src4, *src5, *src6, *src7;
862   u8 bad;
863   u32 rc = VHOST_USER_INPUT_FUNC_ERROR_NO_ERROR;
864
865   if (PREDICT_TRUE (copy_len >= 8))
866     {
867       src4 = map_guest_mem (vui, cpy[0].src, map_hint);
868       src5 = map_guest_mem (vui, cpy[1].src, map_hint);
869       src6 = map_guest_mem (vui, cpy[2].src, map_hint);
870       src7 = map_guest_mem (vui, cpy[3].src, map_hint);
871       bad = (src4 == 0) + (src5 == 0) + (src6 == 0) + (src7 == 0);
872       if (PREDICT_FALSE (bad))
873         goto one_by_one;
874       CLIB_PREFETCH (src4, 64, LOAD);
875       CLIB_PREFETCH (src5, 64, LOAD);
876       CLIB_PREFETCH (src6, 64, LOAD);
877       CLIB_PREFETCH (src7, 64, LOAD);
878
879       while (PREDICT_TRUE (copy_len >= 8))
880         {
881           src0 = src4;
882           src1 = src5;
883           src2 = src6;
884           src3 = src7;
885
886           src4 = map_guest_mem (vui, cpy[4].src, map_hint);
887           src5 = map_guest_mem (vui, cpy[5].src, map_hint);
888           src6 = map_guest_mem (vui, cpy[6].src, map_hint);
889           src7 = map_guest_mem (vui, cpy[7].src, map_hint);
890           bad = (src4 == 0) + (src5 == 0) + (src6 == 0) + (src7 == 0);
891           if (PREDICT_FALSE (bad))
892             break;
893
894           CLIB_PREFETCH (src4, 64, LOAD);
895           CLIB_PREFETCH (src5, 64, LOAD);
896           CLIB_PREFETCH (src6, 64, LOAD);
897           CLIB_PREFETCH (src7, 64, LOAD);
898
899           clib_memcpy_fast ((void *) cpy[0].dst, src0, cpy[0].len);
900           clib_memcpy_fast ((void *) cpy[1].dst, src1, cpy[1].len);
901           clib_memcpy_fast ((void *) cpy[2].dst, src2, cpy[2].len);
902           clib_memcpy_fast ((void *) cpy[3].dst, src3, cpy[3].len);
903           copy_len -= 4;
904           cpy += 4;
905         }
906     }
907
908 one_by_one:
909   while (copy_len)
910     {
911       if (PREDICT_FALSE (!(src0 = map_guest_mem (vui, cpy->src, map_hint))))
912         {
913           rc = VHOST_USER_INPUT_FUNC_ERROR_MMAP_FAIL;
914           break;
915         }
916       clib_memcpy_fast ((void *) cpy->dst, src0, cpy->len);
917       copy_len -= 1;
918       cpy += 1;
919     }
920   return rc;
921 }
922
923 static_always_inline u32
924 vhost_user_do_offload (vhost_user_intf_t * vui,
925                        vring_packed_desc_t * desc_table, u16 desc_current,
926                        u16 mask, vlib_buffer_t * b_head, u32 * map_hint)
927 {
928   u32 rc = VHOST_USER_INPUT_FUNC_ERROR_NO_ERROR;
929   virtio_net_hdr_mrg_rxbuf_t *hdr;
930   u8 *b_data;
931   u32 desc_data_offset = vui->virtio_net_hdr_sz;
932
933   hdr = map_guest_mem (vui, desc_table[desc_current].addr, map_hint);
934   if (PREDICT_FALSE (hdr == 0))
935     rc = VHOST_USER_INPUT_FUNC_ERROR_MMAP_FAIL;
936   else if (hdr->hdr.flags & VIRTIO_NET_HDR_F_NEEDS_CSUM)
937     {
938       if (desc_data_offset == desc_table[desc_current].len)
939         {
940           desc_current = (desc_current + 1) & mask;
941           b_data =
942             map_guest_mem (vui, desc_table[desc_current].addr, map_hint);
943           if (PREDICT_FALSE (b_data == 0))
944             rc = VHOST_USER_INPUT_FUNC_ERROR_MMAP_FAIL;
945           else
946             vhost_user_handle_rx_offload (b_head, b_data, &hdr->hdr);
947         }
948       else
949         {
950           b_data = (u8 *) hdr + desc_data_offset;
951           vhost_user_handle_rx_offload (b_head, b_data, &hdr->hdr);
952         }
953     }
954
955   return rc;
956 }
957
958 static_always_inline u32
959 vhost_user_compute_buffers_required (u32 desc_len, u32 buffer_data_size)
960 {
961   div_t result;
962   u32 buffers_required;
963
964   if (PREDICT_TRUE (buffer_data_size == 2048))
965     {
966       buffers_required = desc_len >> 11;
967       if ((desc_len & 2047) != 0)
968         buffers_required++;
969       return (buffers_required);
970     }
971
972   if (desc_len < buffer_data_size)
973     return 1;
974
975   result = div (desc_len, buffer_data_size);
976   if (result.rem)
977     buffers_required = result.quot + 1;
978   else
979     buffers_required = result.quot;
980
981   return (buffers_required);
982 }
983
984 static_always_inline u32
985 vhost_user_compute_indirect_desc_len (vhost_user_intf_t * vui,
986                                       vhost_user_vring_t * txvq,
987                                       u32 buffer_data_size, u16 desc_current,
988                                       u32 * map_hint)
989 {
990   vring_packed_desc_t *desc_table = txvq->packed_desc;
991   u32 desc_len = 0;
992   u16 desc_data_offset = vui->virtio_net_hdr_sz;
993   u16 desc_idx = desc_current;
994   u32 n_descs;
995
996   n_descs = desc_table[desc_idx].len >> 4;
997   desc_table = map_guest_mem (vui, desc_table[desc_idx].addr, map_hint);
998   if (PREDICT_FALSE (desc_table == 0))
999     return 0;
1000
1001   for (desc_idx = 0; desc_idx < n_descs; desc_idx++)
1002     desc_len += desc_table[desc_idx].len;
1003
1004   if (PREDICT_TRUE (desc_len > desc_data_offset))
1005     desc_len -= desc_data_offset;
1006
1007   return vhost_user_compute_buffers_required (desc_len, buffer_data_size);
1008 }
1009
1010 static_always_inline u32
1011 vhost_user_compute_chained_desc_len (vhost_user_intf_t * vui,
1012                                      vhost_user_vring_t * txvq,
1013                                      u32 buffer_data_size, u16 * current,
1014                                      u16 * n_left)
1015 {
1016   vring_packed_desc_t *desc_table = txvq->packed_desc;
1017   u32 desc_len = 0;
1018   u16 mask = txvq->qsz_mask;
1019
1020   while (desc_table[*current].flags & VRING_DESC_F_NEXT)
1021     {
1022       desc_len += desc_table[*current].len;
1023       (*n_left)++;
1024       *current = (*current + 1) & mask;
1025       vhost_user_advance_last_avail_idx (txvq);
1026     }
1027   desc_len += desc_table[*current].len;
1028   (*n_left)++;
1029   *current = (*current + 1) & mask;
1030   vhost_user_advance_last_avail_idx (txvq);
1031
1032   if (PREDICT_TRUE (desc_len > vui->virtio_net_hdr_sz))
1033     desc_len -= vui->virtio_net_hdr_sz;
1034
1035   return vhost_user_compute_buffers_required (desc_len, buffer_data_size);
1036 }
1037
1038 static_always_inline void
1039 vhost_user_assemble_packet (vring_packed_desc_t * desc_table,
1040                             u16 * desc_idx, vlib_buffer_t * b_head,
1041                             vlib_buffer_t ** b_current, u32 ** next,
1042                             vlib_buffer_t *** b, u32 * bi_current,
1043                             vhost_cpu_t * cpu, u16 * copy_len,
1044                             u32 * buffers_used, u32 buffers_required,
1045                             u32 * desc_data_offset, u32 buffer_data_size,
1046                             u16 mask)
1047 {
1048   u32 desc_data_l;
1049
1050   while (*desc_data_offset < desc_table[*desc_idx].len)
1051     {
1052       /* Get more output if necessary. Or end of packet. */
1053       if (PREDICT_FALSE ((*b_current)->current_length == buffer_data_size))
1054         {
1055           /* Get next output */
1056           u32 bi_next = **next;
1057           (*next)++;
1058           (*b_current)->next_buffer = bi_next;
1059           (*b_current)->flags |= VLIB_BUFFER_NEXT_PRESENT;
1060           *bi_current = bi_next;
1061           *b_current = **b;
1062           (*b)++;
1063           (*buffers_used)++;
1064           ASSERT (*buffers_used <= buffers_required);
1065         }
1066
1067       /* Prepare a copy order executed later for the data */
1068       ASSERT (*copy_len < VHOST_USER_COPY_ARRAY_N);
1069       vhost_copy_t *cpy = &cpu->copy[*copy_len];
1070       (*copy_len)++;
1071       desc_data_l = desc_table[*desc_idx].len - *desc_data_offset;
1072       cpy->len = buffer_data_size - (*b_current)->current_length;
1073       cpy->len = (cpy->len > desc_data_l) ? desc_data_l : cpy->len;
1074       cpy->dst = (uword) (vlib_buffer_get_current (*b_current) +
1075                           (*b_current)->current_length);
1076       cpy->src = desc_table[*desc_idx].addr + *desc_data_offset;
1077
1078       *desc_data_offset += cpy->len;
1079
1080       (*b_current)->current_length += cpy->len;
1081       b_head->total_length_not_including_first_buffer += cpy->len;
1082     }
1083   *desc_idx = (*desc_idx + 1) & mask;;
1084   *desc_data_offset = 0;
1085 }
1086
1087 static_always_inline u32
1088 vhost_user_if_input_packed (vlib_main_t *vm, vhost_user_main_t *vum,
1089                             vhost_user_intf_t *vui, u16 qid,
1090                             vlib_node_runtime_t *node, u8 enable_csum)
1091 {
1092   vhost_user_vring_t *txvq = &vui->vrings[VHOST_VRING_IDX_TX (qid)];
1093   vnet_feature_main_t *fm = &feature_main;
1094   u8 feature_arc_idx = fm->device_input_feature_arc_index;
1095   u16 n_rx_packets = 0;
1096   u32 n_rx_bytes = 0;
1097   u16 n_left = 0;
1098   u32 buffers_required = 0;
1099   u32 n_left_to_next, *to_next;
1100   u32 next_index = VNET_DEVICE_INPUT_NEXT_ETHERNET_INPUT;
1101   u32 n_trace = vlib_get_trace_count (vm, node);
1102   u32 buffer_data_size = vlib_buffer_get_default_data_size (vm);
1103   u32 map_hint = 0;
1104   vhost_cpu_t *cpu = &vum->cpus[vm->thread_index];
1105   u16 copy_len = 0;
1106   u32 current_config_index = ~0;
1107   u16 mask = txvq->qsz_mask;
1108   u16 desc_current, desc_head, last_used_idx;
1109   vring_packed_desc_t *desc_table = 0;
1110   u32 n_descs_processed = 0;
1111   u32 rv;
1112   vlib_buffer_t **b;
1113   u32 *next;
1114   u32 buffers_used = 0;
1115   u16 current, n_descs_to_process;
1116
1117   /* The descriptor table is not ready yet */
1118   if (PREDICT_FALSE (txvq->packed_desc == 0))
1119     goto done;
1120
1121   /* do we have pending interrupts ? */
1122   vhost_user_vring_t *rxvq = &vui->vrings[VHOST_VRING_IDX_RX (qid)];
1123   vhost_user_input_do_interrupt (vm, vui, txvq, rxvq);
1124
1125   /*
1126    * For adaptive mode, it is optimized to reduce interrupts.
1127    * If the scheduler switches the input node to polling due
1128    * to burst of traffic, we tell the driver no interrupt.
1129    * When the traffic subsides, the scheduler switches the node back to
1130    * interrupt mode. We must tell the driver we want interrupt.
1131    */
1132   if (PREDICT_FALSE (txvq->mode == VNET_HW_IF_RX_MODE_ADAPTIVE))
1133     {
1134       if ((node->flags &
1135            VLIB_NODE_FLAG_SWITCH_FROM_POLLING_TO_INTERRUPT_MODE) ||
1136           !(node->flags &
1137             VLIB_NODE_FLAG_SWITCH_FROM_INTERRUPT_TO_POLLING_MODE))
1138         /* Tell driver we want notification */
1139         txvq->used_event->flags = 0;
1140       else
1141         /* Tell driver we don't want notification */
1142         txvq->used_event->flags = VRING_EVENT_F_DISABLE;
1143     }
1144
1145   last_used_idx = txvq->last_used_idx & mask;
1146   desc_head = desc_current = last_used_idx;
1147
1148   if (vhost_user_packed_desc_available (txvq, desc_current) == 0)
1149     goto done;
1150
1151   if (PREDICT_FALSE (!vui->admin_up || !vui->is_ready || !(txvq->enabled)))
1152     {
1153       /*
1154        * Discard input packet if interface is admin down or vring is not
1155        * enabled.
1156        * "For example, for a networking device, in the disabled state
1157        * client must not supply any new RX packets, but must process
1158        * and discard any TX packets."
1159        */
1160       rv = vhost_user_rx_discard_packet_packed (vm, vui, txvq,
1161                                                 VHOST_USER_DOWN_DISCARD_COUNT);
1162       vlib_error_count (vm, vhost_user_input_node.index,
1163                         VHOST_USER_INPUT_FUNC_ERROR_NOT_READY, rv);
1164       goto done;
1165     }
1166
1167   vhost_user_input_setup_frame (vm, node, vui, &current_config_index,
1168                                 &next_index, &to_next, &n_left_to_next);
1169
1170   /*
1171    * Compute n_left and total buffers needed
1172    */
1173   desc_table = txvq->packed_desc;
1174   current = desc_current;
1175   while (vhost_user_packed_desc_available (txvq, current) &&
1176          (n_left < VLIB_FRAME_SIZE))
1177     {
1178       if (desc_table[current].flags & VRING_DESC_F_INDIRECT)
1179         {
1180           buffers_required +=
1181             vhost_user_compute_indirect_desc_len (vui, txvq, buffer_data_size,
1182                                                   current, &map_hint);
1183           n_left++;
1184           current = (current + 1) & mask;
1185           vhost_user_advance_last_avail_idx (txvq);
1186         }
1187       else
1188         {
1189           buffers_required +=
1190             vhost_user_compute_chained_desc_len (vui, txvq, buffer_data_size,
1191                                                  &current, &n_left);
1192         }
1193     }
1194
1195   /* Something is broken if we need more than 10000 buffers */
1196   if (PREDICT_FALSE ((buffers_required == 0) || (buffers_required > 10000)))
1197     {
1198       rv = vhost_user_rx_discard_packet_packed (vm, vui, txvq, n_left);
1199       vlib_error_count (vm, vhost_user_input_node.index,
1200                         VHOST_USER_INPUT_FUNC_ERROR_NO_BUFFER, rv);
1201       goto done;
1202     }
1203
1204   vec_validate (cpu->to_next_list, buffers_required);
1205   rv = vlib_buffer_alloc (vm, cpu->to_next_list, buffers_required);
1206   if (PREDICT_FALSE (rv != buffers_required))
1207     {
1208       vlib_buffer_free (vm, cpu->to_next_list, rv);
1209       rv = vhost_user_rx_discard_packet_packed (vm, vui, txvq, n_left);
1210       vlib_error_count (vm, vhost_user_input_node.index,
1211                         VHOST_USER_INPUT_FUNC_ERROR_NO_BUFFER, rv);
1212       goto done;
1213     }
1214
1215   next = cpu->to_next_list;
1216   vec_validate (cpu->rx_buffers_pdesc, buffers_required);
1217   vlib_get_buffers (vm, next, cpu->rx_buffers_pdesc, buffers_required);
1218   b = cpu->rx_buffers_pdesc;
1219   n_descs_processed = n_left;
1220
1221   while (n_left)
1222     {
1223       vlib_buffer_t *b_head, *b_current;
1224       u32 bi_current;
1225       u32 desc_data_offset;
1226       u16 desc_idx = desc_current;
1227       u32 n_descs;
1228
1229       desc_table = txvq->packed_desc;
1230       to_next[0] = bi_current = next[0];
1231       b_head = b_current = b[0];
1232       b++;
1233       buffers_used++;
1234       ASSERT (buffers_used <= buffers_required);
1235       to_next++;
1236       next++;
1237       n_left_to_next--;
1238
1239       /* The buffer should already be initialized */
1240       b_head->total_length_not_including_first_buffer = 0;
1241       b_head->flags |= VLIB_BUFFER_TOTAL_LENGTH_VALID;
1242       desc_data_offset = vui->virtio_net_hdr_sz;
1243       n_descs_to_process = 1;
1244
1245       if (desc_table[desc_idx].flags & VRING_DESC_F_INDIRECT)
1246         {
1247           n_descs = desc_table[desc_idx].len >> 4;
1248           desc_table = map_guest_mem (vui, desc_table[desc_idx].addr,
1249                                       &map_hint);
1250           desc_idx = 0;
1251           if (PREDICT_FALSE (desc_table == 0) ||
1252               (enable_csum &&
1253                (PREDICT_FALSE
1254                 (vhost_user_do_offload
1255                  (vui, desc_table, desc_idx, mask, b_head,
1256                   &map_hint) != VHOST_USER_INPUT_FUNC_ERROR_NO_ERROR))))
1257             {
1258               vlib_error_count (vm, node->node_index,
1259                                 VHOST_USER_INPUT_FUNC_ERROR_MMAP_FAIL, 1);
1260               to_next--;
1261               next--;
1262               n_left_to_next++;
1263               buffers_used--;
1264               b--;
1265               goto out;
1266             }
1267           while (n_descs)
1268             {
1269               vhost_user_assemble_packet (desc_table, &desc_idx, b_head,
1270                                           &b_current, &next, &b, &bi_current,
1271                                           cpu, &copy_len, &buffers_used,
1272                                           buffers_required, &desc_data_offset,
1273                                           buffer_data_size, mask);
1274               n_descs--;
1275             }
1276         }
1277       else
1278         {
1279           if (enable_csum)
1280             {
1281               rv = vhost_user_do_offload (vui, desc_table, desc_idx, mask,
1282                                           b_head, &map_hint);
1283               if (PREDICT_FALSE (rv != VHOST_USER_INPUT_FUNC_ERROR_NO_ERROR))
1284                 {
1285                   vlib_error_count (vm, node->node_index, rv, 1);
1286                   to_next--;
1287                   next--;
1288                   n_left_to_next++;
1289                   buffers_used--;
1290                   b--;
1291                   goto out;
1292                 }
1293             }
1294           /*
1295            * For chained descriptor, we process all chains in a single while
1296            * loop. So count how many descriptors in the chain.
1297            */
1298           n_descs_to_process = 1;
1299           while (desc_table[desc_idx].flags & VRING_DESC_F_NEXT)
1300             {
1301               vhost_user_assemble_packet (desc_table, &desc_idx, b_head,
1302                                           &b_current, &next, &b, &bi_current,
1303                                           cpu, &copy_len, &buffers_used,
1304                                           buffers_required, &desc_data_offset,
1305                                           buffer_data_size, mask);
1306               n_descs_to_process++;
1307             }
1308           vhost_user_assemble_packet (desc_table, &desc_idx, b_head,
1309                                       &b_current, &next, &b, &bi_current,
1310                                       cpu, &copy_len, &buffers_used,
1311                                       buffers_required, &desc_data_offset,
1312                                       buffer_data_size, mask);
1313         }
1314
1315       n_rx_bytes += b_head->total_length_not_including_first_buffer;
1316       n_rx_packets++;
1317
1318       b_head->total_length_not_including_first_buffer -=
1319         b_head->current_length;
1320
1321       VLIB_BUFFER_TRACE_TRAJECTORY_INIT (b_head);
1322
1323       vnet_buffer (b_head)->sw_if_index[VLIB_RX] = vui->sw_if_index;
1324       vnet_buffer (b_head)->sw_if_index[VLIB_TX] = ~0;
1325       b_head->error = 0;
1326
1327       if (current_config_index != ~0)
1328         {
1329           b_head->current_config_index = current_config_index;
1330           vnet_buffer (b_head)->feature_arc_index = feature_arc_idx;
1331         }
1332
1333     out:
1334       ASSERT (n_left >= n_descs_to_process);
1335       n_left -= n_descs_to_process;
1336
1337       /* advance to next descrptor */
1338       desc_current = (desc_current + n_descs_to_process) & mask;
1339
1340       /*
1341        * Although separating memory copies from virtio ring parsing
1342        * is beneficial, we can offer to perform the copies from time
1343        * to time in order to free some space in the ring.
1344        */
1345       if (PREDICT_FALSE (copy_len >= VHOST_USER_RX_COPY_THRESHOLD))
1346         {
1347           rv = vhost_user_input_copy_packed (vui, cpu->copy, copy_len,
1348                                              &map_hint);
1349           if (PREDICT_FALSE (rv != VHOST_USER_INPUT_FUNC_ERROR_NO_ERROR))
1350             vlib_error_count (vm, node->node_index, rv, 1);
1351           copy_len = 0;
1352         }
1353     }
1354   vlib_put_next_frame (vm, node, next_index, n_left_to_next);
1355
1356   /* Do the memory copies */
1357   rv = vhost_user_input_copy_packed (vui, cpu->copy, copy_len, &map_hint);
1358   if (PREDICT_FALSE (rv != VHOST_USER_INPUT_FUNC_ERROR_NO_ERROR))
1359     vlib_error_count (vm, node->node_index, rv, 1);
1360
1361   /* Must do the tracing before giving buffers back to driver */
1362   if (PREDICT_FALSE (n_trace))
1363     {
1364       u32 left = n_rx_packets;
1365
1366       b = cpu->rx_buffers_pdesc;
1367       while (n_trace && left)
1368         {
1369           if (PREDICT_TRUE
1370               (vlib_trace_buffer
1371                (vm, node, next_index, b[0], /* follow_chain */ 0)))
1372             {
1373               vhost_trace_t *t0;
1374               t0 = vlib_add_trace (vm, node, b[0], sizeof (t0[0]));
1375               vhost_user_rx_trace_packed (t0, vui, qid, txvq, last_used_idx);
1376               last_used_idx = (last_used_idx + 1) & mask;
1377               n_trace--;
1378               vlib_set_trace_count (vm, node, n_trace);
1379             }
1380           left--;
1381           b++;
1382         }
1383     }
1384
1385   /*
1386    * Give buffers back to driver.
1387    */
1388   vhost_user_mark_desc_consumed (vui, txvq, desc_head, n_descs_processed);
1389
1390   /* interrupt (call) handling */
1391   if ((txvq->callfd_idx != ~0) &&
1392       (txvq->avail_event->flags != VRING_EVENT_F_DISABLE))
1393     {
1394       txvq->n_since_last_int += n_rx_packets;
1395       if (txvq->n_since_last_int > vum->coalesce_frames)
1396         vhost_user_send_call (vm, vui, txvq);
1397     }
1398
1399   /* increase rx counters */
1400   vlib_increment_combined_counter
1401     (vnet_main.interface_main.combined_sw_if_counters
1402      + VNET_INTERFACE_COUNTER_RX, vm->thread_index, vui->sw_if_index,
1403      n_rx_packets, n_rx_bytes);
1404
1405   vnet_device_increment_rx_packets (vm->thread_index, n_rx_packets);
1406
1407   if (PREDICT_FALSE (buffers_used < buffers_required))
1408     vlib_buffer_free (vm, next, buffers_required - buffers_used);
1409
1410 done:
1411   return n_rx_packets;
1412 }
1413
1414 VLIB_NODE_FN (vhost_user_input_node) (vlib_main_t * vm,
1415                                       vlib_node_runtime_t * node,
1416                                       vlib_frame_t * frame)
1417 {
1418   vhost_user_main_t *vum = &vhost_user_main;
1419   uword n_rx_packets = 0;
1420   vhost_user_intf_t *vui;
1421   vnet_hw_if_rxq_poll_vector_t *pv = vnet_hw_if_get_rxq_poll_vector (vm, node);
1422   vnet_hw_if_rxq_poll_vector_t *pve;
1423
1424   vec_foreach (pve, pv)
1425     {
1426       vui = pool_elt_at_index (vum->vhost_user_interfaces, pve->dev_instance);
1427       if (vhost_user_is_packed_ring_supported (vui))
1428         {
1429           if (vui->features & VIRTIO_FEATURE (VIRTIO_NET_F_CSUM))
1430             n_rx_packets += vhost_user_if_input_packed (
1431               vm, vum, vui, pve->queue_id, node, 1);
1432           else
1433             n_rx_packets += vhost_user_if_input_packed (
1434               vm, vum, vui, pve->queue_id, node, 0);
1435         }
1436       else
1437         {
1438           if (vui->features & VIRTIO_FEATURE (VIRTIO_NET_F_CSUM))
1439             n_rx_packets +=
1440               vhost_user_if_input (vm, vum, vui, pve->queue_id, node, 1);
1441           else
1442             n_rx_packets +=
1443               vhost_user_if_input (vm, vum, vui, pve->queue_id, node, 0);
1444         }
1445     }
1446
1447   return n_rx_packets;
1448 }
1449
1450 /* *INDENT-OFF* */
1451 VLIB_REGISTER_NODE (vhost_user_input_node) = {
1452   .type = VLIB_NODE_TYPE_INPUT,
1453   .name = "vhost-user-input",
1454   .sibling_of = "device-input",
1455   .flags = VLIB_NODE_FLAG_TRACE_SUPPORTED,
1456
1457   /* Will be enabled if/when hardware is detected. */
1458   .state = VLIB_NODE_STATE_DISABLED,
1459
1460   .format_buffer = format_ethernet_header_with_length,
1461   .format_trace = format_vhost_trace,
1462
1463   .n_errors = VHOST_USER_INPUT_FUNC_N_ERROR,
1464   .error_strings = vhost_user_input_func_error_strings,
1465 };
1466 /* *INDENT-ON* */
1467
1468 /*
1469  * fd.io coding-style-patch-verification: ON
1470  *
1471  * Local Variables:
1472  * eval: (c-set-style "gnu")
1473  * End:
1474  */