Damjan Marion | 8389fb9 | 2017-10-13 18:29:53 +0200 | [diff] [blame] | 1 | /* |
| 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 Marion | 8389fb9 | 2017-10-13 18:29:53 +0200 | [diff] [blame] | 24 | #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> |
Mohsin Kazmi | 9e2a785 | 2020-08-13 18:57:26 +0200 | [diff] [blame] | 31 | #include <vnet/gso/gro_func.h> |
Milan Lenco | 73e7f42 | 2017-12-14 10:04:25 +0100 | [diff] [blame] | 32 | #include <vnet/ip/ip4_packet.h> |
| 33 | #include <vnet/ip/ip6_packet.h> |
Andrew Yourtchenko | 6a7cff7 | 2018-10-12 16:09:22 +0200 | [diff] [blame] | 34 | #include <vnet/udp/udp_packet.h> |
Damjan Marion | 8389fb9 | 2017-10-13 18:29:53 +0200 | [diff] [blame] | 35 | #include <vnet/devices/virtio/virtio.h> |
| 36 | |
| 37 | |
| 38 | #define foreach_virtio_input_error \ |
Mohsin Kazmi | 543ed86 | 2020-07-22 17:15:10 +0200 | [diff] [blame] | 39 | _(BUFFER_ALLOC, "buffer alloc error") \ |
Damjan Marion | 8389fb9 | 2017-10-13 18:29:53 +0200 | [diff] [blame] | 40 | _(UNKNOWN, "unknown") |
| 41 | |
| 42 | typedef enum |
| 43 | { |
Mohsin Kazmi | ddd2183 | 2019-01-22 13:05:00 +0000 | [diff] [blame] | 44 | #define _(f,s) VIRTIO_INPUT_ERROR_##f, |
Damjan Marion | 8389fb9 | 2017-10-13 18:29:53 +0200 | [diff] [blame] | 45 | foreach_virtio_input_error |
| 46 | #undef _ |
Mohsin Kazmi | ddd2183 | 2019-01-22 13:05:00 +0000 | [diff] [blame] | 47 | VIRTIO_INPUT_N_ERROR, |
Damjan Marion | 8389fb9 | 2017-10-13 18:29:53 +0200 | [diff] [blame] | 48 | } virtio_input_error_t; |
| 49 | |
| 50 | static char *virtio_input_error_strings[] = { |
| 51 | #define _(n,s) s, |
| 52 | foreach_virtio_input_error |
| 53 | #undef _ |
| 54 | }; |
| 55 | |
| 56 | typedef struct |
| 57 | { |
| 58 | u32 next_index; |
| 59 | u32 hw_if_index; |
| 60 | u16 ring; |
| 61 | u16 len; |
Mohsin Kazmi | a7a2281 | 2020-08-31 17:17:16 +0200 | [diff] [blame] | 62 | virtio_net_hdr_v1_t hdr; |
Damjan Marion | 8389fb9 | 2017-10-13 18:29:53 +0200 | [diff] [blame] | 63 | } virtio_input_trace_t; |
| 64 | |
| 65 | static u8 * |
| 66 | format_virtio_input_trace (u8 * s, va_list * args) |
| 67 | { |
| 68 | CLIB_UNUSED (vlib_main_t * vm) = va_arg (*args, vlib_main_t *); |
| 69 | CLIB_UNUSED (vlib_node_t * node) = va_arg (*args, vlib_node_t *); |
| 70 | virtio_input_trace_t *t = va_arg (*args, virtio_input_trace_t *); |
| 71 | u32 indent = format_get_indent (s); |
| 72 | |
| 73 | s = format (s, "virtio: hw_if_index %d next-index %d vring %u len %u", |
| 74 | t->hw_if_index, t->next_index, t->ring, t->len); |
| 75 | s = format (s, "\n%Uhdr: flags 0x%02x gso_type 0x%02x hdr_len %u " |
| 76 | "gso_size %u csum_start %u csum_offset %u num_buffers %u", |
| 77 | format_white_space, indent + 2, |
| 78 | t->hdr.flags, t->hdr.gso_type, t->hdr.hdr_len, t->hdr.gso_size, |
| 79 | t->hdr.csum_start, t->hdr.csum_offset, t->hdr.num_buffers); |
| 80 | return s; |
| 81 | } |
| 82 | |
| 83 | static_always_inline void |
Mohsin Kazmi | d6c15af | 2018-10-23 18:00:47 +0200 | [diff] [blame] | 84 | virtio_refill_vring (vlib_main_t * vm, virtio_if_t * vif, |
Mohsin Kazmi | 38b0968 | 2020-06-03 18:20:17 +0200 | [diff] [blame] | 85 | virtio_if_type_t type, virtio_vring_t * vring, |
Mohsin Kazmi | 543ed86 | 2020-07-22 17:15:10 +0200 | [diff] [blame] | 86 | const int hdr_sz, u32 node_index) |
Damjan Marion | 8389fb9 | 2017-10-13 18:29:53 +0200 | [diff] [blame] | 87 | { |
Mohsin Kazmi | 543ed86 | 2020-07-22 17:15:10 +0200 | [diff] [blame] | 88 | u16 used, next, avail, n_slots, n_refill; |
Damjan Marion | 8389fb9 | 2017-10-13 18:29:53 +0200 | [diff] [blame] | 89 | u16 sz = vring->size; |
| 90 | u16 mask = sz - 1; |
Damjan Marion | 8389fb9 | 2017-10-13 18:29:53 +0200 | [diff] [blame] | 91 | |
Damjan Marion | e40231b | 2018-12-20 10:44:47 +0100 | [diff] [blame] | 92 | more: |
Damjan Marion | 8389fb9 | 2017-10-13 18:29:53 +0200 | [diff] [blame] | 93 | used = vring->desc_in_use; |
| 94 | |
| 95 | if (sz - used < sz / 8) |
| 96 | return; |
| 97 | |
Damjan Marion | e40231b | 2018-12-20 10:44:47 +0100 | [diff] [blame] | 98 | /* deliver free buffers in chunks of 64 */ |
Mohsin Kazmi | 543ed86 | 2020-07-22 17:15:10 +0200 | [diff] [blame] | 99 | n_refill = clib_min (sz - used, 64); |
Damjan Marion | e40231b | 2018-12-20 10:44:47 +0100 | [diff] [blame] | 100 | |
Damjan Marion | 8389fb9 | 2017-10-13 18:29:53 +0200 | [diff] [blame] | 101 | next = vring->desc_next; |
| 102 | avail = vring->avail->idx; |
Mohsin Kazmi | 80659b4 | 2019-01-31 13:18:00 +0000 | [diff] [blame] | 103 | n_slots = |
| 104 | vlib_buffer_alloc_to_ring_from_pool (vm, vring->buffers, next, |
Mohsin Kazmi | 543ed86 | 2020-07-22 17:15:10 +0200 | [diff] [blame] | 105 | vring->size, n_refill, |
Mohsin Kazmi | 80659b4 | 2019-01-31 13:18:00 +0000 | [diff] [blame] | 106 | vring->buffer_pool_index); |
Damjan Marion | 8389fb9 | 2017-10-13 18:29:53 +0200 | [diff] [blame] | 107 | |
Mohsin Kazmi | 543ed86 | 2020-07-22 17:15:10 +0200 | [diff] [blame] | 108 | if (PREDICT_FALSE (n_slots != n_refill)) |
| 109 | { |
| 110 | vlib_error_count (vm, node_index, |
| 111 | VIRTIO_INPUT_ERROR_BUFFER_ALLOC, n_refill - n_slots); |
| 112 | if (n_slots == 0) |
| 113 | return; |
| 114 | } |
Damjan Marion | e40231b | 2018-12-20 10:44:47 +0100 | [diff] [blame] | 115 | |
Damjan Marion | 8389fb9 | 2017-10-13 18:29:53 +0200 | [diff] [blame] | 116 | while (n_slots) |
| 117 | { |
Mohsin Kazmi | a7a2281 | 2020-08-31 17:17:16 +0200 | [diff] [blame] | 118 | vring_desc_t *d = &vring->desc[next];; |
Damjan Marion | 8389fb9 | 2017-10-13 18:29:53 +0200 | [diff] [blame] | 119 | vlib_buffer_t *b = vlib_get_buffer (vm, vring->buffers[next]); |
Mohsin Kazmi | d6c15af | 2018-10-23 18:00:47 +0200 | [diff] [blame] | 120 | /* |
| 121 | * current_data may not be initialized with 0 and may contain |
| 122 | * previous offset. Here we want to make sure, it should be 0 |
| 123 | * initialized. |
| 124 | */ |
Mohsin Kazmi | 38b0968 | 2020-06-03 18:20:17 +0200 | [diff] [blame] | 125 | b->current_data = -hdr_sz; |
Mohsin Kazmi | d6c15af | 2018-10-23 18:00:47 +0200 | [diff] [blame] | 126 | memset (vlib_buffer_get_current (b), 0, hdr_sz); |
| 127 | d->addr = |
Mohsin Kazmi | 38b0968 | 2020-06-03 18:20:17 +0200 | [diff] [blame] | 128 | ((type == VIRTIO_IF_TYPE_PCI) ? vlib_buffer_get_current_pa (vm, |
| 129 | b) : |
Mohsin Kazmi | d6c15af | 2018-10-23 18:00:47 +0200 | [diff] [blame] | 130 | pointer_to_uword (vlib_buffer_get_current (b))); |
Damjan Marion | 8934a04 | 2019-02-09 23:29:26 +0100 | [diff] [blame] | 131 | d->len = vlib_buffer_get_default_data_size (vm) + hdr_sz; |
Damjan Marion | 8389fb9 | 2017-10-13 18:29:53 +0200 | [diff] [blame] | 132 | d->flags = VRING_DESC_F_WRITE; |
| 133 | vring->avail->ring[avail & mask] = next; |
| 134 | avail++; |
| 135 | next = (next + 1) & mask; |
| 136 | n_slots--; |
| 137 | used++; |
| 138 | } |
| 139 | CLIB_MEMORY_STORE_BARRIER (); |
| 140 | vring->avail->idx = avail; |
| 141 | vring->desc_next = next; |
| 142 | vring->desc_in_use = used; |
| 143 | |
Mohsin Kazmi | a7a2281 | 2020-08-31 17:17:16 +0200 | [diff] [blame] | 144 | if ((vring->used->flags & VRING_USED_F_NO_NOTIFY) == 0) |
Mohsin Kazmi | d6c15af | 2018-10-23 18:00:47 +0200 | [diff] [blame] | 145 | { |
| 146 | virtio_kick (vm, vring, vif); |
| 147 | } |
Damjan Marion | e40231b | 2018-12-20 10:44:47 +0100 | [diff] [blame] | 148 | goto more; |
Damjan Marion | 8389fb9 | 2017-10-13 18:29:53 +0200 | [diff] [blame] | 149 | } |
| 150 | |
Andrew Yourtchenko | 6a7cff7 | 2018-10-12 16:09:22 +0200 | [diff] [blame] | 151 | static_always_inline void |
Mohsin Kazmi | a7a2281 | 2020-08-31 17:17:16 +0200 | [diff] [blame] | 152 | virtio_needs_csum (vlib_buffer_t * b0, virtio_net_hdr_v1_t * hdr, |
Mohsin Kazmi | 206acf8 | 2020-04-06 14:19:54 +0200 | [diff] [blame] | 153 | u8 * l4_proto, u8 * l4_hdr_sz, virtio_if_type_t type) |
Andrew Yourtchenko | 6a7cff7 | 2018-10-12 16:09:22 +0200 | [diff] [blame] | 154 | { |
Andrew Yourtchenko | 6a7cff7 | 2018-10-12 16:09:22 +0200 | [diff] [blame] | 155 | if (hdr->flags & VIRTIO_NET_HDR_F_NEEDS_CSUM) |
Andrew Yourtchenko | 6a7cff7 | 2018-10-12 16:09:22 +0200 | [diff] [blame] | 156 | { |
Mohsin Kazmi | 206acf8 | 2020-04-06 14:19:54 +0200 | [diff] [blame] | 157 | u16 ethertype = 0, l2hdr_sz = 0; |
Mohsin Kazmi | 38b0968 | 2020-06-03 18:20:17 +0200 | [diff] [blame] | 158 | |
| 159 | if (type == VIRTIO_IF_TYPE_TUN) |
| 160 | { |
| 161 | switch (b0->data[0] & 0xf0) |
| 162 | { |
| 163 | case 0x40: |
| 164 | ethertype = ETHERNET_TYPE_IP4; |
| 165 | break; |
| 166 | case 0x60: |
| 167 | ethertype = ETHERNET_TYPE_IP6; |
| 168 | break; |
| 169 | } |
| 170 | } |
| 171 | else |
Mohsin Kazmi | 14bea1b | 2019-07-29 11:39:26 +0200 | [diff] [blame] | 172 | { |
Mohsin Kazmi | 206acf8 | 2020-04-06 14:19:54 +0200 | [diff] [blame] | 173 | ethernet_header_t *eh = |
| 174 | (ethernet_header_t *) vlib_buffer_get_current (b0); |
| 175 | ethertype = clib_net_to_host_u16 (eh->type); |
| 176 | l2hdr_sz = sizeof (ethernet_header_t); |
Mohsin Kazmi | 14bea1b | 2019-07-29 11:39:26 +0200 | [diff] [blame] | 177 | |
Mohsin Kazmi | 206acf8 | 2020-04-06 14:19:54 +0200 | [diff] [blame] | 178 | if (ethernet_frame_is_tagged (ethertype)) |
Mohsin Kazmi | 14bea1b | 2019-07-29 11:39:26 +0200 | [diff] [blame] | 179 | { |
Mohsin Kazmi | 206acf8 | 2020-04-06 14:19:54 +0200 | [diff] [blame] | 180 | ethernet_vlan_header_t *vlan = |
| 181 | (ethernet_vlan_header_t *) (eh + 1); |
| 182 | |
Mohsin Kazmi | 14bea1b | 2019-07-29 11:39:26 +0200 | [diff] [blame] | 183 | ethertype = clib_net_to_host_u16 (vlan->type); |
| 184 | l2hdr_sz += sizeof (*vlan); |
Mohsin Kazmi | 206acf8 | 2020-04-06 14:19:54 +0200 | [diff] [blame] | 185 | if (ethertype == ETHERNET_TYPE_VLAN) |
| 186 | { |
| 187 | vlan++; |
| 188 | ethertype = clib_net_to_host_u16 (vlan->type); |
| 189 | l2hdr_sz += sizeof (*vlan); |
| 190 | } |
| 191 | } |
| 192 | } |
Mohsin Kazmi | 14bea1b | 2019-07-29 11:39:26 +0200 | [diff] [blame] | 193 | |
Mohsin Kazmi | 157a4ab | 2019-12-06 15:47:48 +0100 | [diff] [blame] | 194 | vnet_buffer (b0)->l2_hdr_offset = 0; |
| 195 | vnet_buffer (b0)->l3_hdr_offset = l2hdr_sz; |
Mohsin Kazmi | 38b0968 | 2020-06-03 18:20:17 +0200 | [diff] [blame] | 196 | |
Andrew Yourtchenko | 6a7cff7 | 2018-10-12 16:09:22 +0200 | [diff] [blame] | 197 | if (PREDICT_TRUE (ethertype == ETHERNET_TYPE_IP4)) |
| 198 | { |
Mohsin Kazmi | 72e7312 | 2019-10-22 13:33:13 +0200 | [diff] [blame] | 199 | ip4_header_t *ip4 = |
| 200 | (ip4_header_t *) (vlib_buffer_get_current (b0) + l2hdr_sz); |
Mohsin Kazmi | 157a4ab | 2019-12-06 15:47:48 +0100 | [diff] [blame] | 201 | vnet_buffer (b0)->l4_hdr_offset = l2hdr_sz + ip4_header_bytes (ip4); |
Benoît Ganne | 15d7fd0 | 2019-11-26 17:59:41 +0100 | [diff] [blame] | 202 | *l4_proto = ip4->protocol; |
Andrew Yourtchenko | 6a7cff7 | 2018-10-12 16:09:22 +0200 | [diff] [blame] | 203 | b0->flags |= |
Mohsin Kazmi | 72e7312 | 2019-10-22 13:33:13 +0200 | [diff] [blame] | 204 | (VNET_BUFFER_F_IS_IP4 | VNET_BUFFER_F_OFFLOAD_IP_CKSUM); |
Mohsin Kazmi | 157a4ab | 2019-12-06 15:47:48 +0100 | [diff] [blame] | 205 | b0->flags |= |
| 206 | (VNET_BUFFER_F_L2_HDR_OFFSET_VALID |
| 207 | | VNET_BUFFER_F_L3_HDR_OFFSET_VALID | |
| 208 | VNET_BUFFER_F_L4_HDR_OFFSET_VALID); |
Andrew Yourtchenko | 6a7cff7 | 2018-10-12 16:09:22 +0200 | [diff] [blame] | 209 | } |
| 210 | else if (PREDICT_TRUE (ethertype == ETHERNET_TYPE_IP6)) |
| 211 | { |
Mohsin Kazmi | 72e7312 | 2019-10-22 13:33:13 +0200 | [diff] [blame] | 212 | ip6_header_t *ip6 = |
| 213 | (ip6_header_t *) (vlib_buffer_get_current (b0) + l2hdr_sz); |
Mohsin Kazmi | 157a4ab | 2019-12-06 15:47:48 +0100 | [diff] [blame] | 214 | vnet_buffer (b0)->l4_hdr_offset = l2hdr_sz + sizeof (ip6_header_t); |
Andrew Yourtchenko | 6a7cff7 | 2018-10-12 16:09:22 +0200 | [diff] [blame] | 215 | /* FIXME IPv6 EH traversal */ |
Benoît Ganne | 15d7fd0 | 2019-11-26 17:59:41 +0100 | [diff] [blame] | 216 | *l4_proto = ip6->protocol; |
Mohsin Kazmi | 157a4ab | 2019-12-06 15:47:48 +0100 | [diff] [blame] | 217 | b0->flags |= (VNET_BUFFER_F_IS_IP6 | |
| 218 | VNET_BUFFER_F_L2_HDR_OFFSET_VALID |
| 219 | | VNET_BUFFER_F_L3_HDR_OFFSET_VALID | |
| 220 | VNET_BUFFER_F_L4_HDR_OFFSET_VALID); |
Andrew Yourtchenko | 6a7cff7 | 2018-10-12 16:09:22 +0200 | [diff] [blame] | 221 | } |
Benoît Ganne | 15d7fd0 | 2019-11-26 17:59:41 +0100 | [diff] [blame] | 222 | if (*l4_proto == IP_PROTOCOL_TCP) |
Andrew Yourtchenko | 6a7cff7 | 2018-10-12 16:09:22 +0200 | [diff] [blame] | 223 | { |
| 224 | b0->flags |= VNET_BUFFER_F_OFFLOAD_TCP_CKSUM; |
Mohsin Kazmi | 157a4ab | 2019-12-06 15:47:48 +0100 | [diff] [blame] | 225 | tcp_header_t *tcp = (tcp_header_t *) (vlib_buffer_get_current (b0) + |
| 226 | vnet_buffer |
| 227 | (b0)->l4_hdr_offset); |
Benoît Ganne | 15d7fd0 | 2019-11-26 17:59:41 +0100 | [diff] [blame] | 228 | *l4_hdr_sz = tcp_header_bytes (tcp); |
Andrew Yourtchenko | 6a7cff7 | 2018-10-12 16:09:22 +0200 | [diff] [blame] | 229 | } |
Benoît Ganne | 15d7fd0 | 2019-11-26 17:59:41 +0100 | [diff] [blame] | 230 | else if (*l4_proto == IP_PROTOCOL_UDP) |
Andrew Yourtchenko | 6a7cff7 | 2018-10-12 16:09:22 +0200 | [diff] [blame] | 231 | { |
| 232 | b0->flags |= VNET_BUFFER_F_OFFLOAD_UDP_CKSUM; |
Mohsin Kazmi | 157a4ab | 2019-12-06 15:47:48 +0100 | [diff] [blame] | 233 | udp_header_t *udp = (udp_header_t *) (vlib_buffer_get_current (b0) + |
| 234 | vnet_buffer |
| 235 | (b0)->l4_hdr_offset); |
Benoît Ganne | 15d7fd0 | 2019-11-26 17:59:41 +0100 | [diff] [blame] | 236 | *l4_hdr_sz = sizeof (*udp); |
Andrew Yourtchenko | 6a7cff7 | 2018-10-12 16:09:22 +0200 | [diff] [blame] | 237 | } |
| 238 | } |
Benoît Ganne | 15d7fd0 | 2019-11-26 17:59:41 +0100 | [diff] [blame] | 239 | } |
| 240 | |
| 241 | static_always_inline void |
Mohsin Kazmi | a7a2281 | 2020-08-31 17:17:16 +0200 | [diff] [blame] | 242 | fill_gso_buffer_flags (vlib_buffer_t * b0, virtio_net_hdr_v1_t * hdr, |
Benoît Ganne | 15d7fd0 | 2019-11-26 17:59:41 +0100 | [diff] [blame] | 243 | u8 l4_proto, u8 l4_hdr_sz) |
| 244 | { |
Andrew Yourtchenko | 6a7cff7 | 2018-10-12 16:09:22 +0200 | [diff] [blame] | 245 | if (hdr->gso_type == VIRTIO_NET_HDR_GSO_TCPV4) |
| 246 | { |
| 247 | ASSERT (hdr->flags & VIRTIO_NET_HDR_F_NEEDS_CSUM); |
| 248 | vnet_buffer2 (b0)->gso_size = hdr->gso_size; |
Mohsin Kazmi | 157a4ab | 2019-12-06 15:47:48 +0100 | [diff] [blame] | 249 | vnet_buffer2 (b0)->gso_l4_hdr_sz = l4_hdr_sz; |
Mohsin Kazmi | 72e7312 | 2019-10-22 13:33:13 +0200 | [diff] [blame] | 250 | b0->flags |= VNET_BUFFER_F_GSO | VNET_BUFFER_F_IS_IP4; |
Andrew Yourtchenko | 6a7cff7 | 2018-10-12 16:09:22 +0200 | [diff] [blame] | 251 | } |
| 252 | if (hdr->gso_type == VIRTIO_NET_HDR_GSO_TCPV6) |
| 253 | { |
| 254 | ASSERT (hdr->flags & VIRTIO_NET_HDR_F_NEEDS_CSUM); |
| 255 | vnet_buffer2 (b0)->gso_size = hdr->gso_size; |
Mohsin Kazmi | 157a4ab | 2019-12-06 15:47:48 +0100 | [diff] [blame] | 256 | vnet_buffer2 (b0)->gso_l4_hdr_sz = l4_hdr_sz; |
Mohsin Kazmi | 72e7312 | 2019-10-22 13:33:13 +0200 | [diff] [blame] | 257 | b0->flags |= VNET_BUFFER_F_GSO | VNET_BUFFER_F_IS_IP6; |
Andrew Yourtchenko | 6a7cff7 | 2018-10-12 16:09:22 +0200 | [diff] [blame] | 258 | } |
| 259 | } |
| 260 | |
Damjan Marion | 8389fb9 | 2017-10-13 18:29:53 +0200 | [diff] [blame] | 261 | static_always_inline uword |
Mohsin Kazmi | 38b0968 | 2020-06-03 18:20:17 +0200 | [diff] [blame] | 262 | virtio_device_input_gso_inline (vlib_main_t * vm, vlib_node_runtime_t * node, |
| 263 | vlib_frame_t * frame, virtio_if_t * vif, |
Damjan Marion | 4769ed9 | 2020-10-18 14:00:43 +0200 | [diff] [blame] | 264 | virtio_vring_t * vring, virtio_if_type_t type, |
Mohsin Kazmi | 38b0968 | 2020-06-03 18:20:17 +0200 | [diff] [blame] | 265 | int gso_enabled, int checksum_offload_enabled) |
Damjan Marion | 8389fb9 | 2017-10-13 18:29:53 +0200 | [diff] [blame] | 266 | { |
| 267 | vnet_main_t *vnm = vnet_get_main (); |
Damjan Marion | 067cd62 | 2018-07-11 12:47:43 +0200 | [diff] [blame] | 268 | u32 thread_index = vm->thread_index; |
Damjan Marion | 8389fb9 | 2017-10-13 18:29:53 +0200 | [diff] [blame] | 269 | uword n_trace = vlib_get_trace_count (vm, node); |
Damjan Marion | d96b28a | 2020-10-19 17:15:58 +0200 | [diff] [blame^] | 270 | u32 next_index; |
Mohsin Kazmi | d6c15af | 2018-10-23 18:00:47 +0200 | [diff] [blame] | 271 | const int hdr_sz = vif->virtio_net_hdr_sz; |
Damjan Marion | 8389fb9 | 2017-10-13 18:29:53 +0200 | [diff] [blame] | 272 | 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; |
Damjan Marion | d96b28a | 2020-10-19 17:15:58 +0200 | [diff] [blame^] | 278 | vlib_buffer_t bt; |
Damjan Marion | 8389fb9 | 2017-10-13 18:29:53 +0200 | [diff] [blame] | 279 | |
| 280 | if (n_left == 0) |
Damjan Marion | 4769ed9 | 2020-10-18 14:00:43 +0200 | [diff] [blame] | 281 | return 0; |
Damjan Marion | 8389fb9 | 2017-10-13 18:29:53 +0200 | [diff] [blame] | 282 | |
Mohsin Kazmi | 38b0968 | 2020-06-03 18:20:17 +0200 | [diff] [blame] | 283 | if (type == VIRTIO_IF_TYPE_TUN) |
Damjan Marion | d96b28a | 2020-10-19 17:15:58 +0200 | [diff] [blame^] | 284 | { |
| 285 | next_index = VNET_DEVICE_INPUT_NEXT_IP4_INPUT; |
| 286 | } |
| 287 | else |
| 288 | { |
| 289 | next_index = VNET_DEVICE_INPUT_NEXT_ETHERNET_INPUT; |
| 290 | if (PREDICT_FALSE (vif->per_interface_next_index != ~0)) |
| 291 | next_index = vif->per_interface_next_index; |
| 292 | |
| 293 | /* only for l2, redirect if feature path enabled */ |
| 294 | vnet_feature_start_device_input_x1 (vif->sw_if_index, &next_index, &bt); |
| 295 | } |
Mohsin Kazmi | 38b0968 | 2020-06-03 18:20:17 +0200 | [diff] [blame] | 296 | |
Damjan Marion | 8389fb9 | 2017-10-13 18:29:53 +0200 | [diff] [blame] | 297 | while (n_left) |
| 298 | { |
| 299 | u32 n_left_to_next; |
| 300 | u32 next0 = next_index; |
Mohsin Kazmi | 38b0968 | 2020-06-03 18:20:17 +0200 | [diff] [blame] | 301 | |
Damjan Marion | 8389fb9 | 2017-10-13 18:29:53 +0200 | [diff] [blame] | 302 | vlib_get_next_frame (vm, node, next_index, to_next, n_left_to_next); |
| 303 | |
| 304 | while (n_left && n_left_to_next) |
| 305 | { |
Mohsin Kazmi | 516e4ed | 2020-02-24 15:54:24 +0100 | [diff] [blame] | 306 | u8 l4_proto = 0, l4_hdr_sz = 0; |
Mohsin Kazmi | d6c15af | 2018-10-23 18:00:47 +0200 | [diff] [blame] | 307 | u16 num_buffers = 1; |
Mohsin Kazmi | a7a2281 | 2020-08-31 17:17:16 +0200 | [diff] [blame] | 308 | vring_used_elem_t *e = &vring->used->ring[last & mask]; |
| 309 | virtio_net_hdr_v1_t *hdr; |
Damjan Marion | 8389fb9 | 2017-10-13 18:29:53 +0200 | [diff] [blame] | 310 | u16 slot = e->id; |
| 311 | u16 len = e->len - hdr_sz; |
| 312 | u32 bi0 = vring->buffers[slot]; |
| 313 | vlib_buffer_t *b0 = vlib_get_buffer (vm, bi0); |
Mohsin Kazmi | d6c15af | 2018-10-23 18:00:47 +0200 | [diff] [blame] | 314 | hdr = vlib_buffer_get_current (b0); |
Mohsin Kazmi | a7a2281 | 2020-08-31 17:17:16 +0200 | [diff] [blame] | 315 | if (hdr_sz == sizeof (virtio_net_hdr_v1_t)) |
Mohsin Kazmi | d6c15af | 2018-10-23 18:00:47 +0200 | [diff] [blame] | 316 | num_buffers = hdr->num_buffers; |
Damjan Marion | 8389fb9 | 2017-10-13 18:29:53 +0200 | [diff] [blame] | 317 | |
Mohsin Kazmi | 8975dbd | 2020-06-24 16:19:19 +0200 | [diff] [blame] | 318 | b0->flags = VLIB_BUFFER_TOTAL_LENGTH_VALID; |
Mohsin Kazmi | 38b0968 | 2020-06-03 18:20:17 +0200 | [diff] [blame] | 319 | b0->current_data = 0; |
Damjan Marion | 8389fb9 | 2017-10-13 18:29:53 +0200 | [diff] [blame] | 320 | b0->current_length = len; |
Andrew Yourtchenko | 6a7cff7 | 2018-10-12 16:09:22 +0200 | [diff] [blame] | 321 | |
Mohsin Kazmi | 6d4af89 | 2020-01-03 15:11:53 +0000 | [diff] [blame] | 322 | if (checksum_offload_enabled) |
Mohsin Kazmi | 38b0968 | 2020-06-03 18:20:17 +0200 | [diff] [blame] | 323 | virtio_needs_csum (b0, hdr, &l4_proto, &l4_hdr_sz, type); |
Benoît Ganne | 15d7fd0 | 2019-11-26 17:59:41 +0100 | [diff] [blame] | 324 | |
Andrew Yourtchenko | 6a7cff7 | 2018-10-12 16:09:22 +0200 | [diff] [blame] | 325 | if (gso_enabled) |
Benoît Ganne | 15d7fd0 | 2019-11-26 17:59:41 +0100 | [diff] [blame] | 326 | fill_gso_buffer_flags (b0, hdr, l4_proto, l4_hdr_sz); |
Andrew Yourtchenko | 6a7cff7 | 2018-10-12 16:09:22 +0200 | [diff] [blame] | 327 | |
Damjan Marion | 8389fb9 | 2017-10-13 18:29:53 +0200 | [diff] [blame] | 328 | vnet_buffer (b0)->sw_if_index[VLIB_RX] = vif->sw_if_index; |
| 329 | vnet_buffer (b0)->sw_if_index[VLIB_TX] = (u32) ~ 0; |
| 330 | |
| 331 | /* if multisegment packet */ |
| 332 | if (PREDICT_FALSE (num_buffers > 1)) |
| 333 | { |
| 334 | vlib_buffer_t *pb, *cb; |
| 335 | pb = b0; |
Mohsin Kazmi | 38b0968 | 2020-06-03 18:20:17 +0200 | [diff] [blame] | 336 | b0->total_length_not_including_first_buffer = 0; |
Damjan Marion | 8389fb9 | 2017-10-13 18:29:53 +0200 | [diff] [blame] | 337 | while (num_buffers > 1) |
| 338 | { |
| 339 | last++; |
| 340 | e = &vring->used->ring[last & mask]; |
| 341 | u32 cbi = vring->buffers[e->id]; |
| 342 | cb = vlib_get_buffer (vm, cbi); |
| 343 | |
| 344 | /* current buffer */ |
Damjan Marion | 8389fb9 | 2017-10-13 18:29:53 +0200 | [diff] [blame] | 345 | cb->current_length = e->len; |
| 346 | |
| 347 | /* previous buffer */ |
| 348 | pb->next_buffer = cbi; |
| 349 | pb->flags |= VLIB_BUFFER_NEXT_PRESENT; |
| 350 | |
| 351 | /* first buffer */ |
| 352 | b0->total_length_not_including_first_buffer += e->len; |
| 353 | |
| 354 | pb = cb; |
| 355 | vring->desc_in_use--; |
| 356 | num_buffers--; |
| 357 | n_left--; |
| 358 | } |
Mohsin Kazmi | 38b0968 | 2020-06-03 18:20:17 +0200 | [diff] [blame] | 359 | len += b0->total_length_not_including_first_buffer; |
Damjan Marion | 8389fb9 | 2017-10-13 18:29:53 +0200 | [diff] [blame] | 360 | } |
Mohsin Kazmi | 38b0968 | 2020-06-03 18:20:17 +0200 | [diff] [blame] | 361 | |
| 362 | if (type == VIRTIO_IF_TYPE_TUN) |
Mohsin Kazmi | 206acf8 | 2020-04-06 14:19:54 +0200 | [diff] [blame] | 363 | { |
| 364 | switch (b0->data[0] & 0xf0) |
| 365 | { |
| 366 | case 0x40: |
| 367 | next0 = VNET_DEVICE_INPUT_NEXT_IP4_INPUT; |
| 368 | break; |
| 369 | case 0x60: |
| 370 | next0 = VNET_DEVICE_INPUT_NEXT_IP6_INPUT; |
| 371 | break; |
| 372 | default: |
| 373 | next0 = VNET_DEVICE_INPUT_NEXT_DROP; |
| 374 | break; |
| 375 | } |
Damjan Marion | d96b28a | 2020-10-19 17:15:58 +0200 | [diff] [blame^] | 376 | |
| 377 | if (PREDICT_FALSE (vif->per_interface_next_index != ~0)) |
| 378 | next0 = vif->per_interface_next_index; |
Mohsin Kazmi | 206acf8 | 2020-04-06 14:19:54 +0200 | [diff] [blame] | 379 | } |
Damjan Marion | d96b28a | 2020-10-19 17:15:58 +0200 | [diff] [blame^] | 380 | else |
Mohsin Kazmi | 38b0968 | 2020-06-03 18:20:17 +0200 | [diff] [blame] | 381 | { |
Damjan Marion | d96b28a | 2020-10-19 17:15:58 +0200 | [diff] [blame^] | 382 | /* copy feature arc data from template */ |
| 383 | b0->current_config_index = bt.current_config_index; |
| 384 | vnet_buffer (b0)->feature_arc_index = |
| 385 | vnet_buffer (&bt)->feature_arc_index; |
Mohsin Kazmi | 38b0968 | 2020-06-03 18:20:17 +0200 | [diff] [blame] | 386 | } |
Damjan Marion | 06c194d | 2019-11-13 10:12:53 +0100 | [diff] [blame] | 387 | |
Damjan Marion | 8389fb9 | 2017-10-13 18:29:53 +0200 | [diff] [blame] | 388 | /* trace */ |
| 389 | VLIB_BUFFER_TRACE_TRAJECTORY_INIT (b0); |
| 390 | |
| 391 | if (PREDICT_FALSE (n_trace > 0)) |
| 392 | { |
| 393 | virtio_input_trace_t *tr; |
| 394 | vlib_trace_buffer (vm, node, next0, b0, |
Mohsin Kazmi | 5e1794d | 2019-06-19 20:25:37 +0200 | [diff] [blame] | 395 | /* follow_chain */ 1); |
Damjan Marion | 8389fb9 | 2017-10-13 18:29:53 +0200 | [diff] [blame] | 396 | vlib_set_trace_count (vm, node, --n_trace); |
| 397 | tr = vlib_add_trace (vm, node, b0, sizeof (*tr)); |
| 398 | tr->next_index = next0; |
| 399 | tr->hw_if_index = vif->hw_if_index; |
Mohsin Kazmi | 38b0968 | 2020-06-03 18:20:17 +0200 | [diff] [blame] | 400 | tr->len = len; |
Dave Barach | 178cf49 | 2018-11-13 16:34:13 -0500 | [diff] [blame] | 401 | clib_memcpy_fast (&tr->hdr, hdr, hdr_sz); |
Damjan Marion | 8389fb9 | 2017-10-13 18:29:53 +0200 | [diff] [blame] | 402 | } |
| 403 | |
| 404 | /* enqueue buffer */ |
| 405 | to_next[0] = bi0; |
| 406 | vring->desc_in_use--; |
| 407 | to_next += 1; |
| 408 | n_left_to_next--; |
| 409 | n_left--; |
| 410 | last++; |
| 411 | |
Damjan Marion | d96b28a | 2020-10-19 17:15:58 +0200 | [diff] [blame^] | 412 | /* only tun interfaces may have different next index */ |
| 413 | if (type == VIRTIO_IF_TYPE_TUN) |
| 414 | vlib_validate_buffer_enqueue_x1 (vm, node, next_index, to_next, |
| 415 | n_left_to_next, bi0, next0); |
Damjan Marion | 8389fb9 | 2017-10-13 18:29:53 +0200 | [diff] [blame] | 416 | |
| 417 | /* next packet */ |
| 418 | n_rx_packets++; |
Mohsin Kazmi | 38b0968 | 2020-06-03 18:20:17 +0200 | [diff] [blame] | 419 | n_rx_bytes += len; |
Damjan Marion | 8389fb9 | 2017-10-13 18:29:53 +0200 | [diff] [blame] | 420 | } |
| 421 | vlib_put_next_frame (vm, node, next_index, n_left_to_next); |
| 422 | } |
| 423 | vring->last_used_idx = last; |
| 424 | |
| 425 | vlib_increment_combined_counter (vnm->interface_main.combined_sw_if_counters |
| 426 | + VNET_INTERFACE_COUNTER_RX, thread_index, |
Steven Luong | efa119d | 2019-08-30 10:49:44 -0700 | [diff] [blame] | 427 | vif->sw_if_index, n_rx_packets, |
Damjan Marion | 8389fb9 | 2017-10-13 18:29:53 +0200 | [diff] [blame] | 428 | n_rx_bytes); |
| 429 | |
Damjan Marion | 8389fb9 | 2017-10-13 18:29:53 +0200 | [diff] [blame] | 430 | return n_rx_packets; |
| 431 | } |
| 432 | |
Mohsin Kazmi | 38b0968 | 2020-06-03 18:20:17 +0200 | [diff] [blame] | 433 | static_always_inline uword |
| 434 | virtio_device_input_inline (vlib_main_t * vm, vlib_node_runtime_t * node, |
| 435 | vlib_frame_t * frame, virtio_if_t * vif, u16 qid, |
| 436 | virtio_if_type_t type) |
| 437 | { |
Damjan Marion | 4769ed9 | 2020-10-18 14:00:43 +0200 | [diff] [blame] | 438 | virtio_vring_t *vring = vec_elt_at_index (vif->rxq_vrings, qid); |
| 439 | const int hdr_sz = vif->virtio_net_hdr_sz; |
| 440 | u16 txq_id = vm->thread_index % vif->num_txqs; |
| 441 | virtio_vring_t *txq_vring = vec_elt_at_index (vif->txq_vrings, txq_id); |
| 442 | uword rv; |
| 443 | |
| 444 | if (clib_spinlock_trylock_if_init (&txq_vring->lockp)) |
| 445 | { |
| 446 | if (vif->packet_coalesce) |
| 447 | vnet_gro_flow_table_schedule_node_on_dispatcher |
| 448 | (vm, txq_vring->flow_table); |
| 449 | else if (vif->packet_buffering) |
| 450 | virtio_vring_buffering_schedule_node_on_dispatcher |
| 451 | (vm, txq_vring->buffering); |
| 452 | clib_spinlock_unlock_if_init (&txq_vring->lockp); |
| 453 | } |
| 454 | |
| 455 | if ((vring->used->flags & VRING_USED_F_NO_NOTIFY) == 0 && |
| 456 | vring->last_kick_avail_idx != vring->avail->idx) |
| 457 | virtio_kick (vm, vring, vif); |
Mohsin Kazmi | 38b0968 | 2020-06-03 18:20:17 +0200 | [diff] [blame] | 458 | |
| 459 | if (vif->gso_enabled) |
Damjan Marion | 4769ed9 | 2020-10-18 14:00:43 +0200 | [diff] [blame] | 460 | rv = virtio_device_input_gso_inline (vm, node, frame, vif, vring, type, |
| 461 | 1, 1); |
Mohsin Kazmi | 38b0968 | 2020-06-03 18:20:17 +0200 | [diff] [blame] | 462 | else if (vif->csum_offload_enabled) |
Damjan Marion | 4769ed9 | 2020-10-18 14:00:43 +0200 | [diff] [blame] | 463 | rv = virtio_device_input_gso_inline (vm, node, frame, vif, vring, type, |
| 464 | 0, 1); |
Mohsin Kazmi | 38b0968 | 2020-06-03 18:20:17 +0200 | [diff] [blame] | 465 | else |
Damjan Marion | 4769ed9 | 2020-10-18 14:00:43 +0200 | [diff] [blame] | 466 | rv = virtio_device_input_gso_inline (vm, node, frame, vif, vring, type, |
| 467 | 0, 0); |
| 468 | |
| 469 | virtio_refill_vring (vm, vif, type, vring, hdr_sz, node->node_index); |
| 470 | return rv; |
Mohsin Kazmi | 38b0968 | 2020-06-03 18:20:17 +0200 | [diff] [blame] | 471 | } |
| 472 | |
Filip Tehlar | 608996d | 2019-03-04 03:03:13 -0800 | [diff] [blame] | 473 | VLIB_NODE_FN (virtio_input_node) (vlib_main_t * vm, |
| 474 | vlib_node_runtime_t * node, |
| 475 | vlib_frame_t * frame) |
Damjan Marion | 8389fb9 | 2017-10-13 18:29:53 +0200 | [diff] [blame] | 476 | { |
| 477 | u32 n_rx = 0; |
| 478 | virtio_main_t *nm = &virtio_main; |
| 479 | vnet_device_input_runtime_t *rt = (void *) node->runtime_data; |
| 480 | vnet_device_and_queue_t *dq; |
| 481 | |
| 482 | foreach_device_and_queue (dq, rt->devices_and_queues) |
| 483 | { |
Mohsin Kazmi | 09a3bc5 | 2019-04-02 11:45:08 +0000 | [diff] [blame] | 484 | virtio_if_t *vif; |
| 485 | vif = vec_elt_at_index (nm->interfaces, dq->dev_instance); |
| 486 | if (vif->flags & VIRTIO_IF_FLAG_ADMIN_UP) |
Damjan Marion | 8389fb9 | 2017-10-13 18:29:53 +0200 | [diff] [blame] | 487 | { |
Mohsin Kazmi | 38b0968 | 2020-06-03 18:20:17 +0200 | [diff] [blame] | 488 | if (vif->type == VIRTIO_IF_TYPE_TAP) |
Mohsin Kazmi | 09a3bc5 | 2019-04-02 11:45:08 +0000 | [diff] [blame] | 489 | n_rx += virtio_device_input_inline (vm, node, frame, vif, |
Mohsin Kazmi | 38b0968 | 2020-06-03 18:20:17 +0200 | [diff] [blame] | 490 | dq->queue_id, |
| 491 | VIRTIO_IF_TYPE_TAP); |
| 492 | else if (vif->type == VIRTIO_IF_TYPE_PCI) |
Mohsin Kazmi | 6d4af89 | 2020-01-03 15:11:53 +0000 | [diff] [blame] | 493 | n_rx += virtio_device_input_inline (vm, node, frame, vif, |
Mohsin Kazmi | 38b0968 | 2020-06-03 18:20:17 +0200 | [diff] [blame] | 494 | dq->queue_id, |
| 495 | VIRTIO_IF_TYPE_PCI); |
| 496 | else if (vif->type == VIRTIO_IF_TYPE_TUN) |
Mohsin Kazmi | 09a3bc5 | 2019-04-02 11:45:08 +0000 | [diff] [blame] | 497 | n_rx += virtio_device_input_inline (vm, node, frame, vif, |
Mohsin Kazmi | 38b0968 | 2020-06-03 18:20:17 +0200 | [diff] [blame] | 498 | dq->queue_id, |
| 499 | VIRTIO_IF_TYPE_TUN); |
Damjan Marion | 8389fb9 | 2017-10-13 18:29:53 +0200 | [diff] [blame] | 500 | } |
| 501 | } |
| 502 | |
| 503 | return n_rx; |
| 504 | } |
| 505 | |
| 506 | /* *INDENT-OFF* */ |
| 507 | VLIB_REGISTER_NODE (virtio_input_node) = { |
Damjan Marion | 8389fb9 | 2017-10-13 18:29:53 +0200 | [diff] [blame] | 508 | .name = "virtio-input", |
| 509 | .sibling_of = "device-input", |
| 510 | .format_trace = format_virtio_input_trace, |
Damjan Marion | 7ca5aaa | 2019-09-24 18:10:49 +0200 | [diff] [blame] | 511 | .flags = VLIB_NODE_FLAG_TRACE_SUPPORTED, |
Damjan Marion | 8389fb9 | 2017-10-13 18:29:53 +0200 | [diff] [blame] | 512 | .type = VLIB_NODE_TYPE_INPUT, |
| 513 | .state = VLIB_NODE_STATE_INTERRUPT, |
Mohsin Kazmi | ddd2183 | 2019-01-22 13:05:00 +0000 | [diff] [blame] | 514 | .n_errors = VIRTIO_INPUT_N_ERROR, |
Damjan Marion | 8389fb9 | 2017-10-13 18:29:53 +0200 | [diff] [blame] | 515 | .error_strings = virtio_input_error_strings, |
| 516 | }; |
Damjan Marion | 8389fb9 | 2017-10-13 18:29:53 +0200 | [diff] [blame] | 517 | /* *INDENT-ON* */ |
| 518 | |
| 519 | /* |
| 520 | * fd.io coding-style-patch-verification: ON |
| 521 | * |
| 522 | * Local Variables: |
| 523 | * eval: (c-set-style "gnu") |
| 524 | * End: |
| 525 | */ |