Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 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> |
Damjan Marion | d171d48 | 2016-12-05 14:16:38 +0100 | [diff] [blame] | 26 | #include <vnet/l2/l2_learn.h> |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 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 | |
Billy McFall | 22aa3e9 | 2016-09-09 08:46:40 -0400 | [diff] [blame] | 36 | /** |
| 37 | * @file |
| 38 | * @brief Ethernet Bridge Domain. |
| 39 | * |
| 40 | * Code in this file manages Layer 2 bridge domains. |
| 41 | * |
| 42 | */ |
| 43 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 44 | bd_main_t bd_main; |
| 45 | |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 46 | /** |
Chris Luke | 16bcf7d | 2016-09-01 14:31:46 -0400 | [diff] [blame] | 47 | Init bridge domain if not done already. |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 48 | For feature bitmap, set all bits except ARP termination |
| 49 | */ |
Damjan Marion | 99d8c76 | 2015-12-14 15:01:56 +0100 | [diff] [blame] | 50 | void |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 51 | bd_validate (l2_bridge_domain_t * bd_config) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 52 | { |
Eyal Bari | b1352ed | 2017-04-07 23:14:17 +0300 | [diff] [blame] | 53 | if (bd_is_valid (bd_config)) |
| 54 | return; |
Neale Ranns | b474380 | 2018-09-05 09:13:57 -0700 | [diff] [blame^] | 55 | bd_config->feature_bitmap = ~(L2INPUT_FEAT_ARP_TERM | L2INPUT_FEAT_UU_FWD); |
Eyal Bari | b1352ed | 2017-04-07 23:14:17 +0300 | [diff] [blame] | 56 | bd_config->bvi_sw_if_index = ~0; |
Neale Ranns | b474380 | 2018-09-05 09:13:57 -0700 | [diff] [blame^] | 57 | bd_config->uu_fwd_sw_if_index = ~0; |
Eyal Bari | b1352ed | 2017-04-07 23:14:17 +0300 | [diff] [blame] | 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; |
Eyal Bari | b6b04f0 | 2018-07-11 14:01:36 +0300 | [diff] [blame] | 62 | bd_config->no_flood_count = 0; |
Eyal Bari | b1352ed | 2017-04-07 23:14:17 +0300 | [diff] [blame] | 63 | bd_config->mac_by_ip4 = 0; |
| 64 | bd_config->mac_by_ip6 = hash_create_mem (0, sizeof (ip6_address_t), |
| 65 | sizeof (uword)); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 66 | } |
| 67 | |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 68 | u32 |
Eyal Bari | b1352ed | 2017-04-07 23:14:17 +0300 | [diff] [blame] | 69 | bd_find_index (bd_main_t * bdm, u32 bd_id) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 70 | { |
Eyal Bari | b1352ed | 2017-04-07 23:14:17 +0300 | [diff] [blame] | 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 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 76 | |
Eyal Bari | b1352ed | 2017-04-07 23:14:17 +0300 | [diff] [blame] | 77 | u32 |
| 78 | bd_add_bd_index (bd_main_t * bdm, u32 bd_id) |
| 79 | { |
| 80 | ASSERT (!hash_get (bdm->bd_index_by_bd_id, bd_id)); |
| 81 | u32 rv = clib_bitmap_first_clear (bdm->bd_index_bitmap); |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 82 | |
Eyal Bari | b1352ed | 2017-04-07 23:14:17 +0300 | [diff] [blame] | 83 | /* mark this index taken */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 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 | |
| 88 | vec_validate (l2input_main.bd_configs, rv); |
| 89 | l2input_main.bd_configs[rv].bd_id = bd_id; |
| 90 | |
| 91 | return rv; |
| 92 | } |
| 93 | |
Eyal Bari | b1352ed | 2017-04-07 23:14:17 +0300 | [diff] [blame] | 94 | static int |
| 95 | bd_delete (bd_main_t * bdm, u32 bd_index) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 96 | { |
John Lo | d77630a | 2017-04-28 00:33:36 -0400 | [diff] [blame] | 97 | l2_bridge_domain_t *bd = &l2input_main.bd_configs[bd_index]; |
| 98 | u32 bd_id = bd->bd_id; |
John Lo | d48c8eb | 2017-05-05 12:35:25 -0400 | [diff] [blame] | 99 | u64 mac_addr; |
| 100 | ip6_address_t *ip6_addr_key; |
Eyal Bari | afc47aa | 2017-04-20 14:45:17 +0300 | [diff] [blame] | 101 | |
John Lo | d48c8eb | 2017-05-05 12:35:25 -0400 | [diff] [blame] | 102 | /* flush non-static MACs in BD and removed bd_id from hash table */ |
| 103 | l2fib_flush_bd_mac (vlib_get_main (), bd_index); |
Eyal Bari | b1352ed | 2017-04-07 23:14:17 +0300 | [diff] [blame] | 104 | hash_unset (bdm->bd_index_by_bd_id, bd_id); |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 105 | |
| 106 | /* mark this index clear */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 107 | bdm->bd_index_bitmap = clib_bitmap_set (bdm->bd_index_bitmap, bd_index, 0); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 108 | |
John Lo | d77630a | 2017-04-28 00:33:36 -0400 | [diff] [blame] | 109 | /* clear BD config for reuse: bd_id to -1 and clear feature_bitmap */ |
| 110 | bd->bd_id = ~0; |
| 111 | bd->feature_bitmap = 0; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 112 | |
Jerome Tollet | 4830414 | 2017-09-05 12:13:22 +0100 | [diff] [blame] | 113 | /* free BD tag */ |
| 114 | vec_free (bd->bd_tag); |
| 115 | |
John Lo | d48c8eb | 2017-05-05 12:35:25 -0400 | [diff] [blame] | 116 | /* free memory used by BD */ |
John Lo | d77630a | 2017-04-28 00:33:36 -0400 | [diff] [blame] | 117 | vec_free (bd->members); |
| 118 | hash_free (bd->mac_by_ip4); |
John Lo | d48c8eb | 2017-05-05 12:35:25 -0400 | [diff] [blame] | 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* */ |
John Lo | d77630a | 2017-04-28 00:33:36 -0400 | [diff] [blame] | 125 | hash_free (bd->mac_by_ip6); |
John Lo | da1f2c7 | 2017-03-24 20:11:15 -0400 | [diff] [blame] | 126 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 127 | return 0; |
| 128 | } |
| 129 | |
Eyal Bari | c5b1360 | 2016-11-24 19:42:43 +0200 | [diff] [blame] | 130 | static void |
| 131 | update_flood_count (l2_bridge_domain_t * bd_config) |
| 132 | { |
Neale Ranns | 87dad11 | 2018-04-09 01:53:01 -0700 | [diff] [blame] | 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; |
Eyal Bari | c5b1360 | 2016-11-24 19:42:43 +0200 | [diff] [blame] | 137 | } |
| 138 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 139 | void |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 140 | bd_add_member (l2_bridge_domain_t * bd_config, l2_flood_member_t * member) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 141 | { |
Neale Ranns | 87dad11 | 2018-04-09 01:53:01 -0700 | [diff] [blame] | 142 | u32 ix = 0; |
Eyal Bari | c5b1360 | 2016-11-24 19:42:43 +0200 | [diff] [blame] | 143 | vnet_sw_interface_t *sw_if = vnet_get_sw_interface |
| 144 | (vnet_get_main (), member->sw_if_index); |
| 145 | |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 146 | /* |
| 147 | * Add one element to the vector |
Neale Ranns | 87dad11 | 2018-04-09 01:53:01 -0700 | [diff] [blame] | 148 | * vector is ordered [ bvi, normal/tun_masters..., tun_normals... no_flood] |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 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 |
Neale Ranns | 87dad11 | 2018-04-09 01:53:01 -0700 | [diff] [blame] | 152 | * flooding walks the vector in reverse. The flood-count determines where |
| 153 | * in the member list to start the walk from. |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 154 | */ |
Eyal Bari | c5b1360 | 2016-11-24 19:42:43 +0200 | [diff] [blame] | 155 | switch (sw_if->flood_class) |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 156 | { |
Neale Ranns | 87dad11 | 2018-04-09 01:53:01 -0700 | [diff] [blame] | 157 | case VNET_FLOOD_CLASS_NO_FLOOD: |
| 158 | bd_config->no_flood_count++; |
| 159 | ix = vec_len (bd_config->members); |
| 160 | break; |
| 161 | case VNET_FLOOD_CLASS_BVI: |
| 162 | ix = 0; |
| 163 | break; |
Eyal Bari | c5b1360 | 2016-11-24 19:42:43 +0200 | [diff] [blame] | 164 | case VNET_FLOOD_CLASS_TUNNEL_MASTER: |
| 165 | bd_config->tun_master_count++; |
| 166 | /* Fall through */ |
Eyal Bari | c5b1360 | 2016-11-24 19:42:43 +0200 | [diff] [blame] | 167 | case VNET_FLOOD_CLASS_NORMAL: |
Neale Ranns | 87dad11 | 2018-04-09 01:53:01 -0700 | [diff] [blame] | 168 | ix = (vec_len (bd_config->members) - |
| 169 | bd_config->tun_normal_count - bd_config->no_flood_count); |
Eyal Bari | c5b1360 | 2016-11-24 19:42:43 +0200 | [diff] [blame] | 170 | break; |
| 171 | case VNET_FLOOD_CLASS_TUNNEL_NORMAL: |
Neale Ranns | 87dad11 | 2018-04-09 01:53:01 -0700 | [diff] [blame] | 172 | ix = (vec_len (bd_config->members) - bd_config->no_flood_count); |
Eyal Bari | c5b1360 | 2016-11-24 19:42:43 +0200 | [diff] [blame] | 173 | bd_config->tun_normal_count++; |
| 174 | break; |
| 175 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 176 | |
Eyal Bari | c5b1360 | 2016-11-24 19:42:43 +0200 | [diff] [blame] | 177 | vec_insert_elts (bd_config->members, member, 1, ix); |
| 178 | update_flood_count (bd_config); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 179 | } |
| 180 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 181 | #define BD_REMOVE_ERROR_OK 0 |
| 182 | #define BD_REMOVE_ERROR_NOT_FOUND 1 |
| 183 | |
| 184 | u32 |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 185 | bd_remove_member (l2_bridge_domain_t * bd_config, u32 sw_if_index) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 186 | { |
| 187 | u32 ix; |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 188 | |
| 189 | /* Find and delete the member */ |
| 190 | vec_foreach_index (ix, bd_config->members) |
| 191 | { |
Eyal Bari | c5b1360 | 2016-11-24 19:42:43 +0200 | [diff] [blame] | 192 | l2_flood_member_t *m = vec_elt_at_index (bd_config->members, ix); |
| 193 | if (m->sw_if_index == sw_if_index) |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 194 | { |
Eyal Bari | c5b1360 | 2016-11-24 19:42:43 +0200 | [diff] [blame] | 195 | vnet_sw_interface_t *sw_if = vnet_get_sw_interface |
| 196 | (vnet_get_main (), sw_if_index); |
| 197 | |
| 198 | if (sw_if->flood_class != VNET_FLOOD_CLASS_NORMAL) |
| 199 | { |
| 200 | if (sw_if->flood_class == VNET_FLOOD_CLASS_TUNNEL_MASTER) |
| 201 | bd_config->tun_master_count--; |
| 202 | else if (sw_if->flood_class == VNET_FLOOD_CLASS_TUNNEL_NORMAL) |
| 203 | bd_config->tun_normal_count--; |
Eyal Bari | b6b04f0 | 2018-07-11 14:01:36 +0300 | [diff] [blame] | 204 | else if (sw_if->flood_class == VNET_FLOOD_CLASS_NO_FLOOD) |
| 205 | bd_config->no_flood_count--; |
Eyal Bari | c5b1360 | 2016-11-24 19:42:43 +0200 | [diff] [blame] | 206 | } |
Eyal Bari | 25b3667 | 2017-03-02 10:43:19 +0200 | [diff] [blame] | 207 | vec_delete (bd_config->members, 1, ix); |
Eyal Bari | c5b1360 | 2016-11-24 19:42:43 +0200 | [diff] [blame] | 208 | update_flood_count (bd_config); |
| 209 | |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 210 | return BD_REMOVE_ERROR_OK; |
| 211 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 212 | } |
| 213 | |
| 214 | return BD_REMOVE_ERROR_NOT_FOUND; |
| 215 | } |
| 216 | |
| 217 | |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 218 | clib_error_t * |
| 219 | l2bd_init (vlib_main_t * vm) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 220 | { |
| 221 | bd_main_t *bdm = &bd_main; |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 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 | */ |
Eyal Bari | b1352ed | 2017-04-07 23:14:17 +0300 | [diff] [blame] | 228 | u32 bd_index = bd_add_bd_index (bdm, 0); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 229 | ASSERT (bd_index == 0); |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 230 | l2input_main.bd_configs[0].feature_bitmap = L2INPUT_FEAT_DROP; |
Choonho Son | 0548079 | 2017-03-29 20:07:45 +0900 | [diff] [blame] | 231 | |
| 232 | bdm->vlib_main = vm; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 233 | return 0; |
| 234 | } |
| 235 | |
| 236 | VLIB_INIT_FUNCTION (l2bd_init); |
| 237 | |
| 238 | |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 239 | /** |
Chris Luke | 16bcf7d | 2016-09-01 14:31:46 -0400 | [diff] [blame] | 240 | Set the learn/forward/flood flags for the bridge domain. |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 241 | Return 0 if ok, non-zero if for an error. |
| 242 | */ |
| 243 | u32 |
Neale Ranns | b474380 | 2018-09-05 09:13:57 -0700 | [diff] [blame^] | 244 | bd_set_flags (vlib_main_t * vm, u32 bd_index, bd_flags_t flags, u32 enable) |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 245 | { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 246 | |
Eyal Bari | afc47aa | 2017-04-20 14:45:17 +0300 | [diff] [blame] | 247 | l2_bridge_domain_t *bd_config = l2input_bd_config (bd_index); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 248 | bd_validate (bd_config); |
Eyal Bari | afc47aa | 2017-04-20 14:45:17 +0300 | [diff] [blame] | 249 | u32 feature_bitmap = 0; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 250 | |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 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 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 271 | |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 272 | if (enable) |
| 273 | { |
| 274 | bd_config->feature_bitmap |= feature_bitmap; |
| 275 | } |
| 276 | else |
| 277 | { |
| 278 | bd_config->feature_bitmap &= ~feature_bitmap; |
| 279 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 280 | |
John Lo | 8d00fff | 2017-08-03 00:35:36 -0400 | [diff] [blame] | 281 | return bd_config->feature_bitmap; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 282 | } |
| 283 | |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 284 | /** |
Damjan Marion | d171d48 | 2016-12-05 14:16:38 +0100 | [diff] [blame] | 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 | |
| 293 | vec_validate (l2input_main.bd_configs, bd_index); |
| 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) |
Eyal Bari | fead670 | 2017-04-04 04:46:32 +0300 | [diff] [blame] | 299 | enable |= bd_config->bd_id != ~0 && bd_config->mac_age != 0; |
Damjan Marion | d171d48 | 2016-12-05 14:16:38 +0100 | [diff] [blame] | 300 | |
| 301 | vlib_process_signal_event (vm, l2fib_mac_age_scanner_process_node.index, |
| 302 | enable ? L2_MAC_AGE_PROCESS_EVENT_START : |
| 303 | L2_MAC_AGE_PROCESS_EVENT_STOP, 0); |
| 304 | } |
| 305 | |
Jerome Tollet | 50570ec | 2017-09-14 12:53:56 +0100 | [diff] [blame] | 306 | /** |
| 307 | Set the tag for the bridge domain. |
| 308 | */ |
Jerome Tollet | 4830414 | 2017-09-05 12:13:22 +0100 | [diff] [blame] | 309 | |
Jerome Tollet | 50570ec | 2017-09-14 12:53:56 +0100 | [diff] [blame] | 310 | static void |
Jerome Tollet | 4830414 | 2017-09-05 12:13:22 +0100 | [diff] [blame] | 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; |
| 315 | vec_validate (l2input_main.bd_configs, bd_index); |
| 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 | |
Damjan Marion | d171d48 | 2016-12-05 14:16:38 +0100 | [diff] [blame] | 332 | /** |
Chris Luke | 16bcf7d | 2016-09-01 14:31:46 -0400 | [diff] [blame] | 333 | Set bridge-domain learn enable/disable. |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 334 | The CLI format is: |
| 335 | set bridge-domain learn <bd_id> [disable] |
| 336 | */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 337 | static clib_error_t * |
| 338 | bd_learn (vlib_main_t * vm, |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 339 | unformat_input_t * input, vlib_cli_command_t * cmd) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 340 | { |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 341 | bd_main_t *bdm = &bd_main; |
| 342 | clib_error_t *error = 0; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 343 | u32 bd_index, bd_id; |
| 344 | u32 enable; |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 345 | uword *p; |
| 346 | |
| 347 | if (!unformat (input, "%d", &bd_id)) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 348 | { |
| 349 | error = clib_error_return (0, "expecting bridge-domain id but got `%U'", |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 350 | format_unformat_error, input); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 351 | goto done; |
| 352 | } |
| 353 | |
Jon Loeliger | 1c7d485 | 2017-05-02 11:06:23 -0500 | [diff] [blame] | 354 | if (bd_id == 0) |
| 355 | return clib_error_return (0, |
| 356 | "No operations on the default bridge domain are supported"); |
| 357 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 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); |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 362 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 363 | bd_index = p[0]; |
| 364 | |
| 365 | enable = 1; |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 366 | if (unformat (input, "disable")) |
| 367 | { |
| 368 | enable = 0; |
| 369 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 370 | |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 371 | /* set the bridge domain flag */ |
John Lo | 8d00fff | 2017-08-03 00:35:36 -0400 | [diff] [blame] | 372 | bd_set_flags (vm, bd_index, L2_LEARN, enable); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 373 | |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 374 | done: |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 375 | return error; |
| 376 | } |
| 377 | |
Billy McFall | 22aa3e9 | 2016-09-09 08:46:40 -0400 | [diff] [blame] | 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 | ?*/ |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 389 | /* *INDENT-OFF* */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 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 | }; |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 395 | /* *INDENT-ON* */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 396 | |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 397 | /** |
Chris Luke | 16bcf7d | 2016-09-01 14:31:46 -0400 | [diff] [blame] | 398 | Set bridge-domain forward enable/disable. |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 399 | The CLI format is: |
| 400 | set bridge-domain forward <bd_index> [disable] |
| 401 | */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 402 | static clib_error_t * |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 403 | bd_fwd (vlib_main_t * vm, unformat_input_t * input, vlib_cli_command_t * cmd) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 404 | { |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 405 | bd_main_t *bdm = &bd_main; |
| 406 | clib_error_t *error = 0; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 407 | u32 bd_index, bd_id; |
| 408 | u32 enable; |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 409 | uword *p; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 410 | |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 411 | if (!unformat (input, "%d", &bd_id)) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 412 | { |
| 413 | error = clib_error_return (0, "expecting bridge-domain id but got `%U'", |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 414 | format_unformat_error, input); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 415 | goto done; |
| 416 | } |
| 417 | |
Jon Loeliger | 1c7d485 | 2017-05-02 11:06:23 -0500 | [diff] [blame] | 418 | if (bd_id == 0) |
| 419 | return clib_error_return (0, |
| 420 | "No operations on the default bridge domain are supported"); |
| 421 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 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); |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 426 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 427 | bd_index = p[0]; |
| 428 | |
| 429 | enable = 1; |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 430 | if (unformat (input, "disable")) |
| 431 | { |
| 432 | enable = 0; |
| 433 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 434 | |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 435 | /* set the bridge domain flag */ |
John Lo | 8d00fff | 2017-08-03 00:35:36 -0400 | [diff] [blame] | 436 | bd_set_flags (vm, bd_index, L2_FWD, enable); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 437 | |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 438 | done: |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 439 | return error; |
| 440 | } |
| 441 | |
Billy McFall | 22aa3e9 | 2016-09-09 08:46:40 -0400 | [diff] [blame] | 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 | ?*/ |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 454 | /* *INDENT-OFF* */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 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 | }; |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 460 | /* *INDENT-ON* */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 461 | |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 462 | /** |
Chris Luke | 16bcf7d | 2016-09-01 14:31:46 -0400 | [diff] [blame] | 463 | Set bridge-domain flood enable/disable. |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 464 | The CLI format is: |
| 465 | set bridge-domain flood <bd_index> [disable] |
| 466 | */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 467 | static clib_error_t * |
| 468 | bd_flood (vlib_main_t * vm, |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 469 | unformat_input_t * input, vlib_cli_command_t * cmd) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 470 | { |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 471 | bd_main_t *bdm = &bd_main; |
| 472 | clib_error_t *error = 0; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 473 | u32 bd_index, bd_id; |
| 474 | u32 enable; |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 475 | uword *p; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 476 | |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 477 | if (!unformat (input, "%d", &bd_id)) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 478 | { |
| 479 | error = clib_error_return (0, "expecting bridge-domain id but got `%U'", |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 480 | format_unformat_error, input); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 481 | goto done; |
| 482 | } |
| 483 | |
Jon Loeliger | 1c7d485 | 2017-05-02 11:06:23 -0500 | [diff] [blame] | 484 | if (bd_id == 0) |
| 485 | return clib_error_return (0, |
| 486 | "No operations on the default bridge domain are supported"); |
| 487 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 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); |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 492 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 493 | bd_index = p[0]; |
| 494 | |
| 495 | enable = 1; |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 496 | if (unformat (input, "disable")) |
| 497 | { |
| 498 | enable = 0; |
| 499 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 500 | |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 501 | /* set the bridge domain flag */ |
John Lo | 8d00fff | 2017-08-03 00:35:36 -0400 | [diff] [blame] | 502 | bd_set_flags (vm, bd_index, L2_FLOOD, enable); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 503 | |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 504 | done: |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 505 | return error; |
| 506 | } |
| 507 | |
Billy McFall | 22aa3e9 | 2016-09-09 08:46:40 -0400 | [diff] [blame] | 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 | ?*/ |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 519 | /* *INDENT-OFF* */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 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 | }; |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 525 | /* *INDENT-ON* */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 526 | |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 527 | /** |
Andrey "Zed" Zaikin | 701625b | 2018-04-18 17:07:07 +0300 | [diff] [blame] | 528 | Set bridge-domain unknown-unicast flood enable/disable. |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 529 | The CLI format is: |
| 530 | set bridge-domain uu-flood <bd_index> [disable] |
| 531 | */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 532 | static clib_error_t * |
| 533 | bd_uu_flood (vlib_main_t * vm, |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 534 | unformat_input_t * input, vlib_cli_command_t * cmd) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 535 | { |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 536 | bd_main_t *bdm = &bd_main; |
| 537 | clib_error_t *error = 0; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 538 | u32 bd_index, bd_id; |
| 539 | u32 enable; |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 540 | uword *p; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 541 | |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 542 | if (!unformat (input, "%d", &bd_id)) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 543 | { |
| 544 | error = clib_error_return (0, "expecting bridge-domain id but got `%U'", |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 545 | format_unformat_error, input); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 546 | goto done; |
| 547 | } |
| 548 | |
Jon Loeliger | 1c7d485 | 2017-05-02 11:06:23 -0500 | [diff] [blame] | 549 | if (bd_id == 0) |
| 550 | return clib_error_return (0, |
| 551 | "No operations on the default bridge domain are supported"); |
| 552 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 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); |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 557 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 558 | bd_index = p[0]; |
| 559 | |
| 560 | enable = 1; |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 561 | if (unformat (input, "disable")) |
| 562 | { |
| 563 | enable = 0; |
| 564 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 565 | |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 566 | /* set the bridge domain flag */ |
John Lo | 8d00fff | 2017-08-03 00:35:36 -0400 | [diff] [blame] | 567 | bd_set_flags (vm, bd_index, L2_UU_FLOOD, enable); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 568 | |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 569 | done: |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 570 | return error; |
| 571 | } |
| 572 | |
Billy McFall | 22aa3e9 | 2016-09-09 08:46:40 -0400 | [diff] [blame] | 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 | ?*/ |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 584 | /* *INDENT-OFF* */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 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 | }; |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 590 | /* *INDENT-ON* */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 591 | |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 592 | /** |
Chris Luke | 16bcf7d | 2016-09-01 14:31:46 -0400 | [diff] [blame] | 593 | Set bridge-domain arp term enable/disable. |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 594 | The CLI format is: |
| 595 | set bridge-domain arp term <bridge-domain-id> [disable] |
| 596 | */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 597 | static clib_error_t * |
| 598 | bd_arp_term (vlib_main_t * vm, |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 599 | unformat_input_t * input, vlib_cli_command_t * cmd) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 600 | { |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 601 | bd_main_t *bdm = &bd_main; |
| 602 | clib_error_t *error = 0; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 603 | u32 bd_index, bd_id; |
| 604 | u32 enable; |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 605 | uword *p; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 606 | |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 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 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 613 | |
Jon Loeliger | 1c7d485 | 2017-05-02 11:06:23 -0500 | [diff] [blame] | 614 | if (bd_id == 0) |
| 615 | return clib_error_return (0, |
| 616 | "No operations on the default bridge domain are supported"); |
| 617 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 618 | p = hash_get (bdm->bd_index_by_bd_id, bd_id); |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 619 | if (p) |
| 620 | bd_index = *p; |
| 621 | else |
| 622 | return clib_error_return (0, "No such bridge domain %d", bd_id); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 623 | |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 624 | enable = 1; |
| 625 | if (unformat (input, "disable")) |
| 626 | enable = 0; |
| 627 | |
| 628 | /* set the bridge domain flag */ |
John Lo | 8d00fff | 2017-08-03 00:35:36 -0400 | [diff] [blame] | 629 | bd_set_flags (vm, bd_index, L2_ARP_TERM, enable); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 630 | |
| 631 | done: |
| 632 | return error; |
| 633 | } |
| 634 | |
Damjan Marion | d171d48 | 2016-12-05 14:16:38 +0100 | [diff] [blame] | 635 | static clib_error_t * |
| 636 | bd_mac_age (vlib_main_t * vm, |
| 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 | |
Jon Loeliger | 1c7d485 | 2017-05-02 11:06:23 -0500 | [diff] [blame] | 652 | if (bd_id == 0) |
| 653 | return clib_error_return (0, |
| 654 | "No operations on the default bridge domain are supported"); |
| 655 | |
Damjan Marion | d171d48 | 2016-12-05 14:16:38 +0100 | [diff] [blame] | 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 | |
Billy McFall | 22aa3e9 | 2016-09-09 08:46:40 -0400 | [diff] [blame] | 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 | ?*/ |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 714 | /* *INDENT-OFF* */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 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 | }; |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 720 | /* *INDENT-ON* */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 721 | |
| 722 | |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 723 | /** |
Chris Luke | 16bcf7d | 2016-09-01 14:31:46 -0400 | [diff] [blame] | 724 | * Add/delete IP address to MAC address mapping. |
| 725 | * |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 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. |
Chris Luke | 16bcf7d | 2016-09-01 14:31:46 -0400 | [diff] [blame] | 729 | * |
| 730 | * @warning This only works for 64-bit processor with 8-byte uword; |
Paul Vinciguerra | bdc0e6b | 2018-09-22 05:32:50 -0700 | [diff] [blame] | 731 | * which means this code *WILL NOT WORK* for a 32-bit processor with |
Chris Luke | 16bcf7d | 2016-09-01 14:31:46 -0400 | [diff] [blame] | 732 | * 4-byte uword. |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 733 | */ |
| 734 | u32 |
| 735 | bd_add_del_ip_mac (u32 bd_index, |
| 736 | u8 * ip_addr, u8 * mac_addr, u8 is_ip6, u8 is_add) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 737 | { |
Eyal Bari | afc47aa | 2017-04-20 14:45:17 +0300 | [diff] [blame] | 738 | l2_bridge_domain_t *bd_cfg = l2input_bd_config (bd_index); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 739 | u64 new_mac = *(u64 *) mac_addr; |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 740 | u64 *old_mac; |
| 741 | u16 *mac16 = (u16 *) & new_mac; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 742 | |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 743 | ASSERT (sizeof (uword) == sizeof (u64)); /* make sure uword is 8 bytes */ |
Eyal Bari | afc47aa | 2017-04-20 14:45:17 +0300 | [diff] [blame] | 744 | ASSERT (bd_is_valid (bd_cfg)); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 745 | |
Paul Vinciguerra | bdc0e6b | 2018-09-22 05:32:50 -0700 | [diff] [blame] | 746 | mac16[3] = 0; /* Clear last 2 unused bytes of the 8-byte MAC address */ |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 747 | if (is_ip6) |
| 748 | { |
John Lo | 1edfba9 | 2016-08-27 01:11:57 -0400 | [diff] [blame] | 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) |
Paul Vinciguerra | bdc0e6b | 2018-09-22 05:32:50 -0700 | [diff] [blame] | 755 | { /* new entry - allocate and create ip6 address key */ |
John Lo | 1edfba9 | 2016-08-27 01:11:57 -0400 | [diff] [blame] | 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 |
Paul Vinciguerra | bdc0e6b | 2018-09-22 05:32:50 -0700 | [diff] [blame] | 764 | { /* update mac for ip6 address */ |
John Lo | 1edfba9 | 2016-08-27 01:11:57 -0400 | [diff] [blame] | 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 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 782 | } |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 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 | { |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 789 | if (old_mac && (*old_mac == new_mac)) |
John Lo | 1edfba9 | 2016-08-27 01:11:57 -0400 | [diff] [blame] | 790 | return 0; /* mac entry already exist */ |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 791 | hash_set (bd_cfg->mac_by_ip4, ip4_addr.as_u32, new_mac); |
| 792 | } |
| 793 | else |
| 794 | { |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 795 | if (old_mac && (*old_mac == new_mac)) |
John Lo | 1edfba9 | 2016-08-27 01:11:57 -0400 | [diff] [blame] | 796 | hash_unset (bd_cfg->mac_by_ip4, ip4_addr.as_u32); |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 797 | else |
John Lo | 1edfba9 | 2016-08-27 01:11:57 -0400 | [diff] [blame] | 798 | return 1; |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 799 | } |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 800 | } |
John Lo | 1edfba9 | 2016-08-27 01:11:57 -0400 | [diff] [blame] | 801 | return 0; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 802 | } |
| 803 | |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 804 | /** |
Chris Luke | 16bcf7d | 2016-09-01 14:31:46 -0400 | [diff] [blame] | 805 | Set bridge-domain arp entry add/delete. |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 806 | The CLI format is: |
Billy McFall | 22aa3e9 | 2016-09-09 08:46:40 -0400 | [diff] [blame] | 807 | set bridge-domain arp entry <bridge-domain-id> <ip-addr> <mac-addr> [del] |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 808 | */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 809 | static clib_error_t * |
| 810 | bd_arp_entry (vlib_main_t * vm, |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 811 | unformat_input_t * input, vlib_cli_command_t * cmd) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 812 | { |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 813 | bd_main_t *bdm = &bd_main; |
| 814 | clib_error_t *error = 0; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 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]; |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 820 | uword *p; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 821 | |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 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 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 828 | |
Jon Loeliger | 1c7d485 | 2017-05-02 11:06:23 -0500 | [diff] [blame] | 829 | if (bd_id == 0) |
| 830 | return clib_error_return (0, |
| 831 | "No operations on the default bridge domain are supported"); |
| 832 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 833 | p = hash_get (bdm->bd_index_by_bd_id, bd_id); |
| 834 | |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 835 | if (p) |
| 836 | bd_index = *p; |
| 837 | else |
| 838 | return clib_error_return (0, "No such bridge domain %d", bd_id); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 839 | |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 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 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 854 | |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 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", |
John Lo | 1edfba9 | 2016-08-27 01:11:57 -0400 | [diff] [blame] | 872 | is_ip6 ? |
| 873 | format_ip4_address : format_ip6_address, |
| 874 | ip_addr, format_ethernet_address, mac_addr); |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 875 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 876 | |
| 877 | done: |
| 878 | return error; |
| 879 | } |
| 880 | |
Billy McFall | 22aa3e9 | 2016-09-09 08:46:40 -0400 | [diff] [blame] | 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 | ?*/ |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 890 | /* *INDENT-OFF* */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 891 | VLIB_CLI_COMMAND (bd_arp_entry_cli, static) = { |
| 892 | .path = "set bridge-domain arp entry", |
Billy McFall | 22aa3e9 | 2016-09-09 08:46:40 -0400 | [diff] [blame] | 893 | .short_help = "set bridge-domain arp entry <bridge-domain-id> <ip-addr> <mac-addr> [del]", |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 894 | .function = bd_arp_entry, |
| 895 | }; |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 896 | /* *INDENT-ON* */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 897 | |
Neale Ranns | b474380 | 2018-09-05 09:13:57 -0700 | [diff] [blame^] | 898 | static u8 * |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 899 | format_vtr (u8 * s, va_list * args) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 900 | { |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 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 | { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 907 | case L2_VTR_DISABLED: |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 908 | return format (s, "none"); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 909 | case L2_VTR_PUSH_1: |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 910 | return format (s, "push-1 %s %d", dot1q ? "dot1q" : "dot1ad", tag1); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 911 | case L2_VTR_PUSH_2: |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 912 | return format (s, "push-2 %s %d %d", dot1q ? "dot1q" : "dot1ad", tag1, |
| 913 | tag2); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 914 | case L2_VTR_POP_1: |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 915 | return format (s, "pop-1"); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 916 | case L2_VTR_POP_2: |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 917 | return format (s, "pop-2"); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 918 | case L2_VTR_TRANSLATE_1_1: |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 919 | return format (s, "trans-1-1 %s %d", dot1q ? "dot1q" : "dot1ad", tag1); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 920 | case L2_VTR_TRANSLATE_1_2: |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 921 | return format (s, "trans-1-2 %s %d %d", dot1q ? "dot1q" : "dot1ad", |
| 922 | tag1, tag2); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 923 | case L2_VTR_TRANSLATE_2_1: |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 924 | return format (s, "trans-2-1 %s %d", dot1q ? "dot1q" : "dot1ad", tag1); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 925 | case L2_VTR_TRANSLATE_2_2: |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 926 | return format (s, "trans-2-2 %s %d %d", dot1q ? "dot1q" : "dot1ad", |
| 927 | tag1, tag2); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 928 | default: |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 929 | return format (s, "none"); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 930 | } |
| 931 | } |
| 932 | |
Neale Ranns | b474380 | 2018-09-05 09:13:57 -0700 | [diff] [blame^] | 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) |
| 939 | return (format (s, "%U", format_vnet_sw_if_index_name_with_NA, |
| 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 | |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 947 | /** |
Chris Luke | 16bcf7d | 2016-09-01 14:31:46 -0400 | [diff] [blame] | 948 | Show bridge-domain state. |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 949 | The CLI format is: |
| 950 | show bridge-domain [<bd_index>] |
| 951 | */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 952 | static clib_error_t * |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 953 | bd_show (vlib_main_t * vm, unformat_input_t * input, vlib_cli_command_t * cmd) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 954 | { |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 955 | vnet_main_t *vnm = vnet_get_main (); |
| 956 | bd_main_t *bdm = &bd_main; |
| 957 | clib_error_t *error = 0; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 958 | u32 bd_index = ~0; |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 959 | l2_bridge_domain_t *bd_config; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 960 | u32 start, end; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 961 | u32 detail = 0; |
| 962 | u32 intf = 0; |
| 963 | u32 arp = 0; |
Jerome Tollet | 4830414 | 2017-09-05 12:13:22 +0100 | [diff] [blame] | 964 | u32 bd_tag = 0; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 965 | u32 bd_id = ~0; |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 966 | uword *p; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 967 | |
Jon Loeliger | 1c7d485 | 2017-05-02 11:06:23 -0500 | [diff] [blame] | 968 | start = 1; |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 969 | end = vec_len (l2input_main.bd_configs); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 970 | |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 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; |
Jerome Tollet | 4830414 | 2017-09-05 12:13:22 +0100 | [diff] [blame] | 981 | if (unformat (input, "bd-tag")) |
| 982 | bd_tag = 1; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 983 | |
Jon Loeliger | 1c7d485 | 2017-05-02 11:06:23 -0500 | [diff] [blame] | 984 | if (bd_id == 0) |
| 985 | return clib_error_return (0, |
| 986 | "No operations on the default bridge domain are supported"); |
| 987 | |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 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); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 993 | |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 994 | vec_validate (l2input_main.bd_configs, bd_index); |
| 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; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1000 | } |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 1001 | else |
| 1002 | { |
| 1003 | vlib_cli_output (vm, "bridge-domain %d not in use", bd_id); |
| 1004 | goto done; |
| 1005 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1006 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1007 | |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 1008 | /* Show all bridge-domains that have been initialized */ |
John Lo | da1f2c7 | 2017-03-24 20:11:15 -0400 | [diff] [blame] | 1009 | u32 printed = 0; |
| 1010 | u8 *as = 0; |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 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, |
Neale Ranns | b474380 | 2018-09-05 09:13:57 -0700 | [diff] [blame^] | 1020 | "%=8s %=7s %=4s %=9s %=9s %=9s %=11s %=9s %=9s %=11s", |
John Lo | 9793477 | 2017-05-18 22:26:47 -0400 | [diff] [blame] | 1021 | "BD-ID", "Index", "BSN", "Age(min)", |
Neale Ranns | b474380 | 2018-09-05 09:13:57 -0700 | [diff] [blame^] | 1022 | "Learning", "U-Forwrd", "UU-Flood", |
| 1023 | "Flooding", "ARP-Term", "BVI-Intf"); |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 1024 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1025 | |
John Lo | da1f2c7 | 2017-03-24 20:11:15 -0400 | [diff] [blame] | 1026 | if (bd_config->mac_age) |
| 1027 | as = format (as, "%d", bd_config->mac_age); |
| 1028 | else |
| 1029 | as = format (as, "off"); |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 1030 | vlib_cli_output (vm, |
Neale Ranns | b474380 | 2018-09-05 09:13:57 -0700 | [diff] [blame^] | 1031 | "%=8d %=7d %=4d %=9v %=9s %=9s %=11U %=9s %=9s %=11U", |
John Lo | da1f2c7 | 2017-03-24 20:11:15 -0400 | [diff] [blame] | 1032 | bd_config->bd_id, bd_index, bd_config->seq_num, as, |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 1033 | bd_config->feature_bitmap & L2INPUT_FEAT_LEARN ? |
| 1034 | "on" : "off", |
John Lo | da1f2c7 | 2017-03-24 20:11:15 -0400 | [diff] [blame] | 1035 | bd_config->feature_bitmap & L2INPUT_FEAT_FWD ? |
| 1036 | "on" : "off", |
Neale Ranns | b474380 | 2018-09-05 09:13:57 -0700 | [diff] [blame^] | 1037 | format_uu_cfg, bd_config, |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 1038 | bd_config->feature_bitmap & L2INPUT_FEAT_FLOOD ? |
| 1039 | "on" : "off", |
| 1040 | bd_config->feature_bitmap & L2INPUT_FEAT_ARP_TERM ? |
John Lo | da1f2c7 | 2017-03-24 20:11:15 -0400 | [diff] [blame] | 1041 | "on" : "off", |
| 1042 | format_vnet_sw_if_index_name_with_NA, |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 1043 | vnm, bd_config->bvi_sw_if_index); |
John Lo | da1f2c7 | 2017-03-24 20:11:15 -0400 | [diff] [blame] | 1044 | vec_reset_length (as); |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 1045 | |
| 1046 | if (detail || intf) |
| 1047 | { |
| 1048 | /* Show all member interfaces */ |
Eyal Bari | c5b1360 | 2016-11-24 19:42:43 +0200 | [diff] [blame] | 1049 | int i; |
| 1050 | vec_foreach_index (i, bd_config->members) |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 1051 | { |
Eyal Bari | c5b1360 | 2016-11-24 19:42:43 +0200 | [diff] [blame] | 1052 | l2_flood_member_t *member = |
| 1053 | vec_elt_at_index (bd_config->members, i); |
Eyal Bari | 0f360dc | 2017-06-14 13:11:20 +0300 | [diff] [blame] | 1054 | u8 swif_seq_num = *l2fib_swif_seq_num (member->sw_if_index); |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 1055 | u32 vtr_opr, dot1q, tag1, tag2; |
Eyal Bari | c5b1360 | 2016-11-24 19:42:43 +0200 | [diff] [blame] | 1056 | if (i == 0) |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 1057 | { |
John Lo | da1f2c7 | 2017-03-24 20:11:15 -0400 | [diff] [blame] | 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"); |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 1061 | } |
| 1062 | l2vtr_get (vm, vnm, member->sw_if_index, &vtr_opr, &dot1q, |
| 1063 | &tag1, &tag2); |
John Lo | da1f2c7 | 2017-03-24 20:11:15 -0400 | [diff] [blame] | 1064 | vlib_cli_output (vm, "%=30U%=7d%=5d%=5d%=5s%=9s%=30U", |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 1065 | format_vnet_sw_if_index_name, vnm, |
| 1066 | member->sw_if_index, member->sw_if_index, |
Eyal Bari | 0f360dc | 2017-06-14 13:11:20 +0300 | [diff] [blame] | 1067 | swif_seq_num, member->shg, |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 1068 | member->flags & L2_FLOOD_MEMBER_BVI ? "*" : |
Eyal Bari | c5b1360 | 2016-11-24 19:42:43 +0200 | [diff] [blame] | 1069 | "-", i < bd_config->flood_count ? "*" : "-", |
| 1070 | format_vtr, vtr_opr, dot1q, tag1, tag2); |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 1071 | } |
Neale Ranns | b474380 | 2018-09-05 09:13:57 -0700 | [diff] [blame^] | 1072 | if (~0 != bd_config->uu_fwd_sw_if_index) |
| 1073 | vlib_cli_output (vm, "%=30U%=7d%=5d%=5d%=5s%=9s%=30s", |
| 1074 | format_vnet_sw_if_index_name, vnm, |
| 1075 | bd_config->uu_fwd_sw_if_index, |
| 1076 | bd_config->uu_fwd_sw_if_index, |
| 1077 | 0, 0, "uu", "-", "None"); |
| 1078 | |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 1079 | } |
| 1080 | |
| 1081 | if ((detail || arp) && |
| 1082 | (bd_config->feature_bitmap & L2INPUT_FEAT_ARP_TERM)) |
| 1083 | { |
| 1084 | u32 ip4_addr; |
John Lo | 1edfba9 | 2016-08-27 01:11:57 -0400 | [diff] [blame] | 1085 | ip6_address_t *ip6_addr; |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 1086 | u64 mac_addr; |
| 1087 | vlib_cli_output (vm, |
John Lo | 1edfba9 | 2016-08-27 01:11:57 -0400 | [diff] [blame] | 1088 | "\n IP4/IP6 to MAC table for ARP Termination"); |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 1089 | |
| 1090 | /* *INDENT-OFF* */ |
| 1091 | hash_foreach (ip4_addr, mac_addr, bd_config->mac_by_ip4, |
| 1092 | ({ |
John Lo | 1edfba9 | 2016-08-27 01:11:57 -0400 | [diff] [blame] | 1093 | vlib_cli_output (vm, "%=40U => %=20U", |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 1094 | format_ip4_address, &ip4_addr, |
| 1095 | format_ethernet_address, &mac_addr); |
| 1096 | })); |
John Lo | 1edfba9 | 2016-08-27 01:11:57 -0400 | [diff] [blame] | 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 | })); |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 1104 | /* *INDENT-ON* */ |
| 1105 | } |
Jerome Tollet | 4830414 | 2017-09-05 12:13:22 +0100 | [diff] [blame] | 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 | } |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 1112 | } |
| 1113 | } |
John Lo | da1f2c7 | 2017-03-24 20:11:15 -0400 | [diff] [blame] | 1114 | vec_free (as); |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 1115 | |
| 1116 | if (!printed) |
| 1117 | { |
| 1118 | vlib_cli_output (vm, "no bridge-domains in use"); |
| 1119 | } |
| 1120 | |
| 1121 | done: |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1122 | return error; |
| 1123 | } |
| 1124 | |
Billy McFall | 22aa3e9 | 2016-09-09 08:46:40 -0400 | [diff] [blame] | 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 | ?*/ |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 1150 | /* *INDENT-OFF* */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1151 | VLIB_CLI_COMMAND (bd_show_cli, static) = { |
| 1152 | .path = "show bridge-domain", |
Jerome Tollet | 4830414 | 2017-09-05 12:13:22 +0100 | [diff] [blame] | 1153 | .short_help = "show bridge-domain [bridge-domain-id [detail|int|arp|bd-tag]]", |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1154 | .function = bd_show, |
| 1155 | }; |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 1156 | /* *INDENT-ON* */ |
| 1157 | |
Choonho Son | 0548079 | 2017-03-29 20:07:45 +0900 | [diff] [blame] | 1158 | int |
| 1159 | bd_add_del (l2_bridge_domain_add_del_args_t * a) |
| 1160 | { |
| 1161 | bd_main_t *bdm = &bd_main; |
| 1162 | vlib_main_t *vm = bdm->vlib_main; |
Choonho Son | 0548079 | 2017-03-29 20:07:45 +0900 | [diff] [blame] | 1163 | int rv = 0; |
| 1164 | |
Eyal Bari | b1352ed | 2017-04-07 23:14:17 +0300 | [diff] [blame] | 1165 | u32 bd_index = bd_find_index (bdm, a->bd_id); |
Choonho Son | 0548079 | 2017-03-29 20:07:45 +0900 | [diff] [blame] | 1166 | if (a->is_add) |
| 1167 | { |
Eyal Bari | b1352ed | 2017-04-07 23:14:17 +0300 | [diff] [blame] | 1168 | if (bd_index != ~0) |
| 1169 | return VNET_API_ERROR_BD_ALREADY_EXISTS; |
John Lo | 9793477 | 2017-05-18 22:26:47 -0400 | [diff] [blame] | 1170 | if (a->bd_id > L2_BD_ID_MAX) |
| 1171 | return VNET_API_ERROR_BD_ID_EXCEED_MAX; |
Eyal Bari | b1352ed | 2017-04-07 23:14:17 +0300 | [diff] [blame] | 1172 | bd_index = bd_add_bd_index (bdm, a->bd_id); |
Choonho Son | 0548079 | 2017-03-29 20:07:45 +0900 | [diff] [blame] | 1173 | |
Neale Ranns | b474380 | 2018-09-05 09:13:57 -0700 | [diff] [blame^] | 1174 | bd_flags_t enable_flags = 0, disable_flags = 0; |
Choonho Son | 0548079 | 2017-03-29 20:07:45 +0900 | [diff] [blame] | 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); |
Jerome Tollet | 4830414 | 2017-09-05 12:13:22 +0100 | [diff] [blame] | 1207 | |
| 1208 | if (a->bd_tag) |
| 1209 | bd_set_bd_tag (vm, bd_index, a->bd_tag); |
| 1210 | |
Choonho Son | 0548079 | 2017-03-29 20:07:45 +0900 | [diff] [blame] | 1211 | } |
| 1212 | else |
Eyal Bari | b1352ed | 2017-04-07 23:14:17 +0300 | [diff] [blame] | 1213 | { |
| 1214 | if (bd_index == ~0) |
| 1215 | return VNET_API_ERROR_NO_SUCH_ENTRY; |
Jon Loeliger | 1c7d485 | 2017-05-02 11:06:23 -0500 | [diff] [blame] | 1216 | if (bd_index == 0) |
| 1217 | return VNET_API_ERROR_BD_NOT_MODIFIABLE; |
Eyal Bari | b1352ed | 2017-04-07 23:14:17 +0300 | [diff] [blame] | 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 | } |
Choonho Son | 0548079 | 2017-03-29 20:07:45 +0900 | [diff] [blame] | 1222 | |
| 1223 | return rv; |
| 1224 | } |
| 1225 | |
| 1226 | /** |
| 1227 | Create or delete bridge-domain. |
Choonho Son | 5ee51f8 | 2017-04-05 19:09:52 +0900 | [diff] [blame] | 1228 | The CLI format: |
Jerome Tollet | 50570ec | 2017-09-14 12:53:56 +0100 | [diff] [blame] | 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] |
Choonho Son | 0548079 | 2017-03-29 20:07:45 +0900 | [diff] [blame] | 1231 | */ |
| 1232 | |
| 1233 | static clib_error_t * |
| 1234 | bd_add_del_command_fn (vlib_main_t * vm, unformat_input_t * input, |
| 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; |
Choonho Son | 5ee51f8 | 2017-04-05 19:09:52 +0900 | [diff] [blame] | 1241 | u32 flood = 1, forward = 1, learn = 1, uu_flood = 1, arp_term = 0; |
Choonho Son | 0548079 | 2017-03-29 20:07:45 +0900 | [diff] [blame] | 1242 | u32 mac_age = 0; |
Jerome Tollet | 4830414 | 2017-09-05 12:13:22 +0100 | [diff] [blame] | 1243 | u8 *bd_tag = NULL; |
Choonho Son | 0548079 | 2017-03-29 20:07:45 +0900 | [diff] [blame] | 1244 | l2_bridge_domain_add_del_args_t _a, *a = &_a; |
| 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 | ; |
Choonho Son | 5ee51f8 | 2017-04-05 19:09:52 +0900 | [diff] [blame] | 1261 | else if (unformat (line_input, "learn %d", &learn)) |
| 1262 | ; |
Choonho Son | 0548079 | 2017-03-29 20:07:45 +0900 | [diff] [blame] | 1263 | else if (unformat (line_input, "arp-term %d", &arp_term)) |
| 1264 | ; |
| 1265 | else if (unformat (line_input, "mac-age %d", &mac_age)) |
| 1266 | ; |
Jerome Tollet | 4830414 | 2017-09-05 12:13:22 +0100 | [diff] [blame] | 1267 | else if (unformat (line_input, "bd-tag %s", &bd_tag)) |
| 1268 | ; |
Choonho Son | 0548079 | 2017-03-29 20:07:45 +0900 | [diff] [blame] | 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 | |
Jon Loeliger | 1c7d485 | 2017-05-02 11:06:23 -0500 | [diff] [blame] | 1284 | if (bd_id == 0) |
| 1285 | { |
| 1286 | error = clib_error_return (0, "bridge domain 0 can not be modified"); |
| 1287 | goto done; |
| 1288 | } |
| 1289 | |
Choonho Son | 0548079 | 2017-03-29 20:07:45 +0900 | [diff] [blame] | 1290 | if (mac_age > 255) |
| 1291 | { |
| 1292 | error = clib_error_return (0, "mac age must be less than 256"); |
| 1293 | goto done; |
| 1294 | } |
Jerome Tollet | 4830414 | 2017-09-05 12:13:22 +0100 | [diff] [blame] | 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 | } |
Choonho Son | 0548079 | 2017-03-29 20:07:45 +0900 | [diff] [blame] | 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; |
Jerome Tollet | 4830414 | 2017-09-05 12:13:22 +0100 | [diff] [blame] | 1310 | a->bd_tag = bd_tag; |
Choonho Son | 0548079 | 2017-03-29 20:07:45 +0900 | [diff] [blame] | 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; |
Eyal Bari | b1352ed | 2017-04-07 23:14:17 +0300 | [diff] [blame] | 1320 | case VNET_API_ERROR_BD_IN_USE: |
| 1321 | error = clib_error_return (0, "bridge domain in use - remove members"); |
| 1322 | goto done; |
Choonho Son | 0548079 | 2017-03-29 20:07:45 +0900 | [diff] [blame] | 1323 | case VNET_API_ERROR_NO_SUCH_ENTRY: |
John Lo | 9793477 | 2017-05-18 22:26:47 -0400 | [diff] [blame] | 1324 | error = clib_error_return (0, "bridge domain ID does not exist"); |
Choonho Son | 0548079 | 2017-03-29 20:07:45 +0900 | [diff] [blame] | 1325 | goto done; |
Jon Loeliger | 1c7d485 | 2017-05-02 11:06:23 -0500 | [diff] [blame] | 1326 | case VNET_API_ERROR_BD_NOT_MODIFIABLE: |
| 1327 | error = clib_error_return (0, "bridge domain 0 can not be modified"); |
| 1328 | goto done; |
John Lo | 9793477 | 2017-05-18 22:26:47 -0400 | [diff] [blame] | 1329 | case VNET_API_ERROR_BD_ID_EXCEED_MAX: |
| 1330 | error = clib_error_return (0, "bridge domain ID exceed 16M limit"); |
| 1331 | goto done; |
Choonho Son | 0548079 | 2017-03-29 20:07:45 +0900 | [diff] [blame] | 1332 | default: |
| 1333 | error = clib_error_return (0, "bd_add_del returned %d", rv); |
| 1334 | goto done; |
| 1335 | } |
| 1336 | |
| 1337 | done: |
Jerome Tollet | 4830414 | 2017-09-05 12:13:22 +0100 | [diff] [blame] | 1338 | vec_free (bd_tag); |
Choonho Son | 0548079 | 2017-03-29 20:07:45 +0900 | [diff] [blame] | 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>]" |
Jerome Tollet | 4830414 | 2017-09-05 12:13:22 +0100 | [diff] [blame] | 1378 | " [mac-age <nn>] [bd-tag <tag>] [del]", |
Choonho Son | 0548079 | 2017-03-29 20:07:45 +0900 | [diff] [blame] | 1379 | .function = bd_add_del_command_fn, |
| 1380 | }; |
| 1381 | /* *INDENT-ON* */ |
| 1382 | |
| 1383 | |
| 1384 | |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 1385 | /* |
| 1386 | * fd.io coding-style-patch-verification: ON |
| 1387 | * |
| 1388 | * Local Variables: |
| 1389 | * eval: (c-set-style "gnu") |
| 1390 | * End: |
| 1391 | */ |