blob: 63e40da53b7a572c866b5d04e36a89660786ebeb [file] [log] [blame]
Damjan Marion8389fb92017-10-13 18:29:53 +02001/*
2 *------------------------------------------------------------------
3 * Copyright (c) 2016 Cisco and/or its affiliates.
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at:
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 *------------------------------------------------------------------
16 */
17
18#include <sys/types.h>
19#include <sys/stat.h>
20#include <fcntl.h>
21#include <net/if.h>
22#include <linux/if_tun.h>
23#include <sys/ioctl.h>
Damjan Marion8389fb92017-10-13 18:29:53 +020024#include <sys/eventfd.h>
25
26#include <vlib/vlib.h>
27#include <vlib/unix/unix.h>
28#include <vnet/ethernet/ethernet.h>
29#include <vnet/devices/devices.h>
30#include <vnet/feature/feature.h>
Milan Lenco73e7f422017-12-14 10:04:25 +010031#include <vnet/ip/ip4_packet.h>
32#include <vnet/ip/ip6_packet.h>
Andrew Yourtchenko6a7cff72018-10-12 16:09:22 +020033#include <vnet/udp/udp_packet.h>
Damjan Marion8389fb92017-10-13 18:29:53 +020034#include <vnet/devices/virtio/virtio.h>
35
36
37#define foreach_virtio_input_error \
Mohsin Kazmi543ed862020-07-22 17:15:10 +020038 _(BUFFER_ALLOC, "buffer alloc error") \
Damjan Marion8389fb92017-10-13 18:29:53 +020039 _(UNKNOWN, "unknown")
40
41typedef enum
42{
Mohsin Kazmiddd21832019-01-22 13:05:00 +000043#define _(f,s) VIRTIO_INPUT_ERROR_##f,
Damjan Marion8389fb92017-10-13 18:29:53 +020044 foreach_virtio_input_error
45#undef _
Mohsin Kazmiddd21832019-01-22 13:05:00 +000046 VIRTIO_INPUT_N_ERROR,
Damjan Marion8389fb92017-10-13 18:29:53 +020047} virtio_input_error_t;
48
49static char *virtio_input_error_strings[] = {
50#define _(n,s) s,
51 foreach_virtio_input_error
52#undef _
53};
54
55typedef struct
56{
57 u32 next_index;
58 u32 hw_if_index;
59 u16 ring;
60 u16 len;
61 struct virtio_net_hdr_v1 hdr;
62} virtio_input_trace_t;
63
64static u8 *
65format_virtio_input_trace (u8 * s, va_list * args)
66{
67 CLIB_UNUSED (vlib_main_t * vm) = va_arg (*args, vlib_main_t *);
68 CLIB_UNUSED (vlib_node_t * node) = va_arg (*args, vlib_node_t *);
69 virtio_input_trace_t *t = va_arg (*args, virtio_input_trace_t *);
70 u32 indent = format_get_indent (s);
71
72 s = format (s, "virtio: hw_if_index %d next-index %d vring %u len %u",
73 t->hw_if_index, t->next_index, t->ring, t->len);
74 s = format (s, "\n%Uhdr: flags 0x%02x gso_type 0x%02x hdr_len %u "
75 "gso_size %u csum_start %u csum_offset %u num_buffers %u",
76 format_white_space, indent + 2,
77 t->hdr.flags, t->hdr.gso_type, t->hdr.hdr_len, t->hdr.gso_size,
78 t->hdr.csum_start, t->hdr.csum_offset, t->hdr.num_buffers);
79 return s;
80}
81
82static_always_inline void
Mohsin Kazmid6c15af2018-10-23 18:00:47 +020083virtio_refill_vring (vlib_main_t * vm, virtio_if_t * vif,
Mohsin Kazmi38b09682020-06-03 18:20:17 +020084 virtio_if_type_t type, virtio_vring_t * vring,
Mohsin Kazmi543ed862020-07-22 17:15:10 +020085 const int hdr_sz, u32 node_index)
Damjan Marion8389fb92017-10-13 18:29:53 +020086{
Mohsin Kazmi543ed862020-07-22 17:15:10 +020087 u16 used, next, avail, n_slots, n_refill;
Damjan Marion8389fb92017-10-13 18:29:53 +020088 u16 sz = vring->size;
89 u16 mask = sz - 1;
Damjan Marion8389fb92017-10-13 18:29:53 +020090
Damjan Marione40231b2018-12-20 10:44:47 +010091more:
Damjan Marion8389fb92017-10-13 18:29:53 +020092 used = vring->desc_in_use;
93
94 if (sz - used < sz / 8)
95 return;
96
Damjan Marione40231b2018-12-20 10:44:47 +010097 /* deliver free buffers in chunks of 64 */
Mohsin Kazmi543ed862020-07-22 17:15:10 +020098 n_refill = clib_min (sz - used, 64);
Damjan Marione40231b2018-12-20 10:44:47 +010099
Damjan Marion8389fb92017-10-13 18:29:53 +0200100 next = vring->desc_next;
101 avail = vring->avail->idx;
Mohsin Kazmi80659b42019-01-31 13:18:00 +0000102 n_slots =
103 vlib_buffer_alloc_to_ring_from_pool (vm, vring->buffers, next,
Mohsin Kazmi543ed862020-07-22 17:15:10 +0200104 vring->size, n_refill,
Mohsin Kazmi80659b42019-01-31 13:18:00 +0000105 vring->buffer_pool_index);
Damjan Marion8389fb92017-10-13 18:29:53 +0200106
Mohsin Kazmi543ed862020-07-22 17:15:10 +0200107 if (PREDICT_FALSE (n_slots != n_refill))
108 {
109 vlib_error_count (vm, node_index,
110 VIRTIO_INPUT_ERROR_BUFFER_ALLOC, n_refill - n_slots);
111 if (n_slots == 0)
112 return;
113 }
Damjan Marione40231b2018-12-20 10:44:47 +0100114
Damjan Marion8389fb92017-10-13 18:29:53 +0200115 while (n_slots)
116 {
117 struct vring_desc *d = &vring->desc[next];;
118 vlib_buffer_t *b = vlib_get_buffer (vm, vring->buffers[next]);
Mohsin Kazmid6c15af2018-10-23 18:00:47 +0200119 /*
120 * current_data may not be initialized with 0 and may contain
121 * previous offset. Here we want to make sure, it should be 0
122 * initialized.
123 */
Mohsin Kazmi38b09682020-06-03 18:20:17 +0200124 b->current_data = -hdr_sz;
Mohsin Kazmid6c15af2018-10-23 18:00:47 +0200125 memset (vlib_buffer_get_current (b), 0, hdr_sz);
126 d->addr =
Mohsin Kazmi38b09682020-06-03 18:20:17 +0200127 ((type == VIRTIO_IF_TYPE_PCI) ? vlib_buffer_get_current_pa (vm,
128 b) :
Mohsin Kazmid6c15af2018-10-23 18:00:47 +0200129 pointer_to_uword (vlib_buffer_get_current (b)));
Damjan Marion8934a042019-02-09 23:29:26 +0100130 d->len = vlib_buffer_get_default_data_size (vm) + hdr_sz;
Damjan Marion8389fb92017-10-13 18:29:53 +0200131 d->flags = VRING_DESC_F_WRITE;
132 vring->avail->ring[avail & mask] = next;
133 avail++;
134 next = (next + 1) & mask;
135 n_slots--;
136 used++;
137 }
138 CLIB_MEMORY_STORE_BARRIER ();
139 vring->avail->idx = avail;
140 vring->desc_next = next;
141 vring->desc_in_use = used;
142
143 if ((vring->used->flags & VIRTIO_RING_FLAG_MASK_INT) == 0)
Mohsin Kazmid6c15af2018-10-23 18:00:47 +0200144 {
145 virtio_kick (vm, vring, vif);
146 }
Damjan Marione40231b2018-12-20 10:44:47 +0100147 goto more;
Damjan Marion8389fb92017-10-13 18:29:53 +0200148}
149
Andrew Yourtchenko6a7cff72018-10-12 16:09:22 +0200150static_always_inline void
Benoît Ganne15d7fd02019-11-26 17:59:41 +0100151virtio_needs_csum (vlib_buffer_t * b0, struct virtio_net_hdr_v1 *hdr,
Mohsin Kazmi206acf82020-04-06 14:19:54 +0200152 u8 * l4_proto, u8 * l4_hdr_sz, virtio_if_type_t type)
Andrew Yourtchenko6a7cff72018-10-12 16:09:22 +0200153{
Andrew Yourtchenko6a7cff72018-10-12 16:09:22 +0200154 if (hdr->flags & VIRTIO_NET_HDR_F_NEEDS_CSUM)
Andrew Yourtchenko6a7cff72018-10-12 16:09:22 +0200155 {
Mohsin Kazmi206acf82020-04-06 14:19:54 +0200156 u16 ethertype = 0, l2hdr_sz = 0;
Mohsin Kazmi38b09682020-06-03 18:20:17 +0200157
158 if (type == VIRTIO_IF_TYPE_TUN)
159 {
160 switch (b0->data[0] & 0xf0)
161 {
162 case 0x40:
163 ethertype = ETHERNET_TYPE_IP4;
164 break;
165 case 0x60:
166 ethertype = ETHERNET_TYPE_IP6;
167 break;
168 }
169 }
170 else
Mohsin Kazmi14bea1b2019-07-29 11:39:26 +0200171 {
Mohsin Kazmi206acf82020-04-06 14:19:54 +0200172 ethernet_header_t *eh =
173 (ethernet_header_t *) vlib_buffer_get_current (b0);
174 ethertype = clib_net_to_host_u16 (eh->type);
175 l2hdr_sz = sizeof (ethernet_header_t);
Mohsin Kazmi14bea1b2019-07-29 11:39:26 +0200176
Mohsin Kazmi206acf82020-04-06 14:19:54 +0200177 if (ethernet_frame_is_tagged (ethertype))
Mohsin Kazmi14bea1b2019-07-29 11:39:26 +0200178 {
Mohsin Kazmi206acf82020-04-06 14:19:54 +0200179 ethernet_vlan_header_t *vlan =
180 (ethernet_vlan_header_t *) (eh + 1);
181
Mohsin Kazmi14bea1b2019-07-29 11:39:26 +0200182 ethertype = clib_net_to_host_u16 (vlan->type);
183 l2hdr_sz += sizeof (*vlan);
Mohsin Kazmi206acf82020-04-06 14:19:54 +0200184 if (ethertype == ETHERNET_TYPE_VLAN)
185 {
186 vlan++;
187 ethertype = clib_net_to_host_u16 (vlan->type);
188 l2hdr_sz += sizeof (*vlan);
189 }
190 }
191 }
Mohsin Kazmi14bea1b2019-07-29 11:39:26 +0200192
Mohsin Kazmi157a4ab2019-12-06 15:47:48 +0100193 vnet_buffer (b0)->l2_hdr_offset = 0;
194 vnet_buffer (b0)->l3_hdr_offset = l2hdr_sz;
Mohsin Kazmi38b09682020-06-03 18:20:17 +0200195
Andrew Yourtchenko6a7cff72018-10-12 16:09:22 +0200196 if (PREDICT_TRUE (ethertype == ETHERNET_TYPE_IP4))
197 {
Mohsin Kazmi72e73122019-10-22 13:33:13 +0200198 ip4_header_t *ip4 =
199 (ip4_header_t *) (vlib_buffer_get_current (b0) + l2hdr_sz);
Mohsin Kazmi157a4ab2019-12-06 15:47:48 +0100200 vnet_buffer (b0)->l4_hdr_offset = l2hdr_sz + ip4_header_bytes (ip4);
Benoît Ganne15d7fd02019-11-26 17:59:41 +0100201 *l4_proto = ip4->protocol;
Andrew Yourtchenko6a7cff72018-10-12 16:09:22 +0200202 b0->flags |=
Mohsin Kazmi72e73122019-10-22 13:33:13 +0200203 (VNET_BUFFER_F_IS_IP4 | VNET_BUFFER_F_OFFLOAD_IP_CKSUM);
Mohsin Kazmi157a4ab2019-12-06 15:47:48 +0100204 b0->flags |=
205 (VNET_BUFFER_F_L2_HDR_OFFSET_VALID
206 | VNET_BUFFER_F_L3_HDR_OFFSET_VALID |
207 VNET_BUFFER_F_L4_HDR_OFFSET_VALID);
Andrew Yourtchenko6a7cff72018-10-12 16:09:22 +0200208 }
209 else if (PREDICT_TRUE (ethertype == ETHERNET_TYPE_IP6))
210 {
Mohsin Kazmi72e73122019-10-22 13:33:13 +0200211 ip6_header_t *ip6 =
212 (ip6_header_t *) (vlib_buffer_get_current (b0) + l2hdr_sz);
Mohsin Kazmi157a4ab2019-12-06 15:47:48 +0100213 vnet_buffer (b0)->l4_hdr_offset = l2hdr_sz + sizeof (ip6_header_t);
Andrew Yourtchenko6a7cff72018-10-12 16:09:22 +0200214 /* FIXME IPv6 EH traversal */
Benoît Ganne15d7fd02019-11-26 17:59:41 +0100215 *l4_proto = ip6->protocol;
Mohsin Kazmi157a4ab2019-12-06 15:47:48 +0100216 b0->flags |= (VNET_BUFFER_F_IS_IP6 |
217 VNET_BUFFER_F_L2_HDR_OFFSET_VALID
218 | VNET_BUFFER_F_L3_HDR_OFFSET_VALID |
219 VNET_BUFFER_F_L4_HDR_OFFSET_VALID);
Andrew Yourtchenko6a7cff72018-10-12 16:09:22 +0200220 }
Benoît Ganne15d7fd02019-11-26 17:59:41 +0100221 if (*l4_proto == IP_PROTOCOL_TCP)
Andrew Yourtchenko6a7cff72018-10-12 16:09:22 +0200222 {
223 b0->flags |= VNET_BUFFER_F_OFFLOAD_TCP_CKSUM;
Mohsin Kazmi157a4ab2019-12-06 15:47:48 +0100224 tcp_header_t *tcp = (tcp_header_t *) (vlib_buffer_get_current (b0) +
225 vnet_buffer
226 (b0)->l4_hdr_offset);
Benoît Ganne15d7fd02019-11-26 17:59:41 +0100227 *l4_hdr_sz = tcp_header_bytes (tcp);
Andrew Yourtchenko6a7cff72018-10-12 16:09:22 +0200228 }
Benoît Ganne15d7fd02019-11-26 17:59:41 +0100229 else if (*l4_proto == IP_PROTOCOL_UDP)
Andrew Yourtchenko6a7cff72018-10-12 16:09:22 +0200230 {
231 b0->flags |= VNET_BUFFER_F_OFFLOAD_UDP_CKSUM;
Mohsin Kazmi157a4ab2019-12-06 15:47:48 +0100232 udp_header_t *udp = (udp_header_t *) (vlib_buffer_get_current (b0) +
233 vnet_buffer
234 (b0)->l4_hdr_offset);
Benoît Ganne15d7fd02019-11-26 17:59:41 +0100235 *l4_hdr_sz = sizeof (*udp);
Andrew Yourtchenko6a7cff72018-10-12 16:09:22 +0200236 }
237 }
Benoît Ganne15d7fd02019-11-26 17:59:41 +0100238}
239
240static_always_inline void
241fill_gso_buffer_flags (vlib_buffer_t * b0, struct virtio_net_hdr_v1 *hdr,
242 u8 l4_proto, u8 l4_hdr_sz)
243{
Andrew Yourtchenko6a7cff72018-10-12 16:09:22 +0200244 if (hdr->gso_type == VIRTIO_NET_HDR_GSO_TCPV4)
245 {
246 ASSERT (hdr->flags & VIRTIO_NET_HDR_F_NEEDS_CSUM);
247 vnet_buffer2 (b0)->gso_size = hdr->gso_size;
Mohsin Kazmi157a4ab2019-12-06 15:47:48 +0100248 vnet_buffer2 (b0)->gso_l4_hdr_sz = l4_hdr_sz;
Mohsin Kazmi72e73122019-10-22 13:33:13 +0200249 b0->flags |= VNET_BUFFER_F_GSO | VNET_BUFFER_F_IS_IP4;
Andrew Yourtchenko6a7cff72018-10-12 16:09:22 +0200250 }
251 if (hdr->gso_type == VIRTIO_NET_HDR_GSO_TCPV6)
252 {
253 ASSERT (hdr->flags & VIRTIO_NET_HDR_F_NEEDS_CSUM);
254 vnet_buffer2 (b0)->gso_size = hdr->gso_size;
Mohsin Kazmi157a4ab2019-12-06 15:47:48 +0100255 vnet_buffer2 (b0)->gso_l4_hdr_sz = l4_hdr_sz;
Mohsin Kazmi72e73122019-10-22 13:33:13 +0200256 b0->flags |= VNET_BUFFER_F_GSO | VNET_BUFFER_F_IS_IP6;
Andrew Yourtchenko6a7cff72018-10-12 16:09:22 +0200257 }
258}
259
Damjan Marion8389fb92017-10-13 18:29:53 +0200260static_always_inline uword
Mohsin Kazmi38b09682020-06-03 18:20:17 +0200261virtio_device_input_gso_inline (vlib_main_t * vm, vlib_node_runtime_t * node,
262 vlib_frame_t * frame, virtio_if_t * vif,
263 u16 qid, virtio_if_type_t type,
264 int gso_enabled, int checksum_offload_enabled)
Damjan Marion8389fb92017-10-13 18:29:53 +0200265{
266 vnet_main_t *vnm = vnet_get_main ();
Damjan Marion067cd622018-07-11 12:47:43 +0200267 u32 thread_index = vm->thread_index;
Damjan Marion8389fb92017-10-13 18:29:53 +0200268 uword n_trace = vlib_get_trace_count (vm, node);
Mohsin Kazmi09a3bc52019-04-02 11:45:08 +0000269 virtio_vring_t *vring = vec_elt_at_index (vif->rxq_vrings, qid);
Damjan Marion8389fb92017-10-13 18:29:53 +0200270 u32 next_index = VNET_DEVICE_INPUT_NEXT_ETHERNET_INPUT;
Mohsin Kazmid6c15af2018-10-23 18:00:47 +0200271 const int hdr_sz = vif->virtio_net_hdr_sz;
Damjan Marion8389fb92017-10-13 18:29:53 +0200272 u32 *to_next = 0;
273 u32 n_rx_packets = 0;
274 u32 n_rx_bytes = 0;
275 u16 mask = vring->size - 1;
276 u16 last = vring->last_used_idx;
277 u16 n_left = vring->used->idx - last;
278
Damjan Marione40231b2018-12-20 10:44:47 +0100279 if ((vring->used->flags & VIRTIO_RING_FLAG_MASK_INT) == 0 &&
280 vring->last_kick_avail_idx != vring->avail->idx)
Mohsin Kazmid6c15af2018-10-23 18:00:47 +0200281 virtio_kick (vm, vring, vif);
Damjan Marione40231b2018-12-20 10:44:47 +0100282
Damjan Marion8389fb92017-10-13 18:29:53 +0200283 if (n_left == 0)
284 goto refill;
285
Mohsin Kazmi38b09682020-06-03 18:20:17 +0200286 if (type == VIRTIO_IF_TYPE_TUN)
287 next_index = VNET_DEVICE_INPUT_NEXT_IP4_INPUT;
288
Damjan Marion8389fb92017-10-13 18:29:53 +0200289 while (n_left)
290 {
291 u32 n_left_to_next;
292 u32 next0 = next_index;
Mohsin Kazmi38b09682020-06-03 18:20:17 +0200293
Damjan Marion8389fb92017-10-13 18:29:53 +0200294 vlib_get_next_frame (vm, node, next_index, to_next, n_left_to_next);
295
296 while (n_left && n_left_to_next)
297 {
Mohsin Kazmi516e4ed2020-02-24 15:54:24 +0100298 u8 l4_proto = 0, l4_hdr_sz = 0;
Mohsin Kazmid6c15af2018-10-23 18:00:47 +0200299 u16 num_buffers = 1;
Damjan Marion8389fb92017-10-13 18:29:53 +0200300 struct vring_used_elem *e = &vring->used->ring[last & mask];
301 struct virtio_net_hdr_v1 *hdr;
302 u16 slot = e->id;
303 u16 len = e->len - hdr_sz;
304 u32 bi0 = vring->buffers[slot];
305 vlib_buffer_t *b0 = vlib_get_buffer (vm, bi0);
Mohsin Kazmid6c15af2018-10-23 18:00:47 +0200306 hdr = vlib_buffer_get_current (b0);
307 if (hdr_sz == sizeof (struct virtio_net_hdr_v1))
308 num_buffers = hdr->num_buffers;
Damjan Marion8389fb92017-10-13 18:29:53 +0200309
Mohsin Kazmi8975dbd2020-06-24 16:19:19 +0200310 b0->flags = VLIB_BUFFER_TOTAL_LENGTH_VALID;
Mohsin Kazmi38b09682020-06-03 18:20:17 +0200311 b0->current_data = 0;
Damjan Marion8389fb92017-10-13 18:29:53 +0200312 b0->current_length = len;
Andrew Yourtchenko6a7cff72018-10-12 16:09:22 +0200313
Mohsin Kazmi6d4af892020-01-03 15:11:53 +0000314 if (checksum_offload_enabled)
Mohsin Kazmi38b09682020-06-03 18:20:17 +0200315 virtio_needs_csum (b0, hdr, &l4_proto, &l4_hdr_sz, type);
Benoît Ganne15d7fd02019-11-26 17:59:41 +0100316
Andrew Yourtchenko6a7cff72018-10-12 16:09:22 +0200317 if (gso_enabled)
Benoît Ganne15d7fd02019-11-26 17:59:41 +0100318 fill_gso_buffer_flags (b0, hdr, l4_proto, l4_hdr_sz);
Andrew Yourtchenko6a7cff72018-10-12 16:09:22 +0200319
Damjan Marion8389fb92017-10-13 18:29:53 +0200320 vnet_buffer (b0)->sw_if_index[VLIB_RX] = vif->sw_if_index;
321 vnet_buffer (b0)->sw_if_index[VLIB_TX] = (u32) ~ 0;
322
323 /* if multisegment packet */
324 if (PREDICT_FALSE (num_buffers > 1))
325 {
326 vlib_buffer_t *pb, *cb;
327 pb = b0;
Mohsin Kazmi38b09682020-06-03 18:20:17 +0200328 b0->total_length_not_including_first_buffer = 0;
Damjan Marion8389fb92017-10-13 18:29:53 +0200329 while (num_buffers > 1)
330 {
331 last++;
332 e = &vring->used->ring[last & mask];
333 u32 cbi = vring->buffers[e->id];
334 cb = vlib_get_buffer (vm, cbi);
335
336 /* current buffer */
Damjan Marion8389fb92017-10-13 18:29:53 +0200337 cb->current_length = e->len;
338
339 /* previous buffer */
340 pb->next_buffer = cbi;
341 pb->flags |= VLIB_BUFFER_NEXT_PRESENT;
342
343 /* first buffer */
344 b0->total_length_not_including_first_buffer += e->len;
345
346 pb = cb;
347 vring->desc_in_use--;
348 num_buffers--;
349 n_left--;
350 }
Mohsin Kazmi38b09682020-06-03 18:20:17 +0200351 len += b0->total_length_not_including_first_buffer;
Damjan Marion8389fb92017-10-13 18:29:53 +0200352 }
Mohsin Kazmi38b09682020-06-03 18:20:17 +0200353
354 if (type == VIRTIO_IF_TYPE_TUN)
Mohsin Kazmi206acf82020-04-06 14:19:54 +0200355 {
356 switch (b0->data[0] & 0xf0)
357 {
358 case 0x40:
359 next0 = VNET_DEVICE_INPUT_NEXT_IP4_INPUT;
360 break;
361 case 0x60:
362 next0 = VNET_DEVICE_INPUT_NEXT_IP6_INPUT;
363 break;
364 default:
365 next0 = VNET_DEVICE_INPUT_NEXT_DROP;
366 break;
367 }
368 }
369
Damjan Marion8389fb92017-10-13 18:29:53 +0200370 if (PREDICT_FALSE (vif->per_interface_next_index != ~0))
371 next0 = vif->per_interface_next_index;
Damjan Marion06c194d2019-11-13 10:12:53 +0100372
Mohsin Kazmi38b09682020-06-03 18:20:17 +0200373 if (type != VIRTIO_IF_TYPE_TUN)
374 {
375 /* only for l2, redirect if feature path enabled */
376 vnet_feature_start_device_input_x1 (vif->sw_if_index, &next0,
377 b0);
378 }
Damjan Marion06c194d2019-11-13 10:12:53 +0100379
Damjan Marion8389fb92017-10-13 18:29:53 +0200380 /* trace */
381 VLIB_BUFFER_TRACE_TRAJECTORY_INIT (b0);
382
383 if (PREDICT_FALSE (n_trace > 0))
384 {
385 virtio_input_trace_t *tr;
386 vlib_trace_buffer (vm, node, next0, b0,
Mohsin Kazmi5e1794d2019-06-19 20:25:37 +0200387 /* follow_chain */ 1);
Damjan Marion8389fb92017-10-13 18:29:53 +0200388 vlib_set_trace_count (vm, node, --n_trace);
389 tr = vlib_add_trace (vm, node, b0, sizeof (*tr));
390 tr->next_index = next0;
391 tr->hw_if_index = vif->hw_if_index;
Mohsin Kazmi38b09682020-06-03 18:20:17 +0200392 tr->len = len;
Dave Barach178cf492018-11-13 16:34:13 -0500393 clib_memcpy_fast (&tr->hdr, hdr, hdr_sz);
Damjan Marion8389fb92017-10-13 18:29:53 +0200394 }
395
396 /* enqueue buffer */
397 to_next[0] = bi0;
398 vring->desc_in_use--;
399 to_next += 1;
400 n_left_to_next--;
401 n_left--;
402 last++;
403
404 /* enqueue */
405 vlib_validate_buffer_enqueue_x1 (vm, node, next_index, to_next,
406 n_left_to_next, bi0, next0);
407
408 /* next packet */
409 n_rx_packets++;
Mohsin Kazmi38b09682020-06-03 18:20:17 +0200410 n_rx_bytes += len;
Damjan Marion8389fb92017-10-13 18:29:53 +0200411 }
412 vlib_put_next_frame (vm, node, next_index, n_left_to_next);
413 }
414 vring->last_used_idx = last;
415
416 vlib_increment_combined_counter (vnm->interface_main.combined_sw_if_counters
417 + VNET_INTERFACE_COUNTER_RX, thread_index,
Steven Luongefa119d2019-08-30 10:49:44 -0700418 vif->sw_if_index, n_rx_packets,
Damjan Marion8389fb92017-10-13 18:29:53 +0200419 n_rx_bytes);
420
421refill:
Mohsin Kazmi543ed862020-07-22 17:15:10 +0200422 virtio_refill_vring (vm, vif, type, vring, hdr_sz, node->node_index);
Damjan Marion8389fb92017-10-13 18:29:53 +0200423
424 return n_rx_packets;
425}
426
Mohsin Kazmi38b09682020-06-03 18:20:17 +0200427static_always_inline uword
428virtio_device_input_inline (vlib_main_t * vm, vlib_node_runtime_t * node,
429 vlib_frame_t * frame, virtio_if_t * vif, u16 qid,
430 virtio_if_type_t type)
431{
432
433 if (vif->gso_enabled)
434 return virtio_device_input_gso_inline (vm, node, frame, vif,
435 qid, type, 1, 1);
436 else if (vif->csum_offload_enabled)
437 return virtio_device_input_gso_inline (vm, node, frame, vif,
438 qid, type, 0, 1);
439 else
440 return virtio_device_input_gso_inline (vm, node, frame, vif,
441 qid, type, 0, 0);
442 return 0;
443}
444
Filip Tehlar608996d2019-03-04 03:03:13 -0800445VLIB_NODE_FN (virtio_input_node) (vlib_main_t * vm,
446 vlib_node_runtime_t * node,
447 vlib_frame_t * frame)
Damjan Marion8389fb92017-10-13 18:29:53 +0200448{
449 u32 n_rx = 0;
450 virtio_main_t *nm = &virtio_main;
451 vnet_device_input_runtime_t *rt = (void *) node->runtime_data;
452 vnet_device_and_queue_t *dq;
453
454 foreach_device_and_queue (dq, rt->devices_and_queues)
455 {
Mohsin Kazmi09a3bc52019-04-02 11:45:08 +0000456 virtio_if_t *vif;
457 vif = vec_elt_at_index (nm->interfaces, dq->dev_instance);
458 if (vif->flags & VIRTIO_IF_FLAG_ADMIN_UP)
Damjan Marion8389fb92017-10-13 18:29:53 +0200459 {
Mohsin Kazmi38b09682020-06-03 18:20:17 +0200460 if (vif->type == VIRTIO_IF_TYPE_TAP)
Mohsin Kazmi09a3bc52019-04-02 11:45:08 +0000461 n_rx += virtio_device_input_inline (vm, node, frame, vif,
Mohsin Kazmi38b09682020-06-03 18:20:17 +0200462 dq->queue_id,
463 VIRTIO_IF_TYPE_TAP);
464 else if (vif->type == VIRTIO_IF_TYPE_PCI)
Mohsin Kazmi6d4af892020-01-03 15:11:53 +0000465 n_rx += virtio_device_input_inline (vm, node, frame, vif,
Mohsin Kazmi38b09682020-06-03 18:20:17 +0200466 dq->queue_id,
467 VIRTIO_IF_TYPE_PCI);
468 else if (vif->type == VIRTIO_IF_TYPE_TUN)
Mohsin Kazmi09a3bc52019-04-02 11:45:08 +0000469 n_rx += virtio_device_input_inline (vm, node, frame, vif,
Mohsin Kazmi38b09682020-06-03 18:20:17 +0200470 dq->queue_id,
471 VIRTIO_IF_TYPE_TUN);
Damjan Marion8389fb92017-10-13 18:29:53 +0200472 }
473 }
474
475 return n_rx;
476}
477
478/* *INDENT-OFF* */
479VLIB_REGISTER_NODE (virtio_input_node) = {
Damjan Marion8389fb92017-10-13 18:29:53 +0200480 .name = "virtio-input",
481 .sibling_of = "device-input",
482 .format_trace = format_virtio_input_trace,
Damjan Marion7ca5aaa2019-09-24 18:10:49 +0200483 .flags = VLIB_NODE_FLAG_TRACE_SUPPORTED,
Damjan Marion8389fb92017-10-13 18:29:53 +0200484 .type = VLIB_NODE_TYPE_INPUT,
485 .state = VLIB_NODE_STATE_INTERRUPT,
Mohsin Kazmiddd21832019-01-22 13:05:00 +0000486 .n_errors = VIRTIO_INPUT_N_ERROR,
Damjan Marion8389fb92017-10-13 18:29:53 +0200487 .error_strings = virtio_input_error_strings,
488};
Damjan Marion8389fb92017-10-13 18:29:53 +0200489/* *INDENT-ON* */
490
491/*
492 * fd.io coding-style-patch-verification: ON
493 *
494 * Local Variables:
495 * eval: (c-set-style "gnu")
496 * End:
497 */