FD.io VPP  v21.01.1
Vector Packet Processing
l2_fib.c
Go to the documentation of this file.
1 /*
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/ethernet/ethernet.h>
22 #include <vlib/cli.h>
23 
24 #include <vppinfra/error.h>
25 #include <vppinfra/hash.h>
26 #include <vnet/l2/l2_input.h>
27 #include <vnet/l2/l2_fib.h>
28 #include <vnet/l2/l2_learn.h>
29 #include <vnet/l2/l2_bd.h>
30 
32 
33 #include <vlibmemory/api.h>
34 #include <vnet/vnet_msg_enum.h>
35 
36 #define vl_typedefs /* define message structures */
37 #include <vnet/vnet_all_api_h.h>
38 #undef vl_typedefs
39 
40 #define vl_endianfun /* define message structures */
41 #include <vnet/vnet_all_api_h.h>
42 #undef vl_endianfun
43 
44 /**
45  * @file
46  * @brief Ethernet MAC Address FIB Table Management.
47  *
48  * The MAC Address forwarding table for bridge-domains is called the l2fib.
49  * Entries are added automatically as part of mac learning, but MAC Addresses
50  * entries can also be added manually.
51  *
52  */
53 
55 
56 u8 *
57 format_l2fib_entry_result_flags (u8 * s, va_list * args)
58 {
59  l2fib_entry_result_flags_t flags = va_arg (*args, int);
60 
61  if (L2FIB_ENTRY_RESULT_FLAG_NONE == flags)
62  {
63  s = format (s, "none");
64  }
65  else
66  {
67 #define _(a,v,t) { \
68  if (flags & L2FIB_ENTRY_RESULT_FLAG_##a) \
69  s = format (s, "%s ", t); \
70  }
72 #undef _
73  }
74  return (s);
75 }
76 
77 static void
79 {
80  u64 tmp = *((u64 *) mac);
81  tmp = clib_net_to_host_u64 (tmp);
82  tmp += 1 << 16; /* skip unused (least significant) octets */
83  tmp = clib_host_to_net_u64 (tmp);
84 
85  clib_memcpy_fast (mac, &tmp, 6);
86 }
87 
88 /** Format sw_if_index. If the value is ~0, use the text "N/A" */
89 u8 *
91 {
92  vnet_main_t *vnm = va_arg (*args, vnet_main_t *);
93  u32 sw_if_index = va_arg (*args, u32);
94  if (sw_if_index == ~0)
95  return format (s, "N/A");
96 
97  vnet_sw_interface_t *swif =
98  vnet_get_sw_interface_or_null (vnm, sw_if_index);
99  if (!swif)
100  return format (s, "Stale");
101 
102  return format (s, "%U", format_vnet_sw_interface_name, vnm,
103  vnet_get_sw_interface_or_null (vnm, sw_if_index));
104 }
105 
107 {
112 
113 static int
114 l2fib_dump_walk_cb (BVT (clib_bihash_kv) * kvp, void *arg)
115 {
116  l2fib_dump_walk_ctx_t *ctx = arg;
117  l2fib_entry_result_t result;
119 
120  key.raw = kvp->key;
121  result.raw = kvp->value;
122 
123  if ((ctx->bd_index == ~0) || (ctx->bd_index == key.fields.bd_index))
124  {
125  vec_add1 (ctx->l2fe_key, key);
126  vec_add1 (ctx->l2fe_res, result);
127  }
128 
129  return (BIHASH_WALK_CONTINUE);
130 }
131 
132 void
136 {
137  l2fib_main_t *msm = &l2fib_main;
139  .bd_index = bd_index,
140  };
141 
143  (&msm->mac_table, l2fib_dump_walk_cb, &ctx);
144 
145  *l2fe_key = ctx.l2fe_key;
146  *l2fe_res = ctx.l2fe_res;
147 }
148 
149 void
151 {
152  *bd_sn = sn >> 8;
153  *if_sn = sn & 0xff;
154 }
155 
156 u8 *
157 format_l2_fib_seq_num (u8 * s, va_list * a)
158 {
159  l2fib_seq_num_t sn = va_arg (*a, int);
160  u8 bd_sn, if_sn;
161 
162  l2_fib_extract_seq_num (sn, &bd_sn, &if_sn);
163 
164  s = format (s, "%3d/%-3d", bd_sn, if_sn);
165 
166  return (s);
167 }
168 
170 {
181 
182 static int
183 l2fib_show_walk_cb (BVT (clib_bihash_kv) * kvp, void *arg)
184 {
185  l2fib_show_walk_ctx_t *ctx = arg;
186  l2_bridge_domain_t *bd_config;
187  l2fib_entry_result_t result;
189 
190  if (ctx->verbose && ctx->first_entry)
191  {
192  ctx->first_entry = 0;
193  vlib_cli_output (ctx->vm,
194  "%=19s%=7s%=7s%=8s%=9s%=7s%=7s%=5s%=30s",
195  "Mac-Address", "BD-Idx", "If-Idx",
196  "BSN-ISN", "Age(min)", "static", "filter",
197  "bvi", "Interface-Name");
198  }
199 
200  key.raw = kvp->key;
201  result.raw = kvp->value;
202  ctx->total_entries++;
203 
204  if (ctx->verbose &&
205  ((ctx->bd_index >> 31) || (ctx->bd_index == key.fields.bd_index)))
206  {
207  u8 *s = NULL;
208 
209  if (ctx->learn && l2fib_entry_result_is_set_AGE_NOT (&result))
210  return (BIHASH_WALK_CONTINUE); /* skip provisioned macs */
211 
212  if (ctx->add && !l2fib_entry_result_is_set_AGE_NOT (&result))
213  return (BIHASH_WALK_CONTINUE); /* skip learned macs */
214 
216  key.fields.bd_index);
217 
218  if (l2fib_entry_result_is_set_AGE_NOT (&result))
219  s = format (s, "no");
220  else if (bd_config->mac_age == 0)
221  s = format (s, "-");
222  else
223  {
224  i16 delta = ctx->now - result.fields.timestamp;
225  delta += delta < 0 ? 256 : 0;
226  s = format (s, "%d", delta);
227  }
228 
229  vlib_cli_output (ctx->vm,
230  "%=19U%=7d%=7d %U%=9v%=7s%=7s%=5s%=30U",
232  key.fields.bd_index,
233  result.fields.sw_if_index == ~0
234  ? -1 : result.fields.sw_if_index,
235  format_l2_fib_seq_num, result.fields.sn, s,
236  l2fib_entry_result_is_set_STATIC (&result) ? "*" : "-",
237  l2fib_entry_result_is_set_FILTER (&result) ? "*" : "-",
238  l2fib_entry_result_is_set_BVI (&result) ? "*" : "-",
240  ctx->vnm, result.fields.sw_if_index);
241  vec_free (s);
242  }
243 
244  return (BIHASH_WALK_CONTINUE);
245 }
246 
247 /** Display the contents of the l2fib. */
248 static clib_error_t *
250  unformat_input_t * input, vlib_cli_command_t * cmd)
251 {
252  bd_main_t *bdm = &bd_main;
253  l2fib_main_t *msm = &l2fib_main;
254  u8 raw = 0;
255  u32 bd_id;
257  .first_entry = 1,
258  .bd_index = ~0,
259  .now = (u8) (vlib_time_now (vm) / 60),
260  .vm = vm,
261  .vnm = msm->vnet_main,
262  };
263 
265  {
266  if (unformat (input, "raw"))
267  {
268  raw = 1;
269  ctx.verbose = 0;
270  break;
271  }
272  else if (unformat (input, "verbose"))
273  ctx.verbose = 1;
274  else if (unformat (input, "all"))
275  ctx.verbose = 1;
276  else if (unformat (input, "bd_index %d", &ctx.bd_index))
277  ctx.verbose = 1;
278  else if (unformat (input, "learn"))
279  {
280  ctx.add = 0;
281  ctx.learn = 1;
282  ctx.verbose = 1;
283  }
284  else if (unformat (input, "add"))
285  {
286  ctx.learn = 0;
287  ctx.add = 1;
288  ctx.verbose = 1;
289  }
290  else if (unformat (input, "bd_id %d", &bd_id))
291  {
292  uword *p = hash_get (bdm->bd_index_by_bd_id, bd_id);
293  if (p)
294  {
295  ctx.verbose = 1;
296  ctx.bd_index = p[0];
297  }
298  else
299  return clib_error_return (0,
300  "bridge domain id %d doesn't exist\n",
301  bd_id);
302  }
303  else
304  break;
305  }
306 
307  if (msm->mac_table_initialized == 0)
308  {
309  vlib_cli_output (vm, "no l2fib entries");
310  return 0;
311  }
312 
314  (&msm->mac_table, l2fib_show_walk_cb, &ctx);
315 
316  if (ctx.total_entries == 0)
317  vlib_cli_output (vm, "no l2fib entries");
318  else
319  {
321  vlib_cli_output (vm, "L2FIB total/learned entries: %d/%d "
322  "Last scan time: %.4esec Learn limit: %d ",
325  if (lm->client_pid)
326  vlib_cli_output (vm, "L2MAC events client PID: %d "
327  "Last e-scan time: %.4esec Delay: %.2esec "
328  "Max macs in event: %d",
329  lm->client_pid, msm->evt_scan_duration,
331  }
332 
333  if (raw)
334  vlib_cli_output (vm, "Raw Hash Table:\n%U\n",
335  BV (format_bihash), &msm->mac_table, 1 /* verbose */ );
336 
337  return 0;
338 }
339 
340 /*?
341  * This command displays the MAC Address entries of the L2 FIB table.
342  * Output can be filtered to just get the number of MAC Addresses or display
343  * each MAC Address for all bridge domains or just a single bridge domain.
344  *
345  * @cliexpar
346  * Example of how to display the number of MAC Address entries in the L2
347  * FIB table:
348  * @cliexstart{show l2fib}
349  * 3 l2fib entries
350  * @cliexend
351  * Example of how to display all the MAC Address entries in the L2
352  * FIB table:
353  * @cliexstart{show l2fib all}
354  * Mac Address BD Idx Interface Index static filter bvi refresh timestamp
355  * 52:54:00:53:18:33 1 GigabitEthernet0/8/0.200 3 0 0 0 0 0
356  * 52:54:00:53:18:55 1 GigabitEthernet0/8/0.200 3 1 0 0 0 0
357  * 52:54:00:53:18:77 1 N/A -1 1 1 0 0 0
358  * 3 l2fib entries
359  * @cliexend
360 ?*/
361 /* *INDENT-OFF* */
362 VLIB_CLI_COMMAND (show_l2fib_cli, static) = {
363  .path = "show l2fib",
364  .short_help = "show l2fib [all] | [bd_id <nn> | bd_index <nn>] [learn | add] | [raw]",
365  .function = show_l2fib,
366 };
367 /* *INDENT-ON* */
368 
369 void
371 {
372  l2fib_main_t *mp = &l2fib_main;
373 
374  if (mp->mac_table_initialized == 1)
375  return;
376 
377  BV (clib_bihash_init) (&mp->mac_table, "l2fib mac table",
379  mp->mac_table_initialized = 1;
380 }
381 
382 /* Remove all entries from the l2fib */
383 void
385 {
386  l2fib_main_t *mp = &l2fib_main;
387 
388  if (mp->mac_table_initialized == 0)
389  return;
390 
391  mp->mac_table_initialized = 0;
392 
393  /* Remove all entries */
394  BV (clib_bihash_free) (&mp->mac_table);
395  l2fib_table_init ();
397 }
398 
399 /** Clear all entries in L2FIB.
400  * @TODO: Later we may want a way to remove only the non-static entries
401  */
402 static clib_error_t *
404  unformat_input_t * input, vlib_cli_command_t * cmd)
405 {
407  return 0;
408 }
409 
410 /*?
411  * This command clears all the MAC Address entries from the L2 FIB table.
412  *
413  * @cliexpar
414  * Example of how to clear the L2 FIB Table:
415  * @cliexcmd{clear l2fib}
416  * Example to show the L2 FIB Table has been cleared:
417  * @cliexstart{show l2fib verbose}
418  * no l2fib entries
419  * @cliexend
420 ?*/
421 /* *INDENT-OFF* */
422 VLIB_CLI_COMMAND (clear_l2fib_cli, static) = {
423  .path = "clear l2fib",
424  .short_help = "clear l2fib",
425  .function = clear_l2fib,
426 };
427 /* *INDENT-ON* */
428 
429 static l2fib_seq_num_t
431 {
432  l2_bridge_domain_t *bd_config = l2input_bd_config (bd_index);
433 
434  return l2_fib_mk_seq_num (bd_config->seq_num,
435  l2_input_seq_num (sw_if_index));
436 }
437 
438 /**
439  * Add an entry to the l2fib.
440  * If the entry already exists then overwrite it
441  */
442 void
445 {
447  l2fib_entry_result_t result;
448  __attribute__ ((unused)) u32 bucket_contents;
451  BVT (clib_bihash_kv) kv;
452 
453  if (fm->mac_table_initialized == 0)
454  l2fib_table_init ();
455 
456  /* set up key */
457  key.raw = l2fib_make_key (mac, bd_index);
458  kv.key = key.raw;
459 
460  /* check if entry already exist */
461  if (BV (clib_bihash_search) (&fm->mac_table, &kv, &kv))
462  {
463  /* decrement counter if overwriting a learned mac */
464  result.raw = kv.value;
465  if ((!l2fib_entry_result_is_set_AGE_NOT (&result))
466  && (lm->global_learn_count))
467  lm->global_learn_count--;
468  }
469 
470  /* set up result */
471  result.raw = 0; /* clear all fields */
472  result.fields.sw_if_index = sw_if_index;
473  result.fields.flags = flags;
474 
475  /* no aging for provisioned entry */
476  l2fib_entry_result_set_AGE_NOT (&result);
477 
478  kv.value = result.raw;
479 
480  BV (clib_bihash_add_del) (&fm->mac_table, &kv, 1 /* is_add */ );
481 }
482 
483 /**
484  * Add an entry to the L2FIB.
485  * The CLI format is:
486  * l2fib add <mac> <bd> <intf> [static] [bvi]
487  * l2fib add <mac> <bd> filter
488  * Note that filter and bvi entries are always static
489  */
490 static clib_error_t *
492  unformat_input_t * input, vlib_cli_command_t * cmd)
493 {
494  bd_main_t *bdm = &bd_main;
495  vnet_main_t *vnm = vnet_get_main ();
496  clib_error_t *error = 0;
497  u8 mac[6];
498  u32 bd_id;
499  u32 bd_index;
500  u32 sw_if_index = ~0;
501  uword *p;
503 
505 
506  if (!unformat (input, "%U", unformat_ethernet_address, mac))
507  {
508  error = clib_error_return (0, "expected mac address `%U'",
509  format_unformat_error, input);
510  goto done;
511  }
512 
513  if (!unformat (input, "%d", &bd_id))
514  {
515  error = clib_error_return (0, "expected bridge domain ID `%U'",
516  format_unformat_error, input);
517  goto done;
518  }
519 
520  p = hash_get (bdm->bd_index_by_bd_id, bd_id);
521  if (!p)
522  {
523  error = clib_error_return (0, "bridge domain ID %d invalid", bd_id);
524  goto done;
525  }
526  bd_index = p[0];
527 
528  if (unformat (input, "filter"))
529  {
530  l2fib_add_filter_entry (mac, bd_index);
531  return 0;
532  }
533 
534  if (!unformat_user (input, unformat_vnet_sw_interface, vnm, &sw_if_index))
535  {
536  error = clib_error_return (0, "unknown interface `%U'",
537  format_unformat_error, input);
538  goto done;
539  }
540 
541  if (unformat (input, "static"))
542  flags |= L2FIB_ENTRY_RESULT_FLAG_STATIC;
543  else if (unformat (input, "bvi"))
544  flags |= (L2FIB_ENTRY_RESULT_FLAG_STATIC | L2FIB_ENTRY_RESULT_FLAG_BVI);
545 
547  {
548  error = clib_error_return (0, "Interface sw_if_index %d not in L2 mode",
549  sw_if_index);
550  goto done;
551  }
552 
553  l2fib_add_entry (mac, bd_index, sw_if_index, flags);
554 
555 done:
556  return error;
557 }
558 
559 /*?
560  * This command adds a MAC Address entry to the L2 FIB table
561  * of an existing bridge-domain. The MAC Address can be static
562  * or dynamic. This command also allows a filter to be added,
563  * such that packets with given MAC Addresses (source mac or
564  * destination mac match) are dropped.
565  *
566  * @cliexpar
567  * Example of how to add a dynamic MAC Address entry to the L2 FIB table
568  * of a bridge-domain (where 200 is the bridge-domain-id):
569  * @cliexcmd{l2fib add 52:54:00:53:18:33 200 GigabitEthernet0/8/0.200}
570  * Example of how to add a static MAC Address entry to the L2 FIB table
571  * of a bridge-domain (where 200 is the bridge-domain-id):
572  * @cliexcmd{l2fib add 52:54:00:53:18:55 200 GigabitEthernet0/8/0.200 static}
573  * Example of how to add a filter such that a packet with the given MAC
574  * Address will be dropped in a given bridge-domain (where 200 is the
575  * bridge-domain-id):
576  * @cliexcmd{l2fib add 52:54:00:53:18:77 200 filter}
577  * Example of show command of the provisioned MAC Addresses and filters:
578  * @cliexstart{show l2fib verbose}
579  * Mac Address BD Idx Interface Index static filter bvi refresh timestamp
580  * 52:54:00:53:18:33 1 GigabitEthernet0/8/0.200 3 0 0 0 0 0
581  * 52:54:00:53:18:55 1 GigabitEthernet0/8/0.200 3 1 0 0 0 0
582  * 52:54:00:53:18:77 1 N/A -1 1 1 0 0 0
583  * 3 l2fib entries
584  * @cliexend
585 ?*/
586 /* *INDENT-OFF* */
587 VLIB_CLI_COMMAND (l2fib_add_cli, static) = {
588  .path = "l2fib add",
589  .short_help = "l2fib add <mac> <bridge-domain-id> filter | <intf> [static | bvi]",
590  .function = l2fib_add,
591 };
592 /* *INDENT-ON* */
593 
594 
595 static clib_error_t *
597  unformat_input_t * input, vlib_cli_command_t * cmd)
598 {
599  u8 mac[6], save_mac[6];
600  u32 bd_index = 0;
601  u32 sw_if_index = 8;
602  u32 is_add = 0;
603  u32 is_del = 0;
604  u32 is_check = 0;
605  u32 count = 1;
606  int mac_set = 0;
607  int i;
608 
610  {
611  if (unformat (input, "mac %U", unformat_ethernet_address, mac))
612  mac_set = 1;
613  else if (unformat (input, "add"))
614  is_add = 1;
615  else if (unformat (input, "del"))
616  is_del = 1;
617  else if (unformat (input, "check"))
618  is_check = 1;
619  else if (unformat (input, "count %d", &count))
620  ;
621  else
622  break;
623  }
624 
625  if (mac_set == 0)
626  return clib_error_return (0, "mac not set");
627 
628  if (is_add == 0 && is_del == 0 && is_check == 0)
629  return clib_error_return (0,
630  "noop: pick at least one of (add,del,check)");
631 
632  clib_memcpy_fast (save_mac, mac, 6);
633 
634  if (is_add)
635  {
636  for (i = 0; i < count; i++)
637  {
638  l2fib_add_entry (mac, bd_index, sw_if_index,
640  incr_mac_address (mac);
641  }
642  }
643 
644  if (is_check)
645  {
646  BVT (clib_bihash_kv) kv;
647  l2fib_main_t *mp = &l2fib_main;
648 
649  if (mp->mac_table_initialized == 0)
650  return clib_error_return (0, "mac table is not initialized");
651 
652  clib_memcpy_fast (mac, save_mac, 6);
653 
654  for (i = 0; i < count; i++)
655  {
656  kv.key = l2fib_make_key (mac, bd_index);
657  if (BV (clib_bihash_search) (&mp->mac_table, &kv, &kv))
658  {
659  clib_warning ("key %U AWOL", format_ethernet_address, mac);
660  break;
661  }
662  incr_mac_address (mac);
663  }
664  }
665 
666  if (is_del)
667  {
668  clib_memcpy_fast (mac, save_mac, 6);
669 
670  for (i = 0; i < count; i++)
671  {
672  l2fib_del_entry (mac, bd_index, 0);
673  incr_mac_address (mac);
674  }
675  }
676 
677  return 0;
678 }
679 
680 /*?
681  * The set of '<em>test l2fib</em>' commands allow the L2 FIB table of the default
682  * bridge domain (bridge-domain-id of 0) to be modified.
683  *
684  * @cliexpar
685  * @parblock
686  * Example of how to add a set of 4 sequential MAC Address entries to L2
687  * FIB table of the default bridge-domain:
688  * @cliexcmd{test l2fib add mac 52:54:00:53:00:00 count 4}
689  *
690  * Show the set of 4 sequential MAC Address entries that were added:
691  * @cliexstart{show l2fib verbose}
692  * Mac Address BD Idx Interface Index static filter bvi refresh timestamp
693  * 52:54:00:53:00:00 0 GigabitEthernet0/8/0.300 8 0 0 0 0 0
694  * 52:54:00:53:00:01 0 GigabitEthernet0/8/0.300 8 0 0 0 0 0
695  * 52:54:00:53:00:03 0 GigabitEthernet0/8/0.300 8 0 0 0 0 0
696  * 52:54:00:53:00:02 0 GigabitEthernet0/8/0.300 8 0 0 0 0 0
697  * 4 l2fib entries
698  * @cliexend
699  *
700  * Example of how to check that the set of 4 sequential MAC Address
701  * entries were added to L2 FIB table of the default
702  * bridge-domain. Used a count of 5 to produce an error:
703  *
704  * @cliexcmd{test l2fib check mac 52:54:00:53:00:00 count 5}
705  * The output of the check command is in the log files. Log file
706  * location may vary based on your OS and Version:
707  *
708  * <b><em># tail -f /var/log/messages | grep l2fib_test_command_fn</em></b>
709  *
710  * Sep 7 17:15:24 localhost vnet[4952]: l2fib_test_command_fn:446: key 52:54:00:53:00:04 AWOL
711  *
712  * Example of how to delete a set of 4 sequential MAC Address entries
713  * from L2 FIB table of the default bridge-domain:
714  * @cliexcmd{test l2fib del mac 52:54:00:53:00:00 count 4}
715  * @endparblock
716 ?*/
717 /* *INDENT-OFF* */
718 VLIB_CLI_COMMAND (l2fib_test_command, static) = {
719  .path = "test l2fib",
720  .short_help = "test l2fib [add|del|check] mac <base-addr> count <nn>",
721  .function = l2fib_test_command_fn,
722 };
723 /* *INDENT-ON* */
724 
725 
726 /**
727  * Delete an entry from the l2fib.
728  * Return 0 if the entry was deleted, or 1 it was not found or if
729  * sw_if_index is non-zero and does not match that in the entry.
730  */
731 u32
733 {
734  l2fib_entry_result_t result;
735  l2fib_main_t *mp = &l2fib_main;
736  BVT (clib_bihash_kv) kv;
737 
738  if (mp->mac_table_initialized == 0)
739  return 1;
740 
741  /* set up key */
742  kv.key = l2fib_make_key (mac, bd_index);
743 
744  if (BV (clib_bihash_search) (&mp->mac_table, &kv, &kv))
745  return 1;
746 
747  result.raw = kv.value;
748 
749  /* check if sw_if_index of entry match */
750  if ((sw_if_index != 0) && (sw_if_index != result.fields.sw_if_index))
751  return 1;
752 
753  /* decrement counter if dynamically learned mac */
754  if ((!l2fib_entry_result_is_set_AGE_NOT (&result)) &&
757 
758  /* Remove entry from hash table */
759  BV (clib_bihash_add_del) (&mp->mac_table, &kv, 0 /* is_add */ );
760  return 0;
761 }
762 
763 /**
764  * Delete an entry from the L2FIB.
765  * The CLI format is:
766  * l2fib del <mac> <bd-id>
767  */
768 static clib_error_t *
770  unformat_input_t * input, vlib_cli_command_t * cmd)
771 {
772  bd_main_t *bdm = &bd_main;
773  clib_error_t *error = 0;
774  u8 mac[6];
775  u32 bd_id;
776  u32 bd_index;
777  uword *p;
778 
779  if (!unformat (input, "%U", unformat_ethernet_address, mac))
780  {
781  error = clib_error_return (0, "expected mac address `%U'",
782  format_unformat_error, input);
783  goto done;
784  }
785 
786  if (!unformat (input, "%d", &bd_id))
787  {
788  error = clib_error_return (0, "expected bridge domain ID `%U'",
789  format_unformat_error, input);
790  goto done;
791  }
792 
793  p = hash_get (bdm->bd_index_by_bd_id, bd_id);
794  if (!p)
795  {
796  error = clib_error_return (0, "bridge domain ID %d invalid", bd_id);
797  goto done;
798  }
799  bd_index = p[0];
800 
801  /* Delete the entry */
802  if (l2fib_del_entry (mac, bd_index, 0))
803  {
804  error = clib_error_return (0, "mac entry not found");
805  goto done;
806  }
807 
808 done:
809  return error;
810 }
811 
812 /*?
813  * This command deletes an existing MAC Address entry from the L2 FIB
814  * table of an existing bridge-domain.
815  *
816  * @cliexpar
817  * 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):
818  * @cliexcmd{l2fib del 52:54:00:53:18:33 200}
819 ?*/
820 /* *INDENT-OFF* */
821 VLIB_CLI_COMMAND (l2fib_del_cli, static) = {
822  .path = "l2fib del",
823  .short_help = "l2fib del <mac> <bridge-domain-id> []",
824  .function = l2fib_del,
825 };
826 /* *INDENT-ON* */
827 
828 /**
829  Kick off ager to scan MACs to age/delete MAC entries
830 */
831 void
833 {
835 
836  /* check if there is at least one bd with mac aging enabled */
837  l2_bridge_domain_t *bd_config;
838  vec_foreach (bd_config, l2input_main.bd_configs)
839  {
840  if (bd_config->bd_id != ~0 && bd_config->mac_age != 0)
841  {
843  break;
844  }
845  }
846 
847  vlib_process_signal_event (vm, l2fib_mac_age_scanner_process_node.index,
848  evt, 0);
849 }
850 
851 /**
852  Flush all non static MACs from an interface
853 */
854 void
856 {
857  l2_input_seq_num_inc (sw_if_index);
859 }
860 
861 /**
862  Flush all non static MACs in a bridge domain
863 */
864 void
866 {
867  l2_bridge_domain_t *bd_config = l2input_bd_config (bd_index);
868  bd_config->seq_num += 1;
870 }
871 
872 /**
873  Flush all non static MACs - flushes all valid BDs
874 */
875 void
877 {
878  l2_bridge_domain_t *bd_config;
879  vec_foreach (bd_config, l2input_main.bd_configs)
880  if (bd_is_valid (bd_config))
881  bd_config->seq_num += 1;
882 
884 }
885 
886 
887 /**
888  Flush MACs, except static ones, associated with an interface
889  The CLI format is:
890  l2fib flush-mac interface <if-name>
891 */
892 static clib_error_t *
894  unformat_input_t * input, vlib_cli_command_t * cmd)
895 {
896  vnet_main_t *vnm = vnet_get_main ();
897  clib_error_t *error = 0;
899 
900  if (!unformat_user (input, unformat_vnet_sw_interface, vnm, &sw_if_index))
901  {
902  error = clib_error_return (0, "unknown interface `%U'",
903  format_unformat_error, input);
904  goto done;
905  }
906 
907  l2fib_flush_int_mac (vm, sw_if_index);
908 
909 done:
910  return error;
911 }
912 
913 /**
914  Flush all MACs, except static ones
915  The CLI format is:
916  l2fib flush-mac all
917 */
918 static clib_error_t *
920  unformat_input_t * input, vlib_cli_command_t * cmd)
921 {
922  l2fib_flush_all_mac (vm);
923  return 0;
924 }
925 
926 /*?
927  * This command kick off ager to delete all existing MAC Address entries,
928  * except static ones, associated with an interface from the L2 FIB table.
929  *
930  * @cliexpar
931  * Example of how to flush MAC Address entries learned on an interface from the L2 FIB table:
932  * @cliexcmd{l2fib flush-mac interface GigabitEthernet2/1/0}
933 ?*/
934 /* *INDENT-OFF* */
935 VLIB_CLI_COMMAND (l2fib_flush_mac_all_cli, static) = {
936  .path = "l2fib flush-mac all",
937  .short_help = "l2fib flush-mac all",
938  .function = l2fib_flush_mac_all,
939 };
940 /* *INDENT-ON* */
941 
942 /*?
943  * This command kick off ager to delete all existing MAC Address entries,
944  * except static ones, associated with an interface from the L2 FIB table.
945  *
946  * @cliexpar
947  * Example of how to flush MAC Address entries learned on an interface from the L2 FIB table:
948  * @cliexcmd{l2fib flush-mac interface GigabitEthernet2/1/0}
949 ?*/
950 /* *INDENT-OFF* */
951 VLIB_CLI_COMMAND (l2fib_flush_mac_int_cli, static) = {
952  .path = "l2fib flush-mac interface",
953  .short_help = "l2fib flush-mac interface <if-name>",
954  .function = l2fib_flush_mac_int,
955 };
956 /* *INDENT-ON* */
957 
958 /**
959  Flush bridge-domain MACs except static ones.
960  The CLI format is:
961  l2fib flush-mac bridge-domain <bd-id>
962 */
963 static clib_error_t *
965  unformat_input_t * input, vlib_cli_command_t * cmd)
966 {
967  bd_main_t *bdm = &bd_main;
968  clib_error_t *error = 0;
969  u32 bd_index, bd_id;
970  uword *p;
971 
972  if (!unformat (input, "%d", &bd_id))
973  {
974  error = clib_error_return (0, "expecting bridge-domain id but got `%U'",
975  format_unformat_error, input);
976  goto done;
977  }
978 
979  p = hash_get (bdm->bd_index_by_bd_id, bd_id);
980  if (p)
981  bd_index = *p;
982  else
983  return clib_error_return (0, "No such bridge domain %d", bd_id);
984 
985  l2fib_flush_bd_mac (vm, bd_index);
986 
987 done:
988  return error;
989 }
990 
991 /*?
992  * This command kick off ager to delete all existing MAC Address entries,
993  * except static ones, in a bridge domain from the L2 FIB table.
994  *
995  * @cliexpar
996  * Example of how to flush MAC Address entries learned in a bridge domain from the L2 FIB table:
997  * @cliexcmd{l2fib flush-mac bridge-domain 1000}
998 ?*/
999 /* *INDENT-OFF* */
1000 VLIB_CLI_COMMAND (l2fib_flush_mac_bd_cli, static) = {
1001  .path = "l2fib flush-mac bridge-domain",
1002  .short_help = "l2fib flush-mac bridge-domain <bd-id>",
1003  .function = l2fib_flush_mac_bd,
1004 };
1005 /* *INDENT-ON* */
1006 
1007 clib_error_t *
1009 {
1010  l2_input_config_t *config = l2input_intf_config (sw_if_index);
1011  if ((flags & VNET_SW_INTERFACE_FLAG_ADMIN_UP) == 0 &&
1012  l2_input_is_bridge (config))
1013  l2fib_flush_int_mac (vnm->vlib_main, sw_if_index);
1014  return 0;
1015 }
1016 
1018 
1019 BVT (clib_bihash) * get_mac_table (void)
1020 {
1021  l2fib_main_t *mp = &l2fib_main;
1022  return &mp->mac_table;
1023 }
1024 
1025 static_always_inline void *
1026 allocate_mac_evt_buf (u32 client, u32 client_index)
1027 {
1030  (sizeof (*mp) + (fm->max_macs_in_event * sizeof (vl_api_mac_entry_t)));
1031  mp->_vl_msg_id = htons (VL_API_L2_MACS_EVENT);
1032  mp->pid = htonl (client);
1033  mp->client_index = client_index;
1034  return mp;
1035 }
1036 
1038 l2fib_scan (vlib_main_t * vm, f64 start_time, u8 event_only)
1039 {
1042 
1043  BVT (clib_bihash) * h = &fm->mac_table;
1044  int i, j, k;
1045  f64 last_start = start_time;
1046  f64 accum_t = 0;
1047  f64 delta_t = 0;
1048  u32 evt_idx = 0;
1049  u32 learn_count = 0;
1050  u32 client = lm->client_pid;
1051  u32 cl_idx = lm->client_index;
1052  vl_api_l2_macs_event_t *mp = 0;
1053  vl_api_registration_t *reg = 0;
1054 
1055  /* Don't scan the l2 fib if it hasn't been instantiated yet */
1056  if (alloc_arena (h) == 0)
1057  return 0.0;
1058 
1059  if (client)
1060  {
1061  mp = allocate_mac_evt_buf (client, cl_idx);
1063  }
1064 
1065  for (i = 0; i < h->nbuckets; i++)
1066  {
1067  /* allow no more than 20us without a pause */
1068  delta_t = vlib_time_now (vm) - last_start;
1069  if (delta_t > 20e-6)
1070  {
1071  vlib_process_suspend (vm, 100e-6); /* suspend for 100 us */
1072  last_start = vlib_time_now (vm);
1073  accum_t += delta_t;
1074  }
1075 
1076  if (i < (h->nbuckets - 3))
1077  {
1078  BVT (clib_bihash_bucket) * b =
1079  BV (clib_bihash_get_bucket) (h, i + 3);
1081  b = BV (clib_bihash_get_bucket) (h, i + 1);
1082  if (!BV (clib_bihash_bucket_is_empty) (b))
1083  {
1084  BVT (clib_bihash_value) * v =
1085  BV (clib_bihash_get_value) (h, b->offset);
1087  }
1088  }
1089 
1090  BVT (clib_bihash_bucket) * b = BV (clib_bihash_get_bucket) (h, i);
1091  if (BV (clib_bihash_bucket_is_empty) (b))
1092  continue;
1093  BVT (clib_bihash_value) * v = BV (clib_bihash_get_value) (h, b->offset);
1094  for (j = 0; j < (1 << b->log2_pages); j++)
1095  {
1096  for (k = 0; k < BIHASH_KVP_PER_PAGE; k++)
1097  {
1098  if (v->kvp[k].key == ~0ULL && v->kvp[k].value == ~0ULL)
1099  continue;
1100 
1101  l2fib_entry_key_t key = {.raw = v->kvp[k].key };
1102  l2fib_entry_result_t result = {.raw = v->kvp[k].value };
1103 
1104  if (!l2fib_entry_result_is_set_AGE_NOT (&result))
1105  learn_count++;
1106 
1107  if (client)
1108  {
1109  if (PREDICT_FALSE (evt_idx >= fm->max_macs_in_event))
1110  {
1111  /* event message full, send it and start a new one */
1112  if (reg && vl_api_can_send_msg (reg))
1113  {
1114  mp->n_macs = htonl (evt_idx);
1115  vl_api_send_msg (reg, (u8 *) mp);
1116  mp = allocate_mac_evt_buf (client, cl_idx);
1117  }
1118  else
1119  {
1120  if (reg)
1121  clib_warning ("MAC event to pid %d queue stuffed!"
1122  " %d MAC entries lost", client,
1123  evt_idx);
1124  }
1125  evt_idx = 0;
1126  }
1127 
1128  if (l2fib_entry_result_is_set_LRN_EVT (&result))
1129  {
1130  /* copy mac entry to event msg */
1131  clib_memcpy_fast (mp->mac[evt_idx].mac_addr,
1132  key.fields.mac, 6);
1133  mp->mac[evt_idx].action =
1134  l2fib_entry_result_is_set_LRN_MOV (&result) ?
1135  (vl_api_mac_event_action_t) MAC_EVENT_ACTION_MOVE
1136  : (vl_api_mac_event_action_t) MAC_EVENT_ACTION_ADD;
1137  mp->mac[evt_idx].action =
1138  htonl (mp->mac[evt_idx].action);
1139  mp->mac[evt_idx].sw_if_index =
1140  htonl (result.fields.sw_if_index);
1141  /* clear event bits and update mac entry */
1142  l2fib_entry_result_clear_LRN_EVT (&result);
1143  l2fib_entry_result_clear_LRN_MOV (&result);
1144  BVT (clib_bihash_kv) kv;
1145  kv.key = key.raw;
1146  kv.value = result.raw;
1147  BV (clib_bihash_add_del) (&fm->mac_table, &kv, 1);
1148  evt_idx++;
1149  continue; /* skip aging */
1150  }
1151  }
1152 
1153  if (event_only || l2fib_entry_result_is_set_AGE_NOT (&result))
1154  continue; /* skip aging - static_mac always age_not */
1155 
1156  /* start aging processing */
1157  u32 bd_index = key.fields.bd_index;
1158  u32 sw_if_index = result.fields.sw_if_index;
1159  u16 sn = l2fib_cur_seq_num (bd_index, sw_if_index);
1160  if (result.fields.sn != sn)
1161  goto age_out; /* stale mac */
1162 
1163  l2_bridge_domain_t *bd_config =
1165 
1166  if (bd_config->mac_age == 0)
1167  continue; /* skip aging */
1168 
1169  i16 delta = (u8) (start_time / 60) - result.fields.timestamp;
1170  delta += delta < 0 ? 256 : 0;
1171 
1172  if (delta < bd_config->mac_age)
1173  continue; /* still valid */
1174 
1175  age_out:
1176  if (client)
1177  {
1178  /* copy mac entry to event msg */
1179  clib_memcpy_fast (mp->mac[evt_idx].mac_addr, key.fields.mac,
1180  6);
1181  mp->mac[evt_idx].action =
1182  (vl_api_mac_event_action_t) MAC_EVENT_ACTION_DELETE;
1183  mp->mac[evt_idx].action = htonl (mp->mac[evt_idx].action);
1184  mp->mac[evt_idx].sw_if_index =
1185  htonl (result.fields.sw_if_index);
1186  evt_idx++;
1187  }
1188  /* delete mac entry */
1189  BVT (clib_bihash_kv) kv;
1190  kv.key = key.raw;
1191  BV (clib_bihash_add_del) (&fm->mac_table, &kv, 0);
1192  learn_count--;
1193  /*
1194  * Note: we may have just freed the bucket's backing
1195  * storage, so check right here...
1196  */
1197  if (BV (clib_bihash_bucket_is_empty) (b))
1198  goto doublebreak;
1199  }
1200  v++;
1201  }
1202  doublebreak:
1203  ;
1204  }
1205 
1206  /* keep learn count consistent */
1207  l2learn_main.global_learn_count = learn_count;
1208 
1209  if (mp)
1210  {
1211  /* send any outstanding mac event message else free message buffer */
1212  if (evt_idx)
1213  {
1214  if (reg && vl_api_can_send_msg (reg))
1215  {
1216  mp->n_macs = htonl (evt_idx);
1217  vl_api_send_msg (reg, (u8 *) mp);
1218  }
1219  else
1220  {
1221  if (reg)
1222  clib_warning ("MAC event to pid %d queue stuffed!"
1223  " %d MAC entries lost", client, evt_idx);
1224  vl_msg_api_free (mp);
1225  }
1226  }
1227  else
1228  vl_msg_api_free (mp);
1229  }
1230  return delta_t + accum_t;
1231 }
1232 
1233 static uword
1235  vlib_frame_t * f)
1236 {
1237  uword event_type, *event_data = 0;
1240  bool enabled = 0;
1241  f64 start_time, next_age_scan_time = CLIB_TIME_MAX;
1242 
1243  while (1)
1244  {
1245  if (lm->client_pid)
1247  else if (enabled)
1248  {
1249  f64 t = next_age_scan_time - vlib_time_now (vm);
1251  }
1252  else
1254 
1255  event_type = vlib_process_get_events (vm, &event_data);
1256  vec_reset_length (event_data);
1257 
1258  start_time = vlib_time_now (vm);
1259  enum
1260  { SCAN_MAC_AGE, SCAN_MAC_EVENT, SCAN_DISABLE } scan = SCAN_MAC_AGE;
1261 
1262  switch (event_type)
1263  {
1264  case ~0: /* timer expired */
1265  if (lm->client_pid != 0 && start_time < next_age_scan_time)
1266  scan = SCAN_MAC_EVENT;
1267  break;
1268 
1270  enabled = 1;
1271  break;
1272 
1274  enabled = 0;
1275  scan = SCAN_DISABLE;
1276  break;
1277 
1279  break;
1280 
1281  default:
1282  ASSERT (0);
1283  }
1284 
1285  if (scan == SCAN_MAC_EVENT)
1286  l2fib_main.evt_scan_duration = l2fib_scan (vm, start_time, 1);
1287  else
1288  {
1289  if (scan == SCAN_MAC_AGE)
1290  l2fib_main.age_scan_duration = l2fib_scan (vm, start_time, 0);
1291  if (scan == SCAN_DISABLE)
1292  {
1293  l2fib_main.age_scan_duration = 0;
1294  l2fib_main.evt_scan_duration = 0;
1295  }
1296  /* schedule next scan */
1297  if (enabled)
1298  next_age_scan_time = start_time + L2FIB_AGE_SCAN_INTERVAL;
1299  else
1300  next_age_scan_time = CLIB_TIME_MAX;
1301  }
1302  }
1303  return 0;
1304 }
1305 
1306 /* *INDENT-OFF* */
1307 VLIB_REGISTER_NODE (l2fib_mac_age_scanner_process_node) = {
1308  .function = l2fib_mac_age_scanner_process,
1309  .type = VLIB_NODE_TYPE_PROCESS,
1310  .name = "l2fib-mac-age-scanner-process",
1311 };
1312 /* *INDENT-ON* */
1313 
1314 clib_error_t *
1316 {
1317  l2fib_main_t *mp = &l2fib_main;
1318  l2fib_entry_key_t test_key;
1319  u8 test_mac[6];
1320 
1321  mp->vlib_main = vm;
1322  mp->vnet_main = vnet_get_main ();
1323  if (mp->mac_table_n_buckets == 0)
1325  if (mp->mac_table_memory_size == 0)
1327  mp->mac_table_initialized = 0;
1328 
1329  /* verify the key constructor is good, since it is endian-sensitive */
1330  clib_memset (test_mac, 0, sizeof (test_mac));
1331  test_mac[0] = 0x11;
1332  test_key.raw = 0;
1333  test_key.raw = l2fib_make_key ((u8 *) & test_mac, 0x1234);
1334  ASSERT (test_key.fields.mac[0] == 0x11);
1335  ASSERT (test_key.fields.bd_index == 0x1234);
1336 
1337  return 0;
1338 }
1339 
1341 
1342 static clib_error_t *
1344 {
1345  l2fib_main_t *lm = &l2fib_main;
1346  uword table_size = ~0;
1347  u32 n_buckets = ~0;
1348 
1349  while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
1350  {
1351  if (unformat (input, "table-size %U", unformat_memory_size,
1352  &table_size))
1353  ;
1354  else if (unformat (input, "num-buckets %u", &n_buckets))
1355  ;
1356  else
1357  return clib_error_return (0, "unknown input `%U'",
1358  format_unformat_error, input);
1359  }
1360 
1361  if (n_buckets != ~0)
1362  {
1363  if (!is_pow2 (n_buckets))
1364  return clib_error_return (0, "num-buckets must be power of 2");
1365  lm->mac_table_n_buckets = n_buckets;
1366  }
1367 
1368  if (table_size != ~0)
1369  lm->mac_table_memory_size = table_size;
1370  return 0;
1371 }
1372 
1374 
1375 /*
1376  * fd.io coding-style-patch-verification: ON
1377  *
1378  * Local Variables:
1379  * eval: (c-set-style "gnu")
1380  * End:
1381  */
static_always_inline void * allocate_mac_evt_buf(u32 client, u32 client_index)
Definition: l2_fib.c:1026
u16 l2fib_seq_num_t
A combined representation of the sequence number associated with the interface and the BD...
Definition: l2_fib.h:107
f64 evt_scan_duration
Definition: l2_fib.h:58
static clib_error_t * l2fib_test_command_fn(vlib_main_t *vm, unformat_input_t *input, vlib_cli_command_t *cmd)
Definition: l2_fib.c:596
struct l2fib_entry_result_t_::@471::@473 fields
u32 global_learn_count
Definition: l2_learn.h:33
l2_input_config_t * configs
Definition: l2_input.h:90
u8 * format_vnet_sw_if_index_name_with_NA(u8 *s, va_list *args)
Format sw_if_index.
Definition: l2_fib.c:90
vlib_main_t * vlib_main
Definition: l2_fib.h:68
vnet_main_t * vnm
Definition: l2_fib.c:174
static f64 vlib_process_wait_for_event_or_clock(vlib_main_t *vm, f64 dt)
Suspend a cooperative multi-tasking thread Waits for an event, or for the indicated number of seconds...
Definition: node_funcs.h:751
vl_api_mac_address_t mac
Definition: l2.api:502
#define BIHASH_KVP_PER_PAGE
Definition: bihash_16_8.h:25
vl_api_wireguard_peer_flags_t flags
Definition: wireguard.api:105
a
Definition: bitmap.h:544
static uword * vlib_process_wait_for_event(vlib_main_t *vm)
Definition: node_funcs.h:656
vnet_main_t * vnet_get_main(void)
Definition: misc.c:46
vnet_main_t * vnet_main
Definition: l2_fib.h:69
void clib_bihash_free(clib_bihash *h)
Destroy a bounded index extensible hash table.
unsigned long u64
Definition: types.h:89
u64 raw
Definition: l2_fib.h:172
l2_input_config_t * l2input_intf_config(u32 sw_if_index)
Get a pointer to the config for the given interface.
Definition: l2_input.c:167
#define clib_memcpy_fast(a, b, c)
Definition: string.h:81
clib_memset(h->entries, 0, sizeof(h->entries[0]) *entries)
static f64 vlib_time_now(vlib_main_t *vm)
Definition: main.h:334
static void vl_api_send_msg(vl_api_registration_t *rp, u8 *elem)
Definition: api.h:35
clib_error_t * l2fib_init(vlib_main_t *vm)
Definition: l2_fib.c:1315
#define vec_add1(V, E)
Add 1 element to end of vector (unspecified alignment).
Definition: vec.h:592
uword unformat_user(unformat_input_t *input, unformat_function_t *func,...)
Definition: unformat.c:989
static int l2fib_show_walk_cb(BVT(clib_bihash_kv) *kvp, void *arg)
Definition: l2_fib.c:183
#define L2FIB_MEMORY_SIZE
Definition: l2_fib.h:28
vlib_main_t * vm
Definition: in2out_ed.c:1580
unformat_function_t unformat_vnet_sw_interface
u32 max_macs_in_event
Definition: l2_fib.h:65
enum l2fib_entry_result_flags_t_ l2fib_entry_result_flags_t
vlib_main_t * vm
Definition: l2_fib.c:173
void * vl_msg_api_alloc(int nbytes)
static clib_error_t * l2fib_del(vlib_main_t *vm, unformat_input_t *input, vlib_cli_command_t *cmd)
Delete an entry from the L2FIB.
Definition: l2_fib.c:769
unsigned char u8
Definition: types.h:56
u8 * format_l2fib_entry_result_flags(u8 *s, va_list *args)
Definition: l2_fib.c:57
u32 client_index
Definition: l2_learn.h:40
#define vec_reset_length(v)
Reset vector length to zero NULL-pointer tolerant.
double f64
Definition: types.h:142
#define fm
static clib_error_t * lfib_config(vlib_main_t *vm, unformat_input_t *input)
Definition: l2_fib.c:1343
void l2_input_seq_num_inc(u32 sw_if_index)
Definition: l2_input.c:238
Definition: l2_fib.h:160
static uword vlib_process_suspend(vlib_main_t *vm, f64 dt)
Suspend a vlib cooperative multi-tasking thread for a period of time.
Definition: node_funcs.h:482
static int vl_api_can_send_msg(vl_api_registration_t *rp)
Definition: api.h:48
#define L2FIB_AGE_SCAN_INTERVAL
Definition: l2_fib.h:31
l2learn_main_t l2learn_main
Definition: l2_learn.c:32
#define static_always_inline
Definition: clib.h:109
u8 * format_ethernet_address(u8 *s, va_list *args)
Definition: format.c:44
int clib_bihash_add_del(clib_bihash *h, clib_bihash_kv *add_v, int is_add)
Add or delete a (key,value) pair from a bi-hash table.
#define VLIB_INIT_FUNCTION(x)
Definition: init.h:173
static uword vlib_process_get_events(vlib_main_t *vm, uword **data_vector)
Return the first event type which has occurred and a vector of per-event data of that type...
Definition: node_funcs.h:579
description fragment has unexpected format
Definition: map.api:433
#define vec_elt_at_index(v, i)
Get vector value at index i checking that i is in bounds.
#define clib_error_return(e, args...)
Definition: error.h:99
void l2fib_add_entry(const u8 *mac, u32 bd_index, u32 sw_if_index, l2fib_entry_result_flags_t flags)
Add an entry to the l2fib.
Definition: l2_fib.c:443
const cJSON *const b
Definition: cJSON.h:255
uword mac_table_memory_size
Definition: l2_fib.h:52
unsigned int u32
Definition: types.h:88
L2 MAC event for a list of learned or aged MACs.
Definition: l2.api:191
l2input_main_t l2input_main
Definition: l2_input_node.c:78
uword * bd_index_by_bd_id
Definition: l2_bd.h:36
static int l2fib_dump_walk_cb(BVT(clib_bihash_kv) *kvp, void *arg)
Definition: l2_fib.c:114
void l2fib_start_ager_scan(vlib_main_t *vm)
Kick off ager to scan MACs to age/delete MAC entries.
Definition: l2_fib.c:832
Definition: cJSON.c:84
#define hash_get(h, key)
Definition: hash.h:249
f64 event_scan_delay
Definition: l2_fib.h:62
format_function_t format_vnet_sw_interface_name
struct l2fib_dump_walk_ctx_t_ l2fib_dump_walk_ctx_t
vlib_main_t * vlib_main
Definition: vnet.h:92
void clib_bihash_foreach_key_value_pair(clib_bihash *h, clib_bihash_foreach_key_value_pair_cb *callback, void *arg)
Visit active (key,value) pairs in a bi-hash table.
static void vlib_process_signal_event(vlib_main_t *vm, uword node_index, uword type_opaque, uword data)
Definition: node_funcs.h:1015
long ctx[MAX_CONNS]
Definition: main.c:144
u32 bd_id
Definition: gbp.api:188
struct _unformat_input_t unformat_input_t
unsigned short u16
Definition: types.h:57
vec_header_t h
Definition: buffer.c:322
u8 mac_table_initialized
Definition: l2_fib.h:55
void l2fib_flush_bd_mac(vlib_main_t *vm, u32 bd_index)
Flush all non static MACs in a bridge domain.
Definition: l2_fib.c:865
#define PREDICT_FALSE(x)
Definition: clib.h:121
#define VLIB_CONFIG_FUNCTION(x, n,...)
Definition: init.h:182
void l2fib_flush_all_mac(vlib_main_t *vm)
Flush all non static MACs - flushes all valid BDs.
Definition: l2_fib.c:876
l2fib_entry_key_t * l2fe_key
Definition: l2_fib.c:109
#define L2FIB_NUM_BUCKETS
Definition: l2_fib.h:27
static_always_inline f64 l2fib_scan(vlib_main_t *vm, f64 start_time, u8 event_only)
Definition: l2_fib.c:1038
void clib_bihash_init(clib_bihash *h, char *name, u32 nbuckets, uword memory_size)
initialize a bounded index extensible hash table
l2fib_main_t l2fib_main
Definition: l2_fib.c:54
static u32 bd_is_valid(l2_bridge_domain_t *bd_config)
Definition: l2_bd.h:134
static clib_error_t * clear_l2fib(vlib_main_t *vm, unformat_input_t *input, vlib_cli_command_t *cmd)
Clear all entries in L2FIB.
Definition: l2_fib.c:403
BVT(clib_bihash)
Definition: l2_fib.c:1019
clib_error_t * l2fib_sw_interface_up_down(vnet_main_t *vnm, u32 sw_if_index, u32 flags)
Definition: l2_fib.c:1008
static clib_error_t * show_l2fib(vlib_main_t *vm, unformat_input_t *input, vlib_cli_command_t *cmd)
Display the contents of the l2fib.
Definition: l2_fib.c:249
An API client registration, only in vpp/vlib.
Definition: api_common.h:47
#define VLIB_REGISTER_NODE(x,...)
Definition: node.h:170
#define UNFORMAT_END_OF_INPUT
Definition: format.h:144
static clib_error_t * l2fib_flush_mac_all(vlib_main_t *vm, unformat_input_t *input, vlib_cli_command_t *cmd)
Flush all MACs, except static ones The CLI format is: l2fib flush-mac all.
Definition: l2_fib.c:919
u32 l2fib_del_entry(const u8 *mac, u32 bd_index, u32 sw_if_index)
Delete an entry from the l2fib.
Definition: l2_fib.c:732
#define CLIB_PREFETCH(addr, size, type)
Definition: cache.h:80
static void incr_mac_address(u8 *mac)
Definition: l2_fib.c:78
sll srl srl sll sra u16x4 i
Definition: vector_sse42.h:317
#define vec_free(V)
Free vector&#39;s memory (no header).
Definition: vec.h:380
static clib_error_t * l2fib_flush_mac_int(vlib_main_t *vm, unformat_input_t *input, vlib_cli_command_t *cmd)
Flush MACs, except static ones, associated with an interface The CLI format is: l2fib flush-mac inter...
Definition: l2_fib.c:893
#define clib_warning(format, args...)
Definition: error.h:59
f64 age_scan_duration
Definition: l2_fib.h:59
static u64 l2fib_make_key(const u8 *mac_address, u16 bd_index)
Definition: l2_fib.h:241
void l2fib_clear_table(void)
Definition: l2_fib.c:384
static l2fib_seq_num_t l2fib_cur_seq_num(u32 bd_index, u32 sw_if_index)
Definition: l2_fib.c:430
static_always_inline l2_bridge_domain_t * l2input_bd_config(u32 bd_index)
Definition: l2_input.h:114
static vl_api_registration_t * vl_api_client_index_to_registration(u32 index)
Definition: api.h:79
static bool l2_input_is_bridge(const l2_input_config_t *input)
Definition: l2_input.h:234
#define VLIB_CLI_COMMAND(x,...)
Definition: cli.h:158
uword unformat_ethernet_address(unformat_input_t *input, va_list *args)
Definition: format.c:233
#define ASSERT(truth)
void vlib_cli_output(vlib_main_t *vm, char *fmt,...)
Definition: cli.c:696
#define CLIB_TIME_MAX
Definition: time.h:227
Definition: l2_fib.h:77
static uword l2fib_mac_age_scanner_process(vlib_main_t *vm, vlib_node_runtime_t *rt, vlib_frame_t *f)
Definition: l2_fib.c:1234
vl_api_mac_entry_t mac[n_macs]
Definition: l2.api:196
VNET_SW_INTERFACE_ADMIN_UP_DOWN_FUNCTION(l2fib_sw_interface_up_down)
u32 global_learn_limit
Definition: l2_learn.h:36
static uword is_pow2(uword x)
Definition: clib.h:253
void vl_msg_api_free(void *)
typedef key
Definition: ipsec_types.api:86
template key/value backing page structure
Definition: bihash_doc.h:44
static clib_error_t * l2fib_flush_mac_bd(vlib_main_t *vm, unformat_input_t *input, vlib_cli_command_t *cmd)
Flush bridge-domain MACs except static ones.
Definition: l2_fib.c:964
#define vec_len(v)
Number of elements in vector (rvalue-only, NULL tolerant)
u64 uword
Definition: types.h:112
l2fib_entry_result_t * l2fe_res
Definition: l2_fib.c:110
l2_bridge_domain_t * bd_configs
Definition: l2_input.h:93
static void l2fib_add_filter_entry(const u8 *mac, u32 bd_index)
Definition: l2_fib.h:453
static_always_inline l2fib_seq_num_t l2_fib_mk_seq_num(u8 bd_sn, u8 if_sn)
Definition: l2_fib.h:110
unformat_function_t unformat_memory_size
Definition: format.h:295
void l2fib_table_dump(u32 bd_index, l2fib_entry_key_t **l2fe_key, l2fib_entry_result_t **l2fe_res)
Definition: l2_fib.c:133
u8 * format_unformat_error(u8 *s, va_list *va)
Definition: unformat.c:91
void l2_fib_extract_seq_num(l2fib_seq_num_t sn, u8 *bd_sn, u8 *if_sn)
Definition: l2_fib.c:150
#define vec_foreach(var, vec)
Vector iterator.
static_always_inline u8 l2_input_seq_num(u32 sw_if_index)
Definition: l2_input.h:252
u8 * format_l2_fib_seq_num(u8 *s, va_list *a)
Definition: l2_fib.c:157
u8 count
Definition: dhcp.api:208
struct l2fib_entry_key_t::@467::@469 fields
static void * clib_bihash_get_value(clib_bihash *h, uword offset)
Get pointer to value page given its clib mheap offset.
uword mac_table_n_buckets
Definition: l2_fib.h:49
void l2fib_table_init(void)
Definition: l2_fib.c:370
bd_main_t bd_main
Definition: l2_bd.c:44
#define CLIB_CACHE_LINE_BYTES
Definition: cache.h:59
static clib_error_t * l2fib_add(vlib_main_t *vm, unformat_input_t *input, vlib_cli_command_t *cmd)
Add an entry to the L2FIB.
Definition: l2_fib.c:491
u32 client_pid
Definition: l2_learn.h:39
void l2fib_flush_int_mac(vlib_main_t *vm, u32 sw_if_index)
Flush all non static MACs from an interface.
Definition: l2_fib.c:855
static vnet_sw_interface_t * vnet_get_sw_interface_or_null(vnet_main_t *vnm, u32 sw_if_index)
struct l2fib_show_walk_ctx_t_ l2fib_show_walk_ctx_t
vl_api_interface_index_t sw_if_index
Definition: wireguard.api:34
uword unformat(unformat_input_t *i, const char *fmt,...)
Definition: unformat.c:978
u64 raw
Definition: l2_fib.h:91
static uword unformat_check_input(unformat_input_t *i)
Definition: format.h:170
signed short i16
Definition: types.h:46
const char *const const char *const raw
Definition: cJSON.h:270