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