blob: 600d0c910fce9cfb969ef5dfe51cf4c7bc0148f4 [file] [log] [blame]
Ed Warnickecb9cada2015-12-08 15:45:58 -07001/*
2 * l2_fib.c : layer 2 forwarding table (aka mac table)
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
19#include <vlib/vlib.h>
20#include <vnet/vnet.h>
21#include <vnet/pg/pg.h>
22#include <vnet/ethernet/ethernet.h>
23#include <vlib/cli.h>
24
25#include <vppinfra/error.h>
26#include <vppinfra/hash.h>
Damjan Mariond171d482016-12-05 14:16:38 +010027#include <vnet/l2/l2_input.h>
Ed Warnickecb9cada2015-12-08 15:45:58 -070028#include <vnet/l2/l2_fib.h>
29#include <vnet/l2/l2_learn.h>
30#include <vnet/l2/l2_bd.h>
31
32#include <vppinfra/bihash_template.c>
33
John Lo8d00fff2017-08-03 00:35:36 -040034#include <vlibmemory/api.h>
35#include <vnet/vnet_msg_enum.h>
36
37#define vl_typedefs /* define message structures */
38#include <vnet/vnet_all_api_h.h>
39#undef vl_typedefs
40
41#define vl_endianfun /* define message structures */
42#include <vnet/vnet_all_api_h.h>
43#undef vl_endianfun
44
Billy McFall22aa3e92016-09-09 08:46:40 -040045/**
46 * @file
47 * @brief Ethernet MAC Address FIB Table Management.
48 *
49 * The MAC Address forwarding table for bridge-domains is called the l2fib.
50 * Entries are added automatically as part of mac learning, but MAC Addresses
51 * entries can also be added manually.
52 *
53 */
54
Ed Warnickecb9cada2015-12-08 15:45:58 -070055l2fib_main_t l2fib_main;
56
Neale Ranns7d645f72018-10-24 02:25:06 -070057u8 *
58format_l2fib_entry_result_flags (u8 * s, va_list * args)
59{
60 l2fib_entry_result_flags_t flags = va_arg (*args, int);
61
62 if (L2FIB_ENTRY_RESULT_FLAG_NONE == flags)
63 {
64 s = format (s, "none");
65 }
66 else
67 {
68#define _(a,v,t) { \
69 if (flags & L2FIB_ENTRY_RESULT_FLAG_##a) \
70 s = format (s, "%s ", t); \
71 }
72 foreach_l2fib_entry_result_attr
73#undef _
74 }
75 return (s);
76}
77
Mohsin Kazmi57938f62017-10-27 21:28:07 +020078static void
79incr_mac_address (u8 * mac)
80{
81 u64 tmp = *((u64 *) mac);
82 tmp = clib_net_to_host_u64 (tmp);
83 tmp += 1 << 16; /* skip unused (least significant) octets */
84 tmp = clib_host_to_net_u64 (tmp);
85
Dave Barach178cf492018-11-13 16:34:13 -050086 clib_memcpy_fast (mac, &tmp, 6);
Mohsin Kazmi57938f62017-10-27 21:28:07 +020087}
88
Dave Barach97d8dc22016-08-15 15:31:15 -040089/** Format sw_if_index. If the value is ~0, use the text "N/A" */
90u8 *
91format_vnet_sw_if_index_name_with_NA (u8 * s, va_list * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -070092{
Dave Barach97d8dc22016-08-15 15:31:15 -040093 vnet_main_t *vnm = va_arg (*args, vnet_main_t *);
Ed Warnickecb9cada2015-12-08 15:45:58 -070094 u32 sw_if_index = va_arg (*args, u32);
95 if (sw_if_index == ~0)
96 return format (s, "N/A");
Eyal Barib823df52017-06-12 17:07:22 +030097
Dave Barach3940de32019-07-23 16:28:36 -040098 vnet_sw_interface_t *swif =
99 vnet_get_sw_interface_or_null (vnm, sw_if_index);
Eyal Barib823df52017-06-12 17:07:22 +0300100 if (!swif)
Eyal Bari0f360dc2017-06-14 13:11:20 +0300101 return format (s, "Stale");
Eyal Barib823df52017-06-12 17:07:22 +0300102
103 return format (s, "%U", format_vnet_sw_interface_name, vnm,
Dave Barach3940de32019-07-23 16:28:36 -0400104 vnet_get_sw_interface_or_null (vnm, sw_if_index));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700105}
106
Neale Ranns99a3c6c2018-08-07 02:54:31 -0700107typedef struct l2fib_dump_walk_ctx_t_
108{
109 u32 bd_index;
110 l2fib_entry_key_t *l2fe_key;
111 l2fib_entry_result_t *l2fe_res;
112} l2fib_dump_walk_ctx_t;
113
114static void
115l2fib_dump_walk_cb (BVT (clib_bihash_kv) * kvp, void *arg)
116{
117 l2fib_dump_walk_ctx_t *ctx = arg;
118 l2fib_entry_result_t result;
119 l2fib_entry_key_t key;
120
121 key.raw = kvp->key;
122 result.raw = kvp->value;
123
124 if ((ctx->bd_index == ~0) || (ctx->bd_index == key.fields.bd_index))
125 {
126 vec_add1 (ctx->l2fe_key, key);
127 vec_add1 (ctx->l2fe_res, result);
128 }
129}
130
Dave Barach97d8dc22016-08-15 15:31:15 -0400131void
Neale Ranns99a3c6c2018-08-07 02:54:31 -0700132l2fib_table_dump (u32 bd_index,
133 l2fib_entry_key_t ** l2fe_key,
Dave Barach97d8dc22016-08-15 15:31:15 -0400134 l2fib_entry_result_t ** l2fe_res)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700135{
Dave Barach97d8dc22016-08-15 15:31:15 -0400136 l2fib_main_t *msm = &l2fib_main;
Neale Ranns99a3c6c2018-08-07 02:54:31 -0700137 l2fib_dump_walk_ctx_t ctx = {
138 .bd_index = bd_index,
139 };
140
141 BV (clib_bihash_foreach_key_value_pair)
142 (&msm->mac_table, l2fib_dump_walk_cb, &ctx);
143
144 *l2fe_key = ctx.l2fe_key;
145 *l2fe_res = ctx.l2fe_res;
146}
147
148typedef struct l2fib_show_walk_ctx_t_
149{
150 u8 first_entry;
151 u8 verbose;
152 vlib_main_t *vm;
153 vnet_main_t *vnm;
154 u32 total_entries;
155 u32 bd_index;
156 u8 learn;
157 u8 add;
158 u8 now;
159} l2fib_show_walk_ctx_t;
160
161static void
162l2fib_show_walk_cb (BVT (clib_bihash_kv) * kvp, void *arg)
163{
164 l2fib_show_walk_ctx_t *ctx = arg;
165 l2_bridge_domain_t *bd_config;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700166 l2fib_entry_result_t result;
Neale Ranns99a3c6c2018-08-07 02:54:31 -0700167 l2fib_entry_key_t key;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700168
Neale Ranns99a3c6c2018-08-07 02:54:31 -0700169 if (ctx->verbose && ctx->first_entry)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700170 {
Neale Ranns99a3c6c2018-08-07 02:54:31 -0700171 ctx->first_entry = 0;
172 vlib_cli_output (ctx->vm,
173 "%=19s%=7s%=7s%=8s%=9s%=7s%=7s%=5s%=30s",
174 "Mac-Address", "BD-Idx", "If-Idx",
175 "BSN-ISN", "Age(min)", "static", "filter",
176 "bvi", "Interface-Name");
177 }
178
179 key.raw = kvp->key;
180 result.raw = kvp->value;
181 ctx->total_entries++;
182
183 if (ctx->verbose &&
184 ((ctx->bd_index >> 31) || (ctx->bd_index == key.fields.bd_index)))
185 {
186 u8 *s = NULL;
187
Neale Rannsb54d0812018-09-06 06:22:56 -0700188 if (ctx->learn && l2fib_entry_result_is_set_AGE_NOT (&result))
Neale Ranns99a3c6c2018-08-07 02:54:31 -0700189 return; /* skip provisioned macs */
190
Neale Rannsb54d0812018-09-06 06:22:56 -0700191 if (ctx->add && !l2fib_entry_result_is_set_AGE_NOT (&result))
Neale Ranns99a3c6c2018-08-07 02:54:31 -0700192 return; /* skip learned macs */
193
194 bd_config = vec_elt_at_index (l2input_main.bd_configs,
195 key.fields.bd_index);
196
Neale Rannsb54d0812018-09-06 06:22:56 -0700197 if (l2fib_entry_result_is_set_AGE_NOT (&result))
Neale Ranns99a3c6c2018-08-07 02:54:31 -0700198 s = format (s, "no");
199 else if (bd_config->mac_age == 0)
200 s = format (s, "-");
201 else
Dave Barach97d8dc22016-08-15 15:31:15 -0400202 {
Neale Ranns99a3c6c2018-08-07 02:54:31 -0700203 i16 delta = ctx->now - result.fields.timestamp;
204 delta += delta < 0 ? 256 : 0;
205 s = format (s, "%d", delta);
Dave Barach97d8dc22016-08-15 15:31:15 -0400206 }
Neale Ranns99a3c6c2018-08-07 02:54:31 -0700207
208 vlib_cli_output (ctx->vm,
209 "%=19U%=7d%=7d %3d/%-3d%=9v%=7s%=7s%=5s%=30U",
210 format_ethernet_address, key.fields.mac,
211 key.fields.bd_index,
212 result.fields.sw_if_index == ~0
213 ? -1 : result.fields.sw_if_index,
Neale Rannsb54d0812018-09-06 06:22:56 -0700214 result.fields.sn.bd, result.fields.sn.swif, s,
215 l2fib_entry_result_is_set_STATIC (&result) ? "*" : "-",
216 l2fib_entry_result_is_set_FILTER (&result) ? "*" : "-",
217 l2fib_entry_result_is_set_BVI (&result) ? "*" : "-",
Neale Ranns99a3c6c2018-08-07 02:54:31 -0700218 format_vnet_sw_if_index_name_with_NA,
219 ctx->vnm, result.fields.sw_if_index);
220 vec_free (s);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700221 }
222}
223
Chris Luke16bcf7d2016-09-01 14:31:46 -0400224/** Display the contents of the l2fib. */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700225static clib_error_t *
Dave Barach97d8dc22016-08-15 15:31:15 -0400226show_l2fib (vlib_main_t * vm,
227 unformat_input_t * input, vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700228{
Dave Barach97d8dc22016-08-15 15:31:15 -0400229 bd_main_t *bdm = &bd_main;
230 l2fib_main_t *msm = &l2fib_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700231 u8 raw = 0;
Neale Ranns99a3c6c2018-08-07 02:54:31 -0700232 u32 bd_id;
233 l2fib_show_walk_ctx_t ctx = {
234 .first_entry = 1,
235 .bd_index = ~0,
236 .now = (u8) (vlib_time_now (vm) / 60),
237 .vm = vm,
238 .vnm = msm->vnet_main,
239 };
Ed Warnickecb9cada2015-12-08 15:45:58 -0700240
John Lo7dbd7262018-05-31 10:25:18 -0400241 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
John Lo8d00fff2017-08-03 00:35:36 -0400242 {
John Lo7dbd7262018-05-31 10:25:18 -0400243 if (unformat (input, "raw"))
Dave Barach97d8dc22016-08-15 15:31:15 -0400244 {
John Lo7dbd7262018-05-31 10:25:18 -0400245 raw = 1;
Neale Ranns99a3c6c2018-08-07 02:54:31 -0700246 ctx.verbose = 0;
John Lo7dbd7262018-05-31 10:25:18 -0400247 break;
248 }
249 else if (unformat (input, "verbose"))
Neale Ranns99a3c6c2018-08-07 02:54:31 -0700250 ctx.verbose = 1;
John Lo7dbd7262018-05-31 10:25:18 -0400251 else if (unformat (input, "all"))
Neale Ranns99a3c6c2018-08-07 02:54:31 -0700252 ctx.verbose = 1;
253 else if (unformat (input, "bd_index %d", &ctx.bd_index))
254 ctx.verbose = 1;
John Lo7dbd7262018-05-31 10:25:18 -0400255 else if (unformat (input, "learn"))
256 {
Neale Ranns99a3c6c2018-08-07 02:54:31 -0700257 ctx.add = 0;
258 ctx.learn = 1;
259 ctx.verbose = 1;
John Lo7dbd7262018-05-31 10:25:18 -0400260 }
261 else if (unformat (input, "add"))
262 {
Neale Ranns99a3c6c2018-08-07 02:54:31 -0700263 ctx.learn = 0;
264 ctx.add = 1;
265 ctx.verbose = 1;
John Lo7dbd7262018-05-31 10:25:18 -0400266 }
267 else if (unformat (input, "bd_id %d", &bd_id))
268 {
269 uword *p = hash_get (bdm->bd_index_by_bd_id, bd_id);
270 if (p)
271 {
Neale Ranns99a3c6c2018-08-07 02:54:31 -0700272 ctx.verbose = 1;
273 ctx.bd_index = p[0];
John Lo7dbd7262018-05-31 10:25:18 -0400274 }
275 else
276 return clib_error_return (0,
277 "bridge domain id %d doesn't exist\n",
278 bd_id);
Dave Barach97d8dc22016-08-15 15:31:15 -0400279 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700280 else
John Lo7dbd7262018-05-31 10:25:18 -0400281 break;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700282 }
283
Neale Ranns99a3c6c2018-08-07 02:54:31 -0700284 BV (clib_bihash_foreach_key_value_pair)
285 (&msm->mac_table, l2fib_show_walk_cb, &ctx);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700286
Neale Ranns99a3c6c2018-08-07 02:54:31 -0700287 if (ctx.total_entries == 0)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700288 vlib_cli_output (vm, "no l2fib entries");
289 else
John Lo8d00fff2017-08-03 00:35:36 -0400290 {
291 l2learn_main_t *lm = &l2learn_main;
292 vlib_cli_output (vm, "L2FIB total/learned entries: %d/%d "
293 "Last scan time: %.4esec Learn limit: %d ",
Neale Ranns99a3c6c2018-08-07 02:54:31 -0700294 ctx.total_entries, lm->global_learn_count,
John Lo8d00fff2017-08-03 00:35:36 -0400295 msm->age_scan_duration, lm->global_learn_limit);
296 if (lm->client_pid)
297 vlib_cli_output (vm, "L2MAC events client PID: %d "
298 "Last e-scan time: %.4esec Delay: %.2esec "
299 "Max macs in event: %d",
300 lm->client_pid, msm->evt_scan_duration,
301 msm->event_scan_delay, msm->max_macs_in_event);
302 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700303
304 if (raw)
305 vlib_cli_output (vm, "Raw Hash Table:\n%U\n",
Neale Ranns99a3c6c2018-08-07 02:54:31 -0700306 BV (format_bihash), &msm->mac_table, 1 /* verbose */ );
Ed Warnickecb9cada2015-12-08 15:45:58 -0700307
308 return 0;
309}
310
Billy McFall22aa3e92016-09-09 08:46:40 -0400311/*?
Paul Vinciguerrabdc0e6b2018-09-22 05:32:50 -0700312 * This command displays the MAC Address entries of the L2 FIB table.
Billy McFall22aa3e92016-09-09 08:46:40 -0400313 * Output can be filtered to just get the number of MAC Addresses or display
314 * each MAC Address for all bridge domains or just a single bridge domain.
315 *
316 * @cliexpar
317 * Example of how to display the number of MAC Address entries in the L2
318 * FIB table:
319 * @cliexstart{show l2fib}
320 * 3 l2fib entries
321 * @cliexend
322 * Example of how to display all the MAC Address entries in the L2
323 * FIB table:
John Lo7dbd7262018-05-31 10:25:18 -0400324 * @cliexstart{show l2fib all}
Billy McFall22aa3e92016-09-09 08:46:40 -0400325 * Mac Address BD Idx Interface Index static filter bvi refresh timestamp
326 * 52:54:00:53:18:33 1 GigabitEthernet0/8/0.200 3 0 0 0 0 0
327 * 52:54:00:53:18:55 1 GigabitEthernet0/8/0.200 3 1 0 0 0 0
328 * 52:54:00:53:18:77 1 N/A -1 1 1 0 0 0
329 * 3 l2fib entries
330 * @cliexend
331?*/
Dave Barach97d8dc22016-08-15 15:31:15 -0400332/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700333VLIB_CLI_COMMAND (show_l2fib_cli, static) = {
334 .path = "show l2fib",
John Lo7dbd7262018-05-31 10:25:18 -0400335 .short_help = "show l2fib [all] | [bd_id <nn> | bd_index <nn>] [learn | add] | [raw]",
Ed Warnickecb9cada2015-12-08 15:45:58 -0700336 .function = show_l2fib,
337};
Dave Barach97d8dc22016-08-15 15:31:15 -0400338/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700339
340
Dave Barach97d8dc22016-08-15 15:31:15 -0400341/* Remove all entries from the l2fib */
342void
Eyal Bari7537e712017-04-27 14:07:55 +0300343l2fib_clear_table (void)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700344{
Dave Barach97d8dc22016-08-15 15:31:15 -0400345 l2fib_main_t *mp = &l2fib_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700346
Eyal Bari7537e712017-04-27 14:07:55 +0300347 /* Remove all entries */
348 BV (clib_bihash_free) (&mp->mac_table);
349 BV (clib_bihash_init) (&mp->mac_table, "l2fib mac table",
350 L2FIB_NUM_BUCKETS, L2FIB_MEMORY_SIZE);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700351 l2learn_main.global_learn_count = 0;
352}
353
Chris Luke16bcf7d2016-09-01 14:31:46 -0400354/** Clear all entries in L2FIB.
355 * @TODO: Later we may want a way to remove only the non-static entries
Dave Barach97d8dc22016-08-15 15:31:15 -0400356 */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700357static clib_error_t *
Dave Barach97d8dc22016-08-15 15:31:15 -0400358clear_l2fib (vlib_main_t * vm,
359 unformat_input_t * input, vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700360{
Eyal Bari7537e712017-04-27 14:07:55 +0300361 l2fib_clear_table ();
Ed Warnickecb9cada2015-12-08 15:45:58 -0700362 return 0;
363}
364
Billy McFall22aa3e92016-09-09 08:46:40 -0400365/*?
366 * This command clears all the MAC Address entries from the L2 FIB table.
367 *
368 * @cliexpar
369 * Example of how to clear the L2 FIB Table:
370 * @cliexcmd{clear l2fib}
371 * Example to show the L2 FIB Table has been cleared:
372 * @cliexstart{show l2fib verbose}
373 * no l2fib entries
374 * @cliexend
375?*/
Dave Barach97d8dc22016-08-15 15:31:15 -0400376/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700377VLIB_CLI_COMMAND (clear_l2fib_cli, static) = {
378 .path = "clear l2fib",
Billy McFall22aa3e92016-09-09 08:46:40 -0400379 .short_help = "clear l2fib",
Ed Warnickecb9cada2015-12-08 15:45:58 -0700380 .function = clear_l2fib,
381};
Dave Barach97d8dc22016-08-15 15:31:15 -0400382/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700383
Eyal Bari7537e712017-04-27 14:07:55 +0300384static inline l2fib_seq_num_t
385l2fib_cur_seq_num (u32 bd_index, u32 sw_if_index)
386{
Eyal Bari7537e712017-04-27 14:07:55 +0300387 l2_bridge_domain_t *bd_config = l2input_bd_config (bd_index);
388 /* *INDENT-OFF* */
389 return (l2fib_seq_num_t) {
Eyal Bari0f360dc2017-06-14 13:11:20 +0300390 .swif = *l2fib_swif_seq_num (sw_if_index),
Eyal Bari7537e712017-04-27 14:07:55 +0300391 .bd = bd_config->seq_num,
392 };
393 /* *INDENT-ON* */
394}
Ed Warnickecb9cada2015-12-08 15:45:58 -0700395
Dave Barach97d8dc22016-08-15 15:31:15 -0400396/**
397 * Add an entry to the l2fib.
398 * If the entry already exists then overwrite it
399 */
400void
Neale Ranns3b81a1e2018-09-06 09:50:26 -0700401l2fib_add_entry (const u8 * mac, u32 bd_index,
Neale Rannsb54d0812018-09-06 06:22:56 -0700402 u32 sw_if_index, l2fib_entry_result_flags_t flags)
Dave Barach97d8dc22016-08-15 15:31:15 -0400403{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700404 l2fib_entry_key_t key;
405 l2fib_entry_result_t result;
Dave Barach97d8dc22016-08-15 15:31:15 -0400406 __attribute__ ((unused)) u32 bucket_contents;
John Lo8d00fff2017-08-03 00:35:36 -0400407 l2fib_main_t *fm = &l2fib_main;
408 l2learn_main_t *lm = &l2learn_main;
Dave Barach97d8dc22016-08-15 15:31:15 -0400409 BVT (clib_bihash_kv) kv;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700410
Dave Barach97d8dc22016-08-15 15:31:15 -0400411 /* set up key */
Mohsin Kazmi57938f62017-10-27 21:28:07 +0200412 key.raw = l2fib_make_key (mac, bd_index);
Dave Barach97d8dc22016-08-15 15:31:15 -0400413
Paul Vinciguerrabdc0e6b2018-09-22 05:32:50 -0700414 /* check if entry already exist */
John Lo8d00fff2017-08-03 00:35:36 -0400415 if (BV (clib_bihash_search) (&fm->mac_table, &kv, &kv))
416 {
417 /* decrement counter if overwriting a learned mac */
418 result.raw = kv.value;
Neale Rannsb54d0812018-09-06 06:22:56 -0700419 if ((!l2fib_entry_result_is_set_AGE_NOT (&result))
420 && (lm->global_learn_count))
John Lo8d00fff2017-08-03 00:35:36 -0400421 lm->global_learn_count--;
422 }
423
Dave Barach97d8dc22016-08-15 15:31:15 -0400424 /* set up result */
425 result.raw = 0; /* clear all fields */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700426 result.fields.sw_if_index = sw_if_index;
Neale Rannsb54d0812018-09-06 06:22:56 -0700427 result.fields.flags = flags;
428
429 /* no aging for provisioned entry */
430 l2fib_entry_result_set_AGE_NOT (&result);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700431
432 kv.key = key.raw;
433 kv.value = result.raw;
434
John Lo8d00fff2017-08-03 00:35:36 -0400435 BV (clib_bihash_add_del) (&fm->mac_table, &kv, 1 /* is_add */ );
Ed Warnickecb9cada2015-12-08 15:45:58 -0700436}
437
Dave Barach97d8dc22016-08-15 15:31:15 -0400438/**
Chris Luke16bcf7d2016-09-01 14:31:46 -0400439 * Add an entry to the L2FIB.
Dave Barach97d8dc22016-08-15 15:31:15 -0400440 * The CLI format is:
441 * l2fib add <mac> <bd> <intf> [static] [bvi]
442 * l2fib add <mac> <bd> filter
443 * Note that filter and bvi entries are always static
444 */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700445static clib_error_t *
Dave Barach97d8dc22016-08-15 15:31:15 -0400446l2fib_add (vlib_main_t * vm,
447 unformat_input_t * input, vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700448{
Dave Barach97d8dc22016-08-15 15:31:15 -0400449 bd_main_t *bdm = &bd_main;
450 vnet_main_t *vnm = vnet_get_main ();
451 clib_error_t *error = 0;
Mohsin Kazmi57938f62017-10-27 21:28:07 +0200452 u8 mac[6];
Ed Warnickecb9cada2015-12-08 15:45:58 -0700453 u32 bd_id;
454 u32 bd_index;
455 u32 sw_if_index = ~0;
Dave Barach97d8dc22016-08-15 15:31:15 -0400456 uword *p;
Neale Rannsb54d0812018-09-06 06:22:56 -0700457 l2fib_entry_result_flags_t flags;
458
459 flags = L2FIB_ENTRY_RESULT_FLAG_NONE;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700460
Mohsin Kazmi57938f62017-10-27 21:28:07 +0200461 if (!unformat (input, "%U", unformat_ethernet_address, mac))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700462 {
463 error = clib_error_return (0, "expected mac address `%U'",
Dave Barach97d8dc22016-08-15 15:31:15 -0400464 format_unformat_error, input);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700465 goto done;
466 }
Dave Barach97d8dc22016-08-15 15:31:15 -0400467
468 if (!unformat (input, "%d", &bd_id))
469 {
Ed Warnickecb9cada2015-12-08 15:45:58 -0700470 error = clib_error_return (0, "expected bridge domain ID `%U'",
Dave Barach97d8dc22016-08-15 15:31:15 -0400471 format_unformat_error, input);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700472 goto done;
Dave Barach97d8dc22016-08-15 15:31:15 -0400473 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700474
475 p = hash_get (bdm->bd_index_by_bd_id, bd_id);
Dave Barach97d8dc22016-08-15 15:31:15 -0400476 if (!p)
477 {
Ed Warnickecb9cada2015-12-08 15:45:58 -0700478 error = clib_error_return (0, "bridge domain ID %d invalid", bd_id);
479 goto done;
Dave Barach97d8dc22016-08-15 15:31:15 -0400480 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700481 bd_index = p[0];
482
Dave Barach97d8dc22016-08-15 15:31:15 -0400483 if (unformat (input, "filter"))
484 {
John Lo14edd972017-10-31 13:26:02 -0400485 l2fib_add_filter_entry (mac, bd_index);
486 return 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700487 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700488
John Lo14edd972017-10-31 13:26:02 -0400489 if (!unformat_user (input, unformat_vnet_sw_interface, vnm, &sw_if_index))
490 {
491 error = clib_error_return (0, "unknown interface `%U'",
492 format_unformat_error, input);
493 goto done;
494 }
495
496 if (unformat (input, "static"))
Neale Rannsb54d0812018-09-06 06:22:56 -0700497 flags |= L2FIB_ENTRY_RESULT_FLAG_STATIC;
John Lo14edd972017-10-31 13:26:02 -0400498 else if (unformat (input, "bvi"))
Neale Rannsb54d0812018-09-06 06:22:56 -0700499 flags |= (L2FIB_ENTRY_RESULT_FLAG_STATIC | L2FIB_ENTRY_RESULT_FLAG_BVI);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700500
John Lob2fd6cb2017-07-12 19:56:45 -0400501 if (vec_len (l2input_main.configs) <= sw_if_index)
502 {
503 error = clib_error_return (0, "Interface sw_if_index %d not in L2 mode",
504 sw_if_index);
505 goto done;
506 }
507
Neale Rannsb54d0812018-09-06 06:22:56 -0700508 l2fib_add_entry (mac, bd_index, sw_if_index, flags);
Dave Barach97d8dc22016-08-15 15:31:15 -0400509
510done:
Ed Warnickecb9cada2015-12-08 15:45:58 -0700511 return error;
512}
513
Billy McFall22aa3e92016-09-09 08:46:40 -0400514/*?
515 * This command adds a MAC Address entry to the L2 FIB table
516 * of an existing bridge-domain. The MAC Address can be static
517 * or dynamic. This command also allows a filter to be added,
518 * such that packets with given MAC Addresses (source mac or
519 * destination mac match) are dropped.
520 *
521 * @cliexpar
522 * Example of how to add a dynamic MAC Address entry to the L2 FIB table
523 * of a bridge-domain (where 200 is the bridge-domain-id):
524 * @cliexcmd{l2fib add 52:54:00:53:18:33 200 GigabitEthernet0/8/0.200}
525 * Example of how to add a static MAC Address entry to the L2 FIB table
526 * of a bridge-domain (where 200 is the bridge-domain-id):
527 * @cliexcmd{l2fib add 52:54:00:53:18:55 200 GigabitEthernet0/8/0.200 static}
528 * Example of how to add a filter such that a packet with the given MAC
529 * Address will be dropped in a given bridge-domain (where 200 is the
530 * bridge-domain-id):
531 * @cliexcmd{l2fib add 52:54:00:53:18:77 200 filter}
532 * Example of show command of the provisioned MAC Addresses and filters:
533 * @cliexstart{show l2fib verbose}
534 * Mac Address BD Idx Interface Index static filter bvi refresh timestamp
535 * 52:54:00:53:18:33 1 GigabitEthernet0/8/0.200 3 0 0 0 0 0
536 * 52:54:00:53:18:55 1 GigabitEthernet0/8/0.200 3 1 0 0 0 0
537 * 52:54:00:53:18:77 1 N/A -1 1 1 0 0 0
538 * 3 l2fib entries
539 * @cliexend
540?*/
Dave Barach97d8dc22016-08-15 15:31:15 -0400541/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700542VLIB_CLI_COMMAND (l2fib_add_cli, static) = {
543 .path = "l2fib add",
Billy McFall22aa3e92016-09-09 08:46:40 -0400544 .short_help = "l2fib add <mac> <bridge-domain-id> filter | <intf> [static | bvi]",
Ed Warnickecb9cada2015-12-08 15:45:58 -0700545 .function = l2fib_add,
546};
Dave Barach97d8dc22016-08-15 15:31:15 -0400547/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700548
549
550static clib_error_t *
Dave Barach97d8dc22016-08-15 15:31:15 -0400551l2fib_test_command_fn (vlib_main_t * vm,
552 unformat_input_t * input, vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700553{
Dave Barach97d8dc22016-08-15 15:31:15 -0400554 clib_error_t *error = 0;
Mohsin Kazmi57938f62017-10-27 21:28:07 +0200555 u8 mac[6], save_mac[6];
Ed Warnickecb9cada2015-12-08 15:45:58 -0700556 u32 bd_index = 0;
557 u32 sw_if_index = 8;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700558 u32 is_add = 0;
559 u32 is_del = 0;
560 u32 is_check = 0;
561 u32 count = 1;
562 int mac_set = 0;
563 int i;
564
Dave Barach97d8dc22016-08-15 15:31:15 -0400565 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700566 {
Mohsin Kazmi57938f62017-10-27 21:28:07 +0200567 if (unformat (input, "mac %U", unformat_ethernet_address, mac))
Dave Barach97d8dc22016-08-15 15:31:15 -0400568 mac_set = 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700569 else if (unformat (input, "add"))
Dave Barach97d8dc22016-08-15 15:31:15 -0400570 is_add = 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700571 else if (unformat (input, "del"))
Dave Barach97d8dc22016-08-15 15:31:15 -0400572 is_del = 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700573 else if (unformat (input, "check"))
Dave Barach97d8dc22016-08-15 15:31:15 -0400574 is_check = 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700575 else if (unformat (input, "count %d", &count))
Dave Barach97d8dc22016-08-15 15:31:15 -0400576 ;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700577 else
Dave Barach97d8dc22016-08-15 15:31:15 -0400578 break;
579 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700580
581 if (mac_set == 0)
582 return clib_error_return (0, "mac not set");
583
584 if (is_add == 0 && is_del == 0 && is_check == 0)
Dave Barach97d8dc22016-08-15 15:31:15 -0400585 return clib_error_return (0,
586 "noop: pick at least one of (add,del,check)");
Ed Warnickecb9cada2015-12-08 15:45:58 -0700587
Dave Barach178cf492018-11-13 16:34:13 -0500588 clib_memcpy_fast (save_mac, mac, 6);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700589
590 if (is_add)
591 {
592 for (i = 0; i < count; i++)
Dave Barach97d8dc22016-08-15 15:31:15 -0400593 {
Neale Rannsb54d0812018-09-06 06:22:56 -0700594 l2fib_add_entry (mac, bd_index, sw_if_index,
595 L2FIB_ENTRY_RESULT_FLAG_NONE);
Mohsin Kazmi57938f62017-10-27 21:28:07 +0200596 incr_mac_address (mac);
Dave Barach97d8dc22016-08-15 15:31:15 -0400597 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700598 }
599
600 if (is_check)
601 {
Dave Barach97d8dc22016-08-15 15:31:15 -0400602 BVT (clib_bihash_kv) kv;
603 l2fib_main_t *mp = &l2fib_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700604
Dave Barach178cf492018-11-13 16:34:13 -0500605 clib_memcpy_fast (mac, save_mac, 6);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700606
607 for (i = 0; i < count; i++)
Dave Barach97d8dc22016-08-15 15:31:15 -0400608 {
Mohsin Kazmi57938f62017-10-27 21:28:07 +0200609 kv.key = l2fib_make_key (mac, bd_index);
Dave Barach97d8dc22016-08-15 15:31:15 -0400610 if (BV (clib_bihash_search) (&mp->mac_table, &kv, &kv))
611 {
Mohsin Kazmi57938f62017-10-27 21:28:07 +0200612 clib_warning ("key %U AWOL", format_ethernet_address, mac);
Dave Barach97d8dc22016-08-15 15:31:15 -0400613 break;
614 }
Mohsin Kazmi57938f62017-10-27 21:28:07 +0200615 incr_mac_address (mac);
Dave Barach97d8dc22016-08-15 15:31:15 -0400616 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700617 }
618
619 if (is_del)
620 {
Dave Barach178cf492018-11-13 16:34:13 -0500621 clib_memcpy_fast (mac, save_mac, 6);
Mohsin Kazmi57938f62017-10-27 21:28:07 +0200622
Ed Warnickecb9cada2015-12-08 15:45:58 -0700623 for (i = 0; i < count; i++)
Dave Barach97d8dc22016-08-15 15:31:15 -0400624 {
John Lo7dbd7262018-05-31 10:25:18 -0400625 l2fib_del_entry (mac, bd_index, 0);
Mohsin Kazmi57938f62017-10-27 21:28:07 +0200626 incr_mac_address (mac);
Dave Barach97d8dc22016-08-15 15:31:15 -0400627 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700628 }
629
630 return error;
631}
632
Billy McFall22aa3e92016-09-09 08:46:40 -0400633/*?
634 * The set of '<em>test l2fib</em>' commands allow the L2 FIB table of the default
635 * bridge domain (bridge-domain-id of 0) to be modified.
636 *
637 * @cliexpar
638 * @parblock
639 * Example of how to add a set of 4 sequential MAC Address entries to L2
640 * FIB table of the default bridge-domain:
641 * @cliexcmd{test l2fib add mac 52:54:00:53:00:00 count 4}
642 *
643 * Show the set of 4 sequential MAC Address entries that were added:
644 * @cliexstart{show l2fib verbose}
645 * Mac Address BD Idx Interface Index static filter bvi refresh timestamp
646 * 52:54:00:53:00:00 0 GigabitEthernet0/8/0.300 8 0 0 0 0 0
647 * 52:54:00:53:00:01 0 GigabitEthernet0/8/0.300 8 0 0 0 0 0
648 * 52:54:00:53:00:03 0 GigabitEthernet0/8/0.300 8 0 0 0 0 0
649 * 52:54:00:53:00:02 0 GigabitEthernet0/8/0.300 8 0 0 0 0 0
650 * 4 l2fib entries
651 * @cliexend
652 *
653 * Example of how to check that the set of 4 sequential MAC Address
654 * entries were added to L2 FIB table of the default
655 * bridge-domain. Used a count of 5 to produce an error:
656 *
657 * @cliexcmd{test l2fib check mac 52:54:00:53:00:00 count 5}
658 * The output of the check command is in the log files. Log file
659 * location may vary based on your OS and Version:
660 *
661 * <b><em># tail -f /var/log/messages | grep l2fib_test_command_fn</em></b>
662 *
663 * Sep 7 17:15:24 localhost vnet[4952]: l2fib_test_command_fn:446: key 52:54:00:53:00:04 AWOL
664 *
665 * Example of how to delete a set of 4 sequential MAC Address entries
666 * from L2 FIB table of the default bridge-domain:
667 * @cliexcmd{test l2fib del mac 52:54:00:53:00:00 count 4}
668 * @endparblock
669?*/
Dave Barach97d8dc22016-08-15 15:31:15 -0400670/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700671VLIB_CLI_COMMAND (l2fib_test_command, static) = {
672 .path = "test l2fib",
Billy McFall22aa3e92016-09-09 08:46:40 -0400673 .short_help = "test l2fib [add|del|check] mac <base-addr> count <nn>",
Ed Warnickecb9cada2015-12-08 15:45:58 -0700674 .function = l2fib_test_command_fn,
675};
Dave Barach97d8dc22016-08-15 15:31:15 -0400676/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700677
678
Dave Barach97d8dc22016-08-15 15:31:15 -0400679/**
680 * Delete an entry from the l2fib.
John Lo7dbd7262018-05-31 10:25:18 -0400681 * Return 0 if the entry was deleted, or 1 it was not found or if
682 * sw_if_index is non-zero and does not match that in the entry.
Dave Barach97d8dc22016-08-15 15:31:15 -0400683 */
John Lo7dbd7262018-05-31 10:25:18 -0400684u32
Neale Ranns3b81a1e2018-09-06 09:50:26 -0700685l2fib_del_entry (const u8 * mac, u32 bd_index, u32 sw_if_index)
Dave Barach97d8dc22016-08-15 15:31:15 -0400686{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700687 l2fib_entry_result_t result;
Dave Barach97d8dc22016-08-15 15:31:15 -0400688 l2fib_main_t *mp = &l2fib_main;
689 BVT (clib_bihash_kv) kv;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700690
Dave Barach97d8dc22016-08-15 15:31:15 -0400691 /* set up key */
John Lo7dbd7262018-05-31 10:25:18 -0400692 kv.key = l2fib_make_key (mac, bd_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700693
Dave Barach97d8dc22016-08-15 15:31:15 -0400694 if (BV (clib_bihash_search) (&mp->mac_table, &kv, &kv))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700695 return 1;
696
697 result.raw = kv.value;
698
John Lo7dbd7262018-05-31 10:25:18 -0400699 /* check if sw_if_index of entry match */
700 if ((sw_if_index != 0) && (sw_if_index != result.fields.sw_if_index))
701 return 1;
702
Dave Barach97d8dc22016-08-15 15:31:15 -0400703 /* decrement counter if dynamically learned mac */
Neale Rannsb54d0812018-09-06 06:22:56 -0700704 if ((!l2fib_entry_result_is_set_AGE_NOT (&result)) &&
705 (l2learn_main.global_learn_count))
John Lo8d00fff2017-08-03 00:35:36 -0400706 l2learn_main.global_learn_count--;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700707
Dave Barach97d8dc22016-08-15 15:31:15 -0400708 /* Remove entry from hash table */
709 BV (clib_bihash_add_del) (&mp->mac_table, &kv, 0 /* is_add */ );
Ed Warnickecb9cada2015-12-08 15:45:58 -0700710 return 0;
711}
712
Dave Barach97d8dc22016-08-15 15:31:15 -0400713/**
Chris Luke16bcf7d2016-09-01 14:31:46 -0400714 * Delete an entry from the L2FIB.
Dave Barach97d8dc22016-08-15 15:31:15 -0400715 * The CLI format is:
716 * l2fib del <mac> <bd-id>
717 */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700718static clib_error_t *
Dave Barach97d8dc22016-08-15 15:31:15 -0400719l2fib_del (vlib_main_t * vm,
720 unformat_input_t * input, vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700721{
Dave Barach97d8dc22016-08-15 15:31:15 -0400722 bd_main_t *bdm = &bd_main;
723 clib_error_t *error = 0;
Mohsin Kazmi57938f62017-10-27 21:28:07 +0200724 u8 mac[6];
Ed Warnickecb9cada2015-12-08 15:45:58 -0700725 u32 bd_id;
726 u32 bd_index;
Dave Barach97d8dc22016-08-15 15:31:15 -0400727 uword *p;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700728
Mohsin Kazmi57938f62017-10-27 21:28:07 +0200729 if (!unformat (input, "%U", unformat_ethernet_address, mac))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700730 {
731 error = clib_error_return (0, "expected mac address `%U'",
Dave Barach97d8dc22016-08-15 15:31:15 -0400732 format_unformat_error, input);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700733 goto done;
734 }
Dave Barach97d8dc22016-08-15 15:31:15 -0400735
736 if (!unformat (input, "%d", &bd_id))
737 {
Ed Warnickecb9cada2015-12-08 15:45:58 -0700738 error = clib_error_return (0, "expected bridge domain ID `%U'",
Dave Barach97d8dc22016-08-15 15:31:15 -0400739 format_unformat_error, input);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700740 goto done;
Dave Barach97d8dc22016-08-15 15:31:15 -0400741 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700742
743 p = hash_get (bdm->bd_index_by_bd_id, bd_id);
Dave Barach97d8dc22016-08-15 15:31:15 -0400744 if (!p)
745 {
Ed Warnickecb9cada2015-12-08 15:45:58 -0700746 error = clib_error_return (0, "bridge domain ID %d invalid", bd_id);
747 goto done;
Dave Barach97d8dc22016-08-15 15:31:15 -0400748 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700749 bd_index = p[0];
750
Dave Barach97d8dc22016-08-15 15:31:15 -0400751 /* Delete the entry */
John Lo7dbd7262018-05-31 10:25:18 -0400752 if (l2fib_del_entry (mac, bd_index, 0))
Dave Barach97d8dc22016-08-15 15:31:15 -0400753 {
754 error = clib_error_return (0, "mac entry not found");
755 goto done;
756 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700757
Dave Barach97d8dc22016-08-15 15:31:15 -0400758done:
Ed Warnickecb9cada2015-12-08 15:45:58 -0700759 return error;
760}
761
Billy McFall22aa3e92016-09-09 08:46:40 -0400762/*?
763 * This command deletes an existing MAC Address entry from the L2 FIB
764 * table of an existing bridge-domain.
765 *
766 * @cliexpar
767 * Example of how to delete a MAC Address entry from the L2 FIB table of a bridge-domain (where 200 is the bridge-domain-id):
768 * @cliexcmd{l2fib del 52:54:00:53:18:33 200}
769?*/
Dave Barach97d8dc22016-08-15 15:31:15 -0400770/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700771VLIB_CLI_COMMAND (l2fib_del_cli, static) = {
772 .path = "l2fib del",
John Lo7dbd7262018-05-31 10:25:18 -0400773 .short_help = "l2fib del <mac> <bridge-domain-id> []",
Ed Warnickecb9cada2015-12-08 15:45:58 -0700774 .function = l2fib_del,
775};
Dave Barach97d8dc22016-08-15 15:31:15 -0400776/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700777
John Loda1f2c72017-03-24 20:11:15 -0400778/**
779 Kick off ager to scan MACs to age/delete MAC entries
780*/
781void
782l2fib_start_ager_scan (vlib_main_t * vm)
783{
Eyal Bari24db0ec2017-09-27 21:43:51 +0300784 uword evt = L2_MAC_AGE_PROCESS_EVENT_ONE_PASS;
John Loda1f2c72017-03-24 20:11:15 -0400785
786 /* check if there is at least one bd with mac aging enabled */
Eyal Bari24db0ec2017-09-27 21:43:51 +0300787 l2_bridge_domain_t *bd_config;
John Loda1f2c72017-03-24 20:11:15 -0400788 vec_foreach (bd_config, l2input_main.bd_configs)
Eyal Bari24db0ec2017-09-27 21:43:51 +0300789 {
John Loda1f2c72017-03-24 20:11:15 -0400790 if (bd_config->bd_id != ~0 && bd_config->mac_age != 0)
Eyal Bari24db0ec2017-09-27 21:43:51 +0300791 {
792 evt = L2_MAC_AGE_PROCESS_EVENT_START;
793 break;
794 }
795 }
John Loda1f2c72017-03-24 20:11:15 -0400796
797 vlib_process_signal_event (vm, l2fib_mac_age_scanner_process_node.index,
Eyal Bari24db0ec2017-09-27 21:43:51 +0300798 evt, 0);
John Loda1f2c72017-03-24 20:11:15 -0400799}
800
801/**
Eyal Bari7537e712017-04-27 14:07:55 +0300802 Flush all non static MACs from an interface
John Loda1f2c72017-03-24 20:11:15 -0400803*/
804void
805l2fib_flush_int_mac (vlib_main_t * vm, u32 sw_if_index)
806{
Eyal Bari0f360dc2017-06-14 13:11:20 +0300807 *l2fib_swif_seq_num (sw_if_index) += 1;
John Loda1f2c72017-03-24 20:11:15 -0400808 l2fib_start_ager_scan (vm);
809}
810
811/**
Eyal Bari7537e712017-04-27 14:07:55 +0300812 Flush all non static MACs in a bridge domain
John Loda1f2c72017-03-24 20:11:15 -0400813*/
814void
815l2fib_flush_bd_mac (vlib_main_t * vm, u32 bd_index)
816{
Eyal Bari7537e712017-04-27 14:07:55 +0300817 l2_bridge_domain_t *bd_config = l2input_bd_config (bd_index);
John Loda1f2c72017-03-24 20:11:15 -0400818 bd_config->seq_num += 1;
819 l2fib_start_ager_scan (vm);
820}
821
822/**
Eyal Bari7537e712017-04-27 14:07:55 +0300823 Flush all non static MACs - flushes all valid BDs
824*/
825void
826l2fib_flush_all_mac (vlib_main_t * vm)
827{
828 l2_bridge_domain_t *bd_config;
829 vec_foreach (bd_config, l2input_main.bd_configs)
830 if (bd_is_valid (bd_config))
831 bd_config->seq_num += 1;
832
833 l2fib_start_ager_scan (vm);
834}
835
836
837/**
John Loda1f2c72017-03-24 20:11:15 -0400838 Flush MACs, except static ones, associated with an interface
839 The CLI format is:
840 l2fib flush-mac interface <if-name>
841*/
842static clib_error_t *
843l2fib_flush_mac_int (vlib_main_t * vm,
844 unformat_input_t * input, vlib_cli_command_t * cmd)
845{
846 vnet_main_t *vnm = vnet_get_main ();
847 clib_error_t *error = 0;
848 u32 sw_if_index;
849
850 if (!unformat_user (input, unformat_vnet_sw_interface, vnm, &sw_if_index))
851 {
852 error = clib_error_return (0, "unknown interface `%U'",
853 format_unformat_error, input);
854 goto done;
855 }
856
857 l2fib_flush_int_mac (vm, sw_if_index);
858
859done:
860 return error;
861}
862
Eyal Bari7537e712017-04-27 14:07:55 +0300863/**
864 Flush all MACs, except static ones
865 The CLI format is:
866 l2fib flush-mac all
867*/
868static clib_error_t *
869l2fib_flush_mac_all (vlib_main_t * vm,
870 unformat_input_t * input, vlib_cli_command_t * cmd)
871{
872 l2fib_flush_all_mac (vm);
873 return 0;
874}
875
876/*?
877 * This command kick off ager to delete all existing MAC Address entries,
878 * except static ones, associated with an interface from the L2 FIB table.
879 *
880 * @cliexpar
881 * Example of how to flush MAC Address entries learned on an interface from the L2 FIB table:
882 * @cliexcmd{l2fib flush-mac interface GigabitEthernet2/1/0}
883?*/
884/* *INDENT-OFF* */
885VLIB_CLI_COMMAND (l2fib_flush_mac_all_cli, static) = {
886 .path = "l2fib flush-mac all",
887 .short_help = "l2fib flush-mac all",
888 .function = l2fib_flush_mac_all,
889};
890/* *INDENT-ON* */
891
John Loda1f2c72017-03-24 20:11:15 -0400892/*?
893 * This command kick off ager to delete all existing MAC Address entries,
894 * except static ones, associated with an interface from the L2 FIB table.
895 *
896 * @cliexpar
897 * Example of how to flush MAC Address entries learned on an interface from the L2 FIB table:
898 * @cliexcmd{l2fib flush-mac interface GigabitEthernet2/1/0}
899?*/
900/* *INDENT-OFF* */
901VLIB_CLI_COMMAND (l2fib_flush_mac_int_cli, static) = {
902 .path = "l2fib flush-mac interface",
903 .short_help = "l2fib flush-mac interface <if-name>",
904 .function = l2fib_flush_mac_int,
905};
906/* *INDENT-ON* */
907
908/**
909 Flush bridge-domain MACs except static ones.
910 The CLI format is:
911 l2fib flush-mac bridge-domain <bd-id>
912*/
913static clib_error_t *
914l2fib_flush_mac_bd (vlib_main_t * vm,
915 unformat_input_t * input, vlib_cli_command_t * cmd)
916{
917 bd_main_t *bdm = &bd_main;
918 clib_error_t *error = 0;
919 u32 bd_index, bd_id;
920 uword *p;
921
922 if (!unformat (input, "%d", &bd_id))
923 {
924 error = clib_error_return (0, "expecting bridge-domain id but got `%U'",
925 format_unformat_error, input);
926 goto done;
927 }
928
929 p = hash_get (bdm->bd_index_by_bd_id, bd_id);
930 if (p)
931 bd_index = *p;
932 else
933 return clib_error_return (0, "No such bridge domain %d", bd_id);
934
935 l2fib_flush_bd_mac (vm, bd_index);
936
937done:
938 return error;
939}
940
941/*?
942 * This command kick off ager to delete all existing MAC Address entries,
943 * except static ones, in a bridge domain from the L2 FIB table.
944 *
945 * @cliexpar
946 * Example of how to flush MAC Address entries learned in a bridge domain from the L2 FIB table:
947 * @cliexcmd{l2fib flush-mac bridge-domain 1000}
948?*/
949/* *INDENT-OFF* */
950VLIB_CLI_COMMAND (l2fib_flush_mac_bd_cli, static) = {
951 .path = "l2fib flush-mac bridge-domain",
952 .short_help = "l2fib flush-mac bridge-domain <bd-id>",
953 .function = l2fib_flush_mac_bd,
954};
955/* *INDENT-ON* */
956
Eyal Bariafc47aa2017-04-20 14:45:17 +0300957clib_error_t *
958l2fib_sw_interface_up_down (vnet_main_t * vnm, u32 sw_if_index, u32 flags)
959{
960 l2_input_config_t *config = l2input_intf_config (sw_if_index);
961 if ((flags & VNET_SW_INTERFACE_FLAG_ADMIN_UP) == 0 && config->bridge)
962 l2fib_flush_int_mac (vnm->vlib_main, sw_if_index);
963 return 0;
964}
965
966VNET_SW_INTERFACE_ADMIN_UP_DOWN_FUNCTION (l2fib_sw_interface_up_down);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700967
Dave Barach97d8dc22016-08-15 15:31:15 -0400968BVT (clib_bihash) * get_mac_table (void)
969{
970 l2fib_main_t *mp = &l2fib_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700971 return &mp->mac_table;
972}
973
John Lo8d00fff2017-08-03 00:35:36 -0400974static_always_inline void *
975allocate_mac_evt_buf (u32 client, u32 client_index)
976{
977 l2fib_main_t *fm = &l2fib_main;
978 vl_api_l2_macs_event_t *mp = vl_msg_api_alloc
979 (sizeof (*mp) + (fm->max_macs_in_event * sizeof (vl_api_mac_entry_t)));
980 mp->_vl_msg_id = htons (VL_API_L2_MACS_EVENT);
981 mp->pid = htonl (client);
982 mp->client_index = client_index;
983 return mp;
984}
985
986static_always_inline f64
987l2fib_scan (vlib_main_t * vm, f64 start_time, u8 event_only)
988{
989 l2fib_main_t *fm = &l2fib_main;
990 l2learn_main_t *lm = &l2learn_main;
991
992 BVT (clib_bihash) * h = &fm->mac_table;
993 int i, j, k;
994 f64 last_start = start_time;
995 f64 accum_t = 0;
996 f64 delta_t = 0;
997 u32 evt_idx = 0;
998 u32 learn_count = 0;
999 u32 client = lm->client_pid;
1000 u32 cl_idx = lm->client_index;
1001 vl_api_l2_macs_event_t *mp = 0;
Florin Corasaf0ff5a2018-01-10 08:17:03 -08001002 vl_api_registration_t *reg = 0;
John Lo8d00fff2017-08-03 00:35:36 -04001003
Dave Barach32dcd3b2019-07-08 12:25:38 -04001004 /* Don't scan the l2 fib if it hasn't been instantiated yet */
1005 if (alloc_arena (h) == 0)
1006 return 0.0;
1007
John Lo8d00fff2017-08-03 00:35:36 -04001008 if (client)
1009 {
1010 mp = allocate_mac_evt_buf (client, cl_idx);
Florin Corasaf0ff5a2018-01-10 08:17:03 -08001011 reg = vl_api_client_index_to_registration (lm->client_index);
John Lo8d00fff2017-08-03 00:35:36 -04001012 }
1013
1014 for (i = 0; i < h->nbuckets; i++)
1015 {
1016 /* allow no more than 20us without a pause */
1017 delta_t = vlib_time_now (vm) - last_start;
1018 if (delta_t > 20e-6)
1019 {
1020 vlib_process_suspend (vm, 100e-6); /* suspend for 100 us */
1021 last_start = vlib_time_now (vm);
1022 accum_t += delta_t;
1023 }
1024
1025 if (i < (h->nbuckets - 3))
1026 {
1027 BVT (clib_bihash_bucket) * b = &h->buckets[i + 3];
1028 CLIB_PREFETCH (b, CLIB_CACHE_LINE_BYTES, LOAD);
1029 b = &h->buckets[i + 1];
1030 if (b->offset)
1031 {
1032 BVT (clib_bihash_value) * v =
1033 BV (clib_bihash_get_value) (h, b->offset);
1034 CLIB_PREFETCH (v, CLIB_CACHE_LINE_BYTES, LOAD);
1035 }
1036 }
1037
1038 BVT (clib_bihash_bucket) * b = &h->buckets[i];
1039 if (b->offset == 0)
1040 continue;
1041 BVT (clib_bihash_value) * v = BV (clib_bihash_get_value) (h, b->offset);
1042 for (j = 0; j < (1 << b->log2_pages); j++)
1043 {
1044 for (k = 0; k < BIHASH_KVP_PER_PAGE; k++)
1045 {
1046 if (v->kvp[k].key == ~0ULL && v->kvp[k].value == ~0ULL)
1047 continue;
1048
1049 l2fib_entry_key_t key = {.raw = v->kvp[k].key };
1050 l2fib_entry_result_t result = {.raw = v->kvp[k].value };
1051
Neale Rannsb54d0812018-09-06 06:22:56 -07001052 if (!l2fib_entry_result_is_set_AGE_NOT (&result))
John Lo8d00fff2017-08-03 00:35:36 -04001053 learn_count++;
1054
John Lo8d00fff2017-08-03 00:35:36 -04001055 if (client)
1056 {
Eyal Bari24db0ec2017-09-27 21:43:51 +03001057 if (PREDICT_FALSE (evt_idx >= fm->max_macs_in_event))
1058 {
1059 /* event message full, send it and start a new one */
Florin Corasaf0ff5a2018-01-10 08:17:03 -08001060 if (reg && vl_api_can_send_msg (reg))
Eyal Bari24db0ec2017-09-27 21:43:51 +03001061 {
1062 mp->n_macs = htonl (evt_idx);
Florin Corasaf0ff5a2018-01-10 08:17:03 -08001063 vl_api_send_msg (reg, (u8 *) mp);
Eyal Bari24db0ec2017-09-27 21:43:51 +03001064 mp = allocate_mac_evt_buf (client, cl_idx);
1065 }
1066 else
1067 {
Florin Corasaf0ff5a2018-01-10 08:17:03 -08001068 if (reg)
Dave Barach59b25652017-09-10 15:04:27 -04001069 clib_warning ("MAC event to pid %d queue stuffed!"
1070 " %d MAC entries lost", client,
1071 evt_idx);
Eyal Bari24db0ec2017-09-27 21:43:51 +03001072 }
1073 evt_idx = 0;
1074 }
1075
Neale Rannsb54d0812018-09-06 06:22:56 -07001076 if (l2fib_entry_result_is_set_LRN_EVT (&result))
John Lo8d00fff2017-08-03 00:35:36 -04001077 {
1078 /* copy mac entry to event msg */
Dave Barach178cf492018-11-13 16:34:13 -05001079 clib_memcpy_fast (mp->mac[evt_idx].mac_addr,
1080 key.fields.mac, 6);
Neale Rannsb54d0812018-09-06 06:22:56 -07001081 mp->mac[evt_idx].action =
1082 l2fib_entry_result_is_set_LRN_MOV (&result) ?
John Loe23c99e2018-03-13 21:53:18 -04001083 MAC_EVENT_ACTION_MOVE : MAC_EVENT_ACTION_ADD;
John Lo8d00fff2017-08-03 00:35:36 -04001084 mp->mac[evt_idx].sw_if_index =
1085 htonl (result.fields.sw_if_index);
John Loe23c99e2018-03-13 21:53:18 -04001086 /* clear event bits and update mac entry */
Neale Rannsb54d0812018-09-06 06:22:56 -07001087 l2fib_entry_result_clear_LRN_EVT (&result);
1088 l2fib_entry_result_clear_LRN_MOV (&result);
John Lo8d00fff2017-08-03 00:35:36 -04001089 BVT (clib_bihash_kv) kv;
1090 kv.key = key.raw;
1091 kv.value = result.raw;
1092 BV (clib_bihash_add_del) (&fm->mac_table, &kv, 1);
1093 evt_idx++;
1094 continue; /* skip aging */
1095 }
1096 }
1097
Neale Rannsb54d0812018-09-06 06:22:56 -07001098 if (event_only || l2fib_entry_result_is_set_AGE_NOT (&result))
Paul Vinciguerrabdc0e6b2018-09-22 05:32:50 -07001099 continue; /* skip aging - static_mac always age_not */
John Lo8d00fff2017-08-03 00:35:36 -04001100
1101 /* start aging processing */
1102 u32 bd_index = key.fields.bd_index;
1103 u32 sw_if_index = result.fields.sw_if_index;
1104 u16 sn = l2fib_cur_seq_num (bd_index, sw_if_index).as_u16;
1105 if (result.fields.sn.as_u16 != sn)
1106 goto age_out; /* stale mac */
1107
1108 l2_bridge_domain_t *bd_config =
1109 vec_elt_at_index (l2input_main.bd_configs, bd_index);
1110
1111 if (bd_config->mac_age == 0)
1112 continue; /* skip aging */
1113
1114 i16 delta = (u8) (start_time / 60) - result.fields.timestamp;
1115 delta += delta < 0 ? 256 : 0;
1116
1117 if (delta < bd_config->mac_age)
1118 continue; /* still valid */
1119
1120 age_out:
1121 if (client)
1122 {
1123 /* copy mac entry to event msg */
Dave Barach178cf492018-11-13 16:34:13 -05001124 clib_memcpy_fast (mp->mac[evt_idx].mac_addr, key.fields.mac,
1125 6);
John Loe23c99e2018-03-13 21:53:18 -04001126 mp->mac[evt_idx].action = MAC_EVENT_ACTION_DELETE;
John Lo8d00fff2017-08-03 00:35:36 -04001127 mp->mac[evt_idx].sw_if_index =
1128 htonl (result.fields.sw_if_index);
1129 evt_idx++;
1130 }
1131 /* delete mac entry */
1132 BVT (clib_bihash_kv) kv;
1133 kv.key = key.raw;
1134 BV (clib_bihash_add_del) (&fm->mac_table, &kv, 0);
1135 learn_count--;
Dave Barach28374ca2018-08-07 12:46:18 -04001136 /*
1137 * Note: we may have just freed the bucket's backing
1138 * storage, so check right here...
1139 */
1140 if (b->offset == 0)
1141 goto doublebreak;
John Lo8d00fff2017-08-03 00:35:36 -04001142 }
1143 v++;
1144 }
Dave Barach28374ca2018-08-07 12:46:18 -04001145 doublebreak:
1146 ;
John Lo8d00fff2017-08-03 00:35:36 -04001147 }
1148
1149 /* keep learn count consistent */
1150 l2learn_main.global_learn_count = learn_count;
1151
1152 if (mp)
1153 {
1154 /* send any outstanding mac event message else free message buffer */
1155 if (evt_idx)
1156 {
Florin Corasaf0ff5a2018-01-10 08:17:03 -08001157 if (reg && vl_api_can_send_msg (reg))
John Lo8d00fff2017-08-03 00:35:36 -04001158 {
1159 mp->n_macs = htonl (evt_idx);
Florin Corasaf0ff5a2018-01-10 08:17:03 -08001160 vl_api_send_msg (reg, (u8 *) mp);
John Lo8d00fff2017-08-03 00:35:36 -04001161 }
1162 else
1163 {
Florin Corasaf0ff5a2018-01-10 08:17:03 -08001164 if (reg)
Dave Barach59b25652017-09-10 15:04:27 -04001165 clib_warning ("MAC event to pid %d queue stuffed!"
1166 " %d MAC entries lost", client, evt_idx);
John Lo8d00fff2017-08-03 00:35:36 -04001167 vl_msg_api_free (mp);
1168 }
1169 }
1170 else
1171 vl_msg_api_free (mp);
1172 }
1173 return delta_t + accum_t;
1174}
1175
Damjan Mariond171d482016-12-05 14:16:38 +01001176static uword
1177l2fib_mac_age_scanner_process (vlib_main_t * vm, vlib_node_runtime_t * rt,
1178 vlib_frame_t * f)
1179{
1180 uword event_type, *event_data = 0;
John Lo8d00fff2017-08-03 00:35:36 -04001181 l2fib_main_t *fm = &l2fib_main;
1182 l2learn_main_t *lm = &l2learn_main;
Damjan Mariond171d482016-12-05 14:16:38 +01001183 bool enabled = 0;
John Lo7f358b32018-04-28 01:19:24 -04001184 f64 start_time, next_age_scan_time = CLIB_TIME_MAX;
Damjan Mariond171d482016-12-05 14:16:38 +01001185
1186 while (1)
1187 {
Eyal Bari24db0ec2017-09-27 21:43:51 +03001188 if (lm->client_pid)
1189 vlib_process_wait_for_event_or_clock (vm, fm->event_scan_delay);
1190 else if (enabled)
John Lo8d00fff2017-08-03 00:35:36 -04001191 {
Eyal Bari24db0ec2017-09-27 21:43:51 +03001192 f64 t = next_age_scan_time - vlib_time_now (vm);
1193 vlib_process_wait_for_event_or_clock (vm, t);
John Lo8d00fff2017-08-03 00:35:36 -04001194 }
Damjan Mariond171d482016-12-05 14:16:38 +01001195 else
1196 vlib_process_wait_for_event (vm);
1197
1198 event_type = vlib_process_get_events (vm, &event_data);
1199 vec_reset_length (event_data);
1200
John Lo8d00fff2017-08-03 00:35:36 -04001201 start_time = vlib_time_now (vm);
Eyal Bari24db0ec2017-09-27 21:43:51 +03001202 enum
1203 { SCAN_MAC_AGE, SCAN_MAC_EVENT, SCAN_DISABLE } scan = SCAN_MAC_AGE;
John Lo8d00fff2017-08-03 00:35:36 -04001204
Damjan Mariond171d482016-12-05 14:16:38 +01001205 switch (event_type)
1206 {
John Lo8d00fff2017-08-03 00:35:36 -04001207 case ~0: /* timer expired */
Eyal Bari24db0ec2017-09-27 21:43:51 +03001208 if (lm->client_pid != 0 && start_time < next_age_scan_time)
John Lo8d00fff2017-08-03 00:35:36 -04001209 scan = SCAN_MAC_EVENT;
Damjan Mariond171d482016-12-05 14:16:38 +01001210 break;
John Lo8d00fff2017-08-03 00:35:36 -04001211
Damjan Mariond171d482016-12-05 14:16:38 +01001212 case L2_MAC_AGE_PROCESS_EVENT_START:
1213 enabled = 1;
1214 break;
John Lo8d00fff2017-08-03 00:35:36 -04001215
Damjan Mariond171d482016-12-05 14:16:38 +01001216 case L2_MAC_AGE_PROCESS_EVENT_STOP:
1217 enabled = 0;
Eyal Bari24db0ec2017-09-27 21:43:51 +03001218 scan = SCAN_DISABLE;
1219 break;
John Lo8d00fff2017-08-03 00:35:36 -04001220
John Loda1f2c72017-03-24 20:11:15 -04001221 case L2_MAC_AGE_PROCESS_EVENT_ONE_PASS:
John Loda1f2c72017-03-24 20:11:15 -04001222 break;
John Lo8d00fff2017-08-03 00:35:36 -04001223
Damjan Mariond171d482016-12-05 14:16:38 +01001224 default:
1225 ASSERT (0);
1226 }
Eyal Bari7537e712017-04-27 14:07:55 +03001227
John Lo8d00fff2017-08-03 00:35:36 -04001228 if (scan == SCAN_MAC_EVENT)
1229 l2fib_main.evt_scan_duration = l2fib_scan (vm, start_time, 1);
1230 else
Eyal Bari24db0ec2017-09-27 21:43:51 +03001231 {
1232 if (scan == SCAN_MAC_AGE)
1233 l2fib_main.age_scan_duration = l2fib_scan (vm, start_time, 0);
1234 if (scan == SCAN_DISABLE)
1235 {
1236 l2fib_main.age_scan_duration = 0;
1237 l2fib_main.evt_scan_duration = 0;
1238 }
1239 /* schedule next scan */
1240 if (enabled)
1241 next_age_scan_time = start_time + L2FIB_AGE_SCAN_INTERVAL;
1242 else
John Lo7f358b32018-04-28 01:19:24 -04001243 next_age_scan_time = CLIB_TIME_MAX;
Eyal Bari24db0ec2017-09-27 21:43:51 +03001244 }
Damjan Mariond171d482016-12-05 14:16:38 +01001245 }
1246 return 0;
1247}
1248
1249/* *INDENT-OFF* */
1250VLIB_REGISTER_NODE (l2fib_mac_age_scanner_process_node) = {
1251 .function = l2fib_mac_age_scanner_process,
1252 .type = VLIB_NODE_TYPE_PROCESS,
1253 .name = "l2fib-mac-age-scanner-process",
1254};
1255/* *INDENT-ON* */
1256
Dave Barach97d8dc22016-08-15 15:31:15 -04001257clib_error_t *
1258l2fib_init (vlib_main_t * vm)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001259{
Dave Barach97d8dc22016-08-15 15:31:15 -04001260 l2fib_main_t *mp = &l2fib_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001261 l2fib_entry_key_t test_key;
1262 u8 test_mac[6];
Dave Barach97d8dc22016-08-15 15:31:15 -04001263
Ed Warnickecb9cada2015-12-08 15:45:58 -07001264 mp->vlib_main = vm;
Dave Barach97d8dc22016-08-15 15:31:15 -04001265 mp->vnet_main = vnet_get_main ();
Ed Warnickecb9cada2015-12-08 15:45:58 -07001266
Dave Barach97d8dc22016-08-15 15:31:15 -04001267 /* Create the hash table */
1268 BV (clib_bihash_init) (&mp->mac_table, "l2fib mac table",
1269 L2FIB_NUM_BUCKETS, L2FIB_MEMORY_SIZE);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001270
Dave Barach97d8dc22016-08-15 15:31:15 -04001271 /* verify the key constructor is good, since it is endian-sensitive */
Dave Barachb7b92992018-10-17 10:38:51 -04001272 clib_memset (test_mac, 0, sizeof (test_mac));
Ed Warnickecb9cada2015-12-08 15:45:58 -07001273 test_mac[0] = 0x11;
1274 test_key.raw = 0;
Dave Barach97d8dc22016-08-15 15:31:15 -04001275 test_key.raw = l2fib_make_key ((u8 *) & test_mac, 0x1234);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001276 ASSERT (test_key.fields.mac[0] == 0x11);
1277 ASSERT (test_key.fields.bd_index == 0x1234);
1278
1279 return 0;
1280}
1281
1282VLIB_INIT_FUNCTION (l2fib_init);
1283
Dave Barach97d8dc22016-08-15 15:31:15 -04001284/*
1285 * fd.io coding-style-patch-verification: ON
1286 *
1287 * Local Variables:
1288 * eval: (c-set-style "gnu")
1289 * End:
1290 */