blob: ec8b31038e5391700a7098737fcb513b710701c6 [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>
Damjan Marion8389fb92017-10-13 18:29:53 +020029#include <vnet/feature/feature.h>
Damjan Marion94100532020-11-06 23:25:57 +010030#include <vnet/interface/rx_queue_funcs.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>
Neale Rannsf7040f02022-02-15 09:02:27 +000034#include <vnet/tcp/tcp_packet.h>
Damjan Marion8389fb92017-10-13 18:29:53 +020035#include <vnet/devices/virtio/virtio.h>
Mohsin Kazmi6799f9b2021-04-28 18:55:45 +020036#include <vnet/devices/virtio/virtio_inline.h>
Damjan Marion8389fb92017-10-13 18:29:53 +020037
38static char *virtio_input_error_strings[] = {
Mohsin Kazmi6799f9b2021-04-28 18:55:45 +020039#define _(n, s) s,
Damjan Marion8389fb92017-10-13 18:29:53 +020040 foreach_virtio_input_error
41#undef _
42};
43
44typedef struct
45{
46 u32 next_index;
47 u32 hw_if_index;
48 u16 ring;
49 u16 len;
Mohsin Kazmi0f8912f2022-02-01 18:35:59 +000050 vnet_virtio_net_hdr_v1_t hdr;
Damjan Marion8389fb92017-10-13 18:29:53 +020051} virtio_input_trace_t;
52
53static u8 *
54format_virtio_input_trace (u8 * s, va_list * args)
55{
56 CLIB_UNUSED (vlib_main_t * vm) = va_arg (*args, vlib_main_t *);
57 CLIB_UNUSED (vlib_node_t * node) = va_arg (*args, vlib_node_t *);
58 virtio_input_trace_t *t = va_arg (*args, virtio_input_trace_t *);
59 u32 indent = format_get_indent (s);
60
61 s = format (s, "virtio: hw_if_index %d next-index %d vring %u len %u",
62 t->hw_if_index, t->next_index, t->ring, t->len);
63 s = format (s, "\n%Uhdr: flags 0x%02x gso_type 0x%02x hdr_len %u "
64 "gso_size %u csum_start %u csum_offset %u num_buffers %u",
65 format_white_space, indent + 2,
66 t->hdr.flags, t->hdr.gso_type, t->hdr.hdr_len, t->hdr.gso_size,
67 t->hdr.csum_start, t->hdr.csum_offset, t->hdr.num_buffers);
68 return s;
69}
70
71static_always_inline void
Mohsin Kazmi0f8912f2022-02-01 18:35:59 +000072virtio_needs_csum (vlib_buffer_t *b0, vnet_virtio_net_hdr_v1_t *hdr,
73 u8 *l4_proto, u8 *l4_hdr_sz, virtio_if_type_t type)
Andrew Yourtchenko6a7cff72018-10-12 16:09:22 +020074{
Andrew Yourtchenko6a7cff72018-10-12 16:09:22 +020075 if (hdr->flags & VIRTIO_NET_HDR_F_NEEDS_CSUM)
Andrew Yourtchenko6a7cff72018-10-12 16:09:22 +020076 {
Mohsin Kazmi206acf82020-04-06 14:19:54 +020077 u16 ethertype = 0, l2hdr_sz = 0;
Mohsin Kazmi36f7a6a2021-05-05 14:26:38 +020078 vnet_buffer_oflags_t oflags = 0;
Mohsin Kazmi38b09682020-06-03 18:20:17 +020079
80 if (type == VIRTIO_IF_TYPE_TUN)
81 {
82 switch (b0->data[0] & 0xf0)
83 {
84 case 0x40:
85 ethertype = ETHERNET_TYPE_IP4;
86 break;
87 case 0x60:
88 ethertype = ETHERNET_TYPE_IP6;
89 break;
90 }
91 }
92 else
Mohsin Kazmi14bea1b2019-07-29 11:39:26 +020093 {
Mohsin Kazmi096c8cc2022-05-18 16:51:57 +000094 ethernet_header_t *eh = (ethernet_header_t *) b0->data;
Mohsin Kazmi206acf82020-04-06 14:19:54 +020095 ethertype = clib_net_to_host_u16 (eh->type);
96 l2hdr_sz = sizeof (ethernet_header_t);
Mohsin Kazmi14bea1b2019-07-29 11:39:26 +020097
Mohsin Kazmi206acf82020-04-06 14:19:54 +020098 if (ethernet_frame_is_tagged (ethertype))
Mohsin Kazmi14bea1b2019-07-29 11:39:26 +020099 {
Mohsin Kazmi206acf82020-04-06 14:19:54 +0200100 ethernet_vlan_header_t *vlan =
101 (ethernet_vlan_header_t *) (eh + 1);
102
Mohsin Kazmi14bea1b2019-07-29 11:39:26 +0200103 ethertype = clib_net_to_host_u16 (vlan->type);
104 l2hdr_sz += sizeof (*vlan);
Mohsin Kazmi206acf82020-04-06 14:19:54 +0200105 if (ethertype == ETHERNET_TYPE_VLAN)
106 {
107 vlan++;
108 ethertype = clib_net_to_host_u16 (vlan->type);
109 l2hdr_sz += sizeof (*vlan);
110 }
111 }
112 }
Mohsin Kazmi14bea1b2019-07-29 11:39:26 +0200113
Mohsin Kazmi157a4ab2019-12-06 15:47:48 +0100114 vnet_buffer (b0)->l2_hdr_offset = 0;
115 vnet_buffer (b0)->l3_hdr_offset = l2hdr_sz;
Mohsin Kazmi38b09682020-06-03 18:20:17 +0200116
Andrew Yourtchenko6a7cff72018-10-12 16:09:22 +0200117 if (PREDICT_TRUE (ethertype == ETHERNET_TYPE_IP4))
118 {
Mohsin Kazmi096c8cc2022-05-18 16:51:57 +0000119 ip4_header_t *ip4 = (ip4_header_t *) (b0->data + l2hdr_sz);
Mohsin Kazmi157a4ab2019-12-06 15:47:48 +0100120 vnet_buffer (b0)->l4_hdr_offset = l2hdr_sz + ip4_header_bytes (ip4);
BenoƮt Ganne15d7fd02019-11-26 17:59:41 +0100121 *l4_proto = ip4->protocol;
Mohsin Kazmi68095382021-02-10 11:26:24 +0100122 oflags |= VNET_BUFFER_OFFLOAD_F_IP_CKSUM;
Andrew Yourtchenko6a7cff72018-10-12 16:09:22 +0200123 b0->flags |=
Mohsin Kazmi68095382021-02-10 11:26:24 +0100124 (VNET_BUFFER_F_IS_IP4 | VNET_BUFFER_F_L2_HDR_OFFSET_VALID |
125 VNET_BUFFER_F_L3_HDR_OFFSET_VALID |
Mohsin Kazmi157a4ab2019-12-06 15:47:48 +0100126 VNET_BUFFER_F_L4_HDR_OFFSET_VALID);
Andrew Yourtchenko6a7cff72018-10-12 16:09:22 +0200127 }
128 else if (PREDICT_TRUE (ethertype == ETHERNET_TYPE_IP6))
129 {
Mohsin Kazmi096c8cc2022-05-18 16:51:57 +0000130 ip6_header_t *ip6 = (ip6_header_t *) (b0->data + l2hdr_sz);
Mohsin Kazmi157a4ab2019-12-06 15:47:48 +0100131 vnet_buffer (b0)->l4_hdr_offset = l2hdr_sz + sizeof (ip6_header_t);
Andrew Yourtchenko6a7cff72018-10-12 16:09:22 +0200132 /* FIXME IPv6 EH traversal */
BenoƮt Ganne15d7fd02019-11-26 17:59:41 +0100133 *l4_proto = ip6->protocol;
Mohsin Kazmi157a4ab2019-12-06 15:47:48 +0100134 b0->flags |= (VNET_BUFFER_F_IS_IP6 |
135 VNET_BUFFER_F_L2_HDR_OFFSET_VALID
136 | VNET_BUFFER_F_L3_HDR_OFFSET_VALID |
137 VNET_BUFFER_F_L4_HDR_OFFSET_VALID);
Andrew Yourtchenko6a7cff72018-10-12 16:09:22 +0200138 }
BenoƮt Ganne15d7fd02019-11-26 17:59:41 +0100139 if (*l4_proto == IP_PROTOCOL_TCP)
Andrew Yourtchenko6a7cff72018-10-12 16:09:22 +0200140 {
Mohsin Kazmi68095382021-02-10 11:26:24 +0100141 oflags |= VNET_BUFFER_OFFLOAD_F_TCP_CKSUM;
Mohsin Kazmi096c8cc2022-05-18 16:51:57 +0000142 tcp_header_t *tcp =
143 (tcp_header_t *) (b0->data + vnet_buffer (b0)->l4_hdr_offset);
BenoƮt Ganne15d7fd02019-11-26 17:59:41 +0100144 *l4_hdr_sz = tcp_header_bytes (tcp);
Andrew Yourtchenko6a7cff72018-10-12 16:09:22 +0200145 }
BenoƮt Ganne15d7fd02019-11-26 17:59:41 +0100146 else if (*l4_proto == IP_PROTOCOL_UDP)
Andrew Yourtchenko6a7cff72018-10-12 16:09:22 +0200147 {
Mohsin Kazmi68095382021-02-10 11:26:24 +0100148 oflags |= VNET_BUFFER_OFFLOAD_F_UDP_CKSUM;
Mohsin Kazmi096c8cc2022-05-18 16:51:57 +0000149 *l4_hdr_sz = sizeof (udp_header_t);
Andrew Yourtchenko6a7cff72018-10-12 16:09:22 +0200150 }
Mohsin Kazmi68095382021-02-10 11:26:24 +0100151 if (oflags)
152 vnet_buffer_offload_flags_set (b0, oflags);
Andrew Yourtchenko6a7cff72018-10-12 16:09:22 +0200153 }
BenoƮt Ganne15d7fd02019-11-26 17:59:41 +0100154}
155
156static_always_inline void
Mohsin Kazmi0f8912f2022-02-01 18:35:59 +0000157fill_gso_buffer_flags (vlib_buffer_t *b0, vnet_virtio_net_hdr_v1_t *hdr,
BenoƮt Ganne15d7fd02019-11-26 17:59:41 +0100158 u8 l4_proto, u8 l4_hdr_sz)
159{
Andrew Yourtchenko6a7cff72018-10-12 16:09:22 +0200160 if (hdr->gso_type == VIRTIO_NET_HDR_GSO_TCPV4)
161 {
162 ASSERT (hdr->flags & VIRTIO_NET_HDR_F_NEEDS_CSUM);
163 vnet_buffer2 (b0)->gso_size = hdr->gso_size;
Mohsin Kazmi157a4ab2019-12-06 15:47:48 +0100164 vnet_buffer2 (b0)->gso_l4_hdr_sz = l4_hdr_sz;
Mohsin Kazmi72e73122019-10-22 13:33:13 +0200165 b0->flags |= VNET_BUFFER_F_GSO | VNET_BUFFER_F_IS_IP4;
Andrew Yourtchenko6a7cff72018-10-12 16:09:22 +0200166 }
167 if (hdr->gso_type == VIRTIO_NET_HDR_GSO_TCPV6)
168 {
169 ASSERT (hdr->flags & VIRTIO_NET_HDR_F_NEEDS_CSUM);
170 vnet_buffer2 (b0)->gso_size = hdr->gso_size;
Mohsin Kazmi157a4ab2019-12-06 15:47:48 +0100171 vnet_buffer2 (b0)->gso_l4_hdr_sz = l4_hdr_sz;
Mohsin Kazmi72e73122019-10-22 13:33:13 +0200172 b0->flags |= VNET_BUFFER_F_GSO | VNET_BUFFER_F_IS_IP6;
Andrew Yourtchenko6a7cff72018-10-12 16:09:22 +0200173 }
174}
175
Mohsin Kazmib977d3f2020-11-16 16:49:30 +0100176static_always_inline u16
Mohsin Kazmi0f8912f2022-02-01 18:35:59 +0000177virtio_n_left_to_process (vnet_virtio_vring_t *vring, const int packed)
Mohsin Kazmib977d3f2020-11-16 16:49:30 +0100178{
179 if (packed)
180 return vring->desc_in_use;
181 else
182 return vring->used->idx - vring->last_used_idx;
183}
184
185static_always_inline u16
Mohsin Kazmi0f8912f2022-02-01 18:35:59 +0000186virtio_get_slot_id (vnet_virtio_vring_t *vring, const int packed, u16 last,
Mohsin Kazmib977d3f2020-11-16 16:49:30 +0100187 u16 mask)
188{
189 if (packed)
190 return vring->packed_desc[last].id;
191 else
192 return vring->used->ring[last & mask].id;
193}
194
195static_always_inline u16
Mohsin Kazmi0f8912f2022-02-01 18:35:59 +0000196virtio_get_len (vnet_virtio_vring_t *vring, const int packed, const int hdr_sz,
Mohsin Kazmib977d3f2020-11-16 16:49:30 +0100197 u16 last, u16 mask)
198{
199 if (packed)
200 return vring->packed_desc[last].len - hdr_sz;
201 else
202 return vring->used->ring[last & mask].len - hdr_sz;
203}
204
Mohsin Kazmi0f8912f2022-02-01 18:35:59 +0000205#define increment_last(last, packed, vring) \
206 do \
207 { \
208 last++; \
209 if (packed && last >= vring->queue_size) \
210 { \
211 last = 0; \
212 vring->used_wrap_counter ^= 1; \
213 } \
214 } \
215 while (0)
Mohsin Kazmib977d3f2020-11-16 16:49:30 +0100216
Stanislav Zaikin5fe1cf82022-05-05 12:04:39 +0200217static_always_inline void
218virtio_device_input_ethernet (vlib_main_t *vm, vlib_node_runtime_t *node,
219 const u32 next_index, const u32 sw_if_index,
220 const u32 hw_if_index)
221{
222 vlib_next_frame_t *nf;
223 vlib_frame_t *f;
224 ethernet_input_frame_t *ef;
225
226 if (PREDICT_FALSE (VNET_DEVICE_INPUT_NEXT_ETHERNET_INPUT != next_index))
227 return;
228
229 nf = vlib_node_runtime_get_next_frame (
230 vm, node, VNET_DEVICE_INPUT_NEXT_ETHERNET_INPUT);
231 f = vlib_get_frame (vm, nf->frame);
232 f->flags = ETH_INPUT_FRAME_F_SINGLE_SW_IF_IDX;
233
234 ef = vlib_frame_scalar_args (f);
235 ef->sw_if_index = sw_if_index;
236 ef->hw_if_index = hw_if_index;
237 vlib_frame_no_append (f);
238}
239
Damjan Marion8389fb92017-10-13 18:29:53 +0200240static_always_inline uword
Mohsin Kazmi0f8912f2022-02-01 18:35:59 +0000241virtio_device_input_gso_inline (vlib_main_t *vm, vlib_node_runtime_t *node,
242 vlib_frame_t *frame, virtio_if_t *vif,
243 vnet_virtio_vring_t *vring,
244 virtio_if_type_t type, int gso_enabled,
245 int checksum_offload_enabled, int packed)
Damjan Marion8389fb92017-10-13 18:29:53 +0200246{
247 vnet_main_t *vnm = vnet_get_main ();
Damjan Marion067cd622018-07-11 12:47:43 +0200248 u32 thread_index = vm->thread_index;
Damjan Marion8389fb92017-10-13 18:29:53 +0200249 uword n_trace = vlib_get_trace_count (vm, node);
Damjan Mariond96b28a2020-10-19 17:15:58 +0200250 u32 next_index;
Mohsin Kazmid6c15af2018-10-23 18:00:47 +0200251 const int hdr_sz = vif->virtio_net_hdr_sz;
Damjan Marion8389fb92017-10-13 18:29:53 +0200252 u32 *to_next = 0;
253 u32 n_rx_packets = 0;
254 u32 n_rx_bytes = 0;
Mohsin Kazmi0f8912f2022-02-01 18:35:59 +0000255 u16 mask = vring->queue_size - 1;
Damjan Marion8389fb92017-10-13 18:29:53 +0200256 u16 last = vring->last_used_idx;
Mohsin Kazmib977d3f2020-11-16 16:49:30 +0100257 u16 n_left = virtio_n_left_to_process (vring, packed);
Mohsin Kazmi62594062021-11-05 16:13:57 +0000258 vlib_buffer_t bt = {};
Damjan Marion8389fb92017-10-13 18:29:53 +0200259
260 if (n_left == 0)
Damjan Marion4769ed92020-10-18 14:00:43 +0200261 return 0;
Damjan Marion8389fb92017-10-13 18:29:53 +0200262
Mohsin Kazmi38b09682020-06-03 18:20:17 +0200263 if (type == VIRTIO_IF_TYPE_TUN)
Damjan Mariond96b28a2020-10-19 17:15:58 +0200264 {
265 next_index = VNET_DEVICE_INPUT_NEXT_IP4_INPUT;
266 }
267 else
268 {
269 next_index = VNET_DEVICE_INPUT_NEXT_ETHERNET_INPUT;
270 if (PREDICT_FALSE (vif->per_interface_next_index != ~0))
271 next_index = vif->per_interface_next_index;
272
273 /* only for l2, redirect if feature path enabled */
274 vnet_feature_start_device_input_x1 (vif->sw_if_index, &next_index, &bt);
275 }
Mohsin Kazmi38b09682020-06-03 18:20:17 +0200276
Damjan Marion8389fb92017-10-13 18:29:53 +0200277 while (n_left)
278 {
279 u32 n_left_to_next;
280 u32 next0 = next_index;
Mohsin Kazmi38b09682020-06-03 18:20:17 +0200281
Stanislav Zaikin5fe1cf82022-05-05 12:04:39 +0200282 vlib_get_new_next_frame (vm, node, next_index, to_next, n_left_to_next);
Damjan Marion8389fb92017-10-13 18:29:53 +0200283
284 while (n_left && n_left_to_next)
285 {
Mohsin Kazmib977d3f2020-11-16 16:49:30 +0100286 if (packed)
287 {
Mohsin Kazmi0f8912f2022-02-01 18:35:59 +0000288 vnet_virtio_vring_packed_desc_t *d = &vring->packed_desc[last];
Mohsin Kazmib977d3f2020-11-16 16:49:30 +0100289 u16 flags = d->flags;
290 if ((flags & VRING_DESC_F_AVAIL) !=
291 (vring->used_wrap_counter << 7)
292 || (flags & VRING_DESC_F_USED) !=
293 (vring->used_wrap_counter << 15))
294 {
295 n_left = 0;
296 break;
297 }
298 }
Mohsin Kazmi516e4ed2020-02-24 15:54:24 +0100299 u8 l4_proto = 0, l4_hdr_sz = 0;
Mohsin Kazmid6c15af2018-10-23 18:00:47 +0200300 u16 num_buffers = 1;
Mohsin Kazmi0f8912f2022-02-01 18:35:59 +0000301 vnet_virtio_net_hdr_v1_t *hdr;
Mohsin Kazmib977d3f2020-11-16 16:49:30 +0100302 u16 slot = virtio_get_slot_id (vring, packed, last, mask);
303 u16 len = virtio_get_len (vring, packed, hdr_sz, last, mask);
Damjan Marion8389fb92017-10-13 18:29:53 +0200304 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);
Mohsin Kazmi0f8912f2022-02-01 18:35:59 +0000307 if (hdr_sz == sizeof (vnet_virtio_net_hdr_v1_t))
Mohsin Kazmid6c15af2018-10-23 18:00:47 +0200308 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 {
Mohsin Kazmib977d3f2020-11-16 16:49:30 +0100331 increment_last (last, packed, vring);
332 u16 cslot = virtio_get_slot_id (vring, packed, last, mask);
Mohsin Kazmia17381a2020-12-03 11:35:23 +0100333 /* hdr size is 0 after 1st packet in chain buffers */
334 u16 clen = virtio_get_len (vring, packed, 0, last, mask);
Mohsin Kazmib977d3f2020-11-16 16:49:30 +0100335 u32 cbi = vring->buffers[cslot];
Damjan Marion8389fb92017-10-13 18:29:53 +0200336 cb = vlib_get_buffer (vm, cbi);
337
338 /* current buffer */
Mohsin Kazmib977d3f2020-11-16 16:49:30 +0100339 cb->current_length = clen;
Damjan Marion8389fb92017-10-13 18:29:53 +0200340
341 /* previous buffer */
342 pb->next_buffer = cbi;
343 pb->flags |= VLIB_BUFFER_NEXT_PRESENT;
344
345 /* first buffer */
Mohsin Kazmib977d3f2020-11-16 16:49:30 +0100346 b0->total_length_not_including_first_buffer += clen;
Damjan Marion8389fb92017-10-13 18:29:53 +0200347
348 pb = cb;
349 vring->desc_in_use--;
350 num_buffers--;
351 n_left--;
352 }
Mohsin Kazmi38b09682020-06-03 18:20:17 +0200353 len += b0->total_length_not_including_first_buffer;
Damjan Marion8389fb92017-10-13 18:29:53 +0200354 }
Mohsin Kazmi38b09682020-06-03 18:20:17 +0200355
356 if (type == VIRTIO_IF_TYPE_TUN)
Mohsin Kazmi206acf82020-04-06 14:19:54 +0200357 {
358 switch (b0->data[0] & 0xf0)
359 {
360 case 0x40:
361 next0 = VNET_DEVICE_INPUT_NEXT_IP4_INPUT;
362 break;
363 case 0x60:
364 next0 = VNET_DEVICE_INPUT_NEXT_IP6_INPUT;
365 break;
366 default:
367 next0 = VNET_DEVICE_INPUT_NEXT_DROP;
368 break;
369 }
Damjan Mariond96b28a2020-10-19 17:15:58 +0200370
371 if (PREDICT_FALSE (vif->per_interface_next_index != ~0))
372 next0 = vif->per_interface_next_index;
Mohsin Kazmi206acf82020-04-06 14:19:54 +0200373 }
Damjan Mariond96b28a2020-10-19 17:15:58 +0200374 else
Mohsin Kazmi38b09682020-06-03 18:20:17 +0200375 {
Damjan Mariond96b28a2020-10-19 17:15:58 +0200376 /* copy feature arc data from template */
377 b0->current_config_index = bt.current_config_index;
378 vnet_buffer (b0)->feature_arc_index =
379 vnet_buffer (&bt)->feature_arc_index;
Mohsin Kazmi38b09682020-06-03 18:20:17 +0200380 }
Damjan Marion06c194d2019-11-13 10:12:53 +0100381
Damjan Marion8389fb92017-10-13 18:29:53 +0200382 /* trace */
BenoƮt Ganne9a3973e2020-10-02 19:36:57 +0200383 if (PREDICT_FALSE (n_trace > 0 && vlib_trace_buffer (vm, node, next0, b0, /* follow_chain */
384 1)))
Damjan Marion8389fb92017-10-13 18:29:53 +0200385 {
386 virtio_input_trace_t *tr;
Damjan Marion8389fb92017-10-13 18:29:53 +0200387 vlib_set_trace_count (vm, node, --n_trace);
388 tr = vlib_add_trace (vm, node, b0, sizeof (*tr));
389 tr->next_index = next0;
390 tr->hw_if_index = vif->hw_if_index;
Mohsin Kazmi38b09682020-06-03 18:20:17 +0200391 tr->len = len;
Mohsin Kazmi049a2ea2021-11-11 19:17:27 +0100392 clib_memcpy_fast (&tr->hdr, hdr, (hdr_sz == 12) ? 12 : 10);
Damjan Marion8389fb92017-10-13 18:29:53 +0200393 }
394
395 /* enqueue buffer */
396 to_next[0] = bi0;
397 vring->desc_in_use--;
398 to_next += 1;
399 n_left_to_next--;
400 n_left--;
Mohsin Kazmib977d3f2020-11-16 16:49:30 +0100401 increment_last (last, packed, vring);
Damjan Marion8389fb92017-10-13 18:29:53 +0200402
Damjan Mariond96b28a2020-10-19 17:15:58 +0200403 /* only tun interfaces may have different next index */
404 if (type == VIRTIO_IF_TYPE_TUN)
405 vlib_validate_buffer_enqueue_x1 (vm, node, next_index, to_next,
406 n_left_to_next, bi0, next0);
Damjan Marion8389fb92017-10-13 18:29:53 +0200407
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 }
Stanislav Zaikin5fe1cf82022-05-05 12:04:39 +0200412 virtio_device_input_ethernet (vm, node, next_index, vif->sw_if_index,
413 vif->hw_if_index);
Damjan Marion8389fb92017-10-13 18:29:53 +0200414 vlib_put_next_frame (vm, node, next_index, n_left_to_next);
415 }
416 vring->last_used_idx = last;
417
Mohsin Kazmidd0144a2022-09-14 11:25:54 +0000418 vring->total_packets += n_rx_packets;
Damjan Marion8389fb92017-10-13 18:29:53 +0200419 vlib_increment_combined_counter (vnm->interface_main.combined_sw_if_counters
420 + VNET_INTERFACE_COUNTER_RX, thread_index,
Steven Luongefa119d2019-08-30 10:49:44 -0700421 vif->sw_if_index, n_rx_packets,
Damjan Marion8389fb92017-10-13 18:29:53 +0200422 n_rx_bytes);
423
Damjan Marion8389fb92017-10-13 18:29:53 +0200424 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{
Mohsin Kazmi0f8912f2022-02-01 18:35:59 +0000432 vnet_virtio_vring_t *vring = vec_elt_at_index (vif->rxq_vrings, qid);
Damjan Marion4769ed92020-10-18 14:00:43 +0200433 const int hdr_sz = vif->virtio_net_hdr_sz;
Damjan Marion4769ed92020-10-18 14:00:43 +0200434 uword rv;
435
Mohsin Kazmib977d3f2020-11-16 16:49:30 +0100436 if (vif->is_packed)
437 {
Mohsin Kazmib977d3f2020-11-16 16:49:30 +0100438 if (vif->gso_enabled)
439 rv =
440 virtio_device_input_gso_inline (vm, node, frame, vif, vring, type,
441 1, 1, 1);
442 else if (vif->csum_offload_enabled)
443 rv =
444 virtio_device_input_gso_inline (vm, node, frame, vif, vring, type,
445 0, 1, 1);
446 else
447 rv =
448 virtio_device_input_gso_inline (vm, node, frame, vif, vring, type,
449 0, 0, 1);
450
451 virtio_refill_vring_packed (vm, vif, type, vring, hdr_sz,
452 node->node_index);
453 }
Mohsin Kazmi38b09682020-06-03 18:20:17 +0200454 else
Mohsin Kazmib977d3f2020-11-16 16:49:30 +0100455 {
Mohsin Kazmib977d3f2020-11-16 16:49:30 +0100456 if (vif->gso_enabled)
457 rv =
458 virtio_device_input_gso_inline (vm, node, frame, vif, vring, type,
459 1, 1, 0);
460 else if (vif->csum_offload_enabled)
461 rv =
462 virtio_device_input_gso_inline (vm, node, frame, vif, vring, type,
463 0, 1, 0);
464 else
465 rv =
466 virtio_device_input_gso_inline (vm, node, frame, vif, vring, type,
467 0, 0, 0);
468
469 virtio_refill_vring_split (vm, vif, type, vring, hdr_sz,
470 node->node_index);
471 }
Damjan Marion4769ed92020-10-18 14:00:43 +0200472 return rv;
Mohsin Kazmi38b09682020-06-03 18:20:17 +0200473}
474
Filip Tehlar608996d2019-03-04 03:03:13 -0800475VLIB_NODE_FN (virtio_input_node) (vlib_main_t * vm,
476 vlib_node_runtime_t * node,
477 vlib_frame_t * frame)
Damjan Marion8389fb92017-10-13 18:29:53 +0200478{
479 u32 n_rx = 0;
Damjan Marion94100532020-11-06 23:25:57 +0100480 virtio_main_t *vim = &virtio_main;
481 vnet_hw_if_rxq_poll_vector_t *p,
482 *pv = vnet_hw_if_get_rxq_poll_vector (vm, node);
Damjan Marion8389fb92017-10-13 18:29:53 +0200483
Damjan Marion94100532020-11-06 23:25:57 +0100484 vec_foreach (p, pv)
485 {
486 virtio_if_t *vif;
487 vif = vec_elt_at_index (vim->interfaces, p->dev_instance);
488 if (vif->flags & VIRTIO_IF_FLAG_ADMIN_UP)
489 {
490 if (vif->type == VIRTIO_IF_TYPE_TAP)
491 n_rx += virtio_device_input_inline (
492 vm, node, frame, vif, p->queue_id, VIRTIO_IF_TYPE_TAP);
493 else if (vif->type == VIRTIO_IF_TYPE_PCI)
494 n_rx += virtio_device_input_inline (
495 vm, node, frame, vif, p->queue_id, VIRTIO_IF_TYPE_PCI);
496 else if (vif->type == VIRTIO_IF_TYPE_TUN)
497 n_rx += virtio_device_input_inline (
498 vm, node, frame, vif, p->queue_id, VIRTIO_IF_TYPE_TUN);
499 }
500 }
Damjan Marion8389fb92017-10-13 18:29:53 +0200501
502 return n_rx;
503}
504
505/* *INDENT-OFF* */
506VLIB_REGISTER_NODE (virtio_input_node) = {
Damjan Marion8389fb92017-10-13 18:29:53 +0200507 .name = "virtio-input",
508 .sibling_of = "device-input",
509 .format_trace = format_virtio_input_trace,
Damjan Marion7ca5aaa2019-09-24 18:10:49 +0200510 .flags = VLIB_NODE_FLAG_TRACE_SUPPORTED,
Damjan Marion8389fb92017-10-13 18:29:53 +0200511 .type = VLIB_NODE_TYPE_INPUT,
512 .state = VLIB_NODE_STATE_INTERRUPT,
Mohsin Kazmiddd21832019-01-22 13:05:00 +0000513 .n_errors = VIRTIO_INPUT_N_ERROR,
Damjan Marion8389fb92017-10-13 18:29:53 +0200514 .error_strings = virtio_input_error_strings,
515};
Damjan Marion8389fb92017-10-13 18:29:53 +0200516/* *INDENT-ON* */
517
518/*
519 * fd.io coding-style-patch-verification: ON
520 *
521 * Local Variables:
522 * eval: (c-set-style "gnu")
523 * End:
524 */