blob: 5305012f26d2921fe929d0e7fe26371a2540424a [file] [log] [blame]
Ed Warnickecb9cada2015-12-08 15:45:58 -07001/*
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)e70dcc82016-08-15 18:33:19 -070050 _ (LLC, "llc-input")
Ed Warnickecb9cada2015-12-08 15:45:58 -070051
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -070052typedef enum
53{
Ed Warnickecb9cada2015-12-08 15:45:58 -070054#define _(s,n) ETHERNET_INPUT_NEXT_##s,
55 foreach_ethernet_input_next
56#undef _
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -070057 ETHERNET_INPUT_N_NEXT,
Ed Warnickecb9cada2015-12-08 15:45:58 -070058} ethernet_input_next_t;
59
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -070060typedef struct
61{
Ed Warnickecb9cada2015-12-08 15:45:58 -070062 u8 packet_data[32];
63} ethernet_input_trace_t;
64
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -070065static u8 *
66format_ethernet_input_trace (u8 * s, va_list * va)
Ed Warnickecb9cada2015-12-08 15:45:58 -070067{
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)e70dcc82016-08-15 18:33:19 -070070 ethernet_input_trace_t *t = va_arg (*va, ethernet_input_trace_t *);
Ed Warnickecb9cada2015-12-08 15:45:58 -070071
72 s = format (s, "%U", format_ethernet_header, t->packet_data);
73
74 return s;
75}
76
77vlib_node_registration_t ethernet_input_node;
78
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -070079typedef enum
80{
Ed Warnickecb9cada2015-12-08 15:45:58 -070081 ETHERNET_INPUT_VARIANT_ETHERNET,
82 ETHERNET_INPUT_VARIANT_ETHERNET_TYPE,
Ed Warnickecb9cada2015-12-08 15:45:58 -070083 ETHERNET_INPUT_VARIANT_NOT_L2,
84} ethernet_input_variant_t;
85
86
Ed Warnickecb9cada2015-12-08 15:45:58 -070087// Parse the ethernet header to extract vlan tags and innermost ethertype
88static_always_inline void
89parse_header (ethernet_input_variant_t variant,
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -070090 vlib_buffer_t * b0,
91 u16 * type,
92 u16 * orig_type,
93 u16 * outer_id, u16 * inner_id, u32 * match_flags)
94{
Chris Luke194ebc52016-04-25 14:26:55 -040095 u8 vlan_count;
Ed Warnickecb9cada2015-12-08 15:45:58 -070096
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -070097 if (variant == ETHERNET_INPUT_VARIANT_ETHERNET
98 || variant == ETHERNET_INPUT_VARIANT_NOT_L2)
99 {
100 ethernet_header_t *e0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700101
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700102 e0 = (void *) (b0->data + b0->current_data);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700103
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700104 vnet_buffer (b0)->ethernet.start_of_ethernet_header = b0->current_data;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700105
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700106 vlib_buffer_advance (b0, sizeof (e0[0]));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700107
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700108 *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 Warnickecb9cada2015-12-08 15:45:58 -0700114
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700115 e0 = (void *) (b0->data + b0->current_data);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700116
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700117 vlib_buffer_advance (b0, sizeof (e0[0]));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700118
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700119 *type = clib_net_to_host_u16 (e0[0]);
120 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700121
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 Luke194ebc52016-04-25 14:26:55 -0400130 vlan_count = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700131
132 // check for vlan encaps
Damjan Marionb94bdad2016-09-19 11:32:03 +0200133 if (ethernet_frame_is_tagged (*type))
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700134 {
135 ethernet_vlan_header_t *h0;
136 u16 tag;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700137
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700138 *match_flags = SUBINT_CONFIG_VALID | SUBINT_CONFIG_MATCH_1_TAG;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700139
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)e70dcc82016-08-15 18:33:19 -0700144 *outer_id = tag & 0xfff;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700145
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700146 *type = clib_net_to_host_u16 (h0->type);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700147
148 vlib_buffer_advance (b0, sizeof (h0[0]));
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700149 vlan_count = 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700150
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700151 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 Warnickecb9cada2015-12-08 15:45:58 -0700174 }
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700175 ethernet_buffer_set_vlan_count (b0, vlan_count);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700176}
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.
181static_always_inline void
182identify_subint (vnet_hw_interface_t * hi,
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700183 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 Warnickecb9cada2015-12-08 15:45:58 -0700189{
190 u32 matched;
191
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700192 matched = eth_identify_subint (hi, b0, match_flags,
193 main_intf, vlan_intf, qinq_intf,
194 new_sw_if_index, error0, is_l2);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700195
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700196 if (matched)
197 {
Ed Warnickecb9cada2015-12-08 15:45:58 -0700198
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700199 // 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 Warnickecb9cada2015-12-08 15:45:58 -0700208
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700209 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 Warnickecb9cada2015-12-08 15:45:58 -0700220 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700221}
222
223static_always_inline void
224determine_next_node (ethernet_main_t * em,
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700225 ethernet_input_variant_t variant,
226 u32 is_l20,
227 u32 type0, vlib_buffer_t * b0, u8 * error0, u8 * next0)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700228{
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700229 if (PREDICT_FALSE (*error0 != ETHERNET_ERROR_NONE))
230 {
231 // some error occurred
232 *next0 = ETHERNET_INPUT_NEXT_DROP;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700233 }
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700234 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 Hothama8cd3092016-09-19 09:55:07 -0700238 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)e70dcc82016-08-15 18:33:19 -0700240 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 }
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800252 else if (type0 == ETHERNET_TYPE_MPLS)
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700253 {
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 Marion607de1a2016-08-16 22:53:54 +0200274 // If variant is variant_ethernet then we came from LLC processing. Don't
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700275 // 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 Warnickecb9cada2015-12-08 15:45:58 -0700281}
282
283static_always_inline uword
284ethernet_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)e70dcc82016-08-15 18:33:19 -0700289 vnet_main_t *vnm = vnet_get_main ();
290 ethernet_main_t *em = &ethernet_main;
291 vlib_node_runtime_t *error_node;
292 u32 n_left_from, next_index, *from, *to_next;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700293 u32 stats_sw_if_index, stats_n_packets, stats_n_bytes;
Damjan Marion586afd72017-04-05 19:18:20 +0200294 u32 thread_index = vlib_get_thread_index ();
Dave Barachcfba1e22016-11-16 10:23:50 -0500295 u32 cached_sw_if_index = ~0;
296 u32 cached_is_l2 = 0; /* shut up gcc */
John Lo1904c472017-03-10 17:15:22 -0500297 vnet_hw_interface_t *hi = NULL; /* used for main interface only */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700298
299 if (variant != ETHERNET_INPUT_VARIANT_ETHERNET)
300 error_node = vlib_node_get_runtime (vm, ethernet_input_node.index);
301 else
302 error_node = node;
303
304 from = vlib_frame_vector_args (from_frame);
305 n_left_from = from_frame->n_vectors;
306
307 if (node->flags & VLIB_NODE_FLAG_TRACE)
308 vlib_trace_frame_buffers_only (vm, node,
309 from,
310 n_left_from,
311 sizeof (from[0]),
312 sizeof (ethernet_input_trace_t));
313
314 next_index = node->cached_next_index;
315 stats_sw_if_index = node->runtime_data[0];
316 stats_n_packets = stats_n_bytes = 0;
317
318 while (n_left_from > 0)
319 {
320 u32 n_left_to_next;
321
322 vlib_get_next_frame (vm, node, next_index, to_next, n_left_to_next);
323
324 while (n_left_from >= 4 && n_left_to_next >= 2)
325 {
326 u32 bi0, bi1;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700327 vlib_buffer_t *b0, *b1;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700328 u8 next0, next1, error0, error1;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700329 u16 type0, orig_type0, type1, orig_type1;
330 u16 outer_id0, inner_id0, outer_id1, inner_id1;
331 u32 match_flags0, match_flags1;
332 u32 old_sw_if_index0, new_sw_if_index0, len0, old_sw_if_index1,
333 new_sw_if_index1, len1;
334 vnet_hw_interface_t *hi0, *hi1;
335 main_intf_t *main_intf0, *main_intf1;
336 vlan_intf_t *vlan_intf0, *vlan_intf1;
337 qinq_intf_t *qinq_intf0, *qinq_intf1;
338 u32 is_l20, is_l21;
Dave Barachcfba1e22016-11-16 10:23:50 -0500339 ethernet_header_t *e0, *e1;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700340
341 /* Prefetch next iteration. */
342 {
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700343 vlib_buffer_t *b2, *b3;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700344
345 b2 = vlib_get_buffer (vm, from[2]);
346 b3 = vlib_get_buffer (vm, from[3]);
347
348 vlib_prefetch_buffer_header (b2, STORE);
349 vlib_prefetch_buffer_header (b3, STORE);
350
351 CLIB_PREFETCH (b2->data, sizeof (ethernet_header_t), LOAD);
352 CLIB_PREFETCH (b3->data, sizeof (ethernet_header_t), LOAD);
353 }
354
355 bi0 = from[0];
356 bi1 = from[1];
357 to_next[0] = bi0;
358 to_next[1] = bi1;
359 from += 2;
360 to_next += 2;
361 n_left_to_next -= 2;
362 n_left_from -= 2;
363
364 b0 = vlib_get_buffer (vm, bi0);
365 b1 = vlib_get_buffer (vm, bi1);
366
367 error0 = error1 = ETHERNET_ERROR_NONE;
Dave Barachcfba1e22016-11-16 10:23:50 -0500368 e0 = vlib_buffer_get_current (b0);
369 type0 = clib_net_to_host_u16 (e0->type);
370 e1 = vlib_buffer_get_current (b1);
371 type1 = clib_net_to_host_u16 (e1->type);
372
John Locc532852016-12-14 15:42:45 -0500373 /* Speed-path for the untagged case */
Dave Barachcfba1e22016-11-16 10:23:50 -0500374 if (PREDICT_TRUE (variant == ETHERNET_INPUT_VARIANT_ETHERNET
375 && !ethernet_frame_is_tagged (type0)
376 && !ethernet_frame_is_tagged (type1)))
377 {
378 main_intf_t *intf0;
379 subint_config_t *subint0;
380 u32 sw_if_index0, sw_if_index1;
381
382 sw_if_index0 = vnet_buffer (b0)->sw_if_index[VLIB_RX];
383 sw_if_index1 = vnet_buffer (b1)->sw_if_index[VLIB_RX];
384 is_l20 = cached_is_l2;
385
386 /* This is probably wholly unnecessary */
387 if (PREDICT_FALSE (sw_if_index0 != sw_if_index1))
388 goto slowpath;
389
John Lo1904c472017-03-10 17:15:22 -0500390 /* Now sw_if_index0 == sw_if_index1 */
Dave Barachcfba1e22016-11-16 10:23:50 -0500391 if (PREDICT_FALSE (cached_sw_if_index != sw_if_index0))
392 {
393 cached_sw_if_index = sw_if_index0;
John Lo1904c472017-03-10 17:15:22 -0500394 hi = vnet_get_sup_hw_interface (vnm, sw_if_index0);
395 intf0 = vec_elt_at_index (em->main_intfs, hi->hw_if_index);
Dave Barachcfba1e22016-11-16 10:23:50 -0500396 subint0 = &intf0->untagged_subint;
397 cached_is_l2 = is_l20 = subint0->flags & SUBINT_CONFIG_L2;
398 }
John Lo7714b302016-12-20 16:59:02 -0500399
400 vnet_buffer (b0)->ethernet.start_of_ethernet_header =
401 b0->current_data;
402 vnet_buffer (b1)->ethernet.start_of_ethernet_header =
403 b1->current_data;
404
Dave Barachcfba1e22016-11-16 10:23:50 -0500405 if (PREDICT_TRUE (is_l20 != 0))
406 {
407 next0 = em->l2_next;
408 vnet_buffer (b0)->l2.l2_len = sizeof (ethernet_header_t);
Dave Barachcfba1e22016-11-16 10:23:50 -0500409 next1 = em->l2_next;
410 vnet_buffer (b1)->l2.l2_len = sizeof (ethernet_header_t);
Dave Barachcfba1e22016-11-16 10:23:50 -0500411 }
John Locc532852016-12-14 15:42:45 -0500412 else
413 {
John Lo1904c472017-03-10 17:15:22 -0500414 if (!ethernet_address_cast (e0->dst_address) &&
415 !eth_mac_equal ((u8 *) e0, hi->hw_address))
416 error0 = ETHERNET_ERROR_L3_MAC_MISMATCH;
417 if (!ethernet_address_cast (e1->dst_address) &&
418 !eth_mac_equal ((u8 *) e1, hi->hw_address))
419 error1 = ETHERNET_ERROR_L3_MAC_MISMATCH;
John Locc532852016-12-14 15:42:45 -0500420 determine_next_node (em, variant, 0, type0, b0,
421 &error0, &next0);
422 vlib_buffer_advance (b0, sizeof (ethernet_header_t));
423 determine_next_node (em, variant, 0, type1, b1,
424 &error1, &next1);
425 vlib_buffer_advance (b1, sizeof (ethernet_header_t));
426 }
427 goto ship_it01;
Dave Barachcfba1e22016-11-16 10:23:50 -0500428 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700429
John Locc532852016-12-14 15:42:45 -0500430 /* Slow-path for the tagged case */
431 slowpath:
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700432 parse_header (variant,
433 b0,
434 &type0,
435 &orig_type0, &outer_id0, &inner_id0, &match_flags0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700436
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700437 parse_header (variant,
438 b1,
439 &type1,
440 &orig_type1, &outer_id1, &inner_id1, &match_flags1);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700441
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700442 old_sw_if_index0 = vnet_buffer (b0)->sw_if_index[VLIB_RX];
443 old_sw_if_index1 = vnet_buffer (b1)->sw_if_index[VLIB_RX];
Ed Warnickecb9cada2015-12-08 15:45:58 -0700444
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700445 eth_vlan_table_lookups (em,
446 vnm,
447 old_sw_if_index0,
448 orig_type0,
449 outer_id0,
450 inner_id0,
451 &hi0,
452 &main_intf0, &vlan_intf0, &qinq_intf0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700453
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700454 eth_vlan_table_lookups (em,
455 vnm,
456 old_sw_if_index1,
457 orig_type1,
458 outer_id1,
459 inner_id1,
460 &hi1,
461 &main_intf1, &vlan_intf1, &qinq_intf1);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700462
463 identify_subint (hi0,
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700464 b0,
465 match_flags0,
466 main_intf0,
467 vlan_intf0,
468 qinq_intf0, &new_sw_if_index0, &error0, &is_l20);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700469
470 identify_subint (hi1,
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700471 b1,
472 match_flags1,
473 main_intf1,
474 vlan_intf1,
475 qinq_intf1, &new_sw_if_index1, &error1, &is_l21);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700476
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700477 // Save RX sw_if_index for later nodes
478 vnet_buffer (b0)->sw_if_index[VLIB_RX] =
479 error0 !=
480 ETHERNET_ERROR_NONE ? old_sw_if_index0 : new_sw_if_index0;
481 vnet_buffer (b1)->sw_if_index[VLIB_RX] =
482 error1 !=
483 ETHERNET_ERROR_NONE ? old_sw_if_index1 : new_sw_if_index1;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700484
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700485 // Check if there is a stat to take (valid and non-main sw_if_index for pkt 0 or pkt 1)
486 if (((new_sw_if_index0 != ~0)
487 && (new_sw_if_index0 != old_sw_if_index0))
488 || ((new_sw_if_index1 != ~0)
489 && (new_sw_if_index1 != old_sw_if_index1)))
490 {
Ed Warnickecb9cada2015-12-08 15:45:58 -0700491
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700492 len0 = vlib_buffer_length_in_chain (vm, b0) + b0->current_data
493 - vnet_buffer (b0)->ethernet.start_of_ethernet_header;
494 len1 = vlib_buffer_length_in_chain (vm, b1) + b1->current_data
495 - vnet_buffer (b1)->ethernet.start_of_ethernet_header;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700496
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700497 stats_n_packets += 2;
498 stats_n_bytes += len0 + len1;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700499
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700500 if (PREDICT_FALSE
501 (!(new_sw_if_index0 == stats_sw_if_index
502 && new_sw_if_index1 == stats_sw_if_index)))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700503 {
504 stats_n_packets -= 2;
505 stats_n_bytes -= len0 + len1;
506
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700507 if (new_sw_if_index0 != old_sw_if_index0
508 && new_sw_if_index0 != ~0)
509 vlib_increment_combined_counter (vnm->
510 interface_main.combined_sw_if_counters
511 +
512 VNET_INTERFACE_COUNTER_RX,
Damjan Marion586afd72017-04-05 19:18:20 +0200513 thread_index,
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700514 new_sw_if_index0, 1,
515 len0);
516 if (new_sw_if_index1 != old_sw_if_index1
517 && new_sw_if_index1 != ~0)
518 vlib_increment_combined_counter (vnm->
519 interface_main.combined_sw_if_counters
520 +
521 VNET_INTERFACE_COUNTER_RX,
Damjan Marion586afd72017-04-05 19:18:20 +0200522 thread_index,
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700523 new_sw_if_index1, 1,
524 len1);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700525
526 if (new_sw_if_index0 == new_sw_if_index1)
527 {
528 if (stats_n_packets > 0)
529 {
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700530 vlib_increment_combined_counter
531 (vnm->interface_main.combined_sw_if_counters
532 + VNET_INTERFACE_COUNTER_RX,
Damjan Marion586afd72017-04-05 19:18:20 +0200533 thread_index,
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700534 stats_sw_if_index,
535 stats_n_packets, stats_n_bytes);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700536 stats_n_packets = stats_n_bytes = 0;
537 }
538 stats_sw_if_index = new_sw_if_index0;
539 }
540 }
541 }
542
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700543 if (variant == ETHERNET_INPUT_VARIANT_NOT_L2)
544 is_l20 = is_l21 = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700545
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700546 determine_next_node (em, variant, is_l20, type0, b0, &error0,
547 &next0);
548 determine_next_node (em, variant, is_l21, type1, b1, &error1,
549 &next1);
550
John Lo1904c472017-03-10 17:15:22 -0500551 ship_it01:
Ed Warnickecb9cada2015-12-08 15:45:58 -0700552 b0->error = error_node->errors[error0];
553 b1->error = error_node->errors[error1];
554
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700555 // verify speculative enqueue
556 vlib_validate_buffer_enqueue_x2 (vm, node, next_index, to_next,
557 n_left_to_next, bi0, bi1, next0,
558 next1);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700559 }
560
561 while (n_left_from > 0 && n_left_to_next > 0)
562 {
563 u32 bi0;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700564 vlib_buffer_t *b0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700565 u8 error0, next0;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700566 u16 type0, orig_type0;
567 u16 outer_id0, inner_id0;
568 u32 match_flags0;
569 u32 old_sw_if_index0, new_sw_if_index0, len0;
570 vnet_hw_interface_t *hi0;
571 main_intf_t *main_intf0;
572 vlan_intf_t *vlan_intf0;
573 qinq_intf_t *qinq_intf0;
Dave Barachcfba1e22016-11-16 10:23:50 -0500574 ethernet_header_t *e0;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700575 u32 is_l20;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700576
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700577 // Prefetch next iteration
578 if (n_left_from > 1)
579 {
580 vlib_buffer_t *p2;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700581
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700582 p2 = vlib_get_buffer (vm, from[1]);
583 vlib_prefetch_buffer_header (p2, STORE);
584 CLIB_PREFETCH (p2->data, CLIB_CACHE_LINE_BYTES, LOAD);
585 }
586
587 bi0 = from[0];
Ed Warnickecb9cada2015-12-08 15:45:58 -0700588 to_next[0] = bi0;
589 from += 1;
590 to_next += 1;
591 n_left_from -= 1;
592 n_left_to_next -= 1;
593
594 b0 = vlib_get_buffer (vm, bi0);
595
596 error0 = ETHERNET_ERROR_NONE;
Dave Barachcfba1e22016-11-16 10:23:50 -0500597 e0 = vlib_buffer_get_current (b0);
598 type0 = clib_net_to_host_u16 (e0->type);
599
John Locc532852016-12-14 15:42:45 -0500600 /* Speed-path for the untagged case */
Dave Barachcfba1e22016-11-16 10:23:50 -0500601 if (PREDICT_TRUE (variant == ETHERNET_INPUT_VARIANT_ETHERNET
602 && !ethernet_frame_is_tagged (type0)))
603 {
604 main_intf_t *intf0;
605 subint_config_t *subint0;
606 u32 sw_if_index0;
607
608 sw_if_index0 = vnet_buffer (b0)->sw_if_index[VLIB_RX];
609 is_l20 = cached_is_l2;
610
611 if (PREDICT_FALSE (cached_sw_if_index != sw_if_index0))
612 {
613 cached_sw_if_index = sw_if_index0;
John Lo1904c472017-03-10 17:15:22 -0500614 hi = vnet_get_sup_hw_interface (vnm, sw_if_index0);
615 intf0 = vec_elt_at_index (em->main_intfs, hi->hw_if_index);
Dave Barachcfba1e22016-11-16 10:23:50 -0500616 subint0 = &intf0->untagged_subint;
617 cached_is_l2 = is_l20 = subint0->flags & SUBINT_CONFIG_L2;
618 }
John Lo7714b302016-12-20 16:59:02 -0500619
620 vnet_buffer (b0)->ethernet.start_of_ethernet_header =
621 b0->current_data;
622
Dave Barachcfba1e22016-11-16 10:23:50 -0500623 if (PREDICT_TRUE (is_l20 != 0))
624 {
625 next0 = em->l2_next;
626 vnet_buffer (b0)->l2.l2_len = sizeof (ethernet_header_t);
Dave Barachcfba1e22016-11-16 10:23:50 -0500627 }
John Locc532852016-12-14 15:42:45 -0500628 else
629 {
John Lo1904c472017-03-10 17:15:22 -0500630 if (!ethernet_address_cast (e0->dst_address) &&
631 !eth_mac_equal ((u8 *) e0, hi->hw_address))
632 error0 = ETHERNET_ERROR_L3_MAC_MISMATCH;
John Locc532852016-12-14 15:42:45 -0500633 determine_next_node (em, variant, 0, type0, b0,
634 &error0, &next0);
635 vlib_buffer_advance (b0, sizeof (ethernet_header_t));
636 }
637 goto ship_it0;
Dave Barachcfba1e22016-11-16 10:23:50 -0500638 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700639
John Locc532852016-12-14 15:42:45 -0500640 /* Slow-path for the tagged case */
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700641 parse_header (variant,
642 b0,
643 &type0,
644 &orig_type0, &outer_id0, &inner_id0, &match_flags0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700645
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700646 old_sw_if_index0 = vnet_buffer (b0)->sw_if_index[VLIB_RX];
Ed Warnickecb9cada2015-12-08 15:45:58 -0700647
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700648 eth_vlan_table_lookups (em,
649 vnm,
650 old_sw_if_index0,
651 orig_type0,
652 outer_id0,
653 inner_id0,
654 &hi0,
655 &main_intf0, &vlan_intf0, &qinq_intf0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700656
657 identify_subint (hi0,
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700658 b0,
659 match_flags0,
660 main_intf0,
661 vlan_intf0,
662 qinq_intf0, &new_sw_if_index0, &error0, &is_l20);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700663
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700664 // Save RX sw_if_index for later nodes
665 vnet_buffer (b0)->sw_if_index[VLIB_RX] =
666 error0 !=
667 ETHERNET_ERROR_NONE ? old_sw_if_index0 : new_sw_if_index0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700668
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700669 // Increment subinterface stats
670 // Note that interface-level counters have already been incremented
671 // prior to calling this function. Thus only subinterface counters
672 // are incremented here.
673 //
Damjan Marion607de1a2016-08-16 22:53:54 +0200674 // Interface level counters include packets received on the main
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700675 // interface and all subinterfaces. Subinterface level counters
676 // include only those packets received on that subinterface
Ed Warnickecb9cada2015-12-08 15:45:58 -0700677 // Increment stats if the subint is valid and it is not the main intf
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700678 if ((new_sw_if_index0 != ~0)
679 && (new_sw_if_index0 != old_sw_if_index0))
680 {
Ed Warnickecb9cada2015-12-08 15:45:58 -0700681
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700682 len0 = vlib_buffer_length_in_chain (vm, b0) + b0->current_data
683 - vnet_buffer (b0)->ethernet.start_of_ethernet_header;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700684
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700685 stats_n_packets += 1;
686 stats_n_bytes += len0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700687
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700688 // Batch stat increments from the same subinterface so counters
Damjan Marion607de1a2016-08-16 22:53:54 +0200689 // don't need to be incremented for every packet.
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700690 if (PREDICT_FALSE (new_sw_if_index0 != stats_sw_if_index))
691 {
692 stats_n_packets -= 1;
693 stats_n_bytes -= len0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700694
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700695 if (new_sw_if_index0 != ~0)
696 vlib_increment_combined_counter
697 (vnm->interface_main.combined_sw_if_counters
698 + VNET_INTERFACE_COUNTER_RX,
Damjan Marion586afd72017-04-05 19:18:20 +0200699 thread_index, new_sw_if_index0, 1, len0);
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700700 if (stats_n_packets > 0)
701 {
702 vlib_increment_combined_counter
703 (vnm->interface_main.combined_sw_if_counters
704 + VNET_INTERFACE_COUNTER_RX,
Damjan Marion586afd72017-04-05 19:18:20 +0200705 thread_index,
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700706 stats_sw_if_index, stats_n_packets, stats_n_bytes);
707 stats_n_packets = stats_n_bytes = 0;
708 }
709 stats_sw_if_index = new_sw_if_index0;
710 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700711 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700712
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700713 if (variant == ETHERNET_INPUT_VARIANT_NOT_L2)
714 is_l20 = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700715
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700716 determine_next_node (em, variant, is_l20, type0, b0, &error0,
717 &next0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700718
John Lo1904c472017-03-10 17:15:22 -0500719 ship_it0:
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700720 b0->error = error_node->errors[error0];
721
722 // verify speculative enqueue
Ed Warnickecb9cada2015-12-08 15:45:58 -0700723 vlib_validate_buffer_enqueue_x1 (vm, node, next_index,
724 to_next, n_left_to_next,
725 bi0, next0);
726 }
727
728 vlib_put_next_frame (vm, node, next_index, n_left_to_next);
729 }
730
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700731 // Increment any remaining batched stats
732 if (stats_n_packets > 0)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700733 {
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700734 vlib_increment_combined_counter
735 (vnm->interface_main.combined_sw_if_counters
736 + VNET_INTERFACE_COUNTER_RX,
Damjan Marion586afd72017-04-05 19:18:20 +0200737 thread_index, stats_sw_if_index, stats_n_packets, stats_n_bytes);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700738 node->runtime_data[0] = stats_sw_if_index;
739 }
740
741 return from_frame->n_vectors;
742}
743
744static uword
745ethernet_input (vlib_main_t * vm,
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700746 vlib_node_runtime_t * node, vlib_frame_t * from_frame)
747{
748 return ethernet_input_inline (vm, node, from_frame,
749 ETHERNET_INPUT_VARIANT_ETHERNET);
750}
Ed Warnickecb9cada2015-12-08 15:45:58 -0700751
752static uword
753ethernet_input_type (vlib_main_t * vm,
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700754 vlib_node_runtime_t * node, vlib_frame_t * from_frame)
755{
756 return ethernet_input_inline (vm, node, from_frame,
757 ETHERNET_INPUT_VARIANT_ETHERNET_TYPE);
758}
Ed Warnickecb9cada2015-12-08 15:45:58 -0700759
760static uword
761ethernet_input_not_l2 (vlib_main_t * vm,
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700762 vlib_node_runtime_t * node, vlib_frame_t * from_frame)
763{
764 return ethernet_input_inline (vm, node, from_frame,
765 ETHERNET_INPUT_VARIANT_NOT_L2);
766}
Ed Warnickecb9cada2015-12-08 15:45:58 -0700767
768
769// Return the subinterface config struct for the given sw_if_index
770// Also return via parameter the appropriate match flags for the
771// configured number of tags.
772// On error (unsupported or not ethernet) return 0.
773static subint_config_t *
774ethernet_sw_interface_get_config (vnet_main_t * vnm,
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700775 u32 sw_if_index,
776 u32 * flags, u32 * unsupported)
777{
778 ethernet_main_t *em = &ethernet_main;
779 vnet_hw_interface_t *hi;
780 vnet_sw_interface_t *si;
781 main_intf_t *main_intf;
782 vlan_table_t *vlan_table;
783 qinq_table_t *qinq_table;
784 subint_config_t *subint = 0;
785
Ed Warnickecb9cada2015-12-08 15:45:58 -0700786 hi = vnet_get_sup_hw_interface (vnm, sw_if_index);
787
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700788 if (!hi || (hi->hw_class_index != ethernet_hw_interface_class.index))
789 {
790 *unsupported = 0;
791 goto done; // non-ethernet interface
792 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700793
794 // ensure there's an entry for the main intf (shouldn't really be necessary)
795 vec_validate (em->main_intfs, hi->hw_if_index);
796 main_intf = vec_elt_at_index (em->main_intfs, hi->hw_if_index);
797
798 // Locate the subint for the given ethernet config
799 si = vnet_get_sw_interface (vnm, sw_if_index);
800
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700801 if (si->sub.eth.flags.default_sub)
802 {
803 subint = &main_intf->default_subint;
804 *flags = SUBINT_CONFIG_MATCH_0_TAG |
805 SUBINT_CONFIG_MATCH_1_TAG |
806 SUBINT_CONFIG_MATCH_2_TAG | SUBINT_CONFIG_MATCH_3_TAG;
807 }
808 else if ((si->sub.eth.flags.no_tags) || (si->sub.eth.raw_flags == 0))
809 {
810 // if no flags are set then this is a main interface
811 // so treat as untagged
812 subint = &main_intf->untagged_subint;
813 *flags = SUBINT_CONFIG_MATCH_0_TAG;
814 }
815 else
816 {
817 // one or two tags
818 // first get the vlan table
819 if (si->sub.eth.flags.dot1ad)
820 {
821 if (main_intf->dot1ad_vlans == 0)
822 {
823 // Allocate a vlan table from the pool
824 pool_get (em->vlan_pool, vlan_table);
825 main_intf->dot1ad_vlans = vlan_table - em->vlan_pool;
826 }
827 else
828 {
829 // Get ptr to existing vlan table
830 vlan_table =
831 vec_elt_at_index (em->vlan_pool, main_intf->dot1ad_vlans);
832 }
833 }
834 else
835 { // dot1q
836 if (main_intf->dot1q_vlans == 0)
837 {
838 // Allocate a vlan table from the pool
839 pool_get (em->vlan_pool, vlan_table);
840 main_intf->dot1q_vlans = vlan_table - em->vlan_pool;
841 }
842 else
843 {
844 // Get ptr to existing vlan table
845 vlan_table =
846 vec_elt_at_index (em->vlan_pool, main_intf->dot1q_vlans);
847 }
848 }
849
850 if (si->sub.eth.flags.one_tag)
851 {
852 *flags = si->sub.eth.flags.exact_match ?
853 SUBINT_CONFIG_MATCH_1_TAG :
854 (SUBINT_CONFIG_MATCH_1_TAG |
855 SUBINT_CONFIG_MATCH_2_TAG | SUBINT_CONFIG_MATCH_3_TAG);
856
857 if (si->sub.eth.flags.outer_vlan_id_any)
858 {
859 // not implemented yet
860 *unsupported = 1;
861 goto done;
862 }
863 else
864 {
865 // a single vlan, a common case
866 subint =
867 &vlan_table->vlans[si->sub.eth.
868 outer_vlan_id].single_tag_subint;
869 }
870
871 }
872 else
873 {
874 // Two tags
875 *flags = si->sub.eth.flags.exact_match ?
876 SUBINT_CONFIG_MATCH_2_TAG :
877 (SUBINT_CONFIG_MATCH_2_TAG | SUBINT_CONFIG_MATCH_3_TAG);
878
879 if (si->sub.eth.flags.outer_vlan_id_any
880 && si->sub.eth.flags.inner_vlan_id_any)
881 {
882 // not implemented yet
883 *unsupported = 1;
884 goto done;
885 }
886
887 if (si->sub.eth.flags.inner_vlan_id_any)
888 {
889 // a specific outer and "any" inner
890 // don't need a qinq table for this
891 subint =
892 &vlan_table->vlans[si->sub.eth.
893 outer_vlan_id].inner_any_subint;
894 if (si->sub.eth.flags.exact_match)
895 {
896 *flags = SUBINT_CONFIG_MATCH_2_TAG;
897 }
898 else
899 {
900 *flags = SUBINT_CONFIG_MATCH_2_TAG |
901 SUBINT_CONFIG_MATCH_3_TAG;
902 }
903 }
904 else
905 {
906 // a specific outer + specifc innner vlan id, a common case
907
908 // get the qinq table
909 if (vlan_table->vlans[si->sub.eth.outer_vlan_id].qinqs == 0)
910 {
911 // Allocate a qinq table from the pool
912 pool_get (em->qinq_pool, qinq_table);
913 vlan_table->vlans[si->sub.eth.outer_vlan_id].qinqs =
914 qinq_table - em->qinq_pool;
915 }
916 else
917 {
918 // Get ptr to existing qinq table
919 qinq_table =
920 vec_elt_at_index (em->qinq_pool,
921 vlan_table->vlans[si->sub.
922 eth.outer_vlan_id].
923 qinqs);
924 }
925 subint = &qinq_table->vlans[si->sub.eth.inner_vlan_id].subint;
926 }
927 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700928 }
929
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700930done:
Ed Warnickecb9cada2015-12-08 15:45:58 -0700931 return subint;
932}
933
934clib_error_t *
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700935ethernet_sw_interface_up_down (vnet_main_t * vnm, u32 sw_if_index, u32 flags)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700936{
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700937 subint_config_t *subint;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700938 u32 dummy_flags;
939 u32 dummy_unsup;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700940 clib_error_t *error = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700941
942 // Find the config for this subinterface
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700943 subint =
944 ethernet_sw_interface_get_config (vnm, sw_if_index, &dummy_flags,
945 &dummy_unsup);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700946
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700947 if (subint == 0)
948 {
949 // not implemented yet or not ethernet
950 goto done;
951 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700952
953 subint->sw_if_index =
954 ((flags & VNET_SW_INTERFACE_FLAG_ADMIN_UP) ? sw_if_index : ~0);
955
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700956done:
Ed Warnickecb9cada2015-12-08 15:45:58 -0700957 return error;
958}
959
960VNET_SW_INTERFACE_ADMIN_UP_DOWN_FUNCTION (ethernet_sw_interface_up_down);
961
962
963// Set the L2/L3 mode for the subinterface
964void
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700965ethernet_sw_interface_set_l2_mode (vnet_main_t * vnm, u32 sw_if_index, u32 l2)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700966{
967 subint_config_t *subint;
968 u32 dummy_flags;
969 u32 dummy_unsup;
970 int is_port;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700971 vnet_sw_interface_t *sw = vnet_get_sw_interface (vnm, sw_if_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700972
973 is_port = !(sw->type == VNET_SW_INTERFACE_TYPE_SUB);
974
975 // Find the config for this subinterface
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700976 subint =
977 ethernet_sw_interface_get_config (vnm, sw_if_index, &dummy_flags,
978 &dummy_unsup);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700979
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700980 if (subint == 0)
981 {
982 // unimplemented or not ethernet
983 goto done;
984 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700985
986 // Double check that the config we found is for our interface (or the interface is down)
987 ASSERT ((subint->sw_if_index == sw_if_index) | (subint->sw_if_index == ~0));
988
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700989 if (l2)
990 {
991 subint->flags |= SUBINT_CONFIG_L2;
992 if (is_port)
993 subint->flags |=
994 SUBINT_CONFIG_MATCH_0_TAG | SUBINT_CONFIG_MATCH_1_TAG
995 | SUBINT_CONFIG_MATCH_2_TAG | SUBINT_CONFIG_MATCH_3_TAG;
996 }
997 else
998 {
999 subint->flags &= ~SUBINT_CONFIG_L2;
1000 if (is_port)
1001 subint->flags &=
1002 ~(SUBINT_CONFIG_MATCH_1_TAG | SUBINT_CONFIG_MATCH_2_TAG
1003 | SUBINT_CONFIG_MATCH_3_TAG);
1004 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001005
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001006done:
Ed Warnickecb9cada2015-12-08 15:45:58 -07001007 return;
1008}
1009
Christian Dechamplain (cdechamp)07aecbb2016-04-05 10:40:38 -04001010/*
1011 * Set the L2/L3 mode for the subinterface regardless of port
1012 */
1013void
1014ethernet_sw_interface_set_l2_mode_noport (vnet_main_t * vnm,
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001015 u32 sw_if_index, u32 l2)
Christian Dechamplain (cdechamp)07aecbb2016-04-05 10:40:38 -04001016{
1017 subint_config_t *subint;
1018 u32 dummy_flags;
1019 u32 dummy_unsup;
1020
1021 /* Find the config for this subinterface */
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001022 subint =
1023 ethernet_sw_interface_get_config (vnm, sw_if_index, &dummy_flags,
1024 &dummy_unsup);
Christian Dechamplain (cdechamp)07aecbb2016-04-05 10:40:38 -04001025
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001026 if (subint == 0)
1027 {
1028 /* unimplemented or not ethernet */
1029 goto done;
1030 }
Christian Dechamplain (cdechamp)07aecbb2016-04-05 10:40:38 -04001031
1032 /*
1033 * Double check that the config we found is for our interface (or the
1034 * interface is down)
1035 */
1036 ASSERT ((subint->sw_if_index == sw_if_index) | (subint->sw_if_index == ~0));
1037
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001038 if (l2)
1039 {
1040 subint->flags |= SUBINT_CONFIG_L2;
1041 }
1042 else
1043 {
1044 subint->flags &= ~SUBINT_CONFIG_L2;
1045 }
Christian Dechamplain (cdechamp)07aecbb2016-04-05 10:40:38 -04001046
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001047done:
Christian Dechamplain (cdechamp)07aecbb2016-04-05 10:40:38 -04001048 return;
1049}
Ed Warnickecb9cada2015-12-08 15:45:58 -07001050
1051static clib_error_t *
1052ethernet_sw_interface_add_del (vnet_main_t * vnm,
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001053 u32 sw_if_index, u32 is_create)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001054{
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001055 clib_error_t *error = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001056 subint_config_t *subint;
1057 u32 match_flags;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001058 u32 unsupported = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001059
1060 // Find the config for this subinterface
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001061 subint =
1062 ethernet_sw_interface_get_config (vnm, sw_if_index, &match_flags,
1063 &unsupported);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001064
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001065 if (subint == 0)
1066 {
1067 // not implemented yet or not ethernet
1068 if (unsupported)
1069 {
Damjan Marion607de1a2016-08-16 22:53:54 +02001070 // this is the NYI case
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001071 error = clib_error_return (0, "not implemented yet");
1072 }
1073 goto done;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001074 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001075
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001076 if (!is_create)
1077 {
1078 subint->flags = 0;
1079 return error;
1080 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001081
1082 // Initialize the subint
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001083 if (subint->flags & SUBINT_CONFIG_VALID)
1084 {
1085 // Error vlan already in use
1086 error = clib_error_return (0, "vlan is already in use");
1087 }
1088 else
1089 {
1090 // Note that config is L3 by defaulty
1091 subint->flags = SUBINT_CONFIG_VALID | match_flags;
1092 subint->sw_if_index = ~0; // because interfaces are initially down
1093 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001094
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001095done:
Ed Warnickecb9cada2015-12-08 15:45:58 -07001096 return error;
1097}
1098
1099VNET_SW_INTERFACE_ADD_DEL_FUNCTION (ethernet_sw_interface_add_del);
1100
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001101static char *ethernet_error_strings[] = {
Ed Warnickecb9cada2015-12-08 15:45:58 -07001102#define ethernet_error(n,c,s) s,
1103#include "error.def"
1104#undef ethernet_error
1105};
1106
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001107/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07001108VLIB_REGISTER_NODE (ethernet_input_node) = {
1109 .function = ethernet_input,
1110 .name = "ethernet-input",
1111 /* Takes a vector of packets. */
1112 .vector_size = sizeof (u32),
Ed Warnickecb9cada2015-12-08 15:45:58 -07001113 .n_errors = ETHERNET_N_ERROR,
1114 .error_strings = ethernet_error_strings,
Ed Warnickecb9cada2015-12-08 15:45:58 -07001115 .n_next_nodes = ETHERNET_INPUT_N_NEXT,
1116 .next_nodes = {
1117#define _(s,n) [ETHERNET_INPUT_NEXT_##s] = n,
1118 foreach_ethernet_input_next
1119#undef _
1120 },
Ed Warnickecb9cada2015-12-08 15:45:58 -07001121 .format_buffer = format_ethernet_header_with_length,
1122 .format_trace = format_ethernet_input_trace,
1123 .unformat_buffer = unformat_ethernet_header,
1124};
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001125/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07001126
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001127/* *INDENT-OFF* */
Damjan Marion1c80e832016-05-11 23:07:18 +02001128VLIB_NODE_FUNCTION_MULTIARCH (ethernet_input_node, ethernet_input)
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001129/* *INDENT-ON* */
Damjan Marion1c80e832016-05-11 23:07:18 +02001130
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001131/* *INDENT-OFF* */
1132VLIB_REGISTER_NODE (ethernet_input_type_node, static) = {
Ed Warnickecb9cada2015-12-08 15:45:58 -07001133 .function = ethernet_input_type,
1134 .name = "ethernet-input-type",
1135 /* Takes a vector of packets. */
1136 .vector_size = sizeof (u32),
Ed Warnickecb9cada2015-12-08 15:45:58 -07001137 .n_next_nodes = ETHERNET_INPUT_N_NEXT,
1138 .next_nodes = {
1139#define _(s,n) [ETHERNET_INPUT_NEXT_##s] = n,
1140 foreach_ethernet_input_next
1141#undef _
1142 },
1143};
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001144/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07001145
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001146/* *INDENT-OFF* */
Damjan Marion1c80e832016-05-11 23:07:18 +02001147VLIB_NODE_FUNCTION_MULTIARCH (ethernet_input_type_node, ethernet_input_type)
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001148/* *INDENT-ON* */
Damjan Marion1c80e832016-05-11 23:07:18 +02001149
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001150/* *INDENT-OFF* */
1151VLIB_REGISTER_NODE (ethernet_input_not_l2_node, static) = {
Ed Warnickecb9cada2015-12-08 15:45:58 -07001152 .function = ethernet_input_not_l2,
1153 .name = "ethernet-input-not-l2",
1154 /* Takes a vector of packets. */
1155 .vector_size = sizeof (u32),
Ed Warnickecb9cada2015-12-08 15:45:58 -07001156 .n_next_nodes = ETHERNET_INPUT_N_NEXT,
1157 .next_nodes = {
1158#define _(s,n) [ETHERNET_INPUT_NEXT_##s] = n,
1159 foreach_ethernet_input_next
1160#undef _
1161 },
1162};
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001163/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07001164
Damjan Marion1c80e832016-05-11 23:07:18 +02001165
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001166/* *INDENT-OFF* */
1167VLIB_NODE_FUNCTION_MULTIARCH (ethernet_input_not_l2_node,
1168 ethernet_input_not_l2)
1169/* *INDENT-ON* */
1170
1171
1172void
1173ethernet_set_rx_redirect (vnet_main_t * vnm,
1174 vnet_hw_interface_t * hi, u32 enable)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001175{
1176 // Insure all packets go to ethernet-input (i.e. untagged ipv4 packets
1177 // don't go directly to ip4-input)
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001178 vnet_hw_interface_rx_redirect_to_node
1179 (vnm, hi->hw_if_index, enable ? ethernet_input_node.index : ~0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001180}
1181
1182
1183/*
1184 * Initialization and registration for the next_by_ethernet structure
1185 */
1186
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001187clib_error_t *
1188next_by_ethertype_init (next_by_ethertype_t * l3_next)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001189{
1190 l3_next->input_next_by_type = sparse_vec_new
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001191 ( /* elt bytes */ sizeof (l3_next->input_next_by_type[0]),
Ed Warnickecb9cada2015-12-08 15:45:58 -07001192 /* bits in index */ BITS (((ethernet_header_t *) 0)->type));
1193
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001194 vec_validate (l3_next->sparse_index_by_input_next_index,
1195 ETHERNET_INPUT_NEXT_DROP);
1196 vec_validate (l3_next->sparse_index_by_input_next_index,
1197 ETHERNET_INPUT_NEXT_PUNT);
1198 l3_next->sparse_index_by_input_next_index[ETHERNET_INPUT_NEXT_DROP] =
1199 SPARSE_VEC_INVALID_INDEX;
1200 l3_next->sparse_index_by_input_next_index[ETHERNET_INPUT_NEXT_PUNT] =
1201 SPARSE_VEC_INVALID_INDEX;
1202
Damjan Marion607de1a2016-08-16 22:53:54 +02001203 /*
1204 * Make sure we don't wipe out an ethernet registration by mistake
Dave Barach1f49ed62016-02-24 11:29:06 -05001205 * Can happen if init function ordering constraints are missing.
1206 */
1207 if (CLIB_DEBUG > 0)
1208 {
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001209 ethernet_main_t *em = &ethernet_main;
1210 ASSERT (em->next_by_ethertype_register_called == 0);
Dave Barach1f49ed62016-02-24 11:29:06 -05001211 }
1212
Ed Warnickecb9cada2015-12-08 15:45:58 -07001213 return 0;
1214}
1215
1216// Add an ethertype -> next index mapping to the structure
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001217clib_error_t *
1218next_by_ethertype_register (next_by_ethertype_t * l3_next,
1219 u32 ethertype, u32 next_index)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001220{
1221 u32 i;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001222 u16 *n;
1223 ethernet_main_t *em = &ethernet_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001224
Dave Barach1f49ed62016-02-24 11:29:06 -05001225 if (CLIB_DEBUG > 0)
1226 {
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001227 ethernet_main_t *em = &ethernet_main;
Dave Barach1f49ed62016-02-24 11:29:06 -05001228 em->next_by_ethertype_register_called = 1;
1229 }
1230
Ed Warnickecb9cada2015-12-08 15:45:58 -07001231 /* Setup ethernet type -> next index sparse vector mapping. */
1232 n = sparse_vec_validate (l3_next->input_next_by_type, ethertype);
1233 n[0] = next_index;
1234
1235 /* Rebuild next index -> sparse index inverse mapping when sparse vector
1236 is updated. */
1237 vec_validate (l3_next->sparse_index_by_input_next_index, next_index);
1238 for (i = 1; i < vec_len (l3_next->input_next_by_type); i++)
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001239 l3_next->
1240 sparse_index_by_input_next_index[l3_next->input_next_by_type[i]] = i;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001241
1242 // do not allow the cached next index's to be updated if L3
1243 // redirect is enabled, as it will have overwritten them
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001244 if (!em->redirect_l3)
1245 {
1246 // Cache common ethertypes directly
1247 if (ethertype == ETHERNET_TYPE_IP4)
1248 {
1249 l3_next->input_next_ip4 = next_index;
1250 }
1251 else if (ethertype == ETHERNET_TYPE_IP6)
1252 {
1253 l3_next->input_next_ip6 = next_index;
1254 }
Neale Ranns0f26c5a2017-03-01 15:12:11 -08001255 else if (ethertype == ETHERNET_TYPE_MPLS)
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001256 {
1257 l3_next->input_next_mpls = next_index;
1258 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001259 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001260 return 0;
1261}
1262
1263
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001264static clib_error_t *
1265ethernet_input_init (vlib_main_t * vm)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001266{
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001267 ethernet_main_t *em = &ethernet_main;
1268 __attribute__ ((unused)) vlan_table_t *invalid_vlan_table;
1269 __attribute__ ((unused)) qinq_table_t *invalid_qinq_table;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001270
1271 ethernet_setup_node (vm, ethernet_input_node.index);
1272 ethernet_setup_node (vm, ethernet_input_type_node.index);
1273 ethernet_setup_node (vm, ethernet_input_not_l2_node.index);
1274
1275 next_by_ethertype_init (&em->l3_next);
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001276
Ed Warnickecb9cada2015-12-08 15:45:58 -07001277 // Initialize pools and vector for vlan parsing
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001278 vec_validate (em->main_intfs, 10); // 10 main interfaces
1279 pool_alloc (em->vlan_pool, 10);
1280 pool_alloc (em->qinq_pool, 1);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001281
1282 // The first vlan pool will always be reserved for an invalid table
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001283 pool_get (em->vlan_pool, invalid_vlan_table); // first id = 0
Ed Warnickecb9cada2015-12-08 15:45:58 -07001284 // The first qinq pool will always be reserved for an invalid table
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001285 pool_get (em->qinq_pool, invalid_qinq_table); // first id = 0
Ed Warnickecb9cada2015-12-08 15:45:58 -07001286
1287 return 0;
1288}
1289
1290VLIB_INIT_FUNCTION (ethernet_input_init);
1291
1292void
1293ethernet_register_input_type (vlib_main_t * vm,
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001294 ethernet_type_t type, u32 node_index)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001295{
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001296 ethernet_main_t *em = &ethernet_main;
1297 ethernet_type_info_t *ti;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001298 u32 i;
1299
1300 {
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001301 clib_error_t *error = vlib_call_init_function (vm, ethernet_init);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001302 if (error)
1303 clib_error_report (error);
1304 }
1305
1306 ti = ethernet_get_type_info (em, type);
1307 ti->node_index = node_index;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001308 ti->next_index = vlib_node_add_next (vm,
1309 ethernet_input_node.index, node_index);
1310 i = vlib_node_add_next (vm, ethernet_input_type_node.index, node_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001311 ASSERT (i == ti->next_index);
1312
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001313 i = vlib_node_add_next (vm, ethernet_input_not_l2_node.index, node_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001314 ASSERT (i == ti->next_index);
1315
1316 // Add the L3 node for this ethertype to the next nodes structure
1317 next_by_ethertype_register (&em->l3_next, type, ti->next_index);
1318
1319 // Call the registration functions for other nodes that want a mapping
1320 l2bvi_register_input_type (vm, type, node_index);
1321}
1322
1323void
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001324ethernet_register_l2_input (vlib_main_t * vm, u32 node_index)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001325{
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001326 ethernet_main_t *em = &ethernet_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001327 u32 i;
1328
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001329 em->l2_next =
1330 vlib_node_add_next (vm, ethernet_input_node.index, node_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001331
Damjan Marion607de1a2016-08-16 22:53:54 +02001332 /*
Ed Warnickecb9cada2015-12-08 15:45:58 -07001333 * Even if we never use these arcs, we have to align the next indices...
1334 */
1335 i = vlib_node_add_next (vm, ethernet_input_type_node.index, node_index);
1336
1337 ASSERT (i == em->l2_next);
1338
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001339 i = vlib_node_add_next (vm, ethernet_input_not_l2_node.index, node_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001340 ASSERT (i == em->l2_next);
1341}
1342
1343// Register a next node for L3 redirect, and enable L3 redirect
1344void
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001345ethernet_register_l3_redirect (vlib_main_t * vm, u32 node_index)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001346{
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001347 ethernet_main_t *em = &ethernet_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001348 u32 i;
1349
1350 em->redirect_l3 = 1;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001351 em->redirect_l3_next = vlib_node_add_next (vm,
1352 ethernet_input_node.index,
1353 node_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001354 /*
1355 * Change the cached next nodes to the redirect node
1356 */
1357 em->l3_next.input_next_ip4 = em->redirect_l3_next;
1358 em->l3_next.input_next_ip6 = em->redirect_l3_next;
1359 em->l3_next.input_next_mpls = em->redirect_l3_next;
1360
1361 /*
1362 * Even if we never use these arcs, we have to align the next indices...
1363 */
1364 i = vlib_node_add_next (vm, ethernet_input_type_node.index, node_index);
1365
1366 ASSERT (i == em->redirect_l3_next);
jerryianff82ed62016-12-05 17:13:00 +08001367
1368 i = vlib_node_add_next (vm, ethernet_input_not_l2_node.index, node_index);
1369
1370 ASSERT (i == em->redirect_l3_next);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001371}
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001372
1373/*
1374 * fd.io coding-style-patch-verification: ON
1375 *
1376 * Local Variables:
1377 * eval: (c-set-style "gnu")
1378 * End:
1379 */