blob: ce5b2c5bea71498c61f353a314086edd3818e4b5 [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
Eyal Bari9a1ae1a2017-06-13 08:42:35 +0300288static_always_inline int
289ethernet_frame_is_any_tagged (u16 type0, u16 type1)
290{
291#if __SSE4_2__
292 const __m128i ethertype_mask = _mm_set_epi16 (ETHERNET_TYPE_VLAN,
293 ETHERNET_TYPE_DOT1AD,
294 ETHERNET_TYPE_VLAN_9100,
295 ETHERNET_TYPE_VLAN_9200,
296 /* duplicate for type1 */
297 ETHERNET_TYPE_VLAN,
298 ETHERNET_TYPE_DOT1AD,
299 ETHERNET_TYPE_VLAN_9100,
300 ETHERNET_TYPE_VLAN_9200);
301
302 __m128i r =
303 _mm_set_epi16 (type0, type0, type0, type0, type1, type1, type1, type1);
304 r = _mm_cmpeq_epi16 (ethertype_mask, r);
305 return !_mm_test_all_zeros (r, r);
306#else
307 return ethernet_frame_is_tagged (type0) || ethernet_frame_istagged (type1);
308#endif
309}
310
Ed Warnickecb9cada2015-12-08 15:45:58 -0700311static_always_inline uword
312ethernet_input_inline (vlib_main_t * vm,
313 vlib_node_runtime_t * node,
314 vlib_frame_t * from_frame,
315 ethernet_input_variant_t variant)
316{
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700317 vnet_main_t *vnm = vnet_get_main ();
318 ethernet_main_t *em = &ethernet_main;
319 vlib_node_runtime_t *error_node;
320 u32 n_left_from, next_index, *from, *to_next;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700321 u32 stats_sw_if_index, stats_n_packets, stats_n_bytes;
Damjan Marion586afd72017-04-05 19:18:20 +0200322 u32 thread_index = vlib_get_thread_index ();
Dave Barachcfba1e22016-11-16 10:23:50 -0500323 u32 cached_sw_if_index = ~0;
324 u32 cached_is_l2 = 0; /* shut up gcc */
John Lo1904c472017-03-10 17:15:22 -0500325 vnet_hw_interface_t *hi = NULL; /* used for main interface only */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700326
327 if (variant != ETHERNET_INPUT_VARIANT_ETHERNET)
328 error_node = vlib_node_get_runtime (vm, ethernet_input_node.index);
329 else
330 error_node = node;
331
332 from = vlib_frame_vector_args (from_frame);
333 n_left_from = from_frame->n_vectors;
334
335 if (node->flags & VLIB_NODE_FLAG_TRACE)
336 vlib_trace_frame_buffers_only (vm, node,
337 from,
338 n_left_from,
339 sizeof (from[0]),
340 sizeof (ethernet_input_trace_t));
341
342 next_index = node->cached_next_index;
343 stats_sw_if_index = node->runtime_data[0];
344 stats_n_packets = stats_n_bytes = 0;
345
346 while (n_left_from > 0)
347 {
348 u32 n_left_to_next;
349
350 vlib_get_next_frame (vm, node, next_index, to_next, n_left_to_next);
351
352 while (n_left_from >= 4 && n_left_to_next >= 2)
353 {
354 u32 bi0, bi1;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700355 vlib_buffer_t *b0, *b1;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700356 u8 next0, next1, error0, error1;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700357 u16 type0, orig_type0, type1, orig_type1;
358 u16 outer_id0, inner_id0, outer_id1, inner_id1;
359 u32 match_flags0, match_flags1;
360 u32 old_sw_if_index0, new_sw_if_index0, len0, old_sw_if_index1,
361 new_sw_if_index1, len1;
362 vnet_hw_interface_t *hi0, *hi1;
363 main_intf_t *main_intf0, *main_intf1;
364 vlan_intf_t *vlan_intf0, *vlan_intf1;
365 qinq_intf_t *qinq_intf0, *qinq_intf1;
366 u32 is_l20, is_l21;
Dave Barachcfba1e22016-11-16 10:23:50 -0500367 ethernet_header_t *e0, *e1;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700368
369 /* Prefetch next iteration. */
370 {
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700371 vlib_buffer_t *b2, *b3;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700372
373 b2 = vlib_get_buffer (vm, from[2]);
374 b3 = vlib_get_buffer (vm, from[3]);
375
376 vlib_prefetch_buffer_header (b2, STORE);
377 vlib_prefetch_buffer_header (b3, STORE);
378
379 CLIB_PREFETCH (b2->data, sizeof (ethernet_header_t), LOAD);
380 CLIB_PREFETCH (b3->data, sizeof (ethernet_header_t), LOAD);
381 }
382
383 bi0 = from[0];
384 bi1 = from[1];
385 to_next[0] = bi0;
386 to_next[1] = bi1;
387 from += 2;
388 to_next += 2;
389 n_left_to_next -= 2;
390 n_left_from -= 2;
391
392 b0 = vlib_get_buffer (vm, bi0);
393 b1 = vlib_get_buffer (vm, bi1);
394
395 error0 = error1 = ETHERNET_ERROR_NONE;
Dave Barachcfba1e22016-11-16 10:23:50 -0500396 e0 = vlib_buffer_get_current (b0);
397 type0 = clib_net_to_host_u16 (e0->type);
398 e1 = vlib_buffer_get_current (b1);
399 type1 = clib_net_to_host_u16 (e1->type);
400
John Locc532852016-12-14 15:42:45 -0500401 /* Speed-path for the untagged case */
Dave Barachcfba1e22016-11-16 10:23:50 -0500402 if (PREDICT_TRUE (variant == ETHERNET_INPUT_VARIANT_ETHERNET
Eyal Bari9a1ae1a2017-06-13 08:42:35 +0300403 && !ethernet_frame_is_any_tagged (type0, type1)))
Dave Barachcfba1e22016-11-16 10:23:50 -0500404 {
405 main_intf_t *intf0;
406 subint_config_t *subint0;
407 u32 sw_if_index0, sw_if_index1;
408
409 sw_if_index0 = vnet_buffer (b0)->sw_if_index[VLIB_RX];
410 sw_if_index1 = vnet_buffer (b1)->sw_if_index[VLIB_RX];
411 is_l20 = cached_is_l2;
412
413 /* This is probably wholly unnecessary */
414 if (PREDICT_FALSE (sw_if_index0 != sw_if_index1))
415 goto slowpath;
416
John Lo1904c472017-03-10 17:15:22 -0500417 /* Now sw_if_index0 == sw_if_index1 */
Dave Barachcfba1e22016-11-16 10:23:50 -0500418 if (PREDICT_FALSE (cached_sw_if_index != sw_if_index0))
419 {
420 cached_sw_if_index = sw_if_index0;
John Lo1904c472017-03-10 17:15:22 -0500421 hi = vnet_get_sup_hw_interface (vnm, sw_if_index0);
422 intf0 = vec_elt_at_index (em->main_intfs, hi->hw_if_index);
Dave Barachcfba1e22016-11-16 10:23:50 -0500423 subint0 = &intf0->untagged_subint;
424 cached_is_l2 = is_l20 = subint0->flags & SUBINT_CONFIG_L2;
425 }
John Lo7714b302016-12-20 16:59:02 -0500426
427 vnet_buffer (b0)->ethernet.start_of_ethernet_header =
428 b0->current_data;
429 vnet_buffer (b1)->ethernet.start_of_ethernet_header =
430 b1->current_data;
431
Dave Barachcfba1e22016-11-16 10:23:50 -0500432 if (PREDICT_TRUE (is_l20 != 0))
433 {
434 next0 = em->l2_next;
435 vnet_buffer (b0)->l2.l2_len = sizeof (ethernet_header_t);
Dave Barachcfba1e22016-11-16 10:23:50 -0500436 next1 = em->l2_next;
437 vnet_buffer (b1)->l2.l2_len = sizeof (ethernet_header_t);
Dave Barachcfba1e22016-11-16 10:23:50 -0500438 }
John Locc532852016-12-14 15:42:45 -0500439 else
440 {
John Lo1904c472017-03-10 17:15:22 -0500441 if (!ethernet_address_cast (e0->dst_address) &&
Hongjun Ni9e3e3612017-04-26 18:40:55 +0800442 (hi->hw_address != 0) &&
John Lo1904c472017-03-10 17:15:22 -0500443 !eth_mac_equal ((u8 *) e0, hi->hw_address))
444 error0 = ETHERNET_ERROR_L3_MAC_MISMATCH;
445 if (!ethernet_address_cast (e1->dst_address) &&
Hongjun Ni9e3e3612017-04-26 18:40:55 +0800446 (hi->hw_address != 0) &&
John Lo1904c472017-03-10 17:15:22 -0500447 !eth_mac_equal ((u8 *) e1, hi->hw_address))
448 error1 = ETHERNET_ERROR_L3_MAC_MISMATCH;
John Locc532852016-12-14 15:42:45 -0500449 determine_next_node (em, variant, 0, type0, b0,
450 &error0, &next0);
451 vlib_buffer_advance (b0, sizeof (ethernet_header_t));
452 determine_next_node (em, variant, 0, type1, b1,
453 &error1, &next1);
454 vlib_buffer_advance (b1, sizeof (ethernet_header_t));
455 }
456 goto ship_it01;
Dave Barachcfba1e22016-11-16 10:23:50 -0500457 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700458
John Locc532852016-12-14 15:42:45 -0500459 /* Slow-path for the tagged case */
460 slowpath:
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700461 parse_header (variant,
462 b0,
463 &type0,
464 &orig_type0, &outer_id0, &inner_id0, &match_flags0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700465
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700466 parse_header (variant,
467 b1,
468 &type1,
469 &orig_type1, &outer_id1, &inner_id1, &match_flags1);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700470
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700471 old_sw_if_index0 = vnet_buffer (b0)->sw_if_index[VLIB_RX];
472 old_sw_if_index1 = vnet_buffer (b1)->sw_if_index[VLIB_RX];
Ed Warnickecb9cada2015-12-08 15:45:58 -0700473
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700474 eth_vlan_table_lookups (em,
475 vnm,
476 old_sw_if_index0,
477 orig_type0,
478 outer_id0,
479 inner_id0,
480 &hi0,
481 &main_intf0, &vlan_intf0, &qinq_intf0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700482
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700483 eth_vlan_table_lookups (em,
484 vnm,
485 old_sw_if_index1,
486 orig_type1,
487 outer_id1,
488 inner_id1,
489 &hi1,
490 &main_intf1, &vlan_intf1, &qinq_intf1);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700491
492 identify_subint (hi0,
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700493 b0,
494 match_flags0,
495 main_intf0,
496 vlan_intf0,
497 qinq_intf0, &new_sw_if_index0, &error0, &is_l20);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700498
499 identify_subint (hi1,
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700500 b1,
501 match_flags1,
502 main_intf1,
503 vlan_intf1,
504 qinq_intf1, &new_sw_if_index1, &error1, &is_l21);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700505
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700506 // Save RX sw_if_index for later nodes
507 vnet_buffer (b0)->sw_if_index[VLIB_RX] =
508 error0 !=
509 ETHERNET_ERROR_NONE ? old_sw_if_index0 : new_sw_if_index0;
510 vnet_buffer (b1)->sw_if_index[VLIB_RX] =
511 error1 !=
512 ETHERNET_ERROR_NONE ? old_sw_if_index1 : new_sw_if_index1;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700513
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700514 // Check if there is a stat to take (valid and non-main sw_if_index for pkt 0 or pkt 1)
515 if (((new_sw_if_index0 != ~0)
516 && (new_sw_if_index0 != old_sw_if_index0))
517 || ((new_sw_if_index1 != ~0)
518 && (new_sw_if_index1 != old_sw_if_index1)))
519 {
Ed Warnickecb9cada2015-12-08 15:45:58 -0700520
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700521 len0 = vlib_buffer_length_in_chain (vm, b0) + b0->current_data
522 - vnet_buffer (b0)->ethernet.start_of_ethernet_header;
523 len1 = vlib_buffer_length_in_chain (vm, b1) + b1->current_data
524 - vnet_buffer (b1)->ethernet.start_of_ethernet_header;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700525
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700526 stats_n_packets += 2;
527 stats_n_bytes += len0 + len1;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700528
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700529 if (PREDICT_FALSE
530 (!(new_sw_if_index0 == stats_sw_if_index
531 && new_sw_if_index1 == stats_sw_if_index)))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700532 {
533 stats_n_packets -= 2;
534 stats_n_bytes -= len0 + len1;
535
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700536 if (new_sw_if_index0 != old_sw_if_index0
537 && new_sw_if_index0 != ~0)
538 vlib_increment_combined_counter (vnm->
539 interface_main.combined_sw_if_counters
540 +
541 VNET_INTERFACE_COUNTER_RX,
Damjan Marion586afd72017-04-05 19:18:20 +0200542 thread_index,
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700543 new_sw_if_index0, 1,
544 len0);
545 if (new_sw_if_index1 != old_sw_if_index1
546 && new_sw_if_index1 != ~0)
547 vlib_increment_combined_counter (vnm->
548 interface_main.combined_sw_if_counters
549 +
550 VNET_INTERFACE_COUNTER_RX,
Damjan Marion586afd72017-04-05 19:18:20 +0200551 thread_index,
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700552 new_sw_if_index1, 1,
553 len1);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700554
555 if (new_sw_if_index0 == new_sw_if_index1)
556 {
557 if (stats_n_packets > 0)
558 {
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700559 vlib_increment_combined_counter
560 (vnm->interface_main.combined_sw_if_counters
561 + VNET_INTERFACE_COUNTER_RX,
Damjan Marion586afd72017-04-05 19:18:20 +0200562 thread_index,
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700563 stats_sw_if_index,
564 stats_n_packets, stats_n_bytes);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700565 stats_n_packets = stats_n_bytes = 0;
566 }
567 stats_sw_if_index = new_sw_if_index0;
568 }
569 }
570 }
571
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700572 if (variant == ETHERNET_INPUT_VARIANT_NOT_L2)
573 is_l20 = is_l21 = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700574
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700575 determine_next_node (em, variant, is_l20, type0, b0, &error0,
576 &next0);
577 determine_next_node (em, variant, is_l21, type1, b1, &error1,
578 &next1);
579
John Lo1904c472017-03-10 17:15:22 -0500580 ship_it01:
Ed Warnickecb9cada2015-12-08 15:45:58 -0700581 b0->error = error_node->errors[error0];
582 b1->error = error_node->errors[error1];
583
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700584 // verify speculative enqueue
585 vlib_validate_buffer_enqueue_x2 (vm, node, next_index, to_next,
586 n_left_to_next, bi0, bi1, next0,
587 next1);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700588 }
589
590 while (n_left_from > 0 && n_left_to_next > 0)
591 {
592 u32 bi0;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700593 vlib_buffer_t *b0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700594 u8 error0, next0;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700595 u16 type0, orig_type0;
596 u16 outer_id0, inner_id0;
597 u32 match_flags0;
598 u32 old_sw_if_index0, new_sw_if_index0, len0;
599 vnet_hw_interface_t *hi0;
600 main_intf_t *main_intf0;
601 vlan_intf_t *vlan_intf0;
602 qinq_intf_t *qinq_intf0;
Dave Barachcfba1e22016-11-16 10:23:50 -0500603 ethernet_header_t *e0;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700604 u32 is_l20;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700605
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700606 // Prefetch next iteration
607 if (n_left_from > 1)
608 {
609 vlib_buffer_t *p2;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700610
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700611 p2 = vlib_get_buffer (vm, from[1]);
612 vlib_prefetch_buffer_header (p2, STORE);
613 CLIB_PREFETCH (p2->data, CLIB_CACHE_LINE_BYTES, LOAD);
614 }
615
616 bi0 = from[0];
Ed Warnickecb9cada2015-12-08 15:45:58 -0700617 to_next[0] = bi0;
618 from += 1;
619 to_next += 1;
620 n_left_from -= 1;
621 n_left_to_next -= 1;
622
623 b0 = vlib_get_buffer (vm, bi0);
624
625 error0 = ETHERNET_ERROR_NONE;
Dave Barachcfba1e22016-11-16 10:23:50 -0500626 e0 = vlib_buffer_get_current (b0);
627 type0 = clib_net_to_host_u16 (e0->type);
628
John Locc532852016-12-14 15:42:45 -0500629 /* Speed-path for the untagged case */
Dave Barachcfba1e22016-11-16 10:23:50 -0500630 if (PREDICT_TRUE (variant == ETHERNET_INPUT_VARIANT_ETHERNET
631 && !ethernet_frame_is_tagged (type0)))
632 {
633 main_intf_t *intf0;
634 subint_config_t *subint0;
635 u32 sw_if_index0;
636
637 sw_if_index0 = vnet_buffer (b0)->sw_if_index[VLIB_RX];
638 is_l20 = cached_is_l2;
639
640 if (PREDICT_FALSE (cached_sw_if_index != sw_if_index0))
641 {
642 cached_sw_if_index = sw_if_index0;
John Lo1904c472017-03-10 17:15:22 -0500643 hi = vnet_get_sup_hw_interface (vnm, sw_if_index0);
644 intf0 = vec_elt_at_index (em->main_intfs, hi->hw_if_index);
Dave Barachcfba1e22016-11-16 10:23:50 -0500645 subint0 = &intf0->untagged_subint;
646 cached_is_l2 = is_l20 = subint0->flags & SUBINT_CONFIG_L2;
647 }
John Lo7714b302016-12-20 16:59:02 -0500648
649 vnet_buffer (b0)->ethernet.start_of_ethernet_header =
650 b0->current_data;
651
Dave Barachcfba1e22016-11-16 10:23:50 -0500652 if (PREDICT_TRUE (is_l20 != 0))
653 {
654 next0 = em->l2_next;
655 vnet_buffer (b0)->l2.l2_len = sizeof (ethernet_header_t);
Dave Barachcfba1e22016-11-16 10:23:50 -0500656 }
John Locc532852016-12-14 15:42:45 -0500657 else
658 {
John Lo1904c472017-03-10 17:15:22 -0500659 if (!ethernet_address_cast (e0->dst_address) &&
Hongjun Ni9e3e3612017-04-26 18:40:55 +0800660 (hi->hw_address != 0) &&
John Lo1904c472017-03-10 17:15:22 -0500661 !eth_mac_equal ((u8 *) e0, hi->hw_address))
662 error0 = ETHERNET_ERROR_L3_MAC_MISMATCH;
John Locc532852016-12-14 15:42:45 -0500663 determine_next_node (em, variant, 0, type0, b0,
664 &error0, &next0);
665 vlib_buffer_advance (b0, sizeof (ethernet_header_t));
666 }
667 goto ship_it0;
Dave Barachcfba1e22016-11-16 10:23:50 -0500668 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700669
John Locc532852016-12-14 15:42:45 -0500670 /* Slow-path for the tagged case */
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700671 parse_header (variant,
672 b0,
673 &type0,
674 &orig_type0, &outer_id0, &inner_id0, &match_flags0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700675
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700676 old_sw_if_index0 = vnet_buffer (b0)->sw_if_index[VLIB_RX];
Ed Warnickecb9cada2015-12-08 15:45:58 -0700677
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700678 eth_vlan_table_lookups (em,
679 vnm,
680 old_sw_if_index0,
681 orig_type0,
682 outer_id0,
683 inner_id0,
684 &hi0,
685 &main_intf0, &vlan_intf0, &qinq_intf0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700686
687 identify_subint (hi0,
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700688 b0,
689 match_flags0,
690 main_intf0,
691 vlan_intf0,
692 qinq_intf0, &new_sw_if_index0, &error0, &is_l20);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700693
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700694 // Save RX sw_if_index for later nodes
695 vnet_buffer (b0)->sw_if_index[VLIB_RX] =
696 error0 !=
697 ETHERNET_ERROR_NONE ? old_sw_if_index0 : new_sw_if_index0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700698
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700699 // Increment subinterface stats
700 // Note that interface-level counters have already been incremented
701 // prior to calling this function. Thus only subinterface counters
702 // are incremented here.
703 //
Damjan Marion607de1a2016-08-16 22:53:54 +0200704 // Interface level counters include packets received on the main
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700705 // interface and all subinterfaces. Subinterface level counters
706 // include only those packets received on that subinterface
Ed Warnickecb9cada2015-12-08 15:45:58 -0700707 // Increment stats if the subint is valid and it is not the main intf
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700708 if ((new_sw_if_index0 != ~0)
709 && (new_sw_if_index0 != old_sw_if_index0))
710 {
Ed Warnickecb9cada2015-12-08 15:45:58 -0700711
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700712 len0 = vlib_buffer_length_in_chain (vm, b0) + b0->current_data
713 - vnet_buffer (b0)->ethernet.start_of_ethernet_header;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700714
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700715 stats_n_packets += 1;
716 stats_n_bytes += len0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700717
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700718 // Batch stat increments from the same subinterface so counters
Damjan Marion607de1a2016-08-16 22:53:54 +0200719 // don't need to be incremented for every packet.
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700720 if (PREDICT_FALSE (new_sw_if_index0 != stats_sw_if_index))
721 {
722 stats_n_packets -= 1;
723 stats_n_bytes -= len0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700724
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700725 if (new_sw_if_index0 != ~0)
726 vlib_increment_combined_counter
727 (vnm->interface_main.combined_sw_if_counters
728 + VNET_INTERFACE_COUNTER_RX,
Damjan Marion586afd72017-04-05 19:18:20 +0200729 thread_index, new_sw_if_index0, 1, len0);
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700730 if (stats_n_packets > 0)
731 {
732 vlib_increment_combined_counter
733 (vnm->interface_main.combined_sw_if_counters
734 + VNET_INTERFACE_COUNTER_RX,
Damjan Marion586afd72017-04-05 19:18:20 +0200735 thread_index,
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700736 stats_sw_if_index, stats_n_packets, stats_n_bytes);
737 stats_n_packets = stats_n_bytes = 0;
738 }
739 stats_sw_if_index = new_sw_if_index0;
740 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700741 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700742
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700743 if (variant == ETHERNET_INPUT_VARIANT_NOT_L2)
744 is_l20 = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700745
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700746 determine_next_node (em, variant, is_l20, type0, b0, &error0,
747 &next0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700748
John Lo1904c472017-03-10 17:15:22 -0500749 ship_it0:
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700750 b0->error = error_node->errors[error0];
751
752 // verify speculative enqueue
Ed Warnickecb9cada2015-12-08 15:45:58 -0700753 vlib_validate_buffer_enqueue_x1 (vm, node, next_index,
754 to_next, n_left_to_next,
755 bi0, next0);
756 }
757
758 vlib_put_next_frame (vm, node, next_index, n_left_to_next);
759 }
760
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700761 // Increment any remaining batched stats
762 if (stats_n_packets > 0)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700763 {
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700764 vlib_increment_combined_counter
765 (vnm->interface_main.combined_sw_if_counters
766 + VNET_INTERFACE_COUNTER_RX,
Damjan Marion586afd72017-04-05 19:18:20 +0200767 thread_index, stats_sw_if_index, stats_n_packets, stats_n_bytes);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700768 node->runtime_data[0] = stats_sw_if_index;
769 }
770
771 return from_frame->n_vectors;
772}
773
774static uword
775ethernet_input (vlib_main_t * vm,
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700776 vlib_node_runtime_t * node, vlib_frame_t * from_frame)
777{
778 return ethernet_input_inline (vm, node, from_frame,
779 ETHERNET_INPUT_VARIANT_ETHERNET);
780}
Ed Warnickecb9cada2015-12-08 15:45:58 -0700781
782static uword
783ethernet_input_type (vlib_main_t * vm,
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700784 vlib_node_runtime_t * node, vlib_frame_t * from_frame)
785{
786 return ethernet_input_inline (vm, node, from_frame,
787 ETHERNET_INPUT_VARIANT_ETHERNET_TYPE);
788}
Ed Warnickecb9cada2015-12-08 15:45:58 -0700789
790static uword
791ethernet_input_not_l2 (vlib_main_t * vm,
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700792 vlib_node_runtime_t * node, vlib_frame_t * from_frame)
793{
794 return ethernet_input_inline (vm, node, from_frame,
795 ETHERNET_INPUT_VARIANT_NOT_L2);
796}
Ed Warnickecb9cada2015-12-08 15:45:58 -0700797
798
799// Return the subinterface config struct for the given sw_if_index
800// Also return via parameter the appropriate match flags for the
801// configured number of tags.
802// On error (unsupported or not ethernet) return 0.
803static subint_config_t *
804ethernet_sw_interface_get_config (vnet_main_t * vnm,
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700805 u32 sw_if_index,
806 u32 * flags, u32 * unsupported)
807{
808 ethernet_main_t *em = &ethernet_main;
809 vnet_hw_interface_t *hi;
810 vnet_sw_interface_t *si;
811 main_intf_t *main_intf;
812 vlan_table_t *vlan_table;
813 qinq_table_t *qinq_table;
814 subint_config_t *subint = 0;
815
Ed Warnickecb9cada2015-12-08 15:45:58 -0700816 hi = vnet_get_sup_hw_interface (vnm, sw_if_index);
817
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700818 if (!hi || (hi->hw_class_index != ethernet_hw_interface_class.index))
819 {
820 *unsupported = 0;
821 goto done; // non-ethernet interface
822 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700823
824 // ensure there's an entry for the main intf (shouldn't really be necessary)
825 vec_validate (em->main_intfs, hi->hw_if_index);
826 main_intf = vec_elt_at_index (em->main_intfs, hi->hw_if_index);
827
828 // Locate the subint for the given ethernet config
829 si = vnet_get_sw_interface (vnm, sw_if_index);
830
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700831 if (si->sub.eth.flags.default_sub)
832 {
833 subint = &main_intf->default_subint;
834 *flags = SUBINT_CONFIG_MATCH_0_TAG |
835 SUBINT_CONFIG_MATCH_1_TAG |
836 SUBINT_CONFIG_MATCH_2_TAG | SUBINT_CONFIG_MATCH_3_TAG;
837 }
838 else if ((si->sub.eth.flags.no_tags) || (si->sub.eth.raw_flags == 0))
839 {
840 // if no flags are set then this is a main interface
841 // so treat as untagged
842 subint = &main_intf->untagged_subint;
843 *flags = SUBINT_CONFIG_MATCH_0_TAG;
844 }
845 else
846 {
847 // one or two tags
848 // first get the vlan table
849 if (si->sub.eth.flags.dot1ad)
850 {
851 if (main_intf->dot1ad_vlans == 0)
852 {
853 // Allocate a vlan table from the pool
854 pool_get (em->vlan_pool, vlan_table);
855 main_intf->dot1ad_vlans = vlan_table - em->vlan_pool;
856 }
857 else
858 {
859 // Get ptr to existing vlan table
860 vlan_table =
861 vec_elt_at_index (em->vlan_pool, main_intf->dot1ad_vlans);
862 }
863 }
864 else
865 { // dot1q
866 if (main_intf->dot1q_vlans == 0)
867 {
868 // Allocate a vlan table from the pool
869 pool_get (em->vlan_pool, vlan_table);
870 main_intf->dot1q_vlans = vlan_table - em->vlan_pool;
871 }
872 else
873 {
874 // Get ptr to existing vlan table
875 vlan_table =
876 vec_elt_at_index (em->vlan_pool, main_intf->dot1q_vlans);
877 }
878 }
879
880 if (si->sub.eth.flags.one_tag)
881 {
882 *flags = si->sub.eth.flags.exact_match ?
883 SUBINT_CONFIG_MATCH_1_TAG :
884 (SUBINT_CONFIG_MATCH_1_TAG |
885 SUBINT_CONFIG_MATCH_2_TAG | SUBINT_CONFIG_MATCH_3_TAG);
886
887 if (si->sub.eth.flags.outer_vlan_id_any)
888 {
889 // not implemented yet
890 *unsupported = 1;
891 goto done;
892 }
893 else
894 {
895 // a single vlan, a common case
896 subint =
897 &vlan_table->vlans[si->sub.eth.
898 outer_vlan_id].single_tag_subint;
899 }
900
901 }
902 else
903 {
904 // Two tags
905 *flags = si->sub.eth.flags.exact_match ?
906 SUBINT_CONFIG_MATCH_2_TAG :
907 (SUBINT_CONFIG_MATCH_2_TAG | SUBINT_CONFIG_MATCH_3_TAG);
908
909 if (si->sub.eth.flags.outer_vlan_id_any
910 && si->sub.eth.flags.inner_vlan_id_any)
911 {
912 // not implemented yet
913 *unsupported = 1;
914 goto done;
915 }
916
917 if (si->sub.eth.flags.inner_vlan_id_any)
918 {
919 // a specific outer and "any" inner
920 // don't need a qinq table for this
921 subint =
922 &vlan_table->vlans[si->sub.eth.
923 outer_vlan_id].inner_any_subint;
924 if (si->sub.eth.flags.exact_match)
925 {
926 *flags = SUBINT_CONFIG_MATCH_2_TAG;
927 }
928 else
929 {
930 *flags = SUBINT_CONFIG_MATCH_2_TAG |
931 SUBINT_CONFIG_MATCH_3_TAG;
932 }
933 }
934 else
935 {
936 // a specific outer + specifc innner vlan id, a common case
937
938 // get the qinq table
939 if (vlan_table->vlans[si->sub.eth.outer_vlan_id].qinqs == 0)
940 {
941 // Allocate a qinq table from the pool
942 pool_get (em->qinq_pool, qinq_table);
943 vlan_table->vlans[si->sub.eth.outer_vlan_id].qinqs =
944 qinq_table - em->qinq_pool;
945 }
946 else
947 {
948 // Get ptr to existing qinq table
949 qinq_table =
950 vec_elt_at_index (em->qinq_pool,
951 vlan_table->vlans[si->sub.
952 eth.outer_vlan_id].
953 qinqs);
954 }
955 subint = &qinq_table->vlans[si->sub.eth.inner_vlan_id].subint;
956 }
957 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700958 }
959
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700960done:
Ed Warnickecb9cada2015-12-08 15:45:58 -0700961 return subint;
962}
963
964clib_error_t *
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700965ethernet_sw_interface_up_down (vnet_main_t * vnm, u32 sw_if_index, u32 flags)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700966{
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700967 subint_config_t *subint;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700968 u32 dummy_flags;
969 u32 dummy_unsup;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700970 clib_error_t *error = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700971
972 // Find the config for this subinterface
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700973 subint =
974 ethernet_sw_interface_get_config (vnm, sw_if_index, &dummy_flags,
975 &dummy_unsup);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700976
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700977 if (subint == 0)
978 {
979 // not implemented yet or not ethernet
980 goto done;
981 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700982
983 subint->sw_if_index =
984 ((flags & VNET_SW_INTERFACE_FLAG_ADMIN_UP) ? sw_if_index : ~0);
985
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700986done:
Ed Warnickecb9cada2015-12-08 15:45:58 -0700987 return error;
988}
989
990VNET_SW_INTERFACE_ADMIN_UP_DOWN_FUNCTION (ethernet_sw_interface_up_down);
991
992
993// Set the L2/L3 mode for the subinterface
994void
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700995ethernet_sw_interface_set_l2_mode (vnet_main_t * vnm, u32 sw_if_index, u32 l2)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700996{
997 subint_config_t *subint;
998 u32 dummy_flags;
999 u32 dummy_unsup;
1000 int is_port;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001001 vnet_sw_interface_t *sw = vnet_get_sw_interface (vnm, sw_if_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001002
1003 is_port = !(sw->type == VNET_SW_INTERFACE_TYPE_SUB);
1004
1005 // Find the config for this subinterface
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001006 subint =
1007 ethernet_sw_interface_get_config (vnm, sw_if_index, &dummy_flags,
1008 &dummy_unsup);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001009
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001010 if (subint == 0)
1011 {
1012 // unimplemented or not ethernet
1013 goto done;
1014 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001015
1016 // Double check that the config we found is for our interface (or the interface is down)
1017 ASSERT ((subint->sw_if_index == sw_if_index) | (subint->sw_if_index == ~0));
1018
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001019 if (l2)
1020 {
1021 subint->flags |= SUBINT_CONFIG_L2;
1022 if (is_port)
1023 subint->flags |=
1024 SUBINT_CONFIG_MATCH_0_TAG | SUBINT_CONFIG_MATCH_1_TAG
1025 | SUBINT_CONFIG_MATCH_2_TAG | SUBINT_CONFIG_MATCH_3_TAG;
1026 }
1027 else
1028 {
1029 subint->flags &= ~SUBINT_CONFIG_L2;
1030 if (is_port)
1031 subint->flags &=
1032 ~(SUBINT_CONFIG_MATCH_1_TAG | SUBINT_CONFIG_MATCH_2_TAG
1033 | SUBINT_CONFIG_MATCH_3_TAG);
1034 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001035
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001036done:
Ed Warnickecb9cada2015-12-08 15:45:58 -07001037 return;
1038}
1039
Christian Dechamplain (cdechamp)07aecbb2016-04-05 10:40:38 -04001040/*
1041 * Set the L2/L3 mode for the subinterface regardless of port
1042 */
1043void
1044ethernet_sw_interface_set_l2_mode_noport (vnet_main_t * vnm,
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001045 u32 sw_if_index, u32 l2)
Christian Dechamplain (cdechamp)07aecbb2016-04-05 10:40:38 -04001046{
1047 subint_config_t *subint;
1048 u32 dummy_flags;
1049 u32 dummy_unsup;
1050
1051 /* Find the config for this subinterface */
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001052 subint =
1053 ethernet_sw_interface_get_config (vnm, sw_if_index, &dummy_flags,
1054 &dummy_unsup);
Christian Dechamplain (cdechamp)07aecbb2016-04-05 10:40:38 -04001055
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001056 if (subint == 0)
1057 {
1058 /* unimplemented or not ethernet */
1059 goto done;
1060 }
Christian Dechamplain (cdechamp)07aecbb2016-04-05 10:40:38 -04001061
1062 /*
1063 * Double check that the config we found is for our interface (or the
1064 * interface is down)
1065 */
1066 ASSERT ((subint->sw_if_index == sw_if_index) | (subint->sw_if_index == ~0));
1067
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001068 if (l2)
1069 {
1070 subint->flags |= SUBINT_CONFIG_L2;
1071 }
1072 else
1073 {
1074 subint->flags &= ~SUBINT_CONFIG_L2;
1075 }
Christian Dechamplain (cdechamp)07aecbb2016-04-05 10:40:38 -04001076
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001077done:
Christian Dechamplain (cdechamp)07aecbb2016-04-05 10:40:38 -04001078 return;
1079}
Ed Warnickecb9cada2015-12-08 15:45:58 -07001080
1081static clib_error_t *
1082ethernet_sw_interface_add_del (vnet_main_t * vnm,
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001083 u32 sw_if_index, u32 is_create)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001084{
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001085 clib_error_t *error = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001086 subint_config_t *subint;
1087 u32 match_flags;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001088 u32 unsupported = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001089
1090 // Find the config for this subinterface
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001091 subint =
1092 ethernet_sw_interface_get_config (vnm, sw_if_index, &match_flags,
1093 &unsupported);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001094
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001095 if (subint == 0)
1096 {
1097 // not implemented yet or not ethernet
1098 if (unsupported)
1099 {
Damjan Marion607de1a2016-08-16 22:53:54 +02001100 // this is the NYI case
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001101 error = clib_error_return (0, "not implemented yet");
1102 }
1103 goto done;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001104 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001105
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001106 if (!is_create)
1107 {
1108 subint->flags = 0;
1109 return error;
1110 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001111
1112 // Initialize the subint
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001113 if (subint->flags & SUBINT_CONFIG_VALID)
1114 {
1115 // Error vlan already in use
1116 error = clib_error_return (0, "vlan is already in use");
1117 }
1118 else
1119 {
1120 // Note that config is L3 by defaulty
1121 subint->flags = SUBINT_CONFIG_VALID | match_flags;
1122 subint->sw_if_index = ~0; // because interfaces are initially down
1123 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001124
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001125done:
Ed Warnickecb9cada2015-12-08 15:45:58 -07001126 return error;
1127}
1128
1129VNET_SW_INTERFACE_ADD_DEL_FUNCTION (ethernet_sw_interface_add_del);
1130
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001131static char *ethernet_error_strings[] = {
Ed Warnickecb9cada2015-12-08 15:45:58 -07001132#define ethernet_error(n,c,s) s,
1133#include "error.def"
1134#undef ethernet_error
1135};
1136
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001137/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07001138VLIB_REGISTER_NODE (ethernet_input_node) = {
1139 .function = ethernet_input,
1140 .name = "ethernet-input",
1141 /* Takes a vector of packets. */
1142 .vector_size = sizeof (u32),
Ed Warnickecb9cada2015-12-08 15:45:58 -07001143 .n_errors = ETHERNET_N_ERROR,
1144 .error_strings = ethernet_error_strings,
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 },
Ed Warnickecb9cada2015-12-08 15:45:58 -07001151 .format_buffer = format_ethernet_header_with_length,
1152 .format_trace = format_ethernet_input_trace,
1153 .unformat_buffer = unformat_ethernet_header,
1154};
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001155/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07001156
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001157/* *INDENT-OFF* */
Damjan Marion1c80e832016-05-11 23:07:18 +02001158VLIB_NODE_FUNCTION_MULTIARCH (ethernet_input_node, ethernet_input)
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001159/* *INDENT-ON* */
Damjan Marion1c80e832016-05-11 23:07:18 +02001160
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001161/* *INDENT-OFF* */
1162VLIB_REGISTER_NODE (ethernet_input_type_node, static) = {
Ed Warnickecb9cada2015-12-08 15:45:58 -07001163 .function = ethernet_input_type,
1164 .name = "ethernet-input-type",
1165 /* Takes a vector of packets. */
1166 .vector_size = sizeof (u32),
Ed Warnickecb9cada2015-12-08 15:45:58 -07001167 .n_next_nodes = ETHERNET_INPUT_N_NEXT,
1168 .next_nodes = {
1169#define _(s,n) [ETHERNET_INPUT_NEXT_##s] = n,
1170 foreach_ethernet_input_next
1171#undef _
1172 },
1173};
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001174/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07001175
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001176/* *INDENT-OFF* */
Damjan Marion1c80e832016-05-11 23:07:18 +02001177VLIB_NODE_FUNCTION_MULTIARCH (ethernet_input_type_node, ethernet_input_type)
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001178/* *INDENT-ON* */
Damjan Marion1c80e832016-05-11 23:07:18 +02001179
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001180/* *INDENT-OFF* */
1181VLIB_REGISTER_NODE (ethernet_input_not_l2_node, static) = {
Ed Warnickecb9cada2015-12-08 15:45:58 -07001182 .function = ethernet_input_not_l2,
1183 .name = "ethernet-input-not-l2",
1184 /* Takes a vector of packets. */
1185 .vector_size = sizeof (u32),
Ed Warnickecb9cada2015-12-08 15:45:58 -07001186 .n_next_nodes = ETHERNET_INPUT_N_NEXT,
1187 .next_nodes = {
1188#define _(s,n) [ETHERNET_INPUT_NEXT_##s] = n,
1189 foreach_ethernet_input_next
1190#undef _
1191 },
1192};
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001193/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07001194
Damjan Marion1c80e832016-05-11 23:07:18 +02001195
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001196/* *INDENT-OFF* */
1197VLIB_NODE_FUNCTION_MULTIARCH (ethernet_input_not_l2_node,
1198 ethernet_input_not_l2)
1199/* *INDENT-ON* */
1200
1201
1202void
1203ethernet_set_rx_redirect (vnet_main_t * vnm,
1204 vnet_hw_interface_t * hi, u32 enable)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001205{
1206 // Insure all packets go to ethernet-input (i.e. untagged ipv4 packets
1207 // don't go directly to ip4-input)
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001208 vnet_hw_interface_rx_redirect_to_node
1209 (vnm, hi->hw_if_index, enable ? ethernet_input_node.index : ~0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001210}
1211
1212
1213/*
1214 * Initialization and registration for the next_by_ethernet structure
1215 */
1216
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001217clib_error_t *
1218next_by_ethertype_init (next_by_ethertype_t * l3_next)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001219{
1220 l3_next->input_next_by_type = sparse_vec_new
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001221 ( /* elt bytes */ sizeof (l3_next->input_next_by_type[0]),
Ed Warnickecb9cada2015-12-08 15:45:58 -07001222 /* bits in index */ BITS (((ethernet_header_t *) 0)->type));
1223
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001224 vec_validate (l3_next->sparse_index_by_input_next_index,
1225 ETHERNET_INPUT_NEXT_DROP);
1226 vec_validate (l3_next->sparse_index_by_input_next_index,
1227 ETHERNET_INPUT_NEXT_PUNT);
1228 l3_next->sparse_index_by_input_next_index[ETHERNET_INPUT_NEXT_DROP] =
1229 SPARSE_VEC_INVALID_INDEX;
1230 l3_next->sparse_index_by_input_next_index[ETHERNET_INPUT_NEXT_PUNT] =
1231 SPARSE_VEC_INVALID_INDEX;
1232
Damjan Marion607de1a2016-08-16 22:53:54 +02001233 /*
1234 * Make sure we don't wipe out an ethernet registration by mistake
Dave Barach1f49ed62016-02-24 11:29:06 -05001235 * Can happen if init function ordering constraints are missing.
1236 */
1237 if (CLIB_DEBUG > 0)
1238 {
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001239 ethernet_main_t *em = &ethernet_main;
1240 ASSERT (em->next_by_ethertype_register_called == 0);
Dave Barach1f49ed62016-02-24 11:29:06 -05001241 }
1242
Ed Warnickecb9cada2015-12-08 15:45:58 -07001243 return 0;
1244}
1245
1246// Add an ethertype -> next index mapping to the structure
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001247clib_error_t *
1248next_by_ethertype_register (next_by_ethertype_t * l3_next,
1249 u32 ethertype, u32 next_index)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001250{
1251 u32 i;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001252 u16 *n;
1253 ethernet_main_t *em = &ethernet_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001254
Dave Barach1f49ed62016-02-24 11:29:06 -05001255 if (CLIB_DEBUG > 0)
1256 {
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001257 ethernet_main_t *em = &ethernet_main;
Dave Barach1f49ed62016-02-24 11:29:06 -05001258 em->next_by_ethertype_register_called = 1;
1259 }
1260
Ed Warnickecb9cada2015-12-08 15:45:58 -07001261 /* Setup ethernet type -> next index sparse vector mapping. */
1262 n = sparse_vec_validate (l3_next->input_next_by_type, ethertype);
1263 n[0] = next_index;
1264
1265 /* Rebuild next index -> sparse index inverse mapping when sparse vector
1266 is updated. */
1267 vec_validate (l3_next->sparse_index_by_input_next_index, next_index);
1268 for (i = 1; i < vec_len (l3_next->input_next_by_type); i++)
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001269 l3_next->
1270 sparse_index_by_input_next_index[l3_next->input_next_by_type[i]] = i;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001271
1272 // do not allow the cached next index's to be updated if L3
1273 // redirect is enabled, as it will have overwritten them
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001274 if (!em->redirect_l3)
1275 {
1276 // Cache common ethertypes directly
1277 if (ethertype == ETHERNET_TYPE_IP4)
1278 {
1279 l3_next->input_next_ip4 = next_index;
1280 }
1281 else if (ethertype == ETHERNET_TYPE_IP6)
1282 {
1283 l3_next->input_next_ip6 = next_index;
1284 }
Neale Ranns0f26c5a2017-03-01 15:12:11 -08001285 else if (ethertype == ETHERNET_TYPE_MPLS)
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001286 {
1287 l3_next->input_next_mpls = next_index;
1288 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001289 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001290 return 0;
1291}
1292
1293
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001294static clib_error_t *
1295ethernet_input_init (vlib_main_t * vm)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001296{
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001297 ethernet_main_t *em = &ethernet_main;
1298 __attribute__ ((unused)) vlan_table_t *invalid_vlan_table;
1299 __attribute__ ((unused)) qinq_table_t *invalid_qinq_table;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001300
1301 ethernet_setup_node (vm, ethernet_input_node.index);
1302 ethernet_setup_node (vm, ethernet_input_type_node.index);
1303 ethernet_setup_node (vm, ethernet_input_not_l2_node.index);
1304
1305 next_by_ethertype_init (&em->l3_next);
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001306
Ed Warnickecb9cada2015-12-08 15:45:58 -07001307 // Initialize pools and vector for vlan parsing
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001308 vec_validate (em->main_intfs, 10); // 10 main interfaces
1309 pool_alloc (em->vlan_pool, 10);
1310 pool_alloc (em->qinq_pool, 1);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001311
1312 // The first vlan pool will always be reserved for an invalid table
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001313 pool_get (em->vlan_pool, invalid_vlan_table); // first id = 0
Ed Warnickecb9cada2015-12-08 15:45:58 -07001314 // The first qinq pool will always be reserved for an invalid table
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001315 pool_get (em->qinq_pool, invalid_qinq_table); // first id = 0
Ed Warnickecb9cada2015-12-08 15:45:58 -07001316
1317 return 0;
1318}
1319
1320VLIB_INIT_FUNCTION (ethernet_input_init);
1321
1322void
1323ethernet_register_input_type (vlib_main_t * vm,
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001324 ethernet_type_t type, 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;
1327 ethernet_type_info_t *ti;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001328 u32 i;
1329
1330 {
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001331 clib_error_t *error = vlib_call_init_function (vm, ethernet_init);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001332 if (error)
1333 clib_error_report (error);
1334 }
1335
1336 ti = ethernet_get_type_info (em, type);
1337 ti->node_index = node_index;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001338 ti->next_index = vlib_node_add_next (vm,
1339 ethernet_input_node.index, node_index);
1340 i = vlib_node_add_next (vm, ethernet_input_type_node.index, node_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001341 ASSERT (i == ti->next_index);
1342
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001343 i = vlib_node_add_next (vm, ethernet_input_not_l2_node.index, node_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001344 ASSERT (i == ti->next_index);
1345
1346 // Add the L3 node for this ethertype to the next nodes structure
1347 next_by_ethertype_register (&em->l3_next, type, ti->next_index);
1348
1349 // Call the registration functions for other nodes that want a mapping
1350 l2bvi_register_input_type (vm, type, node_index);
1351}
1352
1353void
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001354ethernet_register_l2_input (vlib_main_t * vm, u32 node_index)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001355{
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001356 ethernet_main_t *em = &ethernet_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001357 u32 i;
1358
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001359 em->l2_next =
1360 vlib_node_add_next (vm, ethernet_input_node.index, node_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001361
Damjan Marion607de1a2016-08-16 22:53:54 +02001362 /*
Ed Warnickecb9cada2015-12-08 15:45:58 -07001363 * Even if we never use these arcs, we have to align the next indices...
1364 */
1365 i = vlib_node_add_next (vm, ethernet_input_type_node.index, node_index);
1366
1367 ASSERT (i == em->l2_next);
1368
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001369 i = vlib_node_add_next (vm, ethernet_input_not_l2_node.index, node_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001370 ASSERT (i == em->l2_next);
1371}
1372
1373// Register a next node for L3 redirect, and enable L3 redirect
1374void
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001375ethernet_register_l3_redirect (vlib_main_t * vm, u32 node_index)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001376{
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001377 ethernet_main_t *em = &ethernet_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001378 u32 i;
1379
1380 em->redirect_l3 = 1;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001381 em->redirect_l3_next = vlib_node_add_next (vm,
1382 ethernet_input_node.index,
1383 node_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001384 /*
1385 * Change the cached next nodes to the redirect node
1386 */
1387 em->l3_next.input_next_ip4 = em->redirect_l3_next;
1388 em->l3_next.input_next_ip6 = em->redirect_l3_next;
1389 em->l3_next.input_next_mpls = em->redirect_l3_next;
1390
1391 /*
1392 * Even if we never use these arcs, we have to align the next indices...
1393 */
1394 i = vlib_node_add_next (vm, ethernet_input_type_node.index, node_index);
1395
1396 ASSERT (i == em->redirect_l3_next);
jerryianff82ed62016-12-05 17:13:00 +08001397
1398 i = vlib_node_add_next (vm, ethernet_input_not_l2_node.index, node_index);
1399
1400 ASSERT (i == em->redirect_l3_next);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001401}
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001402
1403/*
1404 * fd.io coding-style-patch-verification: ON
1405 *
1406 * Local Variables:
1407 * eval: (c-set-style "gnu")
1408 * End:
1409 */