blob: d891ced10809475a899d3f00d4851c04a4cece48 [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
Dave Barach97d8dc22016-08-15 15:31:15 -040085void
86l2fib_table_dump (u32 bd_index, l2fib_entry_key_t ** l2fe_key,
87 l2fib_entry_result_t ** l2fe_res)
Ed Warnickecb9cada2015-12-08 15:45:58 -070088{
Dave Barach97d8dc22016-08-15 15:31:15 -040089 l2fib_main_t *msm = &l2fib_main;
90 BVT (clib_bihash) * h = &msm->mac_table;
Dave Barach908a5ea2017-07-14 12:42:21 -040091 BVT (clib_bihash_bucket) * b;
Dave Barach97d8dc22016-08-15 15:31:15 -040092 BVT (clib_bihash_value) * v;
Ed Warnickecb9cada2015-12-08 15:45:58 -070093 l2fib_entry_key_t key;
94 l2fib_entry_result_t result;
95 int i, j, k;
96
97 for (i = 0; i < h->nbuckets; i++)
98 {
99 b = &h->buckets[i];
100 if (b->offset == 0)
Dave Barach97d8dc22016-08-15 15:31:15 -0400101 continue;
102 v = BV (clib_bihash_get_value) (h, b->offset);
103 for (j = 0; j < (1 << b->log2_pages); j++)
104 {
105 for (k = 0; k < BIHASH_KVP_PER_PAGE; k++)
106 {
107 if (v->kvp[k].key == ~0ULL && v->kvp[k].value == ~0ULL)
108 continue;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700109
Dave Barach97d8dc22016-08-15 15:31:15 -0400110 key.raw = v->kvp[k].key;
111 result.raw = v->kvp[k].value;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700112
Dave Barach97d8dc22016-08-15 15:31:15 -0400113 if ((bd_index == ~0) || (bd_index == key.fields.bd_index))
114 {
115 vec_add1 (*l2fe_key, key);
116 vec_add1 (*l2fe_res, result);
117 }
118 }
119 v++;
120 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700121 }
122}
123
Chris Luke16bcf7d2016-09-01 14:31:46 -0400124/** Display the contents of the l2fib. */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700125static clib_error_t *
Dave Barach97d8dc22016-08-15 15:31:15 -0400126show_l2fib (vlib_main_t * vm,
127 unformat_input_t * input, vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700128{
Dave Barach97d8dc22016-08-15 15:31:15 -0400129 bd_main_t *bdm = &bd_main;
130 l2fib_main_t *msm = &l2fib_main;
Damjan Mariond171d482016-12-05 14:16:38 +0100131 l2_bridge_domain_t *bd_config;
Dave Barach97d8dc22016-08-15 15:31:15 -0400132 BVT (clib_bihash) * h = &msm->mac_table;
Dave Barach908a5ea2017-07-14 12:42:21 -0400133 BVT (clib_bihash_bucket) * b;
Dave Barach97d8dc22016-08-15 15:31:15 -0400134 BVT (clib_bihash_value) * v;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700135 l2fib_entry_key_t key;
136 l2fib_entry_result_t result;
137 u32 first_entry = 1;
138 u64 total_entries = 0;
139 int i, j, k;
140 u8 verbose = 0;
141 u8 raw = 0;
John Lo8d00fff2017-08-03 00:35:36 -0400142 u8 learn = 0;
John Lo7dbd7262018-05-31 10:25:18 -0400143 u8 add = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700144 u32 bd_id, bd_index = ~0;
Damjan Mariond171d482016-12-05 14:16:38 +0100145 u8 now = (u8) (vlib_time_now (vm) / 60);
146 u8 *s = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700147
John Lo7dbd7262018-05-31 10:25:18 -0400148 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
John Lo8d00fff2017-08-03 00:35:36 -0400149 {
John Lo7dbd7262018-05-31 10:25:18 -0400150 if (unformat (input, "raw"))
Dave Barach97d8dc22016-08-15 15:31:15 -0400151 {
John Lo7dbd7262018-05-31 10:25:18 -0400152 raw = 1;
153 verbose = 0;
154 break;
155 }
156 else if (unformat (input, "verbose"))
157 verbose = 1;
158 else if (unformat (input, "all"))
159 verbose = 1;
160 else if (unformat (input, "bd_index %d", &bd_index))
161 verbose = 1;
162 else if (unformat (input, "learn"))
163 {
164 add = 0;
165 learn = 1;
166 verbose = 1;
167 }
168 else if (unformat (input, "add"))
169 {
170 learn = 0;
171 add = 1;
172 verbose = 1;
173 }
174 else if (unformat (input, "bd_id %d", &bd_id))
175 {
176 uword *p = hash_get (bdm->bd_index_by_bd_id, bd_id);
177 if (p)
178 {
179 verbose = 1;
180 bd_index = p[0];
181 }
182 else
183 return clib_error_return (0,
184 "bridge domain id %d doesn't exist\n",
185 bd_id);
Dave Barach97d8dc22016-08-15 15:31:15 -0400186 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700187 else
John Lo7dbd7262018-05-31 10:25:18 -0400188 break;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700189 }
190
191 for (i = 0; i < h->nbuckets; i++)
192 {
193 b = &h->buckets[i];
194 if (b->offset == 0)
Dave Barach97d8dc22016-08-15 15:31:15 -0400195 continue;
196 v = BV (clib_bihash_get_value) (h, b->offset);
197 for (j = 0; j < (1 << b->log2_pages); j++)
198 {
199 for (k = 0; k < BIHASH_KVP_PER_PAGE; k++)
200 {
201 if (v->kvp[k].key == ~0ULL && v->kvp[k].value == ~0ULL)
202 continue;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700203
John Lo7dbd7262018-05-31 10:25:18 -0400204 if (verbose && first_entry)
Dave Barach97d8dc22016-08-15 15:31:15 -0400205 {
206 first_entry = 0;
207 vlib_cli_output (vm,
John Loda1f2c72017-03-24 20:11:15 -0400208 "%=19s%=7s%=7s%=8s%=9s%=7s%=7s%=5s%=30s",
209 "Mac-Address", "BD-Idx", "If-Idx",
210 "BSN-ISN", "Age(min)", "static", "filter",
211 "bvi", "Interface-Name");
Dave Barach97d8dc22016-08-15 15:31:15 -0400212 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700213
Dave Barach97d8dc22016-08-15 15:31:15 -0400214 key.raw = v->kvp[k].key;
215 result.raw = v->kvp[k].value;
John Lo7dbd7262018-05-31 10:25:18 -0400216 total_entries++;
Dave Barach97d8dc22016-08-15 15:31:15 -0400217
John Lo7dbd7262018-05-31 10:25:18 -0400218 if (verbose &&
219 ((bd_index >> 31) || (bd_index == key.fields.bd_index)))
Dave Barach97d8dc22016-08-15 15:31:15 -0400220 {
John Lo8d00fff2017-08-03 00:35:36 -0400221 if (learn && result.fields.age_not)
John Lo7dbd7262018-05-31 10:25:18 -0400222 continue; /* skip provisioned macs */
223
224 if (add && !result.fields.age_not)
225 continue; /* skip learned macs */
John Lo8d00fff2017-08-03 00:35:36 -0400226
Damjan Mariond171d482016-12-05 14:16:38 +0100227 bd_config = vec_elt_at_index (l2input_main.bd_configs,
228 key.fields.bd_index);
229
John Lo7dbd7262018-05-31 10:25:18 -0400230 if (result.fields.age_not)
231 s = format (s, "no");
232 else if (bd_config->mac_age == 0)
233 s = format (s, "-");
234 else
Damjan Mariond171d482016-12-05 14:16:38 +0100235 {
236 i16 delta = now - result.fields.timestamp;
237 delta += delta < 0 ? 256 : 0;
238 s = format (s, "%d", delta);
239 }
Damjan Mariond171d482016-12-05 14:16:38 +0100240
Dave Barach97d8dc22016-08-15 15:31:15 -0400241 vlib_cli_output (vm,
John Loda1f2c72017-03-24 20:11:15 -0400242 "%=19U%=7d%=7d %3d/%-3d%=9v%=7s%=7s%=5s%=30U",
Dave Barach97d8dc22016-08-15 15:31:15 -0400243 format_ethernet_address, key.fields.mac,
244 key.fields.bd_index,
Dave Barach97d8dc22016-08-15 15:31:15 -0400245 result.fields.sw_if_index == ~0
246 ? -1 : result.fields.sw_if_index,
Eyal Bari7537e712017-04-27 14:07:55 +0300247 result.fields.sn.bd, result.fields.sn.swif,
John Loda1f2c72017-03-24 20:11:15 -0400248 s, result.fields.static_mac ? "*" : "-",
249 result.fields.filter ? "*" : "-",
250 result.fields.bvi ? "*" : "-",
251 format_vnet_sw_if_index_name_with_NA,
252 msm->vnet_main, result.fields.sw_if_index);
Damjan Mariond171d482016-12-05 14:16:38 +0100253 vec_reset_length (s);
Dave Barach97d8dc22016-08-15 15:31:15 -0400254 }
Dave Barach97d8dc22016-08-15 15:31:15 -0400255 }
256 v++;
257 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700258 }
259
260 if (total_entries == 0)
261 vlib_cli_output (vm, "no l2fib entries");
262 else
John Lo8d00fff2017-08-03 00:35:36 -0400263 {
264 l2learn_main_t *lm = &l2learn_main;
265 vlib_cli_output (vm, "L2FIB total/learned entries: %d/%d "
266 "Last scan time: %.4esec Learn limit: %d ",
267 total_entries, lm->global_learn_count,
268 msm->age_scan_duration, lm->global_learn_limit);
269 if (lm->client_pid)
270 vlib_cli_output (vm, "L2MAC events client PID: %d "
271 "Last e-scan time: %.4esec Delay: %.2esec "
272 "Max macs in event: %d",
273 lm->client_pid, msm->evt_scan_duration,
274 msm->event_scan_delay, msm->max_macs_in_event);
275 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700276
277 if (raw)
278 vlib_cli_output (vm, "Raw Hash Table:\n%U\n",
Dave Barach97d8dc22016-08-15 15:31:15 -0400279 BV (format_bihash), h, 1 /* verbose */ );
Ed Warnickecb9cada2015-12-08 15:45:58 -0700280
Damjan Mariond171d482016-12-05 14:16:38 +0100281 vec_free (s);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700282 return 0;
283}
284
Billy McFall22aa3e92016-09-09 08:46:40 -0400285/*?
286 * This command dispays the MAC Address entries of the L2 FIB table.
287 * Output can be filtered to just get the number of MAC Addresses or display
288 * each MAC Address for all bridge domains or just a single bridge domain.
289 *
290 * @cliexpar
291 * Example of how to display the number of MAC Address entries in the L2
292 * FIB table:
293 * @cliexstart{show l2fib}
294 * 3 l2fib entries
295 * @cliexend
296 * Example of how to display all the MAC Address entries in the L2
297 * FIB table:
John Lo7dbd7262018-05-31 10:25:18 -0400298 * @cliexstart{show l2fib all}
Billy McFall22aa3e92016-09-09 08:46:40 -0400299 * Mac Address BD Idx Interface Index static filter bvi refresh timestamp
300 * 52:54:00:53:18:33 1 GigabitEthernet0/8/0.200 3 0 0 0 0 0
301 * 52:54:00:53:18:55 1 GigabitEthernet0/8/0.200 3 1 0 0 0 0
302 * 52:54:00:53:18:77 1 N/A -1 1 1 0 0 0
303 * 3 l2fib entries
304 * @cliexend
305?*/
Dave Barach97d8dc22016-08-15 15:31:15 -0400306/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700307VLIB_CLI_COMMAND (show_l2fib_cli, static) = {
308 .path = "show l2fib",
John Lo7dbd7262018-05-31 10:25:18 -0400309 .short_help = "show l2fib [all] | [bd_id <nn> | bd_index <nn>] [learn | add] | [raw]",
Ed Warnickecb9cada2015-12-08 15:45:58 -0700310 .function = show_l2fib,
311};
Dave Barach97d8dc22016-08-15 15:31:15 -0400312/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700313
314
Dave Barach97d8dc22016-08-15 15:31:15 -0400315/* Remove all entries from the l2fib */
316void
Eyal Bari7537e712017-04-27 14:07:55 +0300317l2fib_clear_table (void)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700318{
Dave Barach97d8dc22016-08-15 15:31:15 -0400319 l2fib_main_t *mp = &l2fib_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700320
Eyal Bari7537e712017-04-27 14:07:55 +0300321 /* Remove all entries */
322 BV (clib_bihash_free) (&mp->mac_table);
323 BV (clib_bihash_init) (&mp->mac_table, "l2fib mac table",
324 L2FIB_NUM_BUCKETS, L2FIB_MEMORY_SIZE);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700325 l2learn_main.global_learn_count = 0;
326}
327
Chris Luke16bcf7d2016-09-01 14:31:46 -0400328/** Clear all entries in L2FIB.
329 * @TODO: Later we may want a way to remove only the non-static entries
Dave Barach97d8dc22016-08-15 15:31:15 -0400330 */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700331static clib_error_t *
Dave Barach97d8dc22016-08-15 15:31:15 -0400332clear_l2fib (vlib_main_t * vm,
333 unformat_input_t * input, vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700334{
Eyal Bari7537e712017-04-27 14:07:55 +0300335 l2fib_clear_table ();
Ed Warnickecb9cada2015-12-08 15:45:58 -0700336 return 0;
337}
338
Billy McFall22aa3e92016-09-09 08:46:40 -0400339/*?
340 * This command clears all the MAC Address entries from the L2 FIB table.
341 *
342 * @cliexpar
343 * Example of how to clear the L2 FIB Table:
344 * @cliexcmd{clear l2fib}
345 * Example to show the L2 FIB Table has been cleared:
346 * @cliexstart{show l2fib verbose}
347 * no l2fib entries
348 * @cliexend
349?*/
Dave Barach97d8dc22016-08-15 15:31:15 -0400350/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700351VLIB_CLI_COMMAND (clear_l2fib_cli, static) = {
352 .path = "clear l2fib",
Billy McFall22aa3e92016-09-09 08:46:40 -0400353 .short_help = "clear l2fib",
Ed Warnickecb9cada2015-12-08 15:45:58 -0700354 .function = clear_l2fib,
355};
Dave Barach97d8dc22016-08-15 15:31:15 -0400356/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700357
Eyal Bari7537e712017-04-27 14:07:55 +0300358static inline l2fib_seq_num_t
359l2fib_cur_seq_num (u32 bd_index, u32 sw_if_index)
360{
Eyal Bari7537e712017-04-27 14:07:55 +0300361 l2_bridge_domain_t *bd_config = l2input_bd_config (bd_index);
362 /* *INDENT-OFF* */
363 return (l2fib_seq_num_t) {
Eyal Bari0f360dc2017-06-14 13:11:20 +0300364 .swif = *l2fib_swif_seq_num (sw_if_index),
Eyal Bari7537e712017-04-27 14:07:55 +0300365 .bd = bd_config->seq_num,
366 };
367 /* *INDENT-ON* */
368}
Ed Warnickecb9cada2015-12-08 15:45:58 -0700369
Dave Barach97d8dc22016-08-15 15:31:15 -0400370/**
371 * Add an entry to the l2fib.
372 * If the entry already exists then overwrite it
373 */
374void
Mohsin Kazmi57938f62017-10-27 21:28:07 +0200375l2fib_add_entry (u8 * mac, u32 bd_index,
John Lo8d00fff2017-08-03 00:35:36 -0400376 u32 sw_if_index, u8 static_mac, u8 filter_mac, u8 bvi_mac)
Dave Barach97d8dc22016-08-15 15:31:15 -0400377{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700378 l2fib_entry_key_t key;
379 l2fib_entry_result_t result;
Dave Barach97d8dc22016-08-15 15:31:15 -0400380 __attribute__ ((unused)) u32 bucket_contents;
John Lo8d00fff2017-08-03 00:35:36 -0400381 l2fib_main_t *fm = &l2fib_main;
382 l2learn_main_t *lm = &l2learn_main;
Dave Barach97d8dc22016-08-15 15:31:15 -0400383 BVT (clib_bihash_kv) kv;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700384
Dave Barach97d8dc22016-08-15 15:31:15 -0400385 /* set up key */
Mohsin Kazmi57938f62017-10-27 21:28:07 +0200386 key.raw = l2fib_make_key (mac, bd_index);
Dave Barach97d8dc22016-08-15 15:31:15 -0400387
John Lo8d00fff2017-08-03 00:35:36 -0400388 /* check if entry alread exist */
389 if (BV (clib_bihash_search) (&fm->mac_table, &kv, &kv))
390 {
391 /* decrement counter if overwriting a learned mac */
392 result.raw = kv.value;
393 if ((result.fields.age_not == 0) && (lm->global_learn_count))
394 lm->global_learn_count--;
395 }
396
Dave Barach97d8dc22016-08-15 15:31:15 -0400397 /* set up result */
398 result.raw = 0; /* clear all fields */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700399 result.fields.sw_if_index = sw_if_index;
400 result.fields.static_mac = static_mac;
401 result.fields.filter = filter_mac;
402 result.fields.bvi = bvi_mac;
John Lo8d00fff2017-08-03 00:35:36 -0400403 result.fields.age_not = 1; /* no aging for provisioned entry */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700404
405 kv.key = key.raw;
406 kv.value = result.raw;
407
John Lo8d00fff2017-08-03 00:35:36 -0400408 BV (clib_bihash_add_del) (&fm->mac_table, &kv, 1 /* is_add */ );
Ed Warnickecb9cada2015-12-08 15:45:58 -0700409}
410
Dave Barach97d8dc22016-08-15 15:31:15 -0400411/**
Chris Luke16bcf7d2016-09-01 14:31:46 -0400412 * Add an entry to the L2FIB.
Dave Barach97d8dc22016-08-15 15:31:15 -0400413 * The CLI format is:
414 * l2fib add <mac> <bd> <intf> [static] [bvi]
415 * l2fib add <mac> <bd> filter
416 * Note that filter and bvi entries are always static
417 */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700418static clib_error_t *
Dave Barach97d8dc22016-08-15 15:31:15 -0400419l2fib_add (vlib_main_t * vm,
420 unformat_input_t * input, vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700421{
Dave Barach97d8dc22016-08-15 15:31:15 -0400422 bd_main_t *bdm = &bd_main;
423 vnet_main_t *vnm = vnet_get_main ();
424 clib_error_t *error = 0;
Mohsin Kazmi57938f62017-10-27 21:28:07 +0200425 u8 mac[6];
Ed Warnickecb9cada2015-12-08 15:45:58 -0700426 u32 bd_id;
427 u32 bd_index;
428 u32 sw_if_index = ~0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700429 u32 static_mac = 0;
430 u32 bvi_mac = 0;
Dave Barach97d8dc22016-08-15 15:31:15 -0400431 uword *p;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700432
Mohsin Kazmi57938f62017-10-27 21:28:07 +0200433 if (!unformat (input, "%U", unformat_ethernet_address, mac))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700434 {
435 error = clib_error_return (0, "expected mac address `%U'",
Dave Barach97d8dc22016-08-15 15:31:15 -0400436 format_unformat_error, input);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700437 goto done;
438 }
Dave Barach97d8dc22016-08-15 15:31:15 -0400439
440 if (!unformat (input, "%d", &bd_id))
441 {
Ed Warnickecb9cada2015-12-08 15:45:58 -0700442 error = clib_error_return (0, "expected bridge domain ID `%U'",
Dave Barach97d8dc22016-08-15 15:31:15 -0400443 format_unformat_error, input);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700444 goto done;
Dave Barach97d8dc22016-08-15 15:31:15 -0400445 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700446
447 p = hash_get (bdm->bd_index_by_bd_id, bd_id);
Dave Barach97d8dc22016-08-15 15:31:15 -0400448 if (!p)
449 {
Ed Warnickecb9cada2015-12-08 15:45:58 -0700450 error = clib_error_return (0, "bridge domain ID %d invalid", bd_id);
451 goto done;
Dave Barach97d8dc22016-08-15 15:31:15 -0400452 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700453 bd_index = p[0];
454
Dave Barach97d8dc22016-08-15 15:31:15 -0400455 if (unformat (input, "filter"))
456 {
John Lo14edd972017-10-31 13:26:02 -0400457 l2fib_add_filter_entry (mac, bd_index);
458 return 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700459 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700460
John Lo14edd972017-10-31 13:26:02 -0400461 if (!unformat_user (input, unformat_vnet_sw_interface, vnm, &sw_if_index))
462 {
463 error = clib_error_return (0, "unknown interface `%U'",
464 format_unformat_error, input);
465 goto done;
466 }
467
468 if (unformat (input, "static"))
469 {
470 static_mac = 1;
471 }
472 else if (unformat (input, "bvi"))
473 {
474 bvi_mac = 1;
475 static_mac = 1;
Dave Barach97d8dc22016-08-15 15:31:15 -0400476 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700477
John Lob2fd6cb2017-07-12 19:56:45 -0400478 if (vec_len (l2input_main.configs) <= sw_if_index)
479 {
480 error = clib_error_return (0, "Interface sw_if_index %d not in L2 mode",
481 sw_if_index);
482 goto done;
483 }
484
John Lo14edd972017-10-31 13:26:02 -0400485 l2fib_add_fwd_entry (mac, bd_index, sw_if_index, static_mac, bvi_mac);
Dave Barach97d8dc22016-08-15 15:31:15 -0400486
487done:
Ed Warnickecb9cada2015-12-08 15:45:58 -0700488 return error;
489}
490
Billy McFall22aa3e92016-09-09 08:46:40 -0400491/*?
492 * This command adds a MAC Address entry to the L2 FIB table
493 * of an existing bridge-domain. The MAC Address can be static
494 * or dynamic. This command also allows a filter to be added,
495 * such that packets with given MAC Addresses (source mac or
496 * destination mac match) are dropped.
497 *
498 * @cliexpar
499 * Example of how to add a dynamic MAC Address entry to the L2 FIB table
500 * of a bridge-domain (where 200 is the bridge-domain-id):
501 * @cliexcmd{l2fib add 52:54:00:53:18:33 200 GigabitEthernet0/8/0.200}
502 * Example of how to add a static MAC Address entry to the L2 FIB table
503 * of a bridge-domain (where 200 is the bridge-domain-id):
504 * @cliexcmd{l2fib add 52:54:00:53:18:55 200 GigabitEthernet0/8/0.200 static}
505 * Example of how to add a filter such that a packet with the given MAC
506 * Address will be dropped in a given bridge-domain (where 200 is the
507 * bridge-domain-id):
508 * @cliexcmd{l2fib add 52:54:00:53:18:77 200 filter}
509 * Example of show command of the provisioned MAC Addresses and filters:
510 * @cliexstart{show l2fib verbose}
511 * Mac Address BD Idx Interface Index static filter bvi refresh timestamp
512 * 52:54:00:53:18:33 1 GigabitEthernet0/8/0.200 3 0 0 0 0 0
513 * 52:54:00:53:18:55 1 GigabitEthernet0/8/0.200 3 1 0 0 0 0
514 * 52:54:00:53:18:77 1 N/A -1 1 1 0 0 0
515 * 3 l2fib entries
516 * @cliexend
517?*/
Dave Barach97d8dc22016-08-15 15:31:15 -0400518/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700519VLIB_CLI_COMMAND (l2fib_add_cli, static) = {
520 .path = "l2fib add",
Billy McFall22aa3e92016-09-09 08:46:40 -0400521 .short_help = "l2fib add <mac> <bridge-domain-id> filter | <intf> [static | bvi]",
Ed Warnickecb9cada2015-12-08 15:45:58 -0700522 .function = l2fib_add,
523};
Dave Barach97d8dc22016-08-15 15:31:15 -0400524/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700525
526
527static clib_error_t *
Dave Barach97d8dc22016-08-15 15:31:15 -0400528l2fib_test_command_fn (vlib_main_t * vm,
529 unformat_input_t * input, vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700530{
Dave Barach97d8dc22016-08-15 15:31:15 -0400531 clib_error_t *error = 0;
Mohsin Kazmi57938f62017-10-27 21:28:07 +0200532 u8 mac[6], save_mac[6];
Ed Warnickecb9cada2015-12-08 15:45:58 -0700533 u32 bd_index = 0;
534 u32 sw_if_index = 8;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700535 u32 bvi_mac = 0;
536 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 {
Mohsin Kazmi57938f62017-10-27 21:28:07 +0200572 l2fib_add_fwd_entry (mac, bd_index, sw_if_index, *mac, bvi_mac);
573 incr_mac_address (mac);
Dave Barach97d8dc22016-08-15 15:31:15 -0400574 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700575 }
576
577 if (is_check)
578 {
Dave Barach97d8dc22016-08-15 15:31:15 -0400579 BVT (clib_bihash_kv) kv;
580 l2fib_main_t *mp = &l2fib_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700581
Mohsin Kazmi57938f62017-10-27 21:28:07 +0200582 clib_memcpy (mac, save_mac, 6);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700583
584 for (i = 0; i < count; i++)
Dave Barach97d8dc22016-08-15 15:31:15 -0400585 {
Mohsin Kazmi57938f62017-10-27 21:28:07 +0200586 kv.key = l2fib_make_key (mac, bd_index);
Dave Barach97d8dc22016-08-15 15:31:15 -0400587 if (BV (clib_bihash_search) (&mp->mac_table, &kv, &kv))
588 {
Mohsin Kazmi57938f62017-10-27 21:28:07 +0200589 clib_warning ("key %U AWOL", format_ethernet_address, mac);
Dave Barach97d8dc22016-08-15 15:31:15 -0400590 break;
591 }
Mohsin Kazmi57938f62017-10-27 21:28:07 +0200592 incr_mac_address (mac);
Dave Barach97d8dc22016-08-15 15:31:15 -0400593 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700594 }
595
596 if (is_del)
597 {
Mohsin Kazmi57938f62017-10-27 21:28:07 +0200598 clib_memcpy (mac, save_mac, 6);
599
Ed Warnickecb9cada2015-12-08 15:45:58 -0700600 for (i = 0; i < count; i++)
Dave Barach97d8dc22016-08-15 15:31:15 -0400601 {
John Lo7dbd7262018-05-31 10:25:18 -0400602 l2fib_del_entry (mac, bd_index, 0);
Mohsin Kazmi57938f62017-10-27 21:28:07 +0200603 incr_mac_address (mac);
Dave Barach97d8dc22016-08-15 15:31:15 -0400604 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700605 }
606
607 return error;
608}
609
Billy McFall22aa3e92016-09-09 08:46:40 -0400610/*?
611 * The set of '<em>test l2fib</em>' commands allow the L2 FIB table of the default
612 * bridge domain (bridge-domain-id of 0) to be modified.
613 *
614 * @cliexpar
615 * @parblock
616 * Example of how to add a set of 4 sequential MAC Address entries to L2
617 * FIB table of the default bridge-domain:
618 * @cliexcmd{test l2fib add mac 52:54:00:53:00:00 count 4}
619 *
620 * Show the set of 4 sequential MAC Address entries that were added:
621 * @cliexstart{show l2fib verbose}
622 * Mac Address BD Idx Interface Index static filter bvi refresh timestamp
623 * 52:54:00:53:00:00 0 GigabitEthernet0/8/0.300 8 0 0 0 0 0
624 * 52:54:00:53:00:01 0 GigabitEthernet0/8/0.300 8 0 0 0 0 0
625 * 52:54:00:53:00:03 0 GigabitEthernet0/8/0.300 8 0 0 0 0 0
626 * 52:54:00:53:00:02 0 GigabitEthernet0/8/0.300 8 0 0 0 0 0
627 * 4 l2fib entries
628 * @cliexend
629 *
630 * Example of how to check that the set of 4 sequential MAC Address
631 * entries were added to L2 FIB table of the default
632 * bridge-domain. Used a count of 5 to produce an error:
633 *
634 * @cliexcmd{test l2fib check mac 52:54:00:53:00:00 count 5}
635 * The output of the check command is in the log files. Log file
636 * location may vary based on your OS and Version:
637 *
638 * <b><em># tail -f /var/log/messages | grep l2fib_test_command_fn</em></b>
639 *
640 * Sep 7 17:15:24 localhost vnet[4952]: l2fib_test_command_fn:446: key 52:54:00:53:00:04 AWOL
641 *
642 * Example of how to delete a set of 4 sequential MAC Address entries
643 * from L2 FIB table of the default bridge-domain:
644 * @cliexcmd{test l2fib del mac 52:54:00:53:00:00 count 4}
645 * @endparblock
646?*/
Dave Barach97d8dc22016-08-15 15:31:15 -0400647/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700648VLIB_CLI_COMMAND (l2fib_test_command, static) = {
649 .path = "test l2fib",
Billy McFall22aa3e92016-09-09 08:46:40 -0400650 .short_help = "test l2fib [add|del|check] mac <base-addr> count <nn>",
Ed Warnickecb9cada2015-12-08 15:45:58 -0700651 .function = l2fib_test_command_fn,
652};
Dave Barach97d8dc22016-08-15 15:31:15 -0400653/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700654
655
Dave Barach97d8dc22016-08-15 15:31:15 -0400656/**
657 * Delete an entry from the l2fib.
John Lo7dbd7262018-05-31 10:25:18 -0400658 * Return 0 if the entry was deleted, or 1 it was not found or if
659 * sw_if_index is non-zero and does not match that in the entry.
Dave Barach97d8dc22016-08-15 15:31:15 -0400660 */
John Lo7dbd7262018-05-31 10:25:18 -0400661u32
662l2fib_del_entry (u8 * mac, u32 bd_index, u32 sw_if_index)
Dave Barach97d8dc22016-08-15 15:31:15 -0400663{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700664 l2fib_entry_result_t result;
Dave Barach97d8dc22016-08-15 15:31:15 -0400665 l2fib_main_t *mp = &l2fib_main;
666 BVT (clib_bihash_kv) kv;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700667
Dave Barach97d8dc22016-08-15 15:31:15 -0400668 /* set up key */
John Lo7dbd7262018-05-31 10:25:18 -0400669 kv.key = l2fib_make_key (mac, bd_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700670
Dave Barach97d8dc22016-08-15 15:31:15 -0400671 if (BV (clib_bihash_search) (&mp->mac_table, &kv, &kv))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700672 return 1;
673
674 result.raw = kv.value;
675
John Lo7dbd7262018-05-31 10:25:18 -0400676 /* check if sw_if_index of entry match */
677 if ((sw_if_index != 0) && (sw_if_index != result.fields.sw_if_index))
678 return 1;
679
Dave Barach97d8dc22016-08-15 15:31:15 -0400680 /* decrement counter if dynamically learned mac */
John Lo8d00fff2017-08-03 00:35:36 -0400681 if ((result.fields.age_not == 0) && (l2learn_main.global_learn_count))
682 l2learn_main.global_learn_count--;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700683
Dave Barach97d8dc22016-08-15 15:31:15 -0400684 /* Remove entry from hash table */
685 BV (clib_bihash_add_del) (&mp->mac_table, &kv, 0 /* is_add */ );
Ed Warnickecb9cada2015-12-08 15:45:58 -0700686 return 0;
687}
688
Dave Barach97d8dc22016-08-15 15:31:15 -0400689/**
Chris Luke16bcf7d2016-09-01 14:31:46 -0400690 * Delete an entry from the L2FIB.
Dave Barach97d8dc22016-08-15 15:31:15 -0400691 * The CLI format is:
692 * l2fib del <mac> <bd-id>
693 */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700694static clib_error_t *
Dave Barach97d8dc22016-08-15 15:31:15 -0400695l2fib_del (vlib_main_t * vm,
696 unformat_input_t * input, vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700697{
Dave Barach97d8dc22016-08-15 15:31:15 -0400698 bd_main_t *bdm = &bd_main;
699 clib_error_t *error = 0;
Mohsin Kazmi57938f62017-10-27 21:28:07 +0200700 u8 mac[6];
Ed Warnickecb9cada2015-12-08 15:45:58 -0700701 u32 bd_id;
702 u32 bd_index;
Dave Barach97d8dc22016-08-15 15:31:15 -0400703 uword *p;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700704
Mohsin Kazmi57938f62017-10-27 21:28:07 +0200705 if (!unformat (input, "%U", unformat_ethernet_address, mac))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700706 {
707 error = clib_error_return (0, "expected mac address `%U'",
Dave Barach97d8dc22016-08-15 15:31:15 -0400708 format_unformat_error, input);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700709 goto done;
710 }
Dave Barach97d8dc22016-08-15 15:31:15 -0400711
712 if (!unformat (input, "%d", &bd_id))
713 {
Ed Warnickecb9cada2015-12-08 15:45:58 -0700714 error = clib_error_return (0, "expected bridge domain ID `%U'",
Dave Barach97d8dc22016-08-15 15:31:15 -0400715 format_unformat_error, input);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700716 goto done;
Dave Barach97d8dc22016-08-15 15:31:15 -0400717 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700718
719 p = hash_get (bdm->bd_index_by_bd_id, bd_id);
Dave Barach97d8dc22016-08-15 15:31:15 -0400720 if (!p)
721 {
Ed Warnickecb9cada2015-12-08 15:45:58 -0700722 error = clib_error_return (0, "bridge domain ID %d invalid", bd_id);
723 goto done;
Dave Barach97d8dc22016-08-15 15:31:15 -0400724 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700725 bd_index = p[0];
726
Dave Barach97d8dc22016-08-15 15:31:15 -0400727 /* Delete the entry */
John Lo7dbd7262018-05-31 10:25:18 -0400728 if (l2fib_del_entry (mac, bd_index, 0))
Dave Barach97d8dc22016-08-15 15:31:15 -0400729 {
730 error = clib_error_return (0, "mac entry not found");
731 goto done;
732 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700733
Dave Barach97d8dc22016-08-15 15:31:15 -0400734done:
Ed Warnickecb9cada2015-12-08 15:45:58 -0700735 return error;
736}
737
Billy McFall22aa3e92016-09-09 08:46:40 -0400738/*?
739 * This command deletes an existing MAC Address entry from the L2 FIB
740 * table of an existing bridge-domain.
741 *
742 * @cliexpar
743 * 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):
744 * @cliexcmd{l2fib del 52:54:00:53:18:33 200}
745?*/
Dave Barach97d8dc22016-08-15 15:31:15 -0400746/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700747VLIB_CLI_COMMAND (l2fib_del_cli, static) = {
748 .path = "l2fib del",
John Lo7dbd7262018-05-31 10:25:18 -0400749 .short_help = "l2fib del <mac> <bridge-domain-id> []",
Ed Warnickecb9cada2015-12-08 15:45:58 -0700750 .function = l2fib_del,
751};
Dave Barach97d8dc22016-08-15 15:31:15 -0400752/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700753
John Loda1f2c72017-03-24 20:11:15 -0400754/**
755 Kick off ager to scan MACs to age/delete MAC entries
756*/
757void
758l2fib_start_ager_scan (vlib_main_t * vm)
759{
Eyal Bari24db0ec2017-09-27 21:43:51 +0300760 uword evt = L2_MAC_AGE_PROCESS_EVENT_ONE_PASS;
John Loda1f2c72017-03-24 20:11:15 -0400761
762 /* check if there is at least one bd with mac aging enabled */
Eyal Bari24db0ec2017-09-27 21:43:51 +0300763 l2_bridge_domain_t *bd_config;
John Loda1f2c72017-03-24 20:11:15 -0400764 vec_foreach (bd_config, l2input_main.bd_configs)
Eyal Bari24db0ec2017-09-27 21:43:51 +0300765 {
John Loda1f2c72017-03-24 20:11:15 -0400766 if (bd_config->bd_id != ~0 && bd_config->mac_age != 0)
Eyal Bari24db0ec2017-09-27 21:43:51 +0300767 {
768 evt = L2_MAC_AGE_PROCESS_EVENT_START;
769 break;
770 }
771 }
John Loda1f2c72017-03-24 20:11:15 -0400772
773 vlib_process_signal_event (vm, l2fib_mac_age_scanner_process_node.index,
Eyal Bari24db0ec2017-09-27 21:43:51 +0300774 evt, 0);
John Loda1f2c72017-03-24 20:11:15 -0400775}
776
777/**
Eyal Bari7537e712017-04-27 14:07:55 +0300778 Flush all non static MACs from an interface
John Loda1f2c72017-03-24 20:11:15 -0400779*/
780void
781l2fib_flush_int_mac (vlib_main_t * vm, u32 sw_if_index)
782{
Eyal Bari0f360dc2017-06-14 13:11:20 +0300783 *l2fib_swif_seq_num (sw_if_index) += 1;
John Loda1f2c72017-03-24 20:11:15 -0400784 l2fib_start_ager_scan (vm);
785}
786
787/**
Eyal Bari7537e712017-04-27 14:07:55 +0300788 Flush all non static MACs in a bridge domain
John Loda1f2c72017-03-24 20:11:15 -0400789*/
790void
791l2fib_flush_bd_mac (vlib_main_t * vm, u32 bd_index)
792{
Eyal Bari7537e712017-04-27 14:07:55 +0300793 l2_bridge_domain_t *bd_config = l2input_bd_config (bd_index);
John Loda1f2c72017-03-24 20:11:15 -0400794 bd_config->seq_num += 1;
795 l2fib_start_ager_scan (vm);
796}
797
798/**
Eyal Bari7537e712017-04-27 14:07:55 +0300799 Flush all non static MACs - flushes all valid BDs
800*/
801void
802l2fib_flush_all_mac (vlib_main_t * vm)
803{
804 l2_bridge_domain_t *bd_config;
805 vec_foreach (bd_config, l2input_main.bd_configs)
806 if (bd_is_valid (bd_config))
807 bd_config->seq_num += 1;
808
809 l2fib_start_ager_scan (vm);
810}
811
812
813/**
John Loda1f2c72017-03-24 20:11:15 -0400814 Flush MACs, except static ones, associated with an interface
815 The CLI format is:
816 l2fib flush-mac interface <if-name>
817*/
818static clib_error_t *
819l2fib_flush_mac_int (vlib_main_t * vm,
820 unformat_input_t * input, vlib_cli_command_t * cmd)
821{
822 vnet_main_t *vnm = vnet_get_main ();
823 clib_error_t *error = 0;
824 u32 sw_if_index;
825
826 if (!unformat_user (input, unformat_vnet_sw_interface, vnm, &sw_if_index))
827 {
828 error = clib_error_return (0, "unknown interface `%U'",
829 format_unformat_error, input);
830 goto done;
831 }
832
833 l2fib_flush_int_mac (vm, sw_if_index);
834
835done:
836 return error;
837}
838
Eyal Bari7537e712017-04-27 14:07:55 +0300839/**
840 Flush all MACs, except static ones
841 The CLI format is:
842 l2fib flush-mac all
843*/
844static clib_error_t *
845l2fib_flush_mac_all (vlib_main_t * vm,
846 unformat_input_t * input, vlib_cli_command_t * cmd)
847{
848 l2fib_flush_all_mac (vm);
849 return 0;
850}
851
852/*?
853 * This command kick off ager to delete all existing MAC Address entries,
854 * except static ones, associated with an interface from the L2 FIB table.
855 *
856 * @cliexpar
857 * Example of how to flush MAC Address entries learned on an interface from the L2 FIB table:
858 * @cliexcmd{l2fib flush-mac interface GigabitEthernet2/1/0}
859?*/
860/* *INDENT-OFF* */
861VLIB_CLI_COMMAND (l2fib_flush_mac_all_cli, static) = {
862 .path = "l2fib flush-mac all",
863 .short_help = "l2fib flush-mac all",
864 .function = l2fib_flush_mac_all,
865};
866/* *INDENT-ON* */
867
John Loda1f2c72017-03-24 20:11:15 -0400868/*?
869 * This command kick off ager to delete all existing MAC Address entries,
870 * except static ones, associated with an interface from the L2 FIB table.
871 *
872 * @cliexpar
873 * Example of how to flush MAC Address entries learned on an interface from the L2 FIB table:
874 * @cliexcmd{l2fib flush-mac interface GigabitEthernet2/1/0}
875?*/
876/* *INDENT-OFF* */
877VLIB_CLI_COMMAND (l2fib_flush_mac_int_cli, static) = {
878 .path = "l2fib flush-mac interface",
879 .short_help = "l2fib flush-mac interface <if-name>",
880 .function = l2fib_flush_mac_int,
881};
882/* *INDENT-ON* */
883
884/**
885 Flush bridge-domain MACs except static ones.
886 The CLI format is:
887 l2fib flush-mac bridge-domain <bd-id>
888*/
889static clib_error_t *
890l2fib_flush_mac_bd (vlib_main_t * vm,
891 unformat_input_t * input, vlib_cli_command_t * cmd)
892{
893 bd_main_t *bdm = &bd_main;
894 clib_error_t *error = 0;
895 u32 bd_index, bd_id;
896 uword *p;
897
898 if (!unformat (input, "%d", &bd_id))
899 {
900 error = clib_error_return (0, "expecting bridge-domain id but got `%U'",
901 format_unformat_error, input);
902 goto done;
903 }
904
905 p = hash_get (bdm->bd_index_by_bd_id, bd_id);
906 if (p)
907 bd_index = *p;
908 else
909 return clib_error_return (0, "No such bridge domain %d", bd_id);
910
911 l2fib_flush_bd_mac (vm, bd_index);
912
913done:
914 return error;
915}
916
917/*?
918 * This command kick off ager to delete all existing MAC Address entries,
919 * except static ones, in a bridge domain from the L2 FIB table.
920 *
921 * @cliexpar
922 * Example of how to flush MAC Address entries learned in a bridge domain from the L2 FIB table:
923 * @cliexcmd{l2fib flush-mac bridge-domain 1000}
924?*/
925/* *INDENT-OFF* */
926VLIB_CLI_COMMAND (l2fib_flush_mac_bd_cli, static) = {
927 .path = "l2fib flush-mac bridge-domain",
928 .short_help = "l2fib flush-mac bridge-domain <bd-id>",
929 .function = l2fib_flush_mac_bd,
930};
931/* *INDENT-ON* */
932
Eyal Bariafc47aa2017-04-20 14:45:17 +0300933clib_error_t *
934l2fib_sw_interface_up_down (vnet_main_t * vnm, u32 sw_if_index, u32 flags)
935{
936 l2_input_config_t *config = l2input_intf_config (sw_if_index);
937 if ((flags & VNET_SW_INTERFACE_FLAG_ADMIN_UP) == 0 && config->bridge)
938 l2fib_flush_int_mac (vnm->vlib_main, sw_if_index);
939 return 0;
940}
941
942VNET_SW_INTERFACE_ADMIN_UP_DOWN_FUNCTION (l2fib_sw_interface_up_down);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700943
Dave Barach97d8dc22016-08-15 15:31:15 -0400944BVT (clib_bihash) * get_mac_table (void)
945{
946 l2fib_main_t *mp = &l2fib_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700947 return &mp->mac_table;
948}
949
John Lo8d00fff2017-08-03 00:35:36 -0400950static_always_inline void *
951allocate_mac_evt_buf (u32 client, u32 client_index)
952{
953 l2fib_main_t *fm = &l2fib_main;
954 vl_api_l2_macs_event_t *mp = vl_msg_api_alloc
955 (sizeof (*mp) + (fm->max_macs_in_event * sizeof (vl_api_mac_entry_t)));
956 mp->_vl_msg_id = htons (VL_API_L2_MACS_EVENT);
957 mp->pid = htonl (client);
958 mp->client_index = client_index;
959 return mp;
960}
961
962static_always_inline f64
963l2fib_scan (vlib_main_t * vm, f64 start_time, u8 event_only)
964{
965 l2fib_main_t *fm = &l2fib_main;
966 l2learn_main_t *lm = &l2learn_main;
967
968 BVT (clib_bihash) * h = &fm->mac_table;
969 int i, j, k;
970 f64 last_start = start_time;
971 f64 accum_t = 0;
972 f64 delta_t = 0;
973 u32 evt_idx = 0;
974 u32 learn_count = 0;
975 u32 client = lm->client_pid;
976 u32 cl_idx = lm->client_index;
977 vl_api_l2_macs_event_t *mp = 0;
Florin Corasaf0ff5a2018-01-10 08:17:03 -0800978 vl_api_registration_t *reg = 0;
John Lo8d00fff2017-08-03 00:35:36 -0400979
980 if (client)
981 {
982 mp = allocate_mac_evt_buf (client, cl_idx);
Florin Corasaf0ff5a2018-01-10 08:17:03 -0800983 reg = vl_api_client_index_to_registration (lm->client_index);
John Lo8d00fff2017-08-03 00:35:36 -0400984 }
985
986 for (i = 0; i < h->nbuckets; i++)
987 {
988 /* allow no more than 20us without a pause */
989 delta_t = vlib_time_now (vm) - last_start;
990 if (delta_t > 20e-6)
991 {
992 vlib_process_suspend (vm, 100e-6); /* suspend for 100 us */
993 last_start = vlib_time_now (vm);
994 accum_t += delta_t;
995 }
996
997 if (i < (h->nbuckets - 3))
998 {
999 BVT (clib_bihash_bucket) * b = &h->buckets[i + 3];
1000 CLIB_PREFETCH (b, CLIB_CACHE_LINE_BYTES, LOAD);
1001 b = &h->buckets[i + 1];
1002 if (b->offset)
1003 {
1004 BVT (clib_bihash_value) * v =
1005 BV (clib_bihash_get_value) (h, b->offset);
1006 CLIB_PREFETCH (v, CLIB_CACHE_LINE_BYTES, LOAD);
1007 }
1008 }
1009
1010 BVT (clib_bihash_bucket) * b = &h->buckets[i];
1011 if (b->offset == 0)
1012 continue;
1013 BVT (clib_bihash_value) * v = BV (clib_bihash_get_value) (h, b->offset);
1014 for (j = 0; j < (1 << b->log2_pages); j++)
1015 {
1016 for (k = 0; k < BIHASH_KVP_PER_PAGE; k++)
1017 {
1018 if (v->kvp[k].key == ~0ULL && v->kvp[k].value == ~0ULL)
1019 continue;
1020
1021 l2fib_entry_key_t key = {.raw = v->kvp[k].key };
1022 l2fib_entry_result_t result = {.raw = v->kvp[k].value };
1023
1024 if (result.fields.age_not == 0)
1025 learn_count++;
1026
John Lo8d00fff2017-08-03 00:35:36 -04001027 if (client)
1028 {
Eyal Bari24db0ec2017-09-27 21:43:51 +03001029 if (PREDICT_FALSE (evt_idx >= fm->max_macs_in_event))
1030 {
1031 /* event message full, send it and start a new one */
Florin Corasaf0ff5a2018-01-10 08:17:03 -08001032 if (reg && vl_api_can_send_msg (reg))
Eyal Bari24db0ec2017-09-27 21:43:51 +03001033 {
1034 mp->n_macs = htonl (evt_idx);
Florin Corasaf0ff5a2018-01-10 08:17:03 -08001035 vl_api_send_msg (reg, (u8 *) mp);
Eyal Bari24db0ec2017-09-27 21:43:51 +03001036 mp = allocate_mac_evt_buf (client, cl_idx);
1037 }
1038 else
1039 {
Florin Corasaf0ff5a2018-01-10 08:17:03 -08001040 if (reg)
Dave Barach59b25652017-09-10 15:04:27 -04001041 clib_warning ("MAC event to pid %d queue stuffed!"
1042 " %d MAC entries lost", client,
1043 evt_idx);
Eyal Bari24db0ec2017-09-27 21:43:51 +03001044 }
1045 evt_idx = 0;
1046 }
1047
John Lo8d00fff2017-08-03 00:35:36 -04001048 if (result.fields.lrn_evt)
1049 {
1050 /* copy mac entry to event msg */
1051 clib_memcpy (mp->mac[evt_idx].mac_addr, key.fields.mac,
1052 6);
John Loe23c99e2018-03-13 21:53:18 -04001053 mp->mac[evt_idx].action = result.fields.lrn_mov ?
1054 MAC_EVENT_ACTION_MOVE : MAC_EVENT_ACTION_ADD;
John Lo8d00fff2017-08-03 00:35:36 -04001055 mp->mac[evt_idx].sw_if_index =
1056 htonl (result.fields.sw_if_index);
John Loe23c99e2018-03-13 21:53:18 -04001057 /* clear event bits and update mac entry */
John Lo8d00fff2017-08-03 00:35:36 -04001058 result.fields.lrn_evt = 0;
John Loe23c99e2018-03-13 21:53:18 -04001059 result.fields.lrn_mov = 0;
John Lo8d00fff2017-08-03 00:35:36 -04001060 BVT (clib_bihash_kv) kv;
1061 kv.key = key.raw;
1062 kv.value = result.raw;
1063 BV (clib_bihash_add_del) (&fm->mac_table, &kv, 1);
1064 evt_idx++;
1065 continue; /* skip aging */
1066 }
1067 }
1068
1069 if (event_only || result.fields.age_not)
1070 continue; /* skip aging - static_mac alsways age_not */
1071
1072 /* start aging processing */
1073 u32 bd_index = key.fields.bd_index;
1074 u32 sw_if_index = result.fields.sw_if_index;
1075 u16 sn = l2fib_cur_seq_num (bd_index, sw_if_index).as_u16;
1076 if (result.fields.sn.as_u16 != sn)
1077 goto age_out; /* stale mac */
1078
1079 l2_bridge_domain_t *bd_config =
1080 vec_elt_at_index (l2input_main.bd_configs, bd_index);
1081
1082 if (bd_config->mac_age == 0)
1083 continue; /* skip aging */
1084
1085 i16 delta = (u8) (start_time / 60) - result.fields.timestamp;
1086 delta += delta < 0 ? 256 : 0;
1087
1088 if (delta < bd_config->mac_age)
1089 continue; /* still valid */
1090
1091 age_out:
1092 if (client)
1093 {
1094 /* copy mac entry to event msg */
1095 clib_memcpy (mp->mac[evt_idx].mac_addr, key.fields.mac, 6);
John Loe23c99e2018-03-13 21:53:18 -04001096 mp->mac[evt_idx].action = MAC_EVENT_ACTION_DELETE;
John Lo8d00fff2017-08-03 00:35:36 -04001097 mp->mac[evt_idx].sw_if_index =
1098 htonl (result.fields.sw_if_index);
1099 evt_idx++;
1100 }
1101 /* delete mac entry */
1102 BVT (clib_bihash_kv) kv;
1103 kv.key = key.raw;
1104 BV (clib_bihash_add_del) (&fm->mac_table, &kv, 0);
1105 learn_count--;
Dave Barach28374ca2018-08-07 12:46:18 -04001106 /*
1107 * Note: we may have just freed the bucket's backing
1108 * storage, so check right here...
1109 */
1110 if (b->offset == 0)
1111 goto doublebreak;
John Lo8d00fff2017-08-03 00:35:36 -04001112 }
1113 v++;
1114 }
Dave Barach28374ca2018-08-07 12:46:18 -04001115 doublebreak:
1116 ;
John Lo8d00fff2017-08-03 00:35:36 -04001117 }
1118
1119 /* keep learn count consistent */
1120 l2learn_main.global_learn_count = learn_count;
1121
1122 if (mp)
1123 {
1124 /* send any outstanding mac event message else free message buffer */
1125 if (evt_idx)
1126 {
Florin Corasaf0ff5a2018-01-10 08:17:03 -08001127 if (reg && vl_api_can_send_msg (reg))
John Lo8d00fff2017-08-03 00:35:36 -04001128 {
1129 mp->n_macs = htonl (evt_idx);
Florin Corasaf0ff5a2018-01-10 08:17:03 -08001130 vl_api_send_msg (reg, (u8 *) mp);
John Lo8d00fff2017-08-03 00:35:36 -04001131 }
1132 else
1133 {
Florin Corasaf0ff5a2018-01-10 08:17:03 -08001134 if (reg)
Dave Barach59b25652017-09-10 15:04:27 -04001135 clib_warning ("MAC event to pid %d queue stuffed!"
1136 " %d MAC entries lost", client, evt_idx);
John Lo8d00fff2017-08-03 00:35:36 -04001137 vl_msg_api_free (mp);
1138 }
1139 }
1140 else
1141 vl_msg_api_free (mp);
1142 }
1143 return delta_t + accum_t;
1144}
1145
Damjan Mariond171d482016-12-05 14:16:38 +01001146static uword
1147l2fib_mac_age_scanner_process (vlib_main_t * vm, vlib_node_runtime_t * rt,
1148 vlib_frame_t * f)
1149{
1150 uword event_type, *event_data = 0;
John Lo8d00fff2017-08-03 00:35:36 -04001151 l2fib_main_t *fm = &l2fib_main;
1152 l2learn_main_t *lm = &l2learn_main;
Damjan Mariond171d482016-12-05 14:16:38 +01001153 bool enabled = 0;
John Lo7f358b32018-04-28 01:19:24 -04001154 f64 start_time, next_age_scan_time = CLIB_TIME_MAX;
Damjan Mariond171d482016-12-05 14:16:38 +01001155
1156 while (1)
1157 {
Eyal Bari24db0ec2017-09-27 21:43:51 +03001158 if (lm->client_pid)
1159 vlib_process_wait_for_event_or_clock (vm, fm->event_scan_delay);
1160 else if (enabled)
John Lo8d00fff2017-08-03 00:35:36 -04001161 {
Eyal Bari24db0ec2017-09-27 21:43:51 +03001162 f64 t = next_age_scan_time - vlib_time_now (vm);
1163 vlib_process_wait_for_event_or_clock (vm, t);
John Lo8d00fff2017-08-03 00:35:36 -04001164 }
Damjan Mariond171d482016-12-05 14:16:38 +01001165 else
1166 vlib_process_wait_for_event (vm);
1167
1168 event_type = vlib_process_get_events (vm, &event_data);
1169 vec_reset_length (event_data);
1170
John Lo8d00fff2017-08-03 00:35:36 -04001171 start_time = vlib_time_now (vm);
Eyal Bari24db0ec2017-09-27 21:43:51 +03001172 enum
1173 { SCAN_MAC_AGE, SCAN_MAC_EVENT, SCAN_DISABLE } scan = SCAN_MAC_AGE;
John Lo8d00fff2017-08-03 00:35:36 -04001174
Damjan Mariond171d482016-12-05 14:16:38 +01001175 switch (event_type)
1176 {
John Lo8d00fff2017-08-03 00:35:36 -04001177 case ~0: /* timer expired */
Eyal Bari24db0ec2017-09-27 21:43:51 +03001178 if (lm->client_pid != 0 && start_time < next_age_scan_time)
John Lo8d00fff2017-08-03 00:35:36 -04001179 scan = SCAN_MAC_EVENT;
Damjan Mariond171d482016-12-05 14:16:38 +01001180 break;
John Lo8d00fff2017-08-03 00:35:36 -04001181
Damjan Mariond171d482016-12-05 14:16:38 +01001182 case L2_MAC_AGE_PROCESS_EVENT_START:
1183 enabled = 1;
1184 break;
John Lo8d00fff2017-08-03 00:35:36 -04001185
Damjan Mariond171d482016-12-05 14:16:38 +01001186 case L2_MAC_AGE_PROCESS_EVENT_STOP:
1187 enabled = 0;
Eyal Bari24db0ec2017-09-27 21:43:51 +03001188 scan = SCAN_DISABLE;
1189 break;
John Lo8d00fff2017-08-03 00:35:36 -04001190
John Loda1f2c72017-03-24 20:11:15 -04001191 case L2_MAC_AGE_PROCESS_EVENT_ONE_PASS:
John Loda1f2c72017-03-24 20:11:15 -04001192 break;
John Lo8d00fff2017-08-03 00:35:36 -04001193
Damjan Mariond171d482016-12-05 14:16:38 +01001194 default:
1195 ASSERT (0);
1196 }
Eyal Bari7537e712017-04-27 14:07:55 +03001197
John Lo8d00fff2017-08-03 00:35:36 -04001198 if (scan == SCAN_MAC_EVENT)
1199 l2fib_main.evt_scan_duration = l2fib_scan (vm, start_time, 1);
1200 else
Eyal Bari24db0ec2017-09-27 21:43:51 +03001201 {
1202 if (scan == SCAN_MAC_AGE)
1203 l2fib_main.age_scan_duration = l2fib_scan (vm, start_time, 0);
1204 if (scan == SCAN_DISABLE)
1205 {
1206 l2fib_main.age_scan_duration = 0;
1207 l2fib_main.evt_scan_duration = 0;
1208 }
1209 /* schedule next scan */
1210 if (enabled)
1211 next_age_scan_time = start_time + L2FIB_AGE_SCAN_INTERVAL;
1212 else
John Lo7f358b32018-04-28 01:19:24 -04001213 next_age_scan_time = CLIB_TIME_MAX;
Eyal Bari24db0ec2017-09-27 21:43:51 +03001214 }
Damjan Mariond171d482016-12-05 14:16:38 +01001215 }
1216 return 0;
1217}
1218
1219/* *INDENT-OFF* */
1220VLIB_REGISTER_NODE (l2fib_mac_age_scanner_process_node) = {
1221 .function = l2fib_mac_age_scanner_process,
1222 .type = VLIB_NODE_TYPE_PROCESS,
1223 .name = "l2fib-mac-age-scanner-process",
1224};
1225/* *INDENT-ON* */
1226
Dave Barach97d8dc22016-08-15 15:31:15 -04001227clib_error_t *
1228l2fib_init (vlib_main_t * vm)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001229{
Dave Barach97d8dc22016-08-15 15:31:15 -04001230 l2fib_main_t *mp = &l2fib_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001231 l2fib_entry_key_t test_key;
1232 u8 test_mac[6];
Dave Barach97d8dc22016-08-15 15:31:15 -04001233
Ed Warnickecb9cada2015-12-08 15:45:58 -07001234 mp->vlib_main = vm;
Dave Barach97d8dc22016-08-15 15:31:15 -04001235 mp->vnet_main = vnet_get_main ();
Ed Warnickecb9cada2015-12-08 15:45:58 -07001236
Dave Barach97d8dc22016-08-15 15:31:15 -04001237 /* Create the hash table */
1238 BV (clib_bihash_init) (&mp->mac_table, "l2fib mac table",
1239 L2FIB_NUM_BUCKETS, L2FIB_MEMORY_SIZE);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001240
Dave Barach97d8dc22016-08-15 15:31:15 -04001241 /* verify the key constructor is good, since it is endian-sensitive */
1242 memset (test_mac, 0, sizeof (test_mac));
Ed Warnickecb9cada2015-12-08 15:45:58 -07001243 test_mac[0] = 0x11;
1244 test_key.raw = 0;
Dave Barach97d8dc22016-08-15 15:31:15 -04001245 test_key.raw = l2fib_make_key ((u8 *) & test_mac, 0x1234);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001246 ASSERT (test_key.fields.mac[0] == 0x11);
1247 ASSERT (test_key.fields.bd_index == 0x1234);
1248
1249 return 0;
1250}
1251
1252VLIB_INIT_FUNCTION (l2fib_init);
1253
Dave Barach97d8dc22016-08-15 15:31:15 -04001254/*
1255 * fd.io coding-style-patch-verification: ON
1256 *
1257 * Local Variables:
1258 * eval: (c-set-style "gnu")
1259 * End:
1260 */