Initial commit of vpp code.
[vpp.git] / vnet / vnet / l2 / l2_input.c
1 /*
2  * l2_input.c : layer 2 input packet processing
3  *
4  * Copyright (c) 2013 Cisco and/or its affiliates.
5  * Licensed under the Apache License, Version 2.0 (the "License");
6  * you may not use this file except in compliance with the License.
7  * You may obtain a copy of the License at:
8  *
9  *     http://www.apache.org/licenses/LICENSE-2.0
10  *
11  * Unless required by applicable law or agreed to in writing, software
12  * distributed under the License is distributed on an "AS IS" BASIS,
13  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  * See the License for the specific language governing permissions and
15  * limitations under the License.
16  */
17
18 #include <vlib/vlib.h>
19 #include <vnet/vnet.h>
20 #include <vnet/pg/pg.h>
21 #include <vnet/ethernet/ethernet.h>
22 #include <vnet/ethernet/packet.h>
23 #include <vnet/ip/ip_packet.h>
24 #include <vnet/ip/ip4_packet.h>
25 #include <vnet/ip/ip6_packet.h>
26 #include <vlib/cli.h>
27 #include <vnet/l2/l2_input.h>
28 #include <vnet/l2/l2_output.h>
29 #include <vnet/l2/feat_bitmap.h>
30 #include <vnet/l2/l2_bvi.h>
31 #include <vnet/l2/l2_fib.h>
32
33 #include <vppinfra/error.h>
34 #include <vppinfra/hash.h>
35 #include <vppinfra/cache.h>
36
37 extern clib_error_t *
38 ethernet_arp_hw_interface_link_up_down (vnet_main_t * vnm,
39                                         u32 hw_if_index,
40                                         u32 flags);
41
42 // Feature graph node names
43 static char * l2input_feat_names[] = {
44 #define _(sym,name) name,
45   foreach_l2input_feat
46 #undef _
47 };
48
49 char **l2input_get_feat_names(void) {
50   return l2input_feat_names;
51 }
52
53
54 typedef struct {
55   /* per-pkt trace data */ 
56   u8 src[6];
57   u8 dst[6];
58   u32 next_index;
59   u32 sw_if_index;
60 } l2input_trace_t;
61
62 /* packet trace format function */
63 static u8 * format_l2input_trace (u8 * s, va_list * args)
64 {
65   CLIB_UNUSED (vlib_main_t * vm) = va_arg (*args, vlib_main_t *);
66   CLIB_UNUSED (vlib_node_t * node) = va_arg (*args, vlib_node_t *);
67   l2input_trace_t * t = va_arg (*args, l2input_trace_t *);
68   
69   s = format (s, "l2-input: sw_if_index %d dst %U src %U",
70               t->sw_if_index,
71               format_ethernet_address, t->dst,
72               format_ethernet_address, t->src);
73   return s;
74 }
75
76 l2input_main_t l2input_main;
77
78 static vlib_node_registration_t l2input_node;
79
80 #define foreach_l2input_error                   \
81 _(L2INPUT,     "L2 input packets")              \
82 _(DROP,        "L2 input drops")
83
84 typedef enum {
85 #define _(sym,str) L2INPUT_ERROR_##sym,
86   foreach_l2input_error
87 #undef _
88   L2INPUT_N_ERROR,
89 } l2input_error_t;
90
91 static char * l2input_error_strings[] = {
92 #define _(sym,string) string,
93   foreach_l2input_error
94 #undef _
95 };
96
97 typedef enum {                  /*  */
98   L2INPUT_NEXT_LEARN,
99   L2INPUT_NEXT_FWD,
100   L2INPUT_NEXT_DROP,
101   L2INPUT_N_NEXT,
102 } l2input_next_t;
103
104
105 static_always_inline void
106 classify_and_dispatch (vlib_main_t * vm,
107                        vlib_node_runtime_t * node,
108                        u32 cpu_index, 
109                        l2input_main_t * msm,
110                        vlib_buffer_t * b0,
111                        u32 *next0)
112 {
113   // Load L2 input feature struct
114   // Load bridge domain struct
115   // Parse ethernet header to determine unicast/mcast/broadcast
116   // take L2 input stat
117   // classify packet as IP/UDP/TCP, control, other
118   // mask feature bitmap
119   // go to first node in bitmap
120   // Later: optimize VTM
121   //
122   // For L2XC, 
123   //   set tx sw-if-handle
124  
125   u8 mcast_dmac; 
126   __attribute__((unused)) u8 l2bcast;
127   __attribute__((unused)) u8 l2mcast;
128   __attribute__((unused)) u8 l2_stat_kind;
129   u16 ethertype;
130   u8 protocol;
131   l2_input_config_t *config;
132   l2_bridge_domain_t *bd_config;
133   u16 bd_index0;
134   u32 feature_bitmap;
135   u32 feat_mask;
136   ethernet_header_t * h0;
137   u8 * l3h0;
138   u32 sw_if_index0;
139   u8 bvi_flg = 0;
140
141 #define get_u32(addr) ( *((u32 *)(addr)) )
142 #define get_u16(addr) ( *((u16 *)(addr)) )
143 #define STATS_IF_LAYER2_UCAST_INPUT_CNT 0
144 #define STATS_IF_LAYER2_MCAST_INPUT_CNT 1
145 #define STATS_IF_LAYER2_BCAST_INPUT_CNT 2
146
147   // Check for from-BVI processing
148   // When we come from ethernet-input, TX is ~0
149   if (PREDICT_FALSE (vnet_buffer(b0)->sw_if_index[VLIB_TX] != ~0)) {
150     // Set up for a from-bvi packet
151     bvi_to_l2 (vm, 
152                msm->vnet_main, 
153                cpu_index, 
154                b0, 
155                vnet_buffer(b0)->sw_if_index[VLIB_TX]);
156     bvi_flg = 1;
157   }
158
159   // The RX interface can be changed by bvi_to_l2()
160   sw_if_index0 = vnet_buffer(b0)->sw_if_index[VLIB_RX];
161
162   h0 = vlib_buffer_get_current (b0);
163   l3h0 = (u8 *)h0 + vnet_buffer(b0)->l2.l2_len;
164
165   // Determine L3 packet type. Only need to check the common types.
166   // Used to filter out features that don't apply to common packets.
167   ethertype = clib_net_to_host_u16(get_u16(l3h0 - 2));
168   if (ethertype == ETHERNET_TYPE_IP4) {
169     protocol = ((ip4_header_t *)l3h0)->protocol;
170     if ((protocol == IP_PROTOCOL_UDP) ||
171         (protocol == IP_PROTOCOL_TCP)) {
172       feat_mask = IP_UDP_TCP_FEAT_MASK;
173     } else {
174       feat_mask = IP4_FEAT_MASK;
175     }
176   } else if (ethertype == ETHERNET_TYPE_IP6) {
177     protocol = ((ip6_header_t *)l3h0)->protocol;
178     // Don't bother checking for extension headers for now
179     if ((protocol == IP_PROTOCOL_UDP) ||
180         (protocol == IP_PROTOCOL_TCP)) {
181       feat_mask = IP_UDP_TCP_FEAT_MASK;
182     } else {
183       feat_mask = IP6_FEAT_MASK;
184     }
185   } else if (ethertype == ETHERNET_TYPE_MPLS_UNICAST) {
186     feat_mask = IP6_FEAT_MASK;
187   } else {
188     // allow all features
189     feat_mask = ~0;
190   } 
191
192   // determine layer2 kind for stat and mask
193   mcast_dmac = ethernet_address_cast(h0->dst_address);
194   l2bcast = 0;
195   l2mcast = 0;
196   l2_stat_kind = STATS_IF_LAYER2_UCAST_INPUT_CNT;
197   if (PREDICT_FALSE (mcast_dmac)) {
198     u32 *dsthi = (u32 *) &h0->dst_address[0];
199     u32 *dstlo = (u32 *) &h0->dst_address[2];
200
201     // Disable bridge forwarding (flooding will execute instead if not xconnect)
202     feat_mask &= ~(L2INPUT_FEAT_FWD | L2INPUT_FEAT_UU_FLOOD);
203     if (ethertype != ETHERNET_TYPE_ARP) // Disable ARP-term for non-ARP packet
204         feat_mask &= ~(L2INPUT_FEAT_ARP_TERM);
205
206     // dest mac is multicast or broadcast
207     if ((*dstlo == 0xFFFFFFFF) && (*dsthi == 0xFFFFFFFF)) { 
208       // dest mac == FF:FF:FF:FF:FF:FF
209       l2_stat_kind = STATS_IF_LAYER2_BCAST_INPUT_CNT;
210       l2bcast=1;
211     } else {
212       l2_stat_kind = STATS_IF_LAYER2_MCAST_INPUT_CNT;
213       l2mcast=1;
214     }
215   }
216   // TODO: take l2 stat
217
218   // Get config for the input interface
219   config = vec_elt_at_index(msm->configs, sw_if_index0);
220
221   // Save split horizon group, use 0 for BVI to make sure not dropped
222   vnet_buffer(b0)->l2.shg = bvi_flg ? 0 : config->shg;
223
224   if (config->xconnect) {
225     // Set the output interface
226     vnet_buffer(b0)->sw_if_index[VLIB_TX] = config->output_sw_if_index;
227
228   } else {
229
230     // Do bridge-domain processing
231     bd_index0 = config->bd_index;
232     // save BD ID for next feature graph nodes
233     vnet_buffer(b0)->l2.bd_index = bd_index0;
234
235     // Get config for the bridge domain interface
236     bd_config = vec_elt_at_index(msm->bd_configs, bd_index0);
237
238     // Process bridge domain feature enables.
239     // To perform learning/flooding/forwarding, the corresponding bit
240     // must be enabled in both the input interface config and in the
241     // bridge domain config. In the bd_bitmap, bits for features other
242     // than learning/flooding/forwarding should always be set.
243     feat_mask = feat_mask & bd_config->feature_bitmap;
244   }
245
246   // mask out features from bitmap using packet type and bd config
247   feature_bitmap = config->feature_bitmap & feat_mask;
248
249   // save for next feature graph nodes
250   vnet_buffer(b0)->l2.feature_bitmap = feature_bitmap;
251
252   // Determine the next node
253   *next0 = feat_bitmap_get_next_node_index(msm->feat_next_node_index,
254                                            feature_bitmap);
255 }
256
257
258 static uword
259 l2input_node_fn (vlib_main_t * vm,
260                  vlib_node_runtime_t * node,
261                  vlib_frame_t * frame)
262 {
263   u32 n_left_from, * from, * to_next;
264   l2input_next_t next_index;
265   l2input_main_t * msm = &l2input_main;
266   vlib_node_t *n = vlib_get_node (vm, l2input_node.index);
267   u32 node_counter_base_index = n->error_heap_index;
268   vlib_error_main_t * em = &vm->error_main;
269   u32 cpu_index = os_get_cpu_number();
270
271   from = vlib_frame_vector_args (frame);
272   n_left_from = frame->n_vectors; /* number of packets to process */
273   next_index = node->cached_next_index;
274
275   while (n_left_from > 0)
276     {
277       u32 n_left_to_next;
278
279       /* get space to enqueue frame to graph node "next_index" */
280       vlib_get_next_frame (vm, node, next_index,
281                            to_next, n_left_to_next);
282
283       while (n_left_from >= 6 && n_left_to_next >= 2)
284         {
285           u32 bi0, bi1;
286           vlib_buffer_t * b0, * b1;
287           u32 next0, next1;
288           u32 sw_if_index0, sw_if_index1;
289           
290           /* Prefetch next iteration. */
291           {
292             vlib_buffer_t * p2, * p3, * p4 , * p5;
293             u32 sw_if_index2, sw_if_index3;
294             
295             p2 = vlib_get_buffer (vm, from[2]);
296             p3 = vlib_get_buffer (vm, from[3]);
297             p4 = vlib_get_buffer (vm, from[4]);
298             p5 = vlib_get_buffer (vm, from[5]);
299             
300             // Prefetch the buffer header and packet for the N+2 loop iteration
301             vlib_prefetch_buffer_header (p4, LOAD);
302             vlib_prefetch_buffer_header (p5, LOAD);
303
304             CLIB_PREFETCH (p4->data, CLIB_CACHE_LINE_BYTES, STORE);
305             CLIB_PREFETCH (p5->data, CLIB_CACHE_LINE_BYTES, STORE);
306
307             // Prefetch the input config for the N+1 loop iteration
308             // This depends on the buffer header above
309             sw_if_index2 = vnet_buffer(p2)->sw_if_index[VLIB_RX];
310             sw_if_index3 = vnet_buffer(p3)->sw_if_index[VLIB_RX];
311             CLIB_PREFETCH (&msm->configs[sw_if_index2], CLIB_CACHE_LINE_BYTES, LOAD);
312             CLIB_PREFETCH (&msm->configs[sw_if_index3], CLIB_CACHE_LINE_BYTES, LOAD);
313
314             // Don't bother prefetching the bridge-domain config (which 
315             // depends on the input config above). Only a small number of
316             // bridge domains are expected. Plus the structure is small
317             // and several fit in a cache line.
318           }
319
320           /* speculatively enqueue b0 and b1 to the current next frame */
321           /* bi is "buffer index", b is pointer to the buffer */
322           to_next[0] = bi0 = from[0];
323           to_next[1] = bi1 = from[1];
324           from += 2;
325           to_next += 2;
326           n_left_from -= 2;
327           n_left_to_next -= 2;
328
329           b0 = vlib_get_buffer (vm, bi0);
330           b1 = vlib_get_buffer (vm, bi1);
331
332           if (PREDICT_FALSE((node->flags & VLIB_NODE_FLAG_TRACE))) {
333             /* RX interface handles */
334             sw_if_index0 = vnet_buffer(b0)->sw_if_index[VLIB_RX];
335             sw_if_index1 = vnet_buffer(b1)->sw_if_index[VLIB_RX];
336
337             if (b0->flags & VLIB_BUFFER_IS_TRACED) {
338               ethernet_header_t * h0 = vlib_buffer_get_current (b0);
339               l2input_trace_t *t = 
340                       vlib_add_trace (vm, node, b0, sizeof (*t));
341               t->sw_if_index = sw_if_index0;
342               memcpy(t->src, h0->src_address, 6);
343               memcpy(t->dst, h0->dst_address, 6);
344             }
345             if (b1->flags & VLIB_BUFFER_IS_TRACED) {
346               ethernet_header_t * h1 = vlib_buffer_get_current (b1);
347               l2input_trace_t *t = 
348                       vlib_add_trace (vm, node, b1, sizeof (*t));
349               t->sw_if_index = sw_if_index1;
350               memcpy(t->src, h1->src_address, 6);
351               memcpy(t->dst, h1->dst_address, 6);
352             }
353           }
354
355           em->counters[node_counter_base_index + L2INPUT_ERROR_L2INPUT] += 2;
356
357           classify_and_dispatch (vm,
358                                  node,
359                                  cpu_index, 
360                                  msm,
361                                  b0,
362                                  &next0);
363
364           classify_and_dispatch (vm,
365                                  node,
366                                  cpu_index, 
367                                  msm,
368                                  b1,
369                                  &next1);
370
371           /* verify speculative enqueues, maybe switch current next frame */
372           /* if next0==next1==next_index then nothing special needs to be done */
373           vlib_validate_buffer_enqueue_x2 (vm, node, next_index,
374                                            to_next, n_left_to_next,
375                                            bi0, bi1, next0, next1);
376       }
377       
378       while (n_left_from > 0 && n_left_to_next > 0)
379         {
380           u32 bi0;
381           vlib_buffer_t * b0;
382           u32 next0;
383           u32 sw_if_index0;
384  
385           /* speculatively enqueue b0 to the current next frame */
386           bi0 = from[0];
387           to_next[0] = bi0;
388           from += 1;
389           to_next += 1;
390           n_left_from -= 1;
391           n_left_to_next -= 1;
392
393           b0 = vlib_get_buffer (vm, bi0);
394
395           if (PREDICT_FALSE((node->flags & VLIB_NODE_FLAG_TRACE) 
396                             && (b0->flags & VLIB_BUFFER_IS_TRACED))) {
397             ethernet_header_t * h0 = vlib_buffer_get_current (b0);
398             l2input_trace_t *t = 
399                vlib_add_trace (vm, node, b0, sizeof (*t));
400             sw_if_index0 = vnet_buffer(b0)->sw_if_index[VLIB_RX];
401             t->sw_if_index = sw_if_index0;
402             memcpy(t->src, h0->src_address, 6);
403             memcpy(t->dst, h0->dst_address, 6);
404           }
405
406           em->counters[node_counter_base_index + L2INPUT_ERROR_L2INPUT] += 1;
407
408           classify_and_dispatch (vm,
409                                  node,
410                                  cpu_index, 
411                                  msm,
412                                  b0,
413                                  &next0);
414
415           /* verify speculative enqueue, maybe switch current next frame */
416           vlib_validate_buffer_enqueue_x1 (vm, node, next_index,
417                                            to_next, n_left_to_next,
418                                            bi0, next0);
419         }
420
421       vlib_put_next_frame (vm, node, next_index, n_left_to_next);
422     }
423
424   return frame->n_vectors;
425 }
426
427
428 VLIB_REGISTER_NODE (l2input_node,static) = {
429   .function = l2input_node_fn,
430   .name = "l2-input",
431   .vector_size = sizeof (u32),
432   .format_trace = format_l2input_trace,
433   .type = VLIB_NODE_TYPE_INTERNAL,
434   
435   .n_errors = ARRAY_LEN(l2input_error_strings),
436   .error_strings = l2input_error_strings,
437
438   .n_next_nodes = L2INPUT_N_NEXT,
439
440   /* edit / add dispositions here */
441   .next_nodes = {
442        [L2INPUT_NEXT_LEARN] = "l2-learn",
443        [L2INPUT_NEXT_FWD]   = "l2-fwd",
444        [L2INPUT_NEXT_DROP]  = "error-drop",
445   },
446 };
447
448 clib_error_t *l2input_init (vlib_main_t *vm)
449 {
450   l2input_main_t * mp = &l2input_main;
451  
452   mp->vlib_main = vm;
453   mp->vnet_main = vnet_get_main();
454
455   // Get packets RX'd from L2 interfaces
456   ethernet_register_l2_input (vm, l2input_node.index);
457
458   // Create the config vector
459   vec_validate(mp->configs, 100);  
460   // create 100 sw interface entries and zero them
461
462   // Initialize the feature next-node indexes
463   feat_bitmap_init_next_nodes(vm,
464                               l2input_node.index,
465                               L2INPUT_N_FEAT,
466                               l2input_get_feat_names(),
467                               mp->feat_next_node_index);
468
469   return 0;
470 }
471
472 VLIB_INIT_FUNCTION (l2input_init);
473
474
475 // Get a pointer to the config for the given interface
476 l2_input_config_t * l2input_intf_config (u32 sw_if_index)
477 {
478   l2input_main_t * mp = &l2input_main;
479  
480   vec_validate(mp->configs, sw_if_index);  
481   return vec_elt_at_index(mp->configs, sw_if_index);
482 }
483
484 // Enable (or disable) the feature in the bitmap for the given interface
485 u32 l2input_intf_bitmap_enable (u32 sw_if_index,
486                                  u32 feature_bitmap,
487                                  u32 enable)
488 {
489   l2input_main_t * mp = &l2input_main;
490   l2_input_config_t *config;
491  
492   vec_validate(mp->configs, sw_if_index);  
493   config = vec_elt_at_index(mp->configs, sw_if_index);
494
495   if (enable) {
496     config->feature_bitmap |= feature_bitmap;
497   } else {
498     config->feature_bitmap &= ~feature_bitmap;
499   }
500
501   return config->feature_bitmap;
502 }
503
504
505
506 // Set the subinterface to run in l2 or l3 mode.
507 // for L3 mode, just the sw_if_index is specified
508 // for bridged mode, the bd id and bvi flag are also specified
509 // for xconnect mode, the peer sw_if_index is also specified
510 // Return 0 if ok, or non-0 if there was an error
511
512 u32 set_int_l2_mode (vlib_main_t * vm,
513                      vnet_main_t * vnet_main,
514                      u32 mode,
515                      u32 sw_if_index,
516                      u32 bd_index, // for bridged interface
517                      u32 bvi,   // the bridged interface is the BVI
518                      u32 shg,   // the bridged interface's split horizon group
519                      u32 xc_sw_if_index) // peer interface for xconnect
520 {
521   l2input_main_t * mp = &l2input_main;
522   vnet_main_t * vnm = vnet_get_main();
523   vnet_hw_interface_t * hi;
524   l2_output_config_t * out_config;
525   l2_input_config_t * config;
526   l2_bridge_domain_t * bd_config;
527   l2_flood_member_t member;
528   u64 mac;
529   i32 l2_if_adjust = 0; 
530
531   hi = vnet_get_sup_hw_interface (vnet_main, sw_if_index);
532
533   vec_validate(mp->configs, sw_if_index);  
534   config = vec_elt_at_index(mp->configs, sw_if_index);
535
536   if (config->bridge) {
537     // Interface is already in bridge mode. Undo the existing config.
538     bd_config = vec_elt_at_index(mp->bd_configs, config->bd_index);
539
540     // remove interface from flood vector
541     bd_remove_member (bd_config, sw_if_index);
542
543     // undo any BVI-related config
544     if (bd_config->bvi_sw_if_index == sw_if_index) {
545       bd_config->bvi_sw_if_index = ~0;
546       config->bvi = 0;
547
548       // restore output node
549       hi->output_node_index = bd_config->saved_bvi_output_node_index;
550
551       // delete the l2fib entry for the bvi interface
552       mac = *((u64 *)hi->hw_address);
553       l2fib_del_entry (mac, config->bd_index);
554     } 
555     l2_if_adjust--;
556   } else if (config->xconnect) {
557     l2_if_adjust--;
558   }
559
560   // Initialize the l2-input configuration for the interface
561   if (mode == MODE_L3) {
562     config->xconnect = 0;
563     config->bridge = 0;
564     config->shg = 0;
565     config->bd_index = 0;
566     config->feature_bitmap = L2INPUT_FEAT_DROP;
567   } else if (mode == MODE_L2_CLASSIFY) {
568       config->xconnect = 1;
569       config->bridge = 0;
570       config->output_sw_if_index = xc_sw_if_index;
571
572       // Make sure last-chance drop is configured
573       config->feature_bitmap |= L2INPUT_FEAT_DROP | L2INPUT_FEAT_CLASSIFY;
574
575       // Make sure bridging features are disabled
576       config->feature_bitmap &= 
577           ~(L2INPUT_FEAT_LEARN | L2INPUT_FEAT_FWD | L2INPUT_FEAT_FLOOD);
578       shg = 0; // not used in xconnect
579
580       // Insure all packets go to ethernet-input
581       ethernet_set_rx_redirect (vnet_main, hi, 1);
582   } else {
583
584     if (mode == MODE_L2_BRIDGE) {
585         /* 
586          * Remove a check that the interface must be an Ethernet.
587          * Specifically so we can bridge to L3 tunnel interfaces.
588          * Here's the check:
589          * if (hi->hw_class_index != ethernet_hw_interface_class.index)
590          * 
591          */
592         if (!hi)
593             return MODE_ERROR_ETH;  // non-ethernet
594
595       config->xconnect = 0;
596       config->bridge = 1;
597       config->bd_index = bd_index;
598
599       // Enable forwarding, flooding, learning and ARP termination by default
600       // (note that ARP term is disabled on BD feature bitmap by default)
601       config->feature_bitmap |= L2INPUT_FEAT_FWD | L2INPUT_FEAT_UU_FLOOD | 
602           L2INPUT_FEAT_FLOOD | L2INPUT_FEAT_LEARN | L2INPUT_FEAT_ARP_TERM;
603
604       // Make sure last-chance drop is configured
605       config->feature_bitmap |= L2INPUT_FEAT_DROP;
606
607       // Make sure xconnect is disabled
608       config->feature_bitmap &= ~L2INPUT_FEAT_XCONNECT;
609
610       // Set up bridge domain
611       vec_validate(mp->bd_configs, bd_index);  
612       bd_config = vec_elt_at_index(mp->bd_configs, bd_index);
613       bd_validate (bd_config);
614
615       // TODO: think: add l2fib entry even for non-bvi interface?
616  
617       // Do BVI interface initializations
618       if (bvi) {
619         // insure BD has no bvi interface (or replace that one with this??)
620         if (bd_config->bvi_sw_if_index != ~0) {
621           return MODE_ERROR_BVI_DEF; // bd already has a bvi interface
622         } 
623         bd_config->bvi_sw_if_index = sw_if_index;
624         config->bvi = 1;
625
626         // make BVI outputs go to l2-input
627         bd_config->saved_bvi_output_node_index = hi->output_node_index;
628         hi->output_node_index = l2input_node.index;
629
630         // create the l2fib entry for the bvi interface
631         mac = *((u64 *)hi->hw_address);
632         l2fib_add_entry (mac, bd_index, sw_if_index, 1, 0, 1);  // static + bvi
633
634         // Disable learning by default. no use since l2fib entry is static.
635         config->feature_bitmap &= ~L2INPUT_FEAT_LEARN;
636
637         // Add BVI to arp_input_next_index_by_hw_if_index table so arp-input
638         // node can send out ARP response via BVI to BD
639         ethernet_arp_hw_interface_link_up_down(vnet_main, hi->hw_if_index, 0);
640  
641       }
642
643       // Add interface to bridge-domain flood vector
644       member.sw_if_index = sw_if_index;
645       member.flags = bvi ? L2_FLOOD_MEMBER_BVI : L2_FLOOD_MEMBER_NORMAL;
646       member.shg = shg;
647       bd_add_member (bd_config, &member);
648      
649     } else {
650       config->xconnect = 1;
651       config->bridge = 0;
652       config->output_sw_if_index = xc_sw_if_index;
653
654       // Make sure last-chance drop is configured
655       config->feature_bitmap |= L2INPUT_FEAT_DROP;
656
657       // Make sure bridging features are disabled
658       config->feature_bitmap &= ~(L2INPUT_FEAT_LEARN | L2INPUT_FEAT_FWD | L2INPUT_FEAT_FLOOD);
659
660       config->feature_bitmap |= L2INPUT_FEAT_XCONNECT;
661       shg = 0; // not used in xconnect
662     }
663
664     // set up split-horizon group
665     config->shg = shg;
666     out_config = l2output_intf_config (sw_if_index);
667     out_config->shg = shg;
668
669     // Test: remove this when non-IP features can be configured.
670     // Enable a non-IP feature to test IP feature masking
671     // config->feature_bitmap |= L2INPUT_FEAT_CTRL_PKT;
672
673     l2_if_adjust++;
674   }
675
676   // Adjust count of L2 interfaces
677   hi->l2_if_count += l2_if_adjust;
678
679   if (hi->hw_class_index == ethernet_hw_interface_class.index) {
680     if ((hi->l2_if_count == 1) && (l2_if_adjust == 1)) {
681       // Just added first L2 interface on this port
682
683       // Set promiscuous mode on the l2 interface
684       ethernet_set_flags (vnet_main, hi->hw_if_index,
685                           ETHERNET_INTERFACE_FLAG_ACCEPT_ALL);
686
687       // Insure all packets go to ethernet-input
688       ethernet_set_rx_redirect (vnet_main, hi, 1);
689
690     } else if ((hi->l2_if_count == 0) && (l2_if_adjust == -1)) {
691       // Just removed only L2 subinterface on this port
692
693       // Disable promiscuous mode on the l2 interface
694       ethernet_set_flags (vnet_main, hi->hw_if_index, 0);
695
696       // Allow ip packets to go directly to ip4-input etc
697       ethernet_set_rx_redirect (vnet_main, hi, 0);
698     }
699   }
700
701   // Set up the L2/L3 flag in the interface parsing tables
702   ethernet_sw_interface_set_l2_mode(vnm, sw_if_index, (mode!=MODE_L3));
703
704   return 0;
705 }
706
707 // set subinterface in bridging mode with a bridge-domain ID
708 // The CLI format is:
709 //    set interface l2 bridge <interface> <bd> [bvi] [split-horizon-group]
710 static clib_error_t *
711 int_l2_bridge  (vlib_main_t * vm,
712                 unformat_input_t * input,
713                 vlib_cli_command_t * cmd)
714 {
715   vnet_main_t * vnm = vnet_get_main();
716   clib_error_t * error = 0;
717   u32 bd_index, bd_id;
718   u32 sw_if_index;
719   u32 bvi;
720   u32 rc;
721   u32 shg;
722
723   if (! unformat_user (input, unformat_vnet_sw_interface, vnm, &sw_if_index))
724     {
725       error = clib_error_return (0, "unknown interface `%U'",
726                                  format_unformat_error, input);
727       goto done;
728     }
729
730   if (!unformat (input, "%d", &bd_id)) {
731       error = clib_error_return (0, "expected bridge domain ID `%U'",
732                                  format_unformat_error, input);
733       goto done;
734   }
735
736   bd_index = bd_find_or_add_bd_index (&bd_main, bd_id);
737
738   // optional bvi 
739   bvi = unformat (input, "bvi");
740
741   // optional split horizon group
742   shg = 0;
743   (void) unformat (input, "%d", &shg);
744
745   // set the interface mode
746   if ((rc = set_int_l2_mode(vm, vnm, MODE_L2_BRIDGE, sw_if_index, bd_index, bvi, shg, 0))) {
747     if (rc == MODE_ERROR_ETH) {
748       error = clib_error_return (0, "bridged interface must be ethernet",
749                                  format_unformat_error, input);
750     } else if (rc == MODE_ERROR_BVI_DEF) {
751       error = clib_error_return (0, "bridge-domain already has a bvi interface",
752                                  format_unformat_error, input);
753     } else {
754       error = clib_error_return (0, "invalid configuration for interface",
755                                  format_unformat_error, input);
756     }
757     goto done;
758   }
759
760  done:
761   return error;
762 }
763
764 VLIB_CLI_COMMAND (int_l2_bridge_cli, static) = {
765   .path = "set interface l2 bridge",
766   .short_help = "set interface to L2 bridging mode in <bridge-domain ID> [bvi] [shg]",
767   .function = int_l2_bridge,
768 };
769
770 // set subinterface in xconnect mode with another interface
771 // The CLI format is:
772 //    set interface l2 xconnect <interface> <peer interface>
773 static clib_error_t *
774 int_l2_xc (vlib_main_t * vm,
775            unformat_input_t * input,
776            vlib_cli_command_t * cmd)
777 {
778   vnet_main_t * vnm = vnet_get_main();
779   clib_error_t * error = 0;
780   u32 sw_if_index;
781   u32 xc_sw_if_index;
782
783   if (! unformat_user (input, unformat_vnet_sw_interface, vnm, &sw_if_index))
784     {
785       error = clib_error_return (0, "unknown interface `%U'",
786                                  format_unformat_error, input);
787       goto done;
788     }
789
790   if (! unformat_user (input, unformat_vnet_sw_interface, vnm, &xc_sw_if_index))
791     {
792       error = clib_error_return (0, "unknown peer interface `%U'",
793                                  format_unformat_error, input);
794       goto done;
795     }
796
797   // set the interface mode
798   if (set_int_l2_mode(vm, vnm, MODE_L2_XC, sw_if_index, 0, 0, 0, xc_sw_if_index)) {
799       error = clib_error_return (0, "invalid configuration for interface",
800                                  format_unformat_error, input);
801       goto done;
802   }
803
804  done:
805   return error;
806 }
807
808 VLIB_CLI_COMMAND (int_l2_xc_cli, static) = {
809   .path = "set interface l2 xconnect",
810   .short_help = "set interface to L2 cross-connect mode with <peer interface>",
811   .function = int_l2_xc,
812 };
813
814 // set subinterface in L3 mode
815 // The CLI format is:
816 //    set interface l3 <interface>
817 static clib_error_t *
818 int_l3  (vlib_main_t * vm,
819          unformat_input_t * input,
820          vlib_cli_command_t * cmd)
821 {
822   vnet_main_t * vnm = vnet_get_main();
823   clib_error_t * error = 0;
824   u32 sw_if_index;
825
826   if (! unformat_user (input, unformat_vnet_sw_interface, vnm, &sw_if_index))
827     {
828       error = clib_error_return (0, "unknown interface `%U'",
829                                  format_unformat_error, input);
830       goto done;
831     }
832
833   // set the interface mode
834   if (set_int_l2_mode(vm, vnm, MODE_L3, sw_if_index, 0, 0, 0, 0)) {
835       error = clib_error_return (0, "invalid configuration for interface",
836                                  format_unformat_error, input);
837       goto done;
838   }
839
840  done:
841   return error;
842 }
843
844 VLIB_CLI_COMMAND (int_l3_cli, static) = {
845   .path = "set interface l3",
846   .short_help = "set interface to L3 mode",
847   .function = int_l3,
848 };
849
850 // The CLI format is:
851 //    show mode [<if-name1> <if-name2> ...]
852 static clib_error_t *
853 show_int_mode  (vlib_main_t * vm,
854          unformat_input_t * input,
855          vlib_cli_command_t * cmd)
856 {
857   vnet_main_t * vnm = vnet_get_main();
858   clib_error_t * error = 0;
859   char * mode;
860   u8 * args;
861   vnet_interface_main_t * im = &vnm->interface_main;
862   vnet_sw_interface_t * si, * sis = 0;
863   l2input_main_t * mp = &l2input_main;
864   l2_input_config_t * config;
865   
866   while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
867     {
868        u32 sw_if_index;
869
870       /* See if user wants to show specific interface */
871       if (unformat (input, "%U", unformat_vnet_sw_interface, vnm, &sw_if_index))
872         {
873           si =  pool_elt_at_index (im->sw_interfaces, sw_if_index);
874           vec_add1 (sis, si[0]);
875         }
876       else
877         {
878           error = clib_error_return (0, "unknown input `%U'",
879                                      format_unformat_error, input);
880           goto done;
881         }
882
883     }
884
885   if (vec_len (sis) == 0) /* Get all interfaces */
886     {
887       /* Gather interfaces. */
888       sis = vec_new (vnet_sw_interface_t, pool_elts (im->sw_interfaces));
889       _vec_len (sis) = 0;
890       pool_foreach (si, im->sw_interfaces, ({ vec_add1 (sis, si[0]); }));
891     }
892   
893   vec_foreach (si, sis)
894     {
895       vec_validate(mp->configs, si->sw_if_index);
896       config = vec_elt_at_index(mp->configs, si->sw_if_index);
897       if (config->bridge) {
898           u32 bd_id;
899           mode = "l2 bridge";
900           bd_id = l2input_main.bd_configs[config->bd_index].bd_id;
901
902           args = format (0, "bd_id %d%s%d", bd_id, 
903                          config->bvi ? " bvi shg " : " shg ", config->shg);
904       } else if (config->xconnect) {
905           mode = "l2 xconnect";
906           args = format (0, "%U",
907           format_vnet_sw_if_index_name,
908           vnm, config->output_sw_if_index);
909       } else {
910         mode = "l3";
911         args = format (0, " ");
912       }
913       vlib_cli_output (vm, "%s %U %v\n",
914         mode,
915         format_vnet_sw_if_index_name,
916         vnm, si->sw_if_index,
917         args);
918       vec_free (args);
919   }
920
921 done:
922   vec_free (sis);
923   
924   return error;
925 }
926
927 VLIB_CLI_COMMAND (show_l2_mode, static) = {
928   .path = "show mode",
929   .short_help = "show mode [<if-name1> <if-name2> ...]",
930   .function = show_int_mode,
931 };
932
933 #define foreach_l2_init_function                \
934 _(feat_bitmap_drop_init)                        \
935 _(l2fib_init)                                   \
936 _(l2_classify_init)                             \
937 _(l2bd_init)                                    \
938 _(l2fwd_init)                                   \
939 _(l2_inacl_init)                                \
940 _(l2input_init)                                 \
941 _(l2_vtr_init)                                  \
942 _(l2_invtr_init)                                \
943 _(l2_efp_filter_init)                           \
944 _(l2learn_init)                                 \
945 _(l2flood_init)                                 \
946 _(l2_outacl_init)                               \
947 _(l2output_init)                                \
948 _(l2_patch_init)                                \
949 _(l2_xcrw_init)
950
951 clib_error_t *l2_init (vlib_main_t * vm)
952 {
953   clib_error_t * error;
954   
955 #define _(a) do {                                                       \
956   if ((error = vlib_call_init_function (vm, a))) return error; }        \
957 while (0);
958   foreach_l2_init_function;
959 #undef _
960   return 0;
961 }
962
963 VLIB_INIT_FUNCTION (l2_init);