blob: 60d0db56d9dd3ae9d2fc710a1c912d8fed7c0b4a [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
Mohsin Kazmi57938f62017-10-27 21:28:07 +020057static void
58incr_mac_address (u8 * mac)
59{
60 u64 tmp = *((u64 *) mac);
61 tmp = clib_net_to_host_u64 (tmp);
62 tmp += 1 << 16; /* skip unused (least significant) octets */
63 tmp = clib_host_to_net_u64 (tmp);
64
65 clib_memcpy (mac, &tmp, 6);
66}
67
Dave Barach97d8dc22016-08-15 15:31:15 -040068/** Format sw_if_index. If the value is ~0, use the text "N/A" */
69u8 *
70format_vnet_sw_if_index_name_with_NA (u8 * s, va_list * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -070071{
Dave Barach97d8dc22016-08-15 15:31:15 -040072 vnet_main_t *vnm = va_arg (*args, vnet_main_t *);
Ed Warnickecb9cada2015-12-08 15:45:58 -070073 u32 sw_if_index = va_arg (*args, u32);
74 if (sw_if_index == ~0)
75 return format (s, "N/A");
Eyal Barib823df52017-06-12 17:07:22 +030076
77 vnet_sw_interface_t *swif = vnet_get_sw_interface_safe (vnm, sw_if_index);
78 if (!swif)
Eyal Bari0f360dc2017-06-14 13:11:20 +030079 return format (s, "Stale");
Eyal Barib823df52017-06-12 17:07:22 +030080
81 return format (s, "%U", format_vnet_sw_interface_name, vnm,
82 vnet_get_sw_interface_safe (vnm, sw_if_index));
Ed Warnickecb9cada2015-12-08 15:45:58 -070083}
84
Neale Ranns99a3c6c2018-08-07 02:54:31 -070085typedef struct l2fib_dump_walk_ctx_t_
86{
87 u32 bd_index;
88 l2fib_entry_key_t *l2fe_key;
89 l2fib_entry_result_t *l2fe_res;
90} l2fib_dump_walk_ctx_t;
91
92static void
93l2fib_dump_walk_cb (BVT (clib_bihash_kv) * kvp, void *arg)
94{
95 l2fib_dump_walk_ctx_t *ctx = arg;
96 l2fib_entry_result_t result;
97 l2fib_entry_key_t key;
98
99 key.raw = kvp->key;
100 result.raw = kvp->value;
101
102 if ((ctx->bd_index == ~0) || (ctx->bd_index == key.fields.bd_index))
103 {
104 vec_add1 (ctx->l2fe_key, key);
105 vec_add1 (ctx->l2fe_res, result);
106 }
107}
108
Dave Barach97d8dc22016-08-15 15:31:15 -0400109void
Neale Ranns99a3c6c2018-08-07 02:54:31 -0700110l2fib_table_dump (u32 bd_index,
111 l2fib_entry_key_t ** l2fe_key,
Dave Barach97d8dc22016-08-15 15:31:15 -0400112 l2fib_entry_result_t ** l2fe_res)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700113{
Dave Barach97d8dc22016-08-15 15:31:15 -0400114 l2fib_main_t *msm = &l2fib_main;
Neale Ranns99a3c6c2018-08-07 02:54:31 -0700115 l2fib_dump_walk_ctx_t ctx = {
116 .bd_index = bd_index,
117 };
118
119 BV (clib_bihash_foreach_key_value_pair)
120 (&msm->mac_table, l2fib_dump_walk_cb, &ctx);
121
122 *l2fe_key = ctx.l2fe_key;
123 *l2fe_res = ctx.l2fe_res;
124}
125
126typedef struct l2fib_show_walk_ctx_t_
127{
128 u8 first_entry;
129 u8 verbose;
130 vlib_main_t *vm;
131 vnet_main_t *vnm;
132 u32 total_entries;
133 u32 bd_index;
134 u8 learn;
135 u8 add;
136 u8 now;
137} l2fib_show_walk_ctx_t;
138
139static void
140l2fib_show_walk_cb (BVT (clib_bihash_kv) * kvp, void *arg)
141{
142 l2fib_show_walk_ctx_t *ctx = arg;
143 l2_bridge_domain_t *bd_config;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700144 l2fib_entry_result_t result;
Neale Ranns99a3c6c2018-08-07 02:54:31 -0700145 l2fib_entry_key_t key;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700146
Neale Ranns99a3c6c2018-08-07 02:54:31 -0700147 if (ctx->verbose && ctx->first_entry)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700148 {
Neale Ranns99a3c6c2018-08-07 02:54:31 -0700149 ctx->first_entry = 0;
150 vlib_cli_output (ctx->vm,
151 "%=19s%=7s%=7s%=8s%=9s%=7s%=7s%=5s%=30s",
152 "Mac-Address", "BD-Idx", "If-Idx",
153 "BSN-ISN", "Age(min)", "static", "filter",
154 "bvi", "Interface-Name");
155 }
156
157 key.raw = kvp->key;
158 result.raw = kvp->value;
159 ctx->total_entries++;
160
161 if (ctx->verbose &&
162 ((ctx->bd_index >> 31) || (ctx->bd_index == key.fields.bd_index)))
163 {
164 u8 *s = NULL;
165
Neale Rannsb54d0812018-09-06 06:22:56 -0700166 if (ctx->learn && l2fib_entry_result_is_set_AGE_NOT (&result))
Neale Ranns99a3c6c2018-08-07 02:54:31 -0700167 return; /* skip provisioned macs */
168
Neale Rannsb54d0812018-09-06 06:22:56 -0700169 if (ctx->add && !l2fib_entry_result_is_set_AGE_NOT (&result))
Neale Ranns99a3c6c2018-08-07 02:54:31 -0700170 return; /* skip learned macs */
171
172 bd_config = vec_elt_at_index (l2input_main.bd_configs,
173 key.fields.bd_index);
174
Neale Rannsb54d0812018-09-06 06:22:56 -0700175 if (l2fib_entry_result_is_set_AGE_NOT (&result))
Neale Ranns99a3c6c2018-08-07 02:54:31 -0700176 s = format (s, "no");
177 else if (bd_config->mac_age == 0)
178 s = format (s, "-");
179 else
Dave Barach97d8dc22016-08-15 15:31:15 -0400180 {
Neale Ranns99a3c6c2018-08-07 02:54:31 -0700181 i16 delta = ctx->now - result.fields.timestamp;
182 delta += delta < 0 ? 256 : 0;
183 s = format (s, "%d", delta);
Dave Barach97d8dc22016-08-15 15:31:15 -0400184 }
Neale Ranns99a3c6c2018-08-07 02:54:31 -0700185
186 vlib_cli_output (ctx->vm,
187 "%=19U%=7d%=7d %3d/%-3d%=9v%=7s%=7s%=5s%=30U",
188 format_ethernet_address, key.fields.mac,
189 key.fields.bd_index,
190 result.fields.sw_if_index == ~0
191 ? -1 : result.fields.sw_if_index,
Neale Rannsb54d0812018-09-06 06:22:56 -0700192 result.fields.sn.bd, result.fields.sn.swif, s,
193 l2fib_entry_result_is_set_STATIC (&result) ? "*" : "-",
194 l2fib_entry_result_is_set_FILTER (&result) ? "*" : "-",
195 l2fib_entry_result_is_set_BVI (&result) ? "*" : "-",
Neale Ranns99a3c6c2018-08-07 02:54:31 -0700196 format_vnet_sw_if_index_name_with_NA,
197 ctx->vnm, result.fields.sw_if_index);
198 vec_free (s);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700199 }
200}
201
Chris Luke16bcf7d2016-09-01 14:31:46 -0400202/** Display the contents of the l2fib. */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700203static clib_error_t *
Dave Barach97d8dc22016-08-15 15:31:15 -0400204show_l2fib (vlib_main_t * vm,
205 unformat_input_t * input, vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700206{
Dave Barach97d8dc22016-08-15 15:31:15 -0400207 bd_main_t *bdm = &bd_main;
208 l2fib_main_t *msm = &l2fib_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700209 u8 raw = 0;
Neale Ranns99a3c6c2018-08-07 02:54:31 -0700210 u32 bd_id;
211 l2fib_show_walk_ctx_t ctx = {
212 .first_entry = 1,
213 .bd_index = ~0,
214 .now = (u8) (vlib_time_now (vm) / 60),
215 .vm = vm,
216 .vnm = msm->vnet_main,
217 };
Ed Warnickecb9cada2015-12-08 15:45:58 -0700218
John Lo7dbd7262018-05-31 10:25:18 -0400219 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
John Lo8d00fff2017-08-03 00:35:36 -0400220 {
John Lo7dbd7262018-05-31 10:25:18 -0400221 if (unformat (input, "raw"))
Dave Barach97d8dc22016-08-15 15:31:15 -0400222 {
John Lo7dbd7262018-05-31 10:25:18 -0400223 raw = 1;
Neale Ranns99a3c6c2018-08-07 02:54:31 -0700224 ctx.verbose = 0;
John Lo7dbd7262018-05-31 10:25:18 -0400225 break;
226 }
227 else if (unformat (input, "verbose"))
Neale Ranns99a3c6c2018-08-07 02:54:31 -0700228 ctx.verbose = 1;
John Lo7dbd7262018-05-31 10:25:18 -0400229 else if (unformat (input, "all"))
Neale Ranns99a3c6c2018-08-07 02:54:31 -0700230 ctx.verbose = 1;
231 else if (unformat (input, "bd_index %d", &ctx.bd_index))
232 ctx.verbose = 1;
John Lo7dbd7262018-05-31 10:25:18 -0400233 else if (unformat (input, "learn"))
234 {
Neale Ranns99a3c6c2018-08-07 02:54:31 -0700235 ctx.add = 0;
236 ctx.learn = 1;
237 ctx.verbose = 1;
John Lo7dbd7262018-05-31 10:25:18 -0400238 }
239 else if (unformat (input, "add"))
240 {
Neale Ranns99a3c6c2018-08-07 02:54:31 -0700241 ctx.learn = 0;
242 ctx.add = 1;
243 ctx.verbose = 1;
John Lo7dbd7262018-05-31 10:25:18 -0400244 }
245 else if (unformat (input, "bd_id %d", &bd_id))
246 {
247 uword *p = hash_get (bdm->bd_index_by_bd_id, bd_id);
248 if (p)
249 {
Neale Ranns99a3c6c2018-08-07 02:54:31 -0700250 ctx.verbose = 1;
251 ctx.bd_index = p[0];
John Lo7dbd7262018-05-31 10:25:18 -0400252 }
253 else
254 return clib_error_return (0,
255 "bridge domain id %d doesn't exist\n",
256 bd_id);
Dave Barach97d8dc22016-08-15 15:31:15 -0400257 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700258 else
John Lo7dbd7262018-05-31 10:25:18 -0400259 break;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700260 }
261
Neale Ranns99a3c6c2018-08-07 02:54:31 -0700262 BV (clib_bihash_foreach_key_value_pair)
263 (&msm->mac_table, l2fib_show_walk_cb, &ctx);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700264
Neale Ranns99a3c6c2018-08-07 02:54:31 -0700265 if (ctx.total_entries == 0)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700266 vlib_cli_output (vm, "no l2fib entries");
267 else
John Lo8d00fff2017-08-03 00:35:36 -0400268 {
269 l2learn_main_t *lm = &l2learn_main;
270 vlib_cli_output (vm, "L2FIB total/learned entries: %d/%d "
271 "Last scan time: %.4esec Learn limit: %d ",
Neale Ranns99a3c6c2018-08-07 02:54:31 -0700272 ctx.total_entries, lm->global_learn_count,
John Lo8d00fff2017-08-03 00:35:36 -0400273 msm->age_scan_duration, lm->global_learn_limit);
274 if (lm->client_pid)
275 vlib_cli_output (vm, "L2MAC events client PID: %d "
276 "Last e-scan time: %.4esec Delay: %.2esec "
277 "Max macs in event: %d",
278 lm->client_pid, msm->evt_scan_duration,
279 msm->event_scan_delay, msm->max_macs_in_event);
280 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700281
282 if (raw)
283 vlib_cli_output (vm, "Raw Hash Table:\n%U\n",
Neale Ranns99a3c6c2018-08-07 02:54:31 -0700284 BV (format_bihash), &msm->mac_table, 1 /* verbose */ );
Ed Warnickecb9cada2015-12-08 15:45:58 -0700285
286 return 0;
287}
288
Billy McFall22aa3e92016-09-09 08:46:40 -0400289/*?
290 * This command dispays the MAC Address entries of the L2 FIB table.
291 * Output can be filtered to just get the number of MAC Addresses or display
292 * each MAC Address for all bridge domains or just a single bridge domain.
293 *
294 * @cliexpar
295 * Example of how to display the number of MAC Address entries in the L2
296 * FIB table:
297 * @cliexstart{show l2fib}
298 * 3 l2fib entries
299 * @cliexend
300 * Example of how to display all the MAC Address entries in the L2
301 * FIB table:
John Lo7dbd7262018-05-31 10:25:18 -0400302 * @cliexstart{show l2fib all}
Billy McFall22aa3e92016-09-09 08:46:40 -0400303 * Mac Address BD Idx Interface Index static filter bvi refresh timestamp
304 * 52:54:00:53:18:33 1 GigabitEthernet0/8/0.200 3 0 0 0 0 0
305 * 52:54:00:53:18:55 1 GigabitEthernet0/8/0.200 3 1 0 0 0 0
306 * 52:54:00:53:18:77 1 N/A -1 1 1 0 0 0
307 * 3 l2fib entries
308 * @cliexend
309?*/
Dave Barach97d8dc22016-08-15 15:31:15 -0400310/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700311VLIB_CLI_COMMAND (show_l2fib_cli, static) = {
312 .path = "show l2fib",
John Lo7dbd7262018-05-31 10:25:18 -0400313 .short_help = "show l2fib [all] | [bd_id <nn> | bd_index <nn>] [learn | add] | [raw]",
Ed Warnickecb9cada2015-12-08 15:45:58 -0700314 .function = show_l2fib,
315};
Dave Barach97d8dc22016-08-15 15:31:15 -0400316/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700317
318
Dave Barach97d8dc22016-08-15 15:31:15 -0400319/* Remove all entries from the l2fib */
320void
Eyal Bari7537e712017-04-27 14:07:55 +0300321l2fib_clear_table (void)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700322{
Dave Barach97d8dc22016-08-15 15:31:15 -0400323 l2fib_main_t *mp = &l2fib_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700324
Eyal Bari7537e712017-04-27 14:07:55 +0300325 /* Remove all entries */
326 BV (clib_bihash_free) (&mp->mac_table);
327 BV (clib_bihash_init) (&mp->mac_table, "l2fib mac table",
328 L2FIB_NUM_BUCKETS, L2FIB_MEMORY_SIZE);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700329 l2learn_main.global_learn_count = 0;
330}
331
Chris Luke16bcf7d2016-09-01 14:31:46 -0400332/** Clear all entries in L2FIB.
333 * @TODO: Later we may want a way to remove only the non-static entries
Dave Barach97d8dc22016-08-15 15:31:15 -0400334 */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700335static clib_error_t *
Dave Barach97d8dc22016-08-15 15:31:15 -0400336clear_l2fib (vlib_main_t * vm,
337 unformat_input_t * input, vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700338{
Eyal Bari7537e712017-04-27 14:07:55 +0300339 l2fib_clear_table ();
Ed Warnickecb9cada2015-12-08 15:45:58 -0700340 return 0;
341}
342
Billy McFall22aa3e92016-09-09 08:46:40 -0400343/*?
344 * This command clears all the MAC Address entries from the L2 FIB table.
345 *
346 * @cliexpar
347 * Example of how to clear the L2 FIB Table:
348 * @cliexcmd{clear l2fib}
349 * Example to show the L2 FIB Table has been cleared:
350 * @cliexstart{show l2fib verbose}
351 * no l2fib entries
352 * @cliexend
353?*/
Dave Barach97d8dc22016-08-15 15:31:15 -0400354/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700355VLIB_CLI_COMMAND (clear_l2fib_cli, static) = {
356 .path = "clear l2fib",
Billy McFall22aa3e92016-09-09 08:46:40 -0400357 .short_help = "clear l2fib",
Ed Warnickecb9cada2015-12-08 15:45:58 -0700358 .function = clear_l2fib,
359};
Dave Barach97d8dc22016-08-15 15:31:15 -0400360/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700361
Eyal Bari7537e712017-04-27 14:07:55 +0300362static inline l2fib_seq_num_t
363l2fib_cur_seq_num (u32 bd_index, u32 sw_if_index)
364{
Eyal Bari7537e712017-04-27 14:07:55 +0300365 l2_bridge_domain_t *bd_config = l2input_bd_config (bd_index);
366 /* *INDENT-OFF* */
367 return (l2fib_seq_num_t) {
Eyal Bari0f360dc2017-06-14 13:11:20 +0300368 .swif = *l2fib_swif_seq_num (sw_if_index),
Eyal Bari7537e712017-04-27 14:07:55 +0300369 .bd = bd_config->seq_num,
370 };
371 /* *INDENT-ON* */
372}
Ed Warnickecb9cada2015-12-08 15:45:58 -0700373
Dave Barach97d8dc22016-08-15 15:31:15 -0400374/**
375 * Add an entry to the l2fib.
376 * If the entry already exists then overwrite it
377 */
378void
Mohsin Kazmi57938f62017-10-27 21:28:07 +0200379l2fib_add_entry (u8 * mac, u32 bd_index,
Neale Rannsb54d0812018-09-06 06:22:56 -0700380 u32 sw_if_index, l2fib_entry_result_flags_t flags)
Dave Barach97d8dc22016-08-15 15:31:15 -0400381{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700382 l2fib_entry_key_t key;
383 l2fib_entry_result_t result;
Dave Barach97d8dc22016-08-15 15:31:15 -0400384 __attribute__ ((unused)) u32 bucket_contents;
John Lo8d00fff2017-08-03 00:35:36 -0400385 l2fib_main_t *fm = &l2fib_main;
386 l2learn_main_t *lm = &l2learn_main;
Dave Barach97d8dc22016-08-15 15:31:15 -0400387 BVT (clib_bihash_kv) kv;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700388
Dave Barach97d8dc22016-08-15 15:31:15 -0400389 /* set up key */
Mohsin Kazmi57938f62017-10-27 21:28:07 +0200390 key.raw = l2fib_make_key (mac, bd_index);
Dave Barach97d8dc22016-08-15 15:31:15 -0400391
John Lo8d00fff2017-08-03 00:35:36 -0400392 /* check if entry alread exist */
393 if (BV (clib_bihash_search) (&fm->mac_table, &kv, &kv))
394 {
395 /* decrement counter if overwriting a learned mac */
396 result.raw = kv.value;
Neale Rannsb54d0812018-09-06 06:22:56 -0700397 if ((!l2fib_entry_result_is_set_AGE_NOT (&result))
398 && (lm->global_learn_count))
John Lo8d00fff2017-08-03 00:35:36 -0400399 lm->global_learn_count--;
400 }
401
Dave Barach97d8dc22016-08-15 15:31:15 -0400402 /* set up result */
403 result.raw = 0; /* clear all fields */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700404 result.fields.sw_if_index = sw_if_index;
Neale Rannsb54d0812018-09-06 06:22:56 -0700405 result.fields.flags = flags;
406
407 /* no aging for provisioned entry */
408 l2fib_entry_result_set_AGE_NOT (&result);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700409
410 kv.key = key.raw;
411 kv.value = result.raw;
412
John Lo8d00fff2017-08-03 00:35:36 -0400413 BV (clib_bihash_add_del) (&fm->mac_table, &kv, 1 /* is_add */ );
Ed Warnickecb9cada2015-12-08 15:45:58 -0700414}
415
Dave Barach97d8dc22016-08-15 15:31:15 -0400416/**
Chris Luke16bcf7d2016-09-01 14:31:46 -0400417 * Add an entry to the L2FIB.
Dave Barach97d8dc22016-08-15 15:31:15 -0400418 * The CLI format is:
419 * l2fib add <mac> <bd> <intf> [static] [bvi]
420 * l2fib add <mac> <bd> filter
421 * Note that filter and bvi entries are always static
422 */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700423static clib_error_t *
Dave Barach97d8dc22016-08-15 15:31:15 -0400424l2fib_add (vlib_main_t * vm,
425 unformat_input_t * input, vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700426{
Dave Barach97d8dc22016-08-15 15:31:15 -0400427 bd_main_t *bdm = &bd_main;
428 vnet_main_t *vnm = vnet_get_main ();
429 clib_error_t *error = 0;
Mohsin Kazmi57938f62017-10-27 21:28:07 +0200430 u8 mac[6];
Ed Warnickecb9cada2015-12-08 15:45:58 -0700431 u32 bd_id;
432 u32 bd_index;
433 u32 sw_if_index = ~0;
Dave Barach97d8dc22016-08-15 15:31:15 -0400434 uword *p;
Neale Rannsb54d0812018-09-06 06:22:56 -0700435 l2fib_entry_result_flags_t flags;
436
437 flags = L2FIB_ENTRY_RESULT_FLAG_NONE;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700438
Mohsin Kazmi57938f62017-10-27 21:28:07 +0200439 if (!unformat (input, "%U", unformat_ethernet_address, mac))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700440 {
441 error = clib_error_return (0, "expected mac address `%U'",
Dave Barach97d8dc22016-08-15 15:31:15 -0400442 format_unformat_error, input);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700443 goto done;
444 }
Dave Barach97d8dc22016-08-15 15:31:15 -0400445
446 if (!unformat (input, "%d", &bd_id))
447 {
Ed Warnickecb9cada2015-12-08 15:45:58 -0700448 error = clib_error_return (0, "expected bridge domain ID `%U'",
Dave Barach97d8dc22016-08-15 15:31:15 -0400449 format_unformat_error, input);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700450 goto done;
Dave Barach97d8dc22016-08-15 15:31:15 -0400451 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700452
453 p = hash_get (bdm->bd_index_by_bd_id, bd_id);
Dave Barach97d8dc22016-08-15 15:31:15 -0400454 if (!p)
455 {
Ed Warnickecb9cada2015-12-08 15:45:58 -0700456 error = clib_error_return (0, "bridge domain ID %d invalid", bd_id);
457 goto done;
Dave Barach97d8dc22016-08-15 15:31:15 -0400458 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700459 bd_index = p[0];
460
Dave Barach97d8dc22016-08-15 15:31:15 -0400461 if (unformat (input, "filter"))
462 {
John Lo14edd972017-10-31 13:26:02 -0400463 l2fib_add_filter_entry (mac, bd_index);
464 return 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700465 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700466
John Lo14edd972017-10-31 13:26:02 -0400467 if (!unformat_user (input, unformat_vnet_sw_interface, vnm, &sw_if_index))
468 {
469 error = clib_error_return (0, "unknown interface `%U'",
470 format_unformat_error, input);
471 goto done;
472 }
473
474 if (unformat (input, "static"))
Neale Rannsb54d0812018-09-06 06:22:56 -0700475 flags |= L2FIB_ENTRY_RESULT_FLAG_STATIC;
John Lo14edd972017-10-31 13:26:02 -0400476 else if (unformat (input, "bvi"))
Neale Rannsb54d0812018-09-06 06:22:56 -0700477 flags |= (L2FIB_ENTRY_RESULT_FLAG_STATIC | L2FIB_ENTRY_RESULT_FLAG_BVI);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700478
John Lob2fd6cb2017-07-12 19:56:45 -0400479 if (vec_len (l2input_main.configs) <= sw_if_index)
480 {
481 error = clib_error_return (0, "Interface sw_if_index %d not in L2 mode",
482 sw_if_index);
483 goto done;
484 }
485
Neale Rannsb54d0812018-09-06 06:22:56 -0700486 l2fib_add_entry (mac, bd_index, sw_if_index, flags);
Dave Barach97d8dc22016-08-15 15:31:15 -0400487
488done:
Ed Warnickecb9cada2015-12-08 15:45:58 -0700489 return error;
490}
491
Billy McFall22aa3e92016-09-09 08:46:40 -0400492/*?
493 * This command adds a MAC Address entry to the L2 FIB table
494 * of an existing bridge-domain. The MAC Address can be static
495 * or dynamic. This command also allows a filter to be added,
496 * such that packets with given MAC Addresses (source mac or
497 * destination mac match) are dropped.
498 *
499 * @cliexpar
500 * Example of how to add a dynamic MAC Address entry to the L2 FIB table
501 * of a bridge-domain (where 200 is the bridge-domain-id):
502 * @cliexcmd{l2fib add 52:54:00:53:18:33 200 GigabitEthernet0/8/0.200}
503 * Example of how to add a static MAC Address entry to the L2 FIB table
504 * of a bridge-domain (where 200 is the bridge-domain-id):
505 * @cliexcmd{l2fib add 52:54:00:53:18:55 200 GigabitEthernet0/8/0.200 static}
506 * Example of how to add a filter such that a packet with the given MAC
507 * Address will be dropped in a given bridge-domain (where 200 is the
508 * bridge-domain-id):
509 * @cliexcmd{l2fib add 52:54:00:53:18:77 200 filter}
510 * Example of show command of the provisioned MAC Addresses and filters:
511 * @cliexstart{show l2fib verbose}
512 * Mac Address BD Idx Interface Index static filter bvi refresh timestamp
513 * 52:54:00:53:18:33 1 GigabitEthernet0/8/0.200 3 0 0 0 0 0
514 * 52:54:00:53:18:55 1 GigabitEthernet0/8/0.200 3 1 0 0 0 0
515 * 52:54:00:53:18:77 1 N/A -1 1 1 0 0 0
516 * 3 l2fib entries
517 * @cliexend
518?*/
Dave Barach97d8dc22016-08-15 15:31:15 -0400519/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700520VLIB_CLI_COMMAND (l2fib_add_cli, static) = {
521 .path = "l2fib add",
Billy McFall22aa3e92016-09-09 08:46:40 -0400522 .short_help = "l2fib add <mac> <bridge-domain-id> filter | <intf> [static | bvi]",
Ed Warnickecb9cada2015-12-08 15:45:58 -0700523 .function = l2fib_add,
524};
Dave Barach97d8dc22016-08-15 15:31:15 -0400525/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700526
527
528static clib_error_t *
Dave Barach97d8dc22016-08-15 15:31:15 -0400529l2fib_test_command_fn (vlib_main_t * vm,
530 unformat_input_t * input, vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700531{
Dave Barach97d8dc22016-08-15 15:31:15 -0400532 clib_error_t *error = 0;
Mohsin Kazmi57938f62017-10-27 21:28:07 +0200533 u8 mac[6], save_mac[6];
Ed Warnickecb9cada2015-12-08 15:45:58 -0700534 u32 bd_index = 0;
535 u32 sw_if_index = 8;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700536 u32 is_add = 0;
537 u32 is_del = 0;
538 u32 is_check = 0;
539 u32 count = 1;
540 int mac_set = 0;
541 int i;
542
Dave Barach97d8dc22016-08-15 15:31:15 -0400543 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700544 {
Mohsin Kazmi57938f62017-10-27 21:28:07 +0200545 if (unformat (input, "mac %U", unformat_ethernet_address, mac))
Dave Barach97d8dc22016-08-15 15:31:15 -0400546 mac_set = 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700547 else if (unformat (input, "add"))
Dave Barach97d8dc22016-08-15 15:31:15 -0400548 is_add = 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700549 else if (unformat (input, "del"))
Dave Barach97d8dc22016-08-15 15:31:15 -0400550 is_del = 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700551 else if (unformat (input, "check"))
Dave Barach97d8dc22016-08-15 15:31:15 -0400552 is_check = 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700553 else if (unformat (input, "count %d", &count))
Dave Barach97d8dc22016-08-15 15:31:15 -0400554 ;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700555 else
Dave Barach97d8dc22016-08-15 15:31:15 -0400556 break;
557 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700558
559 if (mac_set == 0)
560 return clib_error_return (0, "mac not set");
561
562 if (is_add == 0 && is_del == 0 && is_check == 0)
Dave Barach97d8dc22016-08-15 15:31:15 -0400563 return clib_error_return (0,
564 "noop: pick at least one of (add,del,check)");
Ed Warnickecb9cada2015-12-08 15:45:58 -0700565
Mohsin Kazmi57938f62017-10-27 21:28:07 +0200566 clib_memcpy (save_mac, mac, 6);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700567
568 if (is_add)
569 {
570 for (i = 0; i < count; i++)
Dave Barach97d8dc22016-08-15 15:31:15 -0400571 {
Neale Rannsb54d0812018-09-06 06:22:56 -0700572 l2fib_add_entry (mac, bd_index, sw_if_index,
573 L2FIB_ENTRY_RESULT_FLAG_NONE);
Mohsin Kazmi57938f62017-10-27 21:28:07 +0200574 incr_mac_address (mac);
Dave Barach97d8dc22016-08-15 15:31:15 -0400575 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700576 }
577
578 if (is_check)
579 {
Dave Barach97d8dc22016-08-15 15:31:15 -0400580 BVT (clib_bihash_kv) kv;
581 l2fib_main_t *mp = &l2fib_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700582
Mohsin Kazmi57938f62017-10-27 21:28:07 +0200583 clib_memcpy (mac, save_mac, 6);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700584
585 for (i = 0; i < count; i++)
Dave Barach97d8dc22016-08-15 15:31:15 -0400586 {
Mohsin Kazmi57938f62017-10-27 21:28:07 +0200587 kv.key = l2fib_make_key (mac, bd_index);
Dave Barach97d8dc22016-08-15 15:31:15 -0400588 if (BV (clib_bihash_search) (&mp->mac_table, &kv, &kv))
589 {
Mohsin Kazmi57938f62017-10-27 21:28:07 +0200590 clib_warning ("key %U AWOL", format_ethernet_address, mac);
Dave Barach97d8dc22016-08-15 15:31:15 -0400591 break;
592 }
Mohsin Kazmi57938f62017-10-27 21:28:07 +0200593 incr_mac_address (mac);
Dave Barach97d8dc22016-08-15 15:31:15 -0400594 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700595 }
596
597 if (is_del)
598 {
Mohsin Kazmi57938f62017-10-27 21:28:07 +0200599 clib_memcpy (mac, save_mac, 6);
600
Ed Warnickecb9cada2015-12-08 15:45:58 -0700601 for (i = 0; i < count; i++)
Dave Barach97d8dc22016-08-15 15:31:15 -0400602 {
John Lo7dbd7262018-05-31 10:25:18 -0400603 l2fib_del_entry (mac, bd_index, 0);
Mohsin Kazmi57938f62017-10-27 21:28:07 +0200604 incr_mac_address (mac);
Dave Barach97d8dc22016-08-15 15:31:15 -0400605 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700606 }
607
608 return error;
609}
610
Billy McFall22aa3e92016-09-09 08:46:40 -0400611/*?
612 * The set of '<em>test l2fib</em>' commands allow the L2 FIB table of the default
613 * bridge domain (bridge-domain-id of 0) to be modified.
614 *
615 * @cliexpar
616 * @parblock
617 * Example of how to add a set of 4 sequential MAC Address entries to L2
618 * FIB table of the default bridge-domain:
619 * @cliexcmd{test l2fib add mac 52:54:00:53:00:00 count 4}
620 *
621 * Show the set of 4 sequential MAC Address entries that were added:
622 * @cliexstart{show l2fib verbose}
623 * Mac Address BD Idx Interface Index static filter bvi refresh timestamp
624 * 52:54:00:53:00:00 0 GigabitEthernet0/8/0.300 8 0 0 0 0 0
625 * 52:54:00:53:00:01 0 GigabitEthernet0/8/0.300 8 0 0 0 0 0
626 * 52:54:00:53:00:03 0 GigabitEthernet0/8/0.300 8 0 0 0 0 0
627 * 52:54:00:53:00:02 0 GigabitEthernet0/8/0.300 8 0 0 0 0 0
628 * 4 l2fib entries
629 * @cliexend
630 *
631 * Example of how to check that the set of 4 sequential MAC Address
632 * entries were added to L2 FIB table of the default
633 * bridge-domain. Used a count of 5 to produce an error:
634 *
635 * @cliexcmd{test l2fib check mac 52:54:00:53:00:00 count 5}
636 * The output of the check command is in the log files. Log file
637 * location may vary based on your OS and Version:
638 *
639 * <b><em># tail -f /var/log/messages | grep l2fib_test_command_fn</em></b>
640 *
641 * Sep 7 17:15:24 localhost vnet[4952]: l2fib_test_command_fn:446: key 52:54:00:53:00:04 AWOL
642 *
643 * Example of how to delete a set of 4 sequential MAC Address entries
644 * from L2 FIB table of the default bridge-domain:
645 * @cliexcmd{test l2fib del mac 52:54:00:53:00:00 count 4}
646 * @endparblock
647?*/
Dave Barach97d8dc22016-08-15 15:31:15 -0400648/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700649VLIB_CLI_COMMAND (l2fib_test_command, static) = {
650 .path = "test l2fib",
Billy McFall22aa3e92016-09-09 08:46:40 -0400651 .short_help = "test l2fib [add|del|check] mac <base-addr> count <nn>",
Ed Warnickecb9cada2015-12-08 15:45:58 -0700652 .function = l2fib_test_command_fn,
653};
Dave Barach97d8dc22016-08-15 15:31:15 -0400654/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700655
656
Dave Barach97d8dc22016-08-15 15:31:15 -0400657/**
658 * Delete an entry from the l2fib.
John Lo7dbd7262018-05-31 10:25:18 -0400659 * Return 0 if the entry was deleted, or 1 it was not found or if
660 * sw_if_index is non-zero and does not match that in the entry.
Dave Barach97d8dc22016-08-15 15:31:15 -0400661 */
John Lo7dbd7262018-05-31 10:25:18 -0400662u32
663l2fib_del_entry (u8 * mac, u32 bd_index, u32 sw_if_index)
Dave Barach97d8dc22016-08-15 15:31:15 -0400664{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700665 l2fib_entry_result_t result;
Dave Barach97d8dc22016-08-15 15:31:15 -0400666 l2fib_main_t *mp = &l2fib_main;
667 BVT (clib_bihash_kv) kv;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700668
Dave Barach97d8dc22016-08-15 15:31:15 -0400669 /* set up key */
John Lo7dbd7262018-05-31 10:25:18 -0400670 kv.key = l2fib_make_key (mac, bd_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700671
Dave Barach97d8dc22016-08-15 15:31:15 -0400672 if (BV (clib_bihash_search) (&mp->mac_table, &kv, &kv))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700673 return 1;
674
675 result.raw = kv.value;
676
John Lo7dbd7262018-05-31 10:25:18 -0400677 /* check if sw_if_index of entry match */
678 if ((sw_if_index != 0) && (sw_if_index != result.fields.sw_if_index))
679 return 1;
680
Dave Barach97d8dc22016-08-15 15:31:15 -0400681 /* decrement counter if dynamically learned mac */
Neale Rannsb54d0812018-09-06 06:22:56 -0700682 if ((!l2fib_entry_result_is_set_AGE_NOT (&result)) &&
683 (l2learn_main.global_learn_count))
John Lo8d00fff2017-08-03 00:35:36 -0400684 l2learn_main.global_learn_count--;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700685
Dave Barach97d8dc22016-08-15 15:31:15 -0400686 /* Remove entry from hash table */
687 BV (clib_bihash_add_del) (&mp->mac_table, &kv, 0 /* is_add */ );
Ed Warnickecb9cada2015-12-08 15:45:58 -0700688 return 0;
689}
690
Dave Barach97d8dc22016-08-15 15:31:15 -0400691/**
Chris Luke16bcf7d2016-09-01 14:31:46 -0400692 * Delete an entry from the L2FIB.
Dave Barach97d8dc22016-08-15 15:31:15 -0400693 * The CLI format is:
694 * l2fib del <mac> <bd-id>
695 */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700696static clib_error_t *
Dave Barach97d8dc22016-08-15 15:31:15 -0400697l2fib_del (vlib_main_t * vm,
698 unformat_input_t * input, vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700699{
Dave Barach97d8dc22016-08-15 15:31:15 -0400700 bd_main_t *bdm = &bd_main;
701 clib_error_t *error = 0;
Mohsin Kazmi57938f62017-10-27 21:28:07 +0200702 u8 mac[6];
Ed Warnickecb9cada2015-12-08 15:45:58 -0700703 u32 bd_id;
704 u32 bd_index;
Dave Barach97d8dc22016-08-15 15:31:15 -0400705 uword *p;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700706
Mohsin Kazmi57938f62017-10-27 21:28:07 +0200707 if (!unformat (input, "%U", unformat_ethernet_address, mac))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700708 {
709 error = clib_error_return (0, "expected mac address `%U'",
Dave Barach97d8dc22016-08-15 15:31:15 -0400710 format_unformat_error, input);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700711 goto done;
712 }
Dave Barach97d8dc22016-08-15 15:31:15 -0400713
714 if (!unformat (input, "%d", &bd_id))
715 {
Ed Warnickecb9cada2015-12-08 15:45:58 -0700716 error = clib_error_return (0, "expected bridge domain ID `%U'",
Dave Barach97d8dc22016-08-15 15:31:15 -0400717 format_unformat_error, input);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700718 goto done;
Dave Barach97d8dc22016-08-15 15:31:15 -0400719 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700720
721 p = hash_get (bdm->bd_index_by_bd_id, bd_id);
Dave Barach97d8dc22016-08-15 15:31:15 -0400722 if (!p)
723 {
Ed Warnickecb9cada2015-12-08 15:45:58 -0700724 error = clib_error_return (0, "bridge domain ID %d invalid", bd_id);
725 goto done;
Dave Barach97d8dc22016-08-15 15:31:15 -0400726 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700727 bd_index = p[0];
728
Dave Barach97d8dc22016-08-15 15:31:15 -0400729 /* Delete the entry */
John Lo7dbd7262018-05-31 10:25:18 -0400730 if (l2fib_del_entry (mac, bd_index, 0))
Dave Barach97d8dc22016-08-15 15:31:15 -0400731 {
732 error = clib_error_return (0, "mac entry not found");
733 goto done;
734 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700735
Dave Barach97d8dc22016-08-15 15:31:15 -0400736done:
Ed Warnickecb9cada2015-12-08 15:45:58 -0700737 return error;
738}
739
Billy McFall22aa3e92016-09-09 08:46:40 -0400740/*?
741 * This command deletes an existing MAC Address entry from the L2 FIB
742 * table of an existing bridge-domain.
743 *
744 * @cliexpar
745 * 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):
746 * @cliexcmd{l2fib del 52:54:00:53:18:33 200}
747?*/
Dave Barach97d8dc22016-08-15 15:31:15 -0400748/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700749VLIB_CLI_COMMAND (l2fib_del_cli, static) = {
750 .path = "l2fib del",
John Lo7dbd7262018-05-31 10:25:18 -0400751 .short_help = "l2fib del <mac> <bridge-domain-id> []",
Ed Warnickecb9cada2015-12-08 15:45:58 -0700752 .function = l2fib_del,
753};
Dave Barach97d8dc22016-08-15 15:31:15 -0400754/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700755
John Loda1f2c72017-03-24 20:11:15 -0400756/**
757 Kick off ager to scan MACs to age/delete MAC entries
758*/
759void
760l2fib_start_ager_scan (vlib_main_t * vm)
761{
Eyal Bari24db0ec2017-09-27 21:43:51 +0300762 uword evt = L2_MAC_AGE_PROCESS_EVENT_ONE_PASS;
John Loda1f2c72017-03-24 20:11:15 -0400763
764 /* check if there is at least one bd with mac aging enabled */
Eyal Bari24db0ec2017-09-27 21:43:51 +0300765 l2_bridge_domain_t *bd_config;
John Loda1f2c72017-03-24 20:11:15 -0400766 vec_foreach (bd_config, l2input_main.bd_configs)
Eyal Bari24db0ec2017-09-27 21:43:51 +0300767 {
John Loda1f2c72017-03-24 20:11:15 -0400768 if (bd_config->bd_id != ~0 && bd_config->mac_age != 0)
Eyal Bari24db0ec2017-09-27 21:43:51 +0300769 {
770 evt = L2_MAC_AGE_PROCESS_EVENT_START;
771 break;
772 }
773 }
John Loda1f2c72017-03-24 20:11:15 -0400774
775 vlib_process_signal_event (vm, l2fib_mac_age_scanner_process_node.index,
Eyal Bari24db0ec2017-09-27 21:43:51 +0300776 evt, 0);
John Loda1f2c72017-03-24 20:11:15 -0400777}
778
779/**
Eyal Bari7537e712017-04-27 14:07:55 +0300780 Flush all non static MACs from an interface
John Loda1f2c72017-03-24 20:11:15 -0400781*/
782void
783l2fib_flush_int_mac (vlib_main_t * vm, u32 sw_if_index)
784{
Eyal Bari0f360dc2017-06-14 13:11:20 +0300785 *l2fib_swif_seq_num (sw_if_index) += 1;
John Loda1f2c72017-03-24 20:11:15 -0400786 l2fib_start_ager_scan (vm);
787}
788
789/**
Eyal Bari7537e712017-04-27 14:07:55 +0300790 Flush all non static MACs in a bridge domain
John Loda1f2c72017-03-24 20:11:15 -0400791*/
792void
793l2fib_flush_bd_mac (vlib_main_t * vm, u32 bd_index)
794{
Eyal Bari7537e712017-04-27 14:07:55 +0300795 l2_bridge_domain_t *bd_config = l2input_bd_config (bd_index);
John Loda1f2c72017-03-24 20:11:15 -0400796 bd_config->seq_num += 1;
797 l2fib_start_ager_scan (vm);
798}
799
800/**
Eyal Bari7537e712017-04-27 14:07:55 +0300801 Flush all non static MACs - flushes all valid BDs
802*/
803void
804l2fib_flush_all_mac (vlib_main_t * vm)
805{
806 l2_bridge_domain_t *bd_config;
807 vec_foreach (bd_config, l2input_main.bd_configs)
808 if (bd_is_valid (bd_config))
809 bd_config->seq_num += 1;
810
811 l2fib_start_ager_scan (vm);
812}
813
814
815/**
John Loda1f2c72017-03-24 20:11:15 -0400816 Flush MACs, except static ones, associated with an interface
817 The CLI format is:
818 l2fib flush-mac interface <if-name>
819*/
820static clib_error_t *
821l2fib_flush_mac_int (vlib_main_t * vm,
822 unformat_input_t * input, vlib_cli_command_t * cmd)
823{
824 vnet_main_t *vnm = vnet_get_main ();
825 clib_error_t *error = 0;
826 u32 sw_if_index;
827
828 if (!unformat_user (input, unformat_vnet_sw_interface, vnm, &sw_if_index))
829 {
830 error = clib_error_return (0, "unknown interface `%U'",
831 format_unformat_error, input);
832 goto done;
833 }
834
835 l2fib_flush_int_mac (vm, sw_if_index);
836
837done:
838 return error;
839}
840
Eyal Bari7537e712017-04-27 14:07:55 +0300841/**
842 Flush all MACs, except static ones
843 The CLI format is:
844 l2fib flush-mac all
845*/
846static clib_error_t *
847l2fib_flush_mac_all (vlib_main_t * vm,
848 unformat_input_t * input, vlib_cli_command_t * cmd)
849{
850 l2fib_flush_all_mac (vm);
851 return 0;
852}
853
854/*?
855 * This command kick off ager to delete all existing MAC Address entries,
856 * except static ones, associated with an interface from the L2 FIB table.
857 *
858 * @cliexpar
859 * Example of how to flush MAC Address entries learned on an interface from the L2 FIB table:
860 * @cliexcmd{l2fib flush-mac interface GigabitEthernet2/1/0}
861?*/
862/* *INDENT-OFF* */
863VLIB_CLI_COMMAND (l2fib_flush_mac_all_cli, static) = {
864 .path = "l2fib flush-mac all",
865 .short_help = "l2fib flush-mac all",
866 .function = l2fib_flush_mac_all,
867};
868/* *INDENT-ON* */
869
John Loda1f2c72017-03-24 20:11:15 -0400870/*?
871 * This command kick off ager to delete all existing MAC Address entries,
872 * except static ones, associated with an interface from the L2 FIB table.
873 *
874 * @cliexpar
875 * Example of how to flush MAC Address entries learned on an interface from the L2 FIB table:
876 * @cliexcmd{l2fib flush-mac interface GigabitEthernet2/1/0}
877?*/
878/* *INDENT-OFF* */
879VLIB_CLI_COMMAND (l2fib_flush_mac_int_cli, static) = {
880 .path = "l2fib flush-mac interface",
881 .short_help = "l2fib flush-mac interface <if-name>",
882 .function = l2fib_flush_mac_int,
883};
884/* *INDENT-ON* */
885
886/**
887 Flush bridge-domain MACs except static ones.
888 The CLI format is:
889 l2fib flush-mac bridge-domain <bd-id>
890*/
891static clib_error_t *
892l2fib_flush_mac_bd (vlib_main_t * vm,
893 unformat_input_t * input, vlib_cli_command_t * cmd)
894{
895 bd_main_t *bdm = &bd_main;
896 clib_error_t *error = 0;
897 u32 bd_index, bd_id;
898 uword *p;
899
900 if (!unformat (input, "%d", &bd_id))
901 {
902 error = clib_error_return (0, "expecting bridge-domain id but got `%U'",
903 format_unformat_error, input);
904 goto done;
905 }
906
907 p = hash_get (bdm->bd_index_by_bd_id, bd_id);
908 if (p)
909 bd_index = *p;
910 else
911 return clib_error_return (0, "No such bridge domain %d", bd_id);
912
913 l2fib_flush_bd_mac (vm, bd_index);
914
915done:
916 return error;
917}
918
919/*?
920 * This command kick off ager to delete all existing MAC Address entries,
921 * except static ones, in a bridge domain from the L2 FIB table.
922 *
923 * @cliexpar
924 * Example of how to flush MAC Address entries learned in a bridge domain from the L2 FIB table:
925 * @cliexcmd{l2fib flush-mac bridge-domain 1000}
926?*/
927/* *INDENT-OFF* */
928VLIB_CLI_COMMAND (l2fib_flush_mac_bd_cli, static) = {
929 .path = "l2fib flush-mac bridge-domain",
930 .short_help = "l2fib flush-mac bridge-domain <bd-id>",
931 .function = l2fib_flush_mac_bd,
932};
933/* *INDENT-ON* */
934
Eyal Bariafc47aa2017-04-20 14:45:17 +0300935clib_error_t *
936l2fib_sw_interface_up_down (vnet_main_t * vnm, u32 sw_if_index, u32 flags)
937{
938 l2_input_config_t *config = l2input_intf_config (sw_if_index);
939 if ((flags & VNET_SW_INTERFACE_FLAG_ADMIN_UP) == 0 && config->bridge)
940 l2fib_flush_int_mac (vnm->vlib_main, sw_if_index);
941 return 0;
942}
943
944VNET_SW_INTERFACE_ADMIN_UP_DOWN_FUNCTION (l2fib_sw_interface_up_down);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700945
Dave Barach97d8dc22016-08-15 15:31:15 -0400946BVT (clib_bihash) * get_mac_table (void)
947{
948 l2fib_main_t *mp = &l2fib_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700949 return &mp->mac_table;
950}
951
John Lo8d00fff2017-08-03 00:35:36 -0400952static_always_inline void *
953allocate_mac_evt_buf (u32 client, u32 client_index)
954{
955 l2fib_main_t *fm = &l2fib_main;
956 vl_api_l2_macs_event_t *mp = vl_msg_api_alloc
957 (sizeof (*mp) + (fm->max_macs_in_event * sizeof (vl_api_mac_entry_t)));
958 mp->_vl_msg_id = htons (VL_API_L2_MACS_EVENT);
959 mp->pid = htonl (client);
960 mp->client_index = client_index;
961 return mp;
962}
963
964static_always_inline f64
965l2fib_scan (vlib_main_t * vm, f64 start_time, u8 event_only)
966{
967 l2fib_main_t *fm = &l2fib_main;
968 l2learn_main_t *lm = &l2learn_main;
969
970 BVT (clib_bihash) * h = &fm->mac_table;
971 int i, j, k;
972 f64 last_start = start_time;
973 f64 accum_t = 0;
974 f64 delta_t = 0;
975 u32 evt_idx = 0;
976 u32 learn_count = 0;
977 u32 client = lm->client_pid;
978 u32 cl_idx = lm->client_index;
979 vl_api_l2_macs_event_t *mp = 0;
Florin Corasaf0ff5a2018-01-10 08:17:03 -0800980 vl_api_registration_t *reg = 0;
John Lo8d00fff2017-08-03 00:35:36 -0400981
982 if (client)
983 {
984 mp = allocate_mac_evt_buf (client, cl_idx);
Florin Corasaf0ff5a2018-01-10 08:17:03 -0800985 reg = vl_api_client_index_to_registration (lm->client_index);
John Lo8d00fff2017-08-03 00:35:36 -0400986 }
987
988 for (i = 0; i < h->nbuckets; i++)
989 {
990 /* allow no more than 20us without a pause */
991 delta_t = vlib_time_now (vm) - last_start;
992 if (delta_t > 20e-6)
993 {
994 vlib_process_suspend (vm, 100e-6); /* suspend for 100 us */
995 last_start = vlib_time_now (vm);
996 accum_t += delta_t;
997 }
998
999 if (i < (h->nbuckets - 3))
1000 {
1001 BVT (clib_bihash_bucket) * b = &h->buckets[i + 3];
1002 CLIB_PREFETCH (b, CLIB_CACHE_LINE_BYTES, LOAD);
1003 b = &h->buckets[i + 1];
1004 if (b->offset)
1005 {
1006 BVT (clib_bihash_value) * v =
1007 BV (clib_bihash_get_value) (h, b->offset);
1008 CLIB_PREFETCH (v, CLIB_CACHE_LINE_BYTES, LOAD);
1009 }
1010 }
1011
1012 BVT (clib_bihash_bucket) * b = &h->buckets[i];
1013 if (b->offset == 0)
1014 continue;
1015 BVT (clib_bihash_value) * v = BV (clib_bihash_get_value) (h, b->offset);
1016 for (j = 0; j < (1 << b->log2_pages); j++)
1017 {
1018 for (k = 0; k < BIHASH_KVP_PER_PAGE; k++)
1019 {
1020 if (v->kvp[k].key == ~0ULL && v->kvp[k].value == ~0ULL)
1021 continue;
1022
1023 l2fib_entry_key_t key = {.raw = v->kvp[k].key };
1024 l2fib_entry_result_t result = {.raw = v->kvp[k].value };
1025
Neale Rannsb54d0812018-09-06 06:22:56 -07001026 if (!l2fib_entry_result_is_set_AGE_NOT (&result))
John Lo8d00fff2017-08-03 00:35:36 -04001027 learn_count++;
1028
John Lo8d00fff2017-08-03 00:35:36 -04001029 if (client)
1030 {
Eyal Bari24db0ec2017-09-27 21:43:51 +03001031 if (PREDICT_FALSE (evt_idx >= fm->max_macs_in_event))
1032 {
1033 /* event message full, send it and start a new one */
Florin Corasaf0ff5a2018-01-10 08:17:03 -08001034 if (reg && vl_api_can_send_msg (reg))
Eyal Bari24db0ec2017-09-27 21:43:51 +03001035 {
1036 mp->n_macs = htonl (evt_idx);
Florin Corasaf0ff5a2018-01-10 08:17:03 -08001037 vl_api_send_msg (reg, (u8 *) mp);
Eyal Bari24db0ec2017-09-27 21:43:51 +03001038 mp = allocate_mac_evt_buf (client, cl_idx);
1039 }
1040 else
1041 {
Florin Corasaf0ff5a2018-01-10 08:17:03 -08001042 if (reg)
Dave Barach59b25652017-09-10 15:04:27 -04001043 clib_warning ("MAC event to pid %d queue stuffed!"
1044 " %d MAC entries lost", client,
1045 evt_idx);
Eyal Bari24db0ec2017-09-27 21:43:51 +03001046 }
1047 evt_idx = 0;
1048 }
1049
Neale Rannsb54d0812018-09-06 06:22:56 -07001050 if (l2fib_entry_result_is_set_LRN_EVT (&result))
John Lo8d00fff2017-08-03 00:35:36 -04001051 {
1052 /* copy mac entry to event msg */
1053 clib_memcpy (mp->mac[evt_idx].mac_addr, key.fields.mac,
1054 6);
Neale Rannsb54d0812018-09-06 06:22:56 -07001055 mp->mac[evt_idx].action =
1056 l2fib_entry_result_is_set_LRN_MOV (&result) ?
John Loe23c99e2018-03-13 21:53:18 -04001057 MAC_EVENT_ACTION_MOVE : MAC_EVENT_ACTION_ADD;
John Lo8d00fff2017-08-03 00:35:36 -04001058 mp->mac[evt_idx].sw_if_index =
1059 htonl (result.fields.sw_if_index);
John Loe23c99e2018-03-13 21:53:18 -04001060 /* clear event bits and update mac entry */
Neale Rannsb54d0812018-09-06 06:22:56 -07001061 l2fib_entry_result_clear_LRN_EVT (&result);
1062 l2fib_entry_result_clear_LRN_MOV (&result);
John Lo8d00fff2017-08-03 00:35:36 -04001063 BVT (clib_bihash_kv) kv;
1064 kv.key = key.raw;
1065 kv.value = result.raw;
1066 BV (clib_bihash_add_del) (&fm->mac_table, &kv, 1);
1067 evt_idx++;
1068 continue; /* skip aging */
1069 }
1070 }
1071
Neale Rannsb54d0812018-09-06 06:22:56 -07001072 if (event_only || l2fib_entry_result_is_set_AGE_NOT (&result))
John Lo8d00fff2017-08-03 00:35:36 -04001073 continue; /* skip aging - static_mac alsways age_not */
1074
1075 /* start aging processing */
1076 u32 bd_index = key.fields.bd_index;
1077 u32 sw_if_index = result.fields.sw_if_index;
1078 u16 sn = l2fib_cur_seq_num (bd_index, sw_if_index).as_u16;
1079 if (result.fields.sn.as_u16 != sn)
1080 goto age_out; /* stale mac */
1081
1082 l2_bridge_domain_t *bd_config =
1083 vec_elt_at_index (l2input_main.bd_configs, bd_index);
1084
1085 if (bd_config->mac_age == 0)
1086 continue; /* skip aging */
1087
1088 i16 delta = (u8) (start_time / 60) - result.fields.timestamp;
1089 delta += delta < 0 ? 256 : 0;
1090
1091 if (delta < bd_config->mac_age)
1092 continue; /* still valid */
1093
1094 age_out:
1095 if (client)
1096 {
1097 /* copy mac entry to event msg */
1098 clib_memcpy (mp->mac[evt_idx].mac_addr, key.fields.mac, 6);
John Loe23c99e2018-03-13 21:53:18 -04001099 mp->mac[evt_idx].action = MAC_EVENT_ACTION_DELETE;
John Lo8d00fff2017-08-03 00:35:36 -04001100 mp->mac[evt_idx].sw_if_index =
1101 htonl (result.fields.sw_if_index);
1102 evt_idx++;
1103 }
1104 /* delete mac entry */
1105 BVT (clib_bihash_kv) kv;
1106 kv.key = key.raw;
1107 BV (clib_bihash_add_del) (&fm->mac_table, &kv, 0);
1108 learn_count--;
Dave Barach28374ca2018-08-07 12:46:18 -04001109 /*
1110 * Note: we may have just freed the bucket's backing
1111 * storage, so check right here...
1112 */
1113 if (b->offset == 0)
1114 goto doublebreak;
John Lo8d00fff2017-08-03 00:35:36 -04001115 }
1116 v++;
1117 }
Dave Barach28374ca2018-08-07 12:46:18 -04001118 doublebreak:
1119 ;
John Lo8d00fff2017-08-03 00:35:36 -04001120 }
1121
1122 /* keep learn count consistent */
1123 l2learn_main.global_learn_count = learn_count;
1124
1125 if (mp)
1126 {
1127 /* send any outstanding mac event message else free message buffer */
1128 if (evt_idx)
1129 {
Florin Corasaf0ff5a2018-01-10 08:17:03 -08001130 if (reg && vl_api_can_send_msg (reg))
John Lo8d00fff2017-08-03 00:35:36 -04001131 {
1132 mp->n_macs = htonl (evt_idx);
Florin Corasaf0ff5a2018-01-10 08:17:03 -08001133 vl_api_send_msg (reg, (u8 *) mp);
John Lo8d00fff2017-08-03 00:35:36 -04001134 }
1135 else
1136 {
Florin Corasaf0ff5a2018-01-10 08:17:03 -08001137 if (reg)
Dave Barach59b25652017-09-10 15:04:27 -04001138 clib_warning ("MAC event to pid %d queue stuffed!"
1139 " %d MAC entries lost", client, evt_idx);
John Lo8d00fff2017-08-03 00:35:36 -04001140 vl_msg_api_free (mp);
1141 }
1142 }
1143 else
1144 vl_msg_api_free (mp);
1145 }
1146 return delta_t + accum_t;
1147}
1148
Damjan Mariond171d482016-12-05 14:16:38 +01001149static uword
1150l2fib_mac_age_scanner_process (vlib_main_t * vm, vlib_node_runtime_t * rt,
1151 vlib_frame_t * f)
1152{
1153 uword event_type, *event_data = 0;
John Lo8d00fff2017-08-03 00:35:36 -04001154 l2fib_main_t *fm = &l2fib_main;
1155 l2learn_main_t *lm = &l2learn_main;
Damjan Mariond171d482016-12-05 14:16:38 +01001156 bool enabled = 0;
John Lo7f358b32018-04-28 01:19:24 -04001157 f64 start_time, next_age_scan_time = CLIB_TIME_MAX;
Damjan Mariond171d482016-12-05 14:16:38 +01001158
1159 while (1)
1160 {
Eyal Bari24db0ec2017-09-27 21:43:51 +03001161 if (lm->client_pid)
1162 vlib_process_wait_for_event_or_clock (vm, fm->event_scan_delay);
1163 else if (enabled)
John Lo8d00fff2017-08-03 00:35:36 -04001164 {
Eyal Bari24db0ec2017-09-27 21:43:51 +03001165 f64 t = next_age_scan_time - vlib_time_now (vm);
1166 vlib_process_wait_for_event_or_clock (vm, t);
John Lo8d00fff2017-08-03 00:35:36 -04001167 }
Damjan Mariond171d482016-12-05 14:16:38 +01001168 else
1169 vlib_process_wait_for_event (vm);
1170
1171 event_type = vlib_process_get_events (vm, &event_data);
1172 vec_reset_length (event_data);
1173
John Lo8d00fff2017-08-03 00:35:36 -04001174 start_time = vlib_time_now (vm);
Eyal Bari24db0ec2017-09-27 21:43:51 +03001175 enum
1176 { SCAN_MAC_AGE, SCAN_MAC_EVENT, SCAN_DISABLE } scan = SCAN_MAC_AGE;
John Lo8d00fff2017-08-03 00:35:36 -04001177
Damjan Mariond171d482016-12-05 14:16:38 +01001178 switch (event_type)
1179 {
John Lo8d00fff2017-08-03 00:35:36 -04001180 case ~0: /* timer expired */
Eyal Bari24db0ec2017-09-27 21:43:51 +03001181 if (lm->client_pid != 0 && start_time < next_age_scan_time)
John Lo8d00fff2017-08-03 00:35:36 -04001182 scan = SCAN_MAC_EVENT;
Damjan Mariond171d482016-12-05 14:16:38 +01001183 break;
John Lo8d00fff2017-08-03 00:35:36 -04001184
Damjan Mariond171d482016-12-05 14:16:38 +01001185 case L2_MAC_AGE_PROCESS_EVENT_START:
1186 enabled = 1;
1187 break;
John Lo8d00fff2017-08-03 00:35:36 -04001188
Damjan Mariond171d482016-12-05 14:16:38 +01001189 case L2_MAC_AGE_PROCESS_EVENT_STOP:
1190 enabled = 0;
Eyal Bari24db0ec2017-09-27 21:43:51 +03001191 scan = SCAN_DISABLE;
1192 break;
John Lo8d00fff2017-08-03 00:35:36 -04001193
John Loda1f2c72017-03-24 20:11:15 -04001194 case L2_MAC_AGE_PROCESS_EVENT_ONE_PASS:
John Loda1f2c72017-03-24 20:11:15 -04001195 break;
John Lo8d00fff2017-08-03 00:35:36 -04001196
Damjan Mariond171d482016-12-05 14:16:38 +01001197 default:
1198 ASSERT (0);
1199 }
Eyal Bari7537e712017-04-27 14:07:55 +03001200
John Lo8d00fff2017-08-03 00:35:36 -04001201 if (scan == SCAN_MAC_EVENT)
1202 l2fib_main.evt_scan_duration = l2fib_scan (vm, start_time, 1);
1203 else
Eyal Bari24db0ec2017-09-27 21:43:51 +03001204 {
1205 if (scan == SCAN_MAC_AGE)
1206 l2fib_main.age_scan_duration = l2fib_scan (vm, start_time, 0);
1207 if (scan == SCAN_DISABLE)
1208 {
1209 l2fib_main.age_scan_duration = 0;
1210 l2fib_main.evt_scan_duration = 0;
1211 }
1212 /* schedule next scan */
1213 if (enabled)
1214 next_age_scan_time = start_time + L2FIB_AGE_SCAN_INTERVAL;
1215 else
John Lo7f358b32018-04-28 01:19:24 -04001216 next_age_scan_time = CLIB_TIME_MAX;
Eyal Bari24db0ec2017-09-27 21:43:51 +03001217 }
Damjan Mariond171d482016-12-05 14:16:38 +01001218 }
1219 return 0;
1220}
1221
1222/* *INDENT-OFF* */
1223VLIB_REGISTER_NODE (l2fib_mac_age_scanner_process_node) = {
1224 .function = l2fib_mac_age_scanner_process,
1225 .type = VLIB_NODE_TYPE_PROCESS,
1226 .name = "l2fib-mac-age-scanner-process",
1227};
1228/* *INDENT-ON* */
1229
Dave Barach97d8dc22016-08-15 15:31:15 -04001230clib_error_t *
1231l2fib_init (vlib_main_t * vm)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001232{
Dave Barach97d8dc22016-08-15 15:31:15 -04001233 l2fib_main_t *mp = &l2fib_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001234 l2fib_entry_key_t test_key;
1235 u8 test_mac[6];
Dave Barach97d8dc22016-08-15 15:31:15 -04001236
Ed Warnickecb9cada2015-12-08 15:45:58 -07001237 mp->vlib_main = vm;
Dave Barach97d8dc22016-08-15 15:31:15 -04001238 mp->vnet_main = vnet_get_main ();
Ed Warnickecb9cada2015-12-08 15:45:58 -07001239
Dave Barach97d8dc22016-08-15 15:31:15 -04001240 /* Create the hash table */
1241 BV (clib_bihash_init) (&mp->mac_table, "l2fib mac table",
1242 L2FIB_NUM_BUCKETS, L2FIB_MEMORY_SIZE);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001243
Dave Barach97d8dc22016-08-15 15:31:15 -04001244 /* verify the key constructor is good, since it is endian-sensitive */
1245 memset (test_mac, 0, sizeof (test_mac));
Ed Warnickecb9cada2015-12-08 15:45:58 -07001246 test_mac[0] = 0x11;
1247 test_key.raw = 0;
Dave Barach97d8dc22016-08-15 15:31:15 -04001248 test_key.raw = l2fib_make_key ((u8 *) & test_mac, 0x1234);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001249 ASSERT (test_key.fields.mac[0] == 0x11);
1250 ASSERT (test_key.fields.bd_index == 0x1234);
1251
1252 return 0;
1253}
1254
1255VLIB_INIT_FUNCTION (l2fib_init);
1256
Dave Barach97d8dc22016-08-15 15:31:15 -04001257/*
1258 * fd.io coding-style-patch-verification: ON
1259 *
1260 * Local Variables:
1261 * eval: (c-set-style "gnu")
1262 * End:
1263 */