blob: f1bb6b810702adb45e554bde0febcc2487dd8dca [file] [log] [blame]
Ed Warnickecb9cada2015-12-08 15:45:58 -07001/*
2 * Copyright (c) 2015 Cisco and/or its affiliates.
3 * Licensed under the Apache License, Version 2.0 (the "License");
4 * you may not use this file except in compliance with the License.
5 * You may obtain a copy of the License at:
6 *
7 * http://www.apache.org/licenses/LICENSE-2.0
8 *
9 * Unless required by applicable law or agreed to in writing, software
10 * distributed under the License is distributed on an "AS IS" BASIS,
11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 * See the License for the specific language governing permissions and
13 * limitations under the License.
14 */
15/*
16 * ethernet_interface.c: ethernet interfaces
17 *
18 * Copyright (c) 2008 Eliot Dresselhaus
19 *
20 * Permission is hereby granted, free of charge, to any person obtaining
21 * a copy of this software and associated documentation files (the
22 * "Software"), to deal in the Software without restriction, including
23 * without limitation the rights to use, copy, modify, merge, publish,
24 * distribute, sublicense, and/or sell copies of the Software, and to
25 * permit persons to whom the Software is furnished to do so, subject to
26 * the following conditions:
27 *
28 * The above copyright notice and this permission notice shall be
29 * included in all copies or substantial portions of the Software.
30 *
31 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
32 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
33 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
34 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
35 * LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
36 * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
37 * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
38 */
39
40#include <vnet/vnet.h>
41#include <vnet/ip/ip.h>
42#include <vnet/pg/pg.h>
43#include <vnet/ethernet/ethernet.h>
Neale Rannscbe25aa2019-09-30 10:53:31 +000044//#include <vnet/ethernet/arp.h>
John Lo405e41b2016-04-23 15:14:12 -040045#include <vnet/l2/l2_input.h>
Neale Ranns3b81a1e2018-09-06 09:50:26 -070046#include <vnet/l2/l2_bd.h>
Neale Rannsb80c5362016-10-08 13:03:40 +010047#include <vnet/adj/adj.h>
Neale Rannscbe25aa2019-09-30 10:53:31 +000048#include <vnet/adj/adj_mcast.h>
49#include <vnet/ip-neighbor/ip_neighbor.h>
Neale Ranns0bfe5d82016-08-25 15:29:12 +010050
Neale Ranns5e575b12016-10-03 09:40:25 +010051/**
52 * @file
53 * @brief Loopback Interfaces.
54 *
55 * This file contains code to manage loopback interfaces.
56 */
57
Neale Rannscbe25aa2019-09-30 10:53:31 +000058static const u8 *
Neale Ranns32e1c012016-11-22 17:07:28 +000059ethernet_ip4_mcast_dst_addr (void)
60{
61 const static u8 ethernet_mcast_dst_mac[] = {
62 0x1, 0x0, 0x5e, 0x0, 0x0, 0x0,
63 };
64
65 return (ethernet_mcast_dst_mac);
66}
67
Neale Rannscbe25aa2019-09-30 10:53:31 +000068static const u8 *
Neale Ranns32e1c012016-11-22 17:07:28 +000069ethernet_ip6_mcast_dst_addr (void)
70{
71 const static u8 ethernet_mcast_dst_mac[] = {
72 0x33, 0x33, 0x00, 0x0, 0x0, 0x0,
73 };
74
75 return (ethernet_mcast_dst_mac);
76}
77
Neale Rannsb80c5362016-10-08 13:03:40 +010078/**
79 * @brief build a rewrite string to use for sending packets of type 'link_type'
80 * to 'dst_address'
81 */
82u8 *
83ethernet_build_rewrite (vnet_main_t * vnm,
84 u32 sw_if_index,
85 vnet_link_t link_type, const void *dst_address)
Ed Warnickecb9cada2015-12-08 15:45:58 -070086{
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -070087 vnet_sw_interface_t *sub_sw = vnet_get_sw_interface (vnm, sw_if_index);
88 vnet_sw_interface_t *sup_sw = vnet_get_sup_sw_interface (vnm, sw_if_index);
89 vnet_hw_interface_t *hw = vnet_get_sup_hw_interface (vnm, sw_if_index);
90 ethernet_main_t *em = &ethernet_main;
91 ethernet_interface_t *ei;
Neale Rannsb80c5362016-10-08 13:03:40 +010092 ethernet_header_t *h;
Ed Warnickecb9cada2015-12-08 15:45:58 -070093 ethernet_type_t type;
94 uword n_bytes = sizeof (h[0]);
Neale Rannsb80c5362016-10-08 13:03:40 +010095 u8 *rewrite = NULL;
Pavel Kotucek15ac81c2017-06-20 14:00:26 +020096 u8 is_p2p = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -070097
Neale Ranns17ff3c12018-07-04 10:24:24 -070098 if ((sub_sw->type == VNET_SW_INTERFACE_TYPE_P2P) ||
99 (sub_sw->type == VNET_SW_INTERFACE_TYPE_PIPE))
Pavel Kotucek15ac81c2017-06-20 14:00:26 +0200100 is_p2p = 1;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700101 if (sub_sw != sup_sw)
102 {
103 if (sub_sw->sub.eth.flags.one_tag)
104 {
105 n_bytes += sizeof (ethernet_vlan_header_t);
106 }
107 else if (sub_sw->sub.eth.flags.two_tags)
108 {
109 n_bytes += 2 * (sizeof (ethernet_vlan_header_t));
110 }
Pavel Kotucek15ac81c2017-06-20 14:00:26 +0200111 else if (PREDICT_FALSE (is_p2p))
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700112 {
Pavel Kotucek15ac81c2017-06-20 14:00:26 +0200113 n_bytes = sizeof (ethernet_header_t);
114 }
115 if (PREDICT_FALSE (!is_p2p))
116 {
117 // Check for encaps that are not supported for L3 interfaces
118 if (!(sub_sw->sub.eth.flags.exact_match) ||
119 (sub_sw->sub.eth.flags.default_sub) ||
120 (sub_sw->sub.eth.flags.outer_vlan_id_any) ||
121 (sub_sw->sub.eth.flags.inner_vlan_id_any))
122 {
123 return 0;
124 }
125 }
126 else
127 {
128 n_bytes = sizeof (ethernet_header_t);
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700129 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700130 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700131
Neale Rannsb80c5362016-10-08 13:03:40 +0100132 switch (link_type)
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700133 {
Neale Rannsb80c5362016-10-08 13:03:40 +0100134#define _(a,b) case VNET_LINK_##a: type = ETHERNET_TYPE_##b; break
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700135 _(IP4, IP4);
136 _(IP6, IP6);
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800137 _(MPLS, MPLS);
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700138 _(ARP, ARP);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700139#undef _
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700140 default:
Neale Rannsb80c5362016-10-08 13:03:40 +0100141 return NULL;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700142 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700143
Neale Rannsb80c5362016-10-08 13:03:40 +0100144 vec_validate (rewrite, n_bytes - 1);
145 h = (ethernet_header_t *) rewrite;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700146 ei = pool_elt_at_index (em->interfaces, hw->hw_instance);
Benoît Ganneb44c77d2020-10-20 16:24:17 +0200147 clib_memcpy (h->src_address, &ei->address, sizeof (h->src_address));
Pavel Kotucek15ac81c2017-06-20 14:00:26 +0200148 if (is_p2p)
149 {
150 clib_memcpy (h->dst_address, sub_sw->p2p.client_mac,
151 sizeof (h->dst_address));
152 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700153 else
Pavel Kotucek15ac81c2017-06-20 14:00:26 +0200154 {
155 if (dst_address)
156 clib_memcpy (h->dst_address, dst_address, sizeof (h->dst_address));
157 else
Dave Barachb7b92992018-10-17 10:38:51 -0400158 clib_memset (h->dst_address, ~0, sizeof (h->dst_address)); /* broadcast */
Pavel Kotucek15ac81c2017-06-20 14:00:26 +0200159 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700160
Pavel Kotucek15ac81c2017-06-20 14:00:26 +0200161 if (PREDICT_FALSE (!is_p2p) && sub_sw->sub.eth.flags.one_tag)
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700162 {
163 ethernet_vlan_header_t *outer = (void *) (h + 1);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700164
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700165 h->type = sub_sw->sub.eth.flags.dot1ad ?
166 clib_host_to_net_u16 (ETHERNET_TYPE_DOT1AD) :
167 clib_host_to_net_u16 (ETHERNET_TYPE_VLAN);
168 outer->priority_cfi_and_id =
169 clib_host_to_net_u16 (sub_sw->sub.eth.outer_vlan_id);
170 outer->type = clib_host_to_net_u16 (type);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700171
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700172 }
Pavel Kotucek15ac81c2017-06-20 14:00:26 +0200173 else if (PREDICT_FALSE (!is_p2p) && sub_sw->sub.eth.flags.two_tags)
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700174 {
175 ethernet_vlan_header_t *outer = (void *) (h + 1);
176 ethernet_vlan_header_t *inner = (void *) (outer + 1);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700177
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700178 h->type = sub_sw->sub.eth.flags.dot1ad ?
179 clib_host_to_net_u16 (ETHERNET_TYPE_DOT1AD) :
180 clib_host_to_net_u16 (ETHERNET_TYPE_VLAN);
181 outer->priority_cfi_and_id =
182 clib_host_to_net_u16 (sub_sw->sub.eth.outer_vlan_id);
183 outer->type = clib_host_to_net_u16 (ETHERNET_TYPE_VLAN);
184 inner->priority_cfi_and_id =
185 clib_host_to_net_u16 (sub_sw->sub.eth.inner_vlan_id);
186 inner->type = clib_host_to_net_u16 (type);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700187
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700188 }
189 else
190 {
191 h->type = clib_host_to_net_u16 (type);
192 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700193
Neale Rannsb80c5362016-10-08 13:03:40 +0100194 return (rewrite);
195}
196
197void
198ethernet_update_adjacency (vnet_main_t * vnm, u32 sw_if_index, u32 ai)
199{
Pavel Kotucek15ac81c2017-06-20 14:00:26 +0200200 vnet_sw_interface_t *si = vnet_get_sw_interface (vnm, sw_if_index);
Neale Rannscbe25aa2019-09-30 10:53:31 +0000201
Neale Ranns17ff3c12018-07-04 10:24:24 -0700202 if ((si->type == VNET_SW_INTERFACE_TYPE_P2P) ||
203 (si->type == VNET_SW_INTERFACE_TYPE_PIPE))
Pavel Kotucek15ac81c2017-06-20 14:00:26 +0200204 {
205 default_update_adjacency (vnm, sw_if_index, ai);
206 }
Neale Rannsb80c5362016-10-08 13:03:40 +0100207 else
208 {
Neale Rannscbe25aa2019-09-30 10:53:31 +0000209 ip_adjacency_t *adj;
210
211 adj = adj_get (ai);
212
213 switch (adj->lookup_next_index)
214 {
215 case IP_LOOKUP_NEXT_GLEAN:
216 adj_glean_update_rewrite (ai);
217 break;
218 case IP_LOOKUP_NEXT_ARP:
Neale Rannsea8adf72021-08-13 08:10:59 +0000219 case IP_LOOKUP_NEXT_REWRITE:
Neale Rannscbe25aa2019-09-30 10:53:31 +0000220 ip_neighbor_update (vnm, ai);
221 break;
222 case IP_LOOKUP_NEXT_BCAST:
223 adj_nbr_update_rewrite (ai,
224 ADJ_NBR_REWRITE_FLAG_COMPLETE,
225 ethernet_build_rewrite
226 (vnm,
227 adj->rewrite_header.sw_if_index,
228 adj->ia_link,
229 VNET_REWRITE_FOR_SW_INTERFACE_ADDRESS_BROADCAST));
230 break;
231 case IP_LOOKUP_NEXT_MCAST:
232 {
233 /*
234 * Construct a partial rewrite from the known ethernet mcast dest MAC
235 */
236 u8 *rewrite;
237 u8 offset;
238
239 rewrite = ethernet_build_rewrite
240 (vnm,
241 sw_if_index,
242 adj->ia_link,
243 (adj->ia_nh_proto == FIB_PROTOCOL_IP6 ?
244 ethernet_ip6_mcast_dst_addr () :
245 ethernet_ip4_mcast_dst_addr ()));
246
247 /*
248 * Complete the remaining fields of the adj's rewrite to direct the
249 * complete of the rewrite at switch time by copying in the IP
250 * dst address's bytes.
251 * Ofset is 2 bytes into the destintation address.
252 */
253 offset = vec_len (rewrite) - 2;
254 adj_mcast_update_rewrite (ai, rewrite, offset);
255
256 break;
257 }
258 case IP_LOOKUP_NEXT_DROP:
259 case IP_LOOKUP_NEXT_PUNT:
260 case IP_LOOKUP_NEXT_LOCAL:
Neale Rannscbe25aa2019-09-30 10:53:31 +0000261 case IP_LOOKUP_NEXT_MCAST_MIDCHAIN:
262 case IP_LOOKUP_NEXT_MIDCHAIN:
263 case IP_LOOKUP_NEXT_ICMP_ERROR:
264 case IP_LOOKUP_N_NEXT:
265 ASSERT (0);
266 break;
267 }
Neale Rannsb80c5362016-10-08 13:03:40 +0100268 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700269}
270
Benoît Ganneb44c77d2020-10-20 16:24:17 +0200271static void
272ethernet_interface_address_copy (ethernet_interface_address_t * dst,
273 const u8 * mac)
274{
275 clib_memcpy (&dst->mac, (u8 *) mac, sizeof (dst->mac));
276 /*
277 * ethernet dataplane loads mac as u64, makes sure the last 2 bytes are 0
278 * for comparison purpose
279 */
280 dst->zero = 0;
281}
282
283static void
284ethernet_set_mac (vnet_hw_interface_t * hi, ethernet_interface_t * ei,
285 const u8 * mac_address)
286{
287 vec_validate (hi->hw_address, sizeof (mac_address_t) - 1);
288 clib_memcpy (hi->hw_address, mac_address, sizeof (mac_address_t));
289 ethernet_interface_address_copy (&ei->address, mac_address);
290}
291
Neale Ranns3be6b282016-12-20 14:24:01 +0000292static clib_error_t *
Neale Ranns3b81a1e2018-09-06 09:50:26 -0700293ethernet_mac_change (vnet_hw_interface_t * hi,
294 const u8 * old_address, const u8 * mac_address)
Neale Ranns3be6b282016-12-20 14:24:01 +0000295{
296 ethernet_interface_t *ei;
297 ethernet_main_t *em;
298
299 em = &ethernet_main;
300 ei = pool_elt_at_index (em->interfaces, hi->hw_instance);
301
Benoît Ganneb44c77d2020-10-20 16:24:17 +0200302 ethernet_set_mac (hi, ei, mac_address);
Neale Rannscbe25aa2019-09-30 10:53:31 +0000303
304 {
305 ethernet_address_change_ctx_t *cb;
Alexander Chernavin8a92b682023-05-22 14:27:24 +0000306 u32 id, sw_if_index;
Neale Rannscbe25aa2019-09-30 10:53:31 +0000307 vec_foreach (cb, em->address_change_callbacks)
Alexander Chernavin8a92b682023-05-22 14:27:24 +0000308 {
309 cb->function (em, hi->sw_if_index, cb->function_opaque);
310 /* clang-format off */
311 hash_foreach (id, sw_if_index, hi->sub_interface_sw_if_index_by_id,
312 ({
313 cb->function (em, sw_if_index, cb->function_opaque);
314 }));
315 /* clang-format on */
316 }
Neale Rannscbe25aa2019-09-30 10:53:31 +0000317 }
Neale Ranns3be6b282016-12-20 14:24:01 +0000318
319 return (NULL);
320}
321
Damjan Marion88a9c0e2022-01-06 21:14:08 +0100322static clib_error_t *
Damjan Marion1cd0e5d2022-01-17 14:49:17 +0100323ethernet_set_max_frame_size (vnet_main_t *vnm, vnet_hw_interface_t *hi,
324 u32 frame_size)
Damjan Marion88a9c0e2022-01-06 21:14:08 +0100325{
326 ethernet_interface_t *ei =
327 pool_elt_at_index (ethernet_main.interfaces, hi->hw_instance);
328
Damjan Marion1cd0e5d2022-01-17 14:49:17 +0100329 if (ei->cb.set_max_frame_size)
330 return ei->cb.set_max_frame_size (vnm, hi, frame_size);
Damjan Marion88a9c0e2022-01-06 21:14:08 +0100331
Damjan Marion1cd0e5d2022-01-17 14:49:17 +0100332 return vnet_error (
333 VNET_ERR_UNSUPPORTED,
334 "underlying driver doesn't support changing Max Frame Size");
Damjan Marion88a9c0e2022-01-06 21:14:08 +0100335}
336
Ed Warnickecb9cada2015-12-08 15:45:58 -0700337VNET_HW_INTERFACE_CLASS (ethernet_hw_interface_class) = {
338 .name = "Ethernet",
Mohsin Kazmi0d05c0d2021-11-09 17:44:10 +0000339 .tx_hash_fn_type = VNET_HASH_FN_TYPE_ETHERNET,
Ed Warnickecb9cada2015-12-08 15:45:58 -0700340 .format_address = format_ethernet_address,
341 .format_header = format_ethernet_header_with_length,
342 .unformat_hw_address = unformat_ethernet_address,
343 .unformat_header = unformat_ethernet_header,
Neale Rannsb80c5362016-10-08 13:03:40 +0100344 .build_rewrite = ethernet_build_rewrite,
345 .update_adjacency = ethernet_update_adjacency,
Neale Ranns3be6b282016-12-20 14:24:01 +0000346 .mac_addr_change_function = ethernet_mac_change,
Damjan Marion1cd0e5d2022-01-17 14:49:17 +0100347 .set_max_frame_size = ethernet_set_max_frame_size,
Ed Warnickecb9cada2015-12-08 15:45:58 -0700348};
349
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700350uword
351unformat_ethernet_interface (unformat_input_t * input, va_list * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700352{
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700353 vnet_main_t *vnm = va_arg (*args, vnet_main_t *);
354 u32 *result = va_arg (*args, u32 *);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700355 u32 hw_if_index;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700356 ethernet_main_t *em = &ethernet_main;
357 ethernet_interface_t *eif;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700358
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700359 if (!unformat_user (input, unformat_vnet_hw_interface, vnm, &hw_if_index))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700360 return 0;
361
362 eif = ethernet_get_interface (em, hw_if_index);
363 if (eif)
364 {
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700365 *result = hw_if_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700366 return 1;
367 }
368 return 0;
369}
370
Damjan Marion5c954c42022-01-06 20:36:14 +0100371u32
372vnet_eth_register_interface (vnet_main_t *vnm,
373 vnet_eth_interface_registration_t *r)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700374{
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700375 ethernet_main_t *em = &ethernet_main;
376 ethernet_interface_t *ei;
377 vnet_hw_interface_t *hi;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700378 u32 hw_if_index;
379
380 pool_get (em->interfaces, ei);
Damjan Marion5c954c42022-01-06 20:36:14 +0100381 clib_memcpy (&ei->cb, &r->cb, sizeof (vnet_eth_if_callbacks_t));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700382
Damjan Marion5c954c42022-01-06 20:36:14 +0100383 hw_if_index = vnet_register_interface (
384 vnm, r->dev_class_index, r->dev_instance,
385 ethernet_hw_interface_class.index, ei - em->interfaces);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700386
387 hi = vnet_get_hw_interface (vnm, hw_if_index);
388
389 ethernet_setup_node (vnm->vlib_main, hi->output_node_index);
390
Damjan Marion1cd0e5d2022-01-17 14:49:17 +0100391 hi->min_frame_size = ETHERNET_MIN_PACKET_BYTES;
392 hi->frame_overhead =
393 r->frame_overhead ?
Matthew Smithbf82a662022-03-23 22:11:32 +0000394 r->frame_overhead :
395 sizeof (ethernet_header_t) + 2 * sizeof (ethernet_vlan_header_t);
Damjan Marion1cd0e5d2022-01-17 14:49:17 +0100396 hi->max_frame_size = r->max_frame_size ?
397 r->max_frame_size :
398 ethernet_main.default_mtu + hi->frame_overhead;
399 ;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700400
Dave Barach5fa45252020-02-26 10:27:08 -0500401 /* Default ethernet MTU, 9000 unless set by ethernet_config see below */
402 vnet_sw_interface_set_mtu (vnm, hi->sw_if_index, em->default_mtu);
Damjan Marionfe7d4a22018-04-13 19:43:39 +0200403
Damjan Marion5c954c42022-01-06 20:36:14 +0100404 ethernet_set_mac (hi, ei, r->address);
405 return hw_if_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700406}
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700407
Ed Warnickecb9cada2015-12-08 15:45:58 -0700408void
409ethernet_delete_interface (vnet_main_t * vnm, u32 hw_if_index)
410{
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700411 ethernet_main_t *em = &ethernet_main;
412 ethernet_interface_t *ei;
413 vnet_hw_interface_t *hi;
414 main_intf_t *main_intf;
415 vlan_table_t *vlan_table;
416 u32 idx;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700417
418 hi = vnet_get_hw_interface (vnm, hw_if_index);
419 ei = pool_elt_at_index (em->interfaces, hi->hw_instance);
420
421 /* Delete vlan mapping table for dot1q and dot1ad. */
422 main_intf = vec_elt_at_index (em->main_intfs, hi->hw_if_index);
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700423 if (main_intf->dot1q_vlans)
424 {
425 vlan_table = vec_elt_at_index (em->vlan_pool, main_intf->dot1q_vlans);
426 for (idx = 0; idx < ETHERNET_N_VLAN; idx++)
427 {
428 if (vlan_table->vlans[idx].qinqs)
429 {
430 pool_put_index (em->qinq_pool, vlan_table->vlans[idx].qinqs);
John Lod63abff2018-10-04 16:22:21 -0400431 vlan_table->vlans[idx].qinqs = 0;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700432 }
433 }
434 pool_put_index (em->vlan_pool, main_intf->dot1q_vlans);
Steve Shin8a3e5752018-02-20 11:38:34 -0800435 main_intf->dot1q_vlans = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700436 }
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700437 if (main_intf->dot1ad_vlans)
438 {
439 vlan_table = vec_elt_at_index (em->vlan_pool, main_intf->dot1ad_vlans);
440 for (idx = 0; idx < ETHERNET_N_VLAN; idx++)
441 {
442 if (vlan_table->vlans[idx].qinqs)
443 {
444 pool_put_index (em->qinq_pool, vlan_table->vlans[idx].qinqs);
John Lod63abff2018-10-04 16:22:21 -0400445 vlan_table->vlans[idx].qinqs = 0;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700446 }
447 }
448 pool_put_index (em->vlan_pool, main_intf->dot1ad_vlans);
Steve Shin8a3e5752018-02-20 11:38:34 -0800449 main_intf->dot1ad_vlans = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700450 }
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700451
Ed Warnickecb9cada2015-12-08 15:45:58 -0700452 vnet_delete_hw_interface (vnm, hw_if_index);
453 pool_put (em->interfaces, ei);
454}
455
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700456u32
Ed Warnickecb9cada2015-12-08 15:45:58 -0700457ethernet_set_flags (vnet_main_t * vnm, u32 hw_if_index, u32 flags)
458{
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700459 ethernet_main_t *em = &ethernet_main;
460 vnet_hw_interface_t *hi;
461 ethernet_interface_t *ei;
John Lo4a302ee2020-05-12 22:34:39 -0400462 u32 opn_flags = flags & ETHERNET_INTERFACE_FLAGS_SET_OPN_MASK;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700463
Ed Warnickecb9cada2015-12-08 15:45:58 -0700464 hi = vnet_get_hw_interface (vnm, hw_if_index);
465
466 ASSERT (hi->hw_class_index == ethernet_hw_interface_class.index);
467
468 ei = pool_elt_at_index (em->interfaces, hi->hw_instance);
John Lo4a302ee2020-05-12 22:34:39 -0400469
470 /* preserve status bits and update last set operation bits */
471 ei->flags = (ei->flags & ETHERNET_INTERFACE_FLAGS_STATUS_MASK) | opn_flags;
472
Damjan Marion5c954c42022-01-06 20:36:14 +0100473 if (ei->cb.flag_change)
John Lo4a302ee2020-05-12 22:34:39 -0400474 {
475 switch (opn_flags)
476 {
477 case ETHERNET_INTERFACE_FLAG_DEFAULT_L3:
Damjan Mariond4f88cc2022-01-05 01:52:38 +0100478 if (hi->caps & VNET_HW_IF_CAP_MAC_FILTER)
John Lo4a302ee2020-05-12 22:34:39 -0400479 {
Damjan Marion5c954c42022-01-06 20:36:14 +0100480 if (ei->cb.flag_change (vnm, hi, opn_flags) != ~0)
John Lo4a302ee2020-05-12 22:34:39 -0400481 {
482 ei->flags |= ETHERNET_INTERFACE_FLAG_STATUS_L3;
483 return 0;
484 }
485 ei->flags &= ~ETHERNET_INTERFACE_FLAG_STATUS_L3;
486 return ~0;
487 }
488 /* fall through */
489 case ETHERNET_INTERFACE_FLAG_ACCEPT_ALL:
490 ei->flags &= ~ETHERNET_INTERFACE_FLAG_STATUS_L3;
Damjan Marion5c954c42022-01-06 20:36:14 +0100491 return ei->cb.flag_change (vnm, hi, opn_flags);
John Lo4a302ee2020-05-12 22:34:39 -0400492 default:
493 return ~0;
494 }
495 }
496 return ~0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700497}
498
Dave Barach635ec3b2018-07-13 20:12:45 -0400499/**
500 * Echo packets back to ethernet/l2-input.
Dave Barach635ec3b2018-07-13 20:12:45 -0400501 */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700502static uword
503simulated_ethernet_interface_tx (vlib_main_t * vm,
Dave Barach635ec3b2018-07-13 20:12:45 -0400504 vlib_node_runtime_t *
505 node, vlib_frame_t * frame)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700506{
Dave Barach78451a62018-07-21 09:25:00 -0400507 u32 n_left_from, *from;
508 u32 next_index = 0;
509 u32 n_bytes;
Damjan Marion586afd72017-04-05 19:18:20 +0200510 u32 thread_index = vm->thread_index;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700511 vnet_main_t *vnm = vnet_get_main ();
512 vnet_interface_main_t *im = &vnm->interface_main;
Dave Barach635ec3b2018-07-13 20:12:45 -0400513 l2_input_config_t *config;
Dave Barach78451a62018-07-21 09:25:00 -0400514 vlib_buffer_t *bufs[VLIB_FRAME_SIZE], **b;
515 u16 nexts[VLIB_FRAME_SIZE], *next;
516 u32 new_rx_sw_if_index = ~0;
517 u32 new_tx_sw_if_index = ~0;
John Lo405e41b2016-04-23 15:14:12 -0400518
Ed Warnickecb9cada2015-12-08 15:45:58 -0700519 n_left_from = frame->n_vectors;
Damjan Mariona3d59862018-11-10 10:23:00 +0100520 from = vlib_frame_vector_args (frame);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700521
Dave Barach78451a62018-07-21 09:25:00 -0400522 vlib_get_buffers (vm, from, bufs, n_left_from);
523 b = bufs;
524 next = nexts;
Dave Barach635ec3b2018-07-13 20:12:45 -0400525
Dave Barach78451a62018-07-21 09:25:00 -0400526 /* Ordinarily, this is the only config lookup. */
527 config = l2input_intf_config (vnet_buffer (b[0])->sw_if_index[VLIB_TX]);
Neale Ranns47a3d992020-09-29 15:38:51 +0000528 next_index = (l2_input_is_bridge (config) ?
529 VNET_SIMULATED_ETHERNET_TX_NEXT_L2_INPUT :
530 VNET_SIMULATED_ETHERNET_TX_NEXT_ETHERNET_INPUT);
531 new_tx_sw_if_index = l2_input_is_bvi (config) ? L2INPUT_BVI : ~0;
Dave Barach78451a62018-07-21 09:25:00 -0400532 new_rx_sw_if_index = vnet_buffer (b[0])->sw_if_index[VLIB_TX];
Dave Barach635ec3b2018-07-13 20:12:45 -0400533
Dave Barach78451a62018-07-21 09:25:00 -0400534 while (n_left_from >= 4)
535 {
536 u32 sw_if_index0, sw_if_index1, sw_if_index2, sw_if_index3;
lijinhuie13baaa2022-08-15 17:41:39 +0800537 u32x4 xor_ifx4;
Dave Barach635ec3b2018-07-13 20:12:45 -0400538
Dave Barach78451a62018-07-21 09:25:00 -0400539 /* Prefetch next iteration. */
540 if (PREDICT_TRUE (n_left_from >= 8))
541 {
542 vlib_prefetch_buffer_header (b[4], STORE);
543 vlib_prefetch_buffer_header (b[5], STORE);
544 vlib_prefetch_buffer_header (b[6], STORE);
545 vlib_prefetch_buffer_header (b[7], STORE);
546 }
Dave Barach635ec3b2018-07-13 20:12:45 -0400547
Dave Barach78451a62018-07-21 09:25:00 -0400548 /* Make sure all pkts were transmitted on the same (loop) intfc */
549 sw_if_index0 = vnet_buffer (b[0])->sw_if_index[VLIB_TX];
550 sw_if_index1 = vnet_buffer (b[1])->sw_if_index[VLIB_TX];
551 sw_if_index2 = vnet_buffer (b[2])->sw_if_index[VLIB_TX];
552 sw_if_index3 = vnet_buffer (b[3])->sw_if_index[VLIB_TX];
Dave Barach635ec3b2018-07-13 20:12:45 -0400553
lijinhuie13baaa2022-08-15 17:41:39 +0800554 xor_ifx4 = u32x4_gather (&sw_if_index0, &sw_if_index1, &sw_if_index2,
555 &sw_if_index3);
Dave Barach78451a62018-07-21 09:25:00 -0400556
557 /* Speed path / expected case: all pkts on the same intfc */
lijinhuie13baaa2022-08-15 17:41:39 +0800558 if (PREDICT_TRUE (u32x4_is_all_equal (xor_ifx4, new_rx_sw_if_index)))
Dave Barach78451a62018-07-21 09:25:00 -0400559 {
560 next[0] = next_index;
561 next[1] = next_index;
562 next[2] = next_index;
563 next[3] = next_index;
564 vnet_buffer (b[0])->sw_if_index[VLIB_RX] = new_rx_sw_if_index;
565 vnet_buffer (b[1])->sw_if_index[VLIB_RX] = new_rx_sw_if_index;
566 vnet_buffer (b[2])->sw_if_index[VLIB_RX] = new_rx_sw_if_index;
567 vnet_buffer (b[3])->sw_if_index[VLIB_RX] = new_rx_sw_if_index;
568 vnet_buffer (b[0])->sw_if_index[VLIB_TX] = new_tx_sw_if_index;
569 vnet_buffer (b[1])->sw_if_index[VLIB_TX] = new_tx_sw_if_index;
570 vnet_buffer (b[2])->sw_if_index[VLIB_TX] = new_tx_sw_if_index;
571 vnet_buffer (b[3])->sw_if_index[VLIB_TX] = new_tx_sw_if_index;
572 n_bytes = vlib_buffer_length_in_chain (vm, b[0]);
573 n_bytes += vlib_buffer_length_in_chain (vm, b[1]);
574 n_bytes += vlib_buffer_length_in_chain (vm, b[2]);
575 n_bytes += vlib_buffer_length_in_chain (vm, b[3]);
576
577 if (next_index == VNET_SIMULATED_ETHERNET_TX_NEXT_L2_INPUT)
578 {
579 vnet_update_l2_len (b[0]);
580 vnet_update_l2_len (b[1]);
581 vnet_update_l2_len (b[2]);
582 vnet_update_l2_len (b[3]);
583 }
584
585 /* increment TX interface stat */
586 vlib_increment_combined_counter (im->combined_sw_if_counters +
587 VNET_INTERFACE_COUNTER_TX,
588 thread_index, new_rx_sw_if_index,
589 4 /* pkts */ , n_bytes);
590 b += 4;
591 next += 4;
592 n_left_from -= 4;
593 continue;
594 }
595
596 /*
597 * Slow path: we know that at least one of the pkts
598 * was transmitted on a different sw_if_index, so
599 * check each sw_if_index against the cached data and proceed
600 * accordingly.
601 *
602 * This shouldn't happen, but code can (and does) bypass the
603 * per-interface output node, so deal with it.
604 */
605 if (PREDICT_FALSE (vnet_buffer (b[0])->sw_if_index[VLIB_TX]
606 != new_rx_sw_if_index))
607 {
608 config = l2input_intf_config
609 (vnet_buffer (b[0])->sw_if_index[VLIB_TX]);
Neale Ranns47a3d992020-09-29 15:38:51 +0000610 next_index = (l2_input_is_bridge (config) ?
611 VNET_SIMULATED_ETHERNET_TX_NEXT_L2_INPUT :
612 VNET_SIMULATED_ETHERNET_TX_NEXT_ETHERNET_INPUT);
613 new_tx_sw_if_index = l2_input_is_bvi (config) ? L2INPUT_BVI : ~0;
Dave Barach78451a62018-07-21 09:25:00 -0400614 new_rx_sw_if_index = vnet_buffer (b[0])->sw_if_index[VLIB_TX];
615 }
616 next[0] = next_index;
617 vnet_buffer (b[0])->sw_if_index[VLIB_RX] = new_rx_sw_if_index;
618 vnet_buffer (b[0])->sw_if_index[VLIB_TX] = new_tx_sw_if_index;
619 n_bytes = vlib_buffer_length_in_chain (vm, b[0]);
620 if (next_index == VNET_SIMULATED_ETHERNET_TX_NEXT_L2_INPUT)
621 vnet_update_l2_len (b[0]);
622
623 vlib_increment_combined_counter (im->combined_sw_if_counters +
624 VNET_INTERFACE_COUNTER_TX,
625 thread_index, new_rx_sw_if_index,
626 1 /* pkts */ , n_bytes);
627
628 if (PREDICT_FALSE (vnet_buffer (b[1])->sw_if_index[VLIB_TX]
629 != new_rx_sw_if_index))
630 {
631 config = l2input_intf_config
632 (vnet_buffer (b[1])->sw_if_index[VLIB_TX]);
Neale Ranns47a3d992020-09-29 15:38:51 +0000633 next_index = (l2_input_is_bridge (config) ?
634 VNET_SIMULATED_ETHERNET_TX_NEXT_L2_INPUT :
635 VNET_SIMULATED_ETHERNET_TX_NEXT_ETHERNET_INPUT);
Dave Barach78451a62018-07-21 09:25:00 -0400636 new_rx_sw_if_index = vnet_buffer (b[1])->sw_if_index[VLIB_TX];
Neale Ranns47a3d992020-09-29 15:38:51 +0000637 new_tx_sw_if_index = l2_input_is_bvi (config) ? L2INPUT_BVI : ~0;
Dave Barach78451a62018-07-21 09:25:00 -0400638 }
639 next[1] = next_index;
640 vnet_buffer (b[1])->sw_if_index[VLIB_RX] = new_rx_sw_if_index;
641 vnet_buffer (b[1])->sw_if_index[VLIB_TX] = new_tx_sw_if_index;
642 n_bytes = vlib_buffer_length_in_chain (vm, b[1]);
643 if (next_index == VNET_SIMULATED_ETHERNET_TX_NEXT_L2_INPUT)
644 vnet_update_l2_len (b[1]);
645
646 vlib_increment_combined_counter (im->combined_sw_if_counters +
647 VNET_INTERFACE_COUNTER_TX,
648 thread_index, new_rx_sw_if_index,
649 1 /* pkts */ , n_bytes);
650
651 if (PREDICT_FALSE (vnet_buffer (b[2])->sw_if_index[VLIB_TX]
652 != new_rx_sw_if_index))
653 {
654 config = l2input_intf_config
655 (vnet_buffer (b[2])->sw_if_index[VLIB_TX]);
Neale Ranns47a3d992020-09-29 15:38:51 +0000656 next_index = (l2_input_is_bridge (config) ?
657 VNET_SIMULATED_ETHERNET_TX_NEXT_L2_INPUT :
658 VNET_SIMULATED_ETHERNET_TX_NEXT_ETHERNET_INPUT);
Dave Barach78451a62018-07-21 09:25:00 -0400659 new_rx_sw_if_index = vnet_buffer (b[2])->sw_if_index[VLIB_TX];
Neale Ranns47a3d992020-09-29 15:38:51 +0000660 new_tx_sw_if_index = l2_input_is_bvi (config) ? L2INPUT_BVI : ~0;
Dave Barach78451a62018-07-21 09:25:00 -0400661 }
662 next[2] = next_index;
663 vnet_buffer (b[2])->sw_if_index[VLIB_RX] = new_rx_sw_if_index;
664 vnet_buffer (b[2])->sw_if_index[VLIB_TX] = new_tx_sw_if_index;
665 n_bytes = vlib_buffer_length_in_chain (vm, b[2]);
666 if (next_index == VNET_SIMULATED_ETHERNET_TX_NEXT_L2_INPUT)
667 vnet_update_l2_len (b[2]);
668
669 vlib_increment_combined_counter (im->combined_sw_if_counters +
670 VNET_INTERFACE_COUNTER_TX,
671 thread_index, new_rx_sw_if_index,
672 1 /* pkts */ , n_bytes);
673
674 if (PREDICT_FALSE (vnet_buffer (b[3])->sw_if_index[VLIB_TX]
675 != new_rx_sw_if_index))
676 {
677 config = l2input_intf_config
678 (vnet_buffer (b[3])->sw_if_index[VLIB_TX]);
Neale Ranns47a3d992020-09-29 15:38:51 +0000679 next_index = (l2_input_is_bridge (config) ?
680 VNET_SIMULATED_ETHERNET_TX_NEXT_L2_INPUT :
681 VNET_SIMULATED_ETHERNET_TX_NEXT_ETHERNET_INPUT);
Dave Barach78451a62018-07-21 09:25:00 -0400682 new_rx_sw_if_index = vnet_buffer (b[3])->sw_if_index[VLIB_TX];
Neale Ranns47a3d992020-09-29 15:38:51 +0000683 new_tx_sw_if_index = l2_input_is_bvi (config) ? L2INPUT_BVI : ~0;
Dave Barach78451a62018-07-21 09:25:00 -0400684 }
685 next[3] = next_index;
686 vnet_buffer (b[3])->sw_if_index[VLIB_RX] = new_rx_sw_if_index;
687 vnet_buffer (b[3])->sw_if_index[VLIB_TX] = new_tx_sw_if_index;
688 n_bytes = vlib_buffer_length_in_chain (vm, b[3]);
689 if (next_index == VNET_SIMULATED_ETHERNET_TX_NEXT_L2_INPUT)
690 vnet_update_l2_len (b[3]);
691
692 vlib_increment_combined_counter (im->combined_sw_if_counters +
693 VNET_INTERFACE_COUNTER_TX,
694 thread_index, new_rx_sw_if_index,
695 1 /* pkts */ , n_bytes);
696 b += 4;
697 next += 4;
698 n_left_from -= 4;
699 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700700 while (n_left_from > 0)
701 {
Dave Barach78451a62018-07-21 09:25:00 -0400702 if (PREDICT_FALSE (vnet_buffer (b[0])->sw_if_index[VLIB_TX]
703 != new_rx_sw_if_index))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700704 {
Dave Barach78451a62018-07-21 09:25:00 -0400705 config = l2input_intf_config
706 (vnet_buffer (b[0])->sw_if_index[VLIB_TX]);
Neale Ranns47a3d992020-09-29 15:38:51 +0000707 next_index = (l2_input_is_bridge (config) ?
708 VNET_SIMULATED_ETHERNET_TX_NEXT_L2_INPUT :
709 VNET_SIMULATED_ETHERNET_TX_NEXT_ETHERNET_INPUT);
710 new_tx_sw_if_index = l2_input_is_bvi (config) ? L2INPUT_BVI : ~0;
Dave Barach78451a62018-07-21 09:25:00 -0400711 new_rx_sw_if_index = vnet_buffer (b[0])->sw_if_index[VLIB_TX];
Ed Warnickecb9cada2015-12-08 15:45:58 -0700712 }
Dave Barach78451a62018-07-21 09:25:00 -0400713 next[0] = next_index;
714 vnet_buffer (b[0])->sw_if_index[VLIB_RX] = new_rx_sw_if_index;
715 vnet_buffer (b[0])->sw_if_index[VLIB_TX] = new_tx_sw_if_index;
716 n_bytes = vlib_buffer_length_in_chain (vm, b[0]);
717 if (next_index == VNET_SIMULATED_ETHERNET_TX_NEXT_L2_INPUT)
718 vnet_update_l2_len (b[0]);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700719
Dave Barach78451a62018-07-21 09:25:00 -0400720 vlib_increment_combined_counter (im->combined_sw_if_counters +
721 VNET_INTERFACE_COUNTER_TX,
722 thread_index, new_rx_sw_if_index,
723 1 /* pkts */ , n_bytes);
724 b += 1;
725 next += 1;
726 n_left_from -= 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700727 }
728
Dave Barach78451a62018-07-21 09:25:00 -0400729 vlib_buffer_enqueue_to_next (vm, node, from, nexts, frame->n_vectors);
Dave Barach635ec3b2018-07-13 20:12:45 -0400730
731 return frame->n_vectors;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700732}
733
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700734static u8 *
735format_simulated_ethernet_name (u8 * s, va_list * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700736{
737 u32 dev_instance = va_arg (*args, u32);
738 return format (s, "loop%d", dev_instance);
739}
740
Pierre Pfisterf00f91a2016-03-09 18:22:32 +0000741static clib_error_t *
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700742simulated_ethernet_admin_up_down (vnet_main_t * vnm, u32 hw_if_index,
743 u32 flags)
Pierre Pfisterf00f91a2016-03-09 18:22:32 +0000744{
745 u32 hw_flags = (flags & VNET_SW_INTERFACE_FLAG_ADMIN_UP) ?
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700746 VNET_HW_INTERFACE_FLAG_LINK_UP : 0;
Pierre Pfisterf00f91a2016-03-09 18:22:32 +0000747 vnet_hw_interface_set_flags (vnm, hw_if_index, hw_flags);
748 return 0;
749}
750
Neale Ranns3b81a1e2018-09-06 09:50:26 -0700751static clib_error_t *
752simulated_ethernet_mac_change (vnet_hw_interface_t * hi,
753 const u8 * old_address, const u8 * mac_address)
754{
755 l2input_interface_mac_change (hi->sw_if_index, old_address, mac_address);
756
757 return (NULL);
758}
759
760
Ed Warnickecb9cada2015-12-08 15:45:58 -0700761VNET_DEVICE_CLASS (ethernet_simulated_device_class) = {
762 .name = "Loopback",
763 .format_device_name = format_simulated_ethernet_name,
764 .tx_function = simulated_ethernet_interface_tx,
Pierre Pfisterf00f91a2016-03-09 18:22:32 +0000765 .admin_up_down_function = simulated_ethernet_admin_up_down,
Neale Ranns3b81a1e2018-09-06 09:50:26 -0700766 .mac_addr_change_function = simulated_ethernet_mac_change,
Ed Warnickecb9cada2015-12-08 15:45:58 -0700767};
768
Jon Loeligerc83c3b72017-02-23 13:57:35 -0600769/*
770 * Maintain a bitmap of allocated loopback instance numbers.
771 */
772#define LOOPBACK_MAX_INSTANCE (16 * 1024)
773
774static u32
775loopback_instance_alloc (u8 is_specified, u32 want)
776{
777 ethernet_main_t *em = &ethernet_main;
778
779 /*
780 * Check for dynamically allocaetd instance number.
781 */
782 if (!is_specified)
783 {
784 u32 bit;
785
786 bit = clib_bitmap_first_clear (em->bm_loopback_instances);
787 if (bit >= LOOPBACK_MAX_INSTANCE)
788 {
789 return ~0;
790 }
791 em->bm_loopback_instances = clib_bitmap_set (em->bm_loopback_instances,
792 bit, 1);
793 return bit;
794 }
795
796 /*
797 * In range?
798 */
799 if (want >= LOOPBACK_MAX_INSTANCE)
800 {
801 return ~0;
802 }
803
804 /*
805 * Already in use?
806 */
807 if (clib_bitmap_get (em->bm_loopback_instances, want))
808 {
809 return ~0;
810 }
811
812 /*
813 * Grant allocation request.
814 */
815 em->bm_loopback_instances = clib_bitmap_set (em->bm_loopback_instances,
816 want, 1);
817
818 return want;
819}
820
821static int
822loopback_instance_free (u32 instance)
823{
824 ethernet_main_t *em = &ethernet_main;
825
826 if (instance >= LOOPBACK_MAX_INSTANCE)
827 {
828 return -1;
829 }
830
831 if (clib_bitmap_get (em->bm_loopback_instances, instance) == 0)
832 {
833 return -1;
834 }
835
836 em->bm_loopback_instances = clib_bitmap_set (em->bm_loopback_instances,
837 instance, 0);
838 return 0;
839}
840
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700841int
Jon Loeligerc83c3b72017-02-23 13:57:35 -0600842vnet_create_loopback_interface (u32 * sw_if_indexp, u8 * mac_address,
843 u8 is_specified, u32 user_instance)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700844{
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700845 vnet_main_t *vnm = vnet_get_main ();
846 vlib_main_t *vm = vlib_get_main ();
Jon Loeligerc83c3b72017-02-23 13:57:35 -0600847 u32 instance;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700848 u8 address[6];
849 u32 hw_if_index;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700850 vnet_hw_interface_t *hw_if;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700851 u32 slot;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700852
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700853 ASSERT (sw_if_indexp);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700854
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700855 *sw_if_indexp = (u32) ~ 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700856
Dave Barachb7b92992018-10-17 10:38:51 -0400857 clib_memset (address, 0, sizeof (address));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700858
859 /*
Jon Loeligerc83c3b72017-02-23 13:57:35 -0600860 * Allocate a loopback instance. Either select on dynamically
861 * or try to use the desired user_instance number.
862 */
863 instance = loopback_instance_alloc (is_specified, user_instance);
864 if (instance == ~0)
865 {
866 return VNET_API_ERROR_INVALID_REGISTRATION;
867 }
868
869 /*
Ed Warnickecb9cada2015-12-08 15:45:58 -0700870 * Default MAC address (dead:0000:0000 + instance) is allocated
871 * if zero mac_address is configured. Otherwise, user-configurable MAC
872 * address is programmed on the loopback interface.
873 */
874 if (memcmp (address, mac_address, sizeof (address)))
Damjan Marionf1213b82016-03-13 02:22:06 +0100875 clib_memcpy (address, mac_address, sizeof (address));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700876 else
877 {
878 address[0] = 0xde;
879 address[1] = 0xad;
880 address[5] = instance;
881 }
882
Damjan Marion5c954c42022-01-06 20:36:14 +0100883 vnet_eth_interface_registration_t eir = {};
884 eir.dev_class_index = ethernet_simulated_device_class.index;
885 eir.dev_instance = instance;
886 eir.address = address;
887 hw_if_index = vnet_eth_register_interface (vnm, &eir);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700888 hw_if = vnet_get_hw_interface (vnm, hw_if_index);
889 slot = vlib_node_add_named_next_with_slot
890 (vm, hw_if->tx_node_index,
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700891 "ethernet-input", VNET_SIMULATED_ETHERNET_TX_NEXT_ETHERNET_INPUT);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700892 ASSERT (slot == VNET_SIMULATED_ETHERNET_TX_NEXT_ETHERNET_INPUT);
893
Dave Barach635ec3b2018-07-13 20:12:45 -0400894 slot = vlib_node_add_named_next_with_slot
895 (vm, hw_if->tx_node_index,
896 "l2-input", VNET_SIMULATED_ETHERNET_TX_NEXT_L2_INPUT);
897 ASSERT (slot == VNET_SIMULATED_ETHERNET_TX_NEXT_L2_INPUT);
898
Ed Warnickecb9cada2015-12-08 15:45:58 -0700899 {
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700900 vnet_sw_interface_t *si = vnet_get_hw_sw_interface (vnm, hw_if_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700901 *sw_if_indexp = si->sw_if_index;
Neale Ranns87dad112018-04-09 01:53:01 -0700902
903 /* By default don't flood to loopbacks, as packets just keep
904 * coming back ... If this loopback becomes a BVI, we'll change it */
905 si->flood_class = VNET_FLOOD_CLASS_NO_FLOOD;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700906 }
907
908 return 0;
909}
910
911static clib_error_t *
912create_simulated_ethernet_interfaces (vlib_main_t * vm,
913 unformat_input_t * input,
914 vlib_cli_command_t * cmd)
915{
916 int rv;
917 u32 sw_if_index;
918 u8 mac_address[6];
Jon Loeligerc83c3b72017-02-23 13:57:35 -0600919 u8 is_specified = 0;
920 u32 user_instance = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700921
Dave Barachb7b92992018-10-17 10:38:51 -0400922 clib_memset (mac_address, 0, sizeof (mac_address));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700923
924 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
925 {
926 if (unformat (input, "mac %U", unformat_ethernet_address, mac_address))
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700927 ;
Jon Loeligerc83c3b72017-02-23 13:57:35 -0600928 if (unformat (input, "instance %d", &user_instance))
929 is_specified = 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700930 else
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700931 break;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700932 }
933
Jon Loeligerc83c3b72017-02-23 13:57:35 -0600934 rv = vnet_create_loopback_interface (&sw_if_index, mac_address,
935 is_specified, user_instance);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700936
937 if (rv)
938 return clib_error_return (0, "vnet_create_loopback_interface failed");
939
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700940 vlib_cli_output (vm, "%U\n", format_vnet_sw_if_index_name, vnet_get_main (),
941 sw_if_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700942 return 0;
943}
944
Billy McFall2d085d92016-09-13 21:47:55 -0400945/*?
946 * Create a loopback interface. Optionally, a MAC Address can be
947 * provided. If not provided, de:ad:00:00:00:<loopId> will be used.
948 *
949 * @cliexpar
950 * The following two command syntaxes are equivalent:
Jon Loeligerc83c3b72017-02-23 13:57:35 -0600951 * @cliexcmd{loopback create-interface [mac <mac-addr>] [instance <instance>]}
952 * @cliexcmd{create loopback interface [mac <mac-addr>] [instance <instance>]}
Billy McFall2d085d92016-09-13 21:47:55 -0400953 * Example of how to create a loopback interface:
954 * @cliexcmd{loopback create-interface}
955?*/
Ed Warnickecb9cada2015-12-08 15:45:58 -0700956VLIB_CLI_COMMAND (create_simulated_ethernet_interface_command, static) = {
957 .path = "loopback create-interface",
Jon Loeligerc83c3b72017-02-23 13:57:35 -0600958 .short_help = "loopback create-interface [mac <mac-addr>] [instance <instance>]",
Ed Warnickecb9cada2015-12-08 15:45:58 -0700959 .function = create_simulated_ethernet_interfaces,
960};
961
Billy McFall2d085d92016-09-13 21:47:55 -0400962/*?
963 * Create a loopback interface. Optionally, a MAC Address can be
964 * provided. If not provided, de:ad:00:00:00:<loopId> will be used.
965 *
966 * @cliexpar
967 * The following two command syntaxes are equivalent:
Jon Loeligerc83c3b72017-02-23 13:57:35 -0600968 * @cliexcmd{loopback create-interface [mac <mac-addr>] [instance <instance>]}
969 * @cliexcmd{create loopback interface [mac <mac-addr>] [instance <instance>]}
Billy McFall2d085d92016-09-13 21:47:55 -0400970 * Example of how to create a loopback interface:
971 * @cliexcmd{create loopback interface}
972?*/
Alpesh Patel370a24e2016-04-08 07:27:37 -0700973VLIB_CLI_COMMAND (create_loopback_interface_command, static) = {
974 .path = "create loopback interface",
Jon Loeligerc83c3b72017-02-23 13:57:35 -0600975 .short_help = "create loopback interface [mac <mac-addr>] [instance <instance>]",
Alpesh Patel370a24e2016-04-08 07:27:37 -0700976 .function = create_simulated_ethernet_interfaces,
977};
978
Ed Warnickecb9cada2015-12-08 15:45:58 -0700979ethernet_interface_t *
980ethernet_get_interface (ethernet_main_t * em, u32 hw_if_index)
981{
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700982 vnet_hw_interface_t *i =
983 vnet_get_hw_interface (vnet_get_main (), hw_if_index);
984 return (i->hw_class_index ==
985 ethernet_hw_interface_class.
986 index ? pool_elt_at_index (em->interfaces, i->hw_instance) : 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700987}
988
Matthew G Smithd459bf32019-09-04 15:01:04 -0500989mac_address_t *
990ethernet_interface_add_del_address (ethernet_main_t * em,
991 u32 hw_if_index, const u8 * address,
992 u8 is_add)
993{
994 ethernet_interface_t *ei = ethernet_get_interface (em, hw_if_index);
Benoît Ganneb44c77d2020-10-20 16:24:17 +0200995 ethernet_interface_address_t *if_addr = 0;
996 int found = 0;
Matthew G Smithd459bf32019-09-04 15:01:04 -0500997
998 /* return if there is not an ethernet interface for this hw interface */
999 if (!ei)
1000 return 0;
1001
1002 /* determine whether the address is configured on the interface */
1003 vec_foreach (if_addr, ei->secondary_addrs)
1004 {
Benoît Ganneb44c77d2020-10-20 16:24:17 +02001005 if (ethernet_mac_address_equal (if_addr->mac.bytes, address))
1006 {
1007 found = 1;
1008 break;
1009 }
Matthew G Smithd459bf32019-09-04 15:01:04 -05001010 }
1011
Benoît Ganneb44c77d2020-10-20 16:24:17 +02001012 if (is_add)
Matthew G Smithd459bf32019-09-04 15:01:04 -05001013 {
Benoît Ganneb44c77d2020-10-20 16:24:17 +02001014 if (!found)
Matthew G Smithd459bf32019-09-04 15:01:04 -05001015 {
Benoît Ganneb44c77d2020-10-20 16:24:17 +02001016 /* address not found yet: add it */
Matthew G Smithd459bf32019-09-04 15:01:04 -05001017 vec_add2 (ei->secondary_addrs, if_addr, 1);
Benoît Ganneb44c77d2020-10-20 16:24:17 +02001018 ethernet_interface_address_copy (if_addr, address);
Matthew G Smithd459bf32019-09-04 15:01:04 -05001019 }
Benoît Ganneb44c77d2020-10-20 16:24:17 +02001020 return &if_addr->mac;
Matthew G Smithd459bf32019-09-04 15:01:04 -05001021 }
1022
Benoît Ganneb44c77d2020-10-20 16:24:17 +02001023 /* delete case */
1024 if (found)
1025 vec_delete (ei->secondary_addrs, 1, if_addr - ei->secondary_addrs);
1026
1027 return 0;
Matthew G Smithd459bf32019-09-04 15:01:04 -05001028}
1029
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001030int
1031vnet_delete_loopback_interface (u32 sw_if_index)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001032{
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001033 vnet_main_t *vnm = vnet_get_main ();
Ed Warnickecb9cada2015-12-08 15:45:58 -07001034
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001035 if (pool_is_free_index (vnm->interface_main.sw_interfaces, sw_if_index))
Ed Warnickecb9cada2015-12-08 15:45:58 -07001036 return VNET_API_ERROR_INVALID_SW_IF_INDEX;
1037
Eyal Barib52c0342018-07-16 19:18:56 +03001038 vnet_hw_interface_t *hw = vnet_get_sup_hw_interface (vnm, sw_if_index);
1039 if (hw == 0 || hw->dev_class_index != ethernet_simulated_device_class.index)
1040 return VNET_API_ERROR_INVALID_SW_IF_INDEX;
Jon Loeligerc83c3b72017-02-23 13:57:35 -06001041
Eyal Barib52c0342018-07-16 19:18:56 +03001042 if (loopback_instance_free (hw->dev_instance) < 0)
1043 return VNET_API_ERROR_INVALID_SW_IF_INDEX;
Jon Loeligerc83c3b72017-02-23 13:57:35 -06001044
Eyal Barib52c0342018-07-16 19:18:56 +03001045 ethernet_delete_interface (vnm, hw->hw_if_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001046
1047 return 0;
1048}
1049
Pavel Kotucekd85590a2016-08-26 13:35:40 +02001050int
Neale Ranns669f4e32019-10-28 07:56:15 -07001051vnet_create_sub_interface (u32 sw_if_index, u32 id,
1052 u32 flags, u16 inner_vlan_id, u16 outer_vlan_id,
1053 u32 * sub_sw_if_index)
1054{
1055 vnet_main_t *vnm = vnet_get_main ();
1056 vnet_interface_main_t *im = &vnm->interface_main;
1057 vnet_hw_interface_t *hi;
1058 u64 sup_and_sub_key = ((u64) (sw_if_index) << 32) | (u64) id;
1059 vnet_sw_interface_t template;
1060 uword *p;
1061 u64 *kp;
1062
1063 hi = vnet_get_sup_hw_interface (vnm, sw_if_index);
1064
1065 p = hash_get_mem (im->sw_if_index_by_sup_and_sub, &sup_and_sub_key);
1066 if (p)
1067 {
1068 return (VNET_API_ERROR_VLAN_ALREADY_EXISTS);
1069 }
1070
1071 clib_memset (&template, 0, sizeof (template));
1072 template.type = VNET_SW_INTERFACE_TYPE_SUB;
1073 template.flood_class = VNET_FLOOD_CLASS_NORMAL;
1074 template.sup_sw_if_index = sw_if_index;
1075 template.sub.id = id;
1076 template.sub.eth.raw_flags = flags;
1077 template.sub.eth.outer_vlan_id = outer_vlan_id;
1078 template.sub.eth.inner_vlan_id = inner_vlan_id;
1079
1080 if (vnet_create_sw_interface (vnm, &template, sub_sw_if_index))
1081 return (VNET_API_ERROR_UNSPECIFIED);
1082
1083 kp = clib_mem_alloc (sizeof (*kp));
1084 *kp = sup_and_sub_key;
1085
1086 hash_set (hi->sub_interface_sw_if_index_by_id, id, *sub_sw_if_index);
1087 hash_set_mem (im->sw_if_index_by_sup_and_sub, kp, *sub_sw_if_index);
1088
1089 return (0);
1090}
1091
1092int
Pavel Kotucekd85590a2016-08-26 13:35:40 +02001093vnet_delete_sub_interface (u32 sw_if_index)
1094{
1095 vnet_main_t *vnm = vnet_get_main ();
Steve Shina36f08c2018-03-07 13:29:29 -08001096 vnet_sw_interface_t *si;
Pavel Kotucekd85590a2016-08-26 13:35:40 +02001097 int rv = 0;
1098
1099 if (pool_is_free_index (vnm->interface_main.sw_interfaces, sw_if_index))
1100 return VNET_API_ERROR_INVALID_SW_IF_INDEX;
1101
Steve Shina36f08c2018-03-07 13:29:29 -08001102 si = vnet_get_sw_interface (vnm, sw_if_index);
Pavel Kotucek15ac81c2017-06-20 14:00:26 +02001103 if (si->type == VNET_SW_INTERFACE_TYPE_SUB ||
Neale Ranns17ff3c12018-07-04 10:24:24 -07001104 si->type == VNET_SW_INTERFACE_TYPE_PIPE ||
Pavel Kotucek15ac81c2017-06-20 14:00:26 +02001105 si->type == VNET_SW_INTERFACE_TYPE_P2P)
Pavel Kotucekd85590a2016-08-26 13:35:40 +02001106 {
John Lo5957a142018-01-18 12:44:50 -05001107 vnet_interface_main_t *im = &vnm->interface_main;
1108 vnet_hw_interface_t *hi = vnet_get_sup_hw_interface (vnm, sw_if_index);
Pavel Kotucekd85590a2016-08-26 13:35:40 +02001109 u64 sup_and_sub_key =
1110 ((u64) (si->sup_sw_if_index) << 32) | (u64) si->sub.id;
John Lo5957a142018-01-18 12:44:50 -05001111 hash_unset_mem_free (&im->sw_if_index_by_sup_and_sub, &sup_and_sub_key);
1112 hash_unset (hi->sub_interface_sw_if_index_by_id, si->sub.id);
Pavel Kotucekd85590a2016-08-26 13:35:40 +02001113 vnet_delete_sw_interface (vnm, sw_if_index);
1114 }
1115 else
John Lo5957a142018-01-18 12:44:50 -05001116 rv = VNET_API_ERROR_INVALID_SUB_SW_IF_INDEX;
1117
Pavel Kotucekd85590a2016-08-26 13:35:40 +02001118 return rv;
1119}
1120
Ed Warnickecb9cada2015-12-08 15:45:58 -07001121static clib_error_t *
1122delete_simulated_ethernet_interfaces (vlib_main_t * vm,
1123 unformat_input_t * input,
1124 vlib_cli_command_t * cmd)
1125{
1126 int rv;
1127 u32 sw_if_index = ~0;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001128 vnet_main_t *vnm = vnet_get_main ();
Ed Warnickecb9cada2015-12-08 15:45:58 -07001129
1130 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
1131 {
1132 if (unformat (input, "intfc %U",
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001133 unformat_vnet_sw_interface, vnm, &sw_if_index))
1134 ;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001135 else
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001136 break;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001137 }
1138
1139 if (sw_if_index == ~0)
1140 return clib_error_return (0, "interface not specified");
1141
1142 rv = vnet_delete_loopback_interface (sw_if_index);
1143
1144 if (rv)
1145 return clib_error_return (0, "vnet_delete_loopback_interface failed");
1146
1147 return 0;
1148}
1149
Pavel Kotucekd85590a2016-08-26 13:35:40 +02001150static clib_error_t *
1151delete_sub_interface (vlib_main_t * vm,
1152 unformat_input_t * input, vlib_cli_command_t * cmd)
1153{
1154 int rv = 0;
1155 u32 sw_if_index = ~0;
1156 vnet_main_t *vnm = vnet_get_main ();
1157
1158 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
1159 {
1160 if (unformat
1161 (input, "%U", unformat_vnet_sw_interface, vnm, &sw_if_index))
1162 ;
1163 else
1164 break;
1165 }
1166 if (sw_if_index == ~0)
1167 return clib_error_return (0, "interface doesn't exist");
1168
1169 if (pool_is_free_index (vnm->interface_main.sw_interfaces, sw_if_index))
1170 rv = VNET_API_ERROR_INVALID_SW_IF_INDEX;
1171 else
1172 rv = vnet_delete_sub_interface (sw_if_index);
1173 if (rv)
1174 return clib_error_return (0, "delete_subinterface_interface failed");
1175 return 0;
1176}
1177
Billy McFall2d085d92016-09-13 21:47:55 -04001178/*?
1179 * Delete a loopback interface.
1180 *
1181 * @cliexpar
1182 * The following two command syntaxes are equivalent:
1183 * @cliexcmd{loopback delete-interface intfc <interface>}
1184 * @cliexcmd{delete loopback interface intfc <interface>}
1185 * Example of how to delete a loopback interface:
1186 * @cliexcmd{loopback delete-interface intfc loop0}
1187?*/
Ed Warnickecb9cada2015-12-08 15:45:58 -07001188VLIB_CLI_COMMAND (delete_simulated_ethernet_interface_command, static) = {
1189 .path = "loopback delete-interface",
Billy McFall2d085d92016-09-13 21:47:55 -04001190 .short_help = "loopback delete-interface intfc <interface>",
Ed Warnickecb9cada2015-12-08 15:45:58 -07001191 .function = delete_simulated_ethernet_interfaces,
1192};
Alpesh S. Patel633951c2016-04-12 09:58:56 -07001193
Billy McFall2d085d92016-09-13 21:47:55 -04001194/*?
1195 * Delete a loopback interface.
1196 *
1197 * @cliexpar
1198 * The following two command syntaxes are equivalent:
1199 * @cliexcmd{loopback delete-interface intfc <interface>}
1200 * @cliexcmd{delete loopback interface intfc <interface>}
1201 * Example of how to delete a loopback interface:
1202 * @cliexcmd{delete loopback interface intfc loop0}
1203?*/
Alpesh S. Patel633951c2016-04-12 09:58:56 -07001204VLIB_CLI_COMMAND (delete_loopback_interface_command, static) = {
1205 .path = "delete loopback interface",
1206 .short_help = "delete loopback interface intfc <interface>",
1207 .function = delete_simulated_ethernet_interfaces,
1208};
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001209
Billy McFall2d085d92016-09-13 21:47:55 -04001210/*?
1211 * Delete a sub-interface.
1212 *
1213 * @cliexpar
1214 * Example of how to delete a sub-interface:
1215 * @cliexcmd{delete sub-interface GigabitEthernet0/8/0.200}
1216?*/
Pavel Kotucekd85590a2016-08-26 13:35:40 +02001217VLIB_CLI_COMMAND (delete_sub_interface_command, static) = {
1218 .path = "delete sub-interface",
1219 .short_help = "delete sub-interface <interface>",
1220 .function = delete_sub_interface,
1221};
Pavel Kotucekd85590a2016-08-26 13:35:40 +02001222
Paul Vinciguerra491741a2020-03-02 16:10:54 -05001223/* ethernet { ... } configuration. */
1224/*?
1225 *
1226 * @cfgcmd{default-mtu &lt;n&gt;}
1227 * Specify the default mtu in the range of 64-9000. The default is 9000 bytes.
1228 *
1229 */
Dave Barach5fa45252020-02-26 10:27:08 -05001230static clib_error_t *
1231ethernet_config (vlib_main_t * vm, unformat_input_t * input)
1232{
1233 ethernet_main_t *em = &ethernet_main;
1234
1235 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
1236 {
1237 if (unformat (input, "default-mtu %u", &em->default_mtu))
1238 {
1239 if (em->default_mtu < 64 || em->default_mtu > 9000)
1240 return clib_error_return (0, "default MTU must be >=64, <=9000");
1241 }
1242 else
1243 {
1244 return clib_error_return (0, "unknown input '%U'",
1245 format_unformat_error, input);
1246 }
1247 }
1248 return 0;
1249}
1250
1251VLIB_CONFIG_FUNCTION (ethernet_config, "ethernet");
1252
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001253/*
1254 * fd.io coding-style-patch-verification: ON
1255 *
1256 * Local Variables:
1257 * eval: (c-set-style "gnu")
1258 * End:
1259 */