blob: 9cfff55fb450fe796419d200407f4fdbdfa4263b [file] [log] [blame]
Ed Warnickecb9cada2015-12-08 15:45:58 -07001/*
2 * l2_bvi.c : layer 2 Bridged Virtual Interface
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 <vnet/l2/l2_fwd.h>
21#include <vnet/l2/l2_flood.h>
22#include <vnet/l2/l2_bvi.h>
23
Neale Ranns192b13f2019-03-15 02:16:20 -070024/* Allocated BVI instances */
25static uword *l2_bvi_instances;
Ed Warnickecb9cada2015-12-08 15:45:58 -070026
Dave Barach97d8dc22016-08-15 15:31:15 -040027/* Call the L2 nodes that need the ethertype mapping */
Ed Warnickecb9cada2015-12-08 15:45:58 -070028void
29l2bvi_register_input_type (vlib_main_t * vm,
Dave Barach97d8dc22016-08-15 15:31:15 -040030 ethernet_type_t type, u32 node_index)
Ed Warnickecb9cada2015-12-08 15:45:58 -070031{
32 l2fwd_register_input_type (vm, type, node_index);
33 l2flood_register_input_type (vm, type, node_index);
34}
35
Neale Ranns192b13f2019-03-15 02:16:20 -070036static u8 *
37format_bvi_name (u8 * s, va_list * args)
38{
39 u32 dev_instance = va_arg (*args, u32);
40 return format (s, "bvi%d", dev_instance);
41}
42
43static clib_error_t *
44bvi_admin_up_down (vnet_main_t * vnm, u32 hw_if_index, u32 flags)
45{
46 u32 hw_flags = (flags & VNET_SW_INTERFACE_FLAG_ADMIN_UP) ?
47 VNET_HW_INTERFACE_FLAG_LINK_UP : 0;
48 vnet_hw_interface_set_flags (vnm, hw_if_index, hw_flags);
49 return 0;
50}
51
52static clib_error_t *
53bvi_mac_change (vnet_hw_interface_t * hi,
54 const u8 * old_address, const u8 * mac_address)
55{
56 l2input_interface_mac_change (hi->sw_if_index, old_address, mac_address);
57
58 return (NULL);
59}
60
61/* *INDENT-OFF* */
62VNET_DEVICE_CLASS (bvi_device_class) = {
63 .name = "BVI",
64 .format_device_name = format_bvi_name,
65 .admin_up_down_function = bvi_admin_up_down,
66 .mac_addr_change_function = bvi_mac_change,
67};
68/* *INDENT-ON* */
69
70/*
71 * Maintain a bitmap of allocated bvi instance numbers.
72 */
73#define BVI_MAX_INSTANCE (16 * 1024)
74
75static u32
76bvi_instance_alloc (u32 want)
77{
78 /*
Paul Vinciguerraddbd90a2019-10-30 15:07:20 -040079 * Check for dynamically allocated instance number.
Neale Ranns192b13f2019-03-15 02:16:20 -070080 */
81 if (~0 == want)
82 {
83 u32 bit;
84
85 bit = clib_bitmap_first_clear (l2_bvi_instances);
86 if (bit >= BVI_MAX_INSTANCE)
87 {
88 return ~0;
89 }
90 l2_bvi_instances = clib_bitmap_set (l2_bvi_instances, bit, 1);
91 return bit;
92 }
93
94 /*
95 * In range?
96 */
97 if (want >= BVI_MAX_INSTANCE)
98 {
99 return ~0;
100 }
101
102 /*
103 * Already in use?
104 */
105 if (clib_bitmap_get (l2_bvi_instances, want))
106 {
107 return ~0;
108 }
109
110 /*
111 * Grant allocation request.
112 */
113 l2_bvi_instances = clib_bitmap_set (l2_bvi_instances, want, 1);
114
115 return want;
116}
117
118static int
119bvi_instance_free (u32 instance)
120{
121 if (instance >= BVI_MAX_INSTANCE)
122 {
123 return -1;
124 }
125
126 if (clib_bitmap_get (l2_bvi_instances, instance) == 0)
127 {
128 return -1;
129 }
130
131 l2_bvi_instances = clib_bitmap_set (l2_bvi_instances, instance, 0);
132 return 0;
133}
134
135int
136l2_bvi_create (u32 user_instance,
137 const mac_address_t * mac_in, u32 * sw_if_indexp)
138{
139 vnet_main_t *vnm = vnet_get_main ();
140 vlib_main_t *vm = vlib_get_main ();
Damjan Marion5c954c42022-01-06 20:36:14 +0100141 vnet_eth_interface_registration_t eir = {};
Neale Ranns192b13f2019-03-15 02:16:20 -0700142 u32 instance, hw_if_index, slot;
143 vnet_hw_interface_t *hw_if;
Neale Ranns192b13f2019-03-15 02:16:20 -0700144 mac_address_t mac;
145
Neale Ranns192b13f2019-03-15 02:16:20 -0700146 ASSERT (sw_if_indexp);
147
148 *sw_if_indexp = (u32) ~ 0;
149
150 /*
151 * Allocate a bvi instance. Either select on dynamically
152 * or try to use the desired user_instance number.
153 */
154 instance = bvi_instance_alloc (user_instance);
155 if (instance == ~0)
156 {
157 return VNET_API_ERROR_INVALID_REGISTRATION;
158 }
159
160 /*
161 * Default MAC address (b0b0:0000:0000 + instance) is allocated
162 * if zero mac_address is configured. Otherwise, user-configurable MAC
163 * address is programmed on the bvi interface.
164 */
165 if (mac_address_is_zero (mac_in))
166 {
Neale Rannsd2a41942019-03-29 11:37:59 +0000167 u8 bytes[6] = {
Neale Ranns192b13f2019-03-15 02:16:20 -0700168 [0] = 0xb0,
169 [1] = 0xb0,
170 [5] = instance,
171 };
172 mac_address_from_bytes (&mac, bytes);
173 }
174 else
175 {
176 mac_address_copy (&mac, mac_in);
177 }
178
Damjan Marion5c954c42022-01-06 20:36:14 +0100179 eir.dev_class_index = bvi_device_class.index;
180 eir.dev_instance = instance;
181 eir.address = mac.bytes;
182 hw_if_index = vnet_eth_register_interface (vnm, &eir);
Neale Ranns192b13f2019-03-15 02:16:20 -0700183
184 hw_if = vnet_get_hw_interface (vnm, hw_if_index);
185
186 slot = vlib_node_add_named_next_with_slot (vm, hw_if->tx_node_index,
187 "l2-input", 0);
188 ASSERT (slot == 0);
189
190 {
191 vnet_sw_interface_t *si = vnet_get_hw_sw_interface (vnm, hw_if_index);
192 *sw_if_indexp = si->sw_if_index;
193
194 si->flood_class = VNET_FLOOD_CLASS_BVI;
195 }
196
197 return 0;
198}
199
200int
201l2_bvi_delete (u32 sw_if_index)
202{
203 vnet_main_t *vnm = vnet_get_main ();
204
205 if (pool_is_free_index (vnm->interface_main.sw_interfaces, sw_if_index))
206 return VNET_API_ERROR_INVALID_SW_IF_INDEX;
207
208 vnet_hw_interface_t *hw = vnet_get_sup_hw_interface (vnm, sw_if_index);
209 if (hw == 0 || hw->dev_class_index != bvi_device_class.index)
210 return VNET_API_ERROR_INVALID_SW_IF_INDEX;
211
212 if (bvi_instance_free (hw->dev_instance) < 0)
213 return VNET_API_ERROR_INVALID_SW_IF_INDEX;
214
215 ethernet_delete_interface (vnm, hw->hw_if_index);
216
217 return 0;
218}
219
220static clib_error_t *
221l2_bvi_create_cli (vlib_main_t * vm,
222 unformat_input_t * input, vlib_cli_command_t * cmd)
223{
224 unformat_input_t _line_input, *line_input = &_line_input;
225 u32 instance, sw_if_index;
226 clib_error_t *error;
227 mac_address_t mac;
228 int rv;
229
230 error = NULL;
231 instance = sw_if_index = ~0;
232 mac_address_set_zero (&mac);
233
234 if (unformat_user (input, unformat_line_input, line_input))
235 {
236 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
237 {
238 if (unformat (line_input, "mac %U", unformat_mac_address_t, &mac))
239 ;
240 else if (unformat (line_input, "instance %d", &instance))
241 ;
242 else
243 {
244 error = clib_error_return (0, "unknown input: %U",
245 format_unformat_error, line_input);
246 break;
247 }
248 }
249
250 unformat_free (line_input);
251
252 if (error)
253 return error;
254 }
255
256 rv = l2_bvi_create (instance, &mac, &sw_if_index);
257
258 if (rv)
259 return clib_error_return (0, "BVI create failed");
260
261 vlib_cli_output (vm, "%U\n", format_vnet_sw_if_index_name, vnet_get_main (),
262 sw_if_index);
263 return 0;
264}
265
266/*?
267 * Create a BVI interface. Optionally, a MAC Address can be
268 * provided. If not provided, 0b:0b::00:00:00:<instance> will be used.
269 *
270 * @cliexpar
271 * The following two command syntaxes are equivalent:
272 * @cliexcmd{bvi create [mac <mac-addr>] [instance <instance>]}
273 * Example of how to create a bvi interface:
274 * @cliexcmd{bvi create}
275?*/
276/* *INDENT-OFF* */
277VLIB_CLI_COMMAND (l2_bvi_create_command, static) = {
278 .path = "bvi create",
279 .short_help = "bvi create [mac <mac-addr>] [instance <instance>]",
280 .function = l2_bvi_create_cli,
281};
282/* *INDENT-ON* */
283
284static clib_error_t *
285l2_bvi_delete_cli (vlib_main_t * vm,
286 unformat_input_t * input, vlib_cli_command_t * cmd)
287{
288 vnet_main_t *vnm;
289 u32 sw_if_index;
290 int rv;
291
292 vnm = vnet_get_main ();
293 sw_if_index = ~0;
294
295 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
296 {
297 if (unformat
298 (input, "%U", unformat_vnet_sw_interface, vnm, &sw_if_index))
299 ;
300 else
301 break;
302 }
303
304 if (~0 != sw_if_index)
305 {
306 rv = l2_bvi_delete (sw_if_index);
307
308 if (rv)
309 return clib_error_return (0, "BVI delete failed");
310 }
311 else
312 return clib_error_return (0, "no such interface: %U",
313 format_unformat_error, input);
314
315 return 0;
316}
317
318/*?
319 * Delete a BVI interface.
320 *
321 * @cliexpar
322 * The following two command syntaxes are equivalent:
Paul Vinciguerraddbd90a2019-10-30 15:07:20 -0400323 * @cliexcmd{bvi delete <interface>}
Neale Ranns192b13f2019-03-15 02:16:20 -0700324 * Example of how to create a bvi interface:
325 * @cliexcmd{bvi delete bvi0}
326?*/
327/* *INDENT-OFF* */
328VLIB_CLI_COMMAND (l2_bvi_delete_command, static) = {
329 .path = "bvi delete",
330 .short_help = "bvi delete <interface>",
331 .function = l2_bvi_delete_cli,
332};
333/* *INDENT-ON* */
334
335
Dave Barach97d8dc22016-08-15 15:31:15 -0400336/*
337 * fd.io coding-style-patch-verification: ON
338 *
339 * Local Variables:
340 * eval: (c-set-style "gnu")
341 * End:
342 */