blob: db76f806046bce04eaa39caa2384e9ce0777b48c [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
Neale Rannseb1525f2018-09-09 04:41:02 -040032#ifndef CLIB_MARCH_VARIANT
Dave Wallace71612d62017-10-24 01:32:41 -040033l2learn_main_t l2learn_main;
Neale Rannseb1525f2018-09-09 04:41:02 -040034#endif
Dave Wallace71612d62017-10-24 01:32:41 -040035
Chris Luke16bcf7d2016-09-01 14:31:46 -040036/**
37 * @file
Billy McFall22aa3e92016-09-09 08:46:40 -040038 * @brief Ethernet Bridge Learning.
Ed Warnickecb9cada2015-12-08 15:45:58 -070039 *
40 * Populate the mac table with entries mapping the packet's source mac + bridge
Dave Barach97d8dc22016-08-15 15:31:15 -040041 * domain ID to the input sw_if_index.
Ed Warnickecb9cada2015-12-08 15:45:58 -070042 *
43 * Note that learning and forwarding are separate graph nodes. This means that
44 * for a set of packets, all learning is performed first, then all nodes are
45 * forwarded. The forwarding is done based on the end-state of the mac table,
46 * instead of the state after each packet. Thus the forwarding results could
47 * differ in certain cases (mac move tests), but this not expected to cause
48 * problems in real-world networks. It is much simpler to separate learning
49 * and forwarding into separate nodes.
50 */
51
52
Dave Barach97d8dc22016-08-15 15:31:15 -040053typedef struct
54{
Ed Warnickecb9cada2015-12-08 15:45:58 -070055 u8 src[6];
56 u8 dst[6];
57 u32 sw_if_index;
58 u16 bd_index;
59} l2learn_trace_t;
60
61
62/* packet trace format function */
Dave Barach97d8dc22016-08-15 15:31:15 -040063static u8 *
64format_l2learn_trace (u8 * s, va_list * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -070065{
66 CLIB_UNUSED (vlib_main_t * vm) = va_arg (*args, vlib_main_t *);
67 CLIB_UNUSED (vlib_node_t * node) = va_arg (*args, vlib_node_t *);
Dave Barach97d8dc22016-08-15 15:31:15 -040068 l2learn_trace_t *t = va_arg (*args, l2learn_trace_t *);
69
Ed Warnickecb9cada2015-12-08 15:45:58 -070070 s = format (s, "l2-learn: sw_if_index %d dst %U src %U bd_index %d",
Dave Barach97d8dc22016-08-15 15:31:15 -040071 t->sw_if_index,
72 format_ethernet_address, t->dst,
73 format_ethernet_address, t->src, t->bd_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -070074 return s;
75}
76
Damjan Mariond770cfc2019-09-02 19:00:33 +020077extern vlib_node_registration_t l2learn_node;
Ed Warnickecb9cada2015-12-08 15:45:58 -070078
79#define foreach_l2learn_error \
80_(L2LEARN, "L2 learn packets") \
81_(MISS, "L2 learn misses") \
82_(MAC_MOVE, "L2 mac moves") \
83_(MAC_MOVE_VIOLATE, "L2 mac move violations") \
84_(LIMIT, "L2 not learned due to limit") \
John Lodbfa5742017-09-02 08:27:36 -040085_(HIT_UPDATE, "L2 learn hit updates") \
Dave Barach97d8dc22016-08-15 15:31:15 -040086_(FILTER_DROP, "L2 filter mac drops")
Ed Warnickecb9cada2015-12-08 15:45:58 -070087
Dave Barach97d8dc22016-08-15 15:31:15 -040088typedef enum
89{
Ed Warnickecb9cada2015-12-08 15:45:58 -070090#define _(sym,str) L2LEARN_ERROR_##sym,
91 foreach_l2learn_error
92#undef _
Dave Barach97d8dc22016-08-15 15:31:15 -040093 L2LEARN_N_ERROR,
Ed Warnickecb9cada2015-12-08 15:45:58 -070094} l2learn_error_t;
95
Dave Barach97d8dc22016-08-15 15:31:15 -040096static char *l2learn_error_strings[] = {
Ed Warnickecb9cada2015-12-08 15:45:58 -070097#define _(sym,string) string,
98 foreach_l2learn_error
99#undef _
100};
101
Dave Barach97d8dc22016-08-15 15:31:15 -0400102typedef enum
103{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700104 L2LEARN_NEXT_L2FWD,
105 L2LEARN_NEXT_DROP,
106 L2LEARN_N_NEXT,
107} l2learn_next_t;
108
109
Chris Luke16bcf7d2016-09-01 14:31:46 -0400110/** Perform learning on one packet based on the mac table lookup result. */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700111
112static_always_inline void
113l2learn_process (vlib_node_runtime_t * node,
Dave Barach97d8dc22016-08-15 15:31:15 -0400114 l2learn_main_t * msm,
115 u64 * counter_base,
116 vlib_buffer_t * b0,
117 u32 sw_if_index0,
118 l2fib_entry_key_t * key0,
119 l2fib_entry_key_t * cached_key,
John Lodbfa5742017-09-02 08:27:36 -0400120 u32 * count,
Neale Rannsf0fa3172018-09-12 07:37:43 -0400121 l2fib_entry_result_t * result0, u16 * next0, u8 timestamp)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700122{
Dave Barach97d8dc22016-08-15 15:31:15 -0400123 /* Set up the default next node (typically L2FWD) */
John Lobeb0b2e2017-07-22 00:21:36 -0400124 *next0 = vnet_l2_feature_next (b0, msm->feat_next_node_index,
125 L2INPUT_FEAT_LEARN);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700126
Dave Barach97d8dc22016-08-15 15:31:15 -0400127 /* Check mac table lookup result */
Dave Barach97d8dc22016-08-15 15:31:15 -0400128 if (PREDICT_TRUE (result0->fields.sw_if_index == sw_if_index0))
129 {
John Lo8d00fff2017-08-03 00:35:36 -0400130 /* Entry in L2FIB with matching sw_if_index matched - normal fast path */
John Lodbfa5742017-09-02 08:27:36 -0400131 u32 dtime = timestamp - result0->fields.timestamp;
132 u32 dsn = result0->fields.sn.as_u16 - vnet_buffer (b0)->l2.l2fib_sn;
John Lo5a6508d2017-10-03 13:13:47 -0400133 u32 check = (dtime && vnet_buffer (b0)->l2.bd_age) || dsn;
Eyal Bari31a71ab2017-06-25 14:42:33 +0300134
John Lodbfa5742017-09-02 08:27:36 -0400135 if (PREDICT_TRUE (check == 0))
136 return; /* MAC entry up to date */
Neale Rannsb54d0812018-09-06 06:22:56 -0700137 if (l2fib_entry_result_is_set_AGE_NOT (result0))
John Lodbfa5742017-09-02 08:27:36 -0400138 return; /* Static MAC always age_not */
139 if (msm->global_learn_count > msm->global_learn_limit)
John Loe531f4c2017-08-22 09:16:50 -0400140 return; /* Above learn limit - do not update */
John Lodbfa5742017-09-02 08:27:36 -0400141
142 /* Limit updates per l2-learn node call to avoid prolonged update burst
John Lo5a6508d2017-10-03 13:13:47 -0400143 * as dtime advance over 1 minute mark, unless more than 1 min behind
144 * or SN obsolete */
145 if ((*count > 2) && (dtime == 1) && (dsn == 0))
John Lodbfa5742017-09-02 08:27:36 -0400146 return;
147
148 counter_base[L2LEARN_ERROR_HIT_UPDATE] += 1;
149 *count += 1;
Dave Barach97d8dc22016-08-15 15:31:15 -0400150 }
151 else if (result0->raw == ~0)
152 {
John Lo8d00fff2017-08-03 00:35:36 -0400153 /* Entry not in L2FIB - add it */
Dave Barach97d8dc22016-08-15 15:31:15 -0400154 counter_base[L2LEARN_ERROR_MISS] += 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700155
John Lo8d00fff2017-08-03 00:35:36 -0400156 if (msm->global_learn_count >= msm->global_learn_limit)
Dave Barach97d8dc22016-08-15 15:31:15 -0400157 {
158 /*
159 * Global limit reached. Do not learn the mac but forward the packet.
160 * In the future, limits could also be per-interface or bridge-domain.
161 */
162 counter_base[L2LEARN_ERROR_LIMIT] += 1;
Eyal Bari31a71ab2017-06-25 14:42:33 +0300163 return;
Dave Barach97d8dc22016-08-15 15:31:15 -0400164 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700165
John Lo8d00fff2017-08-03 00:35:36 -0400166 /* Do not learn if mac is 0 */
167 l2fib_entry_key_t key = *key0;
168 key.fields.bd_index = 0;
169 if (key.raw == 0)
170 return;
171
Eyal Bari31a71ab2017-06-25 14:42:33 +0300172 /* It is ok to learn */
173 msm->global_learn_count++;
174 result0->raw = 0; /* clear all fields */
175 result0->fields.sw_if_index = sw_if_index0;
Neale Rannsb54d0812018-09-06 06:22:56 -0700176 if (msm->client_pid != 0)
177 l2fib_entry_result_set_LRN_EVT (result0);
178 else
179 l2fib_entry_result_clear_LRN_EVT (result0);
Dave Barach97d8dc22016-08-15 15:31:15 -0400180 }
181 else
182 {
John Lo8d00fff2017-08-03 00:35:36 -0400183 /* Entry in L2FIB with different sw_if_index - mac move or filter */
Neale Rannsb54d0812018-09-06 06:22:56 -0700184 if (l2fib_entry_result_is_set_FILTER (result0))
Eyal Bari31a71ab2017-06-25 14:42:33 +0300185 {
186 ASSERT (result0->fields.sw_if_index == ~0);
187 /* drop packet because lookup matched a filter mac entry */
188 b0->error = node->errors[L2LEARN_ERROR_FILTER_DROP];
189 *next0 = L2LEARN_NEXT_DROP;
190 return;
191 }
192
Neale Rannsb54d0812018-09-06 06:22:56 -0700193 if (l2fib_entry_result_is_set_STATIC (result0))
Dave Barach97d8dc22016-08-15 15:31:15 -0400194 {
195 /*
196 * Don't overwrite a static mac
197 * TODO: Check violation policy. For now drop the packet
198 */
199 b0->error = node->errors[L2LEARN_ERROR_MAC_MOVE_VIOLATE];
200 *next0 = L2LEARN_NEXT_DROP;
Eyal Bari31a71ab2017-06-25 14:42:33 +0300201 return;
Dave Barach97d8dc22016-08-15 15:31:15 -0400202 }
Dave Barach97d8dc22016-08-15 15:31:15 -0400203
Eyal Bari31a71ab2017-06-25 14:42:33 +0300204 /*
205 * TODO: may want to rate limit mac moves
206 * TODO: check global/bridge domain/interface learn limits
207 */
208 result0->fields.sw_if_index = sw_if_index0;
Neale Rannsb54d0812018-09-06 06:22:56 -0700209 if (l2fib_entry_result_is_set_AGE_NOT (result0))
John Lo8d00fff2017-08-03 00:35:36 -0400210 {
Neale Rannsb54d0812018-09-06 06:22:56 -0700211 /* The mac was provisioned */
John Lo8d00fff2017-08-03 00:35:36 -0400212 msm->global_learn_count++;
Neale Rannsb54d0812018-09-06 06:22:56 -0700213 l2fib_entry_result_clear_AGE_NOT (result0);
John Lo8d00fff2017-08-03 00:35:36 -0400214 }
Neale Rannsb54d0812018-09-06 06:22:56 -0700215 if (msm->client_pid != 0)
216 l2fib_entry_result_set_bits (result0,
217 (L2FIB_ENTRY_RESULT_FLAG_LRN_EVT |
218 L2FIB_ENTRY_RESULT_FLAG_LRN_MOV));
219 else
220 l2fib_entry_result_clear_bits (result0,
221 (L2FIB_ENTRY_RESULT_FLAG_LRN_EVT |
222 L2FIB_ENTRY_RESULT_FLAG_LRN_MOV));
John Lo8d00fff2017-08-03 00:35:36 -0400223 counter_base[L2LEARN_ERROR_MAC_MOVE] += 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700224 }
225
Eyal Bari31a71ab2017-06-25 14:42:33 +0300226 /* Update the entry */
227 result0->fields.timestamp = timestamp;
228 result0->fields.sn.as_u16 = vnet_buffer (b0)->l2.l2fib_sn;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700229
Eyal Bari31a71ab2017-06-25 14:42:33 +0300230 BVT (clib_bihash_kv) kv;
231 kv.key = key0->raw;
232 kv.value = result0->raw;
233 BV (clib_bihash_add_del) (msm->mac_table, &kv, 1 /* is_add */ );
John Lodbfa5742017-09-02 08:27:36 -0400234
235 /* Invalidate the cache */
236 cached_key->raw = ~0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700237}
238
239
Dave Barach681abe42017-02-15 09:01:01 -0500240static_always_inline uword
241l2learn_node_inline (vlib_main_t * vm, vlib_node_runtime_t * node,
242 vlib_frame_t * frame, int do_trace)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700243{
Neale Rannsf0fa3172018-09-12 07:37:43 -0400244 u32 n_left, *from;
Dave Barach97d8dc22016-08-15 15:31:15 -0400245 l2learn_main_t *msm = &l2learn_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700246 vlib_node_t *n = vlib_get_node (vm, l2learn_node.index);
247 u32 node_counter_base_index = n->error_heap_index;
Dave Barach97d8dc22016-08-15 15:31:15 -0400248 vlib_error_main_t *em = &vm->error_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700249 l2fib_entry_key_t cached_key;
250 l2fib_entry_result_t cached_result;
Damjan Mariond171d482016-12-05 14:16:38 +0100251 u8 timestamp = (u8) (vlib_time_now (vm) / 60);
John Lodbfa5742017-09-02 08:27:36 -0400252 u32 count = 0;
Neale Rannsf0fa3172018-09-12 07:37:43 -0400253 vlib_buffer_t *bufs[VLIB_FRAME_SIZE], **b;
254 u16 nexts[VLIB_FRAME_SIZE], *next;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700255
256 from = vlib_frame_vector_args (frame);
Neale Rannsf0fa3172018-09-12 07:37:43 -0400257 n_left = frame->n_vectors; /* number of packets to process */
258 vlib_get_buffers (vm, from, bufs, n_left);
259 next = nexts;
260 b = bufs;
Dave Barach97d8dc22016-08-15 15:31:15 -0400261
262 /* Clear the one-entry cache in case mac table was updated */
263 cached_key.raw = ~0;
264 cached_result.raw = ~0; /* warning be gone */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700265
Neale Rannsf0fa3172018-09-12 07:37:43 -0400266 while (n_left > 8)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700267 {
Neale Rannsf0fa3172018-09-12 07:37:43 -0400268 u32 sw_if_index0, sw_if_index1, sw_if_index2, sw_if_index3;
269 const ethernet_header_t *h0, *h1, *h2, *h3;
270 l2fib_entry_key_t key0, key1, key2, key3;
271 l2fib_entry_result_t result0, result1, result2, result3;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700272
Neale Rannsf0fa3172018-09-12 07:37:43 -0400273 /* Prefetch next iteration. */
274 {
275 /* buffer header is read and written, so use LOAD
276 * prefetch */
277 vlib_prefetch_buffer_header (b[4], LOAD);
278 vlib_prefetch_buffer_header (b[5], LOAD);
279 vlib_prefetch_buffer_header (b[6], LOAD);
280 vlib_prefetch_buffer_header (b[7], LOAD);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700281
Neale Rannsf0fa3172018-09-12 07:37:43 -0400282 CLIB_PREFETCH (b[4]->data, CLIB_CACHE_LINE_BYTES, LOAD);
283 CLIB_PREFETCH (b[5]->data, CLIB_CACHE_LINE_BYTES, LOAD);
284 CLIB_PREFETCH (b[6]->data, CLIB_CACHE_LINE_BYTES, LOAD);
285 CLIB_PREFETCH (b[7]->data, CLIB_CACHE_LINE_BYTES, LOAD);
286 }
287
288 /* RX interface handles */
289 sw_if_index0 = vnet_buffer (b[0])->sw_if_index[VLIB_RX];
290 sw_if_index1 = vnet_buffer (b[1])->sw_if_index[VLIB_RX];
291 sw_if_index2 = vnet_buffer (b[2])->sw_if_index[VLIB_RX];
292 sw_if_index3 = vnet_buffer (b[3])->sw_if_index[VLIB_RX];
293
294 /* Process 4 x pkts */
295
296 h0 = vlib_buffer_get_current (b[0]);
297 h1 = vlib_buffer_get_current (b[1]);
298 h2 = vlib_buffer_get_current (b[2]);
299 h3 = vlib_buffer_get_current (b[3]);
300
301 if (do_trace)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700302 {
Neale Rannsf0fa3172018-09-12 07:37:43 -0400303 if (b[0]->flags & VLIB_BUFFER_IS_TRACED)
Dave Barach97d8dc22016-08-15 15:31:15 -0400304 {
Neale Rannsf0fa3172018-09-12 07:37:43 -0400305 l2learn_trace_t *t =
306 vlib_add_trace (vm, node, b[0], sizeof (*t));
Dave Barach97d8dc22016-08-15 15:31:15 -0400307 t->sw_if_index = sw_if_index0;
Neale Rannsf0fa3172018-09-12 07:37:43 -0400308 t->bd_index = vnet_buffer (b[0])->l2.bd_index;
Dave Barach178cf492018-11-13 16:34:13 -0500309 clib_memcpy_fast (t->src, h0->src_address, 6);
310 clib_memcpy_fast (t->dst, h0->dst_address, 6);
Dave Barach97d8dc22016-08-15 15:31:15 -0400311 }
Neale Rannsf0fa3172018-09-12 07:37:43 -0400312 if (b[1]->flags & VLIB_BUFFER_IS_TRACED)
313 {
314 l2learn_trace_t *t =
315 vlib_add_trace (vm, node, b[1], sizeof (*t));
316 t->sw_if_index = sw_if_index1;
317 t->bd_index = vnet_buffer (b[1])->l2.bd_index;
Dave Barach178cf492018-11-13 16:34:13 -0500318 clib_memcpy_fast (t->src, h1->src_address, 6);
319 clib_memcpy_fast (t->dst, h1->dst_address, 6);
Neale Rannsf0fa3172018-09-12 07:37:43 -0400320 }
321 if (b[2]->flags & VLIB_BUFFER_IS_TRACED)
322 {
323 l2learn_trace_t *t =
324 vlib_add_trace (vm, node, b[2], sizeof (*t));
325 t->sw_if_index = sw_if_index2;
326 t->bd_index = vnet_buffer (b[2])->l2.bd_index;
Dave Barach178cf492018-11-13 16:34:13 -0500327 clib_memcpy_fast (t->src, h2->src_address, 6);
328 clib_memcpy_fast (t->dst, h2->dst_address, 6);
Neale Rannsf0fa3172018-09-12 07:37:43 -0400329 }
330 if (b[3]->flags & VLIB_BUFFER_IS_TRACED)
331 {
332 l2learn_trace_t *t =
333 vlib_add_trace (vm, node, b[3], sizeof (*t));
334 t->sw_if_index = sw_if_index3;
335 t->bd_index = vnet_buffer (b[3])->l2.bd_index;
Dave Barach178cf492018-11-13 16:34:13 -0500336 clib_memcpy_fast (t->src, h3->src_address, 6);
337 clib_memcpy_fast (t->dst, h3->dst_address, 6);
Neale Rannsf0fa3172018-09-12 07:37:43 -0400338 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700339 }
340
Neale Rannsf0fa3172018-09-12 07:37:43 -0400341 /* process 4 pkts */
342 vlib_node_increment_counter (vm, l2learn_node.index,
343 L2LEARN_ERROR_L2LEARN, 4);
344
345 l2fib_lookup_4 (msm->mac_table, &cached_key, &cached_result,
346 h0->src_address,
347 h1->src_address,
348 h2->src_address,
349 h3->src_address,
350 vnet_buffer (b[0])->l2.bd_index,
351 vnet_buffer (b[1])->l2.bd_index,
352 vnet_buffer (b[2])->l2.bd_index,
353 vnet_buffer (b[3])->l2.bd_index,
354 &key0, &key1, &key2, &key3,
Neale Rannsf0fa3172018-09-12 07:37:43 -0400355 &result0, &result1, &result2, &result3);
356
357 l2learn_process (node, msm, &em->counters[node_counter_base_index],
358 b[0], sw_if_index0, &key0, &cached_key,
359 &count, &result0, next, timestamp);
360
361 l2learn_process (node, msm, &em->counters[node_counter_base_index],
362 b[1], sw_if_index1, &key1, &cached_key,
363 &count, &result1, next + 1, timestamp);
364
365 l2learn_process (node, msm, &em->counters[node_counter_base_index],
366 b[2], sw_if_index2, &key2, &cached_key,
367 &count, &result2, next + 2, timestamp);
368
369 l2learn_process (node, msm, &em->counters[node_counter_base_index],
370 b[3], sw_if_index3, &key3, &cached_key,
371 &count, &result3, next + 3, timestamp);
372
373 next += 4;
374 b += 4;
375 n_left -= 4;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700376 }
377
Neale Rannsf0fa3172018-09-12 07:37:43 -0400378 while (n_left > 0)
379 {
380 u32 sw_if_index0;
381 ethernet_header_t *h0;
382 l2fib_entry_key_t key0;
383 l2fib_entry_result_t result0;
Neale Rannsf0fa3172018-09-12 07:37:43 -0400384
385 sw_if_index0 = vnet_buffer (b[0])->sw_if_index[VLIB_RX];
386
387 h0 = vlib_buffer_get_current (b[0]);
388
389 if (do_trace && PREDICT_FALSE (b[0]->flags & VLIB_BUFFER_IS_TRACED))
390 {
391 l2learn_trace_t *t = vlib_add_trace (vm, node, b[0], sizeof (*t));
392 t->sw_if_index = sw_if_index0;
393 t->bd_index = vnet_buffer (b[0])->l2.bd_index;
Dave Barach178cf492018-11-13 16:34:13 -0500394 clib_memcpy_fast (t->src, h0->src_address, 6);
395 clib_memcpy_fast (t->dst, h0->dst_address, 6);
Neale Rannsf0fa3172018-09-12 07:37:43 -0400396 }
397
398 /* process 1 pkt */
399 vlib_node_increment_counter (vm, l2learn_node.index,
400 L2LEARN_ERROR_L2LEARN, 1);
401
402
403 l2fib_lookup_1 (msm->mac_table, &cached_key, &cached_result,
404 h0->src_address, vnet_buffer (b[0])->l2.bd_index,
Eyal Bari11d47af2018-10-31 10:55:33 +0200405 &key0, &result0);
Neale Rannsf0fa3172018-09-12 07:37:43 -0400406
407 l2learn_process (node, msm, &em->counters[node_counter_base_index],
408 b[0], sw_if_index0, &key0, &cached_key,
409 &count, &result0, next, timestamp);
410
411 next += 1;
412 b += 1;
413 n_left -= 1;
414 }
415
416 vlib_buffer_enqueue_to_next (vm, node, from, nexts, frame->n_vectors);
417
Ed Warnickecb9cada2015-12-08 15:45:58 -0700418 return frame->n_vectors;
419}
420
Neale Rannseb1525f2018-09-09 04:41:02 -0400421VLIB_NODE_FN (l2learn_node) (vlib_main_t * vm,
422 vlib_node_runtime_t * node, vlib_frame_t * frame)
Dave Barach681abe42017-02-15 09:01:01 -0500423{
424 if (PREDICT_FALSE ((node->flags & VLIB_NODE_FLAG_TRACE)))
425 return l2learn_node_inline (vm, node, frame, 1 /* do_trace */ );
426 return l2learn_node_inline (vm, node, frame, 0 /* do_trace */ );
427}
Ed Warnickecb9cada2015-12-08 15:45:58 -0700428
Dave Barach97d8dc22016-08-15 15:31:15 -0400429/* *INDENT-OFF* */
Damjan Mariond770cfc2019-09-02 19:00:33 +0200430VLIB_REGISTER_NODE (l2learn_node) = {
Ed Warnickecb9cada2015-12-08 15:45:58 -0700431 .name = "l2-learn",
432 .vector_size = sizeof (u32),
433 .format_trace = format_l2learn_trace,
434 .type = VLIB_NODE_TYPE_INTERNAL,
Dave Barach97d8dc22016-08-15 15:31:15 -0400435
Ed Warnickecb9cada2015-12-08 15:45:58 -0700436 .n_errors = ARRAY_LEN(l2learn_error_strings),
437 .error_strings = l2learn_error_strings,
438
439 .n_next_nodes = L2LEARN_N_NEXT,
440
441 /* edit / add dispositions here */
442 .next_nodes = {
443 [L2LEARN_NEXT_DROP] = "error-drop",
444 [L2LEARN_NEXT_L2FWD] = "l2-fwd",
445 },
446};
Dave Barach97d8dc22016-08-15 15:31:15 -0400447/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700448
Neale Rannseb1525f2018-09-09 04:41:02 -0400449#ifndef CLIB_MARCH_VARIANT
450clib_error_t *
451l2learn_init (vlib_main_t * vm)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700452{
Dave Barach97d8dc22016-08-15 15:31:15 -0400453 l2learn_main_t *mp = &l2learn_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700454
Dave Barach97d8dc22016-08-15 15:31:15 -0400455 mp->vlib_main = vm;
456 mp->vnet_main = vnet_get_main ();
457
458 /* Initialize the feature next-node indexes */
459 feat_bitmap_init_next_nodes (vm,
460 l2learn_node.index,
461 L2INPUT_N_FEAT,
462 l2input_get_feat_names (),
463 mp->feat_next_node_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700464
465 /* init the hash table ptr */
Dave Barach97d8dc22016-08-15 15:31:15 -0400466 mp->mac_table = get_mac_table ();
Ed Warnickecb9cada2015-12-08 15:45:58 -0700467
Dave Barach97d8dc22016-08-15 15:31:15 -0400468 /*
469 * Set the default number of dynamically learned macs to the number
470 * of buckets.
471 */
John Lo8d00fff2017-08-03 00:35:36 -0400472 mp->global_learn_limit = L2LEARN_DEFAULT_LIMIT;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700473
474 return 0;
475}
476
477VLIB_INIT_FUNCTION (l2learn_init);
478
479
Dave Barach97d8dc22016-08-15 15:31:15 -0400480/**
Chris Luke16bcf7d2016-09-01 14:31:46 -0400481 * Set subinterface learn enable/disable.
Dave Barach97d8dc22016-08-15 15:31:15 -0400482 * The CLI format is:
483 * set interface l2 learn <interface> [disable]
484 */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700485static clib_error_t *
486int_learn (vlib_main_t * vm,
Dave Barach97d8dc22016-08-15 15:31:15 -0400487 unformat_input_t * input, vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700488{
Dave Barach97d8dc22016-08-15 15:31:15 -0400489 vnet_main_t *vnm = vnet_get_main ();
490 clib_error_t *error = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700491 u32 sw_if_index;
492 u32 enable;
493
Dave Barach97d8dc22016-08-15 15:31:15 -0400494 if (!unformat_user (input, unformat_vnet_sw_interface, vnm, &sw_if_index))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700495 {
496 error = clib_error_return (0, "unknown interface `%U'",
Dave Barach97d8dc22016-08-15 15:31:15 -0400497 format_unformat_error, input);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700498 goto done;
499 }
500
501 enable = 1;
Dave Barach97d8dc22016-08-15 15:31:15 -0400502 if (unformat (input, "disable"))
503 {
504 enable = 0;
505 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700506
Dave Barach97d8dc22016-08-15 15:31:15 -0400507 /* set the interface flag */
508 l2input_intf_bitmap_enable (sw_if_index, L2INPUT_FEAT_LEARN, enable);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700509
Dave Barach97d8dc22016-08-15 15:31:15 -0400510done:
Ed Warnickecb9cada2015-12-08 15:45:58 -0700511 return error;
512}
513
Billy McFall22aa3e92016-09-09 08:46:40 -0400514/*?
515 * Layer 2 learning can be enabled and disabled on each
516 * interface and on each bridge-domain. Use this command to
517 * manage interfaces. It is enabled by default.
518 *
519 * @cliexpar
520 * Example of how to enable learning:
521 * @cliexcmd{set interface l2 learn GigabitEthernet0/8/0}
522 * Example of how to disable learning:
523 * @cliexcmd{set interface l2 learn GigabitEthernet0/8/0 disable}
524?*/
Dave Barach97d8dc22016-08-15 15:31:15 -0400525/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700526VLIB_CLI_COMMAND (int_learn_cli, static) = {
527 .path = "set interface l2 learn",
528 .short_help = "set interface l2 learn <interface> [disable]",
529 .function = int_learn,
530};
Dave Barach97d8dc22016-08-15 15:31:15 -0400531/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700532
533
534static clib_error_t *
535l2learn_config (vlib_main_t * vm, unformat_input_t * input)
536{
537 l2learn_main_t *mp = &l2learn_main;
538
539 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
540 {
541 if (unformat (input, "limit %d", &mp->global_learn_limit))
Dave Barach97d8dc22016-08-15 15:31:15 -0400542 ;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700543
544 else
Dave Barach97d8dc22016-08-15 15:31:15 -0400545 return clib_error_return (0, "unknown input `%U'",
546 format_unformat_error, input);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700547 }
548
549 return 0;
550}
551
552VLIB_CONFIG_FUNCTION (l2learn_config, "l2learn");
553
Neale Rannseb1525f2018-09-09 04:41:02 -0400554#endif
555
Dave Barach97d8dc22016-08-15 15:31:15 -0400556
557/*
558 * fd.io coding-style-patch-verification: ON
559 *
560 * Local Variables:
561 * eval: (c-set-style "gnu")
562 * End:
563 */