blob: fddab82426c350728e21c956137e3c824309d93f [file] [log] [blame]
Ed Warnickecb9cada2015-12-08 15:45:58 -07001/*
2 * l2_learn.c : layer 2 learning using l2fib
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 <vlib/cli.h>
23
24#include <vnet/l2/l2_input.h>
25#include <vnet/l2/feat_bitmap.h>
26#include <vnet/l2/l2_fib.h>
27#include <vnet/l2/l2_learn.h>
28
29#include <vppinfra/error.h>
30#include <vppinfra/hash.h>
31
Chris Luke16bcf7d2016-09-01 14:31:46 -040032/**
33 * @file
Billy McFall22aa3e92016-09-09 08:46:40 -040034 * @brief Ethernet Bridge Learning.
Ed Warnickecb9cada2015-12-08 15:45:58 -070035 *
36 * Populate the mac table with entries mapping the packet's source mac + bridge
Dave Barach97d8dc22016-08-15 15:31:15 -040037 * domain ID to the input sw_if_index.
Ed Warnickecb9cada2015-12-08 15:45:58 -070038 *
39 * Note that learning and forwarding are separate graph nodes. This means that
40 * for a set of packets, all learning is performed first, then all nodes are
41 * forwarded. The forwarding is done based on the end-state of the mac table,
42 * instead of the state after each packet. Thus the forwarding results could
43 * differ in certain cases (mac move tests), but this not expected to cause
44 * problems in real-world networks. It is much simpler to separate learning
45 * and forwarding into separate nodes.
46 */
47
48
Dave Barach97d8dc22016-08-15 15:31:15 -040049typedef struct
50{
Ed Warnickecb9cada2015-12-08 15:45:58 -070051 u8 src[6];
52 u8 dst[6];
53 u32 sw_if_index;
54 u16 bd_index;
55} l2learn_trace_t;
56
57
58/* packet trace format function */
Dave Barach97d8dc22016-08-15 15:31:15 -040059static u8 *
60format_l2learn_trace (u8 * s, va_list * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -070061{
62 CLIB_UNUSED (vlib_main_t * vm) = va_arg (*args, vlib_main_t *);
63 CLIB_UNUSED (vlib_node_t * node) = va_arg (*args, vlib_node_t *);
Dave Barach97d8dc22016-08-15 15:31:15 -040064 l2learn_trace_t *t = va_arg (*args, l2learn_trace_t *);
65
Ed Warnickecb9cada2015-12-08 15:45:58 -070066 s = format (s, "l2-learn: sw_if_index %d dst %U src %U bd_index %d",
Dave Barach97d8dc22016-08-15 15:31:15 -040067 t->sw_if_index,
68 format_ethernet_address, t->dst,
69 format_ethernet_address, t->src, t->bd_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -070070 return s;
71}
72
73static vlib_node_registration_t l2learn_node;
74
75#define foreach_l2learn_error \
76_(L2LEARN, "L2 learn packets") \
77_(MISS, "L2 learn misses") \
78_(MAC_MOVE, "L2 mac moves") \
79_(MAC_MOVE_VIOLATE, "L2 mac move violations") \
80_(LIMIT, "L2 not learned due to limit") \
John Lodbfa5742017-09-02 08:27:36 -040081_(HIT_UPDATE, "L2 learn hit updates") \
Dave Barach97d8dc22016-08-15 15:31:15 -040082_(FILTER_DROP, "L2 filter mac drops")
Ed Warnickecb9cada2015-12-08 15:45:58 -070083
Dave Barach97d8dc22016-08-15 15:31:15 -040084typedef enum
85{
Ed Warnickecb9cada2015-12-08 15:45:58 -070086#define _(sym,str) L2LEARN_ERROR_##sym,
87 foreach_l2learn_error
88#undef _
Dave Barach97d8dc22016-08-15 15:31:15 -040089 L2LEARN_N_ERROR,
Ed Warnickecb9cada2015-12-08 15:45:58 -070090} l2learn_error_t;
91
Dave Barach97d8dc22016-08-15 15:31:15 -040092static char *l2learn_error_strings[] = {
Ed Warnickecb9cada2015-12-08 15:45:58 -070093#define _(sym,string) string,
94 foreach_l2learn_error
95#undef _
96};
97
Dave Barach97d8dc22016-08-15 15:31:15 -040098typedef enum
99{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700100 L2LEARN_NEXT_L2FWD,
101 L2LEARN_NEXT_DROP,
102 L2LEARN_N_NEXT,
103} l2learn_next_t;
104
105
Chris Luke16bcf7d2016-09-01 14:31:46 -0400106/** Perform learning on one packet based on the mac table lookup result. */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700107
108static_always_inline void
109l2learn_process (vlib_node_runtime_t * node,
Dave Barach97d8dc22016-08-15 15:31:15 -0400110 l2learn_main_t * msm,
111 u64 * counter_base,
112 vlib_buffer_t * b0,
113 u32 sw_if_index0,
114 l2fib_entry_key_t * key0,
115 l2fib_entry_key_t * cached_key,
John Lodbfa5742017-09-02 08:27:36 -0400116 u32 * count,
Damjan Mariond171d482016-12-05 14:16:38 +0100117 l2fib_entry_result_t * result0, u32 * next0, u8 timestamp)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700118{
Dave Barach97d8dc22016-08-15 15:31:15 -0400119 /* Set up the default next node (typically L2FWD) */
John Lobeb0b2e2017-07-22 00:21:36 -0400120 *next0 = vnet_l2_feature_next (b0, msm->feat_next_node_index,
121 L2INPUT_FEAT_LEARN);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700122
Dave Barach97d8dc22016-08-15 15:31:15 -0400123 /* Check mac table lookup result */
Dave Barach97d8dc22016-08-15 15:31:15 -0400124 if (PREDICT_TRUE (result0->fields.sw_if_index == sw_if_index0))
125 {
John Lo8d00fff2017-08-03 00:35:36 -0400126 /* Entry in L2FIB with matching sw_if_index matched - normal fast path */
John Lodbfa5742017-09-02 08:27:36 -0400127 u32 dtime = timestamp - result0->fields.timestamp;
128 u32 dsn = result0->fields.sn.as_u16 - vnet_buffer (b0)->l2.l2fib_sn;
John Lo5a6508d2017-10-03 13:13:47 -0400129 u32 check = (dtime && vnet_buffer (b0)->l2.bd_age) || dsn;
Eyal Bari31a71ab2017-06-25 14:42:33 +0300130
John Lodbfa5742017-09-02 08:27:36 -0400131 if (PREDICT_TRUE (check == 0))
132 return; /* MAC entry up to date */
133 if (result0->fields.age_not)
134 return; /* Static MAC always age_not */
135 if (msm->global_learn_count > msm->global_learn_limit)
John Loe531f4c2017-08-22 09:16:50 -0400136 return; /* Above learn limit - do not update */
John Lodbfa5742017-09-02 08:27:36 -0400137
138 /* Limit updates per l2-learn node call to avoid prolonged update burst
John Lo5a6508d2017-10-03 13:13:47 -0400139 * as dtime advance over 1 minute mark, unless more than 1 min behind
140 * or SN obsolete */
141 if ((*count > 2) && (dtime == 1) && (dsn == 0))
John Lodbfa5742017-09-02 08:27:36 -0400142 return;
143
144 counter_base[L2LEARN_ERROR_HIT_UPDATE] += 1;
145 *count += 1;
Dave Barach97d8dc22016-08-15 15:31:15 -0400146 }
147 else if (result0->raw == ~0)
148 {
John Lo8d00fff2017-08-03 00:35:36 -0400149 /* Entry not in L2FIB - add it */
Dave Barach97d8dc22016-08-15 15:31:15 -0400150 counter_base[L2LEARN_ERROR_MISS] += 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700151
John Lo8d00fff2017-08-03 00:35:36 -0400152 if (msm->global_learn_count >= msm->global_learn_limit)
Dave Barach97d8dc22016-08-15 15:31:15 -0400153 {
154 /*
155 * Global limit reached. Do not learn the mac but forward the packet.
156 * In the future, limits could also be per-interface or bridge-domain.
157 */
158 counter_base[L2LEARN_ERROR_LIMIT] += 1;
Eyal Bari31a71ab2017-06-25 14:42:33 +0300159 return;
Dave Barach97d8dc22016-08-15 15:31:15 -0400160 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700161
John Lo8d00fff2017-08-03 00:35:36 -0400162 /* Do not learn if mac is 0 */
163 l2fib_entry_key_t key = *key0;
164 key.fields.bd_index = 0;
165 if (key.raw == 0)
166 return;
167
Eyal Bari31a71ab2017-06-25 14:42:33 +0300168 /* It is ok to learn */
169 msm->global_learn_count++;
170 result0->raw = 0; /* clear all fields */
171 result0->fields.sw_if_index = sw_if_index0;
John Lo8d00fff2017-08-03 00:35:36 -0400172 result0->fields.lrn_evt = (msm->client_pid != 0);
Dave Barach97d8dc22016-08-15 15:31:15 -0400173 }
174 else
175 {
John Lo8d00fff2017-08-03 00:35:36 -0400176 /* Entry in L2FIB with different sw_if_index - mac move or filter */
Eyal Bari31a71ab2017-06-25 14:42:33 +0300177 if (result0->fields.filter)
178 {
179 ASSERT (result0->fields.sw_if_index == ~0);
180 /* drop packet because lookup matched a filter mac entry */
181 b0->error = node->errors[L2LEARN_ERROR_FILTER_DROP];
182 *next0 = L2LEARN_NEXT_DROP;
183 return;
184 }
185
Dave Barach97d8dc22016-08-15 15:31:15 -0400186 if (result0->fields.static_mac)
187 {
188 /*
189 * Don't overwrite a static mac
190 * TODO: Check violation policy. For now drop the packet
191 */
192 b0->error = node->errors[L2LEARN_ERROR_MAC_MOVE_VIOLATE];
193 *next0 = L2LEARN_NEXT_DROP;
Eyal Bari31a71ab2017-06-25 14:42:33 +0300194 return;
Dave Barach97d8dc22016-08-15 15:31:15 -0400195 }
Dave Barach97d8dc22016-08-15 15:31:15 -0400196
Eyal Bari31a71ab2017-06-25 14:42:33 +0300197 /*
198 * TODO: may want to rate limit mac moves
199 * TODO: check global/bridge domain/interface learn limits
200 */
201 result0->fields.sw_if_index = sw_if_index0;
John Lo8d00fff2017-08-03 00:35:36 -0400202 if (result0->fields.age_not) /* The mac was provisioned */
203 {
204 msm->global_learn_count++;
205 result0->fields.age_not = 0;
206 }
207 result0->fields.lrn_evt = (msm->client_pid != 0);
208 counter_base[L2LEARN_ERROR_MAC_MOVE] += 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700209 }
210
Eyal Bari31a71ab2017-06-25 14:42:33 +0300211 /* Update the entry */
212 result0->fields.timestamp = timestamp;
213 result0->fields.sn.as_u16 = vnet_buffer (b0)->l2.l2fib_sn;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700214
Eyal Bari31a71ab2017-06-25 14:42:33 +0300215 BVT (clib_bihash_kv) kv;
216 kv.key = key0->raw;
217 kv.value = result0->raw;
218 BV (clib_bihash_add_del) (msm->mac_table, &kv, 1 /* is_add */ );
John Lodbfa5742017-09-02 08:27:36 -0400219
220 /* Invalidate the cache */
221 cached_key->raw = ~0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700222}
223
224
Dave Barach681abe42017-02-15 09:01:01 -0500225static_always_inline uword
226l2learn_node_inline (vlib_main_t * vm, vlib_node_runtime_t * node,
227 vlib_frame_t * frame, int do_trace)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700228{
Dave Barach97d8dc22016-08-15 15:31:15 -0400229 u32 n_left_from, *from, *to_next;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700230 l2learn_next_t next_index;
Dave Barach97d8dc22016-08-15 15:31:15 -0400231 l2learn_main_t *msm = &l2learn_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700232 vlib_node_t *n = vlib_get_node (vm, l2learn_node.index);
233 u32 node_counter_base_index = n->error_heap_index;
Dave Barach97d8dc22016-08-15 15:31:15 -0400234 vlib_error_main_t *em = &vm->error_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700235 l2fib_entry_key_t cached_key;
236 l2fib_entry_result_t cached_result;
Damjan Mariond171d482016-12-05 14:16:38 +0100237 u8 timestamp = (u8) (vlib_time_now (vm) / 60);
John Lodbfa5742017-09-02 08:27:36 -0400238 u32 count = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700239
240 from = vlib_frame_vector_args (frame);
Dave Barach97d8dc22016-08-15 15:31:15 -0400241 n_left_from = frame->n_vectors; /* number of packets to process */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700242 next_index = node->cached_next_index;
Dave Barach97d8dc22016-08-15 15:31:15 -0400243
244 /* Clear the one-entry cache in case mac table was updated */
245 cached_key.raw = ~0;
246 cached_result.raw = ~0; /* warning be gone */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700247
248 while (n_left_from > 0)
249 {
250 u32 n_left_to_next;
251
252 /* get space to enqueue frame to graph node "next_index" */
Dave Barach97d8dc22016-08-15 15:31:15 -0400253 vlib_get_next_frame (vm, node, next_index, to_next, n_left_to_next);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700254
Damjan Mariondc5252b2016-11-24 19:25:01 -0800255 while (n_left_from >= 8 && n_left_to_next >= 4)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700256 {
Damjan Mariondc5252b2016-11-24 19:25:01 -0800257 u32 bi0, bi1, bi2, bi3;
258 vlib_buffer_t *b0, *b1, *b2, *b3;
259 u32 next0, next1, next2, next3;
260 u32 sw_if_index0, sw_if_index1, sw_if_index2, sw_if_index3;
261 ethernet_header_t *h0, *h1, *h2, *h3;
262 l2fib_entry_key_t key0, key1, key2, key3;
263 l2fib_entry_result_t result0, result1, result2, result3;
264 u32 bucket0, bucket1, bucket2, bucket3;
Dave Barach97d8dc22016-08-15 15:31:15 -0400265
Ed Warnickecb9cada2015-12-08 15:45:58 -0700266 /* Prefetch next iteration. */
267 {
Damjan Mariondc5252b2016-11-24 19:25:01 -0800268 vlib_buffer_t *p4, *p5, *p6, *p7;;
Dave Barach97d8dc22016-08-15 15:31:15 -0400269
Damjan Mariondc5252b2016-11-24 19:25:01 -0800270 p4 = vlib_get_buffer (vm, from[4]);
271 p5 = vlib_get_buffer (vm, from[5]);
272 p6 = vlib_get_buffer (vm, from[6]);
273 p7 = vlib_get_buffer (vm, from[7]);
Dave Barach97d8dc22016-08-15 15:31:15 -0400274
Damjan Mariondc5252b2016-11-24 19:25:01 -0800275 vlib_prefetch_buffer_header (p4, LOAD);
276 vlib_prefetch_buffer_header (p5, LOAD);
277 vlib_prefetch_buffer_header (p6, LOAD);
278 vlib_prefetch_buffer_header (p7, LOAD);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700279
Damjan Mariondc5252b2016-11-24 19:25:01 -0800280 CLIB_PREFETCH (p4->data, CLIB_CACHE_LINE_BYTES, STORE);
281 CLIB_PREFETCH (p5->data, CLIB_CACHE_LINE_BYTES, STORE);
282 CLIB_PREFETCH (p6->data, CLIB_CACHE_LINE_BYTES, STORE);
283 CLIB_PREFETCH (p7->data, CLIB_CACHE_LINE_BYTES, STORE);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700284 }
285
Dave Barach97d8dc22016-08-15 15:31:15 -0400286 /* speculatively enqueue b0 and b1 to the current next frame */
287 /* bi is "buffer index", b is pointer to the buffer */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700288 to_next[0] = bi0 = from[0];
289 to_next[1] = bi1 = from[1];
Damjan Mariondc5252b2016-11-24 19:25:01 -0800290 to_next[2] = bi2 = from[2];
291 to_next[3] = bi3 = from[3];
292 from += 4;
293 to_next += 4;
294 n_left_from -= 4;
295 n_left_to_next -= 4;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700296
297 b0 = vlib_get_buffer (vm, bi0);
298 b1 = vlib_get_buffer (vm, bi1);
Damjan Mariondc5252b2016-11-24 19:25:01 -0800299 b2 = vlib_get_buffer (vm, bi2);
300 b3 = vlib_get_buffer (vm, bi3);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700301
Dave Barach97d8dc22016-08-15 15:31:15 -0400302 /* RX interface handles */
303 sw_if_index0 = vnet_buffer (b0)->sw_if_index[VLIB_RX];
304 sw_if_index1 = vnet_buffer (b1)->sw_if_index[VLIB_RX];
Damjan Mariondc5252b2016-11-24 19:25:01 -0800305 sw_if_index2 = vnet_buffer (b2)->sw_if_index[VLIB_RX];
306 sw_if_index3 = vnet_buffer (b3)->sw_if_index[VLIB_RX];
Ed Warnickecb9cada2015-12-08 15:45:58 -0700307
Damjan Mariondc5252b2016-11-24 19:25:01 -0800308 /* Process 4 x pkts */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700309
Dave Barach97d8dc22016-08-15 15:31:15 -0400310 h0 = vlib_buffer_get_current (b0);
311 h1 = vlib_buffer_get_current (b1);
Damjan Mariondc5252b2016-11-24 19:25:01 -0800312 h2 = vlib_buffer_get_current (b2);
313 h3 = vlib_buffer_get_current (b3);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700314
Dave Barach681abe42017-02-15 09:01:01 -0500315 if (do_trace)
Dave Barach97d8dc22016-08-15 15:31:15 -0400316 {
317 if (b0->flags & VLIB_BUFFER_IS_TRACED)
318 {
319 l2learn_trace_t *t =
320 vlib_add_trace (vm, node, b0, sizeof (*t));
321 t->sw_if_index = sw_if_index0;
322 t->bd_index = vnet_buffer (b0)->l2.bd_index;
323 clib_memcpy (t->src, h0->src_address, 6);
324 clib_memcpy (t->dst, h0->dst_address, 6);
325 }
326 if (b1->flags & VLIB_BUFFER_IS_TRACED)
327 {
328 l2learn_trace_t *t =
329 vlib_add_trace (vm, node, b1, sizeof (*t));
330 t->sw_if_index = sw_if_index1;
331 t->bd_index = vnet_buffer (b1)->l2.bd_index;
332 clib_memcpy (t->src, h1->src_address, 6);
333 clib_memcpy (t->dst, h1->dst_address, 6);
334 }
Damjan Mariondc5252b2016-11-24 19:25:01 -0800335 if (b2->flags & VLIB_BUFFER_IS_TRACED)
336 {
337 l2learn_trace_t *t =
338 vlib_add_trace (vm, node, b2, sizeof (*t));
339 t->sw_if_index = sw_if_index2;
340 t->bd_index = vnet_buffer (b2)->l2.bd_index;
341 clib_memcpy (t->src, h2->src_address, 6);
342 clib_memcpy (t->dst, h2->dst_address, 6);
343 }
344 if (b3->flags & VLIB_BUFFER_IS_TRACED)
345 {
346 l2learn_trace_t *t =
347 vlib_add_trace (vm, node, b3, sizeof (*t));
348 t->sw_if_index = sw_if_index3;
349 t->bd_index = vnet_buffer (b3)->l2.bd_index;
350 clib_memcpy (t->src, h3->src_address, 6);
351 clib_memcpy (t->dst, h3->dst_address, 6);
352 }
Dave Barach97d8dc22016-08-15 15:31:15 -0400353 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700354
Damjan Mariondc5252b2016-11-24 19:25:01 -0800355 /* process 4 pkts */
356 vlib_node_increment_counter (vm, l2learn_node.index,
357 L2LEARN_ERROR_L2LEARN, 4);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700358
Damjan Mariondc5252b2016-11-24 19:25:01 -0800359 l2fib_lookup_4 (msm->mac_table, &cached_key, &cached_result,
Dave Barach97d8dc22016-08-15 15:31:15 -0400360 h0->src_address,
361 h1->src_address,
Damjan Mariondc5252b2016-11-24 19:25:01 -0800362 h2->src_address,
363 h3->src_address,
Dave Barach97d8dc22016-08-15 15:31:15 -0400364 vnet_buffer (b0)->l2.bd_index,
365 vnet_buffer (b1)->l2.bd_index,
Damjan Mariondc5252b2016-11-24 19:25:01 -0800366 vnet_buffer (b2)->l2.bd_index,
367 vnet_buffer (b3)->l2.bd_index,
368 &key0, &key1, &key2, &key3,
369 &bucket0, &bucket1, &bucket2, &bucket3,
370 &result0, &result1, &result2, &result3);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700371
Dave Barach97d8dc22016-08-15 15:31:15 -0400372 l2learn_process (node, msm, &em->counters[node_counter_base_index],
373 b0, sw_if_index0, &key0, &cached_key,
John Lodbfa5742017-09-02 08:27:36 -0400374 &count, &result0, &next0, timestamp);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700375
Dave Barach97d8dc22016-08-15 15:31:15 -0400376 l2learn_process (node, msm, &em->counters[node_counter_base_index],
377 b1, sw_if_index1, &key1, &cached_key,
John Lodbfa5742017-09-02 08:27:36 -0400378 &count, &result1, &next1, timestamp);
Dave Barach97d8dc22016-08-15 15:31:15 -0400379
Damjan Mariondc5252b2016-11-24 19:25:01 -0800380 l2learn_process (node, msm, &em->counters[node_counter_base_index],
381 b2, sw_if_index2, &key2, &cached_key,
John Lodbfa5742017-09-02 08:27:36 -0400382 &count, &result2, &next2, timestamp);
Damjan Mariondc5252b2016-11-24 19:25:01 -0800383
384 l2learn_process (node, msm, &em->counters[node_counter_base_index],
385 b3, sw_if_index3, &key3, &cached_key,
John Lodbfa5742017-09-02 08:27:36 -0400386 &count, &result3, &next3, timestamp);
Damjan Mariondc5252b2016-11-24 19:25:01 -0800387
Dave Barach97d8dc22016-08-15 15:31:15 -0400388 /* verify speculative enqueues, maybe switch current next frame */
389 /* if next0==next1==next_index then nothing special needs to be done */
Damjan Mariondc5252b2016-11-24 19:25:01 -0800390 vlib_validate_buffer_enqueue_x4 (vm, node, next_index,
Dave Barach97d8dc22016-08-15 15:31:15 -0400391 to_next, n_left_to_next,
Damjan Mariondc5252b2016-11-24 19:25:01 -0800392 bi0, bi1, bi2, bi3,
393 next0, next1, next2, next3);
Dave Barach97d8dc22016-08-15 15:31:15 -0400394 }
395
Ed Warnickecb9cada2015-12-08 15:45:58 -0700396 while (n_left_from > 0 && n_left_to_next > 0)
397 {
Dave Barach97d8dc22016-08-15 15:31:15 -0400398 u32 bi0;
399 vlib_buffer_t *b0;
400 u32 next0;
401 u32 sw_if_index0;
402 ethernet_header_t *h0;
403 l2fib_entry_key_t key0;
404 l2fib_entry_result_t result0;
405 u32 bucket0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700406
Dave Barach97d8dc22016-08-15 15:31:15 -0400407 /* speculatively enqueue b0 to the current next frame */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700408 bi0 = from[0];
409 to_next[0] = bi0;
410 from += 1;
411 to_next += 1;
412 n_left_from -= 1;
413 n_left_to_next -= 1;
414
415 b0 = vlib_get_buffer (vm, bi0);
416
Dave Barach97d8dc22016-08-15 15:31:15 -0400417 sw_if_index0 = vnet_buffer (b0)->sw_if_index[VLIB_RX];
Ed Warnickecb9cada2015-12-08 15:45:58 -0700418
Dave Barach97d8dc22016-08-15 15:31:15 -0400419 h0 = vlib_buffer_get_current (b0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700420
Dave Barach681abe42017-02-15 09:01:01 -0500421 if (do_trace && PREDICT_FALSE (b0->flags & VLIB_BUFFER_IS_TRACED))
Dave Barach97d8dc22016-08-15 15:31:15 -0400422 {
423 l2learn_trace_t *t = vlib_add_trace (vm, node, b0, sizeof (*t));
424 t->sw_if_index = sw_if_index0;
425 t->bd_index = vnet_buffer (b0)->l2.bd_index;
426 clib_memcpy (t->src, h0->src_address, 6);
427 clib_memcpy (t->dst, h0->dst_address, 6);
428 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700429
Dave Barach97d8dc22016-08-15 15:31:15 -0400430 /* process 1 pkt */
Damjan Mariondc5252b2016-11-24 19:25:01 -0800431 vlib_node_increment_counter (vm, l2learn_node.index,
432 L2LEARN_ERROR_L2LEARN, 1);
433
Ed Warnickecb9cada2015-12-08 15:45:58 -0700434
Dave Barach97d8dc22016-08-15 15:31:15 -0400435 l2fib_lookup_1 (msm->mac_table, &cached_key, &cached_result,
436 h0->src_address, vnet_buffer (b0)->l2.bd_index,
437 &key0, &bucket0, &result0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700438
Dave Barach97d8dc22016-08-15 15:31:15 -0400439 l2learn_process (node, msm, &em->counters[node_counter_base_index],
440 b0, sw_if_index0, &key0, &cached_key,
John Lodbfa5742017-09-02 08:27:36 -0400441 &count, &result0, &next0, timestamp);
Dave Barach97d8dc22016-08-15 15:31:15 -0400442
443 /* verify speculative enqueue, maybe switch current next frame */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700444 vlib_validate_buffer_enqueue_x1 (vm, node, next_index,
445 to_next, n_left_to_next,
446 bi0, next0);
447 }
448
449 vlib_put_next_frame (vm, node, next_index, n_left_to_next);
450 }
451
452 return frame->n_vectors;
453}
454
Dave Barach681abe42017-02-15 09:01:01 -0500455static uword
456l2learn_node_fn (vlib_main_t * vm,
457 vlib_node_runtime_t * node, vlib_frame_t * frame)
458{
459 if (PREDICT_FALSE ((node->flags & VLIB_NODE_FLAG_TRACE)))
460 return l2learn_node_inline (vm, node, frame, 1 /* do_trace */ );
461 return l2learn_node_inline (vm, node, frame, 0 /* do_trace */ );
462}
Ed Warnickecb9cada2015-12-08 15:45:58 -0700463
Dave Barach97d8dc22016-08-15 15:31:15 -0400464/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700465VLIB_REGISTER_NODE (l2learn_node,static) = {
466 .function = l2learn_node_fn,
467 .name = "l2-learn",
468 .vector_size = sizeof (u32),
469 .format_trace = format_l2learn_trace,
470 .type = VLIB_NODE_TYPE_INTERNAL,
Dave Barach97d8dc22016-08-15 15:31:15 -0400471
Ed Warnickecb9cada2015-12-08 15:45:58 -0700472 .n_errors = ARRAY_LEN(l2learn_error_strings),
473 .error_strings = l2learn_error_strings,
474
475 .n_next_nodes = L2LEARN_N_NEXT,
476
477 /* edit / add dispositions here */
478 .next_nodes = {
479 [L2LEARN_NEXT_DROP] = "error-drop",
480 [L2LEARN_NEXT_L2FWD] = "l2-fwd",
481 },
482};
Dave Barach97d8dc22016-08-15 15:31:15 -0400483/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700484
Damjan Marion1c80e832016-05-11 23:07:18 +0200485VLIB_NODE_FUNCTION_MULTIARCH (l2learn_node, l2learn_node_fn)
Dave Barach97d8dc22016-08-15 15:31:15 -0400486 clib_error_t *l2learn_init (vlib_main_t * vm)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700487{
Dave Barach97d8dc22016-08-15 15:31:15 -0400488 l2learn_main_t *mp = &l2learn_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700489
Dave Barach97d8dc22016-08-15 15:31:15 -0400490 mp->vlib_main = vm;
491 mp->vnet_main = vnet_get_main ();
492
493 /* Initialize the feature next-node indexes */
494 feat_bitmap_init_next_nodes (vm,
495 l2learn_node.index,
496 L2INPUT_N_FEAT,
497 l2input_get_feat_names (),
498 mp->feat_next_node_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700499
500 /* init the hash table ptr */
Dave Barach97d8dc22016-08-15 15:31:15 -0400501 mp->mac_table = get_mac_table ();
Ed Warnickecb9cada2015-12-08 15:45:58 -0700502
Dave Barach97d8dc22016-08-15 15:31:15 -0400503 /*
504 * Set the default number of dynamically learned macs to the number
505 * of buckets.
506 */
John Lo8d00fff2017-08-03 00:35:36 -0400507 mp->global_learn_limit = L2LEARN_DEFAULT_LIMIT;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700508
509 return 0;
510}
511
512VLIB_INIT_FUNCTION (l2learn_init);
513
514
Dave Barach97d8dc22016-08-15 15:31:15 -0400515/**
Chris Luke16bcf7d2016-09-01 14:31:46 -0400516 * Set subinterface learn enable/disable.
Dave Barach97d8dc22016-08-15 15:31:15 -0400517 * The CLI format is:
518 * set interface l2 learn <interface> [disable]
519 */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700520static clib_error_t *
521int_learn (vlib_main_t * vm,
Dave Barach97d8dc22016-08-15 15:31:15 -0400522 unformat_input_t * input, vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700523{
Dave Barach97d8dc22016-08-15 15:31:15 -0400524 vnet_main_t *vnm = vnet_get_main ();
525 clib_error_t *error = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700526 u32 sw_if_index;
527 u32 enable;
528
Dave Barach97d8dc22016-08-15 15:31:15 -0400529 if (!unformat_user (input, unformat_vnet_sw_interface, vnm, &sw_if_index))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700530 {
531 error = clib_error_return (0, "unknown interface `%U'",
Dave Barach97d8dc22016-08-15 15:31:15 -0400532 format_unformat_error, input);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700533 goto done;
534 }
535
536 enable = 1;
Dave Barach97d8dc22016-08-15 15:31:15 -0400537 if (unformat (input, "disable"))
538 {
539 enable = 0;
540 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700541
Dave Barach97d8dc22016-08-15 15:31:15 -0400542 /* set the interface flag */
543 l2input_intf_bitmap_enable (sw_if_index, L2INPUT_FEAT_LEARN, enable);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700544
Dave Barach97d8dc22016-08-15 15:31:15 -0400545done:
Ed Warnickecb9cada2015-12-08 15:45:58 -0700546 return error;
547}
548
Billy McFall22aa3e92016-09-09 08:46:40 -0400549/*?
550 * Layer 2 learning can be enabled and disabled on each
551 * interface and on each bridge-domain. Use this command to
552 * manage interfaces. It is enabled by default.
553 *
554 * @cliexpar
555 * Example of how to enable learning:
556 * @cliexcmd{set interface l2 learn GigabitEthernet0/8/0}
557 * Example of how to disable learning:
558 * @cliexcmd{set interface l2 learn GigabitEthernet0/8/0 disable}
559?*/
Dave Barach97d8dc22016-08-15 15:31:15 -0400560/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700561VLIB_CLI_COMMAND (int_learn_cli, static) = {
562 .path = "set interface l2 learn",
563 .short_help = "set interface l2 learn <interface> [disable]",
564 .function = int_learn,
565};
Dave Barach97d8dc22016-08-15 15:31:15 -0400566/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700567
568
569static clib_error_t *
570l2learn_config (vlib_main_t * vm, unformat_input_t * input)
571{
572 l2learn_main_t *mp = &l2learn_main;
573
574 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
575 {
576 if (unformat (input, "limit %d", &mp->global_learn_limit))
Dave Barach97d8dc22016-08-15 15:31:15 -0400577 ;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700578
579 else
Dave Barach97d8dc22016-08-15 15:31:15 -0400580 return clib_error_return (0, "unknown input `%U'",
581 format_unformat_error, input);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700582 }
583
584 return 0;
585}
586
587VLIB_CONFIG_FUNCTION (l2learn_config, "l2learn");
588
Dave Barach97d8dc22016-08-15 15:31:15 -0400589
590/*
591 * fd.io coding-style-patch-verification: ON
592 *
593 * Local Variables:
594 * eval: (c-set-style "gnu")
595 * End:
596 */