blob: c941f82a50bd2ba590ede3bde1ebfee09717ad4a [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;
306 vec_foreach (cb, em->address_change_callbacks)
307 cb->function (em, hi->sw_if_index, cb->function_opaque);
308 }
Neale Ranns3be6b282016-12-20 14:24:01 +0000309
310 return (NULL);
311}
312
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700313/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700314VNET_HW_INTERFACE_CLASS (ethernet_hw_interface_class) = {
315 .name = "Ethernet",
Mohsin Kazmi0d05c0d2021-11-09 17:44:10 +0000316 .tx_hash_fn_type = VNET_HASH_FN_TYPE_ETHERNET,
Ed Warnickecb9cada2015-12-08 15:45:58 -0700317 .format_address = format_ethernet_address,
318 .format_header = format_ethernet_header_with_length,
319 .unformat_hw_address = unformat_ethernet_address,
320 .unformat_header = unformat_ethernet_header,
Neale Rannsb80c5362016-10-08 13:03:40 +0100321 .build_rewrite = ethernet_build_rewrite,
322 .update_adjacency = ethernet_update_adjacency,
Neale Ranns3be6b282016-12-20 14:24:01 +0000323 .mac_addr_change_function = ethernet_mac_change,
Ed Warnickecb9cada2015-12-08 15:45:58 -0700324};
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700325/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700326
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700327uword
328unformat_ethernet_interface (unformat_input_t * input, va_list * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700329{
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700330 vnet_main_t *vnm = va_arg (*args, vnet_main_t *);
331 u32 *result = va_arg (*args, u32 *);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700332 u32 hw_if_index;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700333 ethernet_main_t *em = &ethernet_main;
334 ethernet_interface_t *eif;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700335
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700336 if (!unformat_user (input, unformat_vnet_hw_interface, vnm, &hw_if_index))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700337 return 0;
338
339 eif = ethernet_get_interface (em, hw_if_index);
340 if (eif)
341 {
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700342 *result = hw_if_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700343 return 1;
344 }
345 return 0;
346}
347
348clib_error_t *
349ethernet_register_interface (vnet_main_t * vnm,
350 u32 dev_class_index,
351 u32 dev_instance,
Neale Ranns192b13f2019-03-15 02:16:20 -0700352 const u8 * address,
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700353 u32 * hw_if_index_return,
354 ethernet_flag_change_function_t flag_change)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700355{
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700356 ethernet_main_t *em = &ethernet_main;
357 ethernet_interface_t *ei;
358 vnet_hw_interface_t *hi;
359 clib_error_t *error = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700360 u32 hw_if_index;
361
362 pool_get (em->interfaces, ei);
363 ei->flag_change = flag_change;
364
365 hw_if_index = vnet_register_interface
366 (vnm,
367 dev_class_index, dev_instance,
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700368 ethernet_hw_interface_class.index, ei - em->interfaces);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700369 *hw_if_index_return = hw_if_index;
370
371 hi = vnet_get_hw_interface (vnm, hw_if_index);
372
373 ethernet_setup_node (vnm->vlib_main, hi->output_node_index);
374
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700375 hi->min_packet_bytes = hi->min_supported_packet_bytes =
376 ETHERNET_MIN_PACKET_BYTES;
377 hi->max_packet_bytes = hi->max_supported_packet_bytes =
378 ETHERNET_MAX_PACKET_BYTES;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700379
Dave Barach5fa45252020-02-26 10:27:08 -0500380 /* Default ethernet MTU, 9000 unless set by ethernet_config see below */
381 vnet_sw_interface_set_mtu (vnm, hi->sw_if_index, em->default_mtu);
Damjan Marionfe7d4a22018-04-13 19:43:39 +0200382
Benoît Ganneb44c77d2020-10-20 16:24:17 +0200383 ethernet_set_mac (hi, ei, address);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700384
385 if (error)
386 {
387 pool_put (em->interfaces, ei);
388 return error;
389 }
390 return error;
391}
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700392
Ed Warnickecb9cada2015-12-08 15:45:58 -0700393void
394ethernet_delete_interface (vnet_main_t * vnm, u32 hw_if_index)
395{
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700396 ethernet_main_t *em = &ethernet_main;
397 ethernet_interface_t *ei;
398 vnet_hw_interface_t *hi;
399 main_intf_t *main_intf;
400 vlan_table_t *vlan_table;
401 u32 idx;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700402
403 hi = vnet_get_hw_interface (vnm, hw_if_index);
404 ei = pool_elt_at_index (em->interfaces, hi->hw_instance);
405
406 /* Delete vlan mapping table for dot1q and dot1ad. */
407 main_intf = vec_elt_at_index (em->main_intfs, hi->hw_if_index);
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700408 if (main_intf->dot1q_vlans)
409 {
410 vlan_table = vec_elt_at_index (em->vlan_pool, main_intf->dot1q_vlans);
411 for (idx = 0; idx < ETHERNET_N_VLAN; idx++)
412 {
413 if (vlan_table->vlans[idx].qinqs)
414 {
415 pool_put_index (em->qinq_pool, vlan_table->vlans[idx].qinqs);
John Lod63abff2018-10-04 16:22:21 -0400416 vlan_table->vlans[idx].qinqs = 0;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700417 }
418 }
419 pool_put_index (em->vlan_pool, main_intf->dot1q_vlans);
Steve Shin8a3e5752018-02-20 11:38:34 -0800420 main_intf->dot1q_vlans = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700421 }
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700422 if (main_intf->dot1ad_vlans)
423 {
424 vlan_table = vec_elt_at_index (em->vlan_pool, main_intf->dot1ad_vlans);
425 for (idx = 0; idx < ETHERNET_N_VLAN; idx++)
426 {
427 if (vlan_table->vlans[idx].qinqs)
428 {
429 pool_put_index (em->qinq_pool, vlan_table->vlans[idx].qinqs);
John Lod63abff2018-10-04 16:22:21 -0400430 vlan_table->vlans[idx].qinqs = 0;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700431 }
432 }
433 pool_put_index (em->vlan_pool, main_intf->dot1ad_vlans);
Steve Shin8a3e5752018-02-20 11:38:34 -0800434 main_intf->dot1ad_vlans = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700435 }
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700436
Ed Warnickecb9cada2015-12-08 15:45:58 -0700437 vnet_delete_hw_interface (vnm, hw_if_index);
438 pool_put (em->interfaces, ei);
439}
440
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700441u32
Ed Warnickecb9cada2015-12-08 15:45:58 -0700442ethernet_set_flags (vnet_main_t * vnm, u32 hw_if_index, u32 flags)
443{
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700444 ethernet_main_t *em = &ethernet_main;
445 vnet_hw_interface_t *hi;
446 ethernet_interface_t *ei;
John Lo4a302ee2020-05-12 22:34:39 -0400447 u32 opn_flags = flags & ETHERNET_INTERFACE_FLAGS_SET_OPN_MASK;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700448
Ed Warnickecb9cada2015-12-08 15:45:58 -0700449 hi = vnet_get_hw_interface (vnm, hw_if_index);
450
451 ASSERT (hi->hw_class_index == ethernet_hw_interface_class.index);
452
453 ei = pool_elt_at_index (em->interfaces, hi->hw_instance);
John Lo4a302ee2020-05-12 22:34:39 -0400454
455 /* preserve status bits and update last set operation bits */
456 ei->flags = (ei->flags & ETHERNET_INTERFACE_FLAGS_STATUS_MASK) | opn_flags;
457
Ed Warnickecb9cada2015-12-08 15:45:58 -0700458 if (ei->flag_change)
John Lo4a302ee2020-05-12 22:34:39 -0400459 {
460 switch (opn_flags)
461 {
462 case ETHERNET_INTERFACE_FLAG_DEFAULT_L3:
Mohsin Kazmi5b3f5232021-02-10 12:03:53 +0100463 if (hi->caps & VNET_HW_INTERFACE_CAP_SUPPORTS_MAC_FILTER)
John Lo4a302ee2020-05-12 22:34:39 -0400464 {
465 if (ei->flag_change (vnm, hi, opn_flags) != ~0)
466 {
467 ei->flags |= ETHERNET_INTERFACE_FLAG_STATUS_L3;
468 return 0;
469 }
470 ei->flags &= ~ETHERNET_INTERFACE_FLAG_STATUS_L3;
471 return ~0;
472 }
473 /* fall through */
474 case ETHERNET_INTERFACE_FLAG_ACCEPT_ALL:
475 ei->flags &= ~ETHERNET_INTERFACE_FLAG_STATUS_L3;
476 /* fall through */
477 case ETHERNET_INTERFACE_FLAG_MTU:
478 return ei->flag_change (vnm, hi, opn_flags);
479 default:
480 return ~0;
481 }
482 }
483 return ~0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700484}
485
Dave Barach635ec3b2018-07-13 20:12:45 -0400486/**
487 * Echo packets back to ethernet/l2-input.
Dave Barach635ec3b2018-07-13 20:12:45 -0400488 */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700489static uword
490simulated_ethernet_interface_tx (vlib_main_t * vm,
Dave Barach635ec3b2018-07-13 20:12:45 -0400491 vlib_node_runtime_t *
492 node, vlib_frame_t * frame)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700493{
Dave Barach78451a62018-07-21 09:25:00 -0400494 u32 n_left_from, *from;
495 u32 next_index = 0;
496 u32 n_bytes;
Damjan Marion586afd72017-04-05 19:18:20 +0200497 u32 thread_index = vm->thread_index;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700498 vnet_main_t *vnm = vnet_get_main ();
499 vnet_interface_main_t *im = &vnm->interface_main;
Dave Barach635ec3b2018-07-13 20:12:45 -0400500 l2_input_config_t *config;
Dave Barach78451a62018-07-21 09:25:00 -0400501 vlib_buffer_t *bufs[VLIB_FRAME_SIZE], **b;
502 u16 nexts[VLIB_FRAME_SIZE], *next;
503 u32 new_rx_sw_if_index = ~0;
504 u32 new_tx_sw_if_index = ~0;
John Lo405e41b2016-04-23 15:14:12 -0400505
Ed Warnickecb9cada2015-12-08 15:45:58 -0700506 n_left_from = frame->n_vectors;
Damjan Mariona3d59862018-11-10 10:23:00 +0100507 from = vlib_frame_vector_args (frame);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700508
Dave Barach78451a62018-07-21 09:25:00 -0400509 vlib_get_buffers (vm, from, bufs, n_left_from);
510 b = bufs;
511 next = nexts;
Dave Barach635ec3b2018-07-13 20:12:45 -0400512
Dave Barach78451a62018-07-21 09:25:00 -0400513 /* Ordinarily, this is the only config lookup. */
514 config = l2input_intf_config (vnet_buffer (b[0])->sw_if_index[VLIB_TX]);
Neale Ranns47a3d992020-09-29 15:38:51 +0000515 next_index = (l2_input_is_bridge (config) ?
516 VNET_SIMULATED_ETHERNET_TX_NEXT_L2_INPUT :
517 VNET_SIMULATED_ETHERNET_TX_NEXT_ETHERNET_INPUT);
518 new_tx_sw_if_index = l2_input_is_bvi (config) ? L2INPUT_BVI : ~0;
Dave Barach78451a62018-07-21 09:25:00 -0400519 new_rx_sw_if_index = vnet_buffer (b[0])->sw_if_index[VLIB_TX];
Dave Barach635ec3b2018-07-13 20:12:45 -0400520
Dave Barach78451a62018-07-21 09:25:00 -0400521 while (n_left_from >= 4)
522 {
523 u32 sw_if_index0, sw_if_index1, sw_if_index2, sw_if_index3;
524 u32 not_all_match_config;
Dave Barach635ec3b2018-07-13 20:12:45 -0400525
Dave Barach78451a62018-07-21 09:25:00 -0400526 /* Prefetch next iteration. */
527 if (PREDICT_TRUE (n_left_from >= 8))
528 {
529 vlib_prefetch_buffer_header (b[4], STORE);
530 vlib_prefetch_buffer_header (b[5], STORE);
531 vlib_prefetch_buffer_header (b[6], STORE);
532 vlib_prefetch_buffer_header (b[7], STORE);
533 }
Dave Barach635ec3b2018-07-13 20:12:45 -0400534
Dave Barach78451a62018-07-21 09:25:00 -0400535 /* Make sure all pkts were transmitted on the same (loop) intfc */
536 sw_if_index0 = vnet_buffer (b[0])->sw_if_index[VLIB_TX];
537 sw_if_index1 = vnet_buffer (b[1])->sw_if_index[VLIB_TX];
538 sw_if_index2 = vnet_buffer (b[2])->sw_if_index[VLIB_TX];
539 sw_if_index3 = vnet_buffer (b[3])->sw_if_index[VLIB_TX];
Dave Barach635ec3b2018-07-13 20:12:45 -0400540
Dave Barach78451a62018-07-21 09:25:00 -0400541 not_all_match_config = (sw_if_index0 ^ sw_if_index1)
542 ^ (sw_if_index2 ^ sw_if_index3);
543 not_all_match_config += sw_if_index0 ^ new_rx_sw_if_index;
544
545 /* Speed path / expected case: all pkts on the same intfc */
546 if (PREDICT_TRUE (not_all_match_config == 0))
547 {
548 next[0] = next_index;
549 next[1] = next_index;
550 next[2] = next_index;
551 next[3] = next_index;
552 vnet_buffer (b[0])->sw_if_index[VLIB_RX] = new_rx_sw_if_index;
553 vnet_buffer (b[1])->sw_if_index[VLIB_RX] = new_rx_sw_if_index;
554 vnet_buffer (b[2])->sw_if_index[VLIB_RX] = new_rx_sw_if_index;
555 vnet_buffer (b[3])->sw_if_index[VLIB_RX] = new_rx_sw_if_index;
556 vnet_buffer (b[0])->sw_if_index[VLIB_TX] = new_tx_sw_if_index;
557 vnet_buffer (b[1])->sw_if_index[VLIB_TX] = new_tx_sw_if_index;
558 vnet_buffer (b[2])->sw_if_index[VLIB_TX] = new_tx_sw_if_index;
559 vnet_buffer (b[3])->sw_if_index[VLIB_TX] = new_tx_sw_if_index;
560 n_bytes = vlib_buffer_length_in_chain (vm, b[0]);
561 n_bytes += vlib_buffer_length_in_chain (vm, b[1]);
562 n_bytes += vlib_buffer_length_in_chain (vm, b[2]);
563 n_bytes += vlib_buffer_length_in_chain (vm, b[3]);
564
565 if (next_index == VNET_SIMULATED_ETHERNET_TX_NEXT_L2_INPUT)
566 {
567 vnet_update_l2_len (b[0]);
568 vnet_update_l2_len (b[1]);
569 vnet_update_l2_len (b[2]);
570 vnet_update_l2_len (b[3]);
571 }
572
573 /* increment TX interface stat */
574 vlib_increment_combined_counter (im->combined_sw_if_counters +
575 VNET_INTERFACE_COUNTER_TX,
576 thread_index, new_rx_sw_if_index,
577 4 /* pkts */ , n_bytes);
578 b += 4;
579 next += 4;
580 n_left_from -= 4;
581 continue;
582 }
583
584 /*
585 * Slow path: we know that at least one of the pkts
586 * was transmitted on a different sw_if_index, so
587 * check each sw_if_index against the cached data and proceed
588 * accordingly.
589 *
590 * This shouldn't happen, but code can (and does) bypass the
591 * per-interface output node, so deal with it.
592 */
593 if (PREDICT_FALSE (vnet_buffer (b[0])->sw_if_index[VLIB_TX]
594 != new_rx_sw_if_index))
595 {
596 config = l2input_intf_config
597 (vnet_buffer (b[0])->sw_if_index[VLIB_TX]);
Neale Ranns47a3d992020-09-29 15:38:51 +0000598 next_index = (l2_input_is_bridge (config) ?
599 VNET_SIMULATED_ETHERNET_TX_NEXT_L2_INPUT :
600 VNET_SIMULATED_ETHERNET_TX_NEXT_ETHERNET_INPUT);
601 new_tx_sw_if_index = l2_input_is_bvi (config) ? L2INPUT_BVI : ~0;
Dave Barach78451a62018-07-21 09:25:00 -0400602 new_rx_sw_if_index = vnet_buffer (b[0])->sw_if_index[VLIB_TX];
603 }
604 next[0] = next_index;
605 vnet_buffer (b[0])->sw_if_index[VLIB_RX] = new_rx_sw_if_index;
606 vnet_buffer (b[0])->sw_if_index[VLIB_TX] = new_tx_sw_if_index;
607 n_bytes = vlib_buffer_length_in_chain (vm, b[0]);
608 if (next_index == VNET_SIMULATED_ETHERNET_TX_NEXT_L2_INPUT)
609 vnet_update_l2_len (b[0]);
610
611 vlib_increment_combined_counter (im->combined_sw_if_counters +
612 VNET_INTERFACE_COUNTER_TX,
613 thread_index, new_rx_sw_if_index,
614 1 /* pkts */ , n_bytes);
615
616 if (PREDICT_FALSE (vnet_buffer (b[1])->sw_if_index[VLIB_TX]
617 != new_rx_sw_if_index))
618 {
619 config = l2input_intf_config
620 (vnet_buffer (b[1])->sw_if_index[VLIB_TX]);
Neale Ranns47a3d992020-09-29 15:38:51 +0000621 next_index = (l2_input_is_bridge (config) ?
622 VNET_SIMULATED_ETHERNET_TX_NEXT_L2_INPUT :
623 VNET_SIMULATED_ETHERNET_TX_NEXT_ETHERNET_INPUT);
Dave Barach78451a62018-07-21 09:25:00 -0400624 new_rx_sw_if_index = vnet_buffer (b[1])->sw_if_index[VLIB_TX];
Neale Ranns47a3d992020-09-29 15:38:51 +0000625 new_tx_sw_if_index = l2_input_is_bvi (config) ? L2INPUT_BVI : ~0;
Dave Barach78451a62018-07-21 09:25:00 -0400626 }
627 next[1] = next_index;
628 vnet_buffer (b[1])->sw_if_index[VLIB_RX] = new_rx_sw_if_index;
629 vnet_buffer (b[1])->sw_if_index[VLIB_TX] = new_tx_sw_if_index;
630 n_bytes = vlib_buffer_length_in_chain (vm, b[1]);
631 if (next_index == VNET_SIMULATED_ETHERNET_TX_NEXT_L2_INPUT)
632 vnet_update_l2_len (b[1]);
633
634 vlib_increment_combined_counter (im->combined_sw_if_counters +
635 VNET_INTERFACE_COUNTER_TX,
636 thread_index, new_rx_sw_if_index,
637 1 /* pkts */ , n_bytes);
638
639 if (PREDICT_FALSE (vnet_buffer (b[2])->sw_if_index[VLIB_TX]
640 != new_rx_sw_if_index))
641 {
642 config = l2input_intf_config
643 (vnet_buffer (b[2])->sw_if_index[VLIB_TX]);
Neale Ranns47a3d992020-09-29 15:38:51 +0000644 next_index = (l2_input_is_bridge (config) ?
645 VNET_SIMULATED_ETHERNET_TX_NEXT_L2_INPUT :
646 VNET_SIMULATED_ETHERNET_TX_NEXT_ETHERNET_INPUT);
Dave Barach78451a62018-07-21 09:25:00 -0400647 new_rx_sw_if_index = vnet_buffer (b[2])->sw_if_index[VLIB_TX];
Neale Ranns47a3d992020-09-29 15:38:51 +0000648 new_tx_sw_if_index = l2_input_is_bvi (config) ? L2INPUT_BVI : ~0;
Dave Barach78451a62018-07-21 09:25:00 -0400649 }
650 next[2] = next_index;
651 vnet_buffer (b[2])->sw_if_index[VLIB_RX] = new_rx_sw_if_index;
652 vnet_buffer (b[2])->sw_if_index[VLIB_TX] = new_tx_sw_if_index;
653 n_bytes = vlib_buffer_length_in_chain (vm, b[2]);
654 if (next_index == VNET_SIMULATED_ETHERNET_TX_NEXT_L2_INPUT)
655 vnet_update_l2_len (b[2]);
656
657 vlib_increment_combined_counter (im->combined_sw_if_counters +
658 VNET_INTERFACE_COUNTER_TX,
659 thread_index, new_rx_sw_if_index,
660 1 /* pkts */ , n_bytes);
661
662 if (PREDICT_FALSE (vnet_buffer (b[3])->sw_if_index[VLIB_TX]
663 != new_rx_sw_if_index))
664 {
665 config = l2input_intf_config
666 (vnet_buffer (b[3])->sw_if_index[VLIB_TX]);
Neale Ranns47a3d992020-09-29 15:38:51 +0000667 next_index = (l2_input_is_bridge (config) ?
668 VNET_SIMULATED_ETHERNET_TX_NEXT_L2_INPUT :
669 VNET_SIMULATED_ETHERNET_TX_NEXT_ETHERNET_INPUT);
Dave Barach78451a62018-07-21 09:25:00 -0400670 new_rx_sw_if_index = vnet_buffer (b[3])->sw_if_index[VLIB_TX];
Neale Ranns47a3d992020-09-29 15:38:51 +0000671 new_tx_sw_if_index = l2_input_is_bvi (config) ? L2INPUT_BVI : ~0;
Dave Barach78451a62018-07-21 09:25:00 -0400672 }
673 next[3] = next_index;
674 vnet_buffer (b[3])->sw_if_index[VLIB_RX] = new_rx_sw_if_index;
675 vnet_buffer (b[3])->sw_if_index[VLIB_TX] = new_tx_sw_if_index;
676 n_bytes = vlib_buffer_length_in_chain (vm, b[3]);
677 if (next_index == VNET_SIMULATED_ETHERNET_TX_NEXT_L2_INPUT)
678 vnet_update_l2_len (b[3]);
679
680 vlib_increment_combined_counter (im->combined_sw_if_counters +
681 VNET_INTERFACE_COUNTER_TX,
682 thread_index, new_rx_sw_if_index,
683 1 /* pkts */ , n_bytes);
684 b += 4;
685 next += 4;
686 n_left_from -= 4;
687 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700688 while (n_left_from > 0)
689 {
Dave Barach78451a62018-07-21 09:25:00 -0400690 if (PREDICT_FALSE (vnet_buffer (b[0])->sw_if_index[VLIB_TX]
691 != new_rx_sw_if_index))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700692 {
Dave Barach78451a62018-07-21 09:25:00 -0400693 config = l2input_intf_config
694 (vnet_buffer (b[0])->sw_if_index[VLIB_TX]);
Neale Ranns47a3d992020-09-29 15:38:51 +0000695 next_index = (l2_input_is_bridge (config) ?
696 VNET_SIMULATED_ETHERNET_TX_NEXT_L2_INPUT :
697 VNET_SIMULATED_ETHERNET_TX_NEXT_ETHERNET_INPUT);
698 new_tx_sw_if_index = l2_input_is_bvi (config) ? L2INPUT_BVI : ~0;
Dave Barach78451a62018-07-21 09:25:00 -0400699 new_rx_sw_if_index = vnet_buffer (b[0])->sw_if_index[VLIB_TX];
Ed Warnickecb9cada2015-12-08 15:45:58 -0700700 }
Dave Barach78451a62018-07-21 09:25:00 -0400701 next[0] = next_index;
702 vnet_buffer (b[0])->sw_if_index[VLIB_RX] = new_rx_sw_if_index;
703 vnet_buffer (b[0])->sw_if_index[VLIB_TX] = new_tx_sw_if_index;
704 n_bytes = vlib_buffer_length_in_chain (vm, b[0]);
705 if (next_index == VNET_SIMULATED_ETHERNET_TX_NEXT_L2_INPUT)
706 vnet_update_l2_len (b[0]);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700707
Dave Barach78451a62018-07-21 09:25:00 -0400708 vlib_increment_combined_counter (im->combined_sw_if_counters +
709 VNET_INTERFACE_COUNTER_TX,
710 thread_index, new_rx_sw_if_index,
711 1 /* pkts */ , n_bytes);
712 b += 1;
713 next += 1;
714 n_left_from -= 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700715 }
716
Dave Barach78451a62018-07-21 09:25:00 -0400717 vlib_buffer_enqueue_to_next (vm, node, from, nexts, frame->n_vectors);
Dave Barach635ec3b2018-07-13 20:12:45 -0400718
719 return frame->n_vectors;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700720}
721
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700722static u8 *
723format_simulated_ethernet_name (u8 * s, va_list * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700724{
725 u32 dev_instance = va_arg (*args, u32);
726 return format (s, "loop%d", dev_instance);
727}
728
Pierre Pfisterf00f91a2016-03-09 18:22:32 +0000729static clib_error_t *
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700730simulated_ethernet_admin_up_down (vnet_main_t * vnm, u32 hw_if_index,
731 u32 flags)
Pierre Pfisterf00f91a2016-03-09 18:22:32 +0000732{
733 u32 hw_flags = (flags & VNET_SW_INTERFACE_FLAG_ADMIN_UP) ?
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700734 VNET_HW_INTERFACE_FLAG_LINK_UP : 0;
Pierre Pfisterf00f91a2016-03-09 18:22:32 +0000735 vnet_hw_interface_set_flags (vnm, hw_if_index, hw_flags);
736 return 0;
737}
738
Neale Ranns3b81a1e2018-09-06 09:50:26 -0700739static clib_error_t *
740simulated_ethernet_mac_change (vnet_hw_interface_t * hi,
741 const u8 * old_address, const u8 * mac_address)
742{
743 l2input_interface_mac_change (hi->sw_if_index, old_address, mac_address);
744
745 return (NULL);
746}
747
748
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700749/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700750VNET_DEVICE_CLASS (ethernet_simulated_device_class) = {
751 .name = "Loopback",
752 .format_device_name = format_simulated_ethernet_name,
753 .tx_function = simulated_ethernet_interface_tx,
Pierre Pfisterf00f91a2016-03-09 18:22:32 +0000754 .admin_up_down_function = simulated_ethernet_admin_up_down,
Neale Ranns3b81a1e2018-09-06 09:50:26 -0700755 .mac_addr_change_function = simulated_ethernet_mac_change,
Ed Warnickecb9cada2015-12-08 15:45:58 -0700756};
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700757/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700758
Jon Loeligerc83c3b72017-02-23 13:57:35 -0600759/*
760 * Maintain a bitmap of allocated loopback instance numbers.
761 */
762#define LOOPBACK_MAX_INSTANCE (16 * 1024)
763
764static u32
765loopback_instance_alloc (u8 is_specified, u32 want)
766{
767 ethernet_main_t *em = &ethernet_main;
768
769 /*
770 * Check for dynamically allocaetd instance number.
771 */
772 if (!is_specified)
773 {
774 u32 bit;
775
776 bit = clib_bitmap_first_clear (em->bm_loopback_instances);
777 if (bit >= LOOPBACK_MAX_INSTANCE)
778 {
779 return ~0;
780 }
781 em->bm_loopback_instances = clib_bitmap_set (em->bm_loopback_instances,
782 bit, 1);
783 return bit;
784 }
785
786 /*
787 * In range?
788 */
789 if (want >= LOOPBACK_MAX_INSTANCE)
790 {
791 return ~0;
792 }
793
794 /*
795 * Already in use?
796 */
797 if (clib_bitmap_get (em->bm_loopback_instances, want))
798 {
799 return ~0;
800 }
801
802 /*
803 * Grant allocation request.
804 */
805 em->bm_loopback_instances = clib_bitmap_set (em->bm_loopback_instances,
806 want, 1);
807
808 return want;
809}
810
811static int
812loopback_instance_free (u32 instance)
813{
814 ethernet_main_t *em = &ethernet_main;
815
816 if (instance >= LOOPBACK_MAX_INSTANCE)
817 {
818 return -1;
819 }
820
821 if (clib_bitmap_get (em->bm_loopback_instances, instance) == 0)
822 {
823 return -1;
824 }
825
826 em->bm_loopback_instances = clib_bitmap_set (em->bm_loopback_instances,
827 instance, 0);
828 return 0;
829}
830
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700831int
Jon Loeligerc83c3b72017-02-23 13:57:35 -0600832vnet_create_loopback_interface (u32 * sw_if_indexp, u8 * mac_address,
833 u8 is_specified, u32 user_instance)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700834{
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700835 vnet_main_t *vnm = vnet_get_main ();
836 vlib_main_t *vm = vlib_get_main ();
837 clib_error_t *error;
Jon Loeligerc83c3b72017-02-23 13:57:35 -0600838 u32 instance;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700839 u8 address[6];
840 u32 hw_if_index;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700841 vnet_hw_interface_t *hw_if;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700842 u32 slot;
843 int rv = 0;
844
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700845 ASSERT (sw_if_indexp);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700846
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700847 *sw_if_indexp = (u32) ~ 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700848
Dave Barachb7b92992018-10-17 10:38:51 -0400849 clib_memset (address, 0, sizeof (address));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700850
851 /*
Jon Loeligerc83c3b72017-02-23 13:57:35 -0600852 * Allocate a loopback instance. Either select on dynamically
853 * or try to use the desired user_instance number.
854 */
855 instance = loopback_instance_alloc (is_specified, user_instance);
856 if (instance == ~0)
857 {
858 return VNET_API_ERROR_INVALID_REGISTRATION;
859 }
860
861 /*
Ed Warnickecb9cada2015-12-08 15:45:58 -0700862 * Default MAC address (dead:0000:0000 + instance) is allocated
863 * if zero mac_address is configured. Otherwise, user-configurable MAC
864 * address is programmed on the loopback interface.
865 */
866 if (memcmp (address, mac_address, sizeof (address)))
Damjan Marionf1213b82016-03-13 02:22:06 +0100867 clib_memcpy (address, mac_address, sizeof (address));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700868 else
869 {
870 address[0] = 0xde;
871 address[1] = 0xad;
872 address[5] = instance;
873 }
874
875 error = ethernet_register_interface
876 (vnm,
Jon Loeligerc83c3b72017-02-23 13:57:35 -0600877 ethernet_simulated_device_class.index, instance, address, &hw_if_index,
Ed Warnickecb9cada2015-12-08 15:45:58 -0700878 /* flag change */ 0);
879
880 if (error)
881 {
882 rv = VNET_API_ERROR_INVALID_REGISTRATION;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700883 clib_error_report (error);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700884 return rv;
885 }
886
887 hw_if = vnet_get_hw_interface (vnm, hw_if_index);
888 slot = vlib_node_add_named_next_with_slot
889 (vm, hw_if->tx_node_index,
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700890 "ethernet-input", VNET_SIMULATED_ETHERNET_TX_NEXT_ETHERNET_INPUT);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700891 ASSERT (slot == VNET_SIMULATED_ETHERNET_TX_NEXT_ETHERNET_INPUT);
892
Dave Barach635ec3b2018-07-13 20:12:45 -0400893 slot = vlib_node_add_named_next_with_slot
894 (vm, hw_if->tx_node_index,
895 "l2-input", VNET_SIMULATED_ETHERNET_TX_NEXT_L2_INPUT);
896 ASSERT (slot == VNET_SIMULATED_ETHERNET_TX_NEXT_L2_INPUT);
897
Ed Warnickecb9cada2015-12-08 15:45:58 -0700898 {
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700899 vnet_sw_interface_t *si = vnet_get_hw_sw_interface (vnm, hw_if_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700900 *sw_if_indexp = si->sw_if_index;
Neale Ranns87dad112018-04-09 01:53:01 -0700901
902 /* By default don't flood to loopbacks, as packets just keep
903 * coming back ... If this loopback becomes a BVI, we'll change it */
904 si->flood_class = VNET_FLOOD_CLASS_NO_FLOOD;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700905 }
906
907 return 0;
908}
909
910static clib_error_t *
911create_simulated_ethernet_interfaces (vlib_main_t * vm,
912 unformat_input_t * input,
913 vlib_cli_command_t * cmd)
914{
915 int rv;
916 u32 sw_if_index;
917 u8 mac_address[6];
Jon Loeligerc83c3b72017-02-23 13:57:35 -0600918 u8 is_specified = 0;
919 u32 user_instance = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700920
Dave Barachb7b92992018-10-17 10:38:51 -0400921 clib_memset (mac_address, 0, sizeof (mac_address));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700922
923 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
924 {
925 if (unformat (input, "mac %U", unformat_ethernet_address, mac_address))
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700926 ;
Jon Loeligerc83c3b72017-02-23 13:57:35 -0600927 if (unformat (input, "instance %d", &user_instance))
928 is_specified = 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700929 else
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700930 break;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700931 }
932
Jon Loeligerc83c3b72017-02-23 13:57:35 -0600933 rv = vnet_create_loopback_interface (&sw_if_index, mac_address,
934 is_specified, user_instance);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700935
936 if (rv)
937 return clib_error_return (0, "vnet_create_loopback_interface failed");
938
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700939 vlib_cli_output (vm, "%U\n", format_vnet_sw_if_index_name, vnet_get_main (),
940 sw_if_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700941 return 0;
942}
943
Billy McFall2d085d92016-09-13 21:47:55 -0400944/*?
945 * Create a loopback interface. Optionally, a MAC Address can be
946 * provided. If not provided, de:ad:00:00:00:<loopId> will be used.
947 *
948 * @cliexpar
949 * The following two command syntaxes are equivalent:
Jon Loeligerc83c3b72017-02-23 13:57:35 -0600950 * @cliexcmd{loopback create-interface [mac <mac-addr>] [instance <instance>]}
951 * @cliexcmd{create loopback interface [mac <mac-addr>] [instance <instance>]}
Billy McFall2d085d92016-09-13 21:47:55 -0400952 * Example of how to create a loopback interface:
953 * @cliexcmd{loopback create-interface}
954?*/
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700955/* *INDENT-OFF* */
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};
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700961/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700962
Billy McFall2d085d92016-09-13 21:47:55 -0400963/*?
964 * Create a loopback interface. Optionally, a MAC Address can be
965 * provided. If not provided, de:ad:00:00:00:<loopId> will be used.
966 *
967 * @cliexpar
968 * The following two command syntaxes are equivalent:
Jon Loeligerc83c3b72017-02-23 13:57:35 -0600969 * @cliexcmd{loopback create-interface [mac <mac-addr>] [instance <instance>]}
970 * @cliexcmd{create loopback interface [mac <mac-addr>] [instance <instance>]}
Billy McFall2d085d92016-09-13 21:47:55 -0400971 * Example of how to create a loopback interface:
972 * @cliexcmd{create loopback interface}
973?*/
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700974/* *INDENT-OFF* */
Alpesh Patel370a24e2016-04-08 07:27:37 -0700975VLIB_CLI_COMMAND (create_loopback_interface_command, static) = {
976 .path = "create loopback interface",
Jon Loeligerc83c3b72017-02-23 13:57:35 -0600977 .short_help = "create loopback interface [mac <mac-addr>] [instance <instance>]",
Alpesh Patel370a24e2016-04-08 07:27:37 -0700978 .function = create_simulated_ethernet_interfaces,
979};
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700980/* *INDENT-ON* */
Alpesh Patel370a24e2016-04-08 07:27:37 -0700981
Ed Warnickecb9cada2015-12-08 15:45:58 -0700982ethernet_interface_t *
983ethernet_get_interface (ethernet_main_t * em, u32 hw_if_index)
984{
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -0700985 vnet_hw_interface_t *i =
986 vnet_get_hw_interface (vnet_get_main (), hw_if_index);
987 return (i->hw_class_index ==
988 ethernet_hw_interface_class.
989 index ? pool_elt_at_index (em->interfaces, i->hw_instance) : 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700990}
991
Matthew G Smithd459bf32019-09-04 15:01:04 -0500992mac_address_t *
993ethernet_interface_add_del_address (ethernet_main_t * em,
994 u32 hw_if_index, const u8 * address,
995 u8 is_add)
996{
997 ethernet_interface_t *ei = ethernet_get_interface (em, hw_if_index);
Benoît Ganneb44c77d2020-10-20 16:24:17 +0200998 ethernet_interface_address_t *if_addr = 0;
999 int found = 0;
Matthew G Smithd459bf32019-09-04 15:01:04 -05001000
1001 /* return if there is not an ethernet interface for this hw interface */
1002 if (!ei)
1003 return 0;
1004
1005 /* determine whether the address is configured on the interface */
1006 vec_foreach (if_addr, ei->secondary_addrs)
1007 {
Benoît Ganneb44c77d2020-10-20 16:24:17 +02001008 if (ethernet_mac_address_equal (if_addr->mac.bytes, address))
1009 {
1010 found = 1;
1011 break;
1012 }
Matthew G Smithd459bf32019-09-04 15:01:04 -05001013 }
1014
Benoît Ganneb44c77d2020-10-20 16:24:17 +02001015 if (is_add)
Matthew G Smithd459bf32019-09-04 15:01:04 -05001016 {
Benoît Ganneb44c77d2020-10-20 16:24:17 +02001017 if (!found)
Matthew G Smithd459bf32019-09-04 15:01:04 -05001018 {
Benoît Ganneb44c77d2020-10-20 16:24:17 +02001019 /* address not found yet: add it */
Matthew G Smithd459bf32019-09-04 15:01:04 -05001020 vec_add2 (ei->secondary_addrs, if_addr, 1);
Benoît Ganneb44c77d2020-10-20 16:24:17 +02001021 ethernet_interface_address_copy (if_addr, address);
Matthew G Smithd459bf32019-09-04 15:01:04 -05001022 }
Benoît Ganneb44c77d2020-10-20 16:24:17 +02001023 return &if_addr->mac;
Matthew G Smithd459bf32019-09-04 15:01:04 -05001024 }
1025
Benoît Ganneb44c77d2020-10-20 16:24:17 +02001026 /* delete case */
1027 if (found)
1028 vec_delete (ei->secondary_addrs, 1, if_addr - ei->secondary_addrs);
1029
1030 return 0;
Matthew G Smithd459bf32019-09-04 15:01:04 -05001031}
1032
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001033int
1034vnet_delete_loopback_interface (u32 sw_if_index)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001035{
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001036 vnet_main_t *vnm = vnet_get_main ();
Ed Warnickecb9cada2015-12-08 15:45:58 -07001037
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001038 if (pool_is_free_index (vnm->interface_main.sw_interfaces, sw_if_index))
Ed Warnickecb9cada2015-12-08 15:45:58 -07001039 return VNET_API_ERROR_INVALID_SW_IF_INDEX;
1040
Eyal Barib52c0342018-07-16 19:18:56 +03001041 vnet_hw_interface_t *hw = vnet_get_sup_hw_interface (vnm, sw_if_index);
1042 if (hw == 0 || hw->dev_class_index != ethernet_simulated_device_class.index)
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 if (loopback_instance_free (hw->dev_instance) < 0)
1046 return VNET_API_ERROR_INVALID_SW_IF_INDEX;
Jon Loeligerc83c3b72017-02-23 13:57:35 -06001047
Eyal Barib52c0342018-07-16 19:18:56 +03001048 ethernet_delete_interface (vnm, hw->hw_if_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001049
1050 return 0;
1051}
1052
Pavel Kotucekd85590a2016-08-26 13:35:40 +02001053int
Neale Ranns669f4e32019-10-28 07:56:15 -07001054vnet_create_sub_interface (u32 sw_if_index, u32 id,
1055 u32 flags, u16 inner_vlan_id, u16 outer_vlan_id,
1056 u32 * sub_sw_if_index)
1057{
1058 vnet_main_t *vnm = vnet_get_main ();
1059 vnet_interface_main_t *im = &vnm->interface_main;
1060 vnet_hw_interface_t *hi;
1061 u64 sup_and_sub_key = ((u64) (sw_if_index) << 32) | (u64) id;
1062 vnet_sw_interface_t template;
1063 uword *p;
1064 u64 *kp;
1065
1066 hi = vnet_get_sup_hw_interface (vnm, sw_if_index);
1067
1068 p = hash_get_mem (im->sw_if_index_by_sup_and_sub, &sup_and_sub_key);
1069 if (p)
1070 {
1071 return (VNET_API_ERROR_VLAN_ALREADY_EXISTS);
1072 }
1073
1074 clib_memset (&template, 0, sizeof (template));
1075 template.type = VNET_SW_INTERFACE_TYPE_SUB;
1076 template.flood_class = VNET_FLOOD_CLASS_NORMAL;
1077 template.sup_sw_if_index = sw_if_index;
1078 template.sub.id = id;
1079 template.sub.eth.raw_flags = flags;
1080 template.sub.eth.outer_vlan_id = outer_vlan_id;
1081 template.sub.eth.inner_vlan_id = inner_vlan_id;
1082
1083 if (vnet_create_sw_interface (vnm, &template, sub_sw_if_index))
1084 return (VNET_API_ERROR_UNSPECIFIED);
1085
1086 kp = clib_mem_alloc (sizeof (*kp));
1087 *kp = sup_and_sub_key;
1088
1089 hash_set (hi->sub_interface_sw_if_index_by_id, id, *sub_sw_if_index);
1090 hash_set_mem (im->sw_if_index_by_sup_and_sub, kp, *sub_sw_if_index);
1091
1092 return (0);
1093}
1094
1095int
Pavel Kotucekd85590a2016-08-26 13:35:40 +02001096vnet_delete_sub_interface (u32 sw_if_index)
1097{
1098 vnet_main_t *vnm = vnet_get_main ();
Steve Shina36f08c2018-03-07 13:29:29 -08001099 vnet_sw_interface_t *si;
Pavel Kotucekd85590a2016-08-26 13:35:40 +02001100 int rv = 0;
1101
1102 if (pool_is_free_index (vnm->interface_main.sw_interfaces, sw_if_index))
1103 return VNET_API_ERROR_INVALID_SW_IF_INDEX;
1104
Steve Shina36f08c2018-03-07 13:29:29 -08001105 si = vnet_get_sw_interface (vnm, sw_if_index);
Pavel Kotucek15ac81c2017-06-20 14:00:26 +02001106 if (si->type == VNET_SW_INTERFACE_TYPE_SUB ||
Neale Ranns17ff3c12018-07-04 10:24:24 -07001107 si->type == VNET_SW_INTERFACE_TYPE_PIPE ||
Pavel Kotucek15ac81c2017-06-20 14:00:26 +02001108 si->type == VNET_SW_INTERFACE_TYPE_P2P)
Pavel Kotucekd85590a2016-08-26 13:35:40 +02001109 {
John Lo5957a142018-01-18 12:44:50 -05001110 vnet_interface_main_t *im = &vnm->interface_main;
1111 vnet_hw_interface_t *hi = vnet_get_sup_hw_interface (vnm, sw_if_index);
Pavel Kotucekd85590a2016-08-26 13:35:40 +02001112 u64 sup_and_sub_key =
1113 ((u64) (si->sup_sw_if_index) << 32) | (u64) si->sub.id;
John Lo5957a142018-01-18 12:44:50 -05001114 hash_unset_mem_free (&im->sw_if_index_by_sup_and_sub, &sup_and_sub_key);
1115 hash_unset (hi->sub_interface_sw_if_index_by_id, si->sub.id);
Pavel Kotucekd85590a2016-08-26 13:35:40 +02001116 vnet_delete_sw_interface (vnm, sw_if_index);
1117 }
1118 else
John Lo5957a142018-01-18 12:44:50 -05001119 rv = VNET_API_ERROR_INVALID_SUB_SW_IF_INDEX;
1120
Pavel Kotucekd85590a2016-08-26 13:35:40 +02001121 return rv;
1122}
1123
Ed Warnickecb9cada2015-12-08 15:45:58 -07001124static clib_error_t *
1125delete_simulated_ethernet_interfaces (vlib_main_t * vm,
1126 unformat_input_t * input,
1127 vlib_cli_command_t * cmd)
1128{
1129 int rv;
1130 u32 sw_if_index = ~0;
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001131 vnet_main_t *vnm = vnet_get_main ();
Ed Warnickecb9cada2015-12-08 15:45:58 -07001132
1133 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
1134 {
1135 if (unformat (input, "intfc %U",
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001136 unformat_vnet_sw_interface, vnm, &sw_if_index))
1137 ;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001138 else
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001139 break;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001140 }
1141
1142 if (sw_if_index == ~0)
1143 return clib_error_return (0, "interface not specified");
1144
1145 rv = vnet_delete_loopback_interface (sw_if_index);
1146
1147 if (rv)
1148 return clib_error_return (0, "vnet_delete_loopback_interface failed");
1149
1150 return 0;
1151}
1152
Pavel Kotucekd85590a2016-08-26 13:35:40 +02001153static clib_error_t *
1154delete_sub_interface (vlib_main_t * vm,
1155 unformat_input_t * input, vlib_cli_command_t * cmd)
1156{
1157 int rv = 0;
1158 u32 sw_if_index = ~0;
1159 vnet_main_t *vnm = vnet_get_main ();
1160
1161 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
1162 {
1163 if (unformat
1164 (input, "%U", unformat_vnet_sw_interface, vnm, &sw_if_index))
1165 ;
1166 else
1167 break;
1168 }
1169 if (sw_if_index == ~0)
1170 return clib_error_return (0, "interface doesn't exist");
1171
1172 if (pool_is_free_index (vnm->interface_main.sw_interfaces, sw_if_index))
1173 rv = VNET_API_ERROR_INVALID_SW_IF_INDEX;
1174 else
1175 rv = vnet_delete_sub_interface (sw_if_index);
1176 if (rv)
1177 return clib_error_return (0, "delete_subinterface_interface failed");
1178 return 0;
1179}
1180
Billy McFall2d085d92016-09-13 21:47:55 -04001181/*?
1182 * Delete a loopback interface.
1183 *
1184 * @cliexpar
1185 * The following two command syntaxes are equivalent:
1186 * @cliexcmd{loopback delete-interface intfc <interface>}
1187 * @cliexcmd{delete loopback interface intfc <interface>}
1188 * Example of how to delete a loopback interface:
1189 * @cliexcmd{loopback delete-interface intfc loop0}
1190?*/
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001191/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07001192VLIB_CLI_COMMAND (delete_simulated_ethernet_interface_command, static) = {
1193 .path = "loopback delete-interface",
Billy McFall2d085d92016-09-13 21:47:55 -04001194 .short_help = "loopback delete-interface intfc <interface>",
Ed Warnickecb9cada2015-12-08 15:45:58 -07001195 .function = delete_simulated_ethernet_interfaces,
1196};
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001197/* *INDENT-ON* */
Alpesh S. Patel633951c2016-04-12 09:58:56 -07001198
Billy McFall2d085d92016-09-13 21:47:55 -04001199/*?
1200 * Delete a loopback interface.
1201 *
1202 * @cliexpar
1203 * The following two command syntaxes are equivalent:
1204 * @cliexcmd{loopback delete-interface intfc <interface>}
1205 * @cliexcmd{delete loopback interface intfc <interface>}
1206 * Example of how to delete a loopback interface:
1207 * @cliexcmd{delete loopback interface intfc loop0}
1208?*/
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001209/* *INDENT-OFF* */
Alpesh S. Patel633951c2016-04-12 09:58:56 -07001210VLIB_CLI_COMMAND (delete_loopback_interface_command, static) = {
1211 .path = "delete loopback interface",
1212 .short_help = "delete loopback interface intfc <interface>",
1213 .function = delete_simulated_ethernet_interfaces,
1214};
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001215/* *INDENT-ON* */
1216
Billy McFall2d085d92016-09-13 21:47:55 -04001217/*?
1218 * Delete a sub-interface.
1219 *
1220 * @cliexpar
1221 * Example of how to delete a sub-interface:
1222 * @cliexcmd{delete sub-interface GigabitEthernet0/8/0.200}
1223?*/
Pavel Kotucekd85590a2016-08-26 13:35:40 +02001224/* *INDENT-OFF* */
1225VLIB_CLI_COMMAND (delete_sub_interface_command, static) = {
1226 .path = "delete sub-interface",
1227 .short_help = "delete sub-interface <interface>",
1228 .function = delete_sub_interface,
1229};
1230/* *INDENT-ON* */
1231
Paul Vinciguerra491741a2020-03-02 16:10:54 -05001232/* ethernet { ... } configuration. */
1233/*?
1234 *
1235 * @cfgcmd{default-mtu &lt;n&gt;}
1236 * Specify the default mtu in the range of 64-9000. The default is 9000 bytes.
1237 *
1238 */
Dave Barach5fa45252020-02-26 10:27:08 -05001239static clib_error_t *
1240ethernet_config (vlib_main_t * vm, unformat_input_t * input)
1241{
1242 ethernet_main_t *em = &ethernet_main;
1243
1244 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
1245 {
1246 if (unformat (input, "default-mtu %u", &em->default_mtu))
1247 {
1248 if (em->default_mtu < 64 || em->default_mtu > 9000)
1249 return clib_error_return (0, "default MTU must be >=64, <=9000");
1250 }
1251 else
1252 {
1253 return clib_error_return (0, "unknown input '%U'",
1254 format_unformat_error, input);
1255 }
1256 }
1257 return 0;
1258}
1259
1260VLIB_CONFIG_FUNCTION (ethernet_config, "ethernet");
1261
Keith Burns (alagalah)e70dcc82016-08-15 18:33:19 -07001262/*
1263 * fd.io coding-style-patch-verification: ON
1264 *
1265 * Local Variables:
1266 * eval: (c-set-style "gnu")
1267 * End:
1268 */