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