FD.io VPP  v18.10-32-g1161dda
Vector Packet Processing
l2_bd.c
Go to the documentation of this file.
1 /*
2  * l2_bd.c : layer 2 bridge domain
3  *
4  * Copyright (c) 2013 Cisco and/or its affiliates.
5  * Licensed under the Apache License, Version 2.0 (the "License");
6  * you may not use this file except in compliance with the License.
7  * You may obtain a copy of the License at:
8  *
9  * http://www.apache.org/licenses/LICENSE-2.0
10  *
11  * Unless required by applicable law or agreed to in writing, software
12  * distributed under the License is distributed on an "AS IS" BASIS,
13  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  * See the License for the specific language governing permissions and
15  * limitations under the License.
16  */
17 
18 #include <vlib/vlib.h>
19 #include <vnet/vnet.h>
20 #include <vlib/cli.h>
21 #include <vnet/ethernet/ethernet.h>
22 #include <vnet/ip/format.h>
23 #include <vnet/l2/l2_input.h>
24 #include <vnet/l2/feat_bitmap.h>
25 #include <vnet/l2/l2_bd.h>
26 #include <vnet/l2/l2_learn.h>
27 #include <vnet/l2/l2_fib.h>
28 #include <vnet/l2/l2_vtr.h>
29 #include <vnet/ip/ip4_packet.h>
30 #include <vnet/ip/ip6_packet.h>
31 
32 #include <vppinfra/error.h>
33 #include <vppinfra/hash.h>
34 #include <vppinfra/vec.h>
35 
36 /**
37  * @file
38  * @brief Ethernet Bridge Domain.
39  *
40  * Code in this file manages Layer 2 bridge domains.
41  *
42  */
43 
45 
46 /**
47  Init bridge domain if not done already.
48  For feature bitmap, set all bits except ARP termination
49 */
50 void
52 {
53  if (bd_is_valid (bd_config))
54  return;
55  bd_config->feature_bitmap = ~(L2INPUT_FEAT_ARP_TERM | L2INPUT_FEAT_UU_FWD);
56  bd_config->bvi_sw_if_index = ~0;
57  bd_config->uu_fwd_sw_if_index = ~0;
58  bd_config->members = 0;
59  bd_config->flood_count = 0;
60  bd_config->tun_master_count = 0;
61  bd_config->tun_normal_count = 0;
62  bd_config->no_flood_count = 0;
63  bd_config->mac_by_ip4 = 0;
64  bd_config->mac_by_ip6 = hash_create_mem (0, sizeof (ip6_address_t),
65  sizeof (uword));
66 }
67 
68 u32
69 bd_find_index (bd_main_t * bdm, u32 bd_id)
70 {
71  u32 *p = (u32 *) hash_get (bdm->bd_index_by_bd_id, bd_id);
72  if (!p)
73  return ~0;
74  return p[0];
75 }
76 
77 u32
79 {
80  ASSERT (!hash_get (bdm->bd_index_by_bd_id, bd_id));
82 
83  /* mark this index taken */
84  bdm->bd_index_bitmap = clib_bitmap_set (bdm->bd_index_bitmap, rv, 1);
85 
86  hash_set (bdm->bd_index_by_bd_id, bd_id, rv);
87 
89  l2input_main.bd_configs[rv].bd_id = bd_id;
90 
91  return rv;
92 }
93 
94 static int
95 bd_delete (bd_main_t * bdm, u32 bd_index)
96 {
98  u32 bd_id = bd->bd_id;
99  u64 mac_addr;
100  ip6_address_t *ip6_addr_key;
101 
102  /* flush non-static MACs in BD and removed bd_id from hash table */
103  l2fib_flush_bd_mac (vlib_get_main (), bd_index);
104  hash_unset (bdm->bd_index_by_bd_id, bd_id);
105 
106  /* mark this index clear */
107  bdm->bd_index_bitmap = clib_bitmap_set (bdm->bd_index_bitmap, bd_index, 0);
108 
109  /* clear BD config for reuse: bd_id to -1 and clear feature_bitmap */
110  bd->bd_id = ~0;
111  bd->feature_bitmap = 0;
112 
113  /* free BD tag */
114  vec_free (bd->bd_tag);
115 
116  /* free memory used by BD */
117  vec_free (bd->members);
118  hash_free (bd->mac_by_ip4);
119  /* *INDENT-OFF* */
120  hash_foreach_mem (ip6_addr_key, mac_addr, bd->mac_by_ip6,
121  ({
122  clib_mem_free (ip6_addr_key); /* free memory used for ip6 addr key */
123  }));
124  /* *INDENT-ON* */
125  hash_free (bd->mac_by_ip6);
126 
127  return 0;
128 }
129 
130 static void
132 {
133  bd_config->flood_count = (vec_len (bd_config->members) -
134  (bd_config->tun_master_count ?
135  bd_config->tun_normal_count : 0));
136  bd_config->flood_count -= bd_config->no_flood_count;
137 }
138 
139 void
141 {
142  u32 ix = 0;
144  (vnet_get_main (), member->sw_if_index);
145 
146  /*
147  * Add one element to the vector
148  * vector is ordered [ bvi, normal/tun_masters..., tun_normals... no_flood]
149  * When flooding, the bvi interface (if present) must be the last member
150  * processed due to how BVI processing can change the packet. To enable
151  * this order, we make the bvi interface the first in the vector and
152  * flooding walks the vector in reverse. The flood-count determines where
153  * in the member list to start the walk from.
154  */
155  switch (sw_if->flood_class)
156  {
158  bd_config->no_flood_count++;
159  ix = vec_len (bd_config->members);
160  break;
162  ix = 0;
163  break;
165  bd_config->tun_master_count++;
166  /* Fall through */
168  ix = (vec_len (bd_config->members) -
169  bd_config->tun_normal_count - bd_config->no_flood_count);
170  break;
172  ix = (vec_len (bd_config->members) - bd_config->no_flood_count);
173  bd_config->tun_normal_count++;
174  break;
175  }
176 
177  vec_insert_elts (bd_config->members, member, 1, ix);
178  update_flood_count (bd_config);
179 }
180 
181 #define BD_REMOVE_ERROR_OK 0
182 #define BD_REMOVE_ERROR_NOT_FOUND 1
183 
184 u32
186 {
187  u32 ix;
188 
189  /* Find and delete the member */
190  vec_foreach_index (ix, bd_config->members)
191  {
192  l2_flood_member_t *m = vec_elt_at_index (bd_config->members, ix);
193  if (m->sw_if_index == sw_if_index)
194  {
196  (vnet_get_main (), sw_if_index);
197 
198  if (sw_if->flood_class != VNET_FLOOD_CLASS_NORMAL)
199  {
201  bd_config->tun_master_count--;
202  else if (sw_if->flood_class == VNET_FLOOD_CLASS_TUNNEL_NORMAL)
203  bd_config->tun_normal_count--;
204  else if (sw_if->flood_class == VNET_FLOOD_CLASS_NO_FLOOD)
205  bd_config->no_flood_count--;
206  }
207  vec_delete (bd_config->members, 1, ix);
208  update_flood_count (bd_config);
209 
210  return BD_REMOVE_ERROR_OK;
211  }
212  }
213 
215 }
216 
217 
218 clib_error_t *
220 {
221  bd_main_t *bdm = &bd_main;
222  bdm->bd_index_by_bd_id = hash_create (0, sizeof (uword));
223  /*
224  * create a dummy bd with bd_id of 0 and bd_index of 0 with feature set
225  * to packet drop only. Thus, packets received from any L2 interface with
226  * uninitialized bd_index of 0 can be dropped safely.
227  */
228  u32 bd_index = bd_add_bd_index (bdm, 0);
229  ASSERT (bd_index == 0);
230  l2input_main.bd_configs[0].feature_bitmap = L2INPUT_FEAT_DROP;
231 
232  bdm->vlib_main = vm;
233  return 0;
234 }
235 
237 
238 
239 /**
240  Set the learn/forward/flood flags for the bridge domain.
241  Return 0 if ok, non-zero if for an error.
242 */
243 u32
245 {
246 
247  l2_bridge_domain_t *bd_config = l2input_bd_config (bd_index);
248  bd_validate (bd_config);
249  u32 feature_bitmap = 0;
250 
251  if (flags & L2_LEARN)
252  {
253  feature_bitmap |= L2INPUT_FEAT_LEARN;
254  }
255  if (flags & L2_FWD)
256  {
257  feature_bitmap |= L2INPUT_FEAT_FWD;
258  }
259  if (flags & L2_FLOOD)
260  {
261  feature_bitmap |= L2INPUT_FEAT_FLOOD;
262  }
263  if (flags & L2_UU_FLOOD)
264  {
265  feature_bitmap |= L2INPUT_FEAT_UU_FLOOD;
266  }
267  if (flags & L2_ARP_TERM)
268  {
269  feature_bitmap |= L2INPUT_FEAT_ARP_TERM;
270  }
271 
272  if (enable)
273  {
274  bd_config->feature_bitmap |= feature_bitmap;
275  }
276  else
277  {
278  bd_config->feature_bitmap &= ~feature_bitmap;
279  }
280 
281  return bd_config->feature_bitmap;
282 }
283 
284 /**
285  Set the mac age for the bridge domain.
286 */
287 void
288 bd_set_mac_age (vlib_main_t * vm, u32 bd_index, u8 age)
289 {
290  l2_bridge_domain_t *bd_config;
291  int enable = 0;
292 
294  bd_config = vec_elt_at_index (l2input_main.bd_configs, bd_index);
295  bd_config->mac_age = age;
296 
297  /* check if there is at least one bd with mac aging enabled */
298  vec_foreach (bd_config, l2input_main.bd_configs)
299  enable |= bd_config->bd_id != ~0 && bd_config->mac_age != 0;
300 
304 }
305 
306 /**
307  Set the tag for the bridge domain.
308 */
309 
310 static void
311 bd_set_bd_tag (vlib_main_t * vm, u32 bd_index, u8 * bd_tag)
312 {
313  u8 *old;
314  l2_bridge_domain_t *bd_config;
316  bd_config = vec_elt_at_index (l2input_main.bd_configs, bd_index);
317 
318  old = bd_config->bd_tag;
319 
320  if (bd_tag[0])
321  {
322  bd_config->bd_tag = format (0, "%s%c", bd_tag, 0);
323  }
324  else
325  {
326  bd_config->bd_tag = NULL;
327  }
328 
329  vec_free (old);
330 }
331 
332 /**
333  Set bridge-domain learn enable/disable.
334  The CLI format is:
335  set bridge-domain learn <bd_id> [disable]
336 */
337 static clib_error_t *
339  unformat_input_t * input, vlib_cli_command_t * cmd)
340 {
341  bd_main_t *bdm = &bd_main;
342  clib_error_t *error = 0;
343  u32 bd_index, bd_id;
344  u32 enable;
345  uword *p;
346 
347  if (!unformat (input, "%d", &bd_id))
348  {
349  error = clib_error_return (0, "expecting bridge-domain id but got `%U'",
350  format_unformat_error, input);
351  goto done;
352  }
353 
354  if (bd_id == 0)
355  return clib_error_return (0,
356  "No operations on the default bridge domain are supported");
357 
358  p = hash_get (bdm->bd_index_by_bd_id, bd_id);
359 
360  if (p == 0)
361  return clib_error_return (0, "No such bridge domain %d", bd_id);
362 
363  bd_index = p[0];
364 
365  enable = 1;
366  if (unformat (input, "disable"))
367  {
368  enable = 0;
369  }
370 
371  /* set the bridge domain flag */
372  bd_set_flags (vm, bd_index, L2_LEARN, enable);
373 
374 done:
375  return error;
376 }
377 
378 /*?
379  * Layer 2 learning can be enabled and disabled on each
380  * interface and on each bridge-domain. Use this command to
381  * manage bridge-domains. It is enabled by default.
382  *
383  * @cliexpar
384  * Example of how to enable learning (where 200 is the bridge-domain-id):
385  * @cliexcmd{set bridge-domain learn 200}
386  * Example of how to disable learning (where 200 is the bridge-domain-id):
387  * @cliexcmd{set bridge-domain learn 200 disable}
388 ?*/
389 /* *INDENT-OFF* */
390 VLIB_CLI_COMMAND (bd_learn_cli, static) = {
391  .path = "set bridge-domain learn",
392  .short_help = "set bridge-domain learn <bridge-domain-id> [disable]",
393  .function = bd_learn,
394 };
395 /* *INDENT-ON* */
396 
397 /**
398  Set bridge-domain forward enable/disable.
399  The CLI format is:
400  set bridge-domain forward <bd_index> [disable]
401 */
402 static clib_error_t *
404 {
405  bd_main_t *bdm = &bd_main;
406  clib_error_t *error = 0;
407  u32 bd_index, bd_id;
408  u32 enable;
409  uword *p;
410 
411  if (!unformat (input, "%d", &bd_id))
412  {
413  error = clib_error_return (0, "expecting bridge-domain id but got `%U'",
414  format_unformat_error, input);
415  goto done;
416  }
417 
418  if (bd_id == 0)
419  return clib_error_return (0,
420  "No operations on the default bridge domain are supported");
421 
422  p = hash_get (bdm->bd_index_by_bd_id, bd_id);
423 
424  if (p == 0)
425  return clib_error_return (0, "No such bridge domain %d", bd_id);
426 
427  bd_index = p[0];
428 
429  enable = 1;
430  if (unformat (input, "disable"))
431  {
432  enable = 0;
433  }
434 
435  /* set the bridge domain flag */
436  bd_set_flags (vm, bd_index, L2_FWD, enable);
437 
438 done:
439  return error;
440 }
441 
442 
443 /*?
444  * Layer 2 unicast forwarding can be enabled and disabled on each
445  * interface and on each bridge-domain. Use this command to
446  * manage bridge-domains. It is enabled by default.
447  *
448  * @cliexpar
449  * Example of how to enable forwarding (where 200 is the bridge-domain-id):
450  * @cliexcmd{set bridge-domain forward 200}
451  * Example of how to disable forwarding (where 200 is the bridge-domain-id):
452  * @cliexcmd{set bridge-domain forward 200 disable}
453 ?*/
454 /* *INDENT-OFF* */
455 VLIB_CLI_COMMAND (bd_fwd_cli, static) = {
456  .path = "set bridge-domain forward",
457  .short_help = "set bridge-domain forward <bridge-domain-id> [disable]",
458  .function = bd_fwd,
459 };
460 /* *INDENT-ON* */
461 
462 /**
463  Set bridge-domain flood enable/disable.
464  The CLI format is:
465  set bridge-domain flood <bd_index> [disable]
466 */
467 static clib_error_t *
469  unformat_input_t * input, vlib_cli_command_t * cmd)
470 {
471  bd_main_t *bdm = &bd_main;
472  clib_error_t *error = 0;
473  u32 bd_index, bd_id;
474  u32 enable;
475  uword *p;
476 
477  if (!unformat (input, "%d", &bd_id))
478  {
479  error = clib_error_return (0, "expecting bridge-domain id but got `%U'",
480  format_unformat_error, input);
481  goto done;
482  }
483 
484  if (bd_id == 0)
485  return clib_error_return (0,
486  "No operations on the default bridge domain are supported");
487 
488  p = hash_get (bdm->bd_index_by_bd_id, bd_id);
489 
490  if (p == 0)
491  return clib_error_return (0, "No such bridge domain %d", bd_id);
492 
493  bd_index = p[0];
494 
495  enable = 1;
496  if (unformat (input, "disable"))
497  {
498  enable = 0;
499  }
500 
501  /* set the bridge domain flag */
502  bd_set_flags (vm, bd_index, L2_FLOOD, enable);
503 
504 done:
505  return error;
506 }
507 
508 /*?
509  * Layer 2 flooding can be enabled and disabled on each
510  * interface and on each bridge-domain. Use this command to
511  * manage bridge-domains. It is enabled by default.
512  *
513  * @cliexpar
514  * Example of how to enable flooding (where 200 is the bridge-domain-id):
515  * @cliexcmd{set bridge-domain flood 200}
516  * Example of how to disable flooding (where 200 is the bridge-domain-id):
517  * @cliexcmd{set bridge-domain flood 200 disable}
518 ?*/
519 /* *INDENT-OFF* */
520 VLIB_CLI_COMMAND (bd_flood_cli, static) = {
521  .path = "set bridge-domain flood",
522  .short_help = "set bridge-domain flood <bridge-domain-id> [disable]",
523  .function = bd_flood,
524 };
525 /* *INDENT-ON* */
526 
527 /**
528  Set bridge-domain unknown-unicast flood enable/disable.
529  The CLI format is:
530  set bridge-domain uu-flood <bd_index> [disable]
531 */
532 static clib_error_t *
534  unformat_input_t * input, vlib_cli_command_t * cmd)
535 {
536  bd_main_t *bdm = &bd_main;
537  clib_error_t *error = 0;
538  u32 bd_index, bd_id;
539  u32 enable;
540  uword *p;
541 
542  if (!unformat (input, "%d", &bd_id))
543  {
544  error = clib_error_return (0, "expecting bridge-domain id but got `%U'",
545  format_unformat_error, input);
546  goto done;
547  }
548 
549  if (bd_id == 0)
550  return clib_error_return (0,
551  "No operations on the default bridge domain are supported");
552 
553  p = hash_get (bdm->bd_index_by_bd_id, bd_id);
554 
555  if (p == 0)
556  return clib_error_return (0, "No such bridge domain %d", bd_id);
557 
558  bd_index = p[0];
559 
560  enable = 1;
561  if (unformat (input, "disable"))
562  {
563  enable = 0;
564  }
565 
566  /* set the bridge domain flag */
567  bd_set_flags (vm, bd_index, L2_UU_FLOOD, enable);
568 
569 done:
570  return error;
571 }
572 
573 /*?
574  * Layer 2 unknown-unicast flooding can be enabled and disabled on each
575  * bridge-domain. It is enabled by default.
576  *
577  * @cliexpar
578  * Example of how to enable unknown-unicast flooding (where 200 is the
579  * bridge-domain-id):
580  * @cliexcmd{set bridge-domain uu-flood 200}
581  * Example of how to disable unknown-unicast flooding (where 200 is the bridge-domain-id):
582  * @cliexcmd{set bridge-domain uu-flood 200 disable}
583 ?*/
584 /* *INDENT-OFF* */
585 VLIB_CLI_COMMAND (bd_uu_flood_cli, static) = {
586  .path = "set bridge-domain uu-flood",
587  .short_help = "set bridge-domain uu-flood <bridge-domain-id> [disable]",
588  .function = bd_uu_flood,
589 };
590 /* *INDENT-ON* */
591 
592 /**
593  Set bridge-domain arp term enable/disable.
594  The CLI format is:
595  set bridge-domain arp term <bridge-domain-id> [disable]
596 */
597 static clib_error_t *
599  unformat_input_t * input, vlib_cli_command_t * cmd)
600 {
601  bd_main_t *bdm = &bd_main;
602  clib_error_t *error = 0;
603  u32 bd_index, bd_id;
604  u32 enable;
605  uword *p;
606 
607  if (!unformat (input, "%d", &bd_id))
608  {
609  error = clib_error_return (0, "expecting bridge-domain id but got `%U'",
610  format_unformat_error, input);
611  goto done;
612  }
613 
614  if (bd_id == 0)
615  return clib_error_return (0,
616  "No operations on the default bridge domain are supported");
617 
618  p = hash_get (bdm->bd_index_by_bd_id, bd_id);
619  if (p)
620  bd_index = *p;
621  else
622  return clib_error_return (0, "No such bridge domain %d", bd_id);
623 
624  enable = 1;
625  if (unformat (input, "disable"))
626  enable = 0;
627 
628  /* set the bridge domain flag */
629  bd_set_flags (vm, bd_index, L2_ARP_TERM, enable);
630 
631 done:
632  return error;
633 }
634 
635 static clib_error_t *
637  unformat_input_t * input, vlib_cli_command_t * cmd)
638 {
639  bd_main_t *bdm = &bd_main;
640  clib_error_t *error = 0;
641  u32 bd_index, bd_id;
642  u32 age;
643  uword *p;
644 
645  if (!unformat (input, "%d", &bd_id))
646  {
647  error = clib_error_return (0, "expecting bridge-domain id but got `%U'",
648  format_unformat_error, input);
649  goto done;
650  }
651 
652  if (bd_id == 0)
653  return clib_error_return (0,
654  "No operations on the default bridge domain are supported");
655 
656  p = hash_get (bdm->bd_index_by_bd_id, bd_id);
657 
658  if (p == 0)
659  return clib_error_return (0, "No such bridge domain %d", bd_id);
660 
661  bd_index = p[0];
662 
663  if (!unformat (input, "%u", &age))
664  {
665  error =
666  clib_error_return (0, "expecting ageing time in minutes but got `%U'",
667  format_unformat_error, input);
668  goto done;
669  }
670 
671  /* set the bridge domain flag */
672  if (age > 255)
673  {
674  error =
675  clib_error_return (0, "mac aging time cannot be bigger than 255");
676  goto done;
677  }
678  bd_set_mac_age (vm, bd_index, (u8) age);
679 
680 done:
681  return error;
682 }
683 
684 /*?
685  * Layer 2 mac aging can be enabled and disabled on each
686  * bridge-domain. Use this command to set or disable mac aging
687  * on specific bridge-domains. It is disabled by default.
688  *
689  * @cliexpar
690  * Example of how to set mac aging (where 200 is the bridge-domain-id and
691  * 5 is aging time in minutes):
692  * @cliexcmd{set bridge-domain mac-age 200 5}
693  * Example of how to disable mac aging (where 200 is the bridge-domain-id):
694  * @cliexcmd{set bridge-domain flood 200 0}
695 ?*/
696 /* *INDENT-OFF* */
697 VLIB_CLI_COMMAND (bd_mac_age_cli, static) = {
698  .path = "set bridge-domain mac-age",
699  .short_help = "set bridge-domain mac-age <bridge-domain-id> <mins>",
700  .function = bd_mac_age,
701 };
702 /* *INDENT-ON* */
703 
704 /*?
705  * Modify whether or not an existing bridge-domain should terminate and respond
706  * to ARP Requests. ARP Termination is disabled by default.
707  *
708  * @cliexpar
709  * Example of how to enable ARP termination (where 200 is the bridge-domain-id):
710  * @cliexcmd{set bridge-domain arp term 200}
711  * Example of how to disable ARP termination (where 200 is the bridge-domain-id):
712  * @cliexcmd{set bridge-domain arp term 200 disable}
713 ?*/
714 /* *INDENT-OFF* */
715 VLIB_CLI_COMMAND (bd_arp_term_cli, static) = {
716  .path = "set bridge-domain arp term",
717  .short_help = "set bridge-domain arp term <bridge-domain-id> [disable]",
718  .function = bd_arp_term,
719 };
720 /* *INDENT-ON* */
721 
722 
723 /**
724  * Add/delete IP address to MAC address mapping.
725  *
726  * The clib hash implementation stores uword entries in the hash table.
727  * The hash table mac_by_ip4 is keyed via IP4 address and store the
728  * 6-byte MAC address directly in the hash table entry uword.
729  *
730  * @warning This only works for 64-bit processor with 8-byte uword;
731  * which means this code *WILL NOT WORK* for a 32-bit processor with
732  * 4-byte uword.
733  */
734 u32
736  u8 * ip_addr, u8 * mac_addr, u8 is_ip6, u8 is_add)
737 {
738  l2_bridge_domain_t *bd_cfg = l2input_bd_config (bd_index);
739  u64 new_mac = *(u64 *) mac_addr;
740  u64 *old_mac;
741  u16 *mac16 = (u16 *) & new_mac;
742 
743  ASSERT (sizeof (uword) == sizeof (u64)); /* make sure uword is 8 bytes */
744  ASSERT (bd_is_valid (bd_cfg));
745 
746  mac16[3] = 0; /* Clear last 2 unused bytes of the 8-byte MAC address */
747  if (is_ip6)
748  {
749  ip6_address_t *ip6_addr_key;
750  hash_pair_t *hp;
751  old_mac = (u64 *) hash_get_mem (bd_cfg->mac_by_ip6, ip_addr);
752  if (is_add)
753  {
754  if (old_mac == 0)
755  { /* new entry - allocate and create ip6 address key */
756  ip6_addr_key = clib_mem_alloc (sizeof (ip6_address_t));
757  clib_memcpy (ip6_addr_key, ip_addr, sizeof (ip6_address_t));
758  }
759  else if (*old_mac == new_mac)
760  { /* same mac entry already exist for ip6 address */
761  return 0;
762  }
763  else
764  { /* update mac for ip6 address */
765  hp = hash_get_pair (bd_cfg->mac_by_ip6, ip_addr);
766  ip6_addr_key = (ip6_address_t *) hp->key;
767  }
768  hash_set_mem (bd_cfg->mac_by_ip6, ip6_addr_key, new_mac);
769  }
770  else
771  {
772  if (old_mac && (*old_mac == new_mac))
773  {
774  hp = hash_get_pair (bd_cfg->mac_by_ip6, ip_addr);
775  ip6_addr_key = (ip6_address_t *) hp->key;
776  hash_unset_mem (bd_cfg->mac_by_ip6, ip_addr);
777  clib_mem_free (ip6_addr_key);
778  }
779  else
780  return 1;
781  }
782  }
783  else
784  {
785  ip4_address_t ip4_addr = *(ip4_address_t *) ip_addr;
786  old_mac = (u64 *) hash_get (bd_cfg->mac_by_ip4, ip4_addr.as_u32);
787  if (is_add)
788  {
789  if (old_mac && (*old_mac == new_mac))
790  return 0; /* mac entry already exist */
791  hash_set (bd_cfg->mac_by_ip4, ip4_addr.as_u32, new_mac);
792  }
793  else
794  {
795  if (old_mac && (*old_mac == new_mac))
796  hash_unset (bd_cfg->mac_by_ip4, ip4_addr.as_u32);
797  else
798  return 1;
799  }
800  }
801  return 0;
802 }
803 
804 /**
805  Set bridge-domain arp entry add/delete.
806  The CLI format is:
807  set bridge-domain arp entry <bridge-domain-id> <ip-addr> <mac-addr> [del]
808 */
809 static clib_error_t *
811  unformat_input_t * input, vlib_cli_command_t * cmd)
812 {
813  bd_main_t *bdm = &bd_main;
814  clib_error_t *error = 0;
815  u32 bd_index, bd_id;
816  u8 is_add = 1;
817  u8 is_ip6 = 0;
818  u8 ip_addr[16];
819  u8 mac_addr[6];
820  uword *p;
821 
822  if (!unformat (input, "%d", &bd_id))
823  {
824  error = clib_error_return (0, "expecting bridge-domain id but got `%U'",
825  format_unformat_error, input);
826  goto done;
827  }
828 
829  if (bd_id == 0)
830  return clib_error_return (0,
831  "No operations on the default bridge domain are supported");
832 
833  p = hash_get (bdm->bd_index_by_bd_id, bd_id);
834 
835  if (p)
836  bd_index = *p;
837  else
838  return clib_error_return (0, "No such bridge domain %d", bd_id);
839 
840  if (unformat (input, "%U", unformat_ip4_address, ip_addr))
841  {
842  is_ip6 = 0;
843  }
844  else if (unformat (input, "%U", unformat_ip6_address, ip_addr))
845  {
846  is_ip6 = 1;
847  }
848  else
849  {
850  error = clib_error_return (0, "expecting IP address but got `%U'",
851  format_unformat_error, input);
852  goto done;
853  }
854 
855  if (!unformat (input, "%U", unformat_ethernet_address, mac_addr))
856  {
857  error = clib_error_return (0, "expecting MAC address but got `%U'",
858  format_unformat_error, input);
859  goto done;
860  }
861 
862  if (unformat (input, "del"))
863  {
864  is_add = 0;
865  }
866 
867  /* set the bridge domain flagAdd IP-MAC entry into bridge domain */
868  if (bd_add_del_ip_mac (bd_index, ip_addr, mac_addr, is_ip6, is_add))
869  {
870  error = clib_error_return (0, "MAC %s for IP %U and MAC %U failed",
871  is_add ? "add" : "del",
872  is_ip6 ?
874  ip_addr, format_ethernet_address, mac_addr);
875  }
876 
877 done:
878  return error;
879 }
880 
881 /*?
882  * Add an ARP entry to an existing bridge-domain.
883  *
884  * @cliexpar
885  * Example of how to add an ARP entry (where 200 is the bridge-domain-id):
886  * @cliexcmd{set bridge-domain arp entry 200 192.168.72.45 52:54:00:3b:83:1a}
887  * Example of how to delete an ARP entry (where 200 is the bridge-domain-id):
888  * @cliexcmd{set bridge-domain arp entry 200 192.168.72.45 52:54:00:3b:83:1a del}
889 ?*/
890 /* *INDENT-OFF* */
891 VLIB_CLI_COMMAND (bd_arp_entry_cli, static) = {
892  .path = "set bridge-domain arp entry",
893  .short_help = "set bridge-domain arp entry <bridge-domain-id> <ip-addr> <mac-addr> [del]",
894  .function = bd_arp_entry,
895 };
896 /* *INDENT-ON* */
897 
898 static u8 *
899 format_vtr (u8 * s, va_list * args)
900 {
901  u32 vtr_op = va_arg (*args, u32);
902  u32 dot1q = va_arg (*args, u32);
903  u32 tag1 = va_arg (*args, u32);
904  u32 tag2 = va_arg (*args, u32);
905  switch (vtr_op)
906  {
907  case L2_VTR_DISABLED:
908  return format (s, "none");
909  case L2_VTR_PUSH_1:
910  return format (s, "push-1 %s %d", dot1q ? "dot1q" : "dot1ad", tag1);
911  case L2_VTR_PUSH_2:
912  return format (s, "push-2 %s %d %d", dot1q ? "dot1q" : "dot1ad", tag1,
913  tag2);
914  case L2_VTR_POP_1:
915  return format (s, "pop-1");
916  case L2_VTR_POP_2:
917  return format (s, "pop-2");
919  return format (s, "trans-1-1 %s %d", dot1q ? "dot1q" : "dot1ad", tag1);
921  return format (s, "trans-1-2 %s %d %d", dot1q ? "dot1q" : "dot1ad",
922  tag1, tag2);
924  return format (s, "trans-2-1 %s %d", dot1q ? "dot1q" : "dot1ad", tag1);
926  return format (s, "trans-2-2 %s %d %d", dot1q ? "dot1q" : "dot1ad",
927  tag1, tag2);
928  default:
929  return format (s, "none");
930  }
931 }
932 
933 static u8 *
934 format_uu_cfg (u8 * s, va_list * args)
935 {
936  l2_bridge_domain_t *bd_config = va_arg (*args, l2_bridge_domain_t *);
937 
938  if (bd_config->feature_bitmap & L2INPUT_FEAT_UU_FWD)
940  vnet_get_main (), bd_config->uu_fwd_sw_if_index));
941  else if (bd_config->feature_bitmap & L2INPUT_FEAT_UU_FLOOD)
942  return (format (s, "flood"));
943  else
944  return (format (s, "drop"));
945 }
946 
947 /**
948  Show bridge-domain state.
949  The CLI format is:
950  show bridge-domain [<bd_index>]
951 */
952 static clib_error_t *
954 {
955  vnet_main_t *vnm = vnet_get_main ();
956  bd_main_t *bdm = &bd_main;
957  clib_error_t *error = 0;
958  u32 bd_index = ~0;
959  l2_bridge_domain_t *bd_config;
960  u32 start, end;
961  u32 detail = 0;
962  u32 intf = 0;
963  u32 arp = 0;
964  u32 bd_tag = 0;
965  u32 bd_id = ~0;
966  uword *p;
967 
968  start = 1;
970 
971  if (unformat (input, "%d", &bd_id))
972  {
973  if (unformat (input, "detail"))
974  detail = 1;
975  else if (unformat (input, "det"))
976  detail = 1;
977  if (unformat (input, "int"))
978  intf = 1;
979  if (unformat (input, "arp"))
980  arp = 1;
981  if (unformat (input, "bd-tag"))
982  bd_tag = 1;
983 
984  if (bd_id == 0)
985  return clib_error_return (0,
986  "No operations on the default bridge domain are supported");
987 
988  p = hash_get (bdm->bd_index_by_bd_id, bd_id);
989  if (p)
990  bd_index = *p;
991  else
992  return clib_error_return (0, "No such bridge domain %d", bd_id);
993 
995  bd_config = vec_elt_at_index (l2input_main.bd_configs, bd_index);
996  if (bd_is_valid (bd_config))
997  {
998  start = bd_index;
999  end = start + 1;
1000  }
1001  else
1002  {
1003  vlib_cli_output (vm, "bridge-domain %d not in use", bd_id);
1004  goto done;
1005  }
1006  }
1007 
1008  /* Show all bridge-domains that have been initialized */
1009  u32 printed = 0;
1010  u8 *as = 0;
1011  for (bd_index = start; bd_index < end; bd_index++)
1012  {
1013  bd_config = vec_elt_at_index (l2input_main.bd_configs, bd_index);
1014  if (bd_is_valid (bd_config))
1015  {
1016  if (!printed)
1017  {
1018  printed = 1;
1019  vlib_cli_output (vm,
1020  "%=8s %=7s %=4s %=9s %=9s %=9s %=11s %=9s %=9s %=11s",
1021  "BD-ID", "Index", "BSN", "Age(min)",
1022  "Learning", "U-Forwrd", "UU-Flood",
1023  "Flooding", "ARP-Term", "BVI-Intf");
1024  }
1025 
1026  if (bd_config->mac_age)
1027  as = format (as, "%d", bd_config->mac_age);
1028  else
1029  as = format (as, "off");
1030  vlib_cli_output (vm,
1031  "%=8d %=7d %=4d %=9v %=9s %=9s %=11U %=9s %=9s %=11U",
1032  bd_config->bd_id, bd_index, bd_config->seq_num, as,
1033  bd_config->feature_bitmap & L2INPUT_FEAT_LEARN ?
1034  "on" : "off",
1035  bd_config->feature_bitmap & L2INPUT_FEAT_FWD ?
1036  "on" : "off",
1037  format_uu_cfg, bd_config,
1038  bd_config->feature_bitmap & L2INPUT_FEAT_FLOOD ?
1039  "on" : "off",
1040  bd_config->feature_bitmap & L2INPUT_FEAT_ARP_TERM ?
1041  "on" : "off",
1043  vnm, bd_config->bvi_sw_if_index);
1044  vec_reset_length (as);
1045 
1046  if (detail || intf)
1047  {
1048  /* Show all member interfaces */
1049  int i;
1050  vec_foreach_index (i, bd_config->members)
1051  {
1052  l2_flood_member_t *member =
1053  vec_elt_at_index (bd_config->members, i);
1054  u8 swif_seq_num = *l2fib_swif_seq_num (member->sw_if_index);
1055  u32 vtr_opr, dot1q, tag1, tag2;
1056  if (i == 0)
1057  {
1058  vlib_cli_output (vm, "\n%=30s%=7s%=5s%=5s%=5s%=9s%=30s",
1059  "Interface", "If-idx", "ISN", "SHG",
1060  "BVI", "TxFlood", "VLAN-Tag-Rewrite");
1061  }
1062  l2vtr_get (vm, vnm, member->sw_if_index, &vtr_opr, &dot1q,
1063  &tag1, &tag2);
1064  vlib_cli_output (vm, "%=30U%=7d%=5d%=5d%=5s%=9s%=30U",
1066  member->sw_if_index, member->sw_if_index,
1067  swif_seq_num, member->shg,
1068  member->flags & L2_FLOOD_MEMBER_BVI ? "*" :
1069  "-", i < bd_config->flood_count ? "*" : "-",
1070  format_vtr, vtr_opr, dot1q, tag1, tag2);
1071  }
1072  if (~0 != bd_config->uu_fwd_sw_if_index)
1073  vlib_cli_output (vm, "%=30U%=7d%=5d%=5d%=5s%=9s%=30s",
1075  bd_config->uu_fwd_sw_if_index,
1076  bd_config->uu_fwd_sw_if_index,
1077  0, 0, "uu", "-", "None");
1078 
1079  }
1080 
1081  if ((detail || arp) &&
1082  (bd_config->feature_bitmap & L2INPUT_FEAT_ARP_TERM))
1083  {
1084  u32 ip4_addr;
1085  ip6_address_t *ip6_addr;
1086  u64 mac_addr;
1087  vlib_cli_output (vm,
1088  "\n IP4/IP6 to MAC table for ARP Termination");
1089 
1090  /* *INDENT-OFF* */
1091  hash_foreach (ip4_addr, mac_addr, bd_config->mac_by_ip4,
1092  ({
1093  vlib_cli_output (vm, "%=40U => %=20U",
1094  format_ip4_address, &ip4_addr,
1095  format_ethernet_address, &mac_addr);
1096  }));
1097 
1098  hash_foreach_mem (ip6_addr, mac_addr, bd_config->mac_by_ip6,
1099  ({
1100  vlib_cli_output (vm, "%=40U => %=20U",
1101  format_ip6_address, ip6_addr,
1102  format_ethernet_address, &mac_addr);
1103  }));
1104  /* *INDENT-ON* */
1105  }
1106 
1107  if ((detail || bd_tag) && (bd_config->bd_tag))
1108  {
1109  vlib_cli_output (vm, "\n BD-Tag: %s", bd_config->bd_tag);
1110 
1111  }
1112  }
1113  }
1114  vec_free (as);
1115 
1116  if (!printed)
1117  {
1118  vlib_cli_output (vm, "no bridge-domains in use");
1119  }
1120 
1121 done:
1122  return error;
1123 }
1124 
1125 /*?
1126  * Show a summary of all the bridge-domain instances or detailed view of a
1127  * single bridge-domain. Bridge-domains are created by adding an interface
1128  * to a bridge using the '<em>set interface l2 bridge</em>' command.
1129  *
1130  * @cliexpar
1131  * @parblock
1132  * Example of displaying all bridge-domains:
1133  * @cliexstart{show bridge-domain}
1134  * ID Index Learning U-Forwrd UU-Flood Flooding ARP-Term BVI-Intf
1135  * 0 0 off off off off off local0
1136  * 200 1 on on on on off N/A
1137  * @cliexend
1138  *
1139  * Example of displaying details of a single bridge-domains:
1140  * @cliexstart{show bridge-domain 200 detail}
1141  * ID Index Learning U-Forwrd UU-Flood Flooding ARP-Term BVI-Intf
1142  * 200 1 on on on on off N/A
1143  *
1144  * Interface Index SHG BVI VLAN-Tag-Rewrite
1145  * GigabitEthernet0/8/0.200 3 0 - none
1146  * GigabitEthernet0/9/0.200 4 0 - none
1147  * @cliexend
1148  * @endparblock
1149 ?*/
1150 /* *INDENT-OFF* */
1151 VLIB_CLI_COMMAND (bd_show_cli, static) = {
1152  .path = "show bridge-domain",
1153  .short_help = "show bridge-domain [bridge-domain-id [detail|int|arp|bd-tag]]",
1154  .function = bd_show,
1155 };
1156 /* *INDENT-ON* */
1157 
1158 int
1160 {
1161  bd_main_t *bdm = &bd_main;
1162  vlib_main_t *vm = bdm->vlib_main;
1163  int rv = 0;
1164 
1165  u32 bd_index = bd_find_index (bdm, a->bd_id);
1166  if (a->is_add)
1167  {
1168  if (bd_index != ~0)
1169  return VNET_API_ERROR_BD_ALREADY_EXISTS;
1170  if (a->bd_id > L2_BD_ID_MAX)
1171  return VNET_API_ERROR_BD_ID_EXCEED_MAX;
1172  bd_index = bd_add_bd_index (bdm, a->bd_id);
1173 
1174  bd_flags_t enable_flags = 0, disable_flags = 0;
1175  if (a->flood)
1176  enable_flags |= L2_FLOOD;
1177  else
1178  disable_flags |= L2_FLOOD;
1179 
1180  if (a->uu_flood)
1181  enable_flags |= L2_UU_FLOOD;
1182  else
1183  disable_flags |= L2_UU_FLOOD;
1184 
1185  if (a->forward)
1186  enable_flags |= L2_FWD;
1187  else
1188  disable_flags |= L2_FWD;
1189 
1190  if (a->learn)
1191  enable_flags |= L2_LEARN;
1192  else
1193  disable_flags |= L2_LEARN;
1194 
1195  if (a->arp_term)
1196  enable_flags |= L2_ARP_TERM;
1197  else
1198  disable_flags |= L2_ARP_TERM;
1199 
1200  if (enable_flags)
1201  bd_set_flags (vm, bd_index, enable_flags, 1 /* enable */ );
1202 
1203  if (disable_flags)
1204  bd_set_flags (vm, bd_index, disable_flags, 0 /* disable */ );
1205 
1206  bd_set_mac_age (vm, bd_index, a->mac_age);
1207 
1208  if (a->bd_tag)
1209  bd_set_bd_tag (vm, bd_index, a->bd_tag);
1210 
1211  }
1212  else
1213  {
1214  if (bd_index == ~0)
1215  return VNET_API_ERROR_NO_SUCH_ENTRY;
1216  if (bd_index == 0)
1217  return VNET_API_ERROR_BD_NOT_MODIFIABLE;
1218  if (vec_len (l2input_main.bd_configs[bd_index].members))
1219  return VNET_API_ERROR_BD_IN_USE;
1220  rv = bd_delete (bdm, bd_index);
1221  }
1222 
1223  return rv;
1224 }
1225 
1226 /**
1227  Create or delete bridge-domain.
1228  The CLI format:
1229  create bridge-domain <bd_index> [learn <0|1>] [forward <0|1>] [uu-flood <0|1>] [flood <0|1>]
1230  [arp-term <0|1>] [mac-age <nn>] [bd-tag <tag>] [del]
1231 */
1232 
1233 static clib_error_t *
1235  vlib_cli_command_t * cmd)
1236 {
1237  unformat_input_t _line_input, *line_input = &_line_input;
1238  clib_error_t *error = 0;
1239  u8 is_add = 1;
1240  u32 bd_id = ~0;
1241  u32 flood = 1, forward = 1, learn = 1, uu_flood = 1, arp_term = 0;
1242  u32 mac_age = 0;
1243  u8 *bd_tag = NULL;
1245  int rv;
1246 
1247  /* Get a line of input. */
1248  if (!unformat_user (input, unformat_line_input, line_input))
1249  return 0;
1250 
1251  while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
1252  {
1253  if (unformat (line_input, "%d", &bd_id))
1254  ;
1255  else if (unformat (line_input, "flood %d", &flood))
1256  ;
1257  else if (unformat (line_input, "uu-flood %d", &uu_flood))
1258  ;
1259  else if (unformat (line_input, "forward %d", &forward))
1260  ;
1261  else if (unformat (line_input, "learn %d", &learn))
1262  ;
1263  else if (unformat (line_input, "arp-term %d", &arp_term))
1264  ;
1265  else if (unformat (line_input, "mac-age %d", &mac_age))
1266  ;
1267  else if (unformat (line_input, "bd-tag %s", &bd_tag))
1268  ;
1269  else if (unformat (line_input, "del"))
1270  {
1271  is_add = 0;
1272  flood = uu_flood = forward = learn = 0;
1273  }
1274  else
1275  break;
1276  }
1277 
1278  if (bd_id == ~0)
1279  {
1280  error = clib_error_return (0, "bridge-domain-id not specified");
1281  goto done;
1282  }
1283 
1284  if (bd_id == 0)
1285  {
1286  error = clib_error_return (0, "bridge domain 0 can not be modified");
1287  goto done;
1288  }
1289 
1290  if (mac_age > 255)
1291  {
1292  error = clib_error_return (0, "mac age must be less than 256");
1293  goto done;
1294  }
1295  if ((bd_tag) && (strlen ((char *) bd_tag) > 63))
1296  {
1297  error = clib_error_return (0, "bd-tag cannot be longer than 63");
1298  goto done;
1299  }
1300 
1301  memset (a, 0, sizeof (*a));
1302  a->is_add = is_add;
1303  a->bd_id = bd_id;
1304  a->flood = (u8) flood;
1305  a->uu_flood = (u8) uu_flood;
1306  a->forward = (u8) forward;
1307  a->learn = (u8) learn;
1308  a->arp_term = (u8) arp_term;
1309  a->mac_age = (u8) mac_age;
1310  a->bd_tag = bd_tag;
1311 
1312  rv = bd_add_del (a);
1313 
1314  switch (rv)
1315  {
1316  case 0:
1317  if (is_add)
1318  vlib_cli_output (vm, "bridge-domain %d", bd_id);
1319  break;
1320  case VNET_API_ERROR_BD_IN_USE:
1321  error = clib_error_return (0, "bridge domain in use - remove members");
1322  goto done;
1323  case VNET_API_ERROR_NO_SUCH_ENTRY:
1324  error = clib_error_return (0, "bridge domain ID does not exist");
1325  goto done;
1326  case VNET_API_ERROR_BD_NOT_MODIFIABLE:
1327  error = clib_error_return (0, "bridge domain 0 can not be modified");
1328  goto done;
1329  case VNET_API_ERROR_BD_ID_EXCEED_MAX:
1330  error = clib_error_return (0, "bridge domain ID exceed 16M limit");
1331  goto done;
1332  default:
1333  error = clib_error_return (0, "bd_add_del returned %d", rv);
1334  goto done;
1335  }
1336 
1337 done:
1338  vec_free (bd_tag);
1339  unformat_free (line_input);
1340 
1341  return error;
1342 }
1343 
1344 
1345 /*?
1346  * Create/Delete bridge-domain instance
1347  *
1348  * @cliexpar
1349  * @parblock
1350  * Example of creating bridge-domain 1:
1351  * @cliexstart{create bridge-domain 1}
1352  * bridge-domain 1
1353  * @cliexend
1354  *
1355  * Example of creating bridge-domain 2 with enabling arp-term, mac-age 60:
1356  * @cliexstart{create bridge-domain 2 arp-term 1 mac-age 60}
1357  * bridge-domain 2
1358  *
1359  * vpp# show bridge-domain
1360  * ID Index BSN Age(min) Learning U-Forwrd UU-Flood Flooding ARP-Term BVI-Intf
1361  * 0 0 0 off off off off off off local0
1362  * 1 1 0 off on on off on off N/A
1363  * 2 2 0 60 on on off on on N/A
1364  *
1365  * @cliexend
1366  *
1367  * Example of delete bridge-domain 1:
1368  * @cliexstart{create bridge-domain 1 del}
1369  * @cliexend
1370  * @endparblock
1371 ?*/
1372 
1373 /* *INDENT-OFF* */
1374 VLIB_CLI_COMMAND (bd_create_cli, static) = {
1375  .path = "create bridge-domain",
1376  .short_help = "create bridge-domain <bridge-domain-id>"
1377  " [learn <0|1>] [forward <0|1>] [uu-flood <0|1>] [flood <0|1>] [arp-term <0|1>]"
1378  " [mac-age <nn>] [bd-tag <tag>] [del]",
1379  .function = bd_add_del_command_fn,
1380 };
1381 /* *INDENT-ON* */
1382 
1383 
1384 
1385 /*
1386  * fd.io coding-style-patch-verification: ON
1387  *
1388  * Local Variables:
1389  * eval: (c-set-style "gnu")
1390  * End:
1391  */
void bd_validate(l2_bridge_domain_t *bd_config)
Init bridge domain if not done already.
Definition: l2_bd.c:51
#define vec_validate(V, I)
Make sure vector is long enough for given index (no header, unspecified alignment) ...
Definition: vec.h:437
#define vec_foreach_index(var, v)
Iterate over vector indices.
#define hash_set(h, key, value)
Definition: hash.h:255
u32 uu_fwd_sw_if_index
Definition: l2_bd.h:78
u8 * format_vnet_sw_if_index_name_with_NA(u8 *s, va_list *args)
Format sw_if_index.
Definition: l2_fib.c:70
#define hash_unset(h, key)
Definition: hash.h:261
a
Definition: bitmap.h:538
vnet_main_t * vnet_get_main(void)
Definition: misc.c:47
u32 bvi_sw_if_index
Definition: l2_bd.h:72
unsigned long u64
Definition: types.h:89
#define NULL
Definition: clib.h:57
Definition: l2_bd.h:149
static void update_flood_count(l2_bridge_domain_t *bd_config)
Definition: l2_bd.c:131
int i
l2_flood_member_t * members
Definition: l2_bd.h:84
static uword * clib_bitmap_set(uword *ai, uword i, uword value)
Sets the ith bit of a bitmap to new_value Removes trailing zeros from the bitmap. ...
Definition: bitmap.h:167
static_always_inline u8 * l2fib_swif_seq_num(u32 sw_if_index)
Definition: l2_fib.h:472
uword unformat_user(unformat_input_t *input, unformat_function_t *func,...)
Definition: unformat.c:983
#define hash_set_mem(h, key, value)
Definition: hash.h:275
static vnet_sw_interface_t * vnet_get_sw_interface(vnet_main_t *vnm, u32 sw_if_index)
u8 * format(u8 *s, const char *fmt,...)
Definition: format.c:419
int bd_add_del(l2_bridge_domain_add_del_args_t *a)
Definition: l2_bd.c:1159
u32 bd_remove_member(l2_bridge_domain_t *bd_config, u32 sw_if_index)
Definition: l2_bd.c:185
#define L2_FLOOD_MEMBER_BVI
Definition: l2_bd.h:49
format_function_t format_vnet_sw_if_index_name
unsigned char u8
Definition: types.h:56
#define vec_reset_length(v)
Reset vector length to zero NULL-pointer tolerant.
format_function_t format_ip4_address
Definition: format.h:75
vnet_flood_class_t flood_class
Definition: interface.h:747
memset(h->entries, 0, sizeof(h->entries[0])*entries)
u8 * format_ethernet_address(u8 *s, va_list *args)
Definition: format.c:44
unformat_function_t unformat_ip4_address
Definition: format.h:70
#define VLIB_INIT_FUNCTION(x)
Definition: init.h:163
u32 sw_if_index
Definition: vxlan_gbp.api:39
void bd_add_member(l2_bridge_domain_t *bd_config, l2_flood_member_t *member)
Definition: l2_bd.c:140
static clib_error_t * bd_fwd(vlib_main_t *vm, unformat_input_t *input, vlib_cli_command_t *cmd)
Set bridge-domain forward enable/disable.
Definition: l2_bd.c:403
#define hash_foreach(key_var, value_var, h, body)
Definition: hash.h:442
clib_error_t * l2bd_init(vlib_main_t *vm)
Definition: l2_bd.c:219
#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
#define hash_get_pair(h, key)
Definition: hash.h:252
unsigned int u32
Definition: types.h:88
static u8 * format_vtr(u8 *s, va_list *args)
Definition: l2_bd.c:899
static void bd_set_bd_tag(vlib_main_t *vm, u32 bd_index, u8 *bd_tag)
Set the tag for the bridge domain.
Definition: l2_bd.c:311
uword * bd_index_by_bd_id
Definition: l2_bd.h:34
unformat_function_t unformat_line_input
Definition: format.h:282
#define BD_REMOVE_ERROR_OK
Definition: l2_bd.c:181
#define hash_create_mem(elts, key_bytes, value_bytes)
Definition: hash.h:661
#define hash_get(h, key)
Definition: hash.h:249
#define hash_unset_mem(h, key)
Definition: hash.h:291
static void vlib_process_signal_event(vlib_main_t *vm, uword node_index, uword type_opaque, uword data)
Definition: node_funcs.h:960
struct _unformat_input_t unformat_input_t
unsigned short u16
Definition: types.h:57
#define hash_free(h)
Definition: hash.h:310
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:793
static clib_error_t * bd_arp_entry(vlib_main_t *vm, unformat_input_t *input, vlib_cli_command_t *cmd)
Set bridge-domain arp entry add/delete.
Definition: l2_bd.c:810
static clib_error_t * bd_add_del_command_fn(vlib_main_t *vm, unformat_input_t *input, vlib_cli_command_t *cmd)
Create or delete bridge-domain.
Definition: l2_bd.c:1234
static clib_error_t * bd_flood(vlib_main_t *vm, unformat_input_t *input, vlib_cli_command_t *cmd)
Set bridge-domain flood enable/disable.
Definition: l2_bd.c:468
uword * bd_index_bitmap
Definition: l2_bd.h:37
#define hash_foreach_mem(key_var, value_var, h, body)
Definition: hash.h:461
static u8 * format_uu_cfg(u8 *s, va_list *args)
Definition: l2_bd.c:934
static u32 bd_is_valid(l2_bridge_domain_t *bd_config)
Definition: l2_bd.h:131
#define BD_REMOVE_ERROR_NOT_FOUND
Definition: l2_bd.c:182
static int bd_delete(bd_main_t *bdm, u32 bd_index)
Definition: l2_bd.c:95
u32 flags
Definition: vhost_user.h:115
unformat_function_t unformat_ip6_address
Definition: format.h:91
void bd_set_mac_age(vlib_main_t *vm, u32 bd_index, u8 age)
Set the mac age for the bridge domain.
Definition: l2_bd.c:288
u32 no_flood_count
Definition: l2_bd.h:96
#define UNFORMAT_END_OF_INPUT
Definition: format.h:144
format_function_t format_ip6_address
Definition: format.h:93
vlib_main_t * vm
Definition: buffer.c:294
u32 tun_master_count
Definition: l2_bd.h:90
u32 bd_add_del_ip_mac(u32 bd_index, u8 *ip_addr, u8 *mac_addr, u8 is_ip6, u8 is_add)
Add/delete IP address to MAC address mapping.
Definition: l2_bd.c:735
#define vec_free(V)
Free vector&#39;s memory (no header).
Definition: vec.h:339
u32 bd_set_flags(vlib_main_t *vm, u32 bd_index, bd_flags_t flags, u32 enable)
Set the learn/forward/flood flags for the bridge domain.
Definition: l2_bd.c:244
static clib_error_t * bd_learn(vlib_main_t *vm, unformat_input_t *input, vlib_cli_command_t *cmd)
Set bridge-domain learn enable/disable.
Definition: l2_bd.c:338
#define clib_memcpy(a, b, c)
Definition: string.h:75
uword * mac_by_ip6
Definition: l2_bd.h:100
static_always_inline l2_bridge_domain_t * l2input_bd_config(u32 bd_index)
Definition: l2_input.h:85
#define VLIB_CLI_COMMAND(x,...)
Definition: cli.h:155
static clib_error_t * bd_show(vlib_main_t *vm, unformat_input_t *input, vlib_cli_command_t *cmd)
Show bridge-domain state.
Definition: l2_bd.c:953
#define hash_create(elts, value_bytes)
Definition: hash.h:696
#define L2_BD_ID_MAX
Definition: l2_bd.h:114
uword unformat_ethernet_address(unformat_input_t *input, va_list *args)
Definition: format.c:233
#define ASSERT(truth)
#define vec_delete(V, N, M)
Delete N elements starting at element M.
Definition: vec.h:786
#define vec_insert_elts(V, E, N, M)
Insert N vector elements starting at element M, insert given elements (no header, unspecified alignme...
Definition: vec.h:765
static void clib_mem_free(void *p)
Definition: mem.h:205
u32 tun_normal_count
Definition: l2_bd.h:93
static void * clib_mem_alloc(uword size)
Definition: mem.h:132
static vlib_main_t * vlib_get_main(void)
Definition: global_funcs.h:23
static clib_error_t * bd_arp_term(vlib_main_t *vm, unformat_input_t *input, vlib_cli_command_t *cmd)
Set bridge-domain arp term enable/disable.
Definition: l2_bd.c:598
vlib_main_t * vlib_main
Definition: l2_bd.h:40
static clib_error_t * bd_mac_age(vlib_main_t *vm, unformat_input_t *input, vlib_cli_command_t *cmd)
Definition: l2_bd.c:636
l2input_main_t l2input_main
Definition: l2_input.c:113
u32 feature_bitmap
Definition: l2_bd.h:67
#define vec_len(v)
Number of elements in vector (rvalue-only, NULL tolerant)
u64 uword
Definition: types.h:112
static void unformat_free(unformat_input_t *i)
Definition: format.h:162
l2_bridge_domain_t * bd_configs
Definition: l2_input.h:64
static clib_error_t * bd_uu_flood(vlib_main_t *vm, unformat_input_t *input, vlib_cli_command_t *cmd)
Set bridge-domain unknown-unicast flood enable/disable.
Definition: l2_bd.c:533
#define hash_get_mem(h, key)
Definition: hash.h:269
u32 l2vtr_get(vlib_main_t *vlib_main, vnet_main_t *vnet_main, u32 sw_if_index, u32 *vtr_op, u32 *push_dot1q, u32 *vtr_tag1, u32 *vtr_tag2)
Get vtag tag rewrite on the given interface.
Definition: l2_vtr.c:347
u8 * format_unformat_error(u8 *s, va_list *va)
Definition: unformat.c:91
#define vec_foreach(var, vec)
Vector iterator.
uword * mac_by_ip4
Definition: l2_bd.h:99
u32 sw_if_index
Definition: l2_bd.h:53
u32 bd_find_index(bd_main_t *bdm, u32 bd_id)
Get a bridge domain.
Definition: l2_bd.c:69
static uword clib_bitmap_first_clear(uword *ai)
Return the lowest numbered clear bit in a bitmap.
Definition: bitmap.h:445
bd_main_t bd_main
Definition: l2_bd.c:44
vlib_node_registration_t l2fib_mac_age_scanner_process_node
(constructor) VLIB_REGISTER_NODE (l2fib_mac_age_scanner_process_node)
Definition: l2_fib.c:1223
void vlib_cli_output(vlib_main_t *vm, char *fmt,...)
Definition: cli.c:725
u32 bd_add_bd_index(bd_main_t *bdm, u32 bd_id)
Create a bridge domain.
Definition: l2_bd.c:78
uword key
Definition: hash.h:162
uword unformat(unformat_input_t *i, const char *fmt,...)
Definition: unformat.c:972
CLIB vectors are ubiquitous dynamically resized arrays with by user defined "headers".
static uword unformat_check_input(unformat_input_t *i)
Definition: format.h:170
enum bd_flags_t_ bd_flags_t