blob: f94ef668c416e555e50bf7563c26f526e48597cc [file] [log] [blame]
Ed Warnickecb9cada2015-12-08 15:45:58 -07001/*
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>
John Lo0f853332017-11-10 12:24:32 -050026#include <vnet/fib/fib_node.h>
27#include <vnet/ethernet/arp_packet.h>
Ed Warnickecb9cada2015-12-08 15:45:58 -070028#include <vlib/cli.h>
29#include <vnet/l2/l2_input.h>
30#include <vnet/l2/l2_output.h>
31#include <vnet/l2/feat_bitmap.h>
32#include <vnet/l2/l2_bvi.h>
33#include <vnet/l2/l2_fib.h>
John Loda1f2c72017-03-24 20:11:15 -040034#include <vnet/l2/l2_bd.h>
Ed Warnickecb9cada2015-12-08 15:45:58 -070035
36#include <vppinfra/error.h>
37#include <vppinfra/hash.h>
38#include <vppinfra/cache.h>
39
Billy McFall22aa3e92016-09-09 08:46:40 -040040/**
41 * @file
42 * @brief Interface Input Mode (Layer 2 Cross-Connect or Bridge / Layer 3).
43 *
44 * This file contains the CLI Commands that modify the input mode of an
45 * interface. For interfaces in a Layer 2 cross-connect, all packets
46 * received on one interface will be transmitted to the other. For
47 * interfaces in a bridge-domain, packets will be forwarded to other
48 * interfaces in the same bridge-domain based on destination mac address.
49 * For interfaces in Layer 3 mode, the packets will be routed.
50 */
Pierre Pfistere389de72016-03-09 15:56:31 +000051
Dave Barach97d8dc22016-08-15 15:31:15 -040052/* Feature graph node names */
53static char *l2input_feat_names[] = {
Ed Warnickecb9cada2015-12-08 15:45:58 -070054#define _(sym,name) name,
55 foreach_l2input_feat
56#undef _
57};
58
Dave Barach97d8dc22016-08-15 15:31:15 -040059char **
60l2input_get_feat_names (void)
61{
Ed Warnickecb9cada2015-12-08 15:45:58 -070062 return l2input_feat_names;
63}
64
Eyal Bari942402b2017-07-26 11:57:04 +030065u8 *
66format_l2_input_features (u8 * s, va_list * args)
67{
68 static char *display_names[] = {
69#define _(sym,name) #sym,
70 foreach_l2input_feat
71#undef _
72 };
73 u32 feature_bitmap = va_arg (*args, u32);
74
75 if (feature_bitmap == 0)
76 {
77 s = format (s, " none configured");
78 return s;
79 }
80
81 feature_bitmap &= ~L2INPUT_FEAT_DROP; /* Not a feature */
82 int i;
83 for (i = L2INPUT_N_FEAT; i >= 0; i--)
84 if (feature_bitmap & (1 << i))
85 s = format (s, "%10s (%s)\n", display_names[i], l2input_feat_names[i]);
86 return s;
87}
Ed Warnickecb9cada2015-12-08 15:45:58 -070088
Dave Barach97d8dc22016-08-15 15:31:15 -040089typedef struct
90{
91 /* per-pkt trace data */
Ed Warnickecb9cada2015-12-08 15:45:58 -070092 u8 src[6];
93 u8 dst[6];
94 u32 next_index;
95 u32 sw_if_index;
96} l2input_trace_t;
97
98/* packet trace format function */
Dave Barach97d8dc22016-08-15 15:31:15 -040099static u8 *
100format_l2input_trace (u8 * s, va_list * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700101{
102 CLIB_UNUSED (vlib_main_t * vm) = va_arg (*args, vlib_main_t *);
103 CLIB_UNUSED (vlib_node_t * node) = va_arg (*args, vlib_node_t *);
Dave Barach97d8dc22016-08-15 15:31:15 -0400104 l2input_trace_t *t = va_arg (*args, l2input_trace_t *);
105
Ed Warnickecb9cada2015-12-08 15:45:58 -0700106 s = format (s, "l2-input: sw_if_index %d dst %U src %U",
107 t->sw_if_index,
Dave Barach97d8dc22016-08-15 15:31:15 -0400108 format_ethernet_address, t->dst,
109 format_ethernet_address, t->src);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700110 return s;
111}
112
113l2input_main_t l2input_main;
114
Ed Warnickecb9cada2015-12-08 15:45:58 -0700115#define foreach_l2input_error \
116_(L2INPUT, "L2 input packets") \
117_(DROP, "L2 input drops")
118
Dave Barach97d8dc22016-08-15 15:31:15 -0400119typedef enum
120{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700121#define _(sym,str) L2INPUT_ERROR_##sym,
122 foreach_l2input_error
123#undef _
Dave Barach97d8dc22016-08-15 15:31:15 -0400124 L2INPUT_N_ERROR,
Ed Warnickecb9cada2015-12-08 15:45:58 -0700125} l2input_error_t;
126
Dave Barach97d8dc22016-08-15 15:31:15 -0400127static char *l2input_error_strings[] = {
Ed Warnickecb9cada2015-12-08 15:45:58 -0700128#define _(sym,string) string,
129 foreach_l2input_error
130#undef _
131};
132
Dave Barach97d8dc22016-08-15 15:31:15 -0400133typedef enum
134{ /* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700135 L2INPUT_NEXT_LEARN,
136 L2INPUT_NEXT_FWD,
137 L2INPUT_NEXT_DROP,
138 L2INPUT_N_NEXT,
139} l2input_next_t;
140
141
142static_always_inline void
John Lo1fc44b62018-09-13 22:10:25 +0000143classify_and_dispatch (l2input_main_t * msm, vlib_buffer_t * b0, u32 * next0)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700144{
Dave Barach97d8dc22016-08-15 15:31:15 -0400145 /*
146 * Load L2 input feature struct
147 * Load bridge domain struct
148 * Parse ethernet header to determine unicast/mcast/broadcast
149 * take L2 input stat
150 * classify packet as IP/UDP/TCP, control, other
151 * mask feature bitmap
152 * go to first node in bitmap
153 * Later: optimize VTM
154 *
155 * For L2XC,
156 * set tx sw-if-handle
157 */
158
John Lo1fc44b62018-09-13 22:10:25 +0000159 u32 feat_mask = ~0;
160 u32 sw_if_index0 = vnet_buffer (b0)->sw_if_index[VLIB_RX];
161 ethernet_header_t *h0 = vlib_buffer_get_current (b0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700162
Damjan Marionfc639732016-12-19 13:56:51 +0100163 /* Get config for the input interface */
John Lo1fc44b62018-09-13 22:10:25 +0000164 l2_input_config_t *config = vec_elt_at_index (msm->configs, sw_if_index0);
Damjan Marionfc639732016-12-19 13:56:51 +0100165
John Lo1fc44b62018-09-13 22:10:25 +0000166 /* Save split horizon group */
167 vnet_buffer (b0)->l2.shg = config->shg;
168
169 /* determine layer2 kind for stat and mask */
170 if (PREDICT_FALSE (ethernet_address_cast (h0->dst_address)))
Dave Barach97d8dc22016-08-15 15:31:15 -0400171 {
John Lo1fc44b62018-09-13 22:10:25 +0000172 u8 *l3h0 = (u8 *) h0 + vnet_buffer (b0)->l2.l2_len;
Eyal Bari109139e2018-03-28 15:25:28 +0300173
John Lo1fc44b62018-09-13 22:10:25 +0000174#define get_u16(addr) ( *((u16 *)(addr)) )
175 u16 ethertype = clib_net_to_host_u16 (get_u16 (l3h0 - 2));
176 u8 protocol = ((ip6_header_t *) l3h0)->protocol;
Neale Rannsb1232552018-09-12 09:42:50 -0400177
John Lo1fc44b62018-09-13 22:10:25 +0000178 /* Disable bridge forwarding (flooding will execute instead if not xconnect) */
179 feat_mask &= ~(L2INPUT_FEAT_FWD |
180 L2INPUT_FEAT_UU_FLOOD | L2INPUT_FEAT_GBP_FWD);
Neale Rannsb1232552018-09-12 09:42:50 -0400181
John Lo1fc44b62018-09-13 22:10:25 +0000182 /* Disable ARP-term for non-ARP and non-ICMP6 packet */
183 if (ethertype != ETHERNET_TYPE_ARP &&
184 (ethertype != ETHERNET_TYPE_IP6 || protocol != IP_PROTOCOL_ICMP6))
185 feat_mask &= ~(L2INPUT_FEAT_ARP_TERM);
Neale Rannsb1232552018-09-12 09:42:50 -0400186
John Lo1fc44b62018-09-13 22:10:25 +0000187 /*
188 * For packet from BVI - set SHG of ARP request or ICMPv6 neighbor
189 * solicitation packet from BVI to 0 so it can also flood to VXLAN
190 * tunnels or other ports with the same SHG as that of the BVI.
191 */
192 else if (PREDICT_FALSE (vnet_buffer (b0)->sw_if_index[VLIB_TX] ==
193 L2INPUT_BVI))
Neale Rannsb1232552018-09-12 09:42:50 -0400194 {
John Lo1fc44b62018-09-13 22:10:25 +0000195 if (ethertype == ETHERNET_TYPE_ARP)
196 {
197 ethernet_arp_header_t *arp0 = (ethernet_arp_header_t *) l3h0;
198 if (arp0->opcode ==
199 clib_host_to_net_u16 (ETHERNET_ARP_OPCODE_request))
200 vnet_buffer (b0)->l2.shg = 0;
201 }
202 else /* must be ICMPv6 */
203 {
204 ip6_header_t *iph0 = (ip6_header_t *) l3h0;
205 icmp6_neighbor_solicitation_or_advertisement_header_t *ndh0;
206 ndh0 = ip6_next_header (iph0);
207 if (ndh0->icmp.type == ICMP6_neighbor_solicitation)
208 vnet_buffer (b0)->l2.shg = 0;
209 }
Neale Rannsb1232552018-09-12 09:42:50 -0400210 }
Dave Barach97d8dc22016-08-15 15:31:15 -0400211 }
John Lo1fc44b62018-09-13 22:10:25 +0000212 else
Dave Barach97d8dc22016-08-15 15:31:15 -0400213 {
John Lo1fc44b62018-09-13 22:10:25 +0000214 /*
215 * For packet from BVI - set SHG of unicast packet from BVI to 0 so it
216 * is not dropped on output to VXLAN tunnels or other ports with the
217 * same SHG as that of the BVI.
218 */
219 if (PREDICT_FALSE (vnet_buffer (b0)->sw_if_index[VLIB_TX] ==
220 L2INPUT_BVI))
221 vnet_buffer (b0)->l2.shg = 0;
Damjan Marionfc639732016-12-19 13:56:51 +0100222 }
John Lo1fc44b62018-09-13 22:10:25 +0000223
224
225 if (config->bridge)
226 {
227 /* Do bridge-domain processing */
228 u16 bd_index0 = config->bd_index;
229 /* save BD ID for next feature graph nodes */
230 vnet_buffer (b0)->l2.bd_index = bd_index0;
231
232 /* Get config for the bridge domain interface */
233 l2_bridge_domain_t *bd_config =
234 vec_elt_at_index (msm->bd_configs, bd_index0);
235
236 /* Save bridge domain and interface seq_num */
237 /* *INDENT-OFF* */
238 l2fib_seq_num_t sn = {
239 .swif = *l2fib_swif_seq_num(sw_if_index0),
240 .bd = bd_config->seq_num,
241 };
242 /* *INDENT-ON* */
243 vnet_buffer (b0)->l2.l2fib_sn = sn.as_u16;;
244 vnet_buffer (b0)->l2.bd_age = bd_config->mac_age;
245
246 /*
247 * Process bridge domain feature enables.
248 * To perform learning/flooding/forwarding, the corresponding bit
249 * must be enabled in both the input interface config and in the
250 * bridge domain config. In the bd_bitmap, bits for features other
251 * than learning/flooding/forwarding should always be set.
252 */
253 feat_mask = feat_mask & bd_config->feature_bitmap;
254 }
255 else if (config->xconnect)
256 {
257 /* Set the output interface */
258 vnet_buffer (b0)->sw_if_index[VLIB_TX] = config->output_sw_if_index;
259 }
260 else
261 feat_mask = L2INPUT_FEAT_DROP;
262
263 /* mask out features from bitmap using packet type and bd config */
264 u32 feature_bitmap = config->feature_bitmap & feat_mask;
265
266 /* save for next feature graph nodes */
267 vnet_buffer (b0)->l2.feature_bitmap = feature_bitmap;
268
269 /* Determine the next node */
270 *next0 = feat_bitmap_get_next_node_index (msm->feat_next_node_index,
271 feature_bitmap);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700272}
273
Dave Barach681abe42017-02-15 09:01:01 -0500274static_always_inline uword
275l2input_node_inline (vlib_main_t * vm,
276 vlib_node_runtime_t * node, vlib_frame_t * frame,
277 int do_trace)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700278{
John Lo1fc44b62018-09-13 22:10:25 +0000279 u32 n_left_from, *from, *to_next;
280 l2input_next_t next_index;
Dave Barach97d8dc22016-08-15 15:31:15 -0400281 l2input_main_t *msm = &l2input_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700282
283 from = vlib_frame_vector_args (frame);
John Lo1fc44b62018-09-13 22:10:25 +0000284 n_left_from = frame->n_vectors; /* number of packets to process */
285 next_index = node->cached_next_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700286
John Lo1fc44b62018-09-13 22:10:25 +0000287 while (n_left_from > 0)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700288 {
John Lo1fc44b62018-09-13 22:10:25 +0000289 u32 n_left_to_next;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700290
John Lo1fc44b62018-09-13 22:10:25 +0000291 /* get space to enqueue frame to graph node "next_index" */
292 vlib_get_next_frame (vm, node, next_index, to_next, n_left_to_next);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700293
John Lo1fc44b62018-09-13 22:10:25 +0000294 while (n_left_from >= 8 && n_left_to_next >= 4)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700295 {
John Lo1fc44b62018-09-13 22:10:25 +0000296 u32 bi0, bi1, bi2, bi3;
297 vlib_buffer_t *b0, *b1, *b2, *b3;
298 u32 next0, next1, next2, next3;
299 u32 sw_if_index0, sw_if_index1, sw_if_index2, sw_if_index3;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700300
John Lo1fc44b62018-09-13 22:10:25 +0000301 /* Prefetch next iteration. */
302 {
303 vlib_buffer_t *p4, *p5, *p6, *p7;
304
305 p4 = vlib_get_buffer (vm, from[4]);
306 p5 = vlib_get_buffer (vm, from[5]);
307 p6 = vlib_get_buffer (vm, from[6]);
308 p7 = vlib_get_buffer (vm, from[7]);
309
310 /* Prefetch the buffer header and packet for the N+2 loop iteration */
311 vlib_prefetch_buffer_header (p4, LOAD);
312 vlib_prefetch_buffer_header (p5, LOAD);
313 vlib_prefetch_buffer_header (p6, LOAD);
314 vlib_prefetch_buffer_header (p7, LOAD);
315
316 CLIB_PREFETCH (p4->data, CLIB_CACHE_LINE_BYTES, STORE);
317 CLIB_PREFETCH (p5->data, CLIB_CACHE_LINE_BYTES, STORE);
318 CLIB_PREFETCH (p6->data, CLIB_CACHE_LINE_BYTES, STORE);
319 CLIB_PREFETCH (p7->data, CLIB_CACHE_LINE_BYTES, STORE);
320
321 /*
322 * Don't bother prefetching the bridge-domain config (which
323 * depends on the input config above). Only a small number of
324 * bridge domains are expected. Plus the structure is small
325 * and several fit in a cache line.
326 */
327 }
328
329 /* speculatively enqueue b0 and b1 to the current next frame */
330 /* bi is "buffer index", b is pointer to the buffer */
331 to_next[0] = bi0 = from[0];
332 to_next[1] = bi1 = from[1];
333 to_next[2] = bi2 = from[2];
334 to_next[3] = bi3 = from[3];
335 from += 4;
336 to_next += 4;
337 n_left_from -= 4;
338 n_left_to_next -= 4;
339
340 b0 = vlib_get_buffer (vm, bi0);
341 b1 = vlib_get_buffer (vm, bi1);
342 b2 = vlib_get_buffer (vm, bi2);
343 b3 = vlib_get_buffer (vm, bi3);
344
345 if (do_trace)
346 {
347 /* RX interface handles */
348 sw_if_index0 = vnet_buffer (b0)->sw_if_index[VLIB_RX];
349 sw_if_index1 = vnet_buffer (b1)->sw_if_index[VLIB_RX];
350 sw_if_index2 = vnet_buffer (b2)->sw_if_index[VLIB_RX];
351 sw_if_index3 = vnet_buffer (b3)->sw_if_index[VLIB_RX];
352
353 if (b0->flags & VLIB_BUFFER_IS_TRACED)
354 {
355 ethernet_header_t *h0 = vlib_buffer_get_current (b0);
356 l2input_trace_t *t =
357 vlib_add_trace (vm, node, b0, sizeof (*t));
358 t->sw_if_index = sw_if_index0;
359 clib_memcpy (t->src, h0->src_address, 6);
360 clib_memcpy (t->dst, h0->dst_address, 6);
361 }
362 if (b1->flags & VLIB_BUFFER_IS_TRACED)
363 {
364 ethernet_header_t *h1 = vlib_buffer_get_current (b1);
365 l2input_trace_t *t =
366 vlib_add_trace (vm, node, b1, sizeof (*t));
367 t->sw_if_index = sw_if_index1;
368 clib_memcpy (t->src, h1->src_address, 6);
369 clib_memcpy (t->dst, h1->dst_address, 6);
370 }
371 if (b2->flags & VLIB_BUFFER_IS_TRACED)
372 {
373 ethernet_header_t *h2 = vlib_buffer_get_current (b2);
374 l2input_trace_t *t =
375 vlib_add_trace (vm, node, b2, sizeof (*t));
376 t->sw_if_index = sw_if_index2;
377 clib_memcpy (t->src, h2->src_address, 6);
378 clib_memcpy (t->dst, h2->dst_address, 6);
379 }
380 if (b3->flags & VLIB_BUFFER_IS_TRACED)
381 {
382 ethernet_header_t *h3 = vlib_buffer_get_current (b3);
383 l2input_trace_t *t =
384 vlib_add_trace (vm, node, b3, sizeof (*t));
385 t->sw_if_index = sw_if_index3;
386 clib_memcpy (t->src, h3->src_address, 6);
387 clib_memcpy (t->dst, h3->dst_address, 6);
388 }
389 }
390
391 classify_and_dispatch (msm, b0, &next0);
392 classify_and_dispatch (msm, b1, &next1);
393 classify_and_dispatch (msm, b2, &next2);
394 classify_and_dispatch (msm, b3, &next3);
395
396 /* verify speculative enqueues, maybe switch current next frame */
397 /* if next0==next1==next_index then nothing special needs to be done */
398 vlib_validate_buffer_enqueue_x4 (vm, node, next_index,
399 to_next, n_left_to_next,
400 bi0, bi1, bi2, bi3,
401 next0, next1, next2, next3);
402 }
403
404 while (n_left_from > 0 && n_left_to_next > 0)
405 {
406 u32 bi0;
407 vlib_buffer_t *b0;
408 u32 next0;
409 u32 sw_if_index0;
410
411 /* speculatively enqueue b0 to the current next frame */
412 bi0 = from[0];
413 to_next[0] = bi0;
414 from += 1;
415 to_next += 1;
416 n_left_from -= 1;
417 n_left_to_next -= 1;
418
419 b0 = vlib_get_buffer (vm, bi0);
420
421 if (do_trace && PREDICT_FALSE (b0->flags & VLIB_BUFFER_IS_TRACED))
422 {
423 ethernet_header_t *h0 = vlib_buffer_get_current (b0);
424 l2input_trace_t *t = vlib_add_trace (vm, node, b0, sizeof (*t));
425 sw_if_index0 = vnet_buffer (b0)->sw_if_index[VLIB_RX];
426 t->sw_if_index = sw_if_index0;
Dave Barach97d8dc22016-08-15 15:31:15 -0400427 clib_memcpy (t->src, h0->src_address, 6);
428 clib_memcpy (t->dst, h0->dst_address, 6);
429 }
John Lo1fc44b62018-09-13 22:10:25 +0000430
431 classify_and_dispatch (msm, b0, &next0);
432
433 /* verify speculative enqueue, maybe switch current next frame */
434 vlib_validate_buffer_enqueue_x1 (vm, node, next_index,
435 to_next, n_left_to_next,
436 bi0, next0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700437 }
John Lo1fc44b62018-09-13 22:10:25 +0000438
439 vlib_put_next_frame (vm, node, next_index, n_left_to_next);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700440 }
441
Eyal Bari109139e2018-03-28 15:25:28 +0300442 vlib_node_increment_counter (vm, l2input_node.index,
443 L2INPUT_ERROR_L2INPUT, frame->n_vectors);
444
Ed Warnickecb9cada2015-12-08 15:45:58 -0700445 return frame->n_vectors;
446}
447
Dave Barach681abe42017-02-15 09:01:01 -0500448static uword
449l2input_node_fn (vlib_main_t * vm,
450 vlib_node_runtime_t * node, vlib_frame_t * frame)
451{
452 if (PREDICT_FALSE ((node->flags & VLIB_NODE_FLAG_TRACE)))
453 return l2input_node_inline (vm, node, frame, 1 /* do_trace */ );
454 return l2input_node_inline (vm, node, frame, 0 /* do_trace */ );
455}
Ed Warnickecb9cada2015-12-08 15:45:58 -0700456
Dave Barach97d8dc22016-08-15 15:31:15 -0400457/* *INDENT-OFF* */
John Lo405e41b2016-04-23 15:14:12 -0400458VLIB_REGISTER_NODE (l2input_node) = {
Ed Warnickecb9cada2015-12-08 15:45:58 -0700459 .function = l2input_node_fn,
460 .name = "l2-input",
461 .vector_size = sizeof (u32),
462 .format_trace = format_l2input_trace,
John Lo2d343742016-01-19 17:27:17 -0500463 .format_buffer = format_ethernet_header_with_length,
Ed Warnickecb9cada2015-12-08 15:45:58 -0700464 .type = VLIB_NODE_TYPE_INTERNAL,
Dave Barach97d8dc22016-08-15 15:31:15 -0400465
Ed Warnickecb9cada2015-12-08 15:45:58 -0700466 .n_errors = ARRAY_LEN(l2input_error_strings),
467 .error_strings = l2input_error_strings,
468
469 .n_next_nodes = L2INPUT_N_NEXT,
470
471 /* edit / add dispositions here */
472 .next_nodes = {
473 [L2INPUT_NEXT_LEARN] = "l2-learn",
474 [L2INPUT_NEXT_FWD] = "l2-fwd",
475 [L2INPUT_NEXT_DROP] = "error-drop",
476 },
477};
Dave Barach97d8dc22016-08-15 15:31:15 -0400478/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700479
Damjan Marion1c80e832016-05-11 23:07:18 +0200480VLIB_NODE_FUNCTION_MULTIARCH (l2input_node, l2input_node_fn)
Dave Barach97d8dc22016-08-15 15:31:15 -0400481 clib_error_t *l2input_init (vlib_main_t * vm)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700482{
Dave Barach97d8dc22016-08-15 15:31:15 -0400483 l2input_main_t *mp = &l2input_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700484
Dave Barach97d8dc22016-08-15 15:31:15 -0400485 mp->vlib_main = vm;
486 mp->vnet_main = vnet_get_main ();
487
488 /* Get packets RX'd from L2 interfaces */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700489 ethernet_register_l2_input (vm, l2input_node.index);
490
Dave Barach97d8dc22016-08-15 15:31:15 -0400491 /* Create the config vector */
492 vec_validate (mp->configs, 100);
493 /* create 100 sw interface entries and zero them */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700494
Dave Barach97d8dc22016-08-15 15:31:15 -0400495 /* Initialize the feature next-node indexes */
496 feat_bitmap_init_next_nodes (vm,
497 l2input_node.index,
498 L2INPUT_N_FEAT,
499 l2input_get_feat_names (),
500 mp->feat_next_node_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700501
502 return 0;
503}
504
505VLIB_INIT_FUNCTION (l2input_init);
506
507
Chris Luke16bcf7d2016-09-01 14:31:46 -0400508/** Get a pointer to the config for the given interface. */
Dave Barach97d8dc22016-08-15 15:31:15 -0400509l2_input_config_t *
510l2input_intf_config (u32 sw_if_index)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700511{
Dave Barach97d8dc22016-08-15 15:31:15 -0400512 l2input_main_t *mp = &l2input_main;
513
514 vec_validate (mp->configs, sw_if_index);
515 return vec_elt_at_index (mp->configs, sw_if_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700516}
517
Chris Luke16bcf7d2016-09-01 14:31:46 -0400518/** Enable (or disable) the feature in the bitmap for the given interface. */
Dave Barach97d8dc22016-08-15 15:31:15 -0400519u32
520l2input_intf_bitmap_enable (u32 sw_if_index, u32 feature_bitmap, u32 enable)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700521{
Eyal Bariafc47aa2017-04-20 14:45:17 +0300522 l2_input_config_t *config = l2input_intf_config (sw_if_index);
Dave Barach97d8dc22016-08-15 15:31:15 -0400523
524 if (enable)
Eyal Bariafc47aa2017-04-20 14:45:17 +0300525 config->feature_bitmap |= feature_bitmap;
Dave Barach97d8dc22016-08-15 15:31:15 -0400526 else
Eyal Bariafc47aa2017-04-20 14:45:17 +0300527 config->feature_bitmap &= ~feature_bitmap;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700528
529 return config->feature_bitmap;
530}
531
Dave Barach97d8dc22016-08-15 15:31:15 -0400532u32
533l2input_set_bridge_features (u32 bd_index, u32 feat_mask, u32 feat_value)
Pierre Pfisterd6f5b962016-03-21 16:17:52 +0000534{
Eyal Bariafc47aa2017-04-20 14:45:17 +0300535 l2_bridge_domain_t *bd_config = l2input_bd_config (bd_index);;
Pierre Pfisterd6f5b962016-03-21 16:17:52 +0000536 bd_validate (bd_config);
Dave Barach97d8dc22016-08-15 15:31:15 -0400537 bd_config->feature_bitmap =
538 (bd_config->feature_bitmap & ~feat_mask) | feat_value;
Pierre Pfisterd6f5b962016-03-21 16:17:52 +0000539 return bd_config->feature_bitmap;
540}
Ed Warnickecb9cada2015-12-08 15:45:58 -0700541
Neale Ranns3b81a1e2018-09-06 09:50:26 -0700542void
543l2input_interface_mac_change (u32 sw_if_index,
544 const u8 * old_address, const u8 * new_address)
545{
546 /* check if the sw_if_index passed is a BVI in a BD */
547 l2_input_config_t *intf_config;
548
549 intf_config = l2input_intf_config (sw_if_index);
550
551 if (intf_config->bridge && intf_config->bvi)
552 {
553 /* delete and re-add l2fib entry for the bvi interface */
554 l2fib_del_entry (old_address, intf_config->bd_index, sw_if_index);
555 l2fib_add_entry (new_address,
556 intf_config->bd_index,
557 sw_if_index,
558 L2FIB_ENTRY_RESULT_FLAG_BVI |
559 L2FIB_ENTRY_RESULT_FLAG_STATIC);
560 }
561}
562
Dave Barach97d8dc22016-08-15 15:31:15 -0400563/**
564 * Set the subinterface to run in l2 or l3 mode.
Chris Luke16bcf7d2016-09-01 14:31:46 -0400565 * For L3 mode, just the sw_if_index is specified.
566 * For bridged mode, the bd id and bvi flag are also specified.
567 * For xconnect mode, the peer sw_if_index is also specified.
568 * Return 0 if ok, or non-0 if there was an error.
Dave Barach97d8dc22016-08-15 15:31:15 -0400569 */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700570
Dave Barach97d8dc22016-08-15 15:31:15 -0400571u32
John Lo7100b9c2017-02-28 13:10:52 -0500572set_int_l2_mode (vlib_main_t * vm, vnet_main_t * vnet_main, /* */
573 u32 mode, /* One of L2 modes or back to L3 mode */
574 u32 sw_if_index, /* sw interface index */
575 u32 bd_index, /* for bridged interface */
Neale Rannsb4743802018-09-05 09:13:57 -0700576 l2_bd_port_type_t port_type, /* port_type */
John Lo7100b9c2017-02-28 13:10:52 -0500577 u32 shg, /* the bridged interface split horizon group */
578 u32 xc_sw_if_index) /* peer interface for xconnect */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700579{
Dave Barach97d8dc22016-08-15 15:31:15 -0400580 l2input_main_t *mp = &l2input_main;
581 l2output_main_t *l2om = &l2output_main;
582 vnet_main_t *vnm = vnet_get_main ();
583 vnet_hw_interface_t *hi;
584 l2_output_config_t *out_config;
585 l2_input_config_t *config;
586 l2_bridge_domain_t *bd_config;
Dave Barach97d8dc22016-08-15 15:31:15 -0400587 i32 l2_if_adjust = 0;
Steven4f8863b2018-04-12 19:36:19 -0700588 vnet_device_class_t *dev_class;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700589
590 hi = vnet_get_sup_hw_interface (vnet_main, sw_if_index);
Eyal Baric5b13602016-11-24 19:42:43 +0200591 config = l2input_intf_config (sw_if_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700592
Dave Barach97d8dc22016-08-15 15:31:15 -0400593 if (config->bridge)
594 {
595 /* Interface is already in bridge mode. Undo the existing config. */
596 bd_config = vec_elt_at_index (mp->bd_configs, config->bd_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700597
Dave Barach97d8dc22016-08-15 15:31:15 -0400598 /* remove interface from flood vector */
599 bd_remove_member (bd_config, sw_if_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700600
Dave Barach97d8dc22016-08-15 15:31:15 -0400601 /* undo any BVI-related config */
602 if (bd_config->bvi_sw_if_index == sw_if_index)
603 {
Neale Ranns87dad112018-04-09 01:53:01 -0700604 vnet_sw_interface_t *si;
605
Dave Barach97d8dc22016-08-15 15:31:15 -0400606 bd_config->bvi_sw_if_index = ~0;
607 config->bvi = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700608
Dave Barach97d8dc22016-08-15 15:31:15 -0400609 /* delete the l2fib entry for the bvi interface */
John Lo7dbd7262018-05-31 10:25:18 -0400610 l2fib_del_entry (hi->hw_address, config->bd_index, sw_if_index);
Pierre Pfistere389de72016-03-09 15:56:31 +0000611
Neale Ranns87dad112018-04-09 01:53:01 -0700612 /* since this is a no longer BVI interface do not to flood to it */
613 si = vnet_get_sw_interface (vnm, sw_if_index);
614 si->flood_class = VNET_FLOOD_CLASS_NO_FLOOD;
Dave Barach97d8dc22016-08-15 15:31:15 -0400615 }
Neale Rannsb4743802018-09-05 09:13:57 -0700616 if (bd_config->uu_fwd_sw_if_index == sw_if_index)
617 {
618 bd_config->uu_fwd_sw_if_index = ~0;
619 bd_config->feature_bitmap &= ~L2INPUT_FEAT_UU_FWD;
620 }
John Loda1f2c72017-03-24 20:11:15 -0400621
622 /* Clear MACs learned on the interface */
Eyal Bariafc47aa2017-04-20 14:45:17 +0300623 if ((config->feature_bitmap & L2INPUT_FEAT_LEARN) ||
624 (bd_config->feature_bitmap & L2INPUT_FEAT_LEARN))
John Loda1f2c72017-03-24 20:11:15 -0400625 l2fib_flush_int_mac (vm, sw_if_index);
626
Dave Barach97d8dc22016-08-15 15:31:15 -0400627 l2_if_adjust--;
628 }
629 else if (config->xconnect)
630 {
631 l2_if_adjust--;
632 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700633
John Lob2fd6cb2017-07-12 19:56:45 -0400634 /* Make sure vector is big enough */
John Lobeb0b2e2017-07-22 00:21:36 -0400635 vec_validate_init_empty (l2om->output_node_index_vec, sw_if_index,
636 L2OUTPUT_NEXT_DROP);
John Lo0fc9bc12016-10-27 11:17:02 -0400637
Dave Barach97d8dc22016-08-15 15:31:15 -0400638 /* Initialize the l2-input configuration for the interface */
639 if (mode == MODE_L3)
640 {
John Lo0fc9bc12016-10-27 11:17:02 -0400641 /* Set L2 config to BD index 0 so that if any packet accidentally
642 * came in on L2 path, it will be dropped in BD 0 */
Dave Barach97d8dc22016-08-15 15:31:15 -0400643 config->xconnect = 0;
644 config->bridge = 0;
645 config->shg = 0;
646 config->bd_index = 0;
647 config->feature_bitmap = L2INPUT_FEAT_DROP;
John Lo93a46912016-07-21 14:54:05 -0400648
John Lo7100b9c2017-02-28 13:10:52 -0500649 /* Clear L2 output config */
650 out_config = l2output_intf_config (sw_if_index);
651 memset (out_config, 0, sizeof (l2_output_config_t));
652
John Lo0fc9bc12016-10-27 11:17:02 -0400653 /* Make sure any L2-output packet to this interface now in L3 mode is
654 * dropped. This may happen if L2 FIB MAC entry is stale */
John Lobeb0b2e2017-07-22 00:21:36 -0400655 l2om->output_node_index_vec[sw_if_index] = L2OUTPUT_NEXT_BAD_INTF;
Dave Barach97d8dc22016-08-15 15:31:15 -0400656 }
Dave Barach97d8dc22016-08-15 15:31:15 -0400657 else
658 {
John Lob2fd6cb2017-07-12 19:56:45 -0400659 /* Add or update l2-output node next-arc and output_node_index_vec table
660 * for the interface */
661 l2output_create_output_node_mapping (vm, vnet_main, sw_if_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700662
Dave Barach97d8dc22016-08-15 15:31:15 -0400663 if (mode == MODE_L2_BRIDGE)
664 {
Neale Rannsb4743802018-09-05 09:13:57 -0700665 u8 member_flags;
666
Dave Barach97d8dc22016-08-15 15:31:15 -0400667 /*
668 * Remove a check that the interface must be an Ethernet.
669 * Specifically so we can bridge to L3 tunnel interfaces.
670 * Here's the check:
671 * if (hi->hw_class_index != ethernet_hw_interface_class.index)
672 *
673 */
674 if (!hi)
675 return MODE_ERROR_ETH; /* non-ethernet */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700676
Dave Barach97d8dc22016-08-15 15:31:15 -0400677 config->xconnect = 0;
678 config->bridge = 1;
679 config->bd_index = bd_index;
Eyal Barib12ac562017-07-18 13:25:19 +0300680 *l2fib_valid_swif_seq_num (sw_if_index) += 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700681
Dave Barach97d8dc22016-08-15 15:31:15 -0400682 /*
683 * Enable forwarding, flooding, learning and ARP termination by default
684 * (note that ARP term is disabled on BD feature bitmap by default)
685 */
Neale Rannsb4743802018-09-05 09:13:57 -0700686 config->feature_bitmap |= (L2INPUT_FEAT_FWD |
687 L2INPUT_FEAT_UU_FLOOD |
688 L2INPUT_FEAT_UU_FWD |
689 L2INPUT_FEAT_FLOOD |
690 L2INPUT_FEAT_LEARN |
691 L2INPUT_FEAT_ARP_TERM);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700692
Dave Barach97d8dc22016-08-15 15:31:15 -0400693 /* Make sure last-chance drop is configured */
694 config->feature_bitmap |= L2INPUT_FEAT_DROP;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700695
Dave Barach97d8dc22016-08-15 15:31:15 -0400696 /* Make sure xconnect is disabled */
697 config->feature_bitmap &= ~L2INPUT_FEAT_XCONNECT;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700698
Dave Barach97d8dc22016-08-15 15:31:15 -0400699 /* Set up bridge domain */
Eyal Bariafc47aa2017-04-20 14:45:17 +0300700 bd_config = l2input_bd_config (bd_index);
Dave Barach97d8dc22016-08-15 15:31:15 -0400701 bd_validate (bd_config);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700702
Dave Barach97d8dc22016-08-15 15:31:15 -0400703 /* TODO: think: add l2fib entry even for non-bvi interface? */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700704
Dave Barach97d8dc22016-08-15 15:31:15 -0400705 /* Do BVI interface initializations */
Neale Rannsb4743802018-09-05 09:13:57 -0700706 if (L2_BD_PORT_TYPE_BVI == port_type)
Dave Barach97d8dc22016-08-15 15:31:15 -0400707 {
Neale Ranns87dad112018-04-09 01:53:01 -0700708 vnet_sw_interface_t *si;
709
Dave Barach97d8dc22016-08-15 15:31:15 -0400710 /* ensure BD has no bvi interface (or replace that one with this??) */
711 if (bd_config->bvi_sw_if_index != ~0)
712 {
713 return MODE_ERROR_BVI_DEF; /* bd already has a bvi interface */
714 }
715 bd_config->bvi_sw_if_index = sw_if_index;
716 config->bvi = 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700717
Dave Barach97d8dc22016-08-15 15:31:15 -0400718 /* create the l2fib entry for the bvi interface */
Neale Rannsb54d0812018-09-06 06:22:56 -0700719 l2fib_add_entry (hi->hw_address, bd_index, sw_if_index,
720 L2FIB_ENTRY_RESULT_FLAG_BVI |
721 L2FIB_ENTRY_RESULT_FLAG_STATIC);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700722
Dave Barach97d8dc22016-08-15 15:31:15 -0400723 /* Disable learning by default. no use since l2fib entry is static. */
724 config->feature_bitmap &= ~L2INPUT_FEAT_LEARN;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700725
Neale Ranns87dad112018-04-09 01:53:01 -0700726 /* since this is a BVI interface we want to flood to it */
727 si = vnet_get_sw_interface (vnm, sw_if_index);
728 si->flood_class = VNET_FLOOD_CLASS_BVI;
Neale Rannsb4743802018-09-05 09:13:57 -0700729 member_flags = L2_FLOOD_MEMBER_BVI;
730 }
731 else if (L2_BD_PORT_TYPE_UU_FWD == port_type)
732 {
733 bd_config->uu_fwd_sw_if_index = sw_if_index;
734 bd_config->feature_bitmap |= L2INPUT_FEAT_UU_FWD;
735 }
736 else
737 {
738 member_flags = L2_FLOOD_MEMBER_NORMAL;
Dave Barach97d8dc22016-08-15 15:31:15 -0400739 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700740
Neale Rannsb4743802018-09-05 09:13:57 -0700741 if (L2_BD_PORT_TYPE_NORMAL == port_type ||
742 L2_BD_PORT_TYPE_BVI == port_type)
743 {
744 /* Add interface to bridge-domain flood vector */
745 l2_flood_member_t member = {
746 .sw_if_index = sw_if_index,
747 .flags = member_flags,
748 .shg = shg,
749 };
750 bd_add_member (bd_config, &member);
751 }
Dave Barach97d8dc22016-08-15 15:31:15 -0400752 }
John Lob2fd6cb2017-07-12 19:56:45 -0400753 else if (mode == MODE_L2_XC)
Dave Barach97d8dc22016-08-15 15:31:15 -0400754 {
755 config->xconnect = 1;
756 config->bridge = 0;
757 config->output_sw_if_index = xc_sw_if_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700758
Dave Barach97d8dc22016-08-15 15:31:15 -0400759 /* Make sure last-chance drop is configured */
760 config->feature_bitmap |= L2INPUT_FEAT_DROP;
761
762 /* Make sure bridging features are disabled */
763 config->feature_bitmap &=
764 ~(L2INPUT_FEAT_LEARN | L2INPUT_FEAT_FWD | L2INPUT_FEAT_FLOOD);
765
766 config->feature_bitmap |= L2INPUT_FEAT_XCONNECT;
767 shg = 0; /* not used in xconnect */
768 }
John Lob2fd6cb2017-07-12 19:56:45 -0400769 else if (mode == MODE_L2_CLASSIFY)
770 {
771 config->xconnect = 1;
772 config->bridge = 0;
773 config->output_sw_if_index = xc_sw_if_index;
774
775 /* Make sure last-chance drop is configured */
776 config->feature_bitmap |=
777 L2INPUT_FEAT_DROP | L2INPUT_FEAT_INPUT_CLASSIFY;
778
779 /* Make sure bridging features are disabled */
780 config->feature_bitmap &=
781 ~(L2INPUT_FEAT_LEARN | L2INPUT_FEAT_FWD | L2INPUT_FEAT_FLOOD);
782 shg = 0; /* not used in xconnect */
783
784 /* Insure all packets go to ethernet-input */
785 ethernet_set_rx_redirect (vnet_main, hi, 1);
786 }
Dave Barach97d8dc22016-08-15 15:31:15 -0400787
Andrew Yourtchenkocc405652017-03-03 13:11:30 +0000788 /* set up split-horizon group and set output feature bit */
Dave Barach97d8dc22016-08-15 15:31:15 -0400789 config->shg = shg;
790 out_config = l2output_intf_config (sw_if_index);
791 out_config->shg = shg;
Andrew Yourtchenkocc405652017-03-03 13:11:30 +0000792 out_config->feature_bitmap |= L2OUTPUT_FEAT_OUTPUT;
Dave Barach97d8dc22016-08-15 15:31:15 -0400793
794 /*
795 * Test: remove this when non-IP features can be configured.
796 * Enable a non-IP feature to test IP feature masking
797 * config->feature_bitmap |= L2INPUT_FEAT_CTRL_PKT;
798 */
799
800 l2_if_adjust++;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700801 }
802
Dave Barach97d8dc22016-08-15 15:31:15 -0400803 /* Adjust count of L2 interfaces */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700804 hi->l2_if_count += l2_if_adjust;
805
Dave Barach97d8dc22016-08-15 15:31:15 -0400806 if (hi->hw_class_index == ethernet_hw_interface_class.index)
807 {
808 if ((hi->l2_if_count == 1) && (l2_if_adjust == 1))
809 {
810 /* Just added first L2 interface on this port */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700811
Dave Barach97d8dc22016-08-15 15:31:15 -0400812 /* Set promiscuous mode on the l2 interface */
813 ethernet_set_flags (vnet_main, hi->hw_if_index,
814 ETHERNET_INTERFACE_FLAG_ACCEPT_ALL);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700815
Dave Barach97d8dc22016-08-15 15:31:15 -0400816 /* ensure all packets go to ethernet-input */
817 ethernet_set_rx_redirect (vnet_main, hi, 1);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700818
Dave Barach97d8dc22016-08-15 15:31:15 -0400819 }
820 else if ((hi->l2_if_count == 0) && (l2_if_adjust == -1))
821 {
822 /* Just removed only L2 subinterface on this port */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700823
Dave Barach97d8dc22016-08-15 15:31:15 -0400824 /* Disable promiscuous mode on the l2 interface */
825 ethernet_set_flags (vnet_main, hi->hw_if_index, 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700826
Dave Barach97d8dc22016-08-15 15:31:15 -0400827 /* Allow ip packets to go directly to ip4-input etc */
828 ethernet_set_rx_redirect (vnet_main, hi, 0);
829 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700830 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700831
Dave Barach97d8dc22016-08-15 15:31:15 -0400832 /* Set up the L2/L3 flag in the interface parsing tables */
833 ethernet_sw_interface_set_l2_mode (vnm, sw_if_index, (mode != MODE_L3));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700834
Steven4f8863b2018-04-12 19:36:19 -0700835 dev_class = vnet_get_device_class (vnet_main, hi->dev_class_index);
836 if (dev_class->set_l2_mode_function)
837 {
838 dev_class->set_l2_mode_function (vnet_main, hi, l2_if_adjust);
839 }
840
Ed Warnickecb9cada2015-12-08 15:45:58 -0700841 return 0;
842}
843
Dave Barach97d8dc22016-08-15 15:31:15 -0400844/**
Chris Luke16bcf7d2016-09-01 14:31:46 -0400845 * Set subinterface in bridging mode with a bridge-domain ID.
Dave Barach97d8dc22016-08-15 15:31:15 -0400846 * The CLI format is:
847 * set interface l2 bridge <interface> <bd> [bvi] [split-horizon-group]
848 */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700849static clib_error_t *
Dave Barach97d8dc22016-08-15 15:31:15 -0400850int_l2_bridge (vlib_main_t * vm,
851 unformat_input_t * input, vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700852{
Dave Barach97d8dc22016-08-15 15:31:15 -0400853 vnet_main_t *vnm = vnet_get_main ();
Neale Rannsb4743802018-09-05 09:13:57 -0700854 l2_bd_port_type_t port_type;
Dave Barach97d8dc22016-08-15 15:31:15 -0400855 clib_error_t *error = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700856 u32 bd_index, bd_id;
857 u32 sw_if_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700858 u32 rc;
859 u32 shg;
860
Dave Barach97d8dc22016-08-15 15:31:15 -0400861 if (!unformat_user (input, unformat_vnet_sw_interface, vnm, &sw_if_index))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700862 {
863 error = clib_error_return (0, "unknown interface `%U'",
Dave Barach97d8dc22016-08-15 15:31:15 -0400864 format_unformat_error, input);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700865 goto done;
866 }
867
Dave Barach97d8dc22016-08-15 15:31:15 -0400868 if (!unformat (input, "%d", &bd_id))
869 {
Ed Warnickecb9cada2015-12-08 15:45:58 -0700870 error = clib_error_return (0, "expected bridge domain ID `%U'",
Dave Barach97d8dc22016-08-15 15:31:15 -0400871 format_unformat_error, input);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700872 goto done;
Dave Barach97d8dc22016-08-15 15:31:15 -0400873 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700874
John Lo97934772017-05-18 22:26:47 -0400875 if (bd_id > L2_BD_ID_MAX)
876 {
877 error = clib_error_return (0, "bridge domain ID exceed 16M limit",
878 format_unformat_error, input);
879 goto done;
880 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700881 bd_index = bd_find_or_add_bd_index (&bd_main, bd_id);
882
Dave Barach97d8dc22016-08-15 15:31:15 -0400883 /* optional bvi */
Neale Rannsb4743802018-09-05 09:13:57 -0700884 port_type = L2_BD_PORT_TYPE_NORMAL;
885 if (unformat (input, "bvi"))
886 port_type = L2_BD_PORT_TYPE_BVI;
887 if (unformat (input, "uu-fwd"))
888 port_type = L2_BD_PORT_TYPE_UU_FWD;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700889
Dave Barach97d8dc22016-08-15 15:31:15 -0400890 /* optional split horizon group */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700891 shg = 0;
892 (void) unformat (input, "%d", &shg);
893
Dave Barach97d8dc22016-08-15 15:31:15 -0400894 /* set the interface mode */
895 if ((rc =
Neale Rannsb4743802018-09-05 09:13:57 -0700896 set_int_l2_mode (vm, vnm, MODE_L2_BRIDGE, sw_if_index, bd_index,
897 port_type, shg, 0)))
Dave Barach97d8dc22016-08-15 15:31:15 -0400898 {
899 if (rc == MODE_ERROR_ETH)
900 {
901 error = clib_error_return (0, "bridged interface must be ethernet",
902 format_unformat_error, input);
903 }
904 else if (rc == MODE_ERROR_BVI_DEF)
905 {
906 error =
907 clib_error_return (0, "bridge-domain already has a bvi interface",
908 format_unformat_error, input);
909 }
910 else
911 {
912 error = clib_error_return (0, "invalid configuration for interface",
913 format_unformat_error, input);
914 }
915 goto done;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700916 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700917
Dave Barach97d8dc22016-08-15 15:31:15 -0400918done:
Ed Warnickecb9cada2015-12-08 15:45:58 -0700919 return error;
920}
921
Keith Burns (alagalah)6ef7bb92016-09-10 14:55:04 -0700922/*?
Billy McFall22aa3e92016-09-09 08:46:40 -0400923 * Use this command put an interface into Layer 2 bridge domain. If a
924 * bridge-domain with the provided bridge-domain-id does not exist, it
925 * will be created. Interfaces in a bridge-domain forward packets to
926 * other interfaces in the same bridge-domain based on destination mac
927 * address. To remove an interface from a the Layer 2 bridge domain,
928 * put the interface in a different mode, for example Layer 3 mode.
929 *
930 * Optionally, an interface can be added to a Layer 2 bridge-domain as
931 * a Bridged Virtual Interface (bvi). Only one interface in a Layer 2
932 * bridge-domain can be a bvi.
933 *
934 * Optionally, a split-horizon group can also be specified. This defaults
935 * to 0 if not specified.
Keith Burns (alagalah)6ef7bb92016-09-10 14:55:04 -0700936 *
937 * @cliexpar
Billy McFall22aa3e92016-09-09 08:46:40 -0400938 * Example of how to configure a Layer 2 bridge-domain with three
939 * interfaces (where 200 is the bridge-domain-id):
940 * @cliexcmd{set interface l2 bridge GigabitEthernet0/8/0.200 200}
941 * This interface is added a BVI interface:
942 * @cliexcmd{set interface l2 bridge GigabitEthernet0/9/0.200 200 bvi}
943 * This interface also has a split-horizon group of 1 specified:
944 * @cliexcmd{set interface l2 bridge GigabitEthernet0/a/0.200 200 1}
945 * Example of how to remove an interface from a Layer2 bridge-domain:
946 * @cliexcmd{set interface l3 GigabitEthernet0/a/0.200}
947?*/
948/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700949VLIB_CLI_COMMAND (int_l2_bridge_cli, static) = {
950 .path = "set interface l2 bridge",
Neale Rannsb4743802018-09-05 09:13:57 -0700951 .short_help = "set interface l2 bridge <interface> <bridge-domain-id> [bvi|uu-fwd] [shg]",
Ed Warnickecb9cada2015-12-08 15:45:58 -0700952 .function = int_l2_bridge,
953};
Dave Barach97d8dc22016-08-15 15:31:15 -0400954/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700955
Dave Barach97d8dc22016-08-15 15:31:15 -0400956/**
Chris Luke16bcf7d2016-09-01 14:31:46 -0400957 * Set subinterface in xconnect mode with another interface.
Dave Barach97d8dc22016-08-15 15:31:15 -0400958 * The CLI format is:
959 * set interface l2 xconnect <interface> <peer interface>
960 */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700961static clib_error_t *
962int_l2_xc (vlib_main_t * vm,
Dave Barach97d8dc22016-08-15 15:31:15 -0400963 unformat_input_t * input, vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700964{
Dave Barach97d8dc22016-08-15 15:31:15 -0400965 vnet_main_t *vnm = vnet_get_main ();
966 clib_error_t *error = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700967 u32 sw_if_index;
968 u32 xc_sw_if_index;
969
Dave Barach97d8dc22016-08-15 15:31:15 -0400970 if (!unformat_user (input, unformat_vnet_sw_interface, vnm, &sw_if_index))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700971 {
972 error = clib_error_return (0, "unknown interface `%U'",
Dave Barach97d8dc22016-08-15 15:31:15 -0400973 format_unformat_error, input);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700974 goto done;
975 }
976
Dave Barach97d8dc22016-08-15 15:31:15 -0400977 if (!unformat_user
978 (input, unformat_vnet_sw_interface, vnm, &xc_sw_if_index))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700979 {
980 error = clib_error_return (0, "unknown peer interface `%U'",
Dave Barach97d8dc22016-08-15 15:31:15 -0400981 format_unformat_error, input);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700982 goto done;
983 }
984
Dave Barach97d8dc22016-08-15 15:31:15 -0400985 /* set the interface mode */
986 if (set_int_l2_mode
Neale Rannsb4743802018-09-05 09:13:57 -0700987 (vm, vnm, MODE_L2_XC, sw_if_index, 0, L2_BD_PORT_TYPE_NORMAL,
988 0, xc_sw_if_index))
Dave Barach97d8dc22016-08-15 15:31:15 -0400989 {
Ed Warnickecb9cada2015-12-08 15:45:58 -0700990 error = clib_error_return (0, "invalid configuration for interface",
Dave Barach97d8dc22016-08-15 15:31:15 -0400991 format_unformat_error, input);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700992 goto done;
Dave Barach97d8dc22016-08-15 15:31:15 -0400993 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700994
Dave Barach97d8dc22016-08-15 15:31:15 -0400995done:
Ed Warnickecb9cada2015-12-08 15:45:58 -0700996 return error;
997}
998
Keith Burns (alagalah)6ef7bb92016-09-10 14:55:04 -0700999/*?
Billy McFall22aa3e92016-09-09 08:46:40 -04001000 * Use this command put an interface into Layer 2 cross-connect mode.
Paul Vinciguerrabdc0e6b2018-09-22 05:32:50 -07001001 * Both interfaces must be in this mode for bi-directional traffic. All
Billy McFall22aa3e92016-09-09 08:46:40 -04001002 * packets received on one interface will be transmitted to the other.
1003 * To remove the Layer 2 cross-connect, put the interface in a different
1004 * mode, for example Layer 3 mode.
1005 *
Keith Burns (alagalah)6ef7bb92016-09-10 14:55:04 -07001006 * @cliexpar
Billy McFall22aa3e92016-09-09 08:46:40 -04001007 * Example of how to configure a Layer2 cross-connect between two interfaces:
1008 * @cliexcmd{set interface l2 xconnect GigabitEthernet0/8/0.300 GigabitEthernet0/9/0.300}
1009 * @cliexcmd{set interface l2 xconnect GigabitEthernet0/9/0.300 GigabitEthernet0/8/0.300}
1010 * Example of how to remove a Layer2 cross-connect:
1011 * @cliexcmd{set interface l3 GigabitEthernet0/8/0.300}
1012 * @cliexcmd{set interface l3 GigabitEthernet0/9/0.300}
1013?*/
1014/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07001015VLIB_CLI_COMMAND (int_l2_xc_cli, static) = {
1016 .path = "set interface l2 xconnect",
Keith Burns (alagalah)6ef7bb92016-09-10 14:55:04 -07001017 .short_help = "set interface l2 xconnect <interface> <peer interface>",
Ed Warnickecb9cada2015-12-08 15:45:58 -07001018 .function = int_l2_xc,
1019};
Dave Barach97d8dc22016-08-15 15:31:15 -04001020/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07001021
Dave Barach97d8dc22016-08-15 15:31:15 -04001022/**
Chris Luke16bcf7d2016-09-01 14:31:46 -04001023 * Set subinterface in L3 mode.
Dave Barach97d8dc22016-08-15 15:31:15 -04001024 * The CLI format is:
1025 * set interface l3 <interface>
1026 */
Ed Warnickecb9cada2015-12-08 15:45:58 -07001027static clib_error_t *
Dave Barach97d8dc22016-08-15 15:31:15 -04001028int_l3 (vlib_main_t * vm, unformat_input_t * input, vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001029{
Dave Barach97d8dc22016-08-15 15:31:15 -04001030 vnet_main_t *vnm = vnet_get_main ();
1031 clib_error_t *error = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001032 u32 sw_if_index;
1033
Dave Barach97d8dc22016-08-15 15:31:15 -04001034 if (!unformat_user (input, unformat_vnet_sw_interface, vnm, &sw_if_index))
Ed Warnickecb9cada2015-12-08 15:45:58 -07001035 {
1036 error = clib_error_return (0, "unknown interface `%U'",
Dave Barach97d8dc22016-08-15 15:31:15 -04001037 format_unformat_error, input);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001038 goto done;
1039 }
1040
Dave Barach97d8dc22016-08-15 15:31:15 -04001041 /* set the interface mode */
Neale Rannsb4743802018-09-05 09:13:57 -07001042 if (set_int_l2_mode (vm, vnm, MODE_L3, sw_if_index, 0,
1043 L2_BD_PORT_TYPE_NORMAL, 0, 0))
Dave Barach97d8dc22016-08-15 15:31:15 -04001044 {
Ed Warnickecb9cada2015-12-08 15:45:58 -07001045 error = clib_error_return (0, "invalid configuration for interface",
Dave Barach97d8dc22016-08-15 15:31:15 -04001046 format_unformat_error, input);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001047 goto done;
Dave Barach97d8dc22016-08-15 15:31:15 -04001048 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001049
Dave Barach97d8dc22016-08-15 15:31:15 -04001050done:
Ed Warnickecb9cada2015-12-08 15:45:58 -07001051 return error;
1052}
1053
Keith Burns (alagalah)6ef7bb92016-09-10 14:55:04 -07001054/*?
Billy McFall22aa3e92016-09-09 08:46:40 -04001055 * Modify the packet processing mode of the interface to Layer 3, which
1056 * implies packets will be routed. This is the default mode of an interface.
1057 * Use this command to remove an interface from a Layer 2 cross-connect or a
1058 * Layer 2 bridge.
Keith Burns (alagalah)6ef7bb92016-09-10 14:55:04 -07001059 *
1060 * @cliexpar
Billy McFall22aa3e92016-09-09 08:46:40 -04001061 * Example of how to set the mode of an interface to Layer 3:
1062 * @cliexcmd{set interface l3 GigabitEthernet0/8/0.200}
1063?*/
1064/* *INDENT-OFF* */
Keith Burns (alagalah)6ef7bb92016-09-10 14:55:04 -07001065 VLIB_CLI_COMMAND (int_l3_cli, static) = {
Ed Warnickecb9cada2015-12-08 15:45:58 -07001066 .path = "set interface l3",
Billy McFall22aa3e92016-09-09 08:46:40 -04001067 .short_help = "set interface l3 <interface>",
Ed Warnickecb9cada2015-12-08 15:45:58 -07001068 .function = int_l3,
1069};
Dave Barach97d8dc22016-08-15 15:31:15 -04001070/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07001071
Dave Barach97d8dc22016-08-15 15:31:15 -04001072/**
Chris Luke16bcf7d2016-09-01 14:31:46 -04001073 * Show interface mode.
Dave Barach97d8dc22016-08-15 15:31:15 -04001074 * The CLI format is:
1075 * show mode [<if-name1> <if-name2> ...]
1076 */
Ed Warnickecb9cada2015-12-08 15:45:58 -07001077static clib_error_t *
Dave Barach97d8dc22016-08-15 15:31:15 -04001078show_int_mode (vlib_main_t * vm,
1079 unformat_input_t * input, vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001080{
Dave Barach97d8dc22016-08-15 15:31:15 -04001081 vnet_main_t *vnm = vnet_get_main ();
1082 clib_error_t *error = 0;
1083 char *mode;
1084 u8 *args;
1085 vnet_interface_main_t *im = &vnm->interface_main;
Dave Barach97d8dc22016-08-15 15:31:15 -04001086
Eyal Bariafc47aa2017-04-20 14:45:17 +03001087 vnet_sw_interface_t *si, *sis = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001088 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
1089 {
Dave Barach97d8dc22016-08-15 15:31:15 -04001090 u32 sw_if_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001091
1092 /* See if user wants to show specific interface */
Dave Barach97d8dc22016-08-15 15:31:15 -04001093 if (unformat
1094 (input, "%U", unformat_vnet_sw_interface, vnm, &sw_if_index))
Ed Warnickecb9cada2015-12-08 15:45:58 -07001095 {
Dave Barach97d8dc22016-08-15 15:31:15 -04001096 si = pool_elt_at_index (im->sw_interfaces, sw_if_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001097 vec_add1 (sis, si[0]);
1098 }
1099 else
Dave Barach97d8dc22016-08-15 15:31:15 -04001100 {
Ed Warnickecb9cada2015-12-08 15:45:58 -07001101 error = clib_error_return (0, "unknown input `%U'",
1102 format_unformat_error, input);
1103 goto done;
Dave Barach97d8dc22016-08-15 15:31:15 -04001104 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001105 }
1106
Dave Barach97d8dc22016-08-15 15:31:15 -04001107 if (vec_len (sis) == 0) /* Get all interfaces */
Ed Warnickecb9cada2015-12-08 15:45:58 -07001108 {
1109 /* Gather interfaces. */
1110 sis = vec_new (vnet_sw_interface_t, pool_elts (im->sw_interfaces));
1111 _vec_len (sis) = 0;
Dave Barach97d8dc22016-08-15 15:31:15 -04001112 /* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07001113 pool_foreach (si, im->sw_interfaces, ({ vec_add1 (sis, si[0]); }));
Dave Barach97d8dc22016-08-15 15:31:15 -04001114 /* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07001115 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001116
Dave Barach97d8dc22016-08-15 15:31:15 -04001117 vec_foreach (si, sis)
1118 {
Eyal Bariafc47aa2017-04-20 14:45:17 +03001119 l2_input_config_t *config = l2input_intf_config (si->sw_if_index);
Dave Barach97d8dc22016-08-15 15:31:15 -04001120 if (config->bridge)
1121 {
1122 u32 bd_id;
1123 mode = "l2 bridge";
1124 bd_id = l2input_main.bd_configs[config->bd_index].bd_id;
1125
1126 args = format (0, "bd_id %d%s%d", bd_id,
1127 config->bvi ? " bvi shg " : " shg ", config->shg);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001128 }
Dave Barach97d8dc22016-08-15 15:31:15 -04001129 else if (config->xconnect)
1130 {
1131 mode = "l2 xconnect";
1132 args = format (0, "%U",
1133 format_vnet_sw_if_index_name,
1134 vnm, config->output_sw_if_index);
1135 }
1136 else
1137 {
1138 mode = "l3";
1139 args = format (0, " ");
1140 }
1141 vlib_cli_output (vm, "%s %U %v\n",
1142 mode,
1143 format_vnet_sw_if_index_name,
1144 vnm, si->sw_if_index, args);
1145 vec_free (args);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001146 }
1147
1148done:
1149 vec_free (sis);
Dave Barach97d8dc22016-08-15 15:31:15 -04001150
Ed Warnickecb9cada2015-12-08 15:45:58 -07001151 return error;
1152}
1153
Billy McFall22aa3e92016-09-09 08:46:40 -04001154/*?
Paul Vinciguerrabdc0e6b2018-09-22 05:32:50 -07001155 * Show the packet processing mode (Layer2 cross-connect, Layer 2 bridge,
Billy McFall22aa3e92016-09-09 08:46:40 -04001156 * Layer 3 routed) of all interfaces and sub-interfaces, or limit the
1157 * output to just the provided list of interfaces and sub-interfaces.
1158 * The output shows the mode, the interface, and if the interface is
Paul Vinciguerrabdc0e6b2018-09-22 05:32:50 -07001159 * a member of a bridge, the bridge-domain-id and the split horizon group (shg).
Billy McFall22aa3e92016-09-09 08:46:40 -04001160 *
1161 * @cliexpar
1162 * Example of displaying the mode of all interfaces:
1163 * @cliexstart{show mode}
1164 * l3 local0
1165 * l3 GigabitEthernet0/8/0
1166 * l3 GigabitEthernet0/9/0
1167 * l3 GigabitEthernet0/a/0
1168 * l2 bridge GigabitEthernet0/8/0.200 bd_id 200 shg 0
1169 * l2 bridge GigabitEthernet0/9/0.200 bd_id 200 shg 0
1170 * l2 bridge GigabitEthernet0/a/0.200 bd_id 200 shg 0
1171 * l2 xconnect GigabitEthernet0/8/0.300 GigabitEthernet0/9/0.300
1172 * l2 xconnect GigabitEthernet0/9/0.300 GigabitEthernet0/8/0.300
1173 * @cliexend
Paul Vinciguerrabdc0e6b2018-09-22 05:32:50 -07001174 * Example of displaying the mode of a selected list of interfaces:
Billy McFall22aa3e92016-09-09 08:46:40 -04001175 * @cliexstart{show mode GigabitEthernet0/8/0 GigabitEthernet0/8/0.200}
1176 * l3 GigabitEthernet0/8/0
1177 * l2 bridge GigabitEthernet0/8/0.200 bd_id 200 shg 0
1178 * @cliexend
1179?*/
Dave Barach97d8dc22016-08-15 15:31:15 -04001180/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07001181VLIB_CLI_COMMAND (show_l2_mode, static) = {
1182 .path = "show mode",
1183 .short_help = "show mode [<if-name1> <if-name2> ...]",
1184 .function = show_int_mode,
1185};
Dave Barach97d8dc22016-08-15 15:31:15 -04001186/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07001187
1188#define foreach_l2_init_function \
1189_(feat_bitmap_drop_init) \
1190_(l2fib_init) \
Dave Barachb84a3e52016-08-30 17:01:52 -04001191_(l2_input_classify_init) \
Ed Warnickecb9cada2015-12-08 15:45:58 -07001192_(l2bd_init) \
1193_(l2fwd_init) \
Andrew Yourtchenko815d7d52018-02-07 11:37:02 +01001194_(l2_in_out_acl_init) \
Ed Warnickecb9cada2015-12-08 15:45:58 -07001195_(l2input_init) \
1196_(l2_vtr_init) \
1197_(l2_invtr_init) \
1198_(l2_efp_filter_init) \
1199_(l2learn_init) \
1200_(l2flood_init) \
Ed Warnickecb9cada2015-12-08 15:45:58 -07001201_(l2output_init) \
1202_(l2_patch_init) \
1203_(l2_xcrw_init)
1204
Dave Barach97d8dc22016-08-15 15:31:15 -04001205clib_error_t *
1206l2_init (vlib_main_t * vm)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001207{
Dave Barach97d8dc22016-08-15 15:31:15 -04001208 clib_error_t *error;
1209
Ed Warnickecb9cada2015-12-08 15:45:58 -07001210#define _(a) do { \
1211 if ((error = vlib_call_init_function (vm, a))) return error; } \
1212while (0);
1213 foreach_l2_init_function;
1214#undef _
1215 return 0;
1216}
1217
1218VLIB_INIT_FUNCTION (l2_init);
Dave Barach97d8dc22016-08-15 15:31:15 -04001219
1220/*
1221 * fd.io coding-style-patch-verification: ON
1222 *
1223 * Local Variables:
1224 * eval: (c-set-style "gnu")
1225 * End:
1226 */