blob: 027e1ed4e74220dae28ebc70034f73d59ebd9f2d [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>
Tom Jones61b4efc2024-01-30 09:06:47 +000022#ifdef __linux__
Damjan Marion8389fb92017-10-13 18:29:53 +020023#include <linux/if_tun.h>
Tom Jones61b4efc2024-01-30 09:06:47 +000024#elif __FreeBSD__
25#include <net/if_tun.h>
26#endif /* __linux */
Damjan Marion8389fb92017-10-13 18:29:53 +020027#include <sys/ioctl.h>
Damjan Marion8389fb92017-10-13 18:29:53 +020028#include <sys/eventfd.h>
29
30#include <vlib/vlib.h>
31#include <vlib/unix/unix.h>
32#include <vnet/ethernet/ethernet.h>
Damjan Marion8389fb92017-10-13 18:29:53 +020033#include <vnet/feature/feature.h>
Damjan Marion94100532020-11-06 23:25:57 +010034#include <vnet/interface/rx_queue_funcs.h>
Milan Lenco73e7f422017-12-14 10:04:25 +010035#include <vnet/ip/ip4_packet.h>
36#include <vnet/ip/ip6_packet.h>
Andrew Yourtchenko6a7cff72018-10-12 16:09:22 +020037#include <vnet/udp/udp_packet.h>
Neale Rannsf7040f02022-02-15 09:02:27 +000038#include <vnet/tcp/tcp_packet.h>
Damjan Marion8389fb92017-10-13 18:29:53 +020039#include <vnet/devices/virtio/virtio.h>
Mohsin Kazmi6799f9b2021-04-28 18:55:45 +020040#include <vnet/devices/virtio/virtio_inline.h>
Damjan Marion8389fb92017-10-13 18:29:53 +020041
42static char *virtio_input_error_strings[] = {
Mohsin Kazmi6799f9b2021-04-28 18:55:45 +020043#define _(n, s) s,
Damjan Marion8389fb92017-10-13 18:29:53 +020044 foreach_virtio_input_error
45#undef _
46};
47
48typedef struct
49{
50 u32 next_index;
51 u32 hw_if_index;
52 u16 ring;
53 u16 len;
Mohsin Kazmi0f8912f2022-02-01 18:35:59 +000054 vnet_virtio_net_hdr_v1_t hdr;
Damjan Marion8389fb92017-10-13 18:29:53 +020055} virtio_input_trace_t;
56
57static u8 *
58format_virtio_input_trace (u8 * s, va_list * args)
59{
60 CLIB_UNUSED (vlib_main_t * vm) = va_arg (*args, vlib_main_t *);
61 CLIB_UNUSED (vlib_node_t * node) = va_arg (*args, vlib_node_t *);
62 virtio_input_trace_t *t = va_arg (*args, virtio_input_trace_t *);
63 u32 indent = format_get_indent (s);
64
65 s = format (s, "virtio: hw_if_index %d next-index %d vring %u len %u",
66 t->hw_if_index, t->next_index, t->ring, t->len);
67 s = format (s, "\n%Uhdr: flags 0x%02x gso_type 0x%02x hdr_len %u "
68 "gso_size %u csum_start %u csum_offset %u num_buffers %u",
69 format_white_space, indent + 2,
70 t->hdr.flags, t->hdr.gso_type, t->hdr.hdr_len, t->hdr.gso_size,
71 t->hdr.csum_start, t->hdr.csum_offset, t->hdr.num_buffers);
72 return s;
73}
74
75static_always_inline void
Mohsin Kazmi0f8912f2022-02-01 18:35:59 +000076virtio_needs_csum (vlib_buffer_t *b0, vnet_virtio_net_hdr_v1_t *hdr,
77 u8 *l4_proto, u8 *l4_hdr_sz, virtio_if_type_t type)
Andrew Yourtchenko6a7cff72018-10-12 16:09:22 +020078{
Andrew Yourtchenko6a7cff72018-10-12 16:09:22 +020079 if (hdr->flags & VIRTIO_NET_HDR_F_NEEDS_CSUM)
Andrew Yourtchenko6a7cff72018-10-12 16:09:22 +020080 {
Mohsin Kazmi206acf82020-04-06 14:19:54 +020081 u16 ethertype = 0, l2hdr_sz = 0;
Mohsin Kazmi36f7a6a2021-05-05 14:26:38 +020082 vnet_buffer_oflags_t oflags = 0;
Mohsin Kazmi38b09682020-06-03 18:20:17 +020083
84 if (type == VIRTIO_IF_TYPE_TUN)
85 {
86 switch (b0->data[0] & 0xf0)
87 {
88 case 0x40:
89 ethertype = ETHERNET_TYPE_IP4;
90 break;
91 case 0x60:
92 ethertype = ETHERNET_TYPE_IP6;
93 break;
94 }
95 }
96 else
Mohsin Kazmi14bea1b2019-07-29 11:39:26 +020097 {
Mohsin Kazmi096c8cc2022-05-18 16:51:57 +000098 ethernet_header_t *eh = (ethernet_header_t *) b0->data;
Mohsin Kazmi206acf82020-04-06 14:19:54 +020099 ethertype = clib_net_to_host_u16 (eh->type);
100 l2hdr_sz = sizeof (ethernet_header_t);
Mohsin Kazmi14bea1b2019-07-29 11:39:26 +0200101
Mohsin Kazmi206acf82020-04-06 14:19:54 +0200102 if (ethernet_frame_is_tagged (ethertype))
Mohsin Kazmi14bea1b2019-07-29 11:39:26 +0200103 {
Mohsin Kazmi206acf82020-04-06 14:19:54 +0200104 ethernet_vlan_header_t *vlan =
105 (ethernet_vlan_header_t *) (eh + 1);
106
Mohsin Kazmi14bea1b2019-07-29 11:39:26 +0200107 ethertype = clib_net_to_host_u16 (vlan->type);
108 l2hdr_sz += sizeof (*vlan);
Mohsin Kazmi206acf82020-04-06 14:19:54 +0200109 if (ethertype == ETHERNET_TYPE_VLAN)
110 {
111 vlan++;
112 ethertype = clib_net_to_host_u16 (vlan->type);
113 l2hdr_sz += sizeof (*vlan);
114 }
115 }
116 }
Mohsin Kazmi14bea1b2019-07-29 11:39:26 +0200117
Mohsin Kazmi157a4ab2019-12-06 15:47:48 +0100118 vnet_buffer (b0)->l2_hdr_offset = 0;
119 vnet_buffer (b0)->l3_hdr_offset = l2hdr_sz;
Mohsin Kazmi38b09682020-06-03 18:20:17 +0200120
Andrew Yourtchenko6a7cff72018-10-12 16:09:22 +0200121 if (PREDICT_TRUE (ethertype == ETHERNET_TYPE_IP4))
122 {
Mohsin Kazmi096c8cc2022-05-18 16:51:57 +0000123 ip4_header_t *ip4 = (ip4_header_t *) (b0->data + l2hdr_sz);
Mohsin Kazmi157a4ab2019-12-06 15:47:48 +0100124 vnet_buffer (b0)->l4_hdr_offset = l2hdr_sz + ip4_header_bytes (ip4);
Benoît Ganne15d7fd02019-11-26 17:59:41 +0100125 *l4_proto = ip4->protocol;
Mohsin Kazmi68095382021-02-10 11:26:24 +0100126 oflags |= VNET_BUFFER_OFFLOAD_F_IP_CKSUM;
Andrew Yourtchenko6a7cff72018-10-12 16:09:22 +0200127 b0->flags |=
Mohsin Kazmi68095382021-02-10 11:26:24 +0100128 (VNET_BUFFER_F_IS_IP4 | VNET_BUFFER_F_L2_HDR_OFFSET_VALID |
129 VNET_BUFFER_F_L3_HDR_OFFSET_VALID |
Mohsin Kazmi157a4ab2019-12-06 15:47:48 +0100130 VNET_BUFFER_F_L4_HDR_OFFSET_VALID);
Andrew Yourtchenko6a7cff72018-10-12 16:09:22 +0200131 }
132 else if (PREDICT_TRUE (ethertype == ETHERNET_TYPE_IP6))
133 {
Mohsin Kazmi096c8cc2022-05-18 16:51:57 +0000134 ip6_header_t *ip6 = (ip6_header_t *) (b0->data + l2hdr_sz);
Mohsin Kazmi157a4ab2019-12-06 15:47:48 +0100135 vnet_buffer (b0)->l4_hdr_offset = l2hdr_sz + sizeof (ip6_header_t);
Andrew Yourtchenko6a7cff72018-10-12 16:09:22 +0200136 /* FIXME IPv6 EH traversal */
Benoît Ganne15d7fd02019-11-26 17:59:41 +0100137 *l4_proto = ip6->protocol;
Mohsin Kazmi157a4ab2019-12-06 15:47:48 +0100138 b0->flags |= (VNET_BUFFER_F_IS_IP6 |
139 VNET_BUFFER_F_L2_HDR_OFFSET_VALID
140 | VNET_BUFFER_F_L3_HDR_OFFSET_VALID |
141 VNET_BUFFER_F_L4_HDR_OFFSET_VALID);
Andrew Yourtchenko6a7cff72018-10-12 16:09:22 +0200142 }
Benoît Ganne15d7fd02019-11-26 17:59:41 +0100143 if (*l4_proto == IP_PROTOCOL_TCP)
Andrew Yourtchenko6a7cff72018-10-12 16:09:22 +0200144 {
Mohsin Kazmi68095382021-02-10 11:26:24 +0100145 oflags |= VNET_BUFFER_OFFLOAD_F_TCP_CKSUM;
Mohsin Kazmi096c8cc2022-05-18 16:51:57 +0000146 tcp_header_t *tcp =
147 (tcp_header_t *) (b0->data + vnet_buffer (b0)->l4_hdr_offset);
Benoît Ganne15d7fd02019-11-26 17:59:41 +0100148 *l4_hdr_sz = tcp_header_bytes (tcp);
Andrew Yourtchenko6a7cff72018-10-12 16:09:22 +0200149 }
Benoît Ganne15d7fd02019-11-26 17:59:41 +0100150 else if (*l4_proto == IP_PROTOCOL_UDP)
Andrew Yourtchenko6a7cff72018-10-12 16:09:22 +0200151 {
Mohsin Kazmi68095382021-02-10 11:26:24 +0100152 oflags |= VNET_BUFFER_OFFLOAD_F_UDP_CKSUM;
Mohsin Kazmi096c8cc2022-05-18 16:51:57 +0000153 *l4_hdr_sz = sizeof (udp_header_t);
Andrew Yourtchenko6a7cff72018-10-12 16:09:22 +0200154 }
Mohsin Kazmi68095382021-02-10 11:26:24 +0100155 if (oflags)
156 vnet_buffer_offload_flags_set (b0, oflags);
Andrew Yourtchenko6a7cff72018-10-12 16:09:22 +0200157 }
Benoît Ganne15d7fd02019-11-26 17:59:41 +0100158}
159
160static_always_inline void
Mohsin Kazmi0f8912f2022-02-01 18:35:59 +0000161fill_gso_buffer_flags (vlib_buffer_t *b0, vnet_virtio_net_hdr_v1_t *hdr,
Benoît Ganne15d7fd02019-11-26 17:59:41 +0100162 u8 l4_proto, u8 l4_hdr_sz)
163{
Andrew Yourtchenko6a7cff72018-10-12 16:09:22 +0200164 if (hdr->gso_type == VIRTIO_NET_HDR_GSO_TCPV4)
165 {
166 ASSERT (hdr->flags & VIRTIO_NET_HDR_F_NEEDS_CSUM);
167 vnet_buffer2 (b0)->gso_size = hdr->gso_size;
Mohsin Kazmi157a4ab2019-12-06 15:47:48 +0100168 vnet_buffer2 (b0)->gso_l4_hdr_sz = l4_hdr_sz;
Mohsin Kazmi72e73122019-10-22 13:33:13 +0200169 b0->flags |= VNET_BUFFER_F_GSO | VNET_BUFFER_F_IS_IP4;
Andrew Yourtchenko6a7cff72018-10-12 16:09:22 +0200170 }
171 if (hdr->gso_type == VIRTIO_NET_HDR_GSO_TCPV6)
172 {
173 ASSERT (hdr->flags & VIRTIO_NET_HDR_F_NEEDS_CSUM);
174 vnet_buffer2 (b0)->gso_size = hdr->gso_size;
Mohsin Kazmi157a4ab2019-12-06 15:47:48 +0100175 vnet_buffer2 (b0)->gso_l4_hdr_sz = l4_hdr_sz;
Mohsin Kazmi72e73122019-10-22 13:33:13 +0200176 b0->flags |= VNET_BUFFER_F_GSO | VNET_BUFFER_F_IS_IP6;
Andrew Yourtchenko6a7cff72018-10-12 16:09:22 +0200177 }
178}
179
Mohsin Kazmib977d3f2020-11-16 16:49:30 +0100180static_always_inline u16
Mohsin Kazmi0f8912f2022-02-01 18:35:59 +0000181virtio_n_left_to_process (vnet_virtio_vring_t *vring, const int packed)
Mohsin Kazmib977d3f2020-11-16 16:49:30 +0100182{
183 if (packed)
184 return vring->desc_in_use;
185 else
186 return vring->used->idx - vring->last_used_idx;
187}
188
189static_always_inline u16
Mohsin Kazmi0f8912f2022-02-01 18:35:59 +0000190virtio_get_slot_id (vnet_virtio_vring_t *vring, const int packed, u16 last,
Mohsin Kazmib977d3f2020-11-16 16:49:30 +0100191 u16 mask)
192{
193 if (packed)
194 return vring->packed_desc[last].id;
195 else
196 return vring->used->ring[last & mask].id;
197}
198
199static_always_inline u16
Mohsin Kazmi0f8912f2022-02-01 18:35:59 +0000200virtio_get_len (vnet_virtio_vring_t *vring, const int packed, const int hdr_sz,
Mohsin Kazmib977d3f2020-11-16 16:49:30 +0100201 u16 last, u16 mask)
202{
203 if (packed)
204 return vring->packed_desc[last].len - hdr_sz;
205 else
206 return vring->used->ring[last & mask].len - hdr_sz;
207}
208
Mohsin Kazmi84847c42024-02-16 17:30:41 +0000209#define virtio_packed_check_n_left(vring, last) \
210 do \
211 { \
212 vnet_virtio_vring_packed_desc_t *d = &vring->packed_desc[last]; \
213 u16 flags = d->flags; \
214 if ((flags & VRING_DESC_F_AVAIL) != (vring->used_wrap_counter << 7) || \
215 (flags & VRING_DESC_F_USED) != (vring->used_wrap_counter << 15)) \
216 { \
217 n_left = 0; \
218 } \
219 } \
220 while (0)
221
Mohsin Kazmi0f8912f2022-02-01 18:35:59 +0000222#define increment_last(last, packed, vring) \
223 do \
224 { \
225 last++; \
226 if (packed && last >= vring->queue_size) \
227 { \
228 last = 0; \
229 vring->used_wrap_counter ^= 1; \
230 } \
231 } \
232 while (0)
Mohsin Kazmib977d3f2020-11-16 16:49:30 +0100233
Stanislav Zaikin5fe1cf82022-05-05 12:04:39 +0200234static_always_inline void
235virtio_device_input_ethernet (vlib_main_t *vm, vlib_node_runtime_t *node,
236 const u32 next_index, const u32 sw_if_index,
237 const u32 hw_if_index)
238{
239 vlib_next_frame_t *nf;
240 vlib_frame_t *f;
241 ethernet_input_frame_t *ef;
242
243 if (PREDICT_FALSE (VNET_DEVICE_INPUT_NEXT_ETHERNET_INPUT != next_index))
244 return;
245
246 nf = vlib_node_runtime_get_next_frame (
247 vm, node, VNET_DEVICE_INPUT_NEXT_ETHERNET_INPUT);
248 f = vlib_get_frame (vm, nf->frame);
249 f->flags = ETH_INPUT_FRAME_F_SINGLE_SW_IF_IDX;
250
251 ef = vlib_frame_scalar_args (f);
252 ef->sw_if_index = sw_if_index;
253 ef->hw_if_index = hw_if_index;
254 vlib_frame_no_append (f);
255}
256
Damjan Marion8389fb92017-10-13 18:29:53 +0200257static_always_inline uword
Mohsin Kazmi0f8912f2022-02-01 18:35:59 +0000258virtio_device_input_gso_inline (vlib_main_t *vm, vlib_node_runtime_t *node,
259 vlib_frame_t *frame, virtio_if_t *vif,
260 vnet_virtio_vring_t *vring,
261 virtio_if_type_t type, int gso_enabled,
262 int checksum_offload_enabled, int packed)
Damjan Marion8389fb92017-10-13 18:29:53 +0200263{
264 vnet_main_t *vnm = vnet_get_main ();
Damjan Marion067cd622018-07-11 12:47:43 +0200265 u32 thread_index = vm->thread_index;
Damjan Marion8389fb92017-10-13 18:29:53 +0200266 uword n_trace = vlib_get_trace_count (vm, node);
Damjan Mariond96b28a2020-10-19 17:15:58 +0200267 u32 next_index;
Mohsin Kazmid6c15af2018-10-23 18:00:47 +0200268 const int hdr_sz = vif->virtio_net_hdr_sz;
Damjan Marion8389fb92017-10-13 18:29:53 +0200269 u32 *to_next = 0;
270 u32 n_rx_packets = 0;
271 u32 n_rx_bytes = 0;
Mohsin Kazmi0f8912f2022-02-01 18:35:59 +0000272 u16 mask = vring->queue_size - 1;
Damjan Marion8389fb92017-10-13 18:29:53 +0200273 u16 last = vring->last_used_idx;
Mohsin Kazmib977d3f2020-11-16 16:49:30 +0100274 u16 n_left = virtio_n_left_to_process (vring, packed);
Mohsin Kazmi62594062021-11-05 16:13:57 +0000275 vlib_buffer_t bt = {};
Damjan Marion8389fb92017-10-13 18:29:53 +0200276
Mohsin Kazmi84847c42024-02-16 17:30:41 +0000277 if (packed)
278 {
279 virtio_packed_check_n_left (vring, last);
280 }
281
Damjan Marion8389fb92017-10-13 18:29:53 +0200282 if (n_left == 0)
Damjan Marion4769ed92020-10-18 14:00:43 +0200283 return 0;
Damjan Marion8389fb92017-10-13 18:29:53 +0200284
Steven Luong1b053782024-03-20 12:28:49 -0700285 if (PREDICT_FALSE (n_left == vring->queue_size))
286 {
287 /*
288 * Informational error logging when VPP is not pulling packets fast
289 * enough.
290 */
291 vlib_error_count (vm, node->node_index, VIRTIO_INPUT_ERROR_FULL_RX_QUEUE,
292 1);
293 }
294
Mohsin Kazmi38b09682020-06-03 18:20:17 +0200295 if (type == VIRTIO_IF_TYPE_TUN)
Damjan Mariond96b28a2020-10-19 17:15:58 +0200296 {
297 next_index = VNET_DEVICE_INPUT_NEXT_IP4_INPUT;
298 }
299 else
300 {
301 next_index = VNET_DEVICE_INPUT_NEXT_ETHERNET_INPUT;
302 if (PREDICT_FALSE (vif->per_interface_next_index != ~0))
303 next_index = vif->per_interface_next_index;
304
305 /* only for l2, redirect if feature path enabled */
Damjan Mariond0ffa262023-10-14 08:41:54 +0000306 vnet_feature_start_device_input (vif->sw_if_index, &next_index, &bt);
Damjan Mariond96b28a2020-10-19 17:15:58 +0200307 }
Mohsin Kazmi38b09682020-06-03 18:20:17 +0200308
Damjan Marion8389fb92017-10-13 18:29:53 +0200309 while (n_left)
310 {
311 u32 n_left_to_next;
312 u32 next0 = next_index;
Mohsin Kazmi38b09682020-06-03 18:20:17 +0200313
Stanislav Zaikin5fe1cf82022-05-05 12:04:39 +0200314 vlib_get_new_next_frame (vm, node, next_index, to_next, n_left_to_next);
Damjan Marion8389fb92017-10-13 18:29:53 +0200315
316 while (n_left && n_left_to_next)
317 {
Mohsin Kazmib977d3f2020-11-16 16:49:30 +0100318 if (packed)
319 {
Mohsin Kazmi0f8912f2022-02-01 18:35:59 +0000320 vnet_virtio_vring_packed_desc_t *d = &vring->packed_desc[last];
Mohsin Kazmib977d3f2020-11-16 16:49:30 +0100321 u16 flags = d->flags;
322 if ((flags & VRING_DESC_F_AVAIL) !=
323 (vring->used_wrap_counter << 7)
324 || (flags & VRING_DESC_F_USED) !=
325 (vring->used_wrap_counter << 15))
326 {
327 n_left = 0;
328 break;
329 }
330 }
Mohsin Kazmi516e4ed2020-02-24 15:54:24 +0100331 u8 l4_proto = 0, l4_hdr_sz = 0;
Mohsin Kazmid6c15af2018-10-23 18:00:47 +0200332 u16 num_buffers = 1;
Mohsin Kazmi0f8912f2022-02-01 18:35:59 +0000333 vnet_virtio_net_hdr_v1_t *hdr;
Mohsin Kazmib977d3f2020-11-16 16:49:30 +0100334 u16 slot = virtio_get_slot_id (vring, packed, last, mask);
335 u16 len = virtio_get_len (vring, packed, hdr_sz, last, mask);
Damjan Marion8389fb92017-10-13 18:29:53 +0200336 u32 bi0 = vring->buffers[slot];
337 vlib_buffer_t *b0 = vlib_get_buffer (vm, bi0);
Mohsin Kazmid6c15af2018-10-23 18:00:47 +0200338 hdr = vlib_buffer_get_current (b0);
Mohsin Kazmi0f8912f2022-02-01 18:35:59 +0000339 if (hdr_sz == sizeof (vnet_virtio_net_hdr_v1_t))
Mohsin Kazmid6c15af2018-10-23 18:00:47 +0200340 num_buffers = hdr->num_buffers;
Damjan Marion8389fb92017-10-13 18:29:53 +0200341
Mohsin Kazmi8975dbd2020-06-24 16:19:19 +0200342 b0->flags = VLIB_BUFFER_TOTAL_LENGTH_VALID;
Mohsin Kazmi38b09682020-06-03 18:20:17 +0200343 b0->current_data = 0;
Damjan Marion8389fb92017-10-13 18:29:53 +0200344 b0->current_length = len;
Andrew Yourtchenko6a7cff72018-10-12 16:09:22 +0200345
Mohsin Kazmi6d4af892020-01-03 15:11:53 +0000346 if (checksum_offload_enabled)
Mohsin Kazmi38b09682020-06-03 18:20:17 +0200347 virtio_needs_csum (b0, hdr, &l4_proto, &l4_hdr_sz, type);
Benoît Ganne15d7fd02019-11-26 17:59:41 +0100348
Andrew Yourtchenko6a7cff72018-10-12 16:09:22 +0200349 if (gso_enabled)
Benoît Ganne15d7fd02019-11-26 17:59:41 +0100350 fill_gso_buffer_flags (b0, hdr, l4_proto, l4_hdr_sz);
Andrew Yourtchenko6a7cff72018-10-12 16:09:22 +0200351
Damjan Marion8389fb92017-10-13 18:29:53 +0200352 vnet_buffer (b0)->sw_if_index[VLIB_RX] = vif->sw_if_index;
353 vnet_buffer (b0)->sw_if_index[VLIB_TX] = (u32) ~ 0;
354
355 /* if multisegment packet */
356 if (PREDICT_FALSE (num_buffers > 1))
357 {
358 vlib_buffer_t *pb, *cb;
359 pb = b0;
Mohsin Kazmi38b09682020-06-03 18:20:17 +0200360 b0->total_length_not_including_first_buffer = 0;
Damjan Marion8389fb92017-10-13 18:29:53 +0200361 while (num_buffers > 1)
362 {
Mohsin Kazmib977d3f2020-11-16 16:49:30 +0100363 increment_last (last, packed, vring);
364 u16 cslot = virtio_get_slot_id (vring, packed, last, mask);
Mohsin Kazmia17381a2020-12-03 11:35:23 +0100365 /* hdr size is 0 after 1st packet in chain buffers */
366 u16 clen = virtio_get_len (vring, packed, 0, last, mask);
Mohsin Kazmib977d3f2020-11-16 16:49:30 +0100367 u32 cbi = vring->buffers[cslot];
Damjan Marion8389fb92017-10-13 18:29:53 +0200368 cb = vlib_get_buffer (vm, cbi);
369
370 /* current buffer */
Mohsin Kazmib977d3f2020-11-16 16:49:30 +0100371 cb->current_length = clen;
Damjan Marion8389fb92017-10-13 18:29:53 +0200372
373 /* previous buffer */
374 pb->next_buffer = cbi;
375 pb->flags |= VLIB_BUFFER_NEXT_PRESENT;
376
377 /* first buffer */
Mohsin Kazmib977d3f2020-11-16 16:49:30 +0100378 b0->total_length_not_including_first_buffer += clen;
Damjan Marion8389fb92017-10-13 18:29:53 +0200379
380 pb = cb;
381 vring->desc_in_use--;
382 num_buffers--;
383 n_left--;
384 }
Mohsin Kazmi38b09682020-06-03 18:20:17 +0200385 len += b0->total_length_not_including_first_buffer;
Damjan Marion8389fb92017-10-13 18:29:53 +0200386 }
Mohsin Kazmi38b09682020-06-03 18:20:17 +0200387
388 if (type == VIRTIO_IF_TYPE_TUN)
Mohsin Kazmi206acf82020-04-06 14:19:54 +0200389 {
390 switch (b0->data[0] & 0xf0)
391 {
392 case 0x40:
393 next0 = VNET_DEVICE_INPUT_NEXT_IP4_INPUT;
394 break;
395 case 0x60:
396 next0 = VNET_DEVICE_INPUT_NEXT_IP6_INPUT;
397 break;
398 default:
399 next0 = VNET_DEVICE_INPUT_NEXT_DROP;
400 break;
401 }
Damjan Mariond96b28a2020-10-19 17:15:58 +0200402
403 if (PREDICT_FALSE (vif->per_interface_next_index != ~0))
404 next0 = vif->per_interface_next_index;
Mohsin Kazmi206acf82020-04-06 14:19:54 +0200405 }
Damjan Mariond96b28a2020-10-19 17:15:58 +0200406 else
Mohsin Kazmi38b09682020-06-03 18:20:17 +0200407 {
Damjan Mariond96b28a2020-10-19 17:15:58 +0200408 /* copy feature arc data from template */
409 b0->current_config_index = bt.current_config_index;
410 vnet_buffer (b0)->feature_arc_index =
411 vnet_buffer (&bt)->feature_arc_index;
Mohsin Kazmi38b09682020-06-03 18:20:17 +0200412 }
Damjan Marion06c194d2019-11-13 10:12:53 +0100413
Damjan Marion8389fb92017-10-13 18:29:53 +0200414 /* trace */
Benoît Ganne9a3973e2020-10-02 19:36:57 +0200415 if (PREDICT_FALSE (n_trace > 0 && vlib_trace_buffer (vm, node, next0, b0, /* follow_chain */
416 1)))
Damjan Marion8389fb92017-10-13 18:29:53 +0200417 {
418 virtio_input_trace_t *tr;
Damjan Marion8389fb92017-10-13 18:29:53 +0200419 vlib_set_trace_count (vm, node, --n_trace);
420 tr = vlib_add_trace (vm, node, b0, sizeof (*tr));
421 tr->next_index = next0;
422 tr->hw_if_index = vif->hw_if_index;
Mohsin Kazmi38b09682020-06-03 18:20:17 +0200423 tr->len = len;
Mohsin Kazmi049a2ea2021-11-11 19:17:27 +0100424 clib_memcpy_fast (&tr->hdr, hdr, (hdr_sz == 12) ? 12 : 10);
Damjan Marion8389fb92017-10-13 18:29:53 +0200425 }
426
427 /* enqueue buffer */
428 to_next[0] = bi0;
429 vring->desc_in_use--;
430 to_next += 1;
431 n_left_to_next--;
432 n_left--;
Mohsin Kazmib977d3f2020-11-16 16:49:30 +0100433 increment_last (last, packed, vring);
Damjan Marion8389fb92017-10-13 18:29:53 +0200434
Damjan Mariond96b28a2020-10-19 17:15:58 +0200435 /* only tun interfaces may have different next index */
436 if (type == VIRTIO_IF_TYPE_TUN)
437 vlib_validate_buffer_enqueue_x1 (vm, node, next_index, to_next,
438 n_left_to_next, bi0, next0);
Damjan Marion8389fb92017-10-13 18:29:53 +0200439
440 /* next packet */
441 n_rx_packets++;
Mohsin Kazmi38b09682020-06-03 18:20:17 +0200442 n_rx_bytes += len;
Damjan Marion8389fb92017-10-13 18:29:53 +0200443 }
Stanislav Zaikin5fe1cf82022-05-05 12:04:39 +0200444 virtio_device_input_ethernet (vm, node, next_index, vif->sw_if_index,
445 vif->hw_if_index);
Damjan Marion8389fb92017-10-13 18:29:53 +0200446 vlib_put_next_frame (vm, node, next_index, n_left_to_next);
447 }
448 vring->last_used_idx = last;
449
Mohsin Kazmidd0144a2022-09-14 11:25:54 +0000450 vring->total_packets += n_rx_packets;
Damjan Marion8389fb92017-10-13 18:29:53 +0200451 vlib_increment_combined_counter (vnm->interface_main.combined_sw_if_counters
452 + VNET_INTERFACE_COUNTER_RX, thread_index,
Steven Luongefa119d2019-08-30 10:49:44 -0700453 vif->sw_if_index, n_rx_packets,
Damjan Marion8389fb92017-10-13 18:29:53 +0200454 n_rx_bytes);
455
Damjan Marion8389fb92017-10-13 18:29:53 +0200456 return n_rx_packets;
457}
458
Mohsin Kazmi38b09682020-06-03 18:20:17 +0200459static_always_inline uword
460virtio_device_input_inline (vlib_main_t * vm, vlib_node_runtime_t * node,
461 vlib_frame_t * frame, virtio_if_t * vif, u16 qid,
462 virtio_if_type_t type)
463{
Mohsin Kazmi0f8912f2022-02-01 18:35:59 +0000464 vnet_virtio_vring_t *vring = vec_elt_at_index (vif->rxq_vrings, qid);
Damjan Marion4769ed92020-10-18 14:00:43 +0200465 const int hdr_sz = vif->virtio_net_hdr_sz;
Damjan Marion4769ed92020-10-18 14:00:43 +0200466 uword rv;
467
Mohsin Kazmib977d3f2020-11-16 16:49:30 +0100468 if (vif->is_packed)
469 {
Mohsin Kazmib977d3f2020-11-16 16:49:30 +0100470 if (vif->gso_enabled)
471 rv =
472 virtio_device_input_gso_inline (vm, node, frame, vif, vring, type,
473 1, 1, 1);
474 else if (vif->csum_offload_enabled)
475 rv =
476 virtio_device_input_gso_inline (vm, node, frame, vif, vring, type,
477 0, 1, 1);
478 else
479 rv =
480 virtio_device_input_gso_inline (vm, node, frame, vif, vring, type,
481 0, 0, 1);
482
483 virtio_refill_vring_packed (vm, vif, type, vring, hdr_sz,
484 node->node_index);
485 }
Mohsin Kazmi38b09682020-06-03 18:20:17 +0200486 else
Mohsin Kazmib977d3f2020-11-16 16:49:30 +0100487 {
Mohsin Kazmib977d3f2020-11-16 16:49:30 +0100488 if (vif->gso_enabled)
489 rv =
490 virtio_device_input_gso_inline (vm, node, frame, vif, vring, type,
491 1, 1, 0);
492 else if (vif->csum_offload_enabled)
493 rv =
494 virtio_device_input_gso_inline (vm, node, frame, vif, vring, type,
495 0, 1, 0);
496 else
497 rv =
498 virtio_device_input_gso_inline (vm, node, frame, vif, vring, type,
499 0, 0, 0);
500
501 virtio_refill_vring_split (vm, vif, type, vring, hdr_sz,
502 node->node_index);
503 }
Damjan Marion4769ed92020-10-18 14:00:43 +0200504 return rv;
Mohsin Kazmi38b09682020-06-03 18:20:17 +0200505}
506
Filip Tehlar608996d2019-03-04 03:03:13 -0800507VLIB_NODE_FN (virtio_input_node) (vlib_main_t * vm,
508 vlib_node_runtime_t * node,
509 vlib_frame_t * frame)
Damjan Marion8389fb92017-10-13 18:29:53 +0200510{
511 u32 n_rx = 0;
Damjan Marion94100532020-11-06 23:25:57 +0100512 virtio_main_t *vim = &virtio_main;
513 vnet_hw_if_rxq_poll_vector_t *p,
514 *pv = vnet_hw_if_get_rxq_poll_vector (vm, node);
Damjan Marion8389fb92017-10-13 18:29:53 +0200515
Damjan Marion94100532020-11-06 23:25:57 +0100516 vec_foreach (p, pv)
517 {
518 virtio_if_t *vif;
519 vif = vec_elt_at_index (vim->interfaces, p->dev_instance);
520 if (vif->flags & VIRTIO_IF_FLAG_ADMIN_UP)
521 {
522 if (vif->type == VIRTIO_IF_TYPE_TAP)
523 n_rx += virtio_device_input_inline (
524 vm, node, frame, vif, p->queue_id, VIRTIO_IF_TYPE_TAP);
525 else if (vif->type == VIRTIO_IF_TYPE_PCI)
526 n_rx += virtio_device_input_inline (
527 vm, node, frame, vif, p->queue_id, VIRTIO_IF_TYPE_PCI);
528 else if (vif->type == VIRTIO_IF_TYPE_TUN)
529 n_rx += virtio_device_input_inline (
530 vm, node, frame, vif, p->queue_id, VIRTIO_IF_TYPE_TUN);
531 }
532 }
Damjan Marion8389fb92017-10-13 18:29:53 +0200533
534 return n_rx;
535}
536
Damjan Marion8389fb92017-10-13 18:29:53 +0200537VLIB_REGISTER_NODE (virtio_input_node) = {
Damjan Marion8389fb92017-10-13 18:29:53 +0200538 .name = "virtio-input",
539 .sibling_of = "device-input",
540 .format_trace = format_virtio_input_trace,
Damjan Marion7ca5aaa2019-09-24 18:10:49 +0200541 .flags = VLIB_NODE_FLAG_TRACE_SUPPORTED,
Damjan Marion8389fb92017-10-13 18:29:53 +0200542 .type = VLIB_NODE_TYPE_INPUT,
543 .state = VLIB_NODE_STATE_INTERRUPT,
Mohsin Kazmiddd21832019-01-22 13:05:00 +0000544 .n_errors = VIRTIO_INPUT_N_ERROR,
Damjan Marion8389fb92017-10-13 18:29:53 +0200545 .error_strings = virtio_input_error_strings,
546};
Damjan Marion8389fb92017-10-13 18:29:53 +0200547
548/*
549 * fd.io coding-style-patch-verification: ON
550 *
551 * Local Variables:
552 * eval: (c-set-style "gnu")
553 * End:
554 */