blob: 4529ca6a57218dc6e14b23fb038018eac21d7e2f [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;
Neale Ranns30d0fd42017-05-30 07:30:04 -0700145 if (0 == *outer_id)
146 *match_flags &= ~SUBINT_CONFIG_MATCH_1_TAG;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700147
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700148 *type = clib_net_to_host_u16 (h0->type);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700149
150 vlib_buffer_advance (b0, sizeof (h0[0]));
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700151 vlan_count = 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700152
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700153 if (*type == ETHERNET_TYPE_VLAN)
154 {
155 // Double tagged packet
156 *match_flags = SUBINT_CONFIG_VALID | SUBINT_CONFIG_MATCH_2_TAG;
157
158 h0 = (void *) (b0->data + b0->current_data);
159
160 tag = clib_net_to_host_u16 (h0->priority_cfi_and_id);
161
162 *inner_id = tag & 0xfff;
163
164 *type = clib_net_to_host_u16 (h0->type);
165
166 vlib_buffer_advance (b0, sizeof (h0[0]));
167 vlan_count = 2;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700168 if (*type == ETHERNET_TYPE_VLAN)
169 {
170 // More than double tagged packet
171 *match_flags = SUBINT_CONFIG_VALID | SUBINT_CONFIG_MATCH_3_TAG;
Eyal Bari6f7ebf92017-06-13 12:09:37 +0300172
173 vlib_buffer_advance (b0, sizeof (h0[0]));
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700174 vlan_count = 3; // "unknown" number, aka, 3-or-more
175 }
176 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700177 }
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700178 ethernet_buffer_set_vlan_count (b0, vlan_count);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700179}
180
181// Determine the subinterface for this packet, given the result of the
182// vlan table lookups and vlan header parsing. Check the most specific
183// matches first.
184static_always_inline void
185identify_subint (vnet_hw_interface_t * hi,
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700186 vlib_buffer_t * b0,
187 u32 match_flags,
188 main_intf_t * main_intf,
189 vlan_intf_t * vlan_intf,
190 qinq_intf_t * qinq_intf,
191 u32 * new_sw_if_index, u8 * error0, u32 * is_l2)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700192{
193 u32 matched;
194
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700195 matched = eth_identify_subint (hi, b0, match_flags,
196 main_intf, vlan_intf, qinq_intf,
197 new_sw_if_index, error0, is_l2);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700198
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700199 if (matched)
200 {
Ed Warnickecb9cada2015-12-08 15:45:58 -0700201
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700202 // Perform L3 my-mac filter
203 // A unicast packet arriving on an L3 interface must have a dmac matching the interface mac.
204 // This is required for promiscuous mode, else we will forward packets we aren't supposed to.
205 if (!(*is_l2))
206 {
207 ethernet_header_t *e0;
208 e0 =
209 (void *) (b0->data +
210 vnet_buffer (b0)->ethernet.start_of_ethernet_header);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700211
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700212 if (!(ethernet_address_cast (e0->dst_address)))
213 {
214 if (!eth_mac_equal ((u8 *) e0, hi->hw_address))
215 {
216 *error0 = ETHERNET_ERROR_L3_MAC_MISMATCH;
217 }
218 }
219 }
220
221 // Check for down subinterface
222 *error0 = (*new_sw_if_index) != ~0 ? (*error0) : ETHERNET_ERROR_DOWN;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700223 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700224}
225
226static_always_inline void
227determine_next_node (ethernet_main_t * em,
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700228 ethernet_input_variant_t variant,
229 u32 is_l20,
230 u32 type0, vlib_buffer_t * b0, u8 * error0, u8 * next0)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700231{
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700232 if (PREDICT_FALSE (*error0 != ETHERNET_ERROR_NONE))
233 {
234 // some error occurred
235 *next0 = ETHERNET_INPUT_NEXT_DROP;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700236 }
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700237 else if (is_l20)
238 {
239 *next0 = em->l2_next;
240 // record the L2 len and reset the buffer so the L2 header is preserved
David Hothama8cd3092016-09-19 09:55:07 -0700241 u32 eth_start = vnet_buffer (b0)->ethernet.start_of_ethernet_header;
242 vnet_buffer (b0)->l2.l2_len = b0->current_data - eth_start;
Eyal Bari6f7ebf92017-06-13 12:09:37 +0300243 ASSERT (vnet_buffer (b0)->l2.l2_len ==
244 ethernet_buffer_header_size (b0));
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700245 vlib_buffer_advance (b0, -ethernet_buffer_header_size (b0));
246
247 // check for common IP/MPLS ethertypes
248 }
249 else if (type0 == ETHERNET_TYPE_IP4)
250 {
251 *next0 = em->l3_next.input_next_ip4;
252 }
253 else if (type0 == ETHERNET_TYPE_IP6)
254 {
255 *next0 = em->l3_next.input_next_ip6;
256 }
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800257 else if (type0 == ETHERNET_TYPE_MPLS)
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700258 {
259 *next0 = em->l3_next.input_next_mpls;
260
261 }
262 else if (em->redirect_l3)
263 {
264 // L3 Redirect is on, the cached common next nodes will be
265 // pointing to the redirect node, catch the uncommon types here
266 *next0 = em->redirect_l3_next;
267 }
268 else
269 {
270 // uncommon ethertype, check table
271 u32 i0;
272 i0 = sparse_vec_index (em->l3_next.input_next_by_type, type0);
273 *next0 = vec_elt (em->l3_next.input_next_by_type, i0);
274 *error0 =
275 i0 ==
276 SPARSE_VEC_INVALID_INDEX ? ETHERNET_ERROR_UNKNOWN_TYPE : *error0;
277
278 // The table is not populated with LLC values, so check that now.
Damjan Marion607de1a2016-08-16 22:53:54 +0200279 // If variant is variant_ethernet then we came from LLC processing. Don't
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700280 // go back there; drop instead using by keeping the drop/bad table result.
281 if ((type0 < 0x600) && (variant == ETHERNET_INPUT_VARIANT_ETHERNET))
282 {
283 *next0 = ETHERNET_INPUT_NEXT_LLC;
284 }
285 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700286}
287
288static_always_inline uword
289ethernet_input_inline (vlib_main_t * vm,
290 vlib_node_runtime_t * node,
291 vlib_frame_t * from_frame,
292 ethernet_input_variant_t variant)
293{
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700294 vnet_main_t *vnm = vnet_get_main ();
295 ethernet_main_t *em = &ethernet_main;
296 vlib_node_runtime_t *error_node;
297 u32 n_left_from, next_index, *from, *to_next;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700298 u32 stats_sw_if_index, stats_n_packets, stats_n_bytes;
Damjan Marion586afd72017-04-05 19:18:20 +0200299 u32 thread_index = vlib_get_thread_index ();
Dave Barachcfba1e22016-11-16 10:23:50 -0500300 u32 cached_sw_if_index = ~0;
301 u32 cached_is_l2 = 0; /* shut up gcc */
John Lo1904c472017-03-10 17:15:22 -0500302 vnet_hw_interface_t *hi = NULL; /* used for main interface only */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700303
304 if (variant != ETHERNET_INPUT_VARIANT_ETHERNET)
305 error_node = vlib_node_get_runtime (vm, ethernet_input_node.index);
306 else
307 error_node = node;
308
309 from = vlib_frame_vector_args (from_frame);
310 n_left_from = from_frame->n_vectors;
311
312 if (node->flags & VLIB_NODE_FLAG_TRACE)
313 vlib_trace_frame_buffers_only (vm, node,
314 from,
315 n_left_from,
316 sizeof (from[0]),
317 sizeof (ethernet_input_trace_t));
318
319 next_index = node->cached_next_index;
320 stats_sw_if_index = node->runtime_data[0];
321 stats_n_packets = stats_n_bytes = 0;
322
323 while (n_left_from > 0)
324 {
325 u32 n_left_to_next;
326
327 vlib_get_next_frame (vm, node, next_index, to_next, n_left_to_next);
328
329 while (n_left_from >= 4 && n_left_to_next >= 2)
330 {
331 u32 bi0, bi1;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700332 vlib_buffer_t *b0, *b1;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700333 u8 next0, next1, error0, error1;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700334 u16 type0, orig_type0, type1, orig_type1;
335 u16 outer_id0, inner_id0, outer_id1, inner_id1;
336 u32 match_flags0, match_flags1;
337 u32 old_sw_if_index0, new_sw_if_index0, len0, old_sw_if_index1,
338 new_sw_if_index1, len1;
339 vnet_hw_interface_t *hi0, *hi1;
340 main_intf_t *main_intf0, *main_intf1;
341 vlan_intf_t *vlan_intf0, *vlan_intf1;
342 qinq_intf_t *qinq_intf0, *qinq_intf1;
343 u32 is_l20, is_l21;
Dave Barachcfba1e22016-11-16 10:23:50 -0500344 ethernet_header_t *e0, *e1;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700345
346 /* Prefetch next iteration. */
347 {
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700348 vlib_buffer_t *b2, *b3;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700349
350 b2 = vlib_get_buffer (vm, from[2]);
351 b3 = vlib_get_buffer (vm, from[3]);
352
353 vlib_prefetch_buffer_header (b2, STORE);
354 vlib_prefetch_buffer_header (b3, STORE);
355
356 CLIB_PREFETCH (b2->data, sizeof (ethernet_header_t), LOAD);
357 CLIB_PREFETCH (b3->data, sizeof (ethernet_header_t), LOAD);
358 }
359
360 bi0 = from[0];
361 bi1 = from[1];
362 to_next[0] = bi0;
363 to_next[1] = bi1;
364 from += 2;
365 to_next += 2;
366 n_left_to_next -= 2;
367 n_left_from -= 2;
368
369 b0 = vlib_get_buffer (vm, bi0);
370 b1 = vlib_get_buffer (vm, bi1);
371
372 error0 = error1 = ETHERNET_ERROR_NONE;
Dave Barachcfba1e22016-11-16 10:23:50 -0500373 e0 = vlib_buffer_get_current (b0);
374 type0 = clib_net_to_host_u16 (e0->type);
375 e1 = vlib_buffer_get_current (b1);
376 type1 = clib_net_to_host_u16 (e1->type);
377
John Locc532852016-12-14 15:42:45 -0500378 /* Speed-path for the untagged case */
Dave Barachcfba1e22016-11-16 10:23:50 -0500379 if (PREDICT_TRUE (variant == ETHERNET_INPUT_VARIANT_ETHERNET
380 && !ethernet_frame_is_tagged (type0)
381 && !ethernet_frame_is_tagged (type1)))
382 {
383 main_intf_t *intf0;
384 subint_config_t *subint0;
385 u32 sw_if_index0, sw_if_index1;
386
387 sw_if_index0 = vnet_buffer (b0)->sw_if_index[VLIB_RX];
388 sw_if_index1 = vnet_buffer (b1)->sw_if_index[VLIB_RX];
389 is_l20 = cached_is_l2;
390
391 /* This is probably wholly unnecessary */
392 if (PREDICT_FALSE (sw_if_index0 != sw_if_index1))
393 goto slowpath;
394
John Lo1904c472017-03-10 17:15:22 -0500395 /* Now sw_if_index0 == sw_if_index1 */
Dave Barachcfba1e22016-11-16 10:23:50 -0500396 if (PREDICT_FALSE (cached_sw_if_index != sw_if_index0))
397 {
398 cached_sw_if_index = sw_if_index0;
John Lo1904c472017-03-10 17:15:22 -0500399 hi = vnet_get_sup_hw_interface (vnm, sw_if_index0);
400 intf0 = vec_elt_at_index (em->main_intfs, hi->hw_if_index);
Dave Barachcfba1e22016-11-16 10:23:50 -0500401 subint0 = &intf0->untagged_subint;
402 cached_is_l2 = is_l20 = subint0->flags & SUBINT_CONFIG_L2;
403 }
John Lo7714b302016-12-20 16:59:02 -0500404
405 vnet_buffer (b0)->ethernet.start_of_ethernet_header =
406 b0->current_data;
407 vnet_buffer (b1)->ethernet.start_of_ethernet_header =
408 b1->current_data;
409
Dave Barachcfba1e22016-11-16 10:23:50 -0500410 if (PREDICT_TRUE (is_l20 != 0))
411 {
412 next0 = em->l2_next;
413 vnet_buffer (b0)->l2.l2_len = sizeof (ethernet_header_t);
Dave Barachcfba1e22016-11-16 10:23:50 -0500414 next1 = em->l2_next;
415 vnet_buffer (b1)->l2.l2_len = sizeof (ethernet_header_t);
Dave Barachcfba1e22016-11-16 10:23:50 -0500416 }
John Locc532852016-12-14 15:42:45 -0500417 else
418 {
John Lo1904c472017-03-10 17:15:22 -0500419 if (!ethernet_address_cast (e0->dst_address) &&
Hongjun Ni9e3e3612017-04-26 18:40:55 +0800420 (hi->hw_address != 0) &&
John Lo1904c472017-03-10 17:15:22 -0500421 !eth_mac_equal ((u8 *) e0, hi->hw_address))
422 error0 = ETHERNET_ERROR_L3_MAC_MISMATCH;
423 if (!ethernet_address_cast (e1->dst_address) &&
Hongjun Ni9e3e3612017-04-26 18:40:55 +0800424 (hi->hw_address != 0) &&
John Lo1904c472017-03-10 17:15:22 -0500425 !eth_mac_equal ((u8 *) e1, hi->hw_address))
426 error1 = ETHERNET_ERROR_L3_MAC_MISMATCH;
John Locc532852016-12-14 15:42:45 -0500427 determine_next_node (em, variant, 0, type0, b0,
428 &error0, &next0);
429 vlib_buffer_advance (b0, sizeof (ethernet_header_t));
430 determine_next_node (em, variant, 0, type1, b1,
431 &error1, &next1);
432 vlib_buffer_advance (b1, sizeof (ethernet_header_t));
433 }
434 goto ship_it01;
Dave Barachcfba1e22016-11-16 10:23:50 -0500435 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700436
John Locc532852016-12-14 15:42:45 -0500437 /* Slow-path for the tagged case */
438 slowpath:
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700439 parse_header (variant,
440 b0,
441 &type0,
442 &orig_type0, &outer_id0, &inner_id0, &match_flags0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700443
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700444 parse_header (variant,
445 b1,
446 &type1,
447 &orig_type1, &outer_id1, &inner_id1, &match_flags1);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700448
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700449 old_sw_if_index0 = vnet_buffer (b0)->sw_if_index[VLIB_RX];
450 old_sw_if_index1 = vnet_buffer (b1)->sw_if_index[VLIB_RX];
Ed Warnickecb9cada2015-12-08 15:45:58 -0700451
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700452 eth_vlan_table_lookups (em,
453 vnm,
454 old_sw_if_index0,
455 orig_type0,
456 outer_id0,
457 inner_id0,
458 &hi0,
459 &main_intf0, &vlan_intf0, &qinq_intf0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700460
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700461 eth_vlan_table_lookups (em,
462 vnm,
463 old_sw_if_index1,
464 orig_type1,
465 outer_id1,
466 inner_id1,
467 &hi1,
468 &main_intf1, &vlan_intf1, &qinq_intf1);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700469
470 identify_subint (hi0,
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700471 b0,
472 match_flags0,
473 main_intf0,
474 vlan_intf0,
475 qinq_intf0, &new_sw_if_index0, &error0, &is_l20);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700476
477 identify_subint (hi1,
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700478 b1,
479 match_flags1,
480 main_intf1,
481 vlan_intf1,
482 qinq_intf1, &new_sw_if_index1, &error1, &is_l21);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700483
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700484 // Save RX sw_if_index for later nodes
485 vnet_buffer (b0)->sw_if_index[VLIB_RX] =
486 error0 !=
487 ETHERNET_ERROR_NONE ? old_sw_if_index0 : new_sw_if_index0;
488 vnet_buffer (b1)->sw_if_index[VLIB_RX] =
489 error1 !=
490 ETHERNET_ERROR_NONE ? old_sw_if_index1 : new_sw_if_index1;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700491
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700492 // Check if there is a stat to take (valid and non-main sw_if_index for pkt 0 or pkt 1)
493 if (((new_sw_if_index0 != ~0)
494 && (new_sw_if_index0 != old_sw_if_index0))
495 || ((new_sw_if_index1 != ~0)
496 && (new_sw_if_index1 != old_sw_if_index1)))
497 {
Ed Warnickecb9cada2015-12-08 15:45:58 -0700498
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700499 len0 = vlib_buffer_length_in_chain (vm, b0) + b0->current_data
500 - vnet_buffer (b0)->ethernet.start_of_ethernet_header;
501 len1 = vlib_buffer_length_in_chain (vm, b1) + b1->current_data
502 - vnet_buffer (b1)->ethernet.start_of_ethernet_header;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700503
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700504 stats_n_packets += 2;
505 stats_n_bytes += len0 + len1;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700506
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700507 if (PREDICT_FALSE
508 (!(new_sw_if_index0 == stats_sw_if_index
509 && new_sw_if_index1 == stats_sw_if_index)))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700510 {
511 stats_n_packets -= 2;
512 stats_n_bytes -= len0 + len1;
513
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700514 if (new_sw_if_index0 != old_sw_if_index0
515 && new_sw_if_index0 != ~0)
516 vlib_increment_combined_counter (vnm->
517 interface_main.combined_sw_if_counters
518 +
519 VNET_INTERFACE_COUNTER_RX,
Damjan Marion586afd72017-04-05 19:18:20 +0200520 thread_index,
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700521 new_sw_if_index0, 1,
522 len0);
523 if (new_sw_if_index1 != old_sw_if_index1
524 && new_sw_if_index1 != ~0)
525 vlib_increment_combined_counter (vnm->
526 interface_main.combined_sw_if_counters
527 +
528 VNET_INTERFACE_COUNTER_RX,
Damjan Marion586afd72017-04-05 19:18:20 +0200529 thread_index,
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700530 new_sw_if_index1, 1,
531 len1);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700532
533 if (new_sw_if_index0 == new_sw_if_index1)
534 {
535 if (stats_n_packets > 0)
536 {
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700537 vlib_increment_combined_counter
538 (vnm->interface_main.combined_sw_if_counters
539 + VNET_INTERFACE_COUNTER_RX,
Damjan Marion586afd72017-04-05 19:18:20 +0200540 thread_index,
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700541 stats_sw_if_index,
542 stats_n_packets, stats_n_bytes);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700543 stats_n_packets = stats_n_bytes = 0;
544 }
545 stats_sw_if_index = new_sw_if_index0;
546 }
547 }
548 }
549
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700550 if (variant == ETHERNET_INPUT_VARIANT_NOT_L2)
551 is_l20 = is_l21 = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700552
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700553 determine_next_node (em, variant, is_l20, type0, b0, &error0,
554 &next0);
555 determine_next_node (em, variant, is_l21, type1, b1, &error1,
556 &next1);
557
John Lo1904c472017-03-10 17:15:22 -0500558 ship_it01:
Ed Warnickecb9cada2015-12-08 15:45:58 -0700559 b0->error = error_node->errors[error0];
560 b1->error = error_node->errors[error1];
561
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700562 // verify speculative enqueue
563 vlib_validate_buffer_enqueue_x2 (vm, node, next_index, to_next,
564 n_left_to_next, bi0, bi1, next0,
565 next1);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700566 }
567
568 while (n_left_from > 0 && n_left_to_next > 0)
569 {
570 u32 bi0;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700571 vlib_buffer_t *b0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700572 u8 error0, next0;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700573 u16 type0, orig_type0;
574 u16 outer_id0, inner_id0;
575 u32 match_flags0;
576 u32 old_sw_if_index0, new_sw_if_index0, len0;
577 vnet_hw_interface_t *hi0;
578 main_intf_t *main_intf0;
579 vlan_intf_t *vlan_intf0;
580 qinq_intf_t *qinq_intf0;
Dave Barachcfba1e22016-11-16 10:23:50 -0500581 ethernet_header_t *e0;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700582 u32 is_l20;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700583
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700584 // Prefetch next iteration
585 if (n_left_from > 1)
586 {
587 vlib_buffer_t *p2;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700588
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700589 p2 = vlib_get_buffer (vm, from[1]);
590 vlib_prefetch_buffer_header (p2, STORE);
591 CLIB_PREFETCH (p2->data, CLIB_CACHE_LINE_BYTES, LOAD);
592 }
593
594 bi0 = from[0];
Ed Warnickecb9cada2015-12-08 15:45:58 -0700595 to_next[0] = bi0;
596 from += 1;
597 to_next += 1;
598 n_left_from -= 1;
599 n_left_to_next -= 1;
600
601 b0 = vlib_get_buffer (vm, bi0);
602
603 error0 = ETHERNET_ERROR_NONE;
Dave Barachcfba1e22016-11-16 10:23:50 -0500604 e0 = vlib_buffer_get_current (b0);
605 type0 = clib_net_to_host_u16 (e0->type);
606
John Locc532852016-12-14 15:42:45 -0500607 /* Speed-path for the untagged case */
Dave Barachcfba1e22016-11-16 10:23:50 -0500608 if (PREDICT_TRUE (variant == ETHERNET_INPUT_VARIANT_ETHERNET
609 && !ethernet_frame_is_tagged (type0)))
610 {
611 main_intf_t *intf0;
612 subint_config_t *subint0;
613 u32 sw_if_index0;
614
615 sw_if_index0 = vnet_buffer (b0)->sw_if_index[VLIB_RX];
616 is_l20 = cached_is_l2;
617
618 if (PREDICT_FALSE (cached_sw_if_index != sw_if_index0))
619 {
620 cached_sw_if_index = sw_if_index0;
John Lo1904c472017-03-10 17:15:22 -0500621 hi = vnet_get_sup_hw_interface (vnm, sw_if_index0);
622 intf0 = vec_elt_at_index (em->main_intfs, hi->hw_if_index);
Dave Barachcfba1e22016-11-16 10:23:50 -0500623 subint0 = &intf0->untagged_subint;
624 cached_is_l2 = is_l20 = subint0->flags & SUBINT_CONFIG_L2;
625 }
John Lo7714b302016-12-20 16:59:02 -0500626
627 vnet_buffer (b0)->ethernet.start_of_ethernet_header =
628 b0->current_data;
629
Dave Barachcfba1e22016-11-16 10:23:50 -0500630 if (PREDICT_TRUE (is_l20 != 0))
631 {
632 next0 = em->l2_next;
633 vnet_buffer (b0)->l2.l2_len = sizeof (ethernet_header_t);
Dave Barachcfba1e22016-11-16 10:23:50 -0500634 }
John Locc532852016-12-14 15:42:45 -0500635 else
636 {
John Lo1904c472017-03-10 17:15:22 -0500637 if (!ethernet_address_cast (e0->dst_address) &&
Hongjun Ni9e3e3612017-04-26 18:40:55 +0800638 (hi->hw_address != 0) &&
John Lo1904c472017-03-10 17:15:22 -0500639 !eth_mac_equal ((u8 *) e0, hi->hw_address))
640 error0 = ETHERNET_ERROR_L3_MAC_MISMATCH;
John Locc532852016-12-14 15:42:45 -0500641 determine_next_node (em, variant, 0, type0, b0,
642 &error0, &next0);
643 vlib_buffer_advance (b0, sizeof (ethernet_header_t));
644 }
645 goto ship_it0;
Dave Barachcfba1e22016-11-16 10:23:50 -0500646 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700647
John Locc532852016-12-14 15:42:45 -0500648 /* Slow-path for the tagged case */
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700649 parse_header (variant,
650 b0,
651 &type0,
652 &orig_type0, &outer_id0, &inner_id0, &match_flags0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700653
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700654 old_sw_if_index0 = vnet_buffer (b0)->sw_if_index[VLIB_RX];
Ed Warnickecb9cada2015-12-08 15:45:58 -0700655
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700656 eth_vlan_table_lookups (em,
657 vnm,
658 old_sw_if_index0,
659 orig_type0,
660 outer_id0,
661 inner_id0,
662 &hi0,
663 &main_intf0, &vlan_intf0, &qinq_intf0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700664
665 identify_subint (hi0,
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700666 b0,
667 match_flags0,
668 main_intf0,
669 vlan_intf0,
670 qinq_intf0, &new_sw_if_index0, &error0, &is_l20);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700671
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700672 // Save RX sw_if_index for later nodes
673 vnet_buffer (b0)->sw_if_index[VLIB_RX] =
674 error0 !=
675 ETHERNET_ERROR_NONE ? old_sw_if_index0 : new_sw_if_index0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700676
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700677 // Increment subinterface stats
678 // Note that interface-level counters have already been incremented
679 // prior to calling this function. Thus only subinterface counters
680 // are incremented here.
681 //
Damjan Marion607de1a2016-08-16 22:53:54 +0200682 // Interface level counters include packets received on the main
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700683 // interface and all subinterfaces. Subinterface level counters
684 // include only those packets received on that subinterface
Ed Warnickecb9cada2015-12-08 15:45:58 -0700685 // Increment stats if the subint is valid and it is not the main intf
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700686 if ((new_sw_if_index0 != ~0)
687 && (new_sw_if_index0 != old_sw_if_index0))
688 {
Ed Warnickecb9cada2015-12-08 15:45:58 -0700689
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700690 len0 = vlib_buffer_length_in_chain (vm, b0) + b0->current_data
691 - vnet_buffer (b0)->ethernet.start_of_ethernet_header;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700692
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700693 stats_n_packets += 1;
694 stats_n_bytes += len0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700695
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700696 // Batch stat increments from the same subinterface so counters
Damjan Marion607de1a2016-08-16 22:53:54 +0200697 // don't need to be incremented for every packet.
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700698 if (PREDICT_FALSE (new_sw_if_index0 != stats_sw_if_index))
699 {
700 stats_n_packets -= 1;
701 stats_n_bytes -= len0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700702
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700703 if (new_sw_if_index0 != ~0)
704 vlib_increment_combined_counter
705 (vnm->interface_main.combined_sw_if_counters
706 + VNET_INTERFACE_COUNTER_RX,
Damjan Marion586afd72017-04-05 19:18:20 +0200707 thread_index, new_sw_if_index0, 1, len0);
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700708 if (stats_n_packets > 0)
709 {
710 vlib_increment_combined_counter
711 (vnm->interface_main.combined_sw_if_counters
712 + VNET_INTERFACE_COUNTER_RX,
Damjan Marion586afd72017-04-05 19:18:20 +0200713 thread_index,
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700714 stats_sw_if_index, stats_n_packets, stats_n_bytes);
715 stats_n_packets = stats_n_bytes = 0;
716 }
717 stats_sw_if_index = new_sw_if_index0;
718 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700719 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700720
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700721 if (variant == ETHERNET_INPUT_VARIANT_NOT_L2)
722 is_l20 = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700723
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700724 determine_next_node (em, variant, is_l20, type0, b0, &error0,
725 &next0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700726
John Lo1904c472017-03-10 17:15:22 -0500727 ship_it0:
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700728 b0->error = error_node->errors[error0];
729
730 // verify speculative enqueue
Ed Warnickecb9cada2015-12-08 15:45:58 -0700731 vlib_validate_buffer_enqueue_x1 (vm, node, next_index,
732 to_next, n_left_to_next,
733 bi0, next0);
734 }
735
736 vlib_put_next_frame (vm, node, next_index, n_left_to_next);
737 }
738
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700739 // Increment any remaining batched stats
740 if (stats_n_packets > 0)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700741 {
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700742 vlib_increment_combined_counter
743 (vnm->interface_main.combined_sw_if_counters
744 + VNET_INTERFACE_COUNTER_RX,
Damjan Marion586afd72017-04-05 19:18:20 +0200745 thread_index, stats_sw_if_index, stats_n_packets, stats_n_bytes);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700746 node->runtime_data[0] = stats_sw_if_index;
747 }
748
749 return from_frame->n_vectors;
750}
751
752static uword
753ethernet_input (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);
758}
Ed Warnickecb9cada2015-12-08 15:45:58 -0700759
760static uword
761ethernet_input_type (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_ETHERNET_TYPE);
766}
Ed Warnickecb9cada2015-12-08 15:45:58 -0700767
768static uword
769ethernet_input_not_l2 (vlib_main_t * vm,
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700770 vlib_node_runtime_t * node, vlib_frame_t * from_frame)
771{
772 return ethernet_input_inline (vm, node, from_frame,
773 ETHERNET_INPUT_VARIANT_NOT_L2);
774}
Ed Warnickecb9cada2015-12-08 15:45:58 -0700775
776
777// Return the subinterface config struct for the given sw_if_index
778// Also return via parameter the appropriate match flags for the
779// configured number of tags.
780// On error (unsupported or not ethernet) return 0.
781static subint_config_t *
782ethernet_sw_interface_get_config (vnet_main_t * vnm,
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700783 u32 sw_if_index,
784 u32 * flags, u32 * unsupported)
785{
786 ethernet_main_t *em = &ethernet_main;
787 vnet_hw_interface_t *hi;
788 vnet_sw_interface_t *si;
789 main_intf_t *main_intf;
790 vlan_table_t *vlan_table;
791 qinq_table_t *qinq_table;
792 subint_config_t *subint = 0;
793
Ed Warnickecb9cada2015-12-08 15:45:58 -0700794 hi = vnet_get_sup_hw_interface (vnm, sw_if_index);
795
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700796 if (!hi || (hi->hw_class_index != ethernet_hw_interface_class.index))
797 {
798 *unsupported = 0;
799 goto done; // non-ethernet interface
800 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700801
802 // ensure there's an entry for the main intf (shouldn't really be necessary)
803 vec_validate (em->main_intfs, hi->hw_if_index);
804 main_intf = vec_elt_at_index (em->main_intfs, hi->hw_if_index);
805
806 // Locate the subint for the given ethernet config
807 si = vnet_get_sw_interface (vnm, sw_if_index);
808
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700809 if (si->sub.eth.flags.default_sub)
810 {
811 subint = &main_intf->default_subint;
812 *flags = SUBINT_CONFIG_MATCH_0_TAG |
813 SUBINT_CONFIG_MATCH_1_TAG |
814 SUBINT_CONFIG_MATCH_2_TAG | SUBINT_CONFIG_MATCH_3_TAG;
815 }
816 else if ((si->sub.eth.flags.no_tags) || (si->sub.eth.raw_flags == 0))
817 {
818 // if no flags are set then this is a main interface
819 // so treat as untagged
820 subint = &main_intf->untagged_subint;
821 *flags = SUBINT_CONFIG_MATCH_0_TAG;
822 }
823 else
824 {
825 // one or two tags
826 // first get the vlan table
827 if (si->sub.eth.flags.dot1ad)
828 {
829 if (main_intf->dot1ad_vlans == 0)
830 {
831 // Allocate a vlan table from the pool
832 pool_get (em->vlan_pool, vlan_table);
833 main_intf->dot1ad_vlans = vlan_table - em->vlan_pool;
834 }
835 else
836 {
837 // Get ptr to existing vlan table
838 vlan_table =
839 vec_elt_at_index (em->vlan_pool, main_intf->dot1ad_vlans);
840 }
841 }
842 else
843 { // dot1q
844 if (main_intf->dot1q_vlans == 0)
845 {
846 // Allocate a vlan table from the pool
847 pool_get (em->vlan_pool, vlan_table);
848 main_intf->dot1q_vlans = vlan_table - em->vlan_pool;
849 }
850 else
851 {
852 // Get ptr to existing vlan table
853 vlan_table =
854 vec_elt_at_index (em->vlan_pool, main_intf->dot1q_vlans);
855 }
856 }
857
858 if (si->sub.eth.flags.one_tag)
859 {
860 *flags = si->sub.eth.flags.exact_match ?
861 SUBINT_CONFIG_MATCH_1_TAG :
862 (SUBINT_CONFIG_MATCH_1_TAG |
863 SUBINT_CONFIG_MATCH_2_TAG | SUBINT_CONFIG_MATCH_3_TAG);
864
865 if (si->sub.eth.flags.outer_vlan_id_any)
866 {
867 // not implemented yet
868 *unsupported = 1;
869 goto done;
870 }
871 else
872 {
873 // a single vlan, a common case
874 subint =
875 &vlan_table->vlans[si->sub.eth.
876 outer_vlan_id].single_tag_subint;
877 }
878
879 }
880 else
881 {
882 // Two tags
883 *flags = si->sub.eth.flags.exact_match ?
884 SUBINT_CONFIG_MATCH_2_TAG :
885 (SUBINT_CONFIG_MATCH_2_TAG | SUBINT_CONFIG_MATCH_3_TAG);
886
887 if (si->sub.eth.flags.outer_vlan_id_any
888 && si->sub.eth.flags.inner_vlan_id_any)
889 {
890 // not implemented yet
891 *unsupported = 1;
892 goto done;
893 }
894
895 if (si->sub.eth.flags.inner_vlan_id_any)
896 {
897 // a specific outer and "any" inner
898 // don't need a qinq table for this
899 subint =
900 &vlan_table->vlans[si->sub.eth.
901 outer_vlan_id].inner_any_subint;
902 if (si->sub.eth.flags.exact_match)
903 {
904 *flags = SUBINT_CONFIG_MATCH_2_TAG;
905 }
906 else
907 {
908 *flags = SUBINT_CONFIG_MATCH_2_TAG |
909 SUBINT_CONFIG_MATCH_3_TAG;
910 }
911 }
912 else
913 {
914 // a specific outer + specifc innner vlan id, a common case
915
916 // get the qinq table
917 if (vlan_table->vlans[si->sub.eth.outer_vlan_id].qinqs == 0)
918 {
919 // Allocate a qinq table from the pool
920 pool_get (em->qinq_pool, qinq_table);
921 vlan_table->vlans[si->sub.eth.outer_vlan_id].qinqs =
922 qinq_table - em->qinq_pool;
923 }
924 else
925 {
926 // Get ptr to existing qinq table
927 qinq_table =
928 vec_elt_at_index (em->qinq_pool,
929 vlan_table->vlans[si->sub.
930 eth.outer_vlan_id].
931 qinqs);
932 }
933 subint = &qinq_table->vlans[si->sub.eth.inner_vlan_id].subint;
934 }
935 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700936 }
937
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700938done:
Ed Warnickecb9cada2015-12-08 15:45:58 -0700939 return subint;
940}
941
942clib_error_t *
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700943ethernet_sw_interface_up_down (vnet_main_t * vnm, u32 sw_if_index, u32 flags)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700944{
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700945 subint_config_t *subint;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700946 u32 dummy_flags;
947 u32 dummy_unsup;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700948 clib_error_t *error = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700949
950 // Find the config for this subinterface
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700951 subint =
952 ethernet_sw_interface_get_config (vnm, sw_if_index, &dummy_flags,
953 &dummy_unsup);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700954
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700955 if (subint == 0)
956 {
957 // not implemented yet or not ethernet
958 goto done;
959 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700960
961 subint->sw_if_index =
962 ((flags & VNET_SW_INTERFACE_FLAG_ADMIN_UP) ? sw_if_index : ~0);
963
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700964done:
Ed Warnickecb9cada2015-12-08 15:45:58 -0700965 return error;
966}
967
968VNET_SW_INTERFACE_ADMIN_UP_DOWN_FUNCTION (ethernet_sw_interface_up_down);
969
970
971// Set the L2/L3 mode for the subinterface
972void
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700973ethernet_sw_interface_set_l2_mode (vnet_main_t * vnm, u32 sw_if_index, u32 l2)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700974{
975 subint_config_t *subint;
976 u32 dummy_flags;
977 u32 dummy_unsup;
978 int is_port;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700979 vnet_sw_interface_t *sw = vnet_get_sw_interface (vnm, sw_if_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700980
981 is_port = !(sw->type == VNET_SW_INTERFACE_TYPE_SUB);
982
983 // Find the config for this subinterface
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700984 subint =
985 ethernet_sw_interface_get_config (vnm, sw_if_index, &dummy_flags,
986 &dummy_unsup);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700987
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700988 if (subint == 0)
989 {
990 // unimplemented or not ethernet
991 goto done;
992 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700993
994 // Double check that the config we found is for our interface (or the interface is down)
995 ASSERT ((subint->sw_if_index == sw_if_index) | (subint->sw_if_index == ~0));
996
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700997 if (l2)
998 {
999 subint->flags |= SUBINT_CONFIG_L2;
1000 if (is_port)
1001 subint->flags |=
1002 SUBINT_CONFIG_MATCH_0_TAG | SUBINT_CONFIG_MATCH_1_TAG
1003 | SUBINT_CONFIG_MATCH_2_TAG | SUBINT_CONFIG_MATCH_3_TAG;
1004 }
1005 else
1006 {
1007 subint->flags &= ~SUBINT_CONFIG_L2;
1008 if (is_port)
1009 subint->flags &=
1010 ~(SUBINT_CONFIG_MATCH_1_TAG | SUBINT_CONFIG_MATCH_2_TAG
1011 | SUBINT_CONFIG_MATCH_3_TAG);
1012 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001013
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001014done:
Ed Warnickecb9cada2015-12-08 15:45:58 -07001015 return;
1016}
1017
Christian Dechamplain (cdechamp)07aecbb2016-04-05 10:40:38 -04001018/*
1019 * Set the L2/L3 mode for the subinterface regardless of port
1020 */
1021void
1022ethernet_sw_interface_set_l2_mode_noport (vnet_main_t * vnm,
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001023 u32 sw_if_index, u32 l2)
Christian Dechamplain (cdechamp)07aecbb2016-04-05 10:40:38 -04001024{
1025 subint_config_t *subint;
1026 u32 dummy_flags;
1027 u32 dummy_unsup;
1028
1029 /* Find the config for this subinterface */
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001030 subint =
1031 ethernet_sw_interface_get_config (vnm, sw_if_index, &dummy_flags,
1032 &dummy_unsup);
Christian Dechamplain (cdechamp)07aecbb2016-04-05 10:40:38 -04001033
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001034 if (subint == 0)
1035 {
1036 /* unimplemented or not ethernet */
1037 goto done;
1038 }
Christian Dechamplain (cdechamp)07aecbb2016-04-05 10:40:38 -04001039
1040 /*
1041 * Double check that the config we found is for our interface (or the
1042 * interface is down)
1043 */
1044 ASSERT ((subint->sw_if_index == sw_if_index) | (subint->sw_if_index == ~0));
1045
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001046 if (l2)
1047 {
1048 subint->flags |= SUBINT_CONFIG_L2;
1049 }
1050 else
1051 {
1052 subint->flags &= ~SUBINT_CONFIG_L2;
1053 }
Christian Dechamplain (cdechamp)07aecbb2016-04-05 10:40:38 -04001054
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001055done:
Christian Dechamplain (cdechamp)07aecbb2016-04-05 10:40:38 -04001056 return;
1057}
Ed Warnickecb9cada2015-12-08 15:45:58 -07001058
1059static clib_error_t *
1060ethernet_sw_interface_add_del (vnet_main_t * vnm,
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001061 u32 sw_if_index, u32 is_create)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001062{
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001063 clib_error_t *error = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001064 subint_config_t *subint;
1065 u32 match_flags;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001066 u32 unsupported = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001067
1068 // Find the config for this subinterface
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001069 subint =
1070 ethernet_sw_interface_get_config (vnm, sw_if_index, &match_flags,
1071 &unsupported);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001072
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001073 if (subint == 0)
1074 {
1075 // not implemented yet or not ethernet
1076 if (unsupported)
1077 {
Damjan Marion607de1a2016-08-16 22:53:54 +02001078 // this is the NYI case
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001079 error = clib_error_return (0, "not implemented yet");
1080 }
1081 goto done;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001082 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001083
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001084 if (!is_create)
1085 {
1086 subint->flags = 0;
1087 return error;
1088 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001089
1090 // Initialize the subint
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001091 if (subint->flags & SUBINT_CONFIG_VALID)
1092 {
1093 // Error vlan already in use
1094 error = clib_error_return (0, "vlan is already in use");
1095 }
1096 else
1097 {
1098 // Note that config is L3 by defaulty
1099 subint->flags = SUBINT_CONFIG_VALID | match_flags;
1100 subint->sw_if_index = ~0; // because interfaces are initially down
1101 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001102
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001103done:
Ed Warnickecb9cada2015-12-08 15:45:58 -07001104 return error;
1105}
1106
1107VNET_SW_INTERFACE_ADD_DEL_FUNCTION (ethernet_sw_interface_add_del);
1108
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001109static char *ethernet_error_strings[] = {
Ed Warnickecb9cada2015-12-08 15:45:58 -07001110#define ethernet_error(n,c,s) s,
1111#include "error.def"
1112#undef ethernet_error
1113};
1114
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001115/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07001116VLIB_REGISTER_NODE (ethernet_input_node) = {
1117 .function = ethernet_input,
1118 .name = "ethernet-input",
1119 /* Takes a vector of packets. */
1120 .vector_size = sizeof (u32),
Ed Warnickecb9cada2015-12-08 15:45:58 -07001121 .n_errors = ETHERNET_N_ERROR,
1122 .error_strings = ethernet_error_strings,
Ed Warnickecb9cada2015-12-08 15:45:58 -07001123 .n_next_nodes = ETHERNET_INPUT_N_NEXT,
1124 .next_nodes = {
1125#define _(s,n) [ETHERNET_INPUT_NEXT_##s] = n,
1126 foreach_ethernet_input_next
1127#undef _
1128 },
Ed Warnickecb9cada2015-12-08 15:45:58 -07001129 .format_buffer = format_ethernet_header_with_length,
1130 .format_trace = format_ethernet_input_trace,
1131 .unformat_buffer = unformat_ethernet_header,
1132};
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001133/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07001134
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001135/* *INDENT-OFF* */
Damjan Marion1c80e832016-05-11 23:07:18 +02001136VLIB_NODE_FUNCTION_MULTIARCH (ethernet_input_node, ethernet_input)
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001137/* *INDENT-ON* */
Damjan Marion1c80e832016-05-11 23:07:18 +02001138
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001139/* *INDENT-OFF* */
1140VLIB_REGISTER_NODE (ethernet_input_type_node, static) = {
Ed Warnickecb9cada2015-12-08 15:45:58 -07001141 .function = ethernet_input_type,
1142 .name = "ethernet-input-type",
1143 /* Takes a vector of packets. */
1144 .vector_size = sizeof (u32),
Ed Warnickecb9cada2015-12-08 15:45:58 -07001145 .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)e70dcc82016-08-15 18:33:19 -07001152/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07001153
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001154/* *INDENT-OFF* */
Damjan Marion1c80e832016-05-11 23:07:18 +02001155VLIB_NODE_FUNCTION_MULTIARCH (ethernet_input_type_node, ethernet_input_type)
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001156/* *INDENT-ON* */
Damjan Marion1c80e832016-05-11 23:07:18 +02001157
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001158/* *INDENT-OFF* */
1159VLIB_REGISTER_NODE (ethernet_input_not_l2_node, static) = {
Ed Warnickecb9cada2015-12-08 15:45:58 -07001160 .function = ethernet_input_not_l2,
1161 .name = "ethernet-input-not-l2",
1162 /* Takes a vector of packets. */
1163 .vector_size = sizeof (u32),
Ed Warnickecb9cada2015-12-08 15:45:58 -07001164 .n_next_nodes = ETHERNET_INPUT_N_NEXT,
1165 .next_nodes = {
1166#define _(s,n) [ETHERNET_INPUT_NEXT_##s] = n,
1167 foreach_ethernet_input_next
1168#undef _
1169 },
1170};
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001171/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07001172
Damjan Marion1c80e832016-05-11 23:07:18 +02001173
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001174/* *INDENT-OFF* */
1175VLIB_NODE_FUNCTION_MULTIARCH (ethernet_input_not_l2_node,
1176 ethernet_input_not_l2)
1177/* *INDENT-ON* */
1178
1179
1180void
1181ethernet_set_rx_redirect (vnet_main_t * vnm,
1182 vnet_hw_interface_t * hi, u32 enable)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001183{
1184 // Insure all packets go to ethernet-input (i.e. untagged ipv4 packets
1185 // don't go directly to ip4-input)
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001186 vnet_hw_interface_rx_redirect_to_node
1187 (vnm, hi->hw_if_index, enable ? ethernet_input_node.index : ~0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001188}
1189
1190
1191/*
1192 * Initialization and registration for the next_by_ethernet structure
1193 */
1194
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001195clib_error_t *
1196next_by_ethertype_init (next_by_ethertype_t * l3_next)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001197{
1198 l3_next->input_next_by_type = sparse_vec_new
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001199 ( /* elt bytes */ sizeof (l3_next->input_next_by_type[0]),
Ed Warnickecb9cada2015-12-08 15:45:58 -07001200 /* bits in index */ BITS (((ethernet_header_t *) 0)->type));
1201
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001202 vec_validate (l3_next->sparse_index_by_input_next_index,
1203 ETHERNET_INPUT_NEXT_DROP);
1204 vec_validate (l3_next->sparse_index_by_input_next_index,
1205 ETHERNET_INPUT_NEXT_PUNT);
1206 l3_next->sparse_index_by_input_next_index[ETHERNET_INPUT_NEXT_DROP] =
1207 SPARSE_VEC_INVALID_INDEX;
1208 l3_next->sparse_index_by_input_next_index[ETHERNET_INPUT_NEXT_PUNT] =
1209 SPARSE_VEC_INVALID_INDEX;
1210
Damjan Marion607de1a2016-08-16 22:53:54 +02001211 /*
1212 * Make sure we don't wipe out an ethernet registration by mistake
Dave Barach1f49ed62016-02-24 11:29:06 -05001213 * Can happen if init function ordering constraints are missing.
1214 */
1215 if (CLIB_DEBUG > 0)
1216 {
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001217 ethernet_main_t *em = &ethernet_main;
1218 ASSERT (em->next_by_ethertype_register_called == 0);
Dave Barach1f49ed62016-02-24 11:29:06 -05001219 }
1220
Ed Warnickecb9cada2015-12-08 15:45:58 -07001221 return 0;
1222}
1223
1224// Add an ethertype -> next index mapping to the structure
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001225clib_error_t *
1226next_by_ethertype_register (next_by_ethertype_t * l3_next,
1227 u32 ethertype, u32 next_index)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001228{
1229 u32 i;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001230 u16 *n;
1231 ethernet_main_t *em = &ethernet_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001232
Dave Barach1f49ed62016-02-24 11:29:06 -05001233 if (CLIB_DEBUG > 0)
1234 {
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001235 ethernet_main_t *em = &ethernet_main;
Dave Barach1f49ed62016-02-24 11:29:06 -05001236 em->next_by_ethertype_register_called = 1;
1237 }
1238
Ed Warnickecb9cada2015-12-08 15:45:58 -07001239 /* Setup ethernet type -> next index sparse vector mapping. */
1240 n = sparse_vec_validate (l3_next->input_next_by_type, ethertype);
1241 n[0] = next_index;
1242
1243 /* Rebuild next index -> sparse index inverse mapping when sparse vector
1244 is updated. */
1245 vec_validate (l3_next->sparse_index_by_input_next_index, next_index);
1246 for (i = 1; i < vec_len (l3_next->input_next_by_type); i++)
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001247 l3_next->
1248 sparse_index_by_input_next_index[l3_next->input_next_by_type[i]] = i;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001249
1250 // do not allow the cached next index's to be updated if L3
1251 // redirect is enabled, as it will have overwritten them
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001252 if (!em->redirect_l3)
1253 {
1254 // Cache common ethertypes directly
1255 if (ethertype == ETHERNET_TYPE_IP4)
1256 {
1257 l3_next->input_next_ip4 = next_index;
1258 }
1259 else if (ethertype == ETHERNET_TYPE_IP6)
1260 {
1261 l3_next->input_next_ip6 = next_index;
1262 }
Neale Ranns0f26c5a2017-03-01 15:12:11 -08001263 else if (ethertype == ETHERNET_TYPE_MPLS)
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001264 {
1265 l3_next->input_next_mpls = next_index;
1266 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001267 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001268 return 0;
1269}
1270
1271
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001272static clib_error_t *
1273ethernet_input_init (vlib_main_t * vm)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001274{
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001275 ethernet_main_t *em = &ethernet_main;
1276 __attribute__ ((unused)) vlan_table_t *invalid_vlan_table;
1277 __attribute__ ((unused)) qinq_table_t *invalid_qinq_table;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001278
1279 ethernet_setup_node (vm, ethernet_input_node.index);
1280 ethernet_setup_node (vm, ethernet_input_type_node.index);
1281 ethernet_setup_node (vm, ethernet_input_not_l2_node.index);
1282
1283 next_by_ethertype_init (&em->l3_next);
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001284
Ed Warnickecb9cada2015-12-08 15:45:58 -07001285 // Initialize pools and vector for vlan parsing
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001286 vec_validate (em->main_intfs, 10); // 10 main interfaces
1287 pool_alloc (em->vlan_pool, 10);
1288 pool_alloc (em->qinq_pool, 1);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001289
1290 // The first vlan pool will always be reserved for an invalid table
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001291 pool_get (em->vlan_pool, invalid_vlan_table); // first id = 0
Ed Warnickecb9cada2015-12-08 15:45:58 -07001292 // The first qinq pool will always be reserved for an invalid table
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001293 pool_get (em->qinq_pool, invalid_qinq_table); // first id = 0
Ed Warnickecb9cada2015-12-08 15:45:58 -07001294
1295 return 0;
1296}
1297
1298VLIB_INIT_FUNCTION (ethernet_input_init);
1299
1300void
1301ethernet_register_input_type (vlib_main_t * vm,
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001302 ethernet_type_t type, u32 node_index)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001303{
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001304 ethernet_main_t *em = &ethernet_main;
1305 ethernet_type_info_t *ti;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001306 u32 i;
1307
1308 {
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001309 clib_error_t *error = vlib_call_init_function (vm, ethernet_init);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001310 if (error)
1311 clib_error_report (error);
1312 }
1313
1314 ti = ethernet_get_type_info (em, type);
1315 ti->node_index = node_index;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001316 ti->next_index = vlib_node_add_next (vm,
1317 ethernet_input_node.index, node_index);
1318 i = vlib_node_add_next (vm, ethernet_input_type_node.index, node_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001319 ASSERT (i == ti->next_index);
1320
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001321 i = vlib_node_add_next (vm, ethernet_input_not_l2_node.index, node_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001322 ASSERT (i == ti->next_index);
1323
1324 // Add the L3 node for this ethertype to the next nodes structure
1325 next_by_ethertype_register (&em->l3_next, type, ti->next_index);
1326
1327 // Call the registration functions for other nodes that want a mapping
1328 l2bvi_register_input_type (vm, type, node_index);
1329}
1330
1331void
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001332ethernet_register_l2_input (vlib_main_t * vm, u32 node_index)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001333{
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001334 ethernet_main_t *em = &ethernet_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001335 u32 i;
1336
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001337 em->l2_next =
1338 vlib_node_add_next (vm, ethernet_input_node.index, node_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001339
Damjan Marion607de1a2016-08-16 22:53:54 +02001340 /*
Ed Warnickecb9cada2015-12-08 15:45:58 -07001341 * Even if we never use these arcs, we have to align the next indices...
1342 */
1343 i = vlib_node_add_next (vm, ethernet_input_type_node.index, node_index);
1344
1345 ASSERT (i == em->l2_next);
1346
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001347 i = vlib_node_add_next (vm, ethernet_input_not_l2_node.index, node_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001348 ASSERT (i == em->l2_next);
1349}
1350
1351// Register a next node for L3 redirect, and enable L3 redirect
1352void
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001353ethernet_register_l3_redirect (vlib_main_t * vm, u32 node_index)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001354{
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001355 ethernet_main_t *em = &ethernet_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001356 u32 i;
1357
1358 em->redirect_l3 = 1;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001359 em->redirect_l3_next = vlib_node_add_next (vm,
1360 ethernet_input_node.index,
1361 node_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001362 /*
1363 * Change the cached next nodes to the redirect node
1364 */
1365 em->l3_next.input_next_ip4 = em->redirect_l3_next;
1366 em->l3_next.input_next_ip6 = em->redirect_l3_next;
1367 em->l3_next.input_next_mpls = em->redirect_l3_next;
1368
1369 /*
1370 * Even if we never use these arcs, we have to align the next indices...
1371 */
1372 i = vlib_node_add_next (vm, ethernet_input_type_node.index, node_index);
1373
1374 ASSERT (i == em->redirect_l3_next);
jerryianff82ed62016-12-05 17:13:00 +08001375
1376 i = vlib_node_add_next (vm, ethernet_input_not_l2_node.index, node_index);
1377
1378 ASSERT (i == em->redirect_l3_next);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001379}
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001380
1381/*
1382 * fd.io coding-style-patch-verification: ON
1383 *
1384 * Local Variables:
1385 * eval: (c-set-style "gnu")
1386 * End:
1387 */