blob: 732a1fc5d8534fa764c984b46299e1a564029eb4 [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
77static vlib_node_registration_t l2learn_node;
78
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,
Damjan Mariond171d482016-12-05 14:16:38 +0100121 l2fib_entry_result_t * result0, u32 * 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{
Dave Barach97d8dc22016-08-15 15:31:15 -0400244 u32 n_left_from, *from, *to_next;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700245 l2learn_next_t next_index;
Dave Barach97d8dc22016-08-15 15:31:15 -0400246 l2learn_main_t *msm = &l2learn_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700247 vlib_node_t *n = vlib_get_node (vm, l2learn_node.index);
248 u32 node_counter_base_index = n->error_heap_index;
Dave Barach97d8dc22016-08-15 15:31:15 -0400249 vlib_error_main_t *em = &vm->error_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700250 l2fib_entry_key_t cached_key;
251 l2fib_entry_result_t cached_result;
Damjan Mariond171d482016-12-05 14:16:38 +0100252 u8 timestamp = (u8) (vlib_time_now (vm) / 60);
John Lodbfa5742017-09-02 08:27:36 -0400253 u32 count = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700254
255 from = vlib_frame_vector_args (frame);
Dave Barach97d8dc22016-08-15 15:31:15 -0400256 n_left_from = frame->n_vectors; /* number of packets to process */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700257 next_index = node->cached_next_index;
Dave Barach97d8dc22016-08-15 15:31:15 -0400258
259 /* Clear the one-entry cache in case mac table was updated */
260 cached_key.raw = ~0;
261 cached_result.raw = ~0; /* warning be gone */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700262
263 while (n_left_from > 0)
264 {
265 u32 n_left_to_next;
266
267 /* get space to enqueue frame to graph node "next_index" */
Dave Barach97d8dc22016-08-15 15:31:15 -0400268 vlib_get_next_frame (vm, node, next_index, to_next, n_left_to_next);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700269
Damjan Mariondc5252b2016-11-24 19:25:01 -0800270 while (n_left_from >= 8 && n_left_to_next >= 4)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700271 {
Damjan Mariondc5252b2016-11-24 19:25:01 -0800272 u32 bi0, bi1, bi2, bi3;
273 vlib_buffer_t *b0, *b1, *b2, *b3;
274 u32 next0, next1, next2, next3;
275 u32 sw_if_index0, sw_if_index1, sw_if_index2, sw_if_index3;
Neale Rannseb1525f2018-09-09 04:41:02 -0400276 const ethernet_header_t *h0, *h1, *h2, *h3;
Damjan Mariondc5252b2016-11-24 19:25:01 -0800277 l2fib_entry_key_t key0, key1, key2, key3;
278 l2fib_entry_result_t result0, result1, result2, result3;
279 u32 bucket0, bucket1, bucket2, bucket3;
Dave Barach97d8dc22016-08-15 15:31:15 -0400280
Ed Warnickecb9cada2015-12-08 15:45:58 -0700281 /* Prefetch next iteration. */
282 {
Damjan Mariondc5252b2016-11-24 19:25:01 -0800283 vlib_buffer_t *p4, *p5, *p6, *p7;;
Dave Barach97d8dc22016-08-15 15:31:15 -0400284
Damjan Mariondc5252b2016-11-24 19:25:01 -0800285 p4 = vlib_get_buffer (vm, from[4]);
286 p5 = vlib_get_buffer (vm, from[5]);
287 p6 = vlib_get_buffer (vm, from[6]);
288 p7 = vlib_get_buffer (vm, from[7]);
Dave Barach97d8dc22016-08-15 15:31:15 -0400289
Neale Rannseb1525f2018-09-09 04:41:02 -0400290 /* buffer header is read and written, so use LOAD
291 * prefetch */
Damjan Mariondc5252b2016-11-24 19:25:01 -0800292 vlib_prefetch_buffer_header (p4, LOAD);
293 vlib_prefetch_buffer_header (p5, LOAD);
294 vlib_prefetch_buffer_header (p6, LOAD);
295 vlib_prefetch_buffer_header (p7, LOAD);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700296
Neale Rannseb1525f2018-09-09 04:41:02 -0400297 CLIB_PREFETCH (p4->data, CLIB_CACHE_LINE_BYTES, LOAD);
298 CLIB_PREFETCH (p5->data, CLIB_CACHE_LINE_BYTES, LOAD);
299 CLIB_PREFETCH (p6->data, CLIB_CACHE_LINE_BYTES, LOAD);
300 CLIB_PREFETCH (p7->data, CLIB_CACHE_LINE_BYTES, LOAD);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700301 }
302
Dave Barach97d8dc22016-08-15 15:31:15 -0400303 /* speculatively enqueue b0 and b1 to the current next frame */
304 /* bi is "buffer index", b is pointer to the buffer */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700305 to_next[0] = bi0 = from[0];
306 to_next[1] = bi1 = from[1];
Damjan Mariondc5252b2016-11-24 19:25:01 -0800307 to_next[2] = bi2 = from[2];
308 to_next[3] = bi3 = from[3];
309 from += 4;
310 to_next += 4;
311 n_left_from -= 4;
312 n_left_to_next -= 4;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700313
314 b0 = vlib_get_buffer (vm, bi0);
315 b1 = vlib_get_buffer (vm, bi1);
Damjan Mariondc5252b2016-11-24 19:25:01 -0800316 b2 = vlib_get_buffer (vm, bi2);
317 b3 = vlib_get_buffer (vm, bi3);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700318
Dave Barach97d8dc22016-08-15 15:31:15 -0400319 /* RX interface handles */
320 sw_if_index0 = vnet_buffer (b0)->sw_if_index[VLIB_RX];
321 sw_if_index1 = vnet_buffer (b1)->sw_if_index[VLIB_RX];
Damjan Mariondc5252b2016-11-24 19:25:01 -0800322 sw_if_index2 = vnet_buffer (b2)->sw_if_index[VLIB_RX];
323 sw_if_index3 = vnet_buffer (b3)->sw_if_index[VLIB_RX];
Ed Warnickecb9cada2015-12-08 15:45:58 -0700324
Damjan Mariondc5252b2016-11-24 19:25:01 -0800325 /* Process 4 x pkts */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700326
Dave Barach97d8dc22016-08-15 15:31:15 -0400327 h0 = vlib_buffer_get_current (b0);
328 h1 = vlib_buffer_get_current (b1);
Damjan Mariondc5252b2016-11-24 19:25:01 -0800329 h2 = vlib_buffer_get_current (b2);
330 h3 = vlib_buffer_get_current (b3);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700331
Dave Barach681abe42017-02-15 09:01:01 -0500332 if (do_trace)
Dave Barach97d8dc22016-08-15 15:31:15 -0400333 {
334 if (b0->flags & VLIB_BUFFER_IS_TRACED)
335 {
336 l2learn_trace_t *t =
337 vlib_add_trace (vm, node, b0, sizeof (*t));
338 t->sw_if_index = sw_if_index0;
339 t->bd_index = vnet_buffer (b0)->l2.bd_index;
340 clib_memcpy (t->src, h0->src_address, 6);
341 clib_memcpy (t->dst, h0->dst_address, 6);
342 }
343 if (b1->flags & VLIB_BUFFER_IS_TRACED)
344 {
345 l2learn_trace_t *t =
346 vlib_add_trace (vm, node, b1, sizeof (*t));
347 t->sw_if_index = sw_if_index1;
348 t->bd_index = vnet_buffer (b1)->l2.bd_index;
349 clib_memcpy (t->src, h1->src_address, 6);
350 clib_memcpy (t->dst, h1->dst_address, 6);
351 }
Damjan Mariondc5252b2016-11-24 19:25:01 -0800352 if (b2->flags & VLIB_BUFFER_IS_TRACED)
353 {
354 l2learn_trace_t *t =
355 vlib_add_trace (vm, node, b2, sizeof (*t));
356 t->sw_if_index = sw_if_index2;
357 t->bd_index = vnet_buffer (b2)->l2.bd_index;
358 clib_memcpy (t->src, h2->src_address, 6);
359 clib_memcpy (t->dst, h2->dst_address, 6);
360 }
361 if (b3->flags & VLIB_BUFFER_IS_TRACED)
362 {
363 l2learn_trace_t *t =
364 vlib_add_trace (vm, node, b3, sizeof (*t));
365 t->sw_if_index = sw_if_index3;
366 t->bd_index = vnet_buffer (b3)->l2.bd_index;
367 clib_memcpy (t->src, h3->src_address, 6);
368 clib_memcpy (t->dst, h3->dst_address, 6);
369 }
Dave Barach97d8dc22016-08-15 15:31:15 -0400370 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700371
Damjan Mariondc5252b2016-11-24 19:25:01 -0800372 /* process 4 pkts */
373 vlib_node_increment_counter (vm, l2learn_node.index,
374 L2LEARN_ERROR_L2LEARN, 4);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700375
Damjan Mariondc5252b2016-11-24 19:25:01 -0800376 l2fib_lookup_4 (msm->mac_table, &cached_key, &cached_result,
Dave Barach97d8dc22016-08-15 15:31:15 -0400377 h0->src_address,
378 h1->src_address,
Damjan Mariondc5252b2016-11-24 19:25:01 -0800379 h2->src_address,
380 h3->src_address,
Dave Barach97d8dc22016-08-15 15:31:15 -0400381 vnet_buffer (b0)->l2.bd_index,
382 vnet_buffer (b1)->l2.bd_index,
Damjan Mariondc5252b2016-11-24 19:25:01 -0800383 vnet_buffer (b2)->l2.bd_index,
384 vnet_buffer (b3)->l2.bd_index,
385 &key0, &key1, &key2, &key3,
386 &bucket0, &bucket1, &bucket2, &bucket3,
387 &result0, &result1, &result2, &result3);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700388
Dave Barach97d8dc22016-08-15 15:31:15 -0400389 l2learn_process (node, msm, &em->counters[node_counter_base_index],
390 b0, sw_if_index0, &key0, &cached_key,
John Lodbfa5742017-09-02 08:27:36 -0400391 &count, &result0, &next0, timestamp);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700392
Dave Barach97d8dc22016-08-15 15:31:15 -0400393 l2learn_process (node, msm, &em->counters[node_counter_base_index],
394 b1, sw_if_index1, &key1, &cached_key,
John Lodbfa5742017-09-02 08:27:36 -0400395 &count, &result1, &next1, timestamp);
Dave Barach97d8dc22016-08-15 15:31:15 -0400396
Damjan Mariondc5252b2016-11-24 19:25:01 -0800397 l2learn_process (node, msm, &em->counters[node_counter_base_index],
398 b2, sw_if_index2, &key2, &cached_key,
John Lodbfa5742017-09-02 08:27:36 -0400399 &count, &result2, &next2, timestamp);
Damjan Mariondc5252b2016-11-24 19:25:01 -0800400
401 l2learn_process (node, msm, &em->counters[node_counter_base_index],
402 b3, sw_if_index3, &key3, &cached_key,
John Lodbfa5742017-09-02 08:27:36 -0400403 &count, &result3, &next3, timestamp);
Damjan Mariondc5252b2016-11-24 19:25:01 -0800404
Dave Barach97d8dc22016-08-15 15:31:15 -0400405 /* verify speculative enqueues, maybe switch current next frame */
406 /* if next0==next1==next_index then nothing special needs to be done */
Damjan Mariondc5252b2016-11-24 19:25:01 -0800407 vlib_validate_buffer_enqueue_x4 (vm, node, next_index,
Dave Barach97d8dc22016-08-15 15:31:15 -0400408 to_next, n_left_to_next,
Damjan Mariondc5252b2016-11-24 19:25:01 -0800409 bi0, bi1, bi2, bi3,
410 next0, next1, next2, next3);
Dave Barach97d8dc22016-08-15 15:31:15 -0400411 }
412
Ed Warnickecb9cada2015-12-08 15:45:58 -0700413 while (n_left_from > 0 && n_left_to_next > 0)
414 {
Dave Barach97d8dc22016-08-15 15:31:15 -0400415 u32 bi0;
416 vlib_buffer_t *b0;
417 u32 next0;
418 u32 sw_if_index0;
419 ethernet_header_t *h0;
420 l2fib_entry_key_t key0;
421 l2fib_entry_result_t result0;
422 u32 bucket0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700423
Dave Barach97d8dc22016-08-15 15:31:15 -0400424 /* speculatively enqueue b0 to the current next frame */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700425 bi0 = from[0];
426 to_next[0] = bi0;
427 from += 1;
428 to_next += 1;
429 n_left_from -= 1;
430 n_left_to_next -= 1;
431
432 b0 = vlib_get_buffer (vm, bi0);
433
Dave Barach97d8dc22016-08-15 15:31:15 -0400434 sw_if_index0 = vnet_buffer (b0)->sw_if_index[VLIB_RX];
Ed Warnickecb9cada2015-12-08 15:45:58 -0700435
Dave Barach97d8dc22016-08-15 15:31:15 -0400436 h0 = vlib_buffer_get_current (b0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700437
Dave Barach681abe42017-02-15 09:01:01 -0500438 if (do_trace && PREDICT_FALSE (b0->flags & VLIB_BUFFER_IS_TRACED))
Dave Barach97d8dc22016-08-15 15:31:15 -0400439 {
440 l2learn_trace_t *t = vlib_add_trace (vm, node, b0, sizeof (*t));
441 t->sw_if_index = sw_if_index0;
442 t->bd_index = vnet_buffer (b0)->l2.bd_index;
443 clib_memcpy (t->src, h0->src_address, 6);
444 clib_memcpy (t->dst, h0->dst_address, 6);
445 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700446
Dave Barach97d8dc22016-08-15 15:31:15 -0400447 /* process 1 pkt */
Damjan Mariondc5252b2016-11-24 19:25:01 -0800448 vlib_node_increment_counter (vm, l2learn_node.index,
449 L2LEARN_ERROR_L2LEARN, 1);
450
Ed Warnickecb9cada2015-12-08 15:45:58 -0700451
Dave Barach97d8dc22016-08-15 15:31:15 -0400452 l2fib_lookup_1 (msm->mac_table, &cached_key, &cached_result,
453 h0->src_address, vnet_buffer (b0)->l2.bd_index,
454 &key0, &bucket0, &result0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700455
Dave Barach97d8dc22016-08-15 15:31:15 -0400456 l2learn_process (node, msm, &em->counters[node_counter_base_index],
457 b0, sw_if_index0, &key0, &cached_key,
John Lodbfa5742017-09-02 08:27:36 -0400458 &count, &result0, &next0, timestamp);
Dave Barach97d8dc22016-08-15 15:31:15 -0400459
460 /* verify speculative enqueue, maybe switch current next frame */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700461 vlib_validate_buffer_enqueue_x1 (vm, node, next_index,
462 to_next, n_left_to_next,
463 bi0, next0);
464 }
465
466 vlib_put_next_frame (vm, node, next_index, n_left_to_next);
467 }
468
469 return frame->n_vectors;
470}
471
Neale Rannseb1525f2018-09-09 04:41:02 -0400472VLIB_NODE_FN (l2learn_node) (vlib_main_t * vm,
473 vlib_node_runtime_t * node, vlib_frame_t * frame)
Dave Barach681abe42017-02-15 09:01:01 -0500474{
475 if (PREDICT_FALSE ((node->flags & VLIB_NODE_FLAG_TRACE)))
476 return l2learn_node_inline (vm, node, frame, 1 /* do_trace */ );
477 return l2learn_node_inline (vm, node, frame, 0 /* do_trace */ );
478}
Ed Warnickecb9cada2015-12-08 15:45:58 -0700479
Dave Barach97d8dc22016-08-15 15:31:15 -0400480/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700481VLIB_REGISTER_NODE (l2learn_node,static) = {
Ed Warnickecb9cada2015-12-08 15:45:58 -0700482 .name = "l2-learn",
483 .vector_size = sizeof (u32),
484 .format_trace = format_l2learn_trace,
485 .type = VLIB_NODE_TYPE_INTERNAL,
Dave Barach97d8dc22016-08-15 15:31:15 -0400486
Ed Warnickecb9cada2015-12-08 15:45:58 -0700487 .n_errors = ARRAY_LEN(l2learn_error_strings),
488 .error_strings = l2learn_error_strings,
489
490 .n_next_nodes = L2LEARN_N_NEXT,
491
492 /* edit / add dispositions here */
493 .next_nodes = {
494 [L2LEARN_NEXT_DROP] = "error-drop",
495 [L2LEARN_NEXT_L2FWD] = "l2-fwd",
496 },
497};
Dave Barach97d8dc22016-08-15 15:31:15 -0400498/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700499
Neale Rannseb1525f2018-09-09 04:41:02 -0400500#ifndef CLIB_MARCH_VARIANT
501clib_error_t *
502l2learn_init (vlib_main_t * vm)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700503{
Dave Barach97d8dc22016-08-15 15:31:15 -0400504 l2learn_main_t *mp = &l2learn_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700505
Dave Barach97d8dc22016-08-15 15:31:15 -0400506 mp->vlib_main = vm;
507 mp->vnet_main = vnet_get_main ();
508
509 /* Initialize the feature next-node indexes */
510 feat_bitmap_init_next_nodes (vm,
511 l2learn_node.index,
512 L2INPUT_N_FEAT,
513 l2input_get_feat_names (),
514 mp->feat_next_node_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700515
516 /* init the hash table ptr */
Dave Barach97d8dc22016-08-15 15:31:15 -0400517 mp->mac_table = get_mac_table ();
Ed Warnickecb9cada2015-12-08 15:45:58 -0700518
Dave Barach97d8dc22016-08-15 15:31:15 -0400519 /*
520 * Set the default number of dynamically learned macs to the number
521 * of buckets.
522 */
John Lo8d00fff2017-08-03 00:35:36 -0400523 mp->global_learn_limit = L2LEARN_DEFAULT_LIMIT;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700524
525 return 0;
526}
527
528VLIB_INIT_FUNCTION (l2learn_init);
529
530
Dave Barach97d8dc22016-08-15 15:31:15 -0400531/**
Chris Luke16bcf7d2016-09-01 14:31:46 -0400532 * Set subinterface learn enable/disable.
Dave Barach97d8dc22016-08-15 15:31:15 -0400533 * The CLI format is:
534 * set interface l2 learn <interface> [disable]
535 */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700536static clib_error_t *
537int_learn (vlib_main_t * vm,
Dave Barach97d8dc22016-08-15 15:31:15 -0400538 unformat_input_t * input, vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700539{
Dave Barach97d8dc22016-08-15 15:31:15 -0400540 vnet_main_t *vnm = vnet_get_main ();
541 clib_error_t *error = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700542 u32 sw_if_index;
543 u32 enable;
544
Dave Barach97d8dc22016-08-15 15:31:15 -0400545 if (!unformat_user (input, unformat_vnet_sw_interface, vnm, &sw_if_index))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700546 {
547 error = clib_error_return (0, "unknown interface `%U'",
Dave Barach97d8dc22016-08-15 15:31:15 -0400548 format_unformat_error, input);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700549 goto done;
550 }
551
552 enable = 1;
Dave Barach97d8dc22016-08-15 15:31:15 -0400553 if (unformat (input, "disable"))
554 {
555 enable = 0;
556 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700557
Dave Barach97d8dc22016-08-15 15:31:15 -0400558 /* set the interface flag */
559 l2input_intf_bitmap_enable (sw_if_index, L2INPUT_FEAT_LEARN, enable);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700560
Dave Barach97d8dc22016-08-15 15:31:15 -0400561done:
Ed Warnickecb9cada2015-12-08 15:45:58 -0700562 return error;
563}
564
Billy McFall22aa3e92016-09-09 08:46:40 -0400565/*?
566 * Layer 2 learning can be enabled and disabled on each
567 * interface and on each bridge-domain. Use this command to
568 * manage interfaces. It is enabled by default.
569 *
570 * @cliexpar
571 * Example of how to enable learning:
572 * @cliexcmd{set interface l2 learn GigabitEthernet0/8/0}
573 * Example of how to disable learning:
574 * @cliexcmd{set interface l2 learn GigabitEthernet0/8/0 disable}
575?*/
Dave Barach97d8dc22016-08-15 15:31:15 -0400576/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700577VLIB_CLI_COMMAND (int_learn_cli, static) = {
578 .path = "set interface l2 learn",
579 .short_help = "set interface l2 learn <interface> [disable]",
580 .function = int_learn,
581};
Dave Barach97d8dc22016-08-15 15:31:15 -0400582/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700583
584
585static clib_error_t *
586l2learn_config (vlib_main_t * vm, unformat_input_t * input)
587{
588 l2learn_main_t *mp = &l2learn_main;
589
590 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
591 {
592 if (unformat (input, "limit %d", &mp->global_learn_limit))
Dave Barach97d8dc22016-08-15 15:31:15 -0400593 ;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700594
595 else
Dave Barach97d8dc22016-08-15 15:31:15 -0400596 return clib_error_return (0, "unknown input `%U'",
597 format_unformat_error, input);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700598 }
599
600 return 0;
601}
602
603VLIB_CONFIG_FUNCTION (l2learn_config, "l2learn");
604
Neale Rannseb1525f2018-09-09 04:41:02 -0400605#endif
606
Dave Barach97d8dc22016-08-15 15:31:15 -0400607
608/*
609 * fd.io coding-style-patch-verification: ON
610 *
611 * Local Variables:
612 * eval: (c-set-style "gnu")
613 * End:
614 */