Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1 | /* |
Damjan Marion | 650223c | 2018-11-14 16:55:53 +0100 | [diff] [blame] | 2 | * Copyright (c) 2018 Cisco and/or its affiliates. |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 3 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 | * you may not use this file except in compliance with the License. |
| 5 | * You may obtain a copy of the License at: |
| 6 | * |
| 7 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 8 | * |
| 9 | * Unless required by applicable law or agreed to in writing, software |
| 10 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 11 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 | * See the License for the specific language governing permissions and |
| 13 | * limitations under the License. |
| 14 | */ |
| 15 | /* |
| 16 | * ethernet_node.c: ethernet packet processing |
| 17 | * |
| 18 | * Copyright (c) 2008 Eliot Dresselhaus |
| 19 | * |
| 20 | * Permission is hereby granted, free of charge, to any person obtaining |
| 21 | * a copy of this software and associated documentation files (the |
| 22 | * "Software"), to deal in the Software without restriction, including |
| 23 | * without limitation the rights to use, copy, modify, merge, publish, |
| 24 | * distribute, sublicense, and/or sell copies of the Software, and to |
| 25 | * permit persons to whom the Software is furnished to do so, subject to |
| 26 | * the following conditions: |
| 27 | * |
| 28 | * The above copyright notice and this permission notice shall be |
| 29 | * included in all copies or substantial portions of the Software. |
| 30 | * |
| 31 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, |
| 32 | * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF |
| 33 | * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND |
| 34 | * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE |
| 35 | * LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION |
| 36 | * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION |
| 37 | * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. |
| 38 | */ |
| 39 | |
| 40 | #include <vlib/vlib.h> |
| 41 | #include <vnet/pg/pg.h> |
| 42 | #include <vnet/ethernet/ethernet.h> |
Pavel Kotucek | 15ac81c | 2017-06-20 14:00:26 +0200 | [diff] [blame] | 43 | #include <vnet/ethernet/p2p_ethernet.h> |
Neale Ranns | 17ff3c1 | 2018-07-04 10:24:24 -0700 | [diff] [blame] | 44 | #include <vnet/devices/pipe/pipe.h> |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 45 | #include <vppinfra/sparse_vec.h> |
| 46 | #include <vnet/l2/l2_bvi.h> |
Dave Barach | 9137e54 | 2019-09-13 17:47:50 -0400 | [diff] [blame] | 47 | #include <vnet/classify/trace_classify.h> |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 48 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 49 | #define foreach_ethernet_input_next \ |
| 50 | _ (PUNT, "error-punt") \ |
| 51 | _ (DROP, "error-drop") \ |
Damjan Marion | 650223c | 2018-11-14 16:55:53 +0100 | [diff] [blame] | 52 | _ (LLC, "llc-input") \ |
| 53 | _ (IP4_INPUT, "ip4-input") \ |
| 54 | _ (IP4_INPUT_NCS, "ip4-input-no-checksum") |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 55 | |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 56 | typedef enum |
| 57 | { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 58 | #define _(s,n) ETHERNET_INPUT_NEXT_##s, |
| 59 | foreach_ethernet_input_next |
| 60 | #undef _ |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 61 | ETHERNET_INPUT_N_NEXT, |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 62 | } ethernet_input_next_t; |
| 63 | |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 64 | typedef struct |
| 65 | { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 66 | u8 packet_data[32]; |
Damjan Marion | 650223c | 2018-11-14 16:55:53 +0100 | [diff] [blame] | 67 | u16 frame_flags; |
| 68 | ethernet_input_frame_t frame_data; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 69 | } ethernet_input_trace_t; |
| 70 | |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 71 | static u8 * |
| 72 | format_ethernet_input_trace (u8 * s, va_list * va) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 73 | { |
| 74 | CLIB_UNUSED (vlib_main_t * vm) = va_arg (*va, vlib_main_t *); |
| 75 | CLIB_UNUSED (vlib_node_t * node) = va_arg (*va, vlib_node_t *); |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 76 | ethernet_input_trace_t *t = va_arg (*va, ethernet_input_trace_t *); |
Damjan Marion | 650223c | 2018-11-14 16:55:53 +0100 | [diff] [blame] | 77 | u32 indent = format_get_indent (s); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 78 | |
Damjan Marion | 650223c | 2018-11-14 16:55:53 +0100 | [diff] [blame] | 79 | if (t->frame_flags) |
| 80 | { |
| 81 | s = format (s, "frame: flags 0x%x", t->frame_flags); |
| 82 | if (t->frame_flags & ETH_INPUT_FRAME_F_SINGLE_SW_IF_IDX) |
| 83 | s = format (s, ", hw-if-index %u, sw-if-index %u", |
| 84 | t->frame_data.hw_if_index, t->frame_data.sw_if_index); |
| 85 | s = format (s, "\n%U", format_white_space, indent); |
| 86 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 87 | s = format (s, "%U", format_ethernet_header, t->packet_data); |
| 88 | |
| 89 | return s; |
| 90 | } |
| 91 | |
Damjan Marion | e849da2 | 2018-09-12 13:32:01 +0200 | [diff] [blame] | 92 | extern vlib_node_registration_t ethernet_input_node; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 93 | |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 94 | typedef enum |
| 95 | { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 96 | ETHERNET_INPUT_VARIANT_ETHERNET, |
| 97 | ETHERNET_INPUT_VARIANT_ETHERNET_TYPE, |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 98 | ETHERNET_INPUT_VARIANT_NOT_L2, |
| 99 | } ethernet_input_variant_t; |
| 100 | |
| 101 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 102 | // Parse the ethernet header to extract vlan tags and innermost ethertype |
| 103 | static_always_inline void |
| 104 | parse_header (ethernet_input_variant_t variant, |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 105 | vlib_buffer_t * b0, |
| 106 | u16 * type, |
| 107 | u16 * orig_type, |
| 108 | u16 * outer_id, u16 * inner_id, u32 * match_flags) |
| 109 | { |
Chris Luke | 194ebc5 | 2016-04-25 14:26:55 -0400 | [diff] [blame] | 110 | u8 vlan_count; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 111 | |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 112 | if (variant == ETHERNET_INPUT_VARIANT_ETHERNET |
| 113 | || variant == ETHERNET_INPUT_VARIANT_NOT_L2) |
| 114 | { |
| 115 | ethernet_header_t *e0; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 116 | |
Zhiyong Yang | 9f83358 | 2020-04-11 14:36:55 +0000 | [diff] [blame] | 117 | e0 = vlib_buffer_get_current (b0); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 118 | |
Damjan Marion | 072401e | 2017-07-13 18:53:27 +0200 | [diff] [blame] | 119 | vnet_buffer (b0)->l2_hdr_offset = b0->current_data; |
Steven | 35de3b3 | 2017-12-03 23:40:54 -0800 | [diff] [blame] | 120 | b0->flags |= VNET_BUFFER_F_L2_HDR_OFFSET_VALID; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 121 | |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 122 | vlib_buffer_advance (b0, sizeof (e0[0])); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 123 | |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 124 | *type = clib_net_to_host_u16 (e0->type); |
| 125 | } |
| 126 | else if (variant == ETHERNET_INPUT_VARIANT_ETHERNET_TYPE) |
| 127 | { |
| 128 | // here when prior node was LLC/SNAP processing |
| 129 | u16 *e0; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 130 | |
Zhiyong Yang | 9f83358 | 2020-04-11 14:36:55 +0000 | [diff] [blame] | 131 | e0 = vlib_buffer_get_current (b0); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 132 | |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 133 | vlib_buffer_advance (b0, sizeof (e0[0])); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 134 | |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 135 | *type = clib_net_to_host_u16 (e0[0]); |
| 136 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 137 | |
| 138 | // save for distinguishing between dot1q and dot1ad later |
| 139 | *orig_type = *type; |
| 140 | |
| 141 | // default the tags to 0 (used if there is no corresponding tag) |
| 142 | *outer_id = 0; |
| 143 | *inner_id = 0; |
| 144 | |
| 145 | *match_flags = SUBINT_CONFIG_VALID | SUBINT_CONFIG_MATCH_0_TAG; |
Chris Luke | 194ebc5 | 2016-04-25 14:26:55 -0400 | [diff] [blame] | 146 | vlan_count = 0; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 147 | |
| 148 | // check for vlan encaps |
Damjan Marion | b94bdad | 2016-09-19 11:32:03 +0200 | [diff] [blame] | 149 | if (ethernet_frame_is_tagged (*type)) |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 150 | { |
| 151 | ethernet_vlan_header_t *h0; |
| 152 | u16 tag; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 153 | |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 154 | *match_flags = SUBINT_CONFIG_VALID | SUBINT_CONFIG_MATCH_1_TAG; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 155 | |
Zhiyong Yang | 9f83358 | 2020-04-11 14:36:55 +0000 | [diff] [blame] | 156 | h0 = vlib_buffer_get_current (b0); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 157 | |
| 158 | tag = clib_net_to_host_u16 (h0->priority_cfi_and_id); |
| 159 | |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 160 | *outer_id = tag & 0xfff; |
Neale Ranns | 30d0fd4 | 2017-05-30 07:30:04 -0700 | [diff] [blame] | 161 | if (0 == *outer_id) |
| 162 | *match_flags &= ~SUBINT_CONFIG_MATCH_1_TAG; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 163 | |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 164 | *type = clib_net_to_host_u16 (h0->type); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 165 | |
| 166 | vlib_buffer_advance (b0, sizeof (h0[0])); |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 167 | vlan_count = 1; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 168 | |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 169 | if (*type == ETHERNET_TYPE_VLAN) |
| 170 | { |
| 171 | // Double tagged packet |
| 172 | *match_flags = SUBINT_CONFIG_VALID | SUBINT_CONFIG_MATCH_2_TAG; |
| 173 | |
Zhiyong Yang | 9f83358 | 2020-04-11 14:36:55 +0000 | [diff] [blame] | 174 | h0 = vlib_buffer_get_current (b0); |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 175 | |
| 176 | tag = clib_net_to_host_u16 (h0->priority_cfi_and_id); |
| 177 | |
| 178 | *inner_id = tag & 0xfff; |
| 179 | |
| 180 | *type = clib_net_to_host_u16 (h0->type); |
| 181 | |
| 182 | vlib_buffer_advance (b0, sizeof (h0[0])); |
| 183 | vlan_count = 2; |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 184 | if (*type == ETHERNET_TYPE_VLAN) |
| 185 | { |
| 186 | // More than double tagged packet |
| 187 | *match_flags = SUBINT_CONFIG_VALID | SUBINT_CONFIG_MATCH_3_TAG; |
Eyal Bari | 6f7ebf9 | 2017-06-13 12:09:37 +0300 | [diff] [blame] | 188 | |
| 189 | vlib_buffer_advance (b0, sizeof (h0[0])); |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 190 | vlan_count = 3; // "unknown" number, aka, 3-or-more |
| 191 | } |
| 192 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 193 | } |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 194 | ethernet_buffer_set_vlan_count (b0, vlan_count); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 195 | } |
| 196 | |
Matthew Smith | 42bde45 | 2019-11-18 09:35:24 -0600 | [diff] [blame] | 197 | static_always_inline void |
| 198 | ethernet_input_inline_dmac_check (vnet_hw_interface_t * hi, |
| 199 | u64 * dmacs, u8 * dmacs_bad, |
| 200 | u32 n_packets, ethernet_interface_t * ei, |
| 201 | u8 have_sec_dmac); |
| 202 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 203 | // Determine the subinterface for this packet, given the result of the |
| 204 | // vlan table lookups and vlan header parsing. Check the most specific |
| 205 | // matches first. |
| 206 | static_always_inline void |
Ivan Shvedunov | 7286943 | 2020-10-15 13:19:35 +0300 | [diff] [blame^] | 207 | identify_subint (ethernet_main_t * em, |
| 208 | vnet_hw_interface_t * hi, |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 209 | vlib_buffer_t * b0, |
| 210 | u32 match_flags, |
| 211 | main_intf_t * main_intf, |
| 212 | vlan_intf_t * vlan_intf, |
| 213 | qinq_intf_t * qinq_intf, |
| 214 | u32 * new_sw_if_index, u8 * error0, u32 * is_l2) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 215 | { |
| 216 | u32 matched; |
Ivan Shvedunov | 7286943 | 2020-10-15 13:19:35 +0300 | [diff] [blame^] | 217 | ethernet_interface_t *ei = ethernet_get_interface (em, hi->hw_if_index); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 218 | |
Damjan Marion | ddf6e08 | 2018-11-26 16:05:07 +0100 | [diff] [blame] | 219 | matched = eth_identify_subint (hi, match_flags, main_intf, vlan_intf, |
| 220 | qinq_intf, new_sw_if_index, error0, is_l2); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 221 | |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 222 | if (matched) |
| 223 | { |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 224 | // Perform L3 my-mac filter |
John Lo | 4a302ee | 2020-05-12 22:34:39 -0400 | [diff] [blame] | 225 | // A unicast packet arriving on an L3 interface must have a dmac |
| 226 | // matching the interface mac. If interface has STATUS_L3 bit set |
| 227 | // mac filter is already done. |
Ivan Shvedunov | 7286943 | 2020-10-15 13:19:35 +0300 | [diff] [blame^] | 228 | if (!(*is_l2 || (ei->flags & ETHERNET_INTERFACE_FLAG_STATUS_L3))) |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 229 | { |
Matthew Smith | 42bde45 | 2019-11-18 09:35:24 -0600 | [diff] [blame] | 230 | u64 dmacs[2]; |
| 231 | u8 dmacs_bad[2]; |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 232 | ethernet_header_t *e0; |
Matthew Smith | 42bde45 | 2019-11-18 09:35:24 -0600 | [diff] [blame] | 233 | ethernet_interface_t *ei0; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 234 | |
Matthew Smith | 42bde45 | 2019-11-18 09:35:24 -0600 | [diff] [blame] | 235 | e0 = (void *) (b0->data + vnet_buffer (b0)->l2_hdr_offset); |
| 236 | dmacs[0] = *(u64 *) e0; |
| 237 | ei0 = ethernet_get_interface (ðernet_main, hi->hw_if_index); |
| 238 | |
| 239 | if (ei0 && vec_len (ei0->secondary_addrs)) |
| 240 | ethernet_input_inline_dmac_check (hi, dmacs, dmacs_bad, |
| 241 | 1 /* n_packets */ , ei0, |
| 242 | 1 /* have_sec_dmac */ ); |
| 243 | else |
| 244 | ethernet_input_inline_dmac_check (hi, dmacs, dmacs_bad, |
| 245 | 1 /* n_packets */ , ei0, |
| 246 | 0 /* have_sec_dmac */ ); |
Matthew Smith | 42bde45 | 2019-11-18 09:35:24 -0600 | [diff] [blame] | 247 | if (dmacs_bad[0]) |
| 248 | *error0 = ETHERNET_ERROR_L3_MAC_MISMATCH; |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 249 | } |
| 250 | |
| 251 | // Check for down subinterface |
| 252 | *error0 = (*new_sw_if_index) != ~0 ? (*error0) : ETHERNET_ERROR_DOWN; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 253 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 254 | } |
| 255 | |
| 256 | static_always_inline void |
| 257 | determine_next_node (ethernet_main_t * em, |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 258 | ethernet_input_variant_t variant, |
| 259 | u32 is_l20, |
| 260 | u32 type0, vlib_buffer_t * b0, u8 * error0, u8 * next0) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 261 | { |
Andrew Yourtchenko | 20e6d36 | 2018-10-05 20:36:03 +0200 | [diff] [blame] | 262 | vnet_buffer (b0)->l3_hdr_offset = b0->current_data; |
| 263 | b0->flags |= VNET_BUFFER_F_L3_HDR_OFFSET_VALID; |
| 264 | |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 265 | if (PREDICT_FALSE (*error0 != ETHERNET_ERROR_NONE)) |
| 266 | { |
| 267 | // some error occurred |
| 268 | *next0 = ETHERNET_INPUT_NEXT_DROP; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 269 | } |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 270 | else if (is_l20) |
| 271 | { |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 272 | // record the L2 len and reset the buffer so the L2 header is preserved |
John Lo | b14826e | 2018-04-18 15:52:23 -0400 | [diff] [blame] | 273 | u32 eth_start = vnet_buffer (b0)->l2_hdr_offset; |
| 274 | vnet_buffer (b0)->l2.l2_len = b0->current_data - eth_start; |
| 275 | *next0 = em->l2_next; |
Eyal Bari | 6f7ebf9 | 2017-06-13 12:09:37 +0300 | [diff] [blame] | 276 | ASSERT (vnet_buffer (b0)->l2.l2_len == |
| 277 | ethernet_buffer_header_size (b0)); |
Andrew Yourtchenko | 20e6d36 | 2018-10-05 20:36:03 +0200 | [diff] [blame] | 278 | vlib_buffer_advance (b0, -(vnet_buffer (b0)->l2.l2_len)); |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 279 | |
| 280 | // check for common IP/MPLS ethertypes |
| 281 | } |
| 282 | else if (type0 == ETHERNET_TYPE_IP4) |
| 283 | { |
| 284 | *next0 = em->l3_next.input_next_ip4; |
| 285 | } |
| 286 | else if (type0 == ETHERNET_TYPE_IP6) |
| 287 | { |
| 288 | *next0 = em->l3_next.input_next_ip6; |
| 289 | } |
Neale Ranns | 0f26c5a | 2017-03-01 15:12:11 -0800 | [diff] [blame] | 290 | else if (type0 == ETHERNET_TYPE_MPLS) |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 291 | { |
| 292 | *next0 = em->l3_next.input_next_mpls; |
| 293 | |
| 294 | } |
| 295 | else if (em->redirect_l3) |
| 296 | { |
| 297 | // L3 Redirect is on, the cached common next nodes will be |
| 298 | // pointing to the redirect node, catch the uncommon types here |
| 299 | *next0 = em->redirect_l3_next; |
| 300 | } |
| 301 | else |
| 302 | { |
| 303 | // uncommon ethertype, check table |
| 304 | u32 i0; |
| 305 | i0 = sparse_vec_index (em->l3_next.input_next_by_type, type0); |
| 306 | *next0 = vec_elt (em->l3_next.input_next_by_type, i0); |
| 307 | *error0 = |
| 308 | i0 == |
| 309 | SPARSE_VEC_INVALID_INDEX ? ETHERNET_ERROR_UNKNOWN_TYPE : *error0; |
| 310 | |
| 311 | // The table is not populated with LLC values, so check that now. |
Damjan Marion | 607de1a | 2016-08-16 22:53:54 +0200 | [diff] [blame] | 312 | // If variant is variant_ethernet then we came from LLC processing. Don't |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 313 | // go back there; drop instead using by keeping the drop/bad table result. |
| 314 | if ((type0 < 0x600) && (variant == ETHERNET_INPUT_VARIANT_ETHERNET)) |
| 315 | { |
| 316 | *next0 = ETHERNET_INPUT_NEXT_LLC; |
| 317 | } |
| 318 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 319 | } |
| 320 | |
Damjan Marion | 650223c | 2018-11-14 16:55:53 +0100 | [diff] [blame] | 321 | |
| 322 | /* following vector code relies on following assumptions */ |
| 323 | STATIC_ASSERT_OFFSET_OF (vlib_buffer_t, current_data, 0); |
| 324 | STATIC_ASSERT_OFFSET_OF (vlib_buffer_t, current_length, 2); |
| 325 | STATIC_ASSERT_OFFSET_OF (vlib_buffer_t, flags, 4); |
| 326 | STATIC_ASSERT (STRUCT_OFFSET_OF (vnet_buffer_opaque_t, l2_hdr_offset) == |
| 327 | STRUCT_OFFSET_OF (vnet_buffer_opaque_t, l3_hdr_offset) - 2, |
| 328 | "l3_hdr_offset must follow l2_hdr_offset"); |
| 329 | |
| 330 | static_always_inline void |
Damjan Marion | 8d6f34e | 2018-11-25 21:19:13 +0100 | [diff] [blame] | 331 | eth_input_adv_and_flags_x4 (vlib_buffer_t ** b, int is_l3) |
Damjan Marion | 650223c | 2018-11-14 16:55:53 +0100 | [diff] [blame] | 332 | { |
Damjan Marion | 8d6f34e | 2018-11-25 21:19:13 +0100 | [diff] [blame] | 333 | i16 adv = sizeof (ethernet_header_t); |
| 334 | u32 flags = VNET_BUFFER_F_L2_HDR_OFFSET_VALID | |
| 335 | VNET_BUFFER_F_L3_HDR_OFFSET_VALID; |
| 336 | |
Damjan Marion | 650223c | 2018-11-14 16:55:53 +0100 | [diff] [blame] | 337 | #ifdef CLIB_HAVE_VEC256 |
| 338 | /* to reduce number of small loads/stores we are loading first 64 bits |
| 339 | of each buffer metadata into 256-bit register so we can advance |
| 340 | current_data, current_length and flags. |
| 341 | Observed saving of this code is ~2 clocks per packet */ |
| 342 | u64x4 r, radv; |
| 343 | |
| 344 | /* vector if signed 16 bit integers used in signed vector add operation |
| 345 | to advnce current_data and current_length */ |
| 346 | u32x8 flags4 = { 0, flags, 0, flags, 0, flags, 0, flags }; |
| 347 | i16x16 adv4 = { |
| 348 | adv, -adv, 0, 0, adv, -adv, 0, 0, |
| 349 | adv, -adv, 0, 0, adv, -adv, 0, 0 |
| 350 | }; |
| 351 | |
| 352 | /* load 4 x 64 bits */ |
| 353 | r = u64x4_gather (b[0], b[1], b[2], b[3]); |
| 354 | |
| 355 | /* set flags */ |
| 356 | r |= (u64x4) flags4; |
| 357 | |
| 358 | /* advance buffer */ |
| 359 | radv = (u64x4) ((i16x16) r + adv4); |
| 360 | |
| 361 | /* write 4 x 64 bits */ |
| 362 | u64x4_scatter (is_l3 ? radv : r, b[0], b[1], b[2], b[3]); |
| 363 | |
| 364 | /* use old current_data as l2_hdr_offset and new current_data as |
| 365 | l3_hdr_offset */ |
| 366 | r = (u64x4) u16x16_blend (r, radv << 16, 0xaa); |
| 367 | |
| 368 | /* store both l2_hdr_offset and l3_hdr_offset in single store operation */ |
| 369 | u32x8_scatter_one ((u32x8) r, 0, &vnet_buffer (b[0])->l2_hdr_offset); |
| 370 | u32x8_scatter_one ((u32x8) r, 2, &vnet_buffer (b[1])->l2_hdr_offset); |
| 371 | u32x8_scatter_one ((u32x8) r, 4, &vnet_buffer (b[2])->l2_hdr_offset); |
| 372 | u32x8_scatter_one ((u32x8) r, 6, &vnet_buffer (b[3])->l2_hdr_offset); |
| 373 | |
Damjan Marion | e9cebdf | 2018-11-21 00:47:42 +0100 | [diff] [blame] | 374 | if (is_l3) |
| 375 | { |
| 376 | ASSERT (b[0]->current_data == vnet_buffer (b[0])->l3_hdr_offset); |
| 377 | ASSERT (b[1]->current_data == vnet_buffer (b[1])->l3_hdr_offset); |
| 378 | ASSERT (b[2]->current_data == vnet_buffer (b[2])->l3_hdr_offset); |
| 379 | ASSERT (b[3]->current_data == vnet_buffer (b[3])->l3_hdr_offset); |
Damjan Marion | 650223c | 2018-11-14 16:55:53 +0100 | [diff] [blame] | 380 | |
Damjan Marion | e9cebdf | 2018-11-21 00:47:42 +0100 | [diff] [blame] | 381 | ASSERT (b[0]->current_data - vnet_buffer (b[0])->l2_hdr_offset == adv); |
| 382 | ASSERT (b[1]->current_data - vnet_buffer (b[1])->l2_hdr_offset == adv); |
| 383 | ASSERT (b[2]->current_data - vnet_buffer (b[2])->l2_hdr_offset == adv); |
| 384 | ASSERT (b[3]->current_data - vnet_buffer (b[3])->l2_hdr_offset == adv); |
| 385 | } |
| 386 | else |
| 387 | { |
| 388 | ASSERT (b[0]->current_data == vnet_buffer (b[0])->l2_hdr_offset); |
| 389 | ASSERT (b[1]->current_data == vnet_buffer (b[1])->l2_hdr_offset); |
| 390 | ASSERT (b[2]->current_data == vnet_buffer (b[2])->l2_hdr_offset); |
| 391 | ASSERT (b[3]->current_data == vnet_buffer (b[3])->l2_hdr_offset); |
| 392 | |
| 393 | ASSERT (b[0]->current_data - vnet_buffer (b[0])->l3_hdr_offset == -adv); |
| 394 | ASSERT (b[1]->current_data - vnet_buffer (b[1])->l3_hdr_offset == -adv); |
| 395 | ASSERT (b[2]->current_data - vnet_buffer (b[2])->l3_hdr_offset == -adv); |
| 396 | ASSERT (b[3]->current_data - vnet_buffer (b[3])->l3_hdr_offset == -adv); |
| 397 | } |
Damjan Marion | 650223c | 2018-11-14 16:55:53 +0100 | [diff] [blame] | 398 | |
| 399 | #else |
| 400 | vnet_buffer (b[0])->l2_hdr_offset = b[0]->current_data; |
| 401 | vnet_buffer (b[1])->l2_hdr_offset = b[1]->current_data; |
| 402 | vnet_buffer (b[2])->l2_hdr_offset = b[2]->current_data; |
| 403 | vnet_buffer (b[3])->l2_hdr_offset = b[3]->current_data; |
| 404 | vnet_buffer (b[0])->l3_hdr_offset = b[0]->current_data + adv; |
| 405 | vnet_buffer (b[1])->l3_hdr_offset = b[1]->current_data + adv; |
| 406 | vnet_buffer (b[2])->l3_hdr_offset = b[2]->current_data + adv; |
| 407 | vnet_buffer (b[3])->l3_hdr_offset = b[3]->current_data + adv; |
| 408 | |
| 409 | if (is_l3) |
| 410 | { |
| 411 | vlib_buffer_advance (b[0], adv); |
| 412 | vlib_buffer_advance (b[1], adv); |
| 413 | vlib_buffer_advance (b[2], adv); |
| 414 | vlib_buffer_advance (b[3], adv); |
| 415 | } |
| 416 | |
| 417 | b[0]->flags |= flags; |
| 418 | b[1]->flags |= flags; |
| 419 | b[2]->flags |= flags; |
| 420 | b[3]->flags |= flags; |
| 421 | #endif |
| 422 | |
| 423 | if (!is_l3) |
| 424 | { |
| 425 | vnet_buffer (b[0])->l2.l2_len = adv; |
| 426 | vnet_buffer (b[1])->l2.l2_len = adv; |
| 427 | vnet_buffer (b[2])->l2.l2_len = adv; |
| 428 | vnet_buffer (b[3])->l2.l2_len = adv; |
| 429 | } |
| 430 | } |
| 431 | |
| 432 | static_always_inline void |
Damjan Marion | 8d6f34e | 2018-11-25 21:19:13 +0100 | [diff] [blame] | 433 | eth_input_adv_and_flags_x1 (vlib_buffer_t ** b, int is_l3) |
Damjan Marion | 650223c | 2018-11-14 16:55:53 +0100 | [diff] [blame] | 434 | { |
Damjan Marion | 8d6f34e | 2018-11-25 21:19:13 +0100 | [diff] [blame] | 435 | i16 adv = sizeof (ethernet_header_t); |
| 436 | u32 flags = VNET_BUFFER_F_L2_HDR_OFFSET_VALID | |
| 437 | VNET_BUFFER_F_L3_HDR_OFFSET_VALID; |
| 438 | |
Damjan Marion | 650223c | 2018-11-14 16:55:53 +0100 | [diff] [blame] | 439 | vnet_buffer (b[0])->l2_hdr_offset = b[0]->current_data; |
| 440 | vnet_buffer (b[0])->l3_hdr_offset = b[0]->current_data + adv; |
| 441 | |
| 442 | if (is_l3) |
| 443 | vlib_buffer_advance (b[0], adv); |
| 444 | b[0]->flags |= flags; |
| 445 | if (!is_l3) |
| 446 | vnet_buffer (b[0])->l2.l2_len = adv; |
| 447 | } |
| 448 | |
Damjan Marion | 8d6f34e | 2018-11-25 21:19:13 +0100 | [diff] [blame] | 449 | |
Damjan Marion | 650223c | 2018-11-14 16:55:53 +0100 | [diff] [blame] | 450 | static_always_inline void |
Damjan Marion | 8d6f34e | 2018-11-25 21:19:13 +0100 | [diff] [blame] | 451 | eth_input_get_etype_and_tags (vlib_buffer_t ** b, u16 * etype, u64 * tags, |
| 452 | u64 * dmacs, int offset, int dmac_check) |
Damjan Marion | 650223c | 2018-11-14 16:55:53 +0100 | [diff] [blame] | 453 | { |
Damjan Marion | 650223c | 2018-11-14 16:55:53 +0100 | [diff] [blame] | 454 | ethernet_header_t *e; |
Damjan Marion | 8d6f34e | 2018-11-25 21:19:13 +0100 | [diff] [blame] | 455 | e = vlib_buffer_get_current (b[offset]); |
| 456 | #ifdef CLIB_HAVE_VEC128 |
| 457 | u64x2 r = u64x2_load_unaligned (((u8 *) & e->type) - 6); |
| 458 | etype[offset] = ((u16x8) r)[3]; |
| 459 | tags[offset] = r[1]; |
| 460 | #else |
| 461 | etype[offset] = e->type; |
| 462 | tags[offset] = *(u64 *) (e + 1); |
| 463 | #endif |
Damjan Marion | 650223c | 2018-11-14 16:55:53 +0100 | [diff] [blame] | 464 | |
Damjan Marion | 8d6f34e | 2018-11-25 21:19:13 +0100 | [diff] [blame] | 465 | if (dmac_check) |
| 466 | dmacs[offset] = *(u64 *) e; |
| 467 | } |
Damjan Marion | 650223c | 2018-11-14 16:55:53 +0100 | [diff] [blame] | 468 | |
Damjan Marion | 8d6f34e | 2018-11-25 21:19:13 +0100 | [diff] [blame] | 469 | static_always_inline u16 |
| 470 | eth_input_next_by_type (u16 etype) |
| 471 | { |
| 472 | ethernet_main_t *em = ðernet_main; |
| 473 | |
| 474 | return (etype < 0x600) ? ETHERNET_INPUT_NEXT_LLC : |
| 475 | vec_elt (em->l3_next.input_next_by_type, |
| 476 | sparse_vec_index (em->l3_next.input_next_by_type, etype)); |
| 477 | } |
| 478 | |
| 479 | typedef struct |
| 480 | { |
| 481 | u64 tag, mask; |
| 482 | u32 sw_if_index; |
| 483 | u16 type, len, next; |
| 484 | i16 adv; |
| 485 | u8 err, n_tags; |
| 486 | u64 n_packets, n_bytes; |
| 487 | } eth_input_tag_lookup_t; |
| 488 | |
| 489 | static_always_inline void |
| 490 | eth_input_update_if_counters (vlib_main_t * vm, vnet_main_t * vnm, |
| 491 | eth_input_tag_lookup_t * l) |
| 492 | { |
| 493 | if (l->n_packets == 0 || l->sw_if_index == ~0) |
| 494 | return; |
| 495 | |
| 496 | if (l->adv > 0) |
| 497 | l->n_bytes += l->n_packets * l->len; |
| 498 | |
| 499 | vlib_increment_combined_counter |
| 500 | (vnm->interface_main.combined_sw_if_counters + |
| 501 | VNET_INTERFACE_COUNTER_RX, vm->thread_index, l->sw_if_index, |
| 502 | l->n_packets, l->n_bytes); |
| 503 | } |
| 504 | |
| 505 | static_always_inline void |
| 506 | eth_input_tag_lookup (vlib_main_t * vm, vnet_main_t * vnm, |
| 507 | vlib_node_runtime_t * node, vnet_hw_interface_t * hi, |
| 508 | u64 tag, u16 * next, vlib_buffer_t * b, |
| 509 | eth_input_tag_lookup_t * l, u8 dmac_bad, int is_dot1ad, |
| 510 | int main_is_l3, int check_dmac) |
| 511 | { |
| 512 | ethernet_main_t *em = ðernet_main; |
| 513 | |
| 514 | if ((tag ^ l->tag) & l->mask) |
Damjan Marion | 650223c | 2018-11-14 16:55:53 +0100 | [diff] [blame] | 515 | { |
Damjan Marion | 8d6f34e | 2018-11-25 21:19:13 +0100 | [diff] [blame] | 516 | main_intf_t *mif = vec_elt_at_index (em->main_intfs, hi->hw_if_index); |
| 517 | vlan_intf_t *vif; |
| 518 | qinq_intf_t *qif; |
| 519 | vlan_table_t *vlan_table; |
| 520 | qinq_table_t *qinq_table; |
| 521 | u16 *t = (u16 *) & tag; |
| 522 | u16 vlan1 = clib_net_to_host_u16 (t[0]) & 0xFFF; |
| 523 | u16 vlan2 = clib_net_to_host_u16 (t[2]) & 0xFFF; |
| 524 | u32 matched, is_l2, new_sw_if_index; |
| 525 | |
| 526 | vlan_table = vec_elt_at_index (em->vlan_pool, is_dot1ad ? |
| 527 | mif->dot1ad_vlans : mif->dot1q_vlans); |
| 528 | vif = &vlan_table->vlans[vlan1]; |
| 529 | qinq_table = vec_elt_at_index (em->qinq_pool, vif->qinqs); |
| 530 | qif = &qinq_table->vlans[vlan2]; |
| 531 | l->err = ETHERNET_ERROR_NONE; |
| 532 | l->type = clib_net_to_host_u16 (t[1]); |
| 533 | |
| 534 | if (l->type == ETHERNET_TYPE_VLAN) |
| 535 | { |
| 536 | l->type = clib_net_to_host_u16 (t[3]); |
| 537 | l->n_tags = 2; |
| 538 | matched = eth_identify_subint (hi, SUBINT_CONFIG_VALID | |
| 539 | SUBINT_CONFIG_MATCH_2_TAG, mif, vif, |
| 540 | qif, &new_sw_if_index, &l->err, |
| 541 | &is_l2); |
| 542 | } |
| 543 | else |
| 544 | { |
| 545 | l->n_tags = 1; |
| 546 | if (vlan1 == 0) |
| 547 | { |
| 548 | new_sw_if_index = hi->sw_if_index; |
| 549 | l->err = ETHERNET_ERROR_NONE; |
| 550 | matched = 1; |
| 551 | is_l2 = main_is_l3 == 0; |
| 552 | } |
| 553 | else |
| 554 | matched = eth_identify_subint (hi, SUBINT_CONFIG_VALID | |
| 555 | SUBINT_CONFIG_MATCH_1_TAG, mif, |
| 556 | vif, qif, &new_sw_if_index, |
| 557 | &l->err, &is_l2); |
| 558 | } |
| 559 | |
| 560 | if (l->sw_if_index != new_sw_if_index) |
| 561 | { |
| 562 | eth_input_update_if_counters (vm, vnm, l); |
| 563 | l->n_packets = 0; |
| 564 | l->n_bytes = 0; |
| 565 | l->sw_if_index = new_sw_if_index; |
| 566 | } |
| 567 | l->tag = tag; |
| 568 | l->mask = (l->n_tags == 2) ? |
| 569 | clib_net_to_host_u64 (0xffffffffffffffff) : |
| 570 | clib_net_to_host_u64 (0xffffffff00000000); |
| 571 | |
| 572 | if (matched && l->sw_if_index == ~0) |
| 573 | l->err = ETHERNET_ERROR_DOWN; |
| 574 | |
| 575 | l->len = sizeof (ethernet_header_t) + |
| 576 | l->n_tags * sizeof (ethernet_vlan_header_t); |
| 577 | if (main_is_l3) |
| 578 | l->adv = is_l2 ? -(int) sizeof (ethernet_header_t) : |
| 579 | l->n_tags * sizeof (ethernet_vlan_header_t); |
| 580 | else |
| 581 | l->adv = is_l2 ? 0 : l->len; |
| 582 | |
| 583 | if (PREDICT_FALSE (l->err != ETHERNET_ERROR_NONE)) |
| 584 | l->next = ETHERNET_INPUT_NEXT_DROP; |
| 585 | else if (is_l2) |
| 586 | l->next = em->l2_next; |
| 587 | else if (l->type == ETHERNET_TYPE_IP4) |
| 588 | l->next = em->l3_next.input_next_ip4; |
| 589 | else if (l->type == ETHERNET_TYPE_IP6) |
| 590 | l->next = em->l3_next.input_next_ip6; |
| 591 | else if (l->type == ETHERNET_TYPE_MPLS) |
| 592 | l->next = em->l3_next.input_next_mpls; |
| 593 | else if (em->redirect_l3) |
| 594 | l->next = em->redirect_l3_next; |
| 595 | else |
| 596 | { |
| 597 | l->next = eth_input_next_by_type (l->type); |
| 598 | if (l->next == ETHERNET_INPUT_NEXT_PUNT) |
| 599 | l->err = ETHERNET_ERROR_UNKNOWN_TYPE; |
| 600 | } |
| 601 | } |
| 602 | |
| 603 | if (check_dmac && l->adv > 0 && dmac_bad) |
| 604 | { |
| 605 | l->err = ETHERNET_ERROR_L3_MAC_MISMATCH; |
| 606 | next[0] = ETHERNET_INPUT_NEXT_PUNT; |
| 607 | } |
| 608 | else |
| 609 | next[0] = l->next; |
| 610 | |
| 611 | vlib_buffer_advance (b, l->adv); |
| 612 | vnet_buffer (b)->l2.l2_len = l->len; |
| 613 | vnet_buffer (b)->l3_hdr_offset = vnet_buffer (b)->l2_hdr_offset + l->len; |
| 614 | |
| 615 | if (l->err == ETHERNET_ERROR_NONE) |
| 616 | { |
| 617 | vnet_buffer (b)->sw_if_index[VLIB_RX] = l->sw_if_index; |
| 618 | ethernet_buffer_set_vlan_count (b, l->n_tags); |
| 619 | } |
| 620 | else |
| 621 | b->error = node->errors[l->err]; |
| 622 | |
| 623 | /* update counters */ |
| 624 | l->n_packets += 1; |
| 625 | l->n_bytes += vlib_buffer_length_in_chain (vm, b); |
| 626 | } |
| 627 | |
Matthew G Smith | d459bf3 | 2019-09-04 15:01:04 -0500 | [diff] [blame] | 628 | #define DMAC_MASK clib_net_to_host_u64 (0xFFFFFFFFFFFF0000) |
| 629 | #define DMAC_IGBIT clib_net_to_host_u64 (0x0100000000000000) |
| 630 | |
| 631 | #ifdef CLIB_HAVE_VEC256 |
| 632 | static_always_inline u32 |
| 633 | is_dmac_bad_x4 (u64 * dmacs, u64 hwaddr) |
| 634 | { |
| 635 | u64x4 r0 = u64x4_load_unaligned (dmacs) & u64x4_splat (DMAC_MASK); |
| 636 | r0 = (r0 != u64x4_splat (hwaddr)) & ((r0 & u64x4_splat (DMAC_IGBIT)) == 0); |
| 637 | return u8x32_msb_mask ((u8x32) (r0)); |
| 638 | } |
Matthew Smith | 42bde45 | 2019-11-18 09:35:24 -0600 | [diff] [blame] | 639 | #endif |
| 640 | |
Matthew G Smith | d459bf3 | 2019-09-04 15:01:04 -0500 | [diff] [blame] | 641 | static_always_inline u8 |
| 642 | is_dmac_bad (u64 dmac, u64 hwaddr) |
| 643 | { |
| 644 | u64 r0 = dmac & DMAC_MASK; |
| 645 | return (r0 != hwaddr) && ((r0 & DMAC_IGBIT) == 0); |
| 646 | } |
Matthew G Smith | d459bf3 | 2019-09-04 15:01:04 -0500 | [diff] [blame] | 647 | |
| 648 | static_always_inline u8 |
| 649 | is_sec_dmac_bad (u64 dmac, u64 hwaddr) |
| 650 | { |
| 651 | return ((dmac & DMAC_MASK) != hwaddr); |
| 652 | } |
| 653 | |
| 654 | #ifdef CLIB_HAVE_VEC256 |
| 655 | static_always_inline u32 |
| 656 | is_sec_dmac_bad_x4 (u64 * dmacs, u64 hwaddr) |
| 657 | { |
| 658 | u64x4 r0 = u64x4_load_unaligned (dmacs) & u64x4_splat (DMAC_MASK); |
| 659 | r0 = (r0 != u64x4_splat (hwaddr)); |
| 660 | return u8x32_msb_mask ((u8x32) (r0)); |
| 661 | } |
| 662 | #endif |
| 663 | |
| 664 | static_always_inline u8 |
| 665 | eth_input_sec_dmac_check_x1 (u64 hwaddr, u64 * dmac, u8 * dmac_bad) |
| 666 | { |
| 667 | dmac_bad[0] &= is_sec_dmac_bad (dmac[0], hwaddr); |
| 668 | return dmac_bad[0]; |
| 669 | } |
| 670 | |
| 671 | static_always_inline u32 |
| 672 | eth_input_sec_dmac_check_x4 (u64 hwaddr, u64 * dmac, u8 * dmac_bad) |
| 673 | { |
| 674 | #ifdef CLIB_HAVE_VEC256 |
| 675 | *(u32 *) (dmac_bad + 0) &= is_sec_dmac_bad_x4 (dmac + 0, hwaddr); |
| 676 | #else |
| 677 | dmac_bad[0] &= is_sec_dmac_bad (dmac[0], hwaddr); |
| 678 | dmac_bad[1] &= is_sec_dmac_bad (dmac[1], hwaddr); |
| 679 | dmac_bad[2] &= is_sec_dmac_bad (dmac[2], hwaddr); |
| 680 | dmac_bad[3] &= is_sec_dmac_bad (dmac[3], hwaddr); |
| 681 | #endif |
| 682 | return *(u32 *) dmac_bad; |
| 683 | } |
| 684 | |
Matthew Smith | 42bde45 | 2019-11-18 09:35:24 -0600 | [diff] [blame] | 685 | /* |
| 686 | * DMAC check for ethernet_input_inline() |
| 687 | * |
| 688 | * dmacs and dmacs_bad are arrays that are 2 elements long |
| 689 | * n_packets should be 1 or 2 for ethernet_input_inline() |
| 690 | */ |
| 691 | static_always_inline void |
| 692 | ethernet_input_inline_dmac_check (vnet_hw_interface_t * hi, |
| 693 | u64 * dmacs, u8 * dmacs_bad, |
| 694 | u32 n_packets, ethernet_interface_t * ei, |
| 695 | u8 have_sec_dmac) |
| 696 | { |
| 697 | u64 hwaddr = (*(u64 *) hi->hw_address) & DMAC_MASK; |
| 698 | u8 bad = 0; |
| 699 | |
| 700 | dmacs_bad[0] = is_dmac_bad (dmacs[0], hwaddr); |
| 701 | dmacs_bad[1] = ((n_packets > 1) & is_dmac_bad (dmacs[1], hwaddr)); |
| 702 | |
| 703 | bad = dmacs_bad[0] | dmacs_bad[1]; |
| 704 | |
| 705 | if (PREDICT_FALSE (bad && have_sec_dmac)) |
| 706 | { |
| 707 | mac_address_t *sec_addr; |
| 708 | |
| 709 | vec_foreach (sec_addr, ei->secondary_addrs) |
| 710 | { |
| 711 | hwaddr = (*(u64 *) sec_addr) & DMAC_MASK; |
| 712 | |
| 713 | bad = (eth_input_sec_dmac_check_x1 (hwaddr, dmacs, dmacs_bad) | |
| 714 | eth_input_sec_dmac_check_x1 (hwaddr, dmacs + 1, |
| 715 | dmacs_bad + 1)); |
| 716 | |
| 717 | if (!bad) |
| 718 | return; |
| 719 | } |
| 720 | } |
| 721 | } |
| 722 | |
Matthew Smith | fa20d4c | 2019-07-12 11:48:24 -0500 | [diff] [blame] | 723 | static_always_inline void |
| 724 | eth_input_process_frame_dmac_check (vnet_hw_interface_t * hi, |
| 725 | u64 * dmacs, u8 * dmacs_bad, |
Matthew G Smith | d459bf3 | 2019-09-04 15:01:04 -0500 | [diff] [blame] | 726 | u32 n_packets, ethernet_interface_t * ei, |
| 727 | u8 have_sec_dmac) |
Matthew Smith | fa20d4c | 2019-07-12 11:48:24 -0500 | [diff] [blame] | 728 | { |
Matthew G Smith | d459bf3 | 2019-09-04 15:01:04 -0500 | [diff] [blame] | 729 | u64 hwaddr = (*(u64 *) hi->hw_address) & DMAC_MASK; |
Matthew Smith | fa20d4c | 2019-07-12 11:48:24 -0500 | [diff] [blame] | 730 | u64 *dmac = dmacs; |
| 731 | u8 *dmac_bad = dmacs_bad; |
Matthew G Smith | d459bf3 | 2019-09-04 15:01:04 -0500 | [diff] [blame] | 732 | u32 bad = 0; |
Matthew Smith | fa20d4c | 2019-07-12 11:48:24 -0500 | [diff] [blame] | 733 | i32 n_left = n_packets; |
| 734 | |
| 735 | #ifdef CLIB_HAVE_VEC256 |
Matthew Smith | fa20d4c | 2019-07-12 11:48:24 -0500 | [diff] [blame] | 736 | while (n_left > 0) |
| 737 | { |
Matthew G Smith | d459bf3 | 2019-09-04 15:01:04 -0500 | [diff] [blame] | 738 | bad |= *(u32 *) (dmac_bad + 0) = is_dmac_bad_x4 (dmac + 0, hwaddr); |
| 739 | bad |= *(u32 *) (dmac_bad + 4) = is_dmac_bad_x4 (dmac + 4, hwaddr); |
Matthew Smith | fa20d4c | 2019-07-12 11:48:24 -0500 | [diff] [blame] | 740 | |
| 741 | /* next */ |
| 742 | dmac += 8; |
| 743 | dmac_bad += 8; |
| 744 | n_left -= 8; |
| 745 | } |
| 746 | #else |
| 747 | while (n_left > 0) |
| 748 | { |
Matthew G Smith | d459bf3 | 2019-09-04 15:01:04 -0500 | [diff] [blame] | 749 | bad |= dmac_bad[0] = is_dmac_bad (dmac[0], hwaddr); |
| 750 | bad |= dmac_bad[1] = is_dmac_bad (dmac[1], hwaddr); |
| 751 | bad |= dmac_bad[2] = is_dmac_bad (dmac[2], hwaddr); |
| 752 | bad |= dmac_bad[3] = is_dmac_bad (dmac[3], hwaddr); |
Matthew Smith | fa20d4c | 2019-07-12 11:48:24 -0500 | [diff] [blame] | 753 | |
| 754 | /* next */ |
| 755 | dmac += 4; |
| 756 | dmac_bad += 4; |
| 757 | n_left -= 4; |
| 758 | } |
| 759 | #endif |
Matthew G Smith | d459bf3 | 2019-09-04 15:01:04 -0500 | [diff] [blame] | 760 | |
| 761 | if (have_sec_dmac && bad) |
| 762 | { |
| 763 | mac_address_t *addr; |
| 764 | |
| 765 | vec_foreach (addr, ei->secondary_addrs) |
| 766 | { |
| 767 | u64 hwaddr = ((u64 *) addr)[0] & DMAC_MASK; |
| 768 | i32 n_left = n_packets; |
| 769 | u64 *dmac = dmacs; |
| 770 | u8 *dmac_bad = dmacs_bad; |
| 771 | |
| 772 | bad = 0; |
| 773 | |
| 774 | while (n_left > 0) |
| 775 | { |
| 776 | int adv = 0; |
| 777 | int n_bad; |
| 778 | |
| 779 | /* skip any that have already matched */ |
| 780 | if (!dmac_bad[0]) |
| 781 | { |
| 782 | dmac += 1; |
| 783 | dmac_bad += 1; |
| 784 | n_left -= 1; |
| 785 | continue; |
| 786 | } |
| 787 | |
| 788 | n_bad = clib_min (4, n_left); |
| 789 | |
| 790 | /* If >= 4 left, compare 4 together */ |
| 791 | if (n_bad == 4) |
| 792 | { |
| 793 | bad |= eth_input_sec_dmac_check_x4 (hwaddr, dmac, dmac_bad); |
| 794 | adv = 4; |
| 795 | n_bad = 0; |
| 796 | } |
| 797 | |
| 798 | /* handle individually */ |
| 799 | while (n_bad > 0) |
| 800 | { |
| 801 | bad |= eth_input_sec_dmac_check_x1 (hwaddr, dmac + adv, |
| 802 | dmac_bad + adv); |
| 803 | adv += 1; |
| 804 | n_bad -= 1; |
| 805 | } |
| 806 | |
| 807 | dmac += adv; |
| 808 | dmac_bad += adv; |
| 809 | n_left -= adv; |
| 810 | } |
| 811 | |
| 812 | if (!bad) /* can stop looping if everything matched */ |
| 813 | break; |
| 814 | } |
| 815 | } |
Matthew Smith | fa20d4c | 2019-07-12 11:48:24 -0500 | [diff] [blame] | 816 | } |
| 817 | |
Damjan Marion | 8d6f34e | 2018-11-25 21:19:13 +0100 | [diff] [blame] | 818 | /* process frame of buffers, store ethertype into array and update |
| 819 | buffer metadata fields depending on interface being l2 or l3 assuming that |
| 820 | packets are untagged. For tagged packets those fields are updated later. |
| 821 | Optionally store Destionation MAC address and tag data into arrays |
| 822 | for further processing */ |
| 823 | |
| 824 | STATIC_ASSERT (VLIB_FRAME_SIZE % 8 == 0, |
| 825 | "VLIB_FRAME_SIZE must be power of 8"); |
| 826 | static_always_inline void |
| 827 | eth_input_process_frame (vlib_main_t * vm, vlib_node_runtime_t * node, |
| 828 | vnet_hw_interface_t * hi, |
| 829 | u32 * buffer_indices, u32 n_packets, int main_is_l3, |
| 830 | int ip4_cksum_ok, int dmac_check) |
| 831 | { |
| 832 | ethernet_main_t *em = ðernet_main; |
| 833 | u16 nexts[VLIB_FRAME_SIZE], *next; |
| 834 | u16 etypes[VLIB_FRAME_SIZE], *etype = etypes; |
| 835 | u64 dmacs[VLIB_FRAME_SIZE], *dmac = dmacs; |
| 836 | u8 dmacs_bad[VLIB_FRAME_SIZE]; |
| 837 | u64 tags[VLIB_FRAME_SIZE], *tag = tags; |
| 838 | u16 slowpath_indices[VLIB_FRAME_SIZE]; |
| 839 | u16 n_slowpath, i; |
| 840 | u16 next_ip4, next_ip6, next_mpls, next_l2; |
| 841 | u16 et_ip4 = clib_host_to_net_u16 (ETHERNET_TYPE_IP4); |
| 842 | u16 et_ip6 = clib_host_to_net_u16 (ETHERNET_TYPE_IP6); |
| 843 | u16 et_mpls = clib_host_to_net_u16 (ETHERNET_TYPE_MPLS); |
| 844 | u16 et_vlan = clib_host_to_net_u16 (ETHERNET_TYPE_VLAN); |
| 845 | u16 et_dot1ad = clib_host_to_net_u16 (ETHERNET_TYPE_DOT1AD); |
| 846 | i32 n_left = n_packets; |
Zhiyong Yang | 7031288 | 2020-03-27 17:12:35 +0000 | [diff] [blame] | 847 | vlib_buffer_t *bufs[VLIB_FRAME_SIZE]; |
| 848 | vlib_buffer_t **b = bufs; |
Matthew G Smith | d459bf3 | 2019-09-04 15:01:04 -0500 | [diff] [blame] | 849 | ethernet_interface_t *ei = ethernet_get_interface (em, hi->hw_if_index); |
Damjan Marion | 8d6f34e | 2018-11-25 21:19:13 +0100 | [diff] [blame] | 850 | |
Zhiyong Yang | 7031288 | 2020-03-27 17:12:35 +0000 | [diff] [blame] | 851 | vlib_get_buffers (vm, buffer_indices, b, n_left); |
Damjan Marion | 8d6f34e | 2018-11-25 21:19:13 +0100 | [diff] [blame] | 852 | |
| 853 | while (n_left >= 20) |
| 854 | { |
| 855 | vlib_buffer_t **ph = b + 16, **pd = b + 8; |
Damjan Marion | 650223c | 2018-11-14 16:55:53 +0100 | [diff] [blame] | 856 | |
| 857 | vlib_prefetch_buffer_header (ph[0], LOAD); |
| 858 | vlib_prefetch_buffer_data (pd[0], LOAD); |
Damjan Marion | 8d6f34e | 2018-11-25 21:19:13 +0100 | [diff] [blame] | 859 | eth_input_get_etype_and_tags (b, etype, tag, dmac, 0, dmac_check); |
Damjan Marion | 650223c | 2018-11-14 16:55:53 +0100 | [diff] [blame] | 860 | |
| 861 | vlib_prefetch_buffer_header (ph[1], LOAD); |
| 862 | vlib_prefetch_buffer_data (pd[1], LOAD); |
Damjan Marion | 8d6f34e | 2018-11-25 21:19:13 +0100 | [diff] [blame] | 863 | eth_input_get_etype_and_tags (b, etype, tag, dmac, 1, dmac_check); |
Damjan Marion | 650223c | 2018-11-14 16:55:53 +0100 | [diff] [blame] | 864 | |
| 865 | vlib_prefetch_buffer_header (ph[2], LOAD); |
| 866 | vlib_prefetch_buffer_data (pd[2], LOAD); |
Damjan Marion | 8d6f34e | 2018-11-25 21:19:13 +0100 | [diff] [blame] | 867 | eth_input_get_etype_and_tags (b, etype, tag, dmac, 2, dmac_check); |
Damjan Marion | 650223c | 2018-11-14 16:55:53 +0100 | [diff] [blame] | 868 | |
| 869 | vlib_prefetch_buffer_header (ph[3], LOAD); |
| 870 | vlib_prefetch_buffer_data (pd[3], LOAD); |
Damjan Marion | 8d6f34e | 2018-11-25 21:19:13 +0100 | [diff] [blame] | 871 | eth_input_get_etype_and_tags (b, etype, tag, dmac, 3, dmac_check); |
Damjan Marion | 650223c | 2018-11-14 16:55:53 +0100 | [diff] [blame] | 872 | |
Damjan Marion | 8d6f34e | 2018-11-25 21:19:13 +0100 | [diff] [blame] | 873 | eth_input_adv_and_flags_x4 (b, main_is_l3); |
Damjan Marion | 650223c | 2018-11-14 16:55:53 +0100 | [diff] [blame] | 874 | |
| 875 | /* next */ |
Zhiyong Yang | 7031288 | 2020-03-27 17:12:35 +0000 | [diff] [blame] | 876 | b += 4; |
Damjan Marion | 650223c | 2018-11-14 16:55:53 +0100 | [diff] [blame] | 877 | n_left -= 4; |
| 878 | etype += 4; |
Damjan Marion | 8d6f34e | 2018-11-25 21:19:13 +0100 | [diff] [blame] | 879 | tag += 4; |
| 880 | dmac += 4; |
Damjan Marion | 650223c | 2018-11-14 16:55:53 +0100 | [diff] [blame] | 881 | } |
| 882 | while (n_left >= 4) |
| 883 | { |
Damjan Marion | 8d6f34e | 2018-11-25 21:19:13 +0100 | [diff] [blame] | 884 | eth_input_get_etype_and_tags (b, etype, tag, dmac, 0, dmac_check); |
| 885 | eth_input_get_etype_and_tags (b, etype, tag, dmac, 1, dmac_check); |
| 886 | eth_input_get_etype_and_tags (b, etype, tag, dmac, 2, dmac_check); |
| 887 | eth_input_get_etype_and_tags (b, etype, tag, dmac, 3, dmac_check); |
| 888 | eth_input_adv_and_flags_x4 (b, main_is_l3); |
Damjan Marion | 650223c | 2018-11-14 16:55:53 +0100 | [diff] [blame] | 889 | |
| 890 | /* next */ |
Zhiyong Yang | 7031288 | 2020-03-27 17:12:35 +0000 | [diff] [blame] | 891 | b += 4; |
Damjan Marion | 650223c | 2018-11-14 16:55:53 +0100 | [diff] [blame] | 892 | n_left -= 4; |
| 893 | etype += 4; |
Damjan Marion | 8d6f34e | 2018-11-25 21:19:13 +0100 | [diff] [blame] | 894 | tag += 4; |
| 895 | dmac += 4; |
Damjan Marion | 650223c | 2018-11-14 16:55:53 +0100 | [diff] [blame] | 896 | } |
| 897 | while (n_left) |
| 898 | { |
Damjan Marion | 8d6f34e | 2018-11-25 21:19:13 +0100 | [diff] [blame] | 899 | eth_input_get_etype_and_tags (b, etype, tag, dmac, 0, dmac_check); |
| 900 | eth_input_adv_and_flags_x1 (b, main_is_l3); |
Damjan Marion | 650223c | 2018-11-14 16:55:53 +0100 | [diff] [blame] | 901 | |
| 902 | /* next */ |
Zhiyong Yang | 7031288 | 2020-03-27 17:12:35 +0000 | [diff] [blame] | 903 | b += 1; |
Damjan Marion | 650223c | 2018-11-14 16:55:53 +0100 | [diff] [blame] | 904 | n_left -= 1; |
| 905 | etype += 1; |
Damjan Marion | 8d6f34e | 2018-11-25 21:19:13 +0100 | [diff] [blame] | 906 | tag += 1; |
Zhiyong Yang | cbe36e4 | 2020-05-09 07:13:34 +0000 | [diff] [blame] | 907 | dmac += 1; |
Damjan Marion | 650223c | 2018-11-14 16:55:53 +0100 | [diff] [blame] | 908 | } |
Damjan Marion | 8d6f34e | 2018-11-25 21:19:13 +0100 | [diff] [blame] | 909 | |
| 910 | if (dmac_check) |
Matthew G Smith | d459bf3 | 2019-09-04 15:01:04 -0500 | [diff] [blame] | 911 | { |
Matthew Smith | 4938938 | 2019-10-02 16:34:27 -0500 | [diff] [blame] | 912 | if (ei && vec_len (ei->secondary_addrs)) |
Matthew G Smith | d459bf3 | 2019-09-04 15:01:04 -0500 | [diff] [blame] | 913 | eth_input_process_frame_dmac_check (hi, dmacs, dmacs_bad, n_packets, |
| 914 | ei, 1 /* have_sec_dmac */ ); |
| 915 | else |
| 916 | eth_input_process_frame_dmac_check (hi, dmacs, dmacs_bad, n_packets, |
| 917 | ei, 0 /* have_sec_dmac */ ); |
| 918 | } |
Damjan Marion | 8d6f34e | 2018-11-25 21:19:13 +0100 | [diff] [blame] | 919 | |
| 920 | next_ip4 = em->l3_next.input_next_ip4; |
| 921 | next_ip6 = em->l3_next.input_next_ip6; |
| 922 | next_mpls = em->l3_next.input_next_mpls; |
| 923 | next_l2 = em->l2_next; |
| 924 | |
| 925 | if (next_ip4 == ETHERNET_INPUT_NEXT_IP4_INPUT && ip4_cksum_ok) |
| 926 | next_ip4 = ETHERNET_INPUT_NEXT_IP4_INPUT_NCS; |
| 927 | |
| 928 | #ifdef CLIB_HAVE_VEC256 |
| 929 | u16x16 et16_ip4 = u16x16_splat (et_ip4); |
| 930 | u16x16 et16_ip6 = u16x16_splat (et_ip6); |
| 931 | u16x16 et16_mpls = u16x16_splat (et_mpls); |
| 932 | u16x16 et16_vlan = u16x16_splat (et_vlan); |
| 933 | u16x16 et16_dot1ad = u16x16_splat (et_dot1ad); |
| 934 | u16x16 next16_ip4 = u16x16_splat (next_ip4); |
| 935 | u16x16 next16_ip6 = u16x16_splat (next_ip6); |
| 936 | u16x16 next16_mpls = u16x16_splat (next_mpls); |
| 937 | u16x16 next16_l2 = u16x16_splat (next_l2); |
| 938 | u16x16 zero = { 0 }; |
| 939 | u16x16 stairs = { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15 }; |
| 940 | #endif |
| 941 | |
| 942 | etype = etypes; |
| 943 | n_left = n_packets; |
| 944 | next = nexts; |
| 945 | n_slowpath = 0; |
| 946 | i = 0; |
| 947 | |
| 948 | /* fastpath - in l3 mode hadles ip4, ip6 and mpls packets, other packets |
| 949 | are considered as slowpath, in l2 mode all untagged packets are |
| 950 | considered as fastpath */ |
| 951 | while (n_left > 0) |
| 952 | { |
| 953 | #ifdef CLIB_HAVE_VEC256 |
| 954 | if (n_left >= 16) |
| 955 | { |
| 956 | u16x16 r = zero; |
| 957 | u16x16 e16 = u16x16_load_unaligned (etype); |
| 958 | if (main_is_l3) |
| 959 | { |
| 960 | r += (e16 == et16_ip4) & next16_ip4; |
| 961 | r += (e16 == et16_ip6) & next16_ip6; |
| 962 | r += (e16 == et16_mpls) & next16_mpls; |
| 963 | } |
| 964 | else |
| 965 | r = ((e16 != et16_vlan) & (e16 != et16_dot1ad)) & next16_l2; |
| 966 | u16x16_store_unaligned (r, next); |
| 967 | |
| 968 | if (!u16x16_is_all_zero (r == zero)) |
| 969 | { |
| 970 | if (u16x16_is_all_zero (r)) |
| 971 | { |
| 972 | u16x16_store_unaligned (u16x16_splat (i) + stairs, |
| 973 | slowpath_indices + n_slowpath); |
| 974 | n_slowpath += 16; |
| 975 | } |
| 976 | else |
| 977 | { |
| 978 | for (int j = 0; j < 16; j++) |
| 979 | if (next[j] == 0) |
| 980 | slowpath_indices[n_slowpath++] = i + j; |
| 981 | } |
| 982 | } |
| 983 | |
| 984 | etype += 16; |
| 985 | next += 16; |
| 986 | n_left -= 16; |
| 987 | i += 16; |
| 988 | continue; |
| 989 | } |
| 990 | #endif |
| 991 | if (main_is_l3 && etype[0] == et_ip4) |
| 992 | next[0] = next_ip4; |
| 993 | else if (main_is_l3 && etype[0] == et_ip6) |
| 994 | next[0] = next_ip6; |
| 995 | else if (main_is_l3 && etype[0] == et_mpls) |
| 996 | next[0] = next_mpls; |
| 997 | else if (main_is_l3 == 0 && |
| 998 | etype[0] != et_vlan && etype[0] != et_dot1ad) |
| 999 | next[0] = next_l2; |
| 1000 | else |
| 1001 | { |
| 1002 | next[0] = 0; |
| 1003 | slowpath_indices[n_slowpath++] = i; |
| 1004 | } |
| 1005 | |
| 1006 | etype += 1; |
| 1007 | next += 1; |
| 1008 | n_left -= 1; |
| 1009 | i += 1; |
| 1010 | } |
| 1011 | |
| 1012 | if (n_slowpath) |
| 1013 | { |
| 1014 | vnet_main_t *vnm = vnet_get_main (); |
| 1015 | n_left = n_slowpath; |
| 1016 | u16 *si = slowpath_indices; |
| 1017 | u32 last_unknown_etype = ~0; |
| 1018 | u32 last_unknown_next = ~0; |
| 1019 | eth_input_tag_lookup_t dot1ad_lookup, dot1q_lookup = { |
| 1020 | .mask = -1LL, |
| 1021 | .tag = tags[si[0]] ^ -1LL, |
| 1022 | .sw_if_index = ~0 |
| 1023 | }; |
| 1024 | |
| 1025 | clib_memcpy_fast (&dot1ad_lookup, &dot1q_lookup, sizeof (dot1q_lookup)); |
| 1026 | |
| 1027 | while (n_left) |
| 1028 | { |
| 1029 | i = si[0]; |
| 1030 | u16 etype = etypes[i]; |
| 1031 | |
| 1032 | if (etype == et_vlan) |
| 1033 | { |
| 1034 | vlib_buffer_t *b = vlib_get_buffer (vm, buffer_indices[i]); |
| 1035 | eth_input_tag_lookup (vm, vnm, node, hi, tags[i], nexts + i, b, |
| 1036 | &dot1q_lookup, dmacs_bad[i], 0, |
| 1037 | main_is_l3, dmac_check); |
| 1038 | |
| 1039 | } |
| 1040 | else if (etype == et_dot1ad) |
| 1041 | { |
| 1042 | vlib_buffer_t *b = vlib_get_buffer (vm, buffer_indices[i]); |
| 1043 | eth_input_tag_lookup (vm, vnm, node, hi, tags[i], nexts + i, b, |
| 1044 | &dot1ad_lookup, dmacs_bad[i], 1, |
| 1045 | main_is_l3, dmac_check); |
| 1046 | } |
| 1047 | else |
| 1048 | { |
| 1049 | /* untagged packet with not well known etyertype */ |
| 1050 | if (last_unknown_etype != etype) |
| 1051 | { |
| 1052 | last_unknown_etype = etype; |
| 1053 | etype = clib_host_to_net_u16 (etype); |
| 1054 | last_unknown_next = eth_input_next_by_type (etype); |
| 1055 | } |
| 1056 | if (dmac_check && main_is_l3 && dmacs_bad[i]) |
| 1057 | { |
| 1058 | vlib_buffer_t *b = vlib_get_buffer (vm, buffer_indices[i]); |
| 1059 | b->error = node->errors[ETHERNET_ERROR_L3_MAC_MISMATCH]; |
| 1060 | nexts[i] = ETHERNET_INPUT_NEXT_PUNT; |
| 1061 | } |
| 1062 | else |
| 1063 | nexts[i] = last_unknown_next; |
| 1064 | } |
| 1065 | |
| 1066 | /* next */ |
| 1067 | n_left--; |
| 1068 | si++; |
| 1069 | } |
| 1070 | |
| 1071 | eth_input_update_if_counters (vm, vnm, &dot1q_lookup); |
| 1072 | eth_input_update_if_counters (vm, vnm, &dot1ad_lookup); |
| 1073 | } |
| 1074 | |
| 1075 | vlib_buffer_enqueue_to_next (vm, node, buffer_indices, nexts, n_packets); |
Damjan Marion | 650223c | 2018-11-14 16:55:53 +0100 | [diff] [blame] | 1076 | } |
| 1077 | |
| 1078 | static_always_inline void |
Damjan Marion | 8d6f34e | 2018-11-25 21:19:13 +0100 | [diff] [blame] | 1079 | eth_input_single_int (vlib_main_t * vm, vlib_node_runtime_t * node, |
| 1080 | vnet_hw_interface_t * hi, u32 * from, u32 n_pkts, |
| 1081 | int ip4_cksum_ok) |
Damjan Marion | 650223c | 2018-11-14 16:55:53 +0100 | [diff] [blame] | 1082 | { |
Damjan Marion | 8d6f34e | 2018-11-25 21:19:13 +0100 | [diff] [blame] | 1083 | ethernet_main_t *em = ðernet_main; |
| 1084 | ethernet_interface_t *ei; |
| 1085 | ei = pool_elt_at_index (em->interfaces, hi->hw_instance); |
| 1086 | main_intf_t *intf0 = vec_elt_at_index (em->main_intfs, hi->hw_if_index); |
| 1087 | subint_config_t *subint0 = &intf0->untagged_subint; |
Damjan Marion | 650223c | 2018-11-14 16:55:53 +0100 | [diff] [blame] | 1088 | |
Damjan Marion | 8d6f34e | 2018-11-25 21:19:13 +0100 | [diff] [blame] | 1089 | int main_is_l3 = (subint0->flags & SUBINT_CONFIG_L2) == 0; |
John Lo | 4a302ee | 2020-05-12 22:34:39 -0400 | [diff] [blame] | 1090 | int int_is_l3 = ei->flags & ETHERNET_INTERFACE_FLAG_STATUS_L3; |
Damjan Marion | 650223c | 2018-11-14 16:55:53 +0100 | [diff] [blame] | 1091 | |
Damjan Marion | 8d6f34e | 2018-11-25 21:19:13 +0100 | [diff] [blame] | 1092 | if (main_is_l3) |
Damjan Marion | 650223c | 2018-11-14 16:55:53 +0100 | [diff] [blame] | 1093 | { |
John Lo | 4a302ee | 2020-05-12 22:34:39 -0400 | [diff] [blame] | 1094 | if (int_is_l3 || /* DMAC filter already done by NIC */ |
| 1095 | ((hi->l2_if_count != 0) && (hi->l3_if_count == 0))) |
| 1096 | { /* All L2 usage - DMAC check not needed */ |
| 1097 | eth_input_process_frame (vm, node, hi, from, n_pkts, |
| 1098 | /*is_l3 */ 1, ip4_cksum_ok, 0); |
| 1099 | } |
Damjan Marion | 650223c | 2018-11-14 16:55:53 +0100 | [diff] [blame] | 1100 | else |
John Lo | 4a302ee | 2020-05-12 22:34:39 -0400 | [diff] [blame] | 1101 | { /* DMAC check needed for L3 */ |
| 1102 | eth_input_process_frame (vm, node, hi, from, n_pkts, |
| 1103 | /*is_l3 */ 1, ip4_cksum_ok, 1); |
| 1104 | } |
Damjan Marion | 8d6f34e | 2018-11-25 21:19:13 +0100 | [diff] [blame] | 1105 | return; |
Damjan Marion | 650223c | 2018-11-14 16:55:53 +0100 | [diff] [blame] | 1106 | } |
Damjan Marion | 8d6f34e | 2018-11-25 21:19:13 +0100 | [diff] [blame] | 1107 | else |
Damjan Marion | 650223c | 2018-11-14 16:55:53 +0100 | [diff] [blame] | 1108 | { |
John Lo | 4a302ee | 2020-05-12 22:34:39 -0400 | [diff] [blame] | 1109 | if (hi->l3_if_count == 0) |
| 1110 | { /* All L2 usage - DMAC check not needed */ |
| 1111 | eth_input_process_frame (vm, node, hi, from, n_pkts, |
| 1112 | /*is_l3 */ 0, ip4_cksum_ok, 0); |
| 1113 | } |
| 1114 | else |
| 1115 | { /* DMAC check needed for L3 */ |
| 1116 | eth_input_process_frame (vm, node, hi, from, n_pkts, |
| 1117 | /*is_l3 */ 0, ip4_cksum_ok, 1); |
| 1118 | } |
Damjan Marion | 8d6f34e | 2018-11-25 21:19:13 +0100 | [diff] [blame] | 1119 | return; |
Damjan Marion | 650223c | 2018-11-14 16:55:53 +0100 | [diff] [blame] | 1120 | } |
| 1121 | } |
| 1122 | |
| 1123 | static_always_inline void |
| 1124 | ethernet_input_trace (vlib_main_t * vm, vlib_node_runtime_t * node, |
| 1125 | vlib_frame_t * from_frame) |
| 1126 | { |
| 1127 | u32 *from, n_left; |
Benoît Ganne | 9847792 | 2019-04-10 14:21:11 +0200 | [diff] [blame] | 1128 | if (PREDICT_FALSE ((node->flags & VLIB_NODE_FLAG_TRACE))) |
Damjan Marion | 650223c | 2018-11-14 16:55:53 +0100 | [diff] [blame] | 1129 | { |
Dave Barach | 5ecd5a5 | 2019-02-25 15:27:28 -0500 | [diff] [blame] | 1130 | from = vlib_frame_vector_args (from_frame); |
| 1131 | n_left = from_frame->n_vectors; |
Damjan Marion | 650223c | 2018-11-14 16:55:53 +0100 | [diff] [blame] | 1132 | |
Dave Barach | 5ecd5a5 | 2019-02-25 15:27:28 -0500 | [diff] [blame] | 1133 | while (n_left) |
Damjan Marion | 650223c | 2018-11-14 16:55:53 +0100 | [diff] [blame] | 1134 | { |
Dave Barach | 5ecd5a5 | 2019-02-25 15:27:28 -0500 | [diff] [blame] | 1135 | ethernet_input_trace_t *t0; |
| 1136 | vlib_buffer_t *b0 = vlib_get_buffer (vm, from[0]); |
| 1137 | |
| 1138 | if (b0->flags & VLIB_BUFFER_IS_TRACED) |
| 1139 | { |
| 1140 | t0 = vlib_add_trace (vm, node, b0, |
| 1141 | sizeof (ethernet_input_trace_t)); |
| 1142 | clib_memcpy_fast (t0->packet_data, b0->data + b0->current_data, |
| 1143 | sizeof (t0->packet_data)); |
| 1144 | t0->frame_flags = from_frame->flags; |
| 1145 | clib_memcpy_fast (&t0->frame_data, |
| 1146 | vlib_frame_scalar_args (from_frame), |
| 1147 | sizeof (ethernet_input_frame_t)); |
| 1148 | } |
| 1149 | from += 1; |
| 1150 | n_left -= 1; |
Damjan Marion | 650223c | 2018-11-14 16:55:53 +0100 | [diff] [blame] | 1151 | } |
Dave Barach | 5ecd5a5 | 2019-02-25 15:27:28 -0500 | [diff] [blame] | 1152 | } |
| 1153 | |
| 1154 | /* rx pcap capture if enabled */ |
Dave Barach | 3390977 | 2019-09-23 10:27:27 -0400 | [diff] [blame] | 1155 | if (PREDICT_FALSE (vlib_global_main.pcap.pcap_rx_enable)) |
Dave Barach | 5ecd5a5 | 2019-02-25 15:27:28 -0500 | [diff] [blame] | 1156 | { |
| 1157 | u32 bi0; |
Dave Barach | 3390977 | 2019-09-23 10:27:27 -0400 | [diff] [blame] | 1158 | vnet_pcap_t *pp = &vlib_global_main.pcap; |
Dave Barach | 5ecd5a5 | 2019-02-25 15:27:28 -0500 | [diff] [blame] | 1159 | |
| 1160 | from = vlib_frame_vector_args (from_frame); |
| 1161 | n_left = from_frame->n_vectors; |
| 1162 | while (n_left > 0) |
| 1163 | { |
Dave Barach | 9137e54 | 2019-09-13 17:47:50 -0400 | [diff] [blame] | 1164 | int classify_filter_result; |
Dave Barach | 5ecd5a5 | 2019-02-25 15:27:28 -0500 | [diff] [blame] | 1165 | vlib_buffer_t *b0; |
| 1166 | bi0 = from[0]; |
| 1167 | from++; |
Dave Barach | 9137e54 | 2019-09-13 17:47:50 -0400 | [diff] [blame] | 1168 | n_left--; |
Dave Barach | 5ecd5a5 | 2019-02-25 15:27:28 -0500 | [diff] [blame] | 1169 | b0 = vlib_get_buffer (vm, bi0); |
Dave Barach | f5667c3 | 2019-09-25 11:27:46 -0400 | [diff] [blame] | 1170 | if (pp->filter_classify_table_index != ~0) |
Dave Barach | 9137e54 | 2019-09-13 17:47:50 -0400 | [diff] [blame] | 1171 | { |
| 1172 | classify_filter_result = |
| 1173 | vnet_is_packet_traced_inline |
Dave Barach | f5667c3 | 2019-09-25 11:27:46 -0400 | [diff] [blame] | 1174 | (b0, pp->filter_classify_table_index, 0 /* full classify */ ); |
Dave Barach | 9137e54 | 2019-09-13 17:47:50 -0400 | [diff] [blame] | 1175 | if (classify_filter_result) |
Dave Barach | 3390977 | 2019-09-23 10:27:27 -0400 | [diff] [blame] | 1176 | pcap_add_buffer (&pp->pcap_main, vm, bi0, |
| 1177 | pp->max_bytes_per_pkt); |
Dave Barach | 9137e54 | 2019-09-13 17:47:50 -0400 | [diff] [blame] | 1178 | continue; |
| 1179 | } |
Dave Barach | 5ecd5a5 | 2019-02-25 15:27:28 -0500 | [diff] [blame] | 1180 | |
Dave Barach | 3390977 | 2019-09-23 10:27:27 -0400 | [diff] [blame] | 1181 | if (pp->pcap_sw_if_index == 0 || |
| 1182 | pp->pcap_sw_if_index == vnet_buffer (b0)->sw_if_index[VLIB_RX]) |
Dave Barach | 5ecd5a5 | 2019-02-25 15:27:28 -0500 | [diff] [blame] | 1183 | { |
Dave Barach | d28437c | 2019-11-20 09:28:31 -0500 | [diff] [blame] | 1184 | vnet_main_t *vnm = vnet_get_main (); |
| 1185 | vnet_hw_interface_t *hi = |
| 1186 | vnet_get_sup_hw_interface |
| 1187 | (vnm, vnet_buffer (b0)->sw_if_index[VLIB_RX]); |
| 1188 | |
| 1189 | /* Capture pkt if not filtered, or if filter hits */ |
| 1190 | if (hi->trace_classify_table_index == ~0 || |
| 1191 | vnet_is_packet_traced_inline |
| 1192 | (b0, hi->trace_classify_table_index, |
| 1193 | 0 /* full classify */ )) |
| 1194 | pcap_add_buffer (&pp->pcap_main, vm, bi0, |
| 1195 | pp->max_bytes_per_pkt); |
Dave Barach | 5ecd5a5 | 2019-02-25 15:27:28 -0500 | [diff] [blame] | 1196 | } |
Dave Barach | 5ecd5a5 | 2019-02-25 15:27:28 -0500 | [diff] [blame] | 1197 | } |
Damjan Marion | 650223c | 2018-11-14 16:55:53 +0100 | [diff] [blame] | 1198 | } |
| 1199 | } |
| 1200 | |
| 1201 | static_always_inline void |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1202 | ethernet_input_inline (vlib_main_t * vm, |
| 1203 | vlib_node_runtime_t * node, |
Damjan Marion | 650223c | 2018-11-14 16:55:53 +0100 | [diff] [blame] | 1204 | u32 * from, u32 n_packets, |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1205 | ethernet_input_variant_t variant) |
| 1206 | { |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 1207 | vnet_main_t *vnm = vnet_get_main (); |
| 1208 | ethernet_main_t *em = ðernet_main; |
| 1209 | vlib_node_runtime_t *error_node; |
Damjan Marion | 650223c | 2018-11-14 16:55:53 +0100 | [diff] [blame] | 1210 | u32 n_left_from, next_index, *to_next; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1211 | u32 stats_sw_if_index, stats_n_packets, stats_n_bytes; |
Damjan Marion | 067cd62 | 2018-07-11 12:47:43 +0200 | [diff] [blame] | 1212 | u32 thread_index = vm->thread_index; |
Dave Barach | cfba1e2 | 2016-11-16 10:23:50 -0500 | [diff] [blame] | 1213 | u32 cached_sw_if_index = ~0; |
| 1214 | u32 cached_is_l2 = 0; /* shut up gcc */ |
John Lo | 1904c47 | 2017-03-10 17:15:22 -0500 | [diff] [blame] | 1215 | vnet_hw_interface_t *hi = NULL; /* used for main interface only */ |
Matthew Smith | 42bde45 | 2019-11-18 09:35:24 -0600 | [diff] [blame] | 1216 | ethernet_interface_t *ei = NULL; |
Zhiyong Yang | b3ca33f | 2019-04-24 04:13:27 -0400 | [diff] [blame] | 1217 | vlib_buffer_t *bufs[VLIB_FRAME_SIZE]; |
| 1218 | vlib_buffer_t **b = bufs; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1219 | |
| 1220 | if (variant != ETHERNET_INPUT_VARIANT_ETHERNET) |
| 1221 | error_node = vlib_node_get_runtime (vm, ethernet_input_node.index); |
| 1222 | else |
| 1223 | error_node = node; |
| 1224 | |
Damjan Marion | 650223c | 2018-11-14 16:55:53 +0100 | [diff] [blame] | 1225 | n_left_from = n_packets; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1226 | |
| 1227 | next_index = node->cached_next_index; |
| 1228 | stats_sw_if_index = node->runtime_data[0]; |
| 1229 | stats_n_packets = stats_n_bytes = 0; |
Zhiyong Yang | b3ca33f | 2019-04-24 04:13:27 -0400 | [diff] [blame] | 1230 | vlib_get_buffers (vm, from, bufs, n_left_from); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1231 | |
| 1232 | while (n_left_from > 0) |
| 1233 | { |
| 1234 | u32 n_left_to_next; |
| 1235 | |
| 1236 | vlib_get_next_frame (vm, node, next_index, to_next, n_left_to_next); |
| 1237 | |
| 1238 | while (n_left_from >= 4 && n_left_to_next >= 2) |
| 1239 | { |
| 1240 | u32 bi0, bi1; |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 1241 | vlib_buffer_t *b0, *b1; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1242 | u8 next0, next1, error0, error1; |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 1243 | u16 type0, orig_type0, type1, orig_type1; |
| 1244 | u16 outer_id0, inner_id0, outer_id1, inner_id1; |
| 1245 | u32 match_flags0, match_flags1; |
| 1246 | u32 old_sw_if_index0, new_sw_if_index0, len0, old_sw_if_index1, |
| 1247 | new_sw_if_index1, len1; |
| 1248 | vnet_hw_interface_t *hi0, *hi1; |
| 1249 | main_intf_t *main_intf0, *main_intf1; |
| 1250 | vlan_intf_t *vlan_intf0, *vlan_intf1; |
| 1251 | qinq_intf_t *qinq_intf0, *qinq_intf1; |
| 1252 | u32 is_l20, is_l21; |
Dave Barach | cfba1e2 | 2016-11-16 10:23:50 -0500 | [diff] [blame] | 1253 | ethernet_header_t *e0, *e1; |
Matthew Smith | 42bde45 | 2019-11-18 09:35:24 -0600 | [diff] [blame] | 1254 | u64 dmacs[2]; |
| 1255 | u8 dmacs_bad[2]; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1256 | |
| 1257 | /* Prefetch next iteration. */ |
| 1258 | { |
Zhiyong Yang | b3ca33f | 2019-04-24 04:13:27 -0400 | [diff] [blame] | 1259 | vlib_prefetch_buffer_header (b[2], STORE); |
| 1260 | vlib_prefetch_buffer_header (b[3], STORE); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1261 | |
Zhiyong Yang | b3ca33f | 2019-04-24 04:13:27 -0400 | [diff] [blame] | 1262 | CLIB_PREFETCH (b[2]->data, sizeof (ethernet_header_t), LOAD); |
| 1263 | CLIB_PREFETCH (b[3]->data, sizeof (ethernet_header_t), LOAD); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1264 | } |
| 1265 | |
| 1266 | bi0 = from[0]; |
| 1267 | bi1 = from[1]; |
| 1268 | to_next[0] = bi0; |
| 1269 | to_next[1] = bi1; |
| 1270 | from += 2; |
| 1271 | to_next += 2; |
| 1272 | n_left_to_next -= 2; |
| 1273 | n_left_from -= 2; |
| 1274 | |
Zhiyong Yang | b3ca33f | 2019-04-24 04:13:27 -0400 | [diff] [blame] | 1275 | b0 = b[0]; |
| 1276 | b1 = b[1]; |
| 1277 | b += 2; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1278 | |
| 1279 | error0 = error1 = ETHERNET_ERROR_NONE; |
Dave Barach | cfba1e2 | 2016-11-16 10:23:50 -0500 | [diff] [blame] | 1280 | e0 = vlib_buffer_get_current (b0); |
| 1281 | type0 = clib_net_to_host_u16 (e0->type); |
| 1282 | e1 = vlib_buffer_get_current (b1); |
| 1283 | type1 = clib_net_to_host_u16 (e1->type); |
| 1284 | |
Andrew Yourtchenko | 20e6d36 | 2018-10-05 20:36:03 +0200 | [diff] [blame] | 1285 | /* Set the L2 header offset for all packets */ |
| 1286 | vnet_buffer (b0)->l2_hdr_offset = b0->current_data; |
| 1287 | vnet_buffer (b1)->l2_hdr_offset = b1->current_data; |
| 1288 | b0->flags |= VNET_BUFFER_F_L2_HDR_OFFSET_VALID; |
| 1289 | b1->flags |= VNET_BUFFER_F_L2_HDR_OFFSET_VALID; |
| 1290 | |
John Lo | cc53285 | 2016-12-14 15:42:45 -0500 | [diff] [blame] | 1291 | /* Speed-path for the untagged case */ |
Dave Barach | cfba1e2 | 2016-11-16 10:23:50 -0500 | [diff] [blame] | 1292 | if (PREDICT_TRUE (variant == ETHERNET_INPUT_VARIANT_ETHERNET |
Damjan Marion | c6969b5 | 2018-02-19 12:14:06 +0100 | [diff] [blame] | 1293 | && !ethernet_frame_is_any_tagged_x2 (type0, |
| 1294 | type1))) |
Dave Barach | cfba1e2 | 2016-11-16 10:23:50 -0500 | [diff] [blame] | 1295 | { |
| 1296 | main_intf_t *intf0; |
| 1297 | subint_config_t *subint0; |
| 1298 | u32 sw_if_index0, sw_if_index1; |
| 1299 | |
| 1300 | sw_if_index0 = vnet_buffer (b0)->sw_if_index[VLIB_RX]; |
| 1301 | sw_if_index1 = vnet_buffer (b1)->sw_if_index[VLIB_RX]; |
| 1302 | is_l20 = cached_is_l2; |
| 1303 | |
| 1304 | /* This is probably wholly unnecessary */ |
| 1305 | if (PREDICT_FALSE (sw_if_index0 != sw_if_index1)) |
| 1306 | goto slowpath; |
| 1307 | |
John Lo | 1904c47 | 2017-03-10 17:15:22 -0500 | [diff] [blame] | 1308 | /* Now sw_if_index0 == sw_if_index1 */ |
Dave Barach | cfba1e2 | 2016-11-16 10:23:50 -0500 | [diff] [blame] | 1309 | if (PREDICT_FALSE (cached_sw_if_index != sw_if_index0)) |
| 1310 | { |
| 1311 | cached_sw_if_index = sw_if_index0; |
John Lo | 1904c47 | 2017-03-10 17:15:22 -0500 | [diff] [blame] | 1312 | hi = vnet_get_sup_hw_interface (vnm, sw_if_index0); |
Matthew Smith | 42bde45 | 2019-11-18 09:35:24 -0600 | [diff] [blame] | 1313 | ei = ethernet_get_interface (em, hi->hw_if_index); |
John Lo | 1904c47 | 2017-03-10 17:15:22 -0500 | [diff] [blame] | 1314 | intf0 = vec_elt_at_index (em->main_intfs, hi->hw_if_index); |
Dave Barach | cfba1e2 | 2016-11-16 10:23:50 -0500 | [diff] [blame] | 1315 | subint0 = &intf0->untagged_subint; |
| 1316 | cached_is_l2 = is_l20 = subint0->flags & SUBINT_CONFIG_L2; |
| 1317 | } |
John Lo | 7714b30 | 2016-12-20 16:59:02 -0500 | [diff] [blame] | 1318 | |
Dave Barach | cfba1e2 | 2016-11-16 10:23:50 -0500 | [diff] [blame] | 1319 | if (PREDICT_TRUE (is_l20 != 0)) |
| 1320 | { |
Andrew Yourtchenko | 20e6d36 | 2018-10-05 20:36:03 +0200 | [diff] [blame] | 1321 | vnet_buffer (b0)->l3_hdr_offset = |
| 1322 | vnet_buffer (b0)->l2_hdr_offset + |
| 1323 | sizeof (ethernet_header_t); |
| 1324 | vnet_buffer (b1)->l3_hdr_offset = |
| 1325 | vnet_buffer (b1)->l2_hdr_offset + |
| 1326 | sizeof (ethernet_header_t); |
| 1327 | b0->flags |= VNET_BUFFER_F_L3_HDR_OFFSET_VALID; |
| 1328 | b1->flags |= VNET_BUFFER_F_L3_HDR_OFFSET_VALID; |
Dave Barach | cfba1e2 | 2016-11-16 10:23:50 -0500 | [diff] [blame] | 1329 | next0 = em->l2_next; |
| 1330 | vnet_buffer (b0)->l2.l2_len = sizeof (ethernet_header_t); |
Dave Barach | cfba1e2 | 2016-11-16 10:23:50 -0500 | [diff] [blame] | 1331 | next1 = em->l2_next; |
| 1332 | vnet_buffer (b1)->l2.l2_len = sizeof (ethernet_header_t); |
Dave Barach | cfba1e2 | 2016-11-16 10:23:50 -0500 | [diff] [blame] | 1333 | } |
John Lo | cc53285 | 2016-12-14 15:42:45 -0500 | [diff] [blame] | 1334 | else |
| 1335 | { |
Ivan Shvedunov | 7286943 | 2020-10-15 13:19:35 +0300 | [diff] [blame^] | 1336 | if (ei->flags & ETHERNET_INTERFACE_FLAG_STATUS_L3) |
John Lo | 4a302ee | 2020-05-12 22:34:39 -0400 | [diff] [blame] | 1337 | goto skip_dmac_check01; |
| 1338 | |
Matthew Smith | 42bde45 | 2019-11-18 09:35:24 -0600 | [diff] [blame] | 1339 | dmacs[0] = *(u64 *) e0; |
| 1340 | dmacs[1] = *(u64 *) e1; |
| 1341 | |
| 1342 | if (ei && vec_len (ei->secondary_addrs)) |
| 1343 | ethernet_input_inline_dmac_check (hi, dmacs, |
| 1344 | dmacs_bad, |
| 1345 | 2 /* n_packets */ , |
| 1346 | ei, |
| 1347 | 1 /* have_sec_dmac */ ); |
| 1348 | else |
| 1349 | ethernet_input_inline_dmac_check (hi, dmacs, |
| 1350 | dmacs_bad, |
| 1351 | 2 /* n_packets */ , |
| 1352 | ei, |
| 1353 | 0 /* have_sec_dmac */ ); |
| 1354 | |
| 1355 | if (dmacs_bad[0]) |
John Lo | 1904c47 | 2017-03-10 17:15:22 -0500 | [diff] [blame] | 1356 | error0 = ETHERNET_ERROR_L3_MAC_MISMATCH; |
Matthew Smith | 42bde45 | 2019-11-18 09:35:24 -0600 | [diff] [blame] | 1357 | if (dmacs_bad[1]) |
John Lo | 1904c47 | 2017-03-10 17:15:22 -0500 | [diff] [blame] | 1358 | error1 = ETHERNET_ERROR_L3_MAC_MISMATCH; |
Matthew Smith | 42bde45 | 2019-11-18 09:35:24 -0600 | [diff] [blame] | 1359 | |
John Lo | 4a302ee | 2020-05-12 22:34:39 -0400 | [diff] [blame] | 1360 | skip_dmac_check01: |
John Lo | b14826e | 2018-04-18 15:52:23 -0400 | [diff] [blame] | 1361 | vlib_buffer_advance (b0, sizeof (ethernet_header_t)); |
John Lo | cc53285 | 2016-12-14 15:42:45 -0500 | [diff] [blame] | 1362 | determine_next_node (em, variant, 0, type0, b0, |
| 1363 | &error0, &next0); |
John Lo | b14826e | 2018-04-18 15:52:23 -0400 | [diff] [blame] | 1364 | vlib_buffer_advance (b1, sizeof (ethernet_header_t)); |
John Lo | cc53285 | 2016-12-14 15:42:45 -0500 | [diff] [blame] | 1365 | determine_next_node (em, variant, 0, type1, b1, |
| 1366 | &error1, &next1); |
John Lo | cc53285 | 2016-12-14 15:42:45 -0500 | [diff] [blame] | 1367 | } |
| 1368 | goto ship_it01; |
Dave Barach | cfba1e2 | 2016-11-16 10:23:50 -0500 | [diff] [blame] | 1369 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1370 | |
John Lo | cc53285 | 2016-12-14 15:42:45 -0500 | [diff] [blame] | 1371 | /* Slow-path for the tagged case */ |
| 1372 | slowpath: |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 1373 | parse_header (variant, |
| 1374 | b0, |
| 1375 | &type0, |
| 1376 | &orig_type0, &outer_id0, &inner_id0, &match_flags0); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1377 | |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 1378 | parse_header (variant, |
| 1379 | b1, |
| 1380 | &type1, |
| 1381 | &orig_type1, &outer_id1, &inner_id1, &match_flags1); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1382 | |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 1383 | old_sw_if_index0 = vnet_buffer (b0)->sw_if_index[VLIB_RX]; |
| 1384 | old_sw_if_index1 = vnet_buffer (b1)->sw_if_index[VLIB_RX]; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1385 | |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 1386 | eth_vlan_table_lookups (em, |
| 1387 | vnm, |
| 1388 | old_sw_if_index0, |
| 1389 | orig_type0, |
| 1390 | outer_id0, |
| 1391 | inner_id0, |
| 1392 | &hi0, |
| 1393 | &main_intf0, &vlan_intf0, &qinq_intf0); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1394 | |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 1395 | eth_vlan_table_lookups (em, |
| 1396 | vnm, |
| 1397 | old_sw_if_index1, |
| 1398 | orig_type1, |
| 1399 | outer_id1, |
| 1400 | inner_id1, |
| 1401 | &hi1, |
| 1402 | &main_intf1, &vlan_intf1, &qinq_intf1); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1403 | |
Ivan Shvedunov | 7286943 | 2020-10-15 13:19:35 +0300 | [diff] [blame^] | 1404 | identify_subint (em, |
| 1405 | hi0, |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 1406 | b0, |
| 1407 | match_flags0, |
| 1408 | main_intf0, |
| 1409 | vlan_intf0, |
| 1410 | qinq_intf0, &new_sw_if_index0, &error0, &is_l20); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1411 | |
Ivan Shvedunov | 7286943 | 2020-10-15 13:19:35 +0300 | [diff] [blame^] | 1412 | identify_subint (em, |
| 1413 | hi1, |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 1414 | b1, |
| 1415 | match_flags1, |
| 1416 | main_intf1, |
| 1417 | vlan_intf1, |
| 1418 | qinq_intf1, &new_sw_if_index1, &error1, &is_l21); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1419 | |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 1420 | // Save RX sw_if_index for later nodes |
| 1421 | vnet_buffer (b0)->sw_if_index[VLIB_RX] = |
| 1422 | error0 != |
| 1423 | ETHERNET_ERROR_NONE ? old_sw_if_index0 : new_sw_if_index0; |
| 1424 | vnet_buffer (b1)->sw_if_index[VLIB_RX] = |
| 1425 | error1 != |
| 1426 | ETHERNET_ERROR_NONE ? old_sw_if_index1 : new_sw_if_index1; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1427 | |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 1428 | // Check if there is a stat to take (valid and non-main sw_if_index for pkt 0 or pkt 1) |
| 1429 | if (((new_sw_if_index0 != ~0) |
| 1430 | && (new_sw_if_index0 != old_sw_if_index0)) |
| 1431 | || ((new_sw_if_index1 != ~0) |
| 1432 | && (new_sw_if_index1 != old_sw_if_index1))) |
| 1433 | { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1434 | |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 1435 | len0 = vlib_buffer_length_in_chain (vm, b0) + b0->current_data |
Damjan Marion | 072401e | 2017-07-13 18:53:27 +0200 | [diff] [blame] | 1436 | - vnet_buffer (b0)->l2_hdr_offset; |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 1437 | len1 = vlib_buffer_length_in_chain (vm, b1) + b1->current_data |
Damjan Marion | 072401e | 2017-07-13 18:53:27 +0200 | [diff] [blame] | 1438 | - vnet_buffer (b1)->l2_hdr_offset; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1439 | |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 1440 | stats_n_packets += 2; |
| 1441 | stats_n_bytes += len0 + len1; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1442 | |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 1443 | if (PREDICT_FALSE |
| 1444 | (!(new_sw_if_index0 == stats_sw_if_index |
| 1445 | && new_sw_if_index1 == stats_sw_if_index))) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1446 | { |
| 1447 | stats_n_packets -= 2; |
| 1448 | stats_n_bytes -= len0 + len1; |
| 1449 | |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 1450 | if (new_sw_if_index0 != old_sw_if_index0 |
| 1451 | && new_sw_if_index0 != ~0) |
| 1452 | vlib_increment_combined_counter (vnm-> |
| 1453 | interface_main.combined_sw_if_counters |
| 1454 | + |
| 1455 | VNET_INTERFACE_COUNTER_RX, |
Damjan Marion | 586afd7 | 2017-04-05 19:18:20 +0200 | [diff] [blame] | 1456 | thread_index, |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 1457 | new_sw_if_index0, 1, |
| 1458 | len0); |
| 1459 | if (new_sw_if_index1 != old_sw_if_index1 |
| 1460 | && new_sw_if_index1 != ~0) |
| 1461 | vlib_increment_combined_counter (vnm-> |
| 1462 | interface_main.combined_sw_if_counters |
| 1463 | + |
| 1464 | VNET_INTERFACE_COUNTER_RX, |
Damjan Marion | 586afd7 | 2017-04-05 19:18:20 +0200 | [diff] [blame] | 1465 | thread_index, |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 1466 | new_sw_if_index1, 1, |
| 1467 | len1); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1468 | |
| 1469 | if (new_sw_if_index0 == new_sw_if_index1) |
| 1470 | { |
| 1471 | if (stats_n_packets > 0) |
| 1472 | { |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 1473 | vlib_increment_combined_counter |
| 1474 | (vnm->interface_main.combined_sw_if_counters |
| 1475 | + VNET_INTERFACE_COUNTER_RX, |
Damjan Marion | 586afd7 | 2017-04-05 19:18:20 +0200 | [diff] [blame] | 1476 | thread_index, |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 1477 | stats_sw_if_index, |
| 1478 | stats_n_packets, stats_n_bytes); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1479 | stats_n_packets = stats_n_bytes = 0; |
| 1480 | } |
| 1481 | stats_sw_if_index = new_sw_if_index0; |
| 1482 | } |
| 1483 | } |
| 1484 | } |
| 1485 | |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 1486 | if (variant == ETHERNET_INPUT_VARIANT_NOT_L2) |
| 1487 | is_l20 = is_l21 = 0; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1488 | |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 1489 | determine_next_node (em, variant, is_l20, type0, b0, &error0, |
| 1490 | &next0); |
| 1491 | determine_next_node (em, variant, is_l21, type1, b1, &error1, |
| 1492 | &next1); |
| 1493 | |
John Lo | 1904c47 | 2017-03-10 17:15:22 -0500 | [diff] [blame] | 1494 | ship_it01: |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1495 | b0->error = error_node->errors[error0]; |
| 1496 | b1->error = error_node->errors[error1]; |
| 1497 | |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 1498 | // verify speculative enqueue |
| 1499 | vlib_validate_buffer_enqueue_x2 (vm, node, next_index, to_next, |
| 1500 | n_left_to_next, bi0, bi1, next0, |
| 1501 | next1); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1502 | } |
| 1503 | |
| 1504 | while (n_left_from > 0 && n_left_to_next > 0) |
| 1505 | { |
| 1506 | u32 bi0; |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 1507 | vlib_buffer_t *b0; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1508 | u8 error0, next0; |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 1509 | u16 type0, orig_type0; |
| 1510 | u16 outer_id0, inner_id0; |
| 1511 | u32 match_flags0; |
| 1512 | u32 old_sw_if_index0, new_sw_if_index0, len0; |
| 1513 | vnet_hw_interface_t *hi0; |
| 1514 | main_intf_t *main_intf0; |
| 1515 | vlan_intf_t *vlan_intf0; |
| 1516 | qinq_intf_t *qinq_intf0; |
Dave Barach | cfba1e2 | 2016-11-16 10:23:50 -0500 | [diff] [blame] | 1517 | ethernet_header_t *e0; |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 1518 | u32 is_l20; |
Matthew Smith | 42bde45 | 2019-11-18 09:35:24 -0600 | [diff] [blame] | 1519 | u64 dmacs[2]; |
| 1520 | u8 dmacs_bad[2]; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1521 | |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 1522 | // Prefetch next iteration |
| 1523 | if (n_left_from > 1) |
| 1524 | { |
Zhiyong Yang | b3ca33f | 2019-04-24 04:13:27 -0400 | [diff] [blame] | 1525 | vlib_prefetch_buffer_header (b[1], STORE); |
| 1526 | CLIB_PREFETCH (b[1]->data, CLIB_CACHE_LINE_BYTES, LOAD); |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 1527 | } |
| 1528 | |
| 1529 | bi0 = from[0]; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1530 | to_next[0] = bi0; |
| 1531 | from += 1; |
| 1532 | to_next += 1; |
| 1533 | n_left_from -= 1; |
| 1534 | n_left_to_next -= 1; |
| 1535 | |
Zhiyong Yang | b3ca33f | 2019-04-24 04:13:27 -0400 | [diff] [blame] | 1536 | b0 = b[0]; |
| 1537 | b += 1; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1538 | |
| 1539 | error0 = ETHERNET_ERROR_NONE; |
Dave Barach | cfba1e2 | 2016-11-16 10:23:50 -0500 | [diff] [blame] | 1540 | e0 = vlib_buffer_get_current (b0); |
| 1541 | type0 = clib_net_to_host_u16 (e0->type); |
| 1542 | |
Andrew Yourtchenko | 20e6d36 | 2018-10-05 20:36:03 +0200 | [diff] [blame] | 1543 | /* Set the L2 header offset for all packets */ |
| 1544 | vnet_buffer (b0)->l2_hdr_offset = b0->current_data; |
| 1545 | b0->flags |= VNET_BUFFER_F_L2_HDR_OFFSET_VALID; |
| 1546 | |
John Lo | cc53285 | 2016-12-14 15:42:45 -0500 | [diff] [blame] | 1547 | /* Speed-path for the untagged case */ |
Dave Barach | cfba1e2 | 2016-11-16 10:23:50 -0500 | [diff] [blame] | 1548 | if (PREDICT_TRUE (variant == ETHERNET_INPUT_VARIANT_ETHERNET |
| 1549 | && !ethernet_frame_is_tagged (type0))) |
| 1550 | { |
| 1551 | main_intf_t *intf0; |
| 1552 | subint_config_t *subint0; |
| 1553 | u32 sw_if_index0; |
| 1554 | |
| 1555 | sw_if_index0 = vnet_buffer (b0)->sw_if_index[VLIB_RX]; |
| 1556 | is_l20 = cached_is_l2; |
| 1557 | |
| 1558 | if (PREDICT_FALSE (cached_sw_if_index != sw_if_index0)) |
| 1559 | { |
| 1560 | cached_sw_if_index = sw_if_index0; |
John Lo | 1904c47 | 2017-03-10 17:15:22 -0500 | [diff] [blame] | 1561 | hi = vnet_get_sup_hw_interface (vnm, sw_if_index0); |
Matthew Smith | 42bde45 | 2019-11-18 09:35:24 -0600 | [diff] [blame] | 1562 | ei = ethernet_get_interface (em, hi->hw_if_index); |
John Lo | 1904c47 | 2017-03-10 17:15:22 -0500 | [diff] [blame] | 1563 | intf0 = vec_elt_at_index (em->main_intfs, hi->hw_if_index); |
Dave Barach | cfba1e2 | 2016-11-16 10:23:50 -0500 | [diff] [blame] | 1564 | subint0 = &intf0->untagged_subint; |
| 1565 | cached_is_l2 = is_l20 = subint0->flags & SUBINT_CONFIG_L2; |
| 1566 | } |
John Lo | 7714b30 | 2016-12-20 16:59:02 -0500 | [diff] [blame] | 1567 | |
John Lo | 7714b30 | 2016-12-20 16:59:02 -0500 | [diff] [blame] | 1568 | |
Dave Barach | cfba1e2 | 2016-11-16 10:23:50 -0500 | [diff] [blame] | 1569 | if (PREDICT_TRUE (is_l20 != 0)) |
| 1570 | { |
Andrew Yourtchenko | 20e6d36 | 2018-10-05 20:36:03 +0200 | [diff] [blame] | 1571 | vnet_buffer (b0)->l3_hdr_offset = |
| 1572 | vnet_buffer (b0)->l2_hdr_offset + |
| 1573 | sizeof (ethernet_header_t); |
| 1574 | b0->flags |= VNET_BUFFER_F_L3_HDR_OFFSET_VALID; |
Dave Barach | cfba1e2 | 2016-11-16 10:23:50 -0500 | [diff] [blame] | 1575 | next0 = em->l2_next; |
| 1576 | vnet_buffer (b0)->l2.l2_len = sizeof (ethernet_header_t); |
Dave Barach | cfba1e2 | 2016-11-16 10:23:50 -0500 | [diff] [blame] | 1577 | } |
John Lo | cc53285 | 2016-12-14 15:42:45 -0500 | [diff] [blame] | 1578 | else |
| 1579 | { |
Ivan Shvedunov | 7286943 | 2020-10-15 13:19:35 +0300 | [diff] [blame^] | 1580 | if (ei->flags & ETHERNET_INTERFACE_FLAG_STATUS_L3) |
John Lo | 4a302ee | 2020-05-12 22:34:39 -0400 | [diff] [blame] | 1581 | goto skip_dmac_check0; |
| 1582 | |
Matthew Smith | 42bde45 | 2019-11-18 09:35:24 -0600 | [diff] [blame] | 1583 | dmacs[0] = *(u64 *) e0; |
| 1584 | |
| 1585 | if (ei && vec_len (ei->secondary_addrs)) |
| 1586 | ethernet_input_inline_dmac_check (hi, dmacs, |
| 1587 | dmacs_bad, |
| 1588 | 1 /* n_packets */ , |
| 1589 | ei, |
| 1590 | 1 /* have_sec_dmac */ ); |
| 1591 | else |
| 1592 | ethernet_input_inline_dmac_check (hi, dmacs, |
| 1593 | dmacs_bad, |
| 1594 | 1 /* n_packets */ , |
| 1595 | ei, |
| 1596 | 0 /* have_sec_dmac */ ); |
| 1597 | |
| 1598 | if (dmacs_bad[0]) |
John Lo | 1904c47 | 2017-03-10 17:15:22 -0500 | [diff] [blame] | 1599 | error0 = ETHERNET_ERROR_L3_MAC_MISMATCH; |
Matthew Smith | 42bde45 | 2019-11-18 09:35:24 -0600 | [diff] [blame] | 1600 | |
John Lo | 4a302ee | 2020-05-12 22:34:39 -0400 | [diff] [blame] | 1601 | skip_dmac_check0: |
Andrew Yourtchenko | e78bca1 | 2018-10-10 16:15:55 +0200 | [diff] [blame] | 1602 | vlib_buffer_advance (b0, sizeof (ethernet_header_t)); |
John Lo | cc53285 | 2016-12-14 15:42:45 -0500 | [diff] [blame] | 1603 | determine_next_node (em, variant, 0, type0, b0, |
| 1604 | &error0, &next0); |
John Lo | cc53285 | 2016-12-14 15:42:45 -0500 | [diff] [blame] | 1605 | } |
| 1606 | goto ship_it0; |
Dave Barach | cfba1e2 | 2016-11-16 10:23:50 -0500 | [diff] [blame] | 1607 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1608 | |
John Lo | cc53285 | 2016-12-14 15:42:45 -0500 | [diff] [blame] | 1609 | /* Slow-path for the tagged case */ |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 1610 | parse_header (variant, |
| 1611 | b0, |
| 1612 | &type0, |
| 1613 | &orig_type0, &outer_id0, &inner_id0, &match_flags0); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1614 | |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 1615 | old_sw_if_index0 = vnet_buffer (b0)->sw_if_index[VLIB_RX]; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1616 | |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 1617 | eth_vlan_table_lookups (em, |
| 1618 | vnm, |
| 1619 | old_sw_if_index0, |
| 1620 | orig_type0, |
| 1621 | outer_id0, |
| 1622 | inner_id0, |
| 1623 | &hi0, |
| 1624 | &main_intf0, &vlan_intf0, &qinq_intf0); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1625 | |
Ivan Shvedunov | 7286943 | 2020-10-15 13:19:35 +0300 | [diff] [blame^] | 1626 | identify_subint (em, |
| 1627 | hi0, |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 1628 | b0, |
| 1629 | match_flags0, |
| 1630 | main_intf0, |
| 1631 | vlan_intf0, |
| 1632 | qinq_intf0, &new_sw_if_index0, &error0, &is_l20); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1633 | |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 1634 | // Save RX sw_if_index for later nodes |
| 1635 | vnet_buffer (b0)->sw_if_index[VLIB_RX] = |
| 1636 | error0 != |
| 1637 | ETHERNET_ERROR_NONE ? old_sw_if_index0 : new_sw_if_index0; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1638 | |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 1639 | // Increment subinterface stats |
| 1640 | // Note that interface-level counters have already been incremented |
| 1641 | // prior to calling this function. Thus only subinterface counters |
| 1642 | // are incremented here. |
| 1643 | // |
Damjan Marion | 607de1a | 2016-08-16 22:53:54 +0200 | [diff] [blame] | 1644 | // Interface level counters include packets received on the main |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 1645 | // interface and all subinterfaces. Subinterface level counters |
| 1646 | // include only those packets received on that subinterface |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1647 | // Increment stats if the subint is valid and it is not the main intf |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 1648 | if ((new_sw_if_index0 != ~0) |
| 1649 | && (new_sw_if_index0 != old_sw_if_index0)) |
| 1650 | { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1651 | |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 1652 | len0 = vlib_buffer_length_in_chain (vm, b0) + b0->current_data |
Damjan Marion | 072401e | 2017-07-13 18:53:27 +0200 | [diff] [blame] | 1653 | - vnet_buffer (b0)->l2_hdr_offset; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1654 | |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 1655 | stats_n_packets += 1; |
| 1656 | stats_n_bytes += len0; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1657 | |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 1658 | // Batch stat increments from the same subinterface so counters |
Damjan Marion | 607de1a | 2016-08-16 22:53:54 +0200 | [diff] [blame] | 1659 | // don't need to be incremented for every packet. |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 1660 | if (PREDICT_FALSE (new_sw_if_index0 != stats_sw_if_index)) |
| 1661 | { |
| 1662 | stats_n_packets -= 1; |
| 1663 | stats_n_bytes -= len0; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1664 | |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 1665 | if (new_sw_if_index0 != ~0) |
| 1666 | vlib_increment_combined_counter |
| 1667 | (vnm->interface_main.combined_sw_if_counters |
| 1668 | + VNET_INTERFACE_COUNTER_RX, |
Damjan Marion | 586afd7 | 2017-04-05 19:18:20 +0200 | [diff] [blame] | 1669 | thread_index, new_sw_if_index0, 1, len0); |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 1670 | if (stats_n_packets > 0) |
| 1671 | { |
| 1672 | vlib_increment_combined_counter |
| 1673 | (vnm->interface_main.combined_sw_if_counters |
| 1674 | + VNET_INTERFACE_COUNTER_RX, |
Damjan Marion | 586afd7 | 2017-04-05 19:18:20 +0200 | [diff] [blame] | 1675 | thread_index, |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 1676 | stats_sw_if_index, stats_n_packets, stats_n_bytes); |
| 1677 | stats_n_packets = stats_n_bytes = 0; |
| 1678 | } |
| 1679 | stats_sw_if_index = new_sw_if_index0; |
| 1680 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1681 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1682 | |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 1683 | if (variant == ETHERNET_INPUT_VARIANT_NOT_L2) |
| 1684 | is_l20 = 0; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1685 | |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 1686 | determine_next_node (em, variant, is_l20, type0, b0, &error0, |
| 1687 | &next0); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1688 | |
John Lo | 1904c47 | 2017-03-10 17:15:22 -0500 | [diff] [blame] | 1689 | ship_it0: |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 1690 | b0->error = error_node->errors[error0]; |
| 1691 | |
| 1692 | // verify speculative enqueue |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1693 | vlib_validate_buffer_enqueue_x1 (vm, node, next_index, |
| 1694 | to_next, n_left_to_next, |
| 1695 | bi0, next0); |
| 1696 | } |
| 1697 | |
| 1698 | vlib_put_next_frame (vm, node, next_index, n_left_to_next); |
| 1699 | } |
| 1700 | |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 1701 | // Increment any remaining batched stats |
| 1702 | if (stats_n_packets > 0) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1703 | { |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 1704 | vlib_increment_combined_counter |
| 1705 | (vnm->interface_main.combined_sw_if_counters |
| 1706 | + VNET_INTERFACE_COUNTER_RX, |
Damjan Marion | 586afd7 | 2017-04-05 19:18:20 +0200 | [diff] [blame] | 1707 | thread_index, stats_sw_if_index, stats_n_packets, stats_n_bytes); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1708 | node->runtime_data[0] = stats_sw_if_index; |
| 1709 | } |
Damjan Marion | 650223c | 2018-11-14 16:55:53 +0100 | [diff] [blame] | 1710 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1711 | |
Damjan Marion | 5beecec | 2018-09-10 13:09:21 +0200 | [diff] [blame] | 1712 | VLIB_NODE_FN (ethernet_input_node) (vlib_main_t * vm, |
| 1713 | vlib_node_runtime_t * node, |
Damjan Marion | 650223c | 2018-11-14 16:55:53 +0100 | [diff] [blame] | 1714 | vlib_frame_t * frame) |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 1715 | { |
Damjan Marion | 650223c | 2018-11-14 16:55:53 +0100 | [diff] [blame] | 1716 | vnet_main_t *vnm = vnet_get_main (); |
Damjan Marion | 650223c | 2018-11-14 16:55:53 +0100 | [diff] [blame] | 1717 | u32 *from = vlib_frame_vector_args (frame); |
| 1718 | u32 n_packets = frame->n_vectors; |
| 1719 | |
| 1720 | ethernet_input_trace (vm, node, frame); |
| 1721 | |
| 1722 | if (frame->flags & ETH_INPUT_FRAME_F_SINGLE_SW_IF_IDX) |
| 1723 | { |
Damjan Marion | 650223c | 2018-11-14 16:55:53 +0100 | [diff] [blame] | 1724 | ethernet_input_frame_t *ef = vlib_frame_scalar_args (frame); |
Damjan Marion | 650223c | 2018-11-14 16:55:53 +0100 | [diff] [blame] | 1725 | int ip4_cksum_ok = (frame->flags & ETH_INPUT_FRAME_F_IP4_CKSUM_OK) != 0; |
Damjan Marion | 8d6f34e | 2018-11-25 21:19:13 +0100 | [diff] [blame] | 1726 | vnet_hw_interface_t *hi = vnet_get_hw_interface (vnm, ef->hw_if_index); |
| 1727 | eth_input_single_int (vm, node, hi, from, n_packets, ip4_cksum_ok); |
Damjan Marion | 650223c | 2018-11-14 16:55:53 +0100 | [diff] [blame] | 1728 | } |
Damjan Marion | 8d6f34e | 2018-11-25 21:19:13 +0100 | [diff] [blame] | 1729 | else |
| 1730 | ethernet_input_inline (vm, node, from, n_packets, |
| 1731 | ETHERNET_INPUT_VARIANT_ETHERNET); |
Damjan Marion | 650223c | 2018-11-14 16:55:53 +0100 | [diff] [blame] | 1732 | return n_packets; |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 1733 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1734 | |
Damjan Marion | 5beecec | 2018-09-10 13:09:21 +0200 | [diff] [blame] | 1735 | VLIB_NODE_FN (ethernet_input_type_node) (vlib_main_t * vm, |
| 1736 | vlib_node_runtime_t * node, |
| 1737 | vlib_frame_t * from_frame) |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 1738 | { |
Damjan Marion | 650223c | 2018-11-14 16:55:53 +0100 | [diff] [blame] | 1739 | u32 *from = vlib_frame_vector_args (from_frame); |
| 1740 | u32 n_packets = from_frame->n_vectors; |
| 1741 | ethernet_input_trace (vm, node, from_frame); |
| 1742 | ethernet_input_inline (vm, node, from, n_packets, |
| 1743 | ETHERNET_INPUT_VARIANT_ETHERNET_TYPE); |
| 1744 | return n_packets; |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 1745 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1746 | |
Damjan Marion | 5beecec | 2018-09-10 13:09:21 +0200 | [diff] [blame] | 1747 | VLIB_NODE_FN (ethernet_input_not_l2_node) (vlib_main_t * vm, |
| 1748 | vlib_node_runtime_t * node, |
| 1749 | vlib_frame_t * from_frame) |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 1750 | { |
Damjan Marion | 650223c | 2018-11-14 16:55:53 +0100 | [diff] [blame] | 1751 | u32 *from = vlib_frame_vector_args (from_frame); |
| 1752 | u32 n_packets = from_frame->n_vectors; |
| 1753 | ethernet_input_trace (vm, node, from_frame); |
| 1754 | ethernet_input_inline (vm, node, from, n_packets, |
| 1755 | ETHERNET_INPUT_VARIANT_NOT_L2); |
| 1756 | return n_packets; |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 1757 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1758 | |
| 1759 | |
| 1760 | // Return the subinterface config struct for the given sw_if_index |
| 1761 | // Also return via parameter the appropriate match flags for the |
| 1762 | // configured number of tags. |
| 1763 | // On error (unsupported or not ethernet) return 0. |
| 1764 | static subint_config_t * |
| 1765 | ethernet_sw_interface_get_config (vnet_main_t * vnm, |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 1766 | u32 sw_if_index, |
| 1767 | u32 * flags, u32 * unsupported) |
| 1768 | { |
| 1769 | ethernet_main_t *em = ðernet_main; |
| 1770 | vnet_hw_interface_t *hi; |
| 1771 | vnet_sw_interface_t *si; |
| 1772 | main_intf_t *main_intf; |
| 1773 | vlan_table_t *vlan_table; |
| 1774 | qinq_table_t *qinq_table; |
| 1775 | subint_config_t *subint = 0; |
| 1776 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1777 | hi = vnet_get_sup_hw_interface (vnm, sw_if_index); |
| 1778 | |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 1779 | if (!hi || (hi->hw_class_index != ethernet_hw_interface_class.index)) |
| 1780 | { |
| 1781 | *unsupported = 0; |
| 1782 | goto done; // non-ethernet interface |
| 1783 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1784 | |
| 1785 | // ensure there's an entry for the main intf (shouldn't really be necessary) |
| 1786 | vec_validate (em->main_intfs, hi->hw_if_index); |
| 1787 | main_intf = vec_elt_at_index (em->main_intfs, hi->hw_if_index); |
| 1788 | |
| 1789 | // Locate the subint for the given ethernet config |
| 1790 | si = vnet_get_sw_interface (vnm, sw_if_index); |
| 1791 | |
Pavel Kotucek | 15ac81c | 2017-06-20 14:00:26 +0200 | [diff] [blame] | 1792 | if (si->type == VNET_SW_INTERFACE_TYPE_P2P) |
| 1793 | { |
| 1794 | p2p_ethernet_main_t *p2pm = &p2p_main; |
| 1795 | u32 p2pe_sw_if_index = |
| 1796 | p2p_ethernet_lookup (hi->hw_if_index, si->p2p.client_mac); |
| 1797 | if (p2pe_sw_if_index == ~0) |
| 1798 | { |
| 1799 | pool_get (p2pm->p2p_subif_pool, subint); |
| 1800 | si->p2p.pool_index = subint - p2pm->p2p_subif_pool; |
| 1801 | } |
| 1802 | else |
| 1803 | subint = vec_elt_at_index (p2pm->p2p_subif_pool, si->p2p.pool_index); |
| 1804 | *flags = SUBINT_CONFIG_P2P; |
| 1805 | } |
Neale Ranns | 17ff3c1 | 2018-07-04 10:24:24 -0700 | [diff] [blame] | 1806 | else if (si->type == VNET_SW_INTERFACE_TYPE_PIPE) |
| 1807 | { |
| 1808 | pipe_t *pipe; |
| 1809 | |
| 1810 | pipe = pipe_get (sw_if_index); |
| 1811 | subint = &pipe->subint; |
| 1812 | *flags = SUBINT_CONFIG_P2P; |
| 1813 | } |
Pavel Kotucek | 15ac81c | 2017-06-20 14:00:26 +0200 | [diff] [blame] | 1814 | else if (si->sub.eth.flags.default_sub) |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 1815 | { |
| 1816 | subint = &main_intf->default_subint; |
Mike Bly | 8807674 | 2018-09-24 10:13:06 -0700 | [diff] [blame] | 1817 | *flags = SUBINT_CONFIG_MATCH_1_TAG | |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 1818 | SUBINT_CONFIG_MATCH_2_TAG | SUBINT_CONFIG_MATCH_3_TAG; |
| 1819 | } |
| 1820 | else if ((si->sub.eth.flags.no_tags) || (si->sub.eth.raw_flags == 0)) |
| 1821 | { |
| 1822 | // if no flags are set then this is a main interface |
| 1823 | // so treat as untagged |
| 1824 | subint = &main_intf->untagged_subint; |
| 1825 | *flags = SUBINT_CONFIG_MATCH_0_TAG; |
| 1826 | } |
| 1827 | else |
| 1828 | { |
| 1829 | // one or two tags |
| 1830 | // first get the vlan table |
| 1831 | if (si->sub.eth.flags.dot1ad) |
| 1832 | { |
| 1833 | if (main_intf->dot1ad_vlans == 0) |
| 1834 | { |
| 1835 | // Allocate a vlan table from the pool |
| 1836 | pool_get (em->vlan_pool, vlan_table); |
| 1837 | main_intf->dot1ad_vlans = vlan_table - em->vlan_pool; |
| 1838 | } |
| 1839 | else |
| 1840 | { |
| 1841 | // Get ptr to existing vlan table |
| 1842 | vlan_table = |
| 1843 | vec_elt_at_index (em->vlan_pool, main_intf->dot1ad_vlans); |
| 1844 | } |
| 1845 | } |
| 1846 | else |
| 1847 | { // dot1q |
| 1848 | if (main_intf->dot1q_vlans == 0) |
| 1849 | { |
| 1850 | // Allocate a vlan table from the pool |
| 1851 | pool_get (em->vlan_pool, vlan_table); |
| 1852 | main_intf->dot1q_vlans = vlan_table - em->vlan_pool; |
| 1853 | } |
| 1854 | else |
| 1855 | { |
| 1856 | // Get ptr to existing vlan table |
| 1857 | vlan_table = |
| 1858 | vec_elt_at_index (em->vlan_pool, main_intf->dot1q_vlans); |
| 1859 | } |
| 1860 | } |
| 1861 | |
| 1862 | if (si->sub.eth.flags.one_tag) |
| 1863 | { |
| 1864 | *flags = si->sub.eth.flags.exact_match ? |
| 1865 | SUBINT_CONFIG_MATCH_1_TAG : |
| 1866 | (SUBINT_CONFIG_MATCH_1_TAG | |
| 1867 | SUBINT_CONFIG_MATCH_2_TAG | SUBINT_CONFIG_MATCH_3_TAG); |
| 1868 | |
| 1869 | if (si->sub.eth.flags.outer_vlan_id_any) |
| 1870 | { |
| 1871 | // not implemented yet |
| 1872 | *unsupported = 1; |
| 1873 | goto done; |
| 1874 | } |
| 1875 | else |
| 1876 | { |
| 1877 | // a single vlan, a common case |
| 1878 | subint = |
| 1879 | &vlan_table->vlans[si->sub.eth. |
| 1880 | outer_vlan_id].single_tag_subint; |
| 1881 | } |
| 1882 | |
| 1883 | } |
| 1884 | else |
| 1885 | { |
| 1886 | // Two tags |
| 1887 | *flags = si->sub.eth.flags.exact_match ? |
| 1888 | SUBINT_CONFIG_MATCH_2_TAG : |
| 1889 | (SUBINT_CONFIG_MATCH_2_TAG | SUBINT_CONFIG_MATCH_3_TAG); |
| 1890 | |
| 1891 | if (si->sub.eth.flags.outer_vlan_id_any |
| 1892 | && si->sub.eth.flags.inner_vlan_id_any) |
| 1893 | { |
| 1894 | // not implemented yet |
| 1895 | *unsupported = 1; |
| 1896 | goto done; |
| 1897 | } |
| 1898 | |
| 1899 | if (si->sub.eth.flags.inner_vlan_id_any) |
| 1900 | { |
| 1901 | // a specific outer and "any" inner |
| 1902 | // don't need a qinq table for this |
| 1903 | subint = |
| 1904 | &vlan_table->vlans[si->sub.eth. |
| 1905 | outer_vlan_id].inner_any_subint; |
| 1906 | if (si->sub.eth.flags.exact_match) |
| 1907 | { |
| 1908 | *flags = SUBINT_CONFIG_MATCH_2_TAG; |
| 1909 | } |
| 1910 | else |
| 1911 | { |
| 1912 | *flags = SUBINT_CONFIG_MATCH_2_TAG | |
| 1913 | SUBINT_CONFIG_MATCH_3_TAG; |
| 1914 | } |
| 1915 | } |
| 1916 | else |
| 1917 | { |
| 1918 | // a specific outer + specifc innner vlan id, a common case |
| 1919 | |
| 1920 | // get the qinq table |
| 1921 | if (vlan_table->vlans[si->sub.eth.outer_vlan_id].qinqs == 0) |
| 1922 | { |
| 1923 | // Allocate a qinq table from the pool |
| 1924 | pool_get (em->qinq_pool, qinq_table); |
| 1925 | vlan_table->vlans[si->sub.eth.outer_vlan_id].qinqs = |
| 1926 | qinq_table - em->qinq_pool; |
| 1927 | } |
| 1928 | else |
| 1929 | { |
| 1930 | // Get ptr to existing qinq table |
| 1931 | qinq_table = |
| 1932 | vec_elt_at_index (em->qinq_pool, |
| 1933 | vlan_table->vlans[si->sub. |
| 1934 | eth.outer_vlan_id]. |
| 1935 | qinqs); |
| 1936 | } |
| 1937 | subint = &qinq_table->vlans[si->sub.eth.inner_vlan_id].subint; |
| 1938 | } |
| 1939 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1940 | } |
| 1941 | |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 1942 | done: |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1943 | return subint; |
| 1944 | } |
| 1945 | |
Damjan Marion | 5beecec | 2018-09-10 13:09:21 +0200 | [diff] [blame] | 1946 | static clib_error_t * |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 1947 | ethernet_sw_interface_up_down (vnet_main_t * vnm, u32 sw_if_index, u32 flags) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1948 | { |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 1949 | subint_config_t *subint; |
Dave Barach | 11fb09e | 2020-08-06 12:10:09 -0400 | [diff] [blame] | 1950 | u32 placeholder_flags; |
| 1951 | u32 placeholder_unsup; |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 1952 | clib_error_t *error = 0; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1953 | |
| 1954 | // Find the config for this subinterface |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 1955 | subint = |
Dave Barach | 11fb09e | 2020-08-06 12:10:09 -0400 | [diff] [blame] | 1956 | ethernet_sw_interface_get_config (vnm, sw_if_index, &placeholder_flags, |
| 1957 | &placeholder_unsup); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1958 | |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 1959 | if (subint == 0) |
| 1960 | { |
| 1961 | // not implemented yet or not ethernet |
| 1962 | goto done; |
| 1963 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1964 | |
| 1965 | subint->sw_if_index = |
| 1966 | ((flags & VNET_SW_INTERFACE_FLAG_ADMIN_UP) ? sw_if_index : ~0); |
| 1967 | |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 1968 | done: |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1969 | return error; |
| 1970 | } |
| 1971 | |
| 1972 | VNET_SW_INTERFACE_ADMIN_UP_DOWN_FUNCTION (ethernet_sw_interface_up_down); |
| 1973 | |
| 1974 | |
Damjan Marion | 5beecec | 2018-09-10 13:09:21 +0200 | [diff] [blame] | 1975 | #ifndef CLIB_MARCH_VARIANT |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1976 | // Set the L2/L3 mode for the subinterface |
| 1977 | void |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 1978 | ethernet_sw_interface_set_l2_mode (vnet_main_t * vnm, u32 sw_if_index, u32 l2) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1979 | { |
| 1980 | subint_config_t *subint; |
Dave Barach | 11fb09e | 2020-08-06 12:10:09 -0400 | [diff] [blame] | 1981 | u32 placeholder_flags; |
| 1982 | u32 placeholder_unsup; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1983 | int is_port; |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 1984 | vnet_sw_interface_t *sw = vnet_get_sw_interface (vnm, sw_if_index); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1985 | |
| 1986 | is_port = !(sw->type == VNET_SW_INTERFACE_TYPE_SUB); |
| 1987 | |
| 1988 | // Find the config for this subinterface |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 1989 | subint = |
Dave Barach | 11fb09e | 2020-08-06 12:10:09 -0400 | [diff] [blame] | 1990 | ethernet_sw_interface_get_config (vnm, sw_if_index, &placeholder_flags, |
| 1991 | &placeholder_unsup); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1992 | |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 1993 | if (subint == 0) |
| 1994 | { |
| 1995 | // unimplemented or not ethernet |
| 1996 | goto done; |
| 1997 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1998 | |
| 1999 | // Double check that the config we found is for our interface (or the interface is down) |
| 2000 | ASSERT ((subint->sw_if_index == sw_if_index) | (subint->sw_if_index == ~0)); |
| 2001 | |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 2002 | if (l2) |
| 2003 | { |
| 2004 | subint->flags |= SUBINT_CONFIG_L2; |
| 2005 | if (is_port) |
| 2006 | subint->flags |= |
| 2007 | SUBINT_CONFIG_MATCH_0_TAG | SUBINT_CONFIG_MATCH_1_TAG |
| 2008 | | SUBINT_CONFIG_MATCH_2_TAG | SUBINT_CONFIG_MATCH_3_TAG; |
| 2009 | } |
| 2010 | else |
| 2011 | { |
| 2012 | subint->flags &= ~SUBINT_CONFIG_L2; |
| 2013 | if (is_port) |
| 2014 | subint->flags &= |
| 2015 | ~(SUBINT_CONFIG_MATCH_1_TAG | SUBINT_CONFIG_MATCH_2_TAG |
| 2016 | | SUBINT_CONFIG_MATCH_3_TAG); |
| 2017 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2018 | |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 2019 | done: |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2020 | return; |
| 2021 | } |
| 2022 | |
Christian Dechamplain (cdechamp) | 07aecbb | 2016-04-05 10:40:38 -0400 | [diff] [blame] | 2023 | /* |
| 2024 | * Set the L2/L3 mode for the subinterface regardless of port |
| 2025 | */ |
| 2026 | void |
| 2027 | ethernet_sw_interface_set_l2_mode_noport (vnet_main_t * vnm, |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 2028 | u32 sw_if_index, u32 l2) |
Christian Dechamplain (cdechamp) | 07aecbb | 2016-04-05 10:40:38 -0400 | [diff] [blame] | 2029 | { |
| 2030 | subint_config_t *subint; |
Dave Barach | 11fb09e | 2020-08-06 12:10:09 -0400 | [diff] [blame] | 2031 | u32 placeholder_flags; |
| 2032 | u32 placeholder_unsup; |
Christian Dechamplain (cdechamp) | 07aecbb | 2016-04-05 10:40:38 -0400 | [diff] [blame] | 2033 | |
| 2034 | /* Find the config for this subinterface */ |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 2035 | subint = |
Dave Barach | 11fb09e | 2020-08-06 12:10:09 -0400 | [diff] [blame] | 2036 | ethernet_sw_interface_get_config (vnm, sw_if_index, &placeholder_flags, |
| 2037 | &placeholder_unsup); |
Christian Dechamplain (cdechamp) | 07aecbb | 2016-04-05 10:40:38 -0400 | [diff] [blame] | 2038 | |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 2039 | if (subint == 0) |
| 2040 | { |
| 2041 | /* unimplemented or not ethernet */ |
| 2042 | goto done; |
| 2043 | } |
Christian Dechamplain (cdechamp) | 07aecbb | 2016-04-05 10:40:38 -0400 | [diff] [blame] | 2044 | |
| 2045 | /* |
| 2046 | * Double check that the config we found is for our interface (or the |
| 2047 | * interface is down) |
| 2048 | */ |
| 2049 | ASSERT ((subint->sw_if_index == sw_if_index) | (subint->sw_if_index == ~0)); |
| 2050 | |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 2051 | if (l2) |
| 2052 | { |
| 2053 | subint->flags |= SUBINT_CONFIG_L2; |
| 2054 | } |
| 2055 | else |
| 2056 | { |
| 2057 | subint->flags &= ~SUBINT_CONFIG_L2; |
| 2058 | } |
Christian Dechamplain (cdechamp) | 07aecbb | 2016-04-05 10:40:38 -0400 | [diff] [blame] | 2059 | |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 2060 | done: |
Christian Dechamplain (cdechamp) | 07aecbb | 2016-04-05 10:40:38 -0400 | [diff] [blame] | 2061 | return; |
| 2062 | } |
Damjan Marion | 5beecec | 2018-09-10 13:09:21 +0200 | [diff] [blame] | 2063 | #endif |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2064 | |
| 2065 | static clib_error_t * |
| 2066 | ethernet_sw_interface_add_del (vnet_main_t * vnm, |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 2067 | u32 sw_if_index, u32 is_create) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2068 | { |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 2069 | clib_error_t *error = 0; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2070 | subint_config_t *subint; |
| 2071 | u32 match_flags; |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 2072 | u32 unsupported = 0; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2073 | |
| 2074 | // Find the config for this subinterface |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 2075 | subint = |
| 2076 | ethernet_sw_interface_get_config (vnm, sw_if_index, &match_flags, |
| 2077 | &unsupported); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2078 | |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 2079 | if (subint == 0) |
| 2080 | { |
| 2081 | // not implemented yet or not ethernet |
| 2082 | if (unsupported) |
| 2083 | { |
Damjan Marion | 607de1a | 2016-08-16 22:53:54 +0200 | [diff] [blame] | 2084 | // this is the NYI case |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 2085 | error = clib_error_return (0, "not implemented yet"); |
| 2086 | } |
| 2087 | goto done; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2088 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2089 | |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 2090 | if (!is_create) |
| 2091 | { |
| 2092 | subint->flags = 0; |
| 2093 | return error; |
| 2094 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2095 | |
| 2096 | // Initialize the subint |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 2097 | if (subint->flags & SUBINT_CONFIG_VALID) |
| 2098 | { |
| 2099 | // Error vlan already in use |
| 2100 | error = clib_error_return (0, "vlan is already in use"); |
| 2101 | } |
| 2102 | else |
| 2103 | { |
Neale Ranns | 17ff3c1 | 2018-07-04 10:24:24 -0700 | [diff] [blame] | 2104 | // Note that config is L3 by default |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 2105 | subint->flags = SUBINT_CONFIG_VALID | match_flags; |
| 2106 | subint->sw_if_index = ~0; // because interfaces are initially down |
| 2107 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2108 | |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 2109 | done: |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2110 | return error; |
| 2111 | } |
| 2112 | |
| 2113 | VNET_SW_INTERFACE_ADD_DEL_FUNCTION (ethernet_sw_interface_add_del); |
| 2114 | |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 2115 | static char *ethernet_error_strings[] = { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2116 | #define ethernet_error(n,c,s) s, |
| 2117 | #include "error.def" |
| 2118 | #undef ethernet_error |
| 2119 | }; |
| 2120 | |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 2121 | /* *INDENT-OFF* */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2122 | VLIB_REGISTER_NODE (ethernet_input_node) = { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2123 | .name = "ethernet-input", |
| 2124 | /* Takes a vector of packets. */ |
| 2125 | .vector_size = sizeof (u32), |
Damjan Marion | 650223c | 2018-11-14 16:55:53 +0100 | [diff] [blame] | 2126 | .scalar_size = sizeof (ethernet_input_frame_t), |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2127 | .n_errors = ETHERNET_N_ERROR, |
| 2128 | .error_strings = ethernet_error_strings, |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2129 | .n_next_nodes = ETHERNET_INPUT_N_NEXT, |
| 2130 | .next_nodes = { |
| 2131 | #define _(s,n) [ETHERNET_INPUT_NEXT_##s] = n, |
| 2132 | foreach_ethernet_input_next |
| 2133 | #undef _ |
| 2134 | }, |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2135 | .format_buffer = format_ethernet_header_with_length, |
| 2136 | .format_trace = format_ethernet_input_trace, |
| 2137 | .unformat_buffer = unformat_ethernet_header, |
| 2138 | }; |
| 2139 | |
Damjan Marion | 5beecec | 2018-09-10 13:09:21 +0200 | [diff] [blame] | 2140 | VLIB_REGISTER_NODE (ethernet_input_type_node) = { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2141 | .name = "ethernet-input-type", |
| 2142 | /* Takes a vector of packets. */ |
| 2143 | .vector_size = sizeof (u32), |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2144 | .n_next_nodes = ETHERNET_INPUT_N_NEXT, |
| 2145 | .next_nodes = { |
| 2146 | #define _(s,n) [ETHERNET_INPUT_NEXT_##s] = n, |
| 2147 | foreach_ethernet_input_next |
| 2148 | #undef _ |
| 2149 | }, |
| 2150 | }; |
| 2151 | |
Damjan Marion | 5beecec | 2018-09-10 13:09:21 +0200 | [diff] [blame] | 2152 | VLIB_REGISTER_NODE (ethernet_input_not_l2_node) = { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2153 | .name = "ethernet-input-not-l2", |
| 2154 | /* Takes a vector of packets. */ |
| 2155 | .vector_size = sizeof (u32), |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2156 | .n_next_nodes = ETHERNET_INPUT_N_NEXT, |
| 2157 | .next_nodes = { |
| 2158 | #define _(s,n) [ETHERNET_INPUT_NEXT_##s] = n, |
| 2159 | foreach_ethernet_input_next |
| 2160 | #undef _ |
| 2161 | }, |
| 2162 | }; |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 2163 | /* *INDENT-ON* */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2164 | |
Damjan Marion | 5beecec | 2018-09-10 13:09:21 +0200 | [diff] [blame] | 2165 | #ifndef CLIB_MARCH_VARIANT |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 2166 | void |
| 2167 | ethernet_set_rx_redirect (vnet_main_t * vnm, |
| 2168 | vnet_hw_interface_t * hi, u32 enable) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2169 | { |
| 2170 | // Insure all packets go to ethernet-input (i.e. untagged ipv4 packets |
| 2171 | // don't go directly to ip4-input) |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 2172 | vnet_hw_interface_rx_redirect_to_node |
| 2173 | (vnm, hi->hw_if_index, enable ? ethernet_input_node.index : ~0); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2174 | } |
| 2175 | |
| 2176 | |
| 2177 | /* |
| 2178 | * Initialization and registration for the next_by_ethernet structure |
| 2179 | */ |
| 2180 | |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 2181 | clib_error_t * |
| 2182 | next_by_ethertype_init (next_by_ethertype_t * l3_next) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2183 | { |
| 2184 | l3_next->input_next_by_type = sparse_vec_new |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 2185 | ( /* elt bytes */ sizeof (l3_next->input_next_by_type[0]), |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2186 | /* bits in index */ BITS (((ethernet_header_t *) 0)->type)); |
| 2187 | |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 2188 | vec_validate (l3_next->sparse_index_by_input_next_index, |
| 2189 | ETHERNET_INPUT_NEXT_DROP); |
| 2190 | vec_validate (l3_next->sparse_index_by_input_next_index, |
| 2191 | ETHERNET_INPUT_NEXT_PUNT); |
| 2192 | l3_next->sparse_index_by_input_next_index[ETHERNET_INPUT_NEXT_DROP] = |
| 2193 | SPARSE_VEC_INVALID_INDEX; |
| 2194 | l3_next->sparse_index_by_input_next_index[ETHERNET_INPUT_NEXT_PUNT] = |
| 2195 | SPARSE_VEC_INVALID_INDEX; |
| 2196 | |
Damjan Marion | 607de1a | 2016-08-16 22:53:54 +0200 | [diff] [blame] | 2197 | /* |
| 2198 | * Make sure we don't wipe out an ethernet registration by mistake |
Dave Barach | 1f49ed6 | 2016-02-24 11:29:06 -0500 | [diff] [blame] | 2199 | * Can happen if init function ordering constraints are missing. |
| 2200 | */ |
| 2201 | if (CLIB_DEBUG > 0) |
| 2202 | { |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 2203 | ethernet_main_t *em = ðernet_main; |
| 2204 | ASSERT (em->next_by_ethertype_register_called == 0); |
Dave Barach | 1f49ed6 | 2016-02-24 11:29:06 -0500 | [diff] [blame] | 2205 | } |
| 2206 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2207 | return 0; |
| 2208 | } |
| 2209 | |
| 2210 | // Add an ethertype -> next index mapping to the structure |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 2211 | clib_error_t * |
| 2212 | next_by_ethertype_register (next_by_ethertype_t * l3_next, |
| 2213 | u32 ethertype, u32 next_index) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2214 | { |
| 2215 | u32 i; |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 2216 | u16 *n; |
| 2217 | ethernet_main_t *em = ðernet_main; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2218 | |
Dave Barach | 1f49ed6 | 2016-02-24 11:29:06 -0500 | [diff] [blame] | 2219 | if (CLIB_DEBUG > 0) |
| 2220 | { |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 2221 | ethernet_main_t *em = ðernet_main; |
Dave Barach | 1f49ed6 | 2016-02-24 11:29:06 -0500 | [diff] [blame] | 2222 | em->next_by_ethertype_register_called = 1; |
| 2223 | } |
| 2224 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2225 | /* Setup ethernet type -> next index sparse vector mapping. */ |
| 2226 | n = sparse_vec_validate (l3_next->input_next_by_type, ethertype); |
| 2227 | n[0] = next_index; |
| 2228 | |
| 2229 | /* Rebuild next index -> sparse index inverse mapping when sparse vector |
| 2230 | is updated. */ |
| 2231 | vec_validate (l3_next->sparse_index_by_input_next_index, next_index); |
| 2232 | for (i = 1; i < vec_len (l3_next->input_next_by_type); i++) |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 2233 | l3_next-> |
| 2234 | sparse_index_by_input_next_index[l3_next->input_next_by_type[i]] = i; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2235 | |
| 2236 | // do not allow the cached next index's to be updated if L3 |
| 2237 | // redirect is enabled, as it will have overwritten them |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 2238 | if (!em->redirect_l3) |
| 2239 | { |
| 2240 | // Cache common ethertypes directly |
| 2241 | if (ethertype == ETHERNET_TYPE_IP4) |
| 2242 | { |
| 2243 | l3_next->input_next_ip4 = next_index; |
| 2244 | } |
| 2245 | else if (ethertype == ETHERNET_TYPE_IP6) |
| 2246 | { |
| 2247 | l3_next->input_next_ip6 = next_index; |
| 2248 | } |
Neale Ranns | 0f26c5a | 2017-03-01 15:12:11 -0800 | [diff] [blame] | 2249 | else if (ethertype == ETHERNET_TYPE_MPLS) |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 2250 | { |
| 2251 | l3_next->input_next_mpls = next_index; |
| 2252 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2253 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2254 | return 0; |
| 2255 | } |
| 2256 | |
Dave Barach | f8d5068 | 2019-05-14 18:01:44 -0400 | [diff] [blame] | 2257 | void |
| 2258 | ethernet_input_init (vlib_main_t * vm, ethernet_main_t * em) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2259 | { |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 2260 | __attribute__ ((unused)) vlan_table_t *invalid_vlan_table; |
| 2261 | __attribute__ ((unused)) qinq_table_t *invalid_qinq_table; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2262 | |
| 2263 | ethernet_setup_node (vm, ethernet_input_node.index); |
| 2264 | ethernet_setup_node (vm, ethernet_input_type_node.index); |
| 2265 | ethernet_setup_node (vm, ethernet_input_not_l2_node.index); |
| 2266 | |
| 2267 | next_by_ethertype_init (&em->l3_next); |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 2268 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2269 | // Initialize pools and vector for vlan parsing |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 2270 | vec_validate (em->main_intfs, 10); // 10 main interfaces |
| 2271 | pool_alloc (em->vlan_pool, 10); |
| 2272 | pool_alloc (em->qinq_pool, 1); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2273 | |
| 2274 | // The first vlan pool will always be reserved for an invalid table |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 2275 | pool_get (em->vlan_pool, invalid_vlan_table); // first id = 0 |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2276 | // The first qinq pool will always be reserved for an invalid table |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 2277 | pool_get (em->qinq_pool, invalid_qinq_table); // first id = 0 |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2278 | } |
| 2279 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2280 | void |
| 2281 | ethernet_register_input_type (vlib_main_t * vm, |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 2282 | ethernet_type_t type, u32 node_index) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2283 | { |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 2284 | ethernet_main_t *em = ðernet_main; |
| 2285 | ethernet_type_info_t *ti; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2286 | u32 i; |
| 2287 | |
| 2288 | { |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 2289 | clib_error_t *error = vlib_call_init_function (vm, ethernet_init); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2290 | if (error) |
| 2291 | clib_error_report (error); |
| 2292 | } |
| 2293 | |
| 2294 | ti = ethernet_get_type_info (em, type); |
Dave Barach | 4bda2d9 | 2019-07-03 15:21:50 -0400 | [diff] [blame] | 2295 | if (ti == 0) |
| 2296 | { |
| 2297 | clib_warning ("type_info NULL for type %d", type); |
| 2298 | return; |
| 2299 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2300 | ti->node_index = node_index; |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 2301 | ti->next_index = vlib_node_add_next (vm, |
| 2302 | ethernet_input_node.index, node_index); |
| 2303 | i = vlib_node_add_next (vm, ethernet_input_type_node.index, node_index); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2304 | ASSERT (i == ti->next_index); |
| 2305 | |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 2306 | i = vlib_node_add_next (vm, ethernet_input_not_l2_node.index, node_index); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2307 | ASSERT (i == ti->next_index); |
| 2308 | |
| 2309 | // Add the L3 node for this ethertype to the next nodes structure |
| 2310 | next_by_ethertype_register (&em->l3_next, type, ti->next_index); |
| 2311 | |
| 2312 | // Call the registration functions for other nodes that want a mapping |
| 2313 | l2bvi_register_input_type (vm, type, node_index); |
| 2314 | } |
| 2315 | |
| 2316 | void |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 2317 | ethernet_register_l2_input (vlib_main_t * vm, u32 node_index) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2318 | { |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 2319 | ethernet_main_t *em = ðernet_main; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2320 | u32 i; |
| 2321 | |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 2322 | em->l2_next = |
| 2323 | vlib_node_add_next (vm, ethernet_input_node.index, node_index); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2324 | |
Damjan Marion | 607de1a | 2016-08-16 22:53:54 +0200 | [diff] [blame] | 2325 | /* |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2326 | * Even if we never use these arcs, we have to align the next indices... |
| 2327 | */ |
| 2328 | i = vlib_node_add_next (vm, ethernet_input_type_node.index, node_index); |
| 2329 | |
| 2330 | ASSERT (i == em->l2_next); |
| 2331 | |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 2332 | i = vlib_node_add_next (vm, ethernet_input_not_l2_node.index, node_index); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2333 | ASSERT (i == em->l2_next); |
| 2334 | } |
| 2335 | |
| 2336 | // Register a next node for L3 redirect, and enable L3 redirect |
| 2337 | void |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 2338 | ethernet_register_l3_redirect (vlib_main_t * vm, u32 node_index) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2339 | { |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 2340 | ethernet_main_t *em = ðernet_main; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2341 | u32 i; |
| 2342 | |
| 2343 | em->redirect_l3 = 1; |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 2344 | em->redirect_l3_next = vlib_node_add_next (vm, |
| 2345 | ethernet_input_node.index, |
| 2346 | node_index); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2347 | /* |
| 2348 | * Change the cached next nodes to the redirect node |
| 2349 | */ |
| 2350 | em->l3_next.input_next_ip4 = em->redirect_l3_next; |
| 2351 | em->l3_next.input_next_ip6 = em->redirect_l3_next; |
| 2352 | em->l3_next.input_next_mpls = em->redirect_l3_next; |
| 2353 | |
| 2354 | /* |
| 2355 | * Even if we never use these arcs, we have to align the next indices... |
| 2356 | */ |
| 2357 | i = vlib_node_add_next (vm, ethernet_input_type_node.index, node_index); |
| 2358 | |
| 2359 | ASSERT (i == em->redirect_l3_next); |
jerryian | ff82ed6 | 2016-12-05 17:13:00 +0800 | [diff] [blame] | 2360 | |
| 2361 | i = vlib_node_add_next (vm, ethernet_input_not_l2_node.index, node_index); |
| 2362 | |
| 2363 | ASSERT (i == em->redirect_l3_next); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2364 | } |
Damjan Marion | 5beecec | 2018-09-10 13:09:21 +0200 | [diff] [blame] | 2365 | #endif |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 2366 | |
| 2367 | /* |
| 2368 | * fd.io coding-style-patch-verification: ON |
| 2369 | * |
| 2370 | * Local Variables: |
| 2371 | * eval: (c-set-style "gnu") |
| 2372 | * End: |
| 2373 | */ |