Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2015 Cisco and/or its affiliates. |
| 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> |
| 43 | #include <vppinfra/sparse_vec.h> |
| 44 | #include <vnet/l2/l2_bvi.h> |
| 45 | |
| 46 | |
| 47 | #define foreach_ethernet_input_next \ |
| 48 | _ (PUNT, "error-punt") \ |
| 49 | _ (DROP, "error-drop") \ |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 50 | _ (LLC, "llc-input") |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 51 | |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 52 | typedef enum |
| 53 | { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 54 | #define _(s,n) ETHERNET_INPUT_NEXT_##s, |
| 55 | foreach_ethernet_input_next |
| 56 | #undef _ |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 57 | ETHERNET_INPUT_N_NEXT, |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 58 | } ethernet_input_next_t; |
| 59 | |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 60 | typedef struct |
| 61 | { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 62 | u8 packet_data[32]; |
| 63 | } ethernet_input_trace_t; |
| 64 | |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 65 | static u8 * |
| 66 | format_ethernet_input_trace (u8 * s, va_list * va) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 67 | { |
| 68 | CLIB_UNUSED (vlib_main_t * vm) = va_arg (*va, vlib_main_t *); |
| 69 | 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] | 70 | ethernet_input_trace_t *t = va_arg (*va, ethernet_input_trace_t *); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 71 | |
| 72 | s = format (s, "%U", format_ethernet_header, t->packet_data); |
| 73 | |
| 74 | return s; |
| 75 | } |
| 76 | |
| 77 | vlib_node_registration_t ethernet_input_node; |
| 78 | |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 79 | typedef enum |
| 80 | { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 81 | ETHERNET_INPUT_VARIANT_ETHERNET, |
| 82 | ETHERNET_INPUT_VARIANT_ETHERNET_TYPE, |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 83 | ETHERNET_INPUT_VARIANT_NOT_L2, |
| 84 | } ethernet_input_variant_t; |
| 85 | |
| 86 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 87 | // Parse the ethernet header to extract vlan tags and innermost ethertype |
| 88 | static_always_inline void |
| 89 | parse_header (ethernet_input_variant_t variant, |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 90 | vlib_buffer_t * b0, |
| 91 | u16 * type, |
| 92 | u16 * orig_type, |
| 93 | u16 * outer_id, u16 * inner_id, u32 * match_flags) |
| 94 | { |
Chris Luke | 194ebc5 | 2016-04-25 14:26:55 -0400 | [diff] [blame] | 95 | u8 vlan_count; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 96 | |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 97 | if (variant == ETHERNET_INPUT_VARIANT_ETHERNET |
| 98 | || variant == ETHERNET_INPUT_VARIANT_NOT_L2) |
| 99 | { |
| 100 | ethernet_header_t *e0; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 101 | |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 102 | e0 = (void *) (b0->data + b0->current_data); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 103 | |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 104 | vnet_buffer (b0)->ethernet.start_of_ethernet_header = b0->current_data; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 105 | |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 106 | vlib_buffer_advance (b0, sizeof (e0[0])); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 107 | |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 108 | *type = clib_net_to_host_u16 (e0->type); |
| 109 | } |
| 110 | else if (variant == ETHERNET_INPUT_VARIANT_ETHERNET_TYPE) |
| 111 | { |
| 112 | // here when prior node was LLC/SNAP processing |
| 113 | u16 *e0; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 114 | |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 115 | e0 = (void *) (b0->data + b0->current_data); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 116 | |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 117 | vlib_buffer_advance (b0, sizeof (e0[0])); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 118 | |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 119 | *type = clib_net_to_host_u16 (e0[0]); |
| 120 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 121 | |
| 122 | // save for distinguishing between dot1q and dot1ad later |
| 123 | *orig_type = *type; |
| 124 | |
| 125 | // default the tags to 0 (used if there is no corresponding tag) |
| 126 | *outer_id = 0; |
| 127 | *inner_id = 0; |
| 128 | |
| 129 | *match_flags = SUBINT_CONFIG_VALID | SUBINT_CONFIG_MATCH_0_TAG; |
Chris Luke | 194ebc5 | 2016-04-25 14:26:55 -0400 | [diff] [blame] | 130 | vlan_count = 0; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 131 | |
| 132 | // check for vlan encaps |
Damjan Marion | b94bdad | 2016-09-19 11:32:03 +0200 | [diff] [blame] | 133 | if (ethernet_frame_is_tagged (*type)) |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 134 | { |
| 135 | ethernet_vlan_header_t *h0; |
| 136 | u16 tag; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 137 | |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 138 | *match_flags = SUBINT_CONFIG_VALID | SUBINT_CONFIG_MATCH_1_TAG; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 139 | |
| 140 | h0 = (void *) (b0->data + b0->current_data); |
| 141 | |
| 142 | tag = clib_net_to_host_u16 (h0->priority_cfi_and_id); |
| 143 | |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 144 | *outer_id = tag & 0xfff; |
Neale Ranns | 30d0fd4 | 2017-05-30 07:30:04 -0700 | [diff] [blame] | 145 | if (0 == *outer_id) |
| 146 | *match_flags &= ~SUBINT_CONFIG_MATCH_1_TAG; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 147 | |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 148 | *type = clib_net_to_host_u16 (h0->type); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 149 | |
| 150 | vlib_buffer_advance (b0, sizeof (h0[0])); |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 151 | vlan_count = 1; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 152 | |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 153 | if (*type == ETHERNET_TYPE_VLAN) |
| 154 | { |
| 155 | // Double tagged packet |
| 156 | *match_flags = SUBINT_CONFIG_VALID | SUBINT_CONFIG_MATCH_2_TAG; |
| 157 | |
| 158 | h0 = (void *) (b0->data + b0->current_data); |
| 159 | |
| 160 | tag = clib_net_to_host_u16 (h0->priority_cfi_and_id); |
| 161 | |
| 162 | *inner_id = tag & 0xfff; |
| 163 | |
| 164 | *type = clib_net_to_host_u16 (h0->type); |
| 165 | |
| 166 | vlib_buffer_advance (b0, sizeof (h0[0])); |
| 167 | vlan_count = 2; |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 168 | if (*type == ETHERNET_TYPE_VLAN) |
| 169 | { |
| 170 | // More than double tagged packet |
| 171 | *match_flags = SUBINT_CONFIG_VALID | SUBINT_CONFIG_MATCH_3_TAG; |
Eyal Bari | 6f7ebf9 | 2017-06-13 12:09:37 +0300 | [diff] [blame] | 172 | |
| 173 | vlib_buffer_advance (b0, sizeof (h0[0])); |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 174 | vlan_count = 3; // "unknown" number, aka, 3-or-more |
| 175 | } |
| 176 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 177 | } |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 178 | ethernet_buffer_set_vlan_count (b0, vlan_count); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 179 | } |
| 180 | |
| 181 | // Determine the subinterface for this packet, given the result of the |
| 182 | // vlan table lookups and vlan header parsing. Check the most specific |
| 183 | // matches first. |
| 184 | static_always_inline void |
| 185 | identify_subint (vnet_hw_interface_t * hi, |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 186 | vlib_buffer_t * b0, |
| 187 | u32 match_flags, |
| 188 | main_intf_t * main_intf, |
| 189 | vlan_intf_t * vlan_intf, |
| 190 | qinq_intf_t * qinq_intf, |
| 191 | u32 * new_sw_if_index, u8 * error0, u32 * is_l2) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 192 | { |
| 193 | u32 matched; |
| 194 | |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 195 | matched = eth_identify_subint (hi, b0, match_flags, |
| 196 | main_intf, vlan_intf, qinq_intf, |
| 197 | new_sw_if_index, error0, is_l2); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 198 | |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 199 | if (matched) |
| 200 | { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 201 | |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 202 | // Perform L3 my-mac filter |
| 203 | // A unicast packet arriving on an L3 interface must have a dmac matching the interface mac. |
| 204 | // This is required for promiscuous mode, else we will forward packets we aren't supposed to. |
| 205 | if (!(*is_l2)) |
| 206 | { |
| 207 | ethernet_header_t *e0; |
| 208 | e0 = |
| 209 | (void *) (b0->data + |
| 210 | vnet_buffer (b0)->ethernet.start_of_ethernet_header); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 211 | |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 212 | if (!(ethernet_address_cast (e0->dst_address))) |
| 213 | { |
| 214 | if (!eth_mac_equal ((u8 *) e0, hi->hw_address)) |
| 215 | { |
| 216 | *error0 = ETHERNET_ERROR_L3_MAC_MISMATCH; |
| 217 | } |
| 218 | } |
| 219 | } |
| 220 | |
| 221 | // Check for down subinterface |
| 222 | *error0 = (*new_sw_if_index) != ~0 ? (*error0) : ETHERNET_ERROR_DOWN; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 223 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 224 | } |
| 225 | |
| 226 | static_always_inline void |
| 227 | determine_next_node (ethernet_main_t * em, |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 228 | ethernet_input_variant_t variant, |
| 229 | u32 is_l20, |
| 230 | u32 type0, vlib_buffer_t * b0, u8 * error0, u8 * next0) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 231 | { |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 232 | if (PREDICT_FALSE (*error0 != ETHERNET_ERROR_NONE)) |
| 233 | { |
| 234 | // some error occurred |
| 235 | *next0 = ETHERNET_INPUT_NEXT_DROP; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 236 | } |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 237 | else if (is_l20) |
| 238 | { |
| 239 | *next0 = em->l2_next; |
| 240 | // record the L2 len and reset the buffer so the L2 header is preserved |
David Hotham | a8cd309 | 2016-09-19 09:55:07 -0700 | [diff] [blame] | 241 | u32 eth_start = vnet_buffer (b0)->ethernet.start_of_ethernet_header; |
| 242 | vnet_buffer (b0)->l2.l2_len = b0->current_data - eth_start; |
Eyal Bari | 6f7ebf9 | 2017-06-13 12:09:37 +0300 | [diff] [blame] | 243 | ASSERT (vnet_buffer (b0)->l2.l2_len == |
| 244 | ethernet_buffer_header_size (b0)); |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 245 | vlib_buffer_advance (b0, -ethernet_buffer_header_size (b0)); |
| 246 | |
| 247 | // check for common IP/MPLS ethertypes |
| 248 | } |
| 249 | else if (type0 == ETHERNET_TYPE_IP4) |
| 250 | { |
| 251 | *next0 = em->l3_next.input_next_ip4; |
| 252 | } |
| 253 | else if (type0 == ETHERNET_TYPE_IP6) |
| 254 | { |
| 255 | *next0 = em->l3_next.input_next_ip6; |
| 256 | } |
Neale Ranns | 0f26c5a | 2017-03-01 15:12:11 -0800 | [diff] [blame] | 257 | else if (type0 == ETHERNET_TYPE_MPLS) |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 258 | { |
| 259 | *next0 = em->l3_next.input_next_mpls; |
| 260 | |
| 261 | } |
| 262 | else if (em->redirect_l3) |
| 263 | { |
| 264 | // L3 Redirect is on, the cached common next nodes will be |
| 265 | // pointing to the redirect node, catch the uncommon types here |
| 266 | *next0 = em->redirect_l3_next; |
| 267 | } |
| 268 | else |
| 269 | { |
| 270 | // uncommon ethertype, check table |
| 271 | u32 i0; |
| 272 | i0 = sparse_vec_index (em->l3_next.input_next_by_type, type0); |
| 273 | *next0 = vec_elt (em->l3_next.input_next_by_type, i0); |
| 274 | *error0 = |
| 275 | i0 == |
| 276 | SPARSE_VEC_INVALID_INDEX ? ETHERNET_ERROR_UNKNOWN_TYPE : *error0; |
| 277 | |
| 278 | // The table is not populated with LLC values, so check that now. |
Damjan Marion | 607de1a | 2016-08-16 22:53:54 +0200 | [diff] [blame] | 279 | // 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] | 280 | // go back there; drop instead using by keeping the drop/bad table result. |
| 281 | if ((type0 < 0x600) && (variant == ETHERNET_INPUT_VARIANT_ETHERNET)) |
| 282 | { |
| 283 | *next0 = ETHERNET_INPUT_NEXT_LLC; |
| 284 | } |
| 285 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 286 | } |
| 287 | |
Eyal Bari | 9a1ae1a | 2017-06-13 08:42:35 +0300 | [diff] [blame^] | 288 | static_always_inline int |
| 289 | ethernet_frame_is_any_tagged (u16 type0, u16 type1) |
| 290 | { |
| 291 | #if __SSE4_2__ |
| 292 | const __m128i ethertype_mask = _mm_set_epi16 (ETHERNET_TYPE_VLAN, |
| 293 | ETHERNET_TYPE_DOT1AD, |
| 294 | ETHERNET_TYPE_VLAN_9100, |
| 295 | ETHERNET_TYPE_VLAN_9200, |
| 296 | /* duplicate for type1 */ |
| 297 | ETHERNET_TYPE_VLAN, |
| 298 | ETHERNET_TYPE_DOT1AD, |
| 299 | ETHERNET_TYPE_VLAN_9100, |
| 300 | ETHERNET_TYPE_VLAN_9200); |
| 301 | |
| 302 | __m128i r = |
| 303 | _mm_set_epi16 (type0, type0, type0, type0, type1, type1, type1, type1); |
| 304 | r = _mm_cmpeq_epi16 (ethertype_mask, r); |
| 305 | return !_mm_test_all_zeros (r, r); |
| 306 | #else |
| 307 | return ethernet_frame_is_tagged (type0) || ethernet_frame_istagged (type1); |
| 308 | #endif |
| 309 | } |
| 310 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 311 | static_always_inline uword |
| 312 | ethernet_input_inline (vlib_main_t * vm, |
| 313 | vlib_node_runtime_t * node, |
| 314 | vlib_frame_t * from_frame, |
| 315 | ethernet_input_variant_t variant) |
| 316 | { |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 317 | vnet_main_t *vnm = vnet_get_main (); |
| 318 | ethernet_main_t *em = ðernet_main; |
| 319 | vlib_node_runtime_t *error_node; |
| 320 | u32 n_left_from, next_index, *from, *to_next; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 321 | u32 stats_sw_if_index, stats_n_packets, stats_n_bytes; |
Damjan Marion | 586afd7 | 2017-04-05 19:18:20 +0200 | [diff] [blame] | 322 | u32 thread_index = vlib_get_thread_index (); |
Dave Barach | cfba1e2 | 2016-11-16 10:23:50 -0500 | [diff] [blame] | 323 | u32 cached_sw_if_index = ~0; |
| 324 | u32 cached_is_l2 = 0; /* shut up gcc */ |
John Lo | 1904c47 | 2017-03-10 17:15:22 -0500 | [diff] [blame] | 325 | vnet_hw_interface_t *hi = NULL; /* used for main interface only */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 326 | |
| 327 | if (variant != ETHERNET_INPUT_VARIANT_ETHERNET) |
| 328 | error_node = vlib_node_get_runtime (vm, ethernet_input_node.index); |
| 329 | else |
| 330 | error_node = node; |
| 331 | |
| 332 | from = vlib_frame_vector_args (from_frame); |
| 333 | n_left_from = from_frame->n_vectors; |
| 334 | |
| 335 | if (node->flags & VLIB_NODE_FLAG_TRACE) |
| 336 | vlib_trace_frame_buffers_only (vm, node, |
| 337 | from, |
| 338 | n_left_from, |
| 339 | sizeof (from[0]), |
| 340 | sizeof (ethernet_input_trace_t)); |
| 341 | |
| 342 | next_index = node->cached_next_index; |
| 343 | stats_sw_if_index = node->runtime_data[0]; |
| 344 | stats_n_packets = stats_n_bytes = 0; |
| 345 | |
| 346 | while (n_left_from > 0) |
| 347 | { |
| 348 | u32 n_left_to_next; |
| 349 | |
| 350 | vlib_get_next_frame (vm, node, next_index, to_next, n_left_to_next); |
| 351 | |
| 352 | while (n_left_from >= 4 && n_left_to_next >= 2) |
| 353 | { |
| 354 | u32 bi0, bi1; |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 355 | vlib_buffer_t *b0, *b1; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 356 | u8 next0, next1, error0, error1; |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 357 | u16 type0, orig_type0, type1, orig_type1; |
| 358 | u16 outer_id0, inner_id0, outer_id1, inner_id1; |
| 359 | u32 match_flags0, match_flags1; |
| 360 | u32 old_sw_if_index0, new_sw_if_index0, len0, old_sw_if_index1, |
| 361 | new_sw_if_index1, len1; |
| 362 | vnet_hw_interface_t *hi0, *hi1; |
| 363 | main_intf_t *main_intf0, *main_intf1; |
| 364 | vlan_intf_t *vlan_intf0, *vlan_intf1; |
| 365 | qinq_intf_t *qinq_intf0, *qinq_intf1; |
| 366 | u32 is_l20, is_l21; |
Dave Barach | cfba1e2 | 2016-11-16 10:23:50 -0500 | [diff] [blame] | 367 | ethernet_header_t *e0, *e1; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 368 | |
| 369 | /* Prefetch next iteration. */ |
| 370 | { |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 371 | vlib_buffer_t *b2, *b3; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 372 | |
| 373 | b2 = vlib_get_buffer (vm, from[2]); |
| 374 | b3 = vlib_get_buffer (vm, from[3]); |
| 375 | |
| 376 | vlib_prefetch_buffer_header (b2, STORE); |
| 377 | vlib_prefetch_buffer_header (b3, STORE); |
| 378 | |
| 379 | CLIB_PREFETCH (b2->data, sizeof (ethernet_header_t), LOAD); |
| 380 | CLIB_PREFETCH (b3->data, sizeof (ethernet_header_t), LOAD); |
| 381 | } |
| 382 | |
| 383 | bi0 = from[0]; |
| 384 | bi1 = from[1]; |
| 385 | to_next[0] = bi0; |
| 386 | to_next[1] = bi1; |
| 387 | from += 2; |
| 388 | to_next += 2; |
| 389 | n_left_to_next -= 2; |
| 390 | n_left_from -= 2; |
| 391 | |
| 392 | b0 = vlib_get_buffer (vm, bi0); |
| 393 | b1 = vlib_get_buffer (vm, bi1); |
| 394 | |
| 395 | error0 = error1 = ETHERNET_ERROR_NONE; |
Dave Barach | cfba1e2 | 2016-11-16 10:23:50 -0500 | [diff] [blame] | 396 | e0 = vlib_buffer_get_current (b0); |
| 397 | type0 = clib_net_to_host_u16 (e0->type); |
| 398 | e1 = vlib_buffer_get_current (b1); |
| 399 | type1 = clib_net_to_host_u16 (e1->type); |
| 400 | |
John Lo | cc53285 | 2016-12-14 15:42:45 -0500 | [diff] [blame] | 401 | /* Speed-path for the untagged case */ |
Dave Barach | cfba1e2 | 2016-11-16 10:23:50 -0500 | [diff] [blame] | 402 | if (PREDICT_TRUE (variant == ETHERNET_INPUT_VARIANT_ETHERNET |
Eyal Bari | 9a1ae1a | 2017-06-13 08:42:35 +0300 | [diff] [blame^] | 403 | && !ethernet_frame_is_any_tagged (type0, type1))) |
Dave Barach | cfba1e2 | 2016-11-16 10:23:50 -0500 | [diff] [blame] | 404 | { |
| 405 | main_intf_t *intf0; |
| 406 | subint_config_t *subint0; |
| 407 | u32 sw_if_index0, sw_if_index1; |
| 408 | |
| 409 | sw_if_index0 = vnet_buffer (b0)->sw_if_index[VLIB_RX]; |
| 410 | sw_if_index1 = vnet_buffer (b1)->sw_if_index[VLIB_RX]; |
| 411 | is_l20 = cached_is_l2; |
| 412 | |
| 413 | /* This is probably wholly unnecessary */ |
| 414 | if (PREDICT_FALSE (sw_if_index0 != sw_if_index1)) |
| 415 | goto slowpath; |
| 416 | |
John Lo | 1904c47 | 2017-03-10 17:15:22 -0500 | [diff] [blame] | 417 | /* Now sw_if_index0 == sw_if_index1 */ |
Dave Barach | cfba1e2 | 2016-11-16 10:23:50 -0500 | [diff] [blame] | 418 | if (PREDICT_FALSE (cached_sw_if_index != sw_if_index0)) |
| 419 | { |
| 420 | cached_sw_if_index = sw_if_index0; |
John Lo | 1904c47 | 2017-03-10 17:15:22 -0500 | [diff] [blame] | 421 | hi = vnet_get_sup_hw_interface (vnm, sw_if_index0); |
| 422 | intf0 = vec_elt_at_index (em->main_intfs, hi->hw_if_index); |
Dave Barach | cfba1e2 | 2016-11-16 10:23:50 -0500 | [diff] [blame] | 423 | subint0 = &intf0->untagged_subint; |
| 424 | cached_is_l2 = is_l20 = subint0->flags & SUBINT_CONFIG_L2; |
| 425 | } |
John Lo | 7714b30 | 2016-12-20 16:59:02 -0500 | [diff] [blame] | 426 | |
| 427 | vnet_buffer (b0)->ethernet.start_of_ethernet_header = |
| 428 | b0->current_data; |
| 429 | vnet_buffer (b1)->ethernet.start_of_ethernet_header = |
| 430 | b1->current_data; |
| 431 | |
Dave Barach | cfba1e2 | 2016-11-16 10:23:50 -0500 | [diff] [blame] | 432 | if (PREDICT_TRUE (is_l20 != 0)) |
| 433 | { |
| 434 | next0 = em->l2_next; |
| 435 | vnet_buffer (b0)->l2.l2_len = sizeof (ethernet_header_t); |
Dave Barach | cfba1e2 | 2016-11-16 10:23:50 -0500 | [diff] [blame] | 436 | next1 = em->l2_next; |
| 437 | vnet_buffer (b1)->l2.l2_len = sizeof (ethernet_header_t); |
Dave Barach | cfba1e2 | 2016-11-16 10:23:50 -0500 | [diff] [blame] | 438 | } |
John Lo | cc53285 | 2016-12-14 15:42:45 -0500 | [diff] [blame] | 439 | else |
| 440 | { |
John Lo | 1904c47 | 2017-03-10 17:15:22 -0500 | [diff] [blame] | 441 | if (!ethernet_address_cast (e0->dst_address) && |
Hongjun Ni | 9e3e361 | 2017-04-26 18:40:55 +0800 | [diff] [blame] | 442 | (hi->hw_address != 0) && |
John Lo | 1904c47 | 2017-03-10 17:15:22 -0500 | [diff] [blame] | 443 | !eth_mac_equal ((u8 *) e0, hi->hw_address)) |
| 444 | error0 = ETHERNET_ERROR_L3_MAC_MISMATCH; |
| 445 | if (!ethernet_address_cast (e1->dst_address) && |
Hongjun Ni | 9e3e361 | 2017-04-26 18:40:55 +0800 | [diff] [blame] | 446 | (hi->hw_address != 0) && |
John Lo | 1904c47 | 2017-03-10 17:15:22 -0500 | [diff] [blame] | 447 | !eth_mac_equal ((u8 *) e1, hi->hw_address)) |
| 448 | error1 = ETHERNET_ERROR_L3_MAC_MISMATCH; |
John Lo | cc53285 | 2016-12-14 15:42:45 -0500 | [diff] [blame] | 449 | determine_next_node (em, variant, 0, type0, b0, |
| 450 | &error0, &next0); |
| 451 | vlib_buffer_advance (b0, sizeof (ethernet_header_t)); |
| 452 | determine_next_node (em, variant, 0, type1, b1, |
| 453 | &error1, &next1); |
| 454 | vlib_buffer_advance (b1, sizeof (ethernet_header_t)); |
| 455 | } |
| 456 | goto ship_it01; |
Dave Barach | cfba1e2 | 2016-11-16 10:23:50 -0500 | [diff] [blame] | 457 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 458 | |
John Lo | cc53285 | 2016-12-14 15:42:45 -0500 | [diff] [blame] | 459 | /* Slow-path for the tagged case */ |
| 460 | slowpath: |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 461 | parse_header (variant, |
| 462 | b0, |
| 463 | &type0, |
| 464 | &orig_type0, &outer_id0, &inner_id0, &match_flags0); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 465 | |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 466 | parse_header (variant, |
| 467 | b1, |
| 468 | &type1, |
| 469 | &orig_type1, &outer_id1, &inner_id1, &match_flags1); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 470 | |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 471 | old_sw_if_index0 = vnet_buffer (b0)->sw_if_index[VLIB_RX]; |
| 472 | old_sw_if_index1 = vnet_buffer (b1)->sw_if_index[VLIB_RX]; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 473 | |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 474 | eth_vlan_table_lookups (em, |
| 475 | vnm, |
| 476 | old_sw_if_index0, |
| 477 | orig_type0, |
| 478 | outer_id0, |
| 479 | inner_id0, |
| 480 | &hi0, |
| 481 | &main_intf0, &vlan_intf0, &qinq_intf0); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 482 | |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 483 | eth_vlan_table_lookups (em, |
| 484 | vnm, |
| 485 | old_sw_if_index1, |
| 486 | orig_type1, |
| 487 | outer_id1, |
| 488 | inner_id1, |
| 489 | &hi1, |
| 490 | &main_intf1, &vlan_intf1, &qinq_intf1); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 491 | |
| 492 | identify_subint (hi0, |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 493 | b0, |
| 494 | match_flags0, |
| 495 | main_intf0, |
| 496 | vlan_intf0, |
| 497 | qinq_intf0, &new_sw_if_index0, &error0, &is_l20); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 498 | |
| 499 | identify_subint (hi1, |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 500 | b1, |
| 501 | match_flags1, |
| 502 | main_intf1, |
| 503 | vlan_intf1, |
| 504 | qinq_intf1, &new_sw_if_index1, &error1, &is_l21); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 505 | |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 506 | // Save RX sw_if_index for later nodes |
| 507 | vnet_buffer (b0)->sw_if_index[VLIB_RX] = |
| 508 | error0 != |
| 509 | ETHERNET_ERROR_NONE ? old_sw_if_index0 : new_sw_if_index0; |
| 510 | vnet_buffer (b1)->sw_if_index[VLIB_RX] = |
| 511 | error1 != |
| 512 | ETHERNET_ERROR_NONE ? old_sw_if_index1 : new_sw_if_index1; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 513 | |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 514 | // Check if there is a stat to take (valid and non-main sw_if_index for pkt 0 or pkt 1) |
| 515 | if (((new_sw_if_index0 != ~0) |
| 516 | && (new_sw_if_index0 != old_sw_if_index0)) |
| 517 | || ((new_sw_if_index1 != ~0) |
| 518 | && (new_sw_if_index1 != old_sw_if_index1))) |
| 519 | { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 520 | |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 521 | len0 = vlib_buffer_length_in_chain (vm, b0) + b0->current_data |
| 522 | - vnet_buffer (b0)->ethernet.start_of_ethernet_header; |
| 523 | len1 = vlib_buffer_length_in_chain (vm, b1) + b1->current_data |
| 524 | - vnet_buffer (b1)->ethernet.start_of_ethernet_header; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 525 | |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 526 | stats_n_packets += 2; |
| 527 | stats_n_bytes += len0 + len1; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 528 | |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 529 | if (PREDICT_FALSE |
| 530 | (!(new_sw_if_index0 == stats_sw_if_index |
| 531 | && new_sw_if_index1 == stats_sw_if_index))) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 532 | { |
| 533 | stats_n_packets -= 2; |
| 534 | stats_n_bytes -= len0 + len1; |
| 535 | |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 536 | if (new_sw_if_index0 != old_sw_if_index0 |
| 537 | && new_sw_if_index0 != ~0) |
| 538 | vlib_increment_combined_counter (vnm-> |
| 539 | interface_main.combined_sw_if_counters |
| 540 | + |
| 541 | VNET_INTERFACE_COUNTER_RX, |
Damjan Marion | 586afd7 | 2017-04-05 19:18:20 +0200 | [diff] [blame] | 542 | thread_index, |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 543 | new_sw_if_index0, 1, |
| 544 | len0); |
| 545 | if (new_sw_if_index1 != old_sw_if_index1 |
| 546 | && new_sw_if_index1 != ~0) |
| 547 | vlib_increment_combined_counter (vnm-> |
| 548 | interface_main.combined_sw_if_counters |
| 549 | + |
| 550 | VNET_INTERFACE_COUNTER_RX, |
Damjan Marion | 586afd7 | 2017-04-05 19:18:20 +0200 | [diff] [blame] | 551 | thread_index, |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 552 | new_sw_if_index1, 1, |
| 553 | len1); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 554 | |
| 555 | if (new_sw_if_index0 == new_sw_if_index1) |
| 556 | { |
| 557 | if (stats_n_packets > 0) |
| 558 | { |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 559 | vlib_increment_combined_counter |
| 560 | (vnm->interface_main.combined_sw_if_counters |
| 561 | + VNET_INTERFACE_COUNTER_RX, |
Damjan Marion | 586afd7 | 2017-04-05 19:18:20 +0200 | [diff] [blame] | 562 | thread_index, |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 563 | stats_sw_if_index, |
| 564 | stats_n_packets, stats_n_bytes); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 565 | stats_n_packets = stats_n_bytes = 0; |
| 566 | } |
| 567 | stats_sw_if_index = new_sw_if_index0; |
| 568 | } |
| 569 | } |
| 570 | } |
| 571 | |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 572 | if (variant == ETHERNET_INPUT_VARIANT_NOT_L2) |
| 573 | is_l20 = is_l21 = 0; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 574 | |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 575 | determine_next_node (em, variant, is_l20, type0, b0, &error0, |
| 576 | &next0); |
| 577 | determine_next_node (em, variant, is_l21, type1, b1, &error1, |
| 578 | &next1); |
| 579 | |
John Lo | 1904c47 | 2017-03-10 17:15:22 -0500 | [diff] [blame] | 580 | ship_it01: |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 581 | b0->error = error_node->errors[error0]; |
| 582 | b1->error = error_node->errors[error1]; |
| 583 | |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 584 | // verify speculative enqueue |
| 585 | vlib_validate_buffer_enqueue_x2 (vm, node, next_index, to_next, |
| 586 | n_left_to_next, bi0, bi1, next0, |
| 587 | next1); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 588 | } |
| 589 | |
| 590 | while (n_left_from > 0 && n_left_to_next > 0) |
| 591 | { |
| 592 | u32 bi0; |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 593 | vlib_buffer_t *b0; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 594 | u8 error0, next0; |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 595 | u16 type0, orig_type0; |
| 596 | u16 outer_id0, inner_id0; |
| 597 | u32 match_flags0; |
| 598 | u32 old_sw_if_index0, new_sw_if_index0, len0; |
| 599 | vnet_hw_interface_t *hi0; |
| 600 | main_intf_t *main_intf0; |
| 601 | vlan_intf_t *vlan_intf0; |
| 602 | qinq_intf_t *qinq_intf0; |
Dave Barach | cfba1e2 | 2016-11-16 10:23:50 -0500 | [diff] [blame] | 603 | ethernet_header_t *e0; |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 604 | u32 is_l20; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 605 | |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 606 | // Prefetch next iteration |
| 607 | if (n_left_from > 1) |
| 608 | { |
| 609 | vlib_buffer_t *p2; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 610 | |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 611 | p2 = vlib_get_buffer (vm, from[1]); |
| 612 | vlib_prefetch_buffer_header (p2, STORE); |
| 613 | CLIB_PREFETCH (p2->data, CLIB_CACHE_LINE_BYTES, LOAD); |
| 614 | } |
| 615 | |
| 616 | bi0 = from[0]; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 617 | to_next[0] = bi0; |
| 618 | from += 1; |
| 619 | to_next += 1; |
| 620 | n_left_from -= 1; |
| 621 | n_left_to_next -= 1; |
| 622 | |
| 623 | b0 = vlib_get_buffer (vm, bi0); |
| 624 | |
| 625 | error0 = ETHERNET_ERROR_NONE; |
Dave Barach | cfba1e2 | 2016-11-16 10:23:50 -0500 | [diff] [blame] | 626 | e0 = vlib_buffer_get_current (b0); |
| 627 | type0 = clib_net_to_host_u16 (e0->type); |
| 628 | |
John Lo | cc53285 | 2016-12-14 15:42:45 -0500 | [diff] [blame] | 629 | /* Speed-path for the untagged case */ |
Dave Barach | cfba1e2 | 2016-11-16 10:23:50 -0500 | [diff] [blame] | 630 | if (PREDICT_TRUE (variant == ETHERNET_INPUT_VARIANT_ETHERNET |
| 631 | && !ethernet_frame_is_tagged (type0))) |
| 632 | { |
| 633 | main_intf_t *intf0; |
| 634 | subint_config_t *subint0; |
| 635 | u32 sw_if_index0; |
| 636 | |
| 637 | sw_if_index0 = vnet_buffer (b0)->sw_if_index[VLIB_RX]; |
| 638 | is_l20 = cached_is_l2; |
| 639 | |
| 640 | if (PREDICT_FALSE (cached_sw_if_index != sw_if_index0)) |
| 641 | { |
| 642 | cached_sw_if_index = sw_if_index0; |
John Lo | 1904c47 | 2017-03-10 17:15:22 -0500 | [diff] [blame] | 643 | hi = vnet_get_sup_hw_interface (vnm, sw_if_index0); |
| 644 | intf0 = vec_elt_at_index (em->main_intfs, hi->hw_if_index); |
Dave Barach | cfba1e2 | 2016-11-16 10:23:50 -0500 | [diff] [blame] | 645 | subint0 = &intf0->untagged_subint; |
| 646 | cached_is_l2 = is_l20 = subint0->flags & SUBINT_CONFIG_L2; |
| 647 | } |
John Lo | 7714b30 | 2016-12-20 16:59:02 -0500 | [diff] [blame] | 648 | |
| 649 | vnet_buffer (b0)->ethernet.start_of_ethernet_header = |
| 650 | b0->current_data; |
| 651 | |
Dave Barach | cfba1e2 | 2016-11-16 10:23:50 -0500 | [diff] [blame] | 652 | if (PREDICT_TRUE (is_l20 != 0)) |
| 653 | { |
| 654 | next0 = em->l2_next; |
| 655 | vnet_buffer (b0)->l2.l2_len = sizeof (ethernet_header_t); |
Dave Barach | cfba1e2 | 2016-11-16 10:23:50 -0500 | [diff] [blame] | 656 | } |
John Lo | cc53285 | 2016-12-14 15:42:45 -0500 | [diff] [blame] | 657 | else |
| 658 | { |
John Lo | 1904c47 | 2017-03-10 17:15:22 -0500 | [diff] [blame] | 659 | if (!ethernet_address_cast (e0->dst_address) && |
Hongjun Ni | 9e3e361 | 2017-04-26 18:40:55 +0800 | [diff] [blame] | 660 | (hi->hw_address != 0) && |
John Lo | 1904c47 | 2017-03-10 17:15:22 -0500 | [diff] [blame] | 661 | !eth_mac_equal ((u8 *) e0, hi->hw_address)) |
| 662 | error0 = ETHERNET_ERROR_L3_MAC_MISMATCH; |
John Lo | cc53285 | 2016-12-14 15:42:45 -0500 | [diff] [blame] | 663 | determine_next_node (em, variant, 0, type0, b0, |
| 664 | &error0, &next0); |
| 665 | vlib_buffer_advance (b0, sizeof (ethernet_header_t)); |
| 666 | } |
| 667 | goto ship_it0; |
Dave Barach | cfba1e2 | 2016-11-16 10:23:50 -0500 | [diff] [blame] | 668 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 669 | |
John Lo | cc53285 | 2016-12-14 15:42:45 -0500 | [diff] [blame] | 670 | /* Slow-path for the tagged case */ |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 671 | parse_header (variant, |
| 672 | b0, |
| 673 | &type0, |
| 674 | &orig_type0, &outer_id0, &inner_id0, &match_flags0); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 675 | |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 676 | old_sw_if_index0 = vnet_buffer (b0)->sw_if_index[VLIB_RX]; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 677 | |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 678 | eth_vlan_table_lookups (em, |
| 679 | vnm, |
| 680 | old_sw_if_index0, |
| 681 | orig_type0, |
| 682 | outer_id0, |
| 683 | inner_id0, |
| 684 | &hi0, |
| 685 | &main_intf0, &vlan_intf0, &qinq_intf0); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 686 | |
| 687 | identify_subint (hi0, |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 688 | b0, |
| 689 | match_flags0, |
| 690 | main_intf0, |
| 691 | vlan_intf0, |
| 692 | qinq_intf0, &new_sw_if_index0, &error0, &is_l20); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 693 | |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 694 | // Save RX sw_if_index for later nodes |
| 695 | vnet_buffer (b0)->sw_if_index[VLIB_RX] = |
| 696 | error0 != |
| 697 | ETHERNET_ERROR_NONE ? old_sw_if_index0 : new_sw_if_index0; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 698 | |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 699 | // Increment subinterface stats |
| 700 | // Note that interface-level counters have already been incremented |
| 701 | // prior to calling this function. Thus only subinterface counters |
| 702 | // are incremented here. |
| 703 | // |
Damjan Marion | 607de1a | 2016-08-16 22:53:54 +0200 | [diff] [blame] | 704 | // Interface level counters include packets received on the main |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 705 | // interface and all subinterfaces. Subinterface level counters |
| 706 | // include only those packets received on that subinterface |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 707 | // 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] | 708 | if ((new_sw_if_index0 != ~0) |
| 709 | && (new_sw_if_index0 != old_sw_if_index0)) |
| 710 | { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 711 | |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 712 | len0 = vlib_buffer_length_in_chain (vm, b0) + b0->current_data |
| 713 | - vnet_buffer (b0)->ethernet.start_of_ethernet_header; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 714 | |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 715 | stats_n_packets += 1; |
| 716 | stats_n_bytes += len0; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 717 | |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 718 | // Batch stat increments from the same subinterface so counters |
Damjan Marion | 607de1a | 2016-08-16 22:53:54 +0200 | [diff] [blame] | 719 | // don't need to be incremented for every packet. |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 720 | if (PREDICT_FALSE (new_sw_if_index0 != stats_sw_if_index)) |
| 721 | { |
| 722 | stats_n_packets -= 1; |
| 723 | stats_n_bytes -= len0; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 724 | |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 725 | if (new_sw_if_index0 != ~0) |
| 726 | vlib_increment_combined_counter |
| 727 | (vnm->interface_main.combined_sw_if_counters |
| 728 | + VNET_INTERFACE_COUNTER_RX, |
Damjan Marion | 586afd7 | 2017-04-05 19:18:20 +0200 | [diff] [blame] | 729 | thread_index, new_sw_if_index0, 1, len0); |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 730 | if (stats_n_packets > 0) |
| 731 | { |
| 732 | vlib_increment_combined_counter |
| 733 | (vnm->interface_main.combined_sw_if_counters |
| 734 | + VNET_INTERFACE_COUNTER_RX, |
Damjan Marion | 586afd7 | 2017-04-05 19:18:20 +0200 | [diff] [blame] | 735 | thread_index, |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 736 | stats_sw_if_index, stats_n_packets, stats_n_bytes); |
| 737 | stats_n_packets = stats_n_bytes = 0; |
| 738 | } |
| 739 | stats_sw_if_index = new_sw_if_index0; |
| 740 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 741 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 742 | |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 743 | if (variant == ETHERNET_INPUT_VARIANT_NOT_L2) |
| 744 | is_l20 = 0; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 745 | |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 746 | determine_next_node (em, variant, is_l20, type0, b0, &error0, |
| 747 | &next0); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 748 | |
John Lo | 1904c47 | 2017-03-10 17:15:22 -0500 | [diff] [blame] | 749 | ship_it0: |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 750 | b0->error = error_node->errors[error0]; |
| 751 | |
| 752 | // verify speculative enqueue |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 753 | vlib_validate_buffer_enqueue_x1 (vm, node, next_index, |
| 754 | to_next, n_left_to_next, |
| 755 | bi0, next0); |
| 756 | } |
| 757 | |
| 758 | vlib_put_next_frame (vm, node, next_index, n_left_to_next); |
| 759 | } |
| 760 | |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 761 | // Increment any remaining batched stats |
| 762 | if (stats_n_packets > 0) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 763 | { |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 764 | vlib_increment_combined_counter |
| 765 | (vnm->interface_main.combined_sw_if_counters |
| 766 | + VNET_INTERFACE_COUNTER_RX, |
Damjan Marion | 586afd7 | 2017-04-05 19:18:20 +0200 | [diff] [blame] | 767 | thread_index, stats_sw_if_index, stats_n_packets, stats_n_bytes); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 768 | node->runtime_data[0] = stats_sw_if_index; |
| 769 | } |
| 770 | |
| 771 | return from_frame->n_vectors; |
| 772 | } |
| 773 | |
| 774 | static uword |
| 775 | ethernet_input (vlib_main_t * vm, |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 776 | vlib_node_runtime_t * node, vlib_frame_t * from_frame) |
| 777 | { |
| 778 | return ethernet_input_inline (vm, node, from_frame, |
| 779 | ETHERNET_INPUT_VARIANT_ETHERNET); |
| 780 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 781 | |
| 782 | static uword |
| 783 | ethernet_input_type (vlib_main_t * vm, |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 784 | vlib_node_runtime_t * node, vlib_frame_t * from_frame) |
| 785 | { |
| 786 | return ethernet_input_inline (vm, node, from_frame, |
| 787 | ETHERNET_INPUT_VARIANT_ETHERNET_TYPE); |
| 788 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 789 | |
| 790 | static uword |
| 791 | ethernet_input_not_l2 (vlib_main_t * vm, |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 792 | vlib_node_runtime_t * node, vlib_frame_t * from_frame) |
| 793 | { |
| 794 | return ethernet_input_inline (vm, node, from_frame, |
| 795 | ETHERNET_INPUT_VARIANT_NOT_L2); |
| 796 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 797 | |
| 798 | |
| 799 | // Return the subinterface config struct for the given sw_if_index |
| 800 | // Also return via parameter the appropriate match flags for the |
| 801 | // configured number of tags. |
| 802 | // On error (unsupported or not ethernet) return 0. |
| 803 | static subint_config_t * |
| 804 | ethernet_sw_interface_get_config (vnet_main_t * vnm, |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 805 | u32 sw_if_index, |
| 806 | u32 * flags, u32 * unsupported) |
| 807 | { |
| 808 | ethernet_main_t *em = ðernet_main; |
| 809 | vnet_hw_interface_t *hi; |
| 810 | vnet_sw_interface_t *si; |
| 811 | main_intf_t *main_intf; |
| 812 | vlan_table_t *vlan_table; |
| 813 | qinq_table_t *qinq_table; |
| 814 | subint_config_t *subint = 0; |
| 815 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 816 | hi = vnet_get_sup_hw_interface (vnm, sw_if_index); |
| 817 | |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 818 | if (!hi || (hi->hw_class_index != ethernet_hw_interface_class.index)) |
| 819 | { |
| 820 | *unsupported = 0; |
| 821 | goto done; // non-ethernet interface |
| 822 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 823 | |
| 824 | // ensure there's an entry for the main intf (shouldn't really be necessary) |
| 825 | vec_validate (em->main_intfs, hi->hw_if_index); |
| 826 | main_intf = vec_elt_at_index (em->main_intfs, hi->hw_if_index); |
| 827 | |
| 828 | // Locate the subint for the given ethernet config |
| 829 | si = vnet_get_sw_interface (vnm, sw_if_index); |
| 830 | |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 831 | if (si->sub.eth.flags.default_sub) |
| 832 | { |
| 833 | subint = &main_intf->default_subint; |
| 834 | *flags = SUBINT_CONFIG_MATCH_0_TAG | |
| 835 | SUBINT_CONFIG_MATCH_1_TAG | |
| 836 | SUBINT_CONFIG_MATCH_2_TAG | SUBINT_CONFIG_MATCH_3_TAG; |
| 837 | } |
| 838 | else if ((si->sub.eth.flags.no_tags) || (si->sub.eth.raw_flags == 0)) |
| 839 | { |
| 840 | // if no flags are set then this is a main interface |
| 841 | // so treat as untagged |
| 842 | subint = &main_intf->untagged_subint; |
| 843 | *flags = SUBINT_CONFIG_MATCH_0_TAG; |
| 844 | } |
| 845 | else |
| 846 | { |
| 847 | // one or two tags |
| 848 | // first get the vlan table |
| 849 | if (si->sub.eth.flags.dot1ad) |
| 850 | { |
| 851 | if (main_intf->dot1ad_vlans == 0) |
| 852 | { |
| 853 | // Allocate a vlan table from the pool |
| 854 | pool_get (em->vlan_pool, vlan_table); |
| 855 | main_intf->dot1ad_vlans = vlan_table - em->vlan_pool; |
| 856 | } |
| 857 | else |
| 858 | { |
| 859 | // Get ptr to existing vlan table |
| 860 | vlan_table = |
| 861 | vec_elt_at_index (em->vlan_pool, main_intf->dot1ad_vlans); |
| 862 | } |
| 863 | } |
| 864 | else |
| 865 | { // dot1q |
| 866 | if (main_intf->dot1q_vlans == 0) |
| 867 | { |
| 868 | // Allocate a vlan table from the pool |
| 869 | pool_get (em->vlan_pool, vlan_table); |
| 870 | main_intf->dot1q_vlans = vlan_table - em->vlan_pool; |
| 871 | } |
| 872 | else |
| 873 | { |
| 874 | // Get ptr to existing vlan table |
| 875 | vlan_table = |
| 876 | vec_elt_at_index (em->vlan_pool, main_intf->dot1q_vlans); |
| 877 | } |
| 878 | } |
| 879 | |
| 880 | if (si->sub.eth.flags.one_tag) |
| 881 | { |
| 882 | *flags = si->sub.eth.flags.exact_match ? |
| 883 | SUBINT_CONFIG_MATCH_1_TAG : |
| 884 | (SUBINT_CONFIG_MATCH_1_TAG | |
| 885 | SUBINT_CONFIG_MATCH_2_TAG | SUBINT_CONFIG_MATCH_3_TAG); |
| 886 | |
| 887 | if (si->sub.eth.flags.outer_vlan_id_any) |
| 888 | { |
| 889 | // not implemented yet |
| 890 | *unsupported = 1; |
| 891 | goto done; |
| 892 | } |
| 893 | else |
| 894 | { |
| 895 | // a single vlan, a common case |
| 896 | subint = |
| 897 | &vlan_table->vlans[si->sub.eth. |
| 898 | outer_vlan_id].single_tag_subint; |
| 899 | } |
| 900 | |
| 901 | } |
| 902 | else |
| 903 | { |
| 904 | // Two tags |
| 905 | *flags = si->sub.eth.flags.exact_match ? |
| 906 | SUBINT_CONFIG_MATCH_2_TAG : |
| 907 | (SUBINT_CONFIG_MATCH_2_TAG | SUBINT_CONFIG_MATCH_3_TAG); |
| 908 | |
| 909 | if (si->sub.eth.flags.outer_vlan_id_any |
| 910 | && si->sub.eth.flags.inner_vlan_id_any) |
| 911 | { |
| 912 | // not implemented yet |
| 913 | *unsupported = 1; |
| 914 | goto done; |
| 915 | } |
| 916 | |
| 917 | if (si->sub.eth.flags.inner_vlan_id_any) |
| 918 | { |
| 919 | // a specific outer and "any" inner |
| 920 | // don't need a qinq table for this |
| 921 | subint = |
| 922 | &vlan_table->vlans[si->sub.eth. |
| 923 | outer_vlan_id].inner_any_subint; |
| 924 | if (si->sub.eth.flags.exact_match) |
| 925 | { |
| 926 | *flags = SUBINT_CONFIG_MATCH_2_TAG; |
| 927 | } |
| 928 | else |
| 929 | { |
| 930 | *flags = SUBINT_CONFIG_MATCH_2_TAG | |
| 931 | SUBINT_CONFIG_MATCH_3_TAG; |
| 932 | } |
| 933 | } |
| 934 | else |
| 935 | { |
| 936 | // a specific outer + specifc innner vlan id, a common case |
| 937 | |
| 938 | // get the qinq table |
| 939 | if (vlan_table->vlans[si->sub.eth.outer_vlan_id].qinqs == 0) |
| 940 | { |
| 941 | // Allocate a qinq table from the pool |
| 942 | pool_get (em->qinq_pool, qinq_table); |
| 943 | vlan_table->vlans[si->sub.eth.outer_vlan_id].qinqs = |
| 944 | qinq_table - em->qinq_pool; |
| 945 | } |
| 946 | else |
| 947 | { |
| 948 | // Get ptr to existing qinq table |
| 949 | qinq_table = |
| 950 | vec_elt_at_index (em->qinq_pool, |
| 951 | vlan_table->vlans[si->sub. |
| 952 | eth.outer_vlan_id]. |
| 953 | qinqs); |
| 954 | } |
| 955 | subint = &qinq_table->vlans[si->sub.eth.inner_vlan_id].subint; |
| 956 | } |
| 957 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 958 | } |
| 959 | |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 960 | done: |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 961 | return subint; |
| 962 | } |
| 963 | |
| 964 | clib_error_t * |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 965 | 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] | 966 | { |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 967 | subint_config_t *subint; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 968 | u32 dummy_flags; |
| 969 | u32 dummy_unsup; |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 970 | clib_error_t *error = 0; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 971 | |
| 972 | // Find the config for this subinterface |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 973 | subint = |
| 974 | ethernet_sw_interface_get_config (vnm, sw_if_index, &dummy_flags, |
| 975 | &dummy_unsup); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 976 | |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 977 | if (subint == 0) |
| 978 | { |
| 979 | // not implemented yet or not ethernet |
| 980 | goto done; |
| 981 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 982 | |
| 983 | subint->sw_if_index = |
| 984 | ((flags & VNET_SW_INTERFACE_FLAG_ADMIN_UP) ? sw_if_index : ~0); |
| 985 | |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 986 | done: |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 987 | return error; |
| 988 | } |
| 989 | |
| 990 | VNET_SW_INTERFACE_ADMIN_UP_DOWN_FUNCTION (ethernet_sw_interface_up_down); |
| 991 | |
| 992 | |
| 993 | // Set the L2/L3 mode for the subinterface |
| 994 | void |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 995 | 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] | 996 | { |
| 997 | subint_config_t *subint; |
| 998 | u32 dummy_flags; |
| 999 | u32 dummy_unsup; |
| 1000 | int is_port; |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 1001 | 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] | 1002 | |
| 1003 | is_port = !(sw->type == VNET_SW_INTERFACE_TYPE_SUB); |
| 1004 | |
| 1005 | // Find the config for this subinterface |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 1006 | subint = |
| 1007 | ethernet_sw_interface_get_config (vnm, sw_if_index, &dummy_flags, |
| 1008 | &dummy_unsup); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1009 | |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 1010 | if (subint == 0) |
| 1011 | { |
| 1012 | // unimplemented or not ethernet |
| 1013 | goto done; |
| 1014 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1015 | |
| 1016 | // Double check that the config we found is for our interface (or the interface is down) |
| 1017 | ASSERT ((subint->sw_if_index == sw_if_index) | (subint->sw_if_index == ~0)); |
| 1018 | |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 1019 | if (l2) |
| 1020 | { |
| 1021 | subint->flags |= SUBINT_CONFIG_L2; |
| 1022 | if (is_port) |
| 1023 | subint->flags |= |
| 1024 | SUBINT_CONFIG_MATCH_0_TAG | SUBINT_CONFIG_MATCH_1_TAG |
| 1025 | | SUBINT_CONFIG_MATCH_2_TAG | SUBINT_CONFIG_MATCH_3_TAG; |
| 1026 | } |
| 1027 | else |
| 1028 | { |
| 1029 | subint->flags &= ~SUBINT_CONFIG_L2; |
| 1030 | if (is_port) |
| 1031 | subint->flags &= |
| 1032 | ~(SUBINT_CONFIG_MATCH_1_TAG | SUBINT_CONFIG_MATCH_2_TAG |
| 1033 | | SUBINT_CONFIG_MATCH_3_TAG); |
| 1034 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1035 | |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 1036 | done: |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1037 | return; |
| 1038 | } |
| 1039 | |
Christian Dechamplain (cdechamp) | 07aecbb | 2016-04-05 10:40:38 -0400 | [diff] [blame] | 1040 | /* |
| 1041 | * Set the L2/L3 mode for the subinterface regardless of port |
| 1042 | */ |
| 1043 | void |
| 1044 | ethernet_sw_interface_set_l2_mode_noport (vnet_main_t * vnm, |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 1045 | u32 sw_if_index, u32 l2) |
Christian Dechamplain (cdechamp) | 07aecbb | 2016-04-05 10:40:38 -0400 | [diff] [blame] | 1046 | { |
| 1047 | subint_config_t *subint; |
| 1048 | u32 dummy_flags; |
| 1049 | u32 dummy_unsup; |
| 1050 | |
| 1051 | /* Find the config for this subinterface */ |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 1052 | subint = |
| 1053 | ethernet_sw_interface_get_config (vnm, sw_if_index, &dummy_flags, |
| 1054 | &dummy_unsup); |
Christian Dechamplain (cdechamp) | 07aecbb | 2016-04-05 10:40:38 -0400 | [diff] [blame] | 1055 | |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 1056 | if (subint == 0) |
| 1057 | { |
| 1058 | /* unimplemented or not ethernet */ |
| 1059 | goto done; |
| 1060 | } |
Christian Dechamplain (cdechamp) | 07aecbb | 2016-04-05 10:40:38 -0400 | [diff] [blame] | 1061 | |
| 1062 | /* |
| 1063 | * Double check that the config we found is for our interface (or the |
| 1064 | * interface is down) |
| 1065 | */ |
| 1066 | ASSERT ((subint->sw_if_index == sw_if_index) | (subint->sw_if_index == ~0)); |
| 1067 | |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 1068 | if (l2) |
| 1069 | { |
| 1070 | subint->flags |= SUBINT_CONFIG_L2; |
| 1071 | } |
| 1072 | else |
| 1073 | { |
| 1074 | subint->flags &= ~SUBINT_CONFIG_L2; |
| 1075 | } |
Christian Dechamplain (cdechamp) | 07aecbb | 2016-04-05 10:40:38 -0400 | [diff] [blame] | 1076 | |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 1077 | done: |
Christian Dechamplain (cdechamp) | 07aecbb | 2016-04-05 10:40:38 -0400 | [diff] [blame] | 1078 | return; |
| 1079 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1080 | |
| 1081 | static clib_error_t * |
| 1082 | ethernet_sw_interface_add_del (vnet_main_t * vnm, |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 1083 | u32 sw_if_index, u32 is_create) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1084 | { |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 1085 | clib_error_t *error = 0; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1086 | subint_config_t *subint; |
| 1087 | u32 match_flags; |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 1088 | u32 unsupported = 0; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1089 | |
| 1090 | // Find the config for this subinterface |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 1091 | subint = |
| 1092 | ethernet_sw_interface_get_config (vnm, sw_if_index, &match_flags, |
| 1093 | &unsupported); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1094 | |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 1095 | if (subint == 0) |
| 1096 | { |
| 1097 | // not implemented yet or not ethernet |
| 1098 | if (unsupported) |
| 1099 | { |
Damjan Marion | 607de1a | 2016-08-16 22:53:54 +0200 | [diff] [blame] | 1100 | // this is the NYI case |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 1101 | error = clib_error_return (0, "not implemented yet"); |
| 1102 | } |
| 1103 | goto done; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1104 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1105 | |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 1106 | if (!is_create) |
| 1107 | { |
| 1108 | subint->flags = 0; |
| 1109 | return error; |
| 1110 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1111 | |
| 1112 | // Initialize the subint |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 1113 | if (subint->flags & SUBINT_CONFIG_VALID) |
| 1114 | { |
| 1115 | // Error vlan already in use |
| 1116 | error = clib_error_return (0, "vlan is already in use"); |
| 1117 | } |
| 1118 | else |
| 1119 | { |
| 1120 | // Note that config is L3 by defaulty |
| 1121 | subint->flags = SUBINT_CONFIG_VALID | match_flags; |
| 1122 | subint->sw_if_index = ~0; // because interfaces are initially down |
| 1123 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1124 | |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 1125 | done: |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1126 | return error; |
| 1127 | } |
| 1128 | |
| 1129 | VNET_SW_INTERFACE_ADD_DEL_FUNCTION (ethernet_sw_interface_add_del); |
| 1130 | |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 1131 | static char *ethernet_error_strings[] = { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1132 | #define ethernet_error(n,c,s) s, |
| 1133 | #include "error.def" |
| 1134 | #undef ethernet_error |
| 1135 | }; |
| 1136 | |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 1137 | /* *INDENT-OFF* */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1138 | VLIB_REGISTER_NODE (ethernet_input_node) = { |
| 1139 | .function = ethernet_input, |
| 1140 | .name = "ethernet-input", |
| 1141 | /* Takes a vector of packets. */ |
| 1142 | .vector_size = sizeof (u32), |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1143 | .n_errors = ETHERNET_N_ERROR, |
| 1144 | .error_strings = ethernet_error_strings, |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1145 | .n_next_nodes = ETHERNET_INPUT_N_NEXT, |
| 1146 | .next_nodes = { |
| 1147 | #define _(s,n) [ETHERNET_INPUT_NEXT_##s] = n, |
| 1148 | foreach_ethernet_input_next |
| 1149 | #undef _ |
| 1150 | }, |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1151 | .format_buffer = format_ethernet_header_with_length, |
| 1152 | .format_trace = format_ethernet_input_trace, |
| 1153 | .unformat_buffer = unformat_ethernet_header, |
| 1154 | }; |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 1155 | /* *INDENT-ON* */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1156 | |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 1157 | /* *INDENT-OFF* */ |
Damjan Marion | 1c80e83 | 2016-05-11 23:07:18 +0200 | [diff] [blame] | 1158 | VLIB_NODE_FUNCTION_MULTIARCH (ethernet_input_node, ethernet_input) |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 1159 | /* *INDENT-ON* */ |
Damjan Marion | 1c80e83 | 2016-05-11 23:07:18 +0200 | [diff] [blame] | 1160 | |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 1161 | /* *INDENT-OFF* */ |
| 1162 | VLIB_REGISTER_NODE (ethernet_input_type_node, static) = { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1163 | .function = ethernet_input_type, |
| 1164 | .name = "ethernet-input-type", |
| 1165 | /* Takes a vector of packets. */ |
| 1166 | .vector_size = sizeof (u32), |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1167 | .n_next_nodes = ETHERNET_INPUT_N_NEXT, |
| 1168 | .next_nodes = { |
| 1169 | #define _(s,n) [ETHERNET_INPUT_NEXT_##s] = n, |
| 1170 | foreach_ethernet_input_next |
| 1171 | #undef _ |
| 1172 | }, |
| 1173 | }; |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 1174 | /* *INDENT-ON* */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1175 | |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 1176 | /* *INDENT-OFF* */ |
Damjan Marion | 1c80e83 | 2016-05-11 23:07:18 +0200 | [diff] [blame] | 1177 | VLIB_NODE_FUNCTION_MULTIARCH (ethernet_input_type_node, ethernet_input_type) |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 1178 | /* *INDENT-ON* */ |
Damjan Marion | 1c80e83 | 2016-05-11 23:07:18 +0200 | [diff] [blame] | 1179 | |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 1180 | /* *INDENT-OFF* */ |
| 1181 | VLIB_REGISTER_NODE (ethernet_input_not_l2_node, static) = { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1182 | .function = ethernet_input_not_l2, |
| 1183 | .name = "ethernet-input-not-l2", |
| 1184 | /* Takes a vector of packets. */ |
| 1185 | .vector_size = sizeof (u32), |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1186 | .n_next_nodes = ETHERNET_INPUT_N_NEXT, |
| 1187 | .next_nodes = { |
| 1188 | #define _(s,n) [ETHERNET_INPUT_NEXT_##s] = n, |
| 1189 | foreach_ethernet_input_next |
| 1190 | #undef _ |
| 1191 | }, |
| 1192 | }; |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 1193 | /* *INDENT-ON* */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1194 | |
Damjan Marion | 1c80e83 | 2016-05-11 23:07:18 +0200 | [diff] [blame] | 1195 | |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 1196 | /* *INDENT-OFF* */ |
| 1197 | VLIB_NODE_FUNCTION_MULTIARCH (ethernet_input_not_l2_node, |
| 1198 | ethernet_input_not_l2) |
| 1199 | /* *INDENT-ON* */ |
| 1200 | |
| 1201 | |
| 1202 | void |
| 1203 | ethernet_set_rx_redirect (vnet_main_t * vnm, |
| 1204 | vnet_hw_interface_t * hi, u32 enable) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1205 | { |
| 1206 | // Insure all packets go to ethernet-input (i.e. untagged ipv4 packets |
| 1207 | // don't go directly to ip4-input) |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 1208 | vnet_hw_interface_rx_redirect_to_node |
| 1209 | (vnm, hi->hw_if_index, enable ? ethernet_input_node.index : ~0); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1210 | } |
| 1211 | |
| 1212 | |
| 1213 | /* |
| 1214 | * Initialization and registration for the next_by_ethernet structure |
| 1215 | */ |
| 1216 | |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 1217 | clib_error_t * |
| 1218 | next_by_ethertype_init (next_by_ethertype_t * l3_next) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1219 | { |
| 1220 | l3_next->input_next_by_type = sparse_vec_new |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 1221 | ( /* elt bytes */ sizeof (l3_next->input_next_by_type[0]), |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1222 | /* bits in index */ BITS (((ethernet_header_t *) 0)->type)); |
| 1223 | |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 1224 | vec_validate (l3_next->sparse_index_by_input_next_index, |
| 1225 | ETHERNET_INPUT_NEXT_DROP); |
| 1226 | vec_validate (l3_next->sparse_index_by_input_next_index, |
| 1227 | ETHERNET_INPUT_NEXT_PUNT); |
| 1228 | l3_next->sparse_index_by_input_next_index[ETHERNET_INPUT_NEXT_DROP] = |
| 1229 | SPARSE_VEC_INVALID_INDEX; |
| 1230 | l3_next->sparse_index_by_input_next_index[ETHERNET_INPUT_NEXT_PUNT] = |
| 1231 | SPARSE_VEC_INVALID_INDEX; |
| 1232 | |
Damjan Marion | 607de1a | 2016-08-16 22:53:54 +0200 | [diff] [blame] | 1233 | /* |
| 1234 | * Make sure we don't wipe out an ethernet registration by mistake |
Dave Barach | 1f49ed6 | 2016-02-24 11:29:06 -0500 | [diff] [blame] | 1235 | * Can happen if init function ordering constraints are missing. |
| 1236 | */ |
| 1237 | if (CLIB_DEBUG > 0) |
| 1238 | { |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 1239 | ethernet_main_t *em = ðernet_main; |
| 1240 | ASSERT (em->next_by_ethertype_register_called == 0); |
Dave Barach | 1f49ed6 | 2016-02-24 11:29:06 -0500 | [diff] [blame] | 1241 | } |
| 1242 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1243 | return 0; |
| 1244 | } |
| 1245 | |
| 1246 | // Add an ethertype -> next index mapping to the structure |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 1247 | clib_error_t * |
| 1248 | next_by_ethertype_register (next_by_ethertype_t * l3_next, |
| 1249 | u32 ethertype, u32 next_index) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1250 | { |
| 1251 | u32 i; |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 1252 | u16 *n; |
| 1253 | ethernet_main_t *em = ðernet_main; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1254 | |
Dave Barach | 1f49ed6 | 2016-02-24 11:29:06 -0500 | [diff] [blame] | 1255 | if (CLIB_DEBUG > 0) |
| 1256 | { |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 1257 | ethernet_main_t *em = ðernet_main; |
Dave Barach | 1f49ed6 | 2016-02-24 11:29:06 -0500 | [diff] [blame] | 1258 | em->next_by_ethertype_register_called = 1; |
| 1259 | } |
| 1260 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1261 | /* Setup ethernet type -> next index sparse vector mapping. */ |
| 1262 | n = sparse_vec_validate (l3_next->input_next_by_type, ethertype); |
| 1263 | n[0] = next_index; |
| 1264 | |
| 1265 | /* Rebuild next index -> sparse index inverse mapping when sparse vector |
| 1266 | is updated. */ |
| 1267 | vec_validate (l3_next->sparse_index_by_input_next_index, next_index); |
| 1268 | 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] | 1269 | l3_next-> |
| 1270 | 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] | 1271 | |
| 1272 | // do not allow the cached next index's to be updated if L3 |
| 1273 | // redirect is enabled, as it will have overwritten them |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 1274 | if (!em->redirect_l3) |
| 1275 | { |
| 1276 | // Cache common ethertypes directly |
| 1277 | if (ethertype == ETHERNET_TYPE_IP4) |
| 1278 | { |
| 1279 | l3_next->input_next_ip4 = next_index; |
| 1280 | } |
| 1281 | else if (ethertype == ETHERNET_TYPE_IP6) |
| 1282 | { |
| 1283 | l3_next->input_next_ip6 = next_index; |
| 1284 | } |
Neale Ranns | 0f26c5a | 2017-03-01 15:12:11 -0800 | [diff] [blame] | 1285 | else if (ethertype == ETHERNET_TYPE_MPLS) |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 1286 | { |
| 1287 | l3_next->input_next_mpls = next_index; |
| 1288 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1289 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1290 | return 0; |
| 1291 | } |
| 1292 | |
| 1293 | |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 1294 | static clib_error_t * |
| 1295 | ethernet_input_init (vlib_main_t * vm) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1296 | { |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 1297 | ethernet_main_t *em = ðernet_main; |
| 1298 | __attribute__ ((unused)) vlan_table_t *invalid_vlan_table; |
| 1299 | __attribute__ ((unused)) qinq_table_t *invalid_qinq_table; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1300 | |
| 1301 | ethernet_setup_node (vm, ethernet_input_node.index); |
| 1302 | ethernet_setup_node (vm, ethernet_input_type_node.index); |
| 1303 | ethernet_setup_node (vm, ethernet_input_not_l2_node.index); |
| 1304 | |
| 1305 | next_by_ethertype_init (&em->l3_next); |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 1306 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1307 | // Initialize pools and vector for vlan parsing |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 1308 | vec_validate (em->main_intfs, 10); // 10 main interfaces |
| 1309 | pool_alloc (em->vlan_pool, 10); |
| 1310 | pool_alloc (em->qinq_pool, 1); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1311 | |
| 1312 | // 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] | 1313 | pool_get (em->vlan_pool, invalid_vlan_table); // first id = 0 |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1314 | // 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] | 1315 | pool_get (em->qinq_pool, invalid_qinq_table); // first id = 0 |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1316 | |
| 1317 | return 0; |
| 1318 | } |
| 1319 | |
| 1320 | VLIB_INIT_FUNCTION (ethernet_input_init); |
| 1321 | |
| 1322 | void |
| 1323 | ethernet_register_input_type (vlib_main_t * vm, |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 1324 | ethernet_type_t type, u32 node_index) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1325 | { |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 1326 | ethernet_main_t *em = ðernet_main; |
| 1327 | ethernet_type_info_t *ti; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1328 | u32 i; |
| 1329 | |
| 1330 | { |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 1331 | clib_error_t *error = vlib_call_init_function (vm, ethernet_init); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1332 | if (error) |
| 1333 | clib_error_report (error); |
| 1334 | } |
| 1335 | |
| 1336 | ti = ethernet_get_type_info (em, type); |
| 1337 | ti->node_index = node_index; |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 1338 | ti->next_index = vlib_node_add_next (vm, |
| 1339 | ethernet_input_node.index, node_index); |
| 1340 | 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] | 1341 | ASSERT (i == ti->next_index); |
| 1342 | |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 1343 | 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] | 1344 | ASSERT (i == ti->next_index); |
| 1345 | |
| 1346 | // Add the L3 node for this ethertype to the next nodes structure |
| 1347 | next_by_ethertype_register (&em->l3_next, type, ti->next_index); |
| 1348 | |
| 1349 | // Call the registration functions for other nodes that want a mapping |
| 1350 | l2bvi_register_input_type (vm, type, node_index); |
| 1351 | } |
| 1352 | |
| 1353 | void |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 1354 | ethernet_register_l2_input (vlib_main_t * vm, u32 node_index) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1355 | { |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 1356 | ethernet_main_t *em = ðernet_main; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1357 | u32 i; |
| 1358 | |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 1359 | em->l2_next = |
| 1360 | vlib_node_add_next (vm, ethernet_input_node.index, node_index); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1361 | |
Damjan Marion | 607de1a | 2016-08-16 22:53:54 +0200 | [diff] [blame] | 1362 | /* |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1363 | * Even if we never use these arcs, we have to align the next indices... |
| 1364 | */ |
| 1365 | i = vlib_node_add_next (vm, ethernet_input_type_node.index, node_index); |
| 1366 | |
| 1367 | ASSERT (i == em->l2_next); |
| 1368 | |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 1369 | 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] | 1370 | ASSERT (i == em->l2_next); |
| 1371 | } |
| 1372 | |
| 1373 | // Register a next node for L3 redirect, and enable L3 redirect |
| 1374 | void |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 1375 | ethernet_register_l3_redirect (vlib_main_t * vm, u32 node_index) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1376 | { |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 1377 | ethernet_main_t *em = ðernet_main; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1378 | u32 i; |
| 1379 | |
| 1380 | em->redirect_l3 = 1; |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 1381 | em->redirect_l3_next = vlib_node_add_next (vm, |
| 1382 | ethernet_input_node.index, |
| 1383 | node_index); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1384 | /* |
| 1385 | * Change the cached next nodes to the redirect node |
| 1386 | */ |
| 1387 | em->l3_next.input_next_ip4 = em->redirect_l3_next; |
| 1388 | em->l3_next.input_next_ip6 = em->redirect_l3_next; |
| 1389 | em->l3_next.input_next_mpls = em->redirect_l3_next; |
| 1390 | |
| 1391 | /* |
| 1392 | * Even if we never use these arcs, we have to align the next indices... |
| 1393 | */ |
| 1394 | i = vlib_node_add_next (vm, ethernet_input_type_node.index, node_index); |
| 1395 | |
| 1396 | ASSERT (i == em->redirect_l3_next); |
jerryian | ff82ed6 | 2016-12-05 17:13:00 +0800 | [diff] [blame] | 1397 | |
| 1398 | i = vlib_node_add_next (vm, ethernet_input_not_l2_node.index, node_index); |
| 1399 | |
| 1400 | ASSERT (i == em->redirect_l3_next); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1401 | } |
Keith Burns (alagalah) | e70dcc8 | 2016-08-15 18:33:19 -0700 | [diff] [blame] | 1402 | |
| 1403 | /* |
| 1404 | * fd.io coding-style-patch-verification: ON |
| 1405 | * |
| 1406 | * Local Variables: |
| 1407 | * eval: (c-set-style "gnu") |
| 1408 | * End: |
| 1409 | */ |