blob: 5fb2ff65fa2d8e2611ed6b4c25ac3e4a88174beb [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 * interface.c: VNET interfaces/sub-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/plugin/plugin.h>
Neale Rannsb80c5362016-10-08 13:03:40 +010042#include <vnet/adj/adj.h>
Neale Ranns0117d242017-08-12 12:52:54 -070043#include <vnet/adj/adj_mcast.h>
Neale Ranns5a59b2b2020-10-19 14:47:20 +000044#include <vnet/ip/ip.h>
Damjan Marion94100532020-11-06 23:25:57 +010045#include <vnet/interface/rx_queue_funcs.h>
Damjan Marion1bd6cbb2021-04-15 13:12:51 +020046#include <vnet/interface/tx_queue_funcs.h>
Ed Warnickecb9cada2015-12-08 15:45:58 -070047
Damjan Mariond1bd5d22020-11-23 16:58:05 +010048VLIB_REGISTER_LOG_CLASS (if_default_log, static) = {
49 .class_name = "interface",
50};
Damjan Mariond1bd5d22020-11-23 16:58:05 +010051
52#define log_debug(fmt,...) vlib_log_debug(if_default_log.class, fmt, __VA_ARGS__)
53#define log_err(fmt,...) vlib_log_err(if_default_log.class, fmt, __VA_ARGS__)
Damjan Marion94100532020-11-06 23:25:57 +010054
Neale Ranns6e43e062018-10-26 05:17:03 -070055typedef enum vnet_interface_helper_flags_t_
56{
57 VNET_INTERFACE_SET_FLAGS_HELPER_IS_CREATE = (1 << 0),
58 VNET_INTERFACE_SET_FLAGS_HELPER_WANT_REDISTRIBUTE = (1 << 1),
59} vnet_interface_helper_flags_t;
Ed Warnickecb9cada2015-12-08 15:45:58 -070060
Dave Barachba868bb2016-08-08 09:51:21 -040061static clib_error_t *vnet_hw_interface_set_flags_helper (vnet_main_t * vnm,
62 u32 hw_if_index,
Neale Ranns6e43e062018-10-26 05:17:03 -070063 vnet_hw_interface_flags_t
64 flags,
65 vnet_interface_helper_flags_t
66 helper_flags);
Ed Warnickecb9cada2015-12-08 15:45:58 -070067
Dave Barachba868bb2016-08-08 09:51:21 -040068static clib_error_t *vnet_sw_interface_set_flags_helper (vnet_main_t * vnm,
69 u32 sw_if_index,
Neale Ranns6e43e062018-10-26 05:17:03 -070070 vnet_sw_interface_flags_t
71 flags,
72 vnet_interface_helper_flags_t
73 helper_flags);
Ed Warnickecb9cada2015-12-08 15:45:58 -070074
Dave Barachba868bb2016-08-08 09:51:21 -040075static clib_error_t *vnet_hw_interface_set_class_helper (vnet_main_t * vnm,
76 u32 hw_if_index,
77 u32 hw_class_index,
78 u32 redistribute);
Ed Warnickecb9cada2015-12-08 15:45:58 -070079
Dave Barachba868bb2016-08-08 09:51:21 -040080typedef struct
81{
Ed Warnickecb9cada2015-12-08 15:45:58 -070082 /* Either sw or hw interface index. */
83 u32 sw_hw_if_index;
84
85 /* Flags. */
86 u32 flags;
87} vnet_sw_hw_interface_state_t;
88
Dave Barachba868bb2016-08-08 09:51:21 -040089static void
90serialize_vec_vnet_sw_hw_interface_state (serialize_main_t * m, va_list * va)
Ed Warnickecb9cada2015-12-08 15:45:58 -070091{
Dave Barachba868bb2016-08-08 09:51:21 -040092 vnet_sw_hw_interface_state_t *s =
93 va_arg (*va, vnet_sw_hw_interface_state_t *);
94 u32 n = va_arg (*va, u32);
95 u32 i;
96 for (i = 0; i < n; i++)
97 {
98 serialize_integer (m, s[i].sw_hw_if_index,
99 sizeof (s[i].sw_hw_if_index));
100 serialize_integer (m, s[i].flags, sizeof (s[i].flags));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700101 }
102}
103
Dave Barachba868bb2016-08-08 09:51:21 -0400104static void
105unserialize_vec_vnet_sw_hw_interface_state (serialize_main_t * m,
106 va_list * va)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700107{
Dave Barachba868bb2016-08-08 09:51:21 -0400108 vnet_sw_hw_interface_state_t *s =
109 va_arg (*va, vnet_sw_hw_interface_state_t *);
110 u32 n = va_arg (*va, u32);
111 u32 i;
112 for (i = 0; i < n; i++)
113 {
114 unserialize_integer (m, &s[i].sw_hw_if_index,
115 sizeof (s[i].sw_hw_if_index));
116 unserialize_integer (m, &s[i].flags, sizeof (s[i].flags));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700117 }
118}
119
Neale Rannsb3a93812018-10-29 01:55:24 -0700120static vnet_sw_interface_flags_t
121vnet_hw_interface_flags_to_sw (vnet_hw_interface_flags_t hwf)
122{
123 vnet_sw_interface_flags_t swf = VNET_SW_INTERFACE_FLAG_NONE;
124
125 if (hwf & VNET_HW_INTERFACE_FLAG_LINK_UP)
126 swf |= VNET_SW_INTERFACE_FLAG_ADMIN_UP;
127
128 return (swf);
129}
130
Dave Barachba868bb2016-08-08 09:51:21 -0400131void
132serialize_vnet_interface_state (serialize_main_t * m, va_list * va)
133{
134 vnet_main_t *vnm = va_arg (*va, vnet_main_t *);
135 vnet_sw_hw_interface_state_t *sts = 0, *st;
136 vnet_sw_interface_t *sif;
137 vnet_hw_interface_t *hif;
138 vnet_interface_main_t *im = &vnm->interface_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700139
140 /* Serialize hardware interface classes since they may have changed.
141 Must do this before sending up/down flags. */
Damjan Marionb2c31b62020-12-13 21:47:40 +0100142 pool_foreach (hif, im->hw_interfaces) {
Ed Warnickecb9cada2015-12-08 15:45:58 -0700143 vnet_hw_interface_class_t * hw_class = vnet_get_hw_interface_class (vnm, hif->hw_class_index);
144 serialize_cstring (m, hw_class->name);
Damjan Marionb2c31b62020-12-13 21:47:40 +0100145 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700146
147 /* Send sw/hw interface state when non-zero. */
Damjan Marionb2c31b62020-12-13 21:47:40 +0100148 pool_foreach (sif, im->sw_interfaces) {
Ed Warnickecb9cada2015-12-08 15:45:58 -0700149 if (sif->flags != 0)
150 {
151 vec_add2 (sts, st, 1);
152 st->sw_hw_if_index = sif->sw_if_index;
153 st->flags = sif->flags;
154 }
Damjan Marionb2c31b62020-12-13 21:47:40 +0100155 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700156
157 vec_serialize (m, sts, serialize_vec_vnet_sw_hw_interface_state);
158
159 if (sts)
Damjan Marion8bea5892022-04-04 22:40:45 +0200160 vec_set_len (sts, 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700161
Damjan Marionb2c31b62020-12-13 21:47:40 +0100162 pool_foreach (hif, im->hw_interfaces) {
Ed Warnickecb9cada2015-12-08 15:45:58 -0700163 if (hif->flags != 0)
164 {
165 vec_add2 (sts, st, 1);
166 st->sw_hw_if_index = hif->hw_if_index;
Neale Rannsb3a93812018-10-29 01:55:24 -0700167 st->flags = vnet_hw_interface_flags_to_sw(hif->flags);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700168 }
Damjan Marionb2c31b62020-12-13 21:47:40 +0100169 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700170
171 vec_serialize (m, sts, serialize_vec_vnet_sw_hw_interface_state);
172
173 vec_free (sts);
174}
175
Neale Rannsb3a93812018-10-29 01:55:24 -0700176static vnet_hw_interface_flags_t
177vnet_sw_interface_flags_to_hw (vnet_sw_interface_flags_t swf)
178{
179 vnet_hw_interface_flags_t hwf = VNET_HW_INTERFACE_FLAG_NONE;
180
181 if (swf & VNET_SW_INTERFACE_FLAG_ADMIN_UP)
182 hwf |= VNET_HW_INTERFACE_FLAG_LINK_UP;
183
184 return (hwf);
185}
186
Dave Barachba868bb2016-08-08 09:51:21 -0400187void
188unserialize_vnet_interface_state (serialize_main_t * m, va_list * va)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700189{
Dave Barachba868bb2016-08-08 09:51:21 -0400190 vnet_main_t *vnm = va_arg (*va, vnet_main_t *);
191 vnet_sw_hw_interface_state_t *sts = 0, *st;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700192
193 /* First set interface hardware class. */
194 {
Dave Barachba868bb2016-08-08 09:51:21 -0400195 vnet_interface_main_t *im = &vnm->interface_main;
196 vnet_hw_interface_t *hif;
197 char *class_name;
198 uword *p;
199 clib_error_t *error;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700200
Damjan Marionb2c31b62020-12-13 21:47:40 +0100201 pool_foreach (hif, im->hw_interfaces) {
Ed Warnickecb9cada2015-12-08 15:45:58 -0700202 unserialize_cstring (m, &class_name);
203 p = hash_get_mem (im->hw_interface_class_by_name, class_name);
Dave Baracha6ef36b2020-02-11 10:29:13 -0500204 if (p)
205 {
206 error = vnet_hw_interface_set_class_helper
207 (vnm, hif->hw_if_index, p[0], /* redistribute */ 0);
208 }
209 else
210 error = clib_error_return (0, "hw class %s AWOL?", class_name);
211
Ed Warnickecb9cada2015-12-08 15:45:58 -0700212 if (error)
213 clib_error_report (error);
214 vec_free (class_name);
Damjan Marionb2c31b62020-12-13 21:47:40 +0100215 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700216 }
217
218 vec_unserialize (m, &sts, unserialize_vec_vnet_sw_hw_interface_state);
219 vec_foreach (st, sts)
220 vnet_sw_interface_set_flags_helper (vnm, st->sw_hw_if_index, st->flags,
221 /* no distribute */ 0);
222 vec_free (sts);
223
224 vec_unserialize (m, &sts, unserialize_vec_vnet_sw_hw_interface_state);
225 vec_foreach (st, sts)
Neale Rannsb3a93812018-10-29 01:55:24 -0700226 {
227 vnet_hw_interface_set_flags_helper
228 (vnm, st->sw_hw_if_index, vnet_sw_interface_flags_to_hw (st->flags),
229 /* no distribute */ 0);
230 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700231 vec_free (sts);
232}
233
234static clib_error_t *
Dave Barachba868bb2016-08-08 09:51:21 -0400235call_elf_section_interface_callbacks (vnet_main_t * vnm, u32 if_index,
236 u32 flags,
Neale Ranns8b37b872016-11-21 12:25:22 +0000237 _vnet_interface_function_list_elt_t **
238 elts)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700239{
Neale Ranns8b37b872016-11-21 12:25:22 +0000240 _vnet_interface_function_list_elt_t *elt;
241 vnet_interface_function_priority_t prio;
Dave Barachba868bb2016-08-08 09:51:21 -0400242 clib_error_t *error = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700243
Neale Ranns8b37b872016-11-21 12:25:22 +0000244 for (prio = VNET_ITF_FUNC_PRIORITY_LOW;
245 prio <= VNET_ITF_FUNC_PRIORITY_HIGH; prio++)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700246 {
Neale Ranns8b37b872016-11-21 12:25:22 +0000247 elt = elts[prio];
248
249 while (elt)
250 {
251 error = elt->fp (vnm, if_index, flags);
252 if (error)
253 return error;
254 elt = elt->next_interface_function;
255 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700256 }
257 return error;
258}
259
260static clib_error_t *
Dave Barachba868bb2016-08-08 09:51:21 -0400261call_hw_interface_add_del_callbacks (vnet_main_t * vnm, u32 hw_if_index,
262 u32 is_create)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700263{
Dave Barachba868bb2016-08-08 09:51:21 -0400264 vnet_hw_interface_t *hi = vnet_get_hw_interface (vnm, hw_if_index);
265 vnet_hw_interface_class_t *hw_class =
266 vnet_get_hw_interface_class (vnm, hi->hw_class_index);
267 vnet_device_class_t *dev_class =
268 vnet_get_device_class (vnm, hi->dev_class_index);
269 clib_error_t *error = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700270
271 if (hw_class->interface_add_del_function
Dave Barachba868bb2016-08-08 09:51:21 -0400272 && (error =
273 hw_class->interface_add_del_function (vnm, hw_if_index, is_create)))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700274 return error;
275
276 if (dev_class->interface_add_del_function
Dave Barachba868bb2016-08-08 09:51:21 -0400277 && (error =
278 dev_class->interface_add_del_function (vnm, hw_if_index,
279 is_create)))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700280 return error;
281
Dave Barachba868bb2016-08-08 09:51:21 -0400282 error = call_elf_section_interface_callbacks
Ed Warnickecb9cada2015-12-08 15:45:58 -0700283 (vnm, hw_if_index, is_create, vnm->hw_interface_add_del_functions);
284
285 return error;
286}
287
288static clib_error_t *
Dave Barachba868bb2016-08-08 09:51:21 -0400289call_sw_interface_add_del_callbacks (vnet_main_t * vnm, u32 sw_if_index,
290 u32 is_create)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700291{
Dave Barachba868bb2016-08-08 09:51:21 -0400292 return call_elf_section_interface_callbacks
Ed Warnickecb9cada2015-12-08 15:45:58 -0700293 (vnm, sw_if_index, is_create, vnm->sw_interface_add_del_functions);
294}
295
Ed Warnickecb9cada2015-12-08 15:45:58 -0700296static clib_error_t *
Dave Barachba868bb2016-08-08 09:51:21 -0400297vnet_hw_interface_set_flags_helper (vnet_main_t * vnm, u32 hw_if_index,
Neale Ranns6e43e062018-10-26 05:17:03 -0700298 vnet_hw_interface_flags_t flags,
299 vnet_interface_helper_flags_t
300 helper_flags)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700301{
Dave Barachba868bb2016-08-08 09:51:21 -0400302 vnet_hw_interface_t *hi = vnet_get_hw_interface (vnm, hw_if_index);
303 vnet_hw_interface_class_t *hw_class =
304 vnet_get_hw_interface_class (vnm, hi->hw_class_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700305 u32 mask;
Dave Barachba868bb2016-08-08 09:51:21 -0400306 clib_error_t *error = 0;
307 u32 is_create =
308 (helper_flags & VNET_INTERFACE_SET_FLAGS_HELPER_IS_CREATE) != 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700309
Dave Barachba868bb2016-08-08 09:51:21 -0400310 mask =
Damjan Marion5100aa92018-11-08 15:30:16 +0100311 (VNET_HW_INTERFACE_FLAG_LINK_UP | VNET_HW_INTERFACE_FLAG_DUPLEX_MASK);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700312 flags &= mask;
313
314 /* Call hardware interface add/del callbacks. */
315 if (is_create)
316 call_hw_interface_add_del_callbacks (vnm, hw_if_index, is_create);
317
318 /* Already in the desired state? */
Dave Barachba868bb2016-08-08 09:51:21 -0400319 if (!is_create && (hi->flags & mask) == flags)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700320 goto done;
321
Ed Warnickecb9cada2015-12-08 15:45:58 -0700322 if ((hi->flags & VNET_HW_INTERFACE_FLAG_LINK_UP) !=
323 (flags & VNET_HW_INTERFACE_FLAG_LINK_UP))
324 {
325 /* Do hardware class (e.g. ethernet). */
326 if (hw_class->link_up_down_function
327 && (error = hw_class->link_up_down_function (vnm, hw_if_index,
328 flags)))
329 goto done;
330
Dave Barachba868bb2016-08-08 09:51:21 -0400331 error = call_elf_section_interface_callbacks
Klement Sekera2cee01d2016-09-08 17:53:13 +0200332 (vnm, hw_if_index, flags, vnm->hw_interface_link_up_down_functions);
Dave Barachba868bb2016-08-08 09:51:21 -0400333
Ed Warnickecb9cada2015-12-08 15:45:58 -0700334 if (error)
335 goto done;
336 }
337
338 hi->flags &= ~mask;
339 hi->flags |= flags;
340
Dave Barachba868bb2016-08-08 09:51:21 -0400341done:
Damjan Mariond1bd5d22020-11-23 16:58:05 +0100342 if (error)
343 log_err ("hw_set_flags_helper: %U", format_clib_error, error);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700344 return error;
345}
346
347static clib_error_t *
Dave Barachba868bb2016-08-08 09:51:21 -0400348vnet_sw_interface_set_flags_helper (vnet_main_t * vnm, u32 sw_if_index,
Neale Ranns6e43e062018-10-26 05:17:03 -0700349 vnet_sw_interface_flags_t flags,
350 vnet_interface_helper_flags_t
351 helper_flags)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700352{
Dave Barachba868bb2016-08-08 09:51:21 -0400353 vnet_sw_interface_t *si = vnet_get_sw_interface (vnm, sw_if_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700354 u32 mask;
Dave Barachba868bb2016-08-08 09:51:21 -0400355 clib_error_t *error = 0;
356 u32 is_create =
357 (helper_flags & VNET_INTERFACE_SET_FLAGS_HELPER_IS_CREATE) != 0;
Georgi Savov3a035982016-02-25 12:56:03 -0500358 u32 old_flags;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700359
360 mask = VNET_SW_INTERFACE_FLAG_ADMIN_UP | VNET_SW_INTERFACE_FLAG_PUNT;
361 flags &= mask;
362
363 if (is_create)
364 {
Dave Barachba868bb2016-08-08 09:51:21 -0400365 error =
366 call_sw_interface_add_del_callbacks (vnm, sw_if_index, is_create);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700367 if (error)
368 goto done;
369
370 if (flags & VNET_SW_INTERFACE_FLAG_ADMIN_UP)
Dave Barachba868bb2016-08-08 09:51:21 -0400371 {
372 /* Notify everyone when the interface is created as admin up */
373 error = call_elf_section_interface_callbacks (vnm, sw_if_index,
374 flags,
375 vnm->
376 sw_interface_admin_up_down_functions);
377 if (error)
378 goto done;
379 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700380 }
381 else
382 {
Dave Barachba868bb2016-08-08 09:51:21 -0400383 vnet_sw_interface_t *si_sup = si;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700384
385 /* Check that super interface is in correct state. */
386 if (si->type == VNET_SW_INTERFACE_TYPE_SUB)
387 {
388 si_sup = vnet_get_sw_interface (vnm, si->sup_sw_if_index);
389
Calvin31a36742016-07-04 14:14:46 -0400390 /* Check to see if we're bringing down the soft interface and if it's parent is up */
Dave Barachba868bb2016-08-08 09:51:21 -0400391 if ((flags != (si_sup->flags & mask)) &&
392 (!((flags == 0)
393 && ((si_sup->flags & mask) ==
394 VNET_SW_INTERFACE_FLAG_ADMIN_UP))))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700395 {
396 error = clib_error_return (0, "super-interface %U must be %U",
Dave Barachba868bb2016-08-08 09:51:21 -0400397 format_vnet_sw_interface_name, vnm,
398 si_sup,
399 format_vnet_sw_interface_flags,
400 flags);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700401 goto done;
402 }
403 }
404
405 /* Already in the desired state? */
406 if ((si->flags & mask) == flags)
407 goto done;
408
409 /* Sub-interfaces of hardware interfaces that do no redistribute,
Dave Barachba868bb2016-08-08 09:51:21 -0400410 do not redistribute themselves. */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700411 if (si_sup->type == VNET_SW_INTERFACE_TYPE_HARDWARE)
412 {
Dave Barachba868bb2016-08-08 09:51:21 -0400413 vnet_hw_interface_t *hi =
414 vnet_get_hw_interface (vnm, si_sup->hw_if_index);
415 vnet_device_class_t *dev_class =
416 vnet_get_device_class (vnm, hi->dev_class_index);
417 if (!dev_class->redistribute)
418 helper_flags &=
419 ~VNET_INTERFACE_SET_FLAGS_HELPER_WANT_REDISTRIBUTE;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700420 }
421
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100422 /* set the flags now before invoking the registered clients
423 * so that the state they query is consistent with the state here notified */
424 old_flags = si->flags;
425 si->flags &= ~mask;
426 si->flags |= flags;
427 if ((flags | old_flags) & VNET_SW_INTERFACE_FLAG_ADMIN_UP)
428 error = call_elf_section_interface_callbacks
429 (vnm, sw_if_index, flags,
430 vnm->sw_interface_admin_up_down_functions);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700431
432 if (error)
Mohsin Kazmia50a14c2018-04-25 15:58:05 +0200433 {
434 /* restore flags on error */
435 si->flags = old_flags;
436 goto done;
437 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700438
439 if (si->type == VNET_SW_INTERFACE_TYPE_HARDWARE)
440 {
Dave Barachba868bb2016-08-08 09:51:21 -0400441 vnet_hw_interface_t *hi =
442 vnet_get_hw_interface (vnm, si->hw_if_index);
443 vnet_hw_interface_class_t *hw_class =
444 vnet_get_hw_interface_class (vnm, hi->hw_class_index);
445 vnet_device_class_t *dev_class =
446 vnet_get_device_class (vnm, hi->dev_class_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700447
Damjan Marionabce5092017-05-10 20:09:31 +0200448 if ((flags & VNET_SW_INTERFACE_FLAG_ADMIN_UP) &&
449 (si->flags & VNET_SW_INTERFACE_FLAG_ERROR))
450 {
451 error = clib_error_return (0, "Interface in the error state");
452 goto done;
453 }
454
Dave Barachba868bb2016-08-08 09:51:21 -0400455 /* update si admin up flag in advance if we are going admin down */
456 if (!(flags & VNET_SW_INTERFACE_FLAG_ADMIN_UP))
457 si->flags &= ~VNET_SW_INTERFACE_FLAG_ADMIN_UP;
Georgi Savov3a035982016-02-25 12:56:03 -0500458
Dave Barachba868bb2016-08-08 09:51:21 -0400459 if (dev_class->admin_up_down_function
460 && (error = dev_class->admin_up_down_function (vnm,
461 si->hw_if_index,
462 flags)))
463 {
464 /* restore si admin up flag to it's original state on errors */
465 si->flags = old_flags;
466 goto done;
467 }
Georgi Savov3a035982016-02-25 12:56:03 -0500468
Dave Barachba868bb2016-08-08 09:51:21 -0400469 if (hw_class->admin_up_down_function
470 && (error = hw_class->admin_up_down_function (vnm,
471 si->hw_if_index,
472 flags)))
473 {
474 /* restore si admin up flag to it's original state on errors */
475 si->flags = old_flags;
476 goto done;
477 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700478
479 /* Admin down implies link down. */
Dave Barachba868bb2016-08-08 09:51:21 -0400480 if (!(flags & VNET_SW_INTERFACE_FLAG_ADMIN_UP)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700481 && (hi->flags & VNET_HW_INTERFACE_FLAG_LINK_UP))
482 vnet_hw_interface_set_flags_helper (vnm, si->hw_if_index,
Dave Barachba868bb2016-08-08 09:51:21 -0400483 hi->flags &
484 ~VNET_HW_INTERFACE_FLAG_LINK_UP,
Ed Warnickecb9cada2015-12-08 15:45:58 -0700485 helper_flags);
Damjan Marion94100532020-11-06 23:25:57 +0100486 vnet_hw_if_update_runtime_data (vnm, si->hw_if_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700487 }
488 }
489
490 si->flags &= ~mask;
491 si->flags |= flags;
492
Dave Barachba868bb2016-08-08 09:51:21 -0400493done:
Damjan Mariond1bd5d22020-11-23 16:58:05 +0100494 if (error)
495 log_err ("sw_set_flags_helper: %U", format_clib_error, error);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700496 return error;
497}
498
499clib_error_t *
Neale Ranns6e43e062018-10-26 05:17:03 -0700500vnet_hw_interface_set_flags (vnet_main_t * vnm, u32 hw_if_index,
501 vnet_hw_interface_flags_t flags)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700502{
Damjan Mariond1bd5d22020-11-23 16:58:05 +0100503 log_debug ("hw_set_flags: hw_if_index %u flags 0x%x", hw_if_index, flags);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700504 return vnet_hw_interface_set_flags_helper
505 (vnm, hw_if_index, flags,
506 VNET_INTERFACE_SET_FLAGS_HELPER_WANT_REDISTRIBUTE);
507}
508
509clib_error_t *
Neale Ranns6e43e062018-10-26 05:17:03 -0700510vnet_sw_interface_set_flags (vnet_main_t * vnm, u32 sw_if_index,
511 vnet_sw_interface_flags_t flags)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700512{
Damjan Mariond1bd5d22020-11-23 16:58:05 +0100513 log_debug ("sw_set_flags: sw_if_index %u flags 0x%x", sw_if_index, flags);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700514 return vnet_sw_interface_set_flags_helper
515 (vnm, sw_if_index, flags,
516 VNET_INTERFACE_SET_FLAGS_HELPER_WANT_REDISTRIBUTE);
517}
518
Neale Rannsc87b66c2019-02-07 07:26:12 -0800519void
520vnet_sw_interface_admin_up (vnet_main_t * vnm, u32 sw_if_index)
521{
522 u32 flags = vnet_sw_interface_get_flags (vnm, sw_if_index);
Damjan Mariond1bd5d22020-11-23 16:58:05 +0100523 log_debug ("sw_admin_up: sw_if_index %u", sw_if_index);
Neale Rannsc87b66c2019-02-07 07:26:12 -0800524
525 if (!(flags & VNET_SW_INTERFACE_FLAG_ADMIN_UP))
526 {
527 flags |= VNET_SW_INTERFACE_FLAG_ADMIN_UP;
528 vnet_sw_interface_set_flags (vnm, sw_if_index, flags);
529 }
530}
531
532void
533vnet_sw_interface_admin_down (vnet_main_t * vnm, u32 sw_if_index)
534{
535 u32 flags = vnet_sw_interface_get_flags (vnm, sw_if_index);
Damjan Mariond1bd5d22020-11-23 16:58:05 +0100536 log_debug ("sw_admin_down: sw_if_index %u", sw_if_index);
Neale Rannsc87b66c2019-02-07 07:26:12 -0800537
538 if (flags & VNET_SW_INTERFACE_FLAG_ADMIN_UP)
539 {
540 flags &= ~(VNET_SW_INTERFACE_FLAG_ADMIN_UP);
541 vnet_sw_interface_set_flags (vnm, sw_if_index, flags);
542 }
543}
544
Damjan Marion8932e452021-04-16 11:49:26 +0200545static void
546vnet_if_update_lookup_tables (vnet_main_t *vnm, u32 sw_if_index)
547{
548 vnet_interface_main_t *im = &vnm->interface_main;
549 vnet_hw_interface_t *hi = vnet_get_sup_hw_interface (vnm, sw_if_index);
550
551 vec_validate_init_empty (im->hw_if_index_by_sw_if_index, sw_if_index, ~0);
552 vec_validate_init_empty (im->if_out_arc_end_next_index_by_sw_if_index,
553 sw_if_index, ~0);
554
555 im->hw_if_index_by_sw_if_index[sw_if_index] = hi->hw_if_index;
556 im->if_out_arc_end_next_index_by_sw_if_index[sw_if_index] =
557 hi->if_out_arc_end_node_next_index;
558}
559
Ed Warnickecb9cada2015-12-08 15:45:58 -0700560static u32
Dave Barachba868bb2016-08-08 09:51:21 -0400561vnet_create_sw_interface_no_callbacks (vnet_main_t * vnm,
562 vnet_sw_interface_t * template)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700563{
Dave Barachba868bb2016-08-08 09:51:21 -0400564 vnet_interface_main_t *im = &vnm->interface_main;
565 vnet_sw_interface_t *sw;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700566 u32 sw_if_index;
567
568 pool_get (im->sw_interfaces, sw);
569 sw_if_index = sw - im->sw_interfaces;
570
571 sw[0] = template[0];
572
573 sw->flags = 0;
574 sw->sw_if_index = sw_if_index;
575 if (sw->type == VNET_SW_INTERFACE_TYPE_HARDWARE)
576 sw->sup_sw_if_index = sw->sw_if_index;
577
578 /* Allocate counters for this interface. */
579 {
580 u32 i;
581
Dave Barachba868bb2016-08-08 09:51:21 -0400582 vnet_interface_counter_lock (im);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700583
584 for (i = 0; i < vec_len (im->sw_if_counters); i++)
585 {
586 vlib_validate_simple_counter (&im->sw_if_counters[i], sw_if_index);
587 vlib_zero_simple_counter (&im->sw_if_counters[i], sw_if_index);
588 }
589
590 for (i = 0; i < vec_len (im->combined_sw_if_counters); i++)
591 {
Dave Barachba868bb2016-08-08 09:51:21 -0400592 vlib_validate_combined_counter (&im->combined_sw_if_counters[i],
593 sw_if_index);
594 vlib_zero_combined_counter (&im->combined_sw_if_counters[i],
595 sw_if_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700596 }
597
Dave Barachba868bb2016-08-08 09:51:21 -0400598 vnet_interface_counter_unlock (im);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700599 }
600
Damjan Marion8932e452021-04-16 11:49:26 +0200601 vnet_if_update_lookup_tables (vnm, sw_if_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700602 return sw_if_index;
603}
604
605clib_error_t *
Dave Barachba868bb2016-08-08 09:51:21 -0400606vnet_create_sw_interface (vnet_main_t * vnm, vnet_sw_interface_t * template,
607 u32 * sw_if_index)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700608{
Damjan Mariond1bd5d22020-11-23 16:58:05 +0100609 vnet_interface_main_t *im = &vnm->interface_main;
Dave Barachba868bb2016-08-08 09:51:21 -0400610 clib_error_t *error;
611 vnet_hw_interface_t *hi;
612 vnet_device_class_t *dev_class;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700613
Jon Loeligerb22e1f02019-12-19 09:03:52 -0600614 if (template->sub.eth.flags.two_tags == 1
615 && template->sub.eth.flags.exact_match == 1
616 && (template->sub.eth.flags.inner_vlan_id_any == 1
617 || template->sub.eth.flags.outer_vlan_id_any == 1))
618 {
Damjan Mariond1bd5d22020-11-23 16:58:05 +0100619 char *str = "inner-dot1q any exact-match is unsupported";
620 error = clib_error_return (0, str);
621 log_err ("create_sw_interface: %s", str);
Jon Loeligerb22e1f02019-12-19 09:03:52 -0600622 return error;
623 }
624
Ed Warnickecb9cada2015-12-08 15:45:58 -0700625 hi = vnet_get_sup_hw_interface (vnm, template->sup_sw_if_index);
626 dev_class = vnet_get_device_class (vnm, hi->dev_class_index);
627
628 if (template->type == VNET_SW_INTERFACE_TYPE_SUB &&
Dave Barachba868bb2016-08-08 09:51:21 -0400629 dev_class->subif_add_del_function)
630 {
631 error = dev_class->subif_add_del_function (vnm, hi->hw_if_index,
632 (struct vnet_sw_interface_t
633 *) template, 1);
634 if (error)
635 return error;
636 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700637
638 *sw_if_index = vnet_create_sw_interface_no_callbacks (vnm, template);
639 error = vnet_sw_interface_set_flags_helper
640 (vnm, *sw_if_index, template->flags,
641 VNET_INTERFACE_SET_FLAGS_HELPER_IS_CREATE);
642
Dave Barachba868bb2016-08-08 09:51:21 -0400643 if (error)
644 {
645 /* undo the work done by vnet_create_sw_interface_no_callbacks() */
Damjan Mariond1bd5d22020-11-23 16:58:05 +0100646 log_err ("create_sw_interface: set flags failed\n %U",
647 format_clib_error, error);
varasteh81817272022-01-02 14:20:32 +0330648 call_sw_interface_add_del_callbacks (vnm, *sw_if_index, 0);
Dave Barachba868bb2016-08-08 09:51:21 -0400649 vnet_sw_interface_t *sw =
650 pool_elt_at_index (im->sw_interfaces, *sw_if_index);
651 pool_put (im->sw_interfaces, sw);
652 }
Damjan Mariond1bd5d22020-11-23 16:58:05 +0100653 else
654 {
655 vnet_sw_interface_t *sw =
656 pool_elt_at_index (im->sw_interfaces, *sw_if_index);
657 log_debug ("create_sw_interface: interface %U (sw_if_index %u) created",
658 format_vnet_sw_interface_name, vnm, sw, *sw_if_index);
659 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700660
661 return error;
662}
663
Dave Barachba868bb2016-08-08 09:51:21 -0400664void
665vnet_delete_sw_interface (vnet_main_t * vnm, u32 sw_if_index)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700666{
Dave Barachba868bb2016-08-08 09:51:21 -0400667 vnet_interface_main_t *im = &vnm->interface_main;
668 vnet_sw_interface_t *sw =
669 pool_elt_at_index (im->sw_interfaces, sw_if_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700670
Damjan Mariond1bd5d22020-11-23 16:58:05 +0100671 log_debug ("delete_sw_interface: sw_if_index %u, name '%U'",
672 sw_if_index, format_vnet_sw_if_index_name, vnm, sw_if_index);
673
Wojciech Decd63370c2017-01-03 10:27:03 +0100674 /* Check if the interface has config and is removed from L2 BD or XConnect */
Neale Rannse8d7ff52018-05-31 21:23:37 -0700675 vnet_clear_sw_interface_tag (vnm, sw_if_index);
Pavel Kotucek7c8eda12016-10-17 15:31:59 +0200676
Ed Warnickecb9cada2015-12-08 15:45:58 -0700677 /* Bring down interface in case it is up. */
678 if (sw->flags != 0)
679 vnet_sw_interface_set_flags (vnm, sw_if_index, /* flags */ 0);
680
681 call_sw_interface_add_del_callbacks (vnm, sw_if_index, /* is_create */ 0);
682
683 pool_put (im->sw_interfaces, sw);
684}
685
Ole Troand7231612018-06-07 10:17:57 +0200686static clib_error_t *
687call_sw_interface_mtu_change_callbacks (vnet_main_t * vnm, u32 sw_if_index)
688{
689 return call_elf_section_interface_callbacks
690 (vnm, sw_if_index, 0, vnm->sw_interface_mtu_change_functions);
691}
692
693void
694vnet_sw_interface_set_mtu (vnet_main_t * vnm, u32 sw_if_index, u32 mtu)
695{
696 vnet_sw_interface_t *si = vnet_get_sw_interface (vnm, sw_if_index);
697
698 if (si->mtu[VNET_MTU_L3] != mtu)
699 {
700 si->mtu[VNET_MTU_L3] = mtu;
Damjan Mariond1bd5d22020-11-23 16:58:05 +0100701 log_debug ("set_mtu: interface %U, new mtu %u",
702 format_vnet_sw_if_index_name, vnm, sw_if_index, mtu);
703
Ole Troand7231612018-06-07 10:17:57 +0200704 call_sw_interface_mtu_change_callbacks (vnm, sw_if_index);
705 }
706}
707
708void
709vnet_sw_interface_set_protocol_mtu (vnet_main_t * vnm, u32 sw_if_index,
710 u32 mtu[])
711{
712 vnet_sw_interface_t *si = vnet_get_sw_interface (vnm, sw_if_index);
713 bool changed = false;
714 int i;
715
716 for (i = 0; i < VNET_N_MTU; i++)
717 {
718 if (si->mtu[i] != mtu[i])
719 {
720 si->mtu[i] = mtu[i];
721 changed = true;
722 }
723 }
724 /* Notify interested parties */
725 if (changed)
Damjan Mariond1bd5d22020-11-23 16:58:05 +0100726 {
727 log_debug ("set_protocol_mtu: interface %U l3 %u ip4 %u ip6 %u mpls %u",
728 format_vnet_sw_if_index_name, vnm, sw_if_index,
729 mtu[VNET_MTU_L3], mtu[VNET_MTU_IP4], mtu[VNET_MTU_IP6],
730 mtu[VNET_MTU_MPLS]);
731 call_sw_interface_mtu_change_callbacks (vnm, sw_if_index);
732 }
Ole Troand7231612018-06-07 10:17:57 +0200733}
734
Neale Ranns1855b8e2018-07-11 10:31:26 -0700735void
736vnet_sw_interface_ip_directed_broadcast (vnet_main_t * vnm,
737 u32 sw_if_index, u8 enable)
738{
739 vnet_sw_interface_t *si;
740
741 si = vnet_get_sw_interface (vnm, sw_if_index);
742
743 if (enable)
744 si->flags |= VNET_SW_INTERFACE_FLAG_DIRECTED_BCAST;
745 else
746 si->flags &= ~VNET_SW_INTERFACE_FLAG_DIRECTED_BCAST;
747
748 ip4_directed_broadcast (sw_if_index, enable);
749}
750
Ole Troand7231612018-06-07 10:17:57 +0200751/*
752 * Reflect a change in hardware MTU on protocol MTUs
753 */
754static walk_rc_t
755sw_interface_walk_callback (vnet_main_t * vnm, u32 sw_if_index, void *ctx)
756{
757 u32 *link_mtu = ctx;
758 vnet_sw_interface_set_mtu (vnm, sw_if_index, *link_mtu);
759 return WALK_CONTINUE;
760}
761
Damjan Marion81bb6fc2022-01-16 22:47:55 +0100762clib_error_t *
Damjan Marion1cd0e5d2022-01-17 14:49:17 +0100763vnet_hw_interface_set_max_frame_size (vnet_main_t *vnm, u32 hw_if_index,
764 u32 fs)
Ole Troand7231612018-06-07 10:17:57 +0200765{
766 vnet_hw_interface_t *hi = vnet_get_hw_interface (vnm, hw_if_index);
Damjan Marion88a9c0e2022-01-06 21:14:08 +0100767 vnet_hw_interface_class_t *hw_if_class =
768 vnet_get_hw_interface_class (vnm, hi->hw_class_index);
769 clib_error_t *err = 0;
Georgy Borodinc0182042024-01-08 22:00:59 +0100770 log_debug ("set_max_frame_size: interface %v, max_frame_size %u -> %u",
Damjan Marion1cd0e5d2022-01-17 14:49:17 +0100771 hi->name, hi->max_frame_size, fs);
772
773 if (hw_if_class->set_max_frame_size == 0)
774 return vnet_error (VNET_ERR_UNSUPPORTED,
775 "hw class doesn't support changing Max Frame Size");
776
777 if (hi->max_frame_size != fs)
Ole Troand7231612018-06-07 10:17:57 +0200778 {
Damjan Marion1cd0e5d2022-01-17 14:49:17 +0100779 u32 mtu;
780 if (hw_if_class->set_max_frame_size)
781 if ((err = hw_if_class->set_max_frame_size (vnm, hi, fs)))
Damjan Marion88a9c0e2022-01-06 21:14:08 +0100782 return err;
Damjan Marion1cd0e5d2022-01-17 14:49:17 +0100783 hi->max_frame_size = fs;
784 mtu = fs - hi->frame_overhead;
Ole Troand7231612018-06-07 10:17:57 +0200785 vnet_hw_interface_walk_sw (vnm, hw_if_index, sw_interface_walk_callback,
786 &mtu);
787 }
Damjan Marion81bb6fc2022-01-16 22:47:55 +0100788 return 0;
Ole Troand7231612018-06-07 10:17:57 +0200789}
Damjan Marion1cd0e5d2022-01-17 14:49:17 +0100790clib_error_t *
791vnet_hw_interface_set_mtu (vnet_main_t *vnm, u32 hw_if_index, u32 mtu)
792{
793 vnet_hw_interface_t *hi = vnet_get_hw_interface (vnm, hw_if_index);
794 return vnet_hw_interface_set_max_frame_size (vnm, hw_if_index,
795 mtu + hi->frame_overhead);
796}
Ole Troand7231612018-06-07 10:17:57 +0200797
Dave Barachba868bb2016-08-08 09:51:21 -0400798static void
799setup_tx_node (vlib_main_t * vm,
800 u32 node_index, vnet_device_class_t * dev_class)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700801{
Dave Barachba868bb2016-08-08 09:51:21 -0400802 vlib_node_t *n = vlib_get_node (vm, node_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700803
Ed Warnickecb9cada2015-12-08 15:45:58 -0700804 n->format_trace = dev_class->format_tx_trace;
Neale Ranns5e575b12016-10-03 09:40:25 +0100805
Ole Troanf09d6552021-03-10 12:52:53 +0100806 vlib_register_errors (vm, node_index, dev_class->tx_function_n_errors,
807 dev_class->tx_function_error_strings,
808 dev_class->tx_function_error_counters);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700809}
810
Dave Barachba868bb2016-08-08 09:51:21 -0400811static void
812setup_output_node (vlib_main_t * vm,
813 u32 node_index, vnet_hw_interface_class_t * hw_class)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700814{
Dave Barachba868bb2016-08-08 09:51:21 -0400815 vlib_node_t *n = vlib_get_node (vm, node_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700816 n->format_buffer = hw_class->format_header;
817 n->unformat_buffer = hw_class->unformat_header;
818}
819
Neale Ranns6fdcc3d2021-10-08 07:30:47 +0000820void
821vnet_reset_interface_l3_output_node (vlib_main_t *vm, u32 sw_if_index)
822{
823 vnet_set_interface_l3_output_node (vm, sw_if_index,
824 (u8 *) "interface-output");
825}
826
827void
828vnet_set_interface_l3_output_node (vlib_main_t *vm, u32 sw_if_index,
829 u8 *output_node)
830{
831 vlib_node_t *l3_node;
832
833 l3_node = vlib_get_node_by_name (vm, output_node);
834
835 static char *arcs[] = {
836 "ip4-output",
837 "ip6-output",
838 "mpls-output",
839 "ethernet-output",
840 };
841 u8 a;
842
843 for (a = 0; a < ARRAY_LEN (arcs); a++)
844 {
845 u8 arc = vnet_get_feature_arc_index (arcs[a]);
846 vnet_feature_modify_end_node (arc, sw_if_index, l3_node->index);
847 }
848}
849
Ed Warnickecb9cada2015-12-08 15:45:58 -0700850/* Register an interface instance. */
851u32
852vnet_register_interface (vnet_main_t * vnm,
853 u32 dev_class_index,
854 u32 dev_instance,
Dave Barachba868bb2016-08-08 09:51:21 -0400855 u32 hw_class_index, u32 hw_instance)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700856{
Dave Barachba868bb2016-08-08 09:51:21 -0400857 vnet_interface_main_t *im = &vnm->interface_main;
858 vnet_hw_interface_t *hw;
859 vnet_device_class_t *dev_class =
860 vnet_get_device_class (vnm, dev_class_index);
861 vnet_hw_interface_class_t *hw_class =
862 vnet_get_hw_interface_class (vnm, hw_class_index);
863 vlib_main_t *vm = vnm->vlib_main;
Damjan Marion152e21d2016-11-29 14:55:43 +0100864 vnet_feature_config_main_t *fcm;
865 vnet_config_main_t *cm;
866 u32 hw_index, i;
Damjan Marionf91098e2021-03-09 16:28:15 +0100867 vlib_node_t *if_out_node =
868 vlib_get_node (vm, vnet_interface_output_node.index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700869
870 pool_get (im->hw_interfaces, hw);
Dave Barachb7b92992018-10-17 10:38:51 -0400871 clib_memset (hw, 0, sizeof (*hw));
Dave Barachf5667c32019-09-25 11:27:46 -0400872 hw->trace_classify_table_index = ~0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700873
874 hw_index = hw - im->hw_interfaces;
875 hw->hw_if_index = hw_index;
Damjan Marioneabd4242020-10-07 20:59:07 +0200876 hw->default_rx_mode = VNET_HW_IF_RX_MODE_POLLING;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700877
Mohsin Kazmi0d05c0d2021-11-09 17:44:10 +0000878 if (hw_class->tx_hash_fn_type == VNET_HASH_FN_TYPE_ETHERNET ||
879 hw_class->tx_hash_fn_type == VNET_HASH_FN_TYPE_IP)
880 hw->hf = vnet_hash_default_function (hw_class->tx_hash_fn_type);
881
Ed Warnickecb9cada2015-12-08 15:45:58 -0700882 if (dev_class->format_device_name)
Dave Barachba868bb2016-08-08 09:51:21 -0400883 hw->name = format (0, "%U", dev_class->format_device_name, dev_instance);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700884 else if (hw_class->format_interface_name)
885 hw->name = format (0, "%U", hw_class->format_interface_name,
886 dev_instance);
887 else
888 hw->name = format (0, "%s%x", hw_class->name, dev_instance);
889
Dave Barachba868bb2016-08-08 09:51:21 -0400890 if (!im->hw_interface_by_name)
891 im->hw_interface_by_name = hash_create_vec ( /* size */ 0,
Ed Warnickecb9cada2015-12-08 15:45:58 -0700892 sizeof (hw->name[0]),
893 sizeof (uword));
894
895 hash_set_mem (im->hw_interface_by_name, hw->name, hw_index);
896
897 /* Make hardware interface point to software interface. */
898 {
Eyal Baric5b13602016-11-24 19:42:43 +0200899 vnet_sw_interface_t sw = {
900 .type = VNET_SW_INTERFACE_TYPE_HARDWARE,
901 .flood_class = VNET_FLOOD_CLASS_NORMAL,
902 .hw_if_index = hw_index
903 };
Ed Warnickecb9cada2015-12-08 15:45:58 -0700904 hw->sw_if_index = vnet_create_sw_interface_no_callbacks (vnm, &sw);
905 }
906
907 hw->dev_class_index = dev_class_index;
908 hw->dev_instance = dev_instance;
909 hw->hw_class_index = hw_class_index;
910 hw->hw_instance = hw_instance;
911
912 hw->max_rate_bits_per_sec = 0;
Ole Troand7231612018-06-07 10:17:57 +0200913 vnet_sw_interface_set_mtu (vnm, hw->sw_if_index, 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700914
Damjan Mariona31698b2021-03-10 14:35:28 +0100915 if (dev_class->tx_function == 0 && dev_class->tx_fn_registrations == 0)
John Loe5453d02018-01-23 19:21:34 -0500916 goto no_output_nodes; /* No output/tx nodes to create */
917
Ed Warnickecb9cada2015-12-08 15:45:58 -0700918 /* If we have previously deleted interface nodes, re-use them. */
919 if (vec_len (im->deleted_hw_interface_nodes) > 0)
920 {
Dave Barachba868bb2016-08-08 09:51:21 -0400921 vnet_hw_interface_nodes_t *hn;
Pierre Pfister064f55d2016-10-17 15:58:29 +0100922 vlib_node_t *node;
923 vlib_node_runtime_t *nrt;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700924
925 hn = vec_end (im->deleted_hw_interface_nodes) - 1;
926
927 hw->tx_node_index = hn->tx_node_index;
928 hw->output_node_index = hn->output_node_index;
929
Damjan Marionf87acfa2022-03-23 17:36:56 +0100930 vlib_node_rename (vm, hw->tx_node_index, "%v-tx", hw->name);
931 vlib_node_rename (vm, hw->output_node_index, "%v-output", hw->name);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700932
Damjan Marion92ccf9b2021-03-26 11:38:01 +0100933 foreach_vlib_main ()
934 {
935 vnet_interface_output_runtime_t *rt;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700936
Damjan Marion92ccf9b2021-03-26 11:38:01 +0100937 rt =
938 vlib_node_get_runtime_data (this_vlib_main, hw->output_node_index);
939 ASSERT (rt->is_deleted == 1);
940 rt->is_deleted = 0;
941 rt->hw_if_index = hw_index;
942 rt->sw_if_index = hw->sw_if_index;
943 rt->dev_instance = hw->dev_instance;
Igor Mikhailov (imichail)8249a582017-06-15 20:47:48 -0700944
Damjan Marion92ccf9b2021-03-26 11:38:01 +0100945 rt = vlib_node_get_runtime_data (this_vlib_main, hw->tx_node_index);
946 rt->hw_if_index = hw_index;
947 rt->sw_if_index = hw->sw_if_index;
948 rt->dev_instance = hw->dev_instance;
949 }
Dave Barachb8dca742016-07-01 12:38:11 -0400950
Pierre Pfister064f55d2016-10-17 15:58:29 +0100951 /* The new class may differ from the old one.
952 * Functions have to be updated. */
953 node = vlib_get_node (vm, hw->output_node_index);
Pierre Pfister064f55d2016-10-17 15:58:29 +0100954 node->format_trace = format_vnet_interface_output_trace;
Damjan Marionf91098e2021-03-09 16:28:15 +0100955 node->node_fn_registrations = if_out_node->node_fn_registrations;
956 node->function = if_out_node->function;
957
Damjan Marion92ccf9b2021-03-26 11:38:01 +0100958 foreach_vlib_main ()
959 {
960 nrt = vlib_node_get_runtime (this_vlib_main, hw->output_node_index);
961 nrt->function = node->function;
962 vlib_node_runtime_perf_counter (this_vlib_main, nrt, 0, 0, 0,
963 VLIB_NODE_RUNTIME_PERF_RESET);
964 }
Pierre Pfister064f55d2016-10-17 15:58:29 +0100965
966 node = vlib_get_node (vm, hw->tx_node_index);
Damjan Mariona31698b2021-03-10 14:35:28 +0100967 if (dev_class->tx_fn_registrations)
968 {
969 node->node_fn_registrations = dev_class->tx_fn_registrations;
970 node->function = vlib_node_get_preferred_node_fn_variant (
971 vm, dev_class->tx_fn_registrations);
972 }
973 else
974 node->function = dev_class->tx_function;
Pierre Pfister064f55d2016-10-17 15:58:29 +0100975 node->format_trace = dev_class->format_tx_trace;
Damjan Marion92ccf9b2021-03-26 11:38:01 +0100976
977 foreach_vlib_main ()
978 {
979 nrt = vlib_node_get_runtime (this_vlib_main, hw->tx_node_index);
980 nrt->function = node->function;
981 vlib_node_runtime_perf_counter (this_vlib_main, nrt, 0, 0, 0,
982 VLIB_NODE_RUNTIME_PERF_RESET);
983 }
Pierre Pfister064f55d2016-10-17 15:58:29 +0100984
Damjan Marion8bea5892022-04-04 22:40:45 +0200985 vec_dec_len (im->deleted_hw_interface_nodes, 1);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700986 }
987 else
988 {
989 vlib_node_registration_t r;
990 vnet_interface_output_runtime_t rt = {
991 .hw_if_index = hw_index,
992 .sw_if_index = hw->sw_if_index,
993 .dev_instance = hw->dev_instance,
994 .is_deleted = 0,
995 };
996
Dave Barachb7b92992018-10-17 10:38:51 -0400997 clib_memset (&r, 0, sizeof (r));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700998 r.type = VLIB_NODE_TYPE_INTERNAL;
999 r.runtime_data = &rt;
1000 r.runtime_data_bytes = sizeof (rt);
Damjan Marion1bd6cbb2021-04-15 13:12:51 +02001001 r.scalar_size = sizeof (vnet_hw_if_tx_frame_t);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001002 r.vector_size = sizeof (u32);
1003
1004 r.flags = VLIB_NODE_FLAG_IS_OUTPUT;
Damjan Marionf91098e2021-03-09 16:28:15 +01001005 if (dev_class->tx_fn_registrations)
1006 {
1007 r.function = 0;
1008 r.node_fn_registrations = dev_class->tx_fn_registrations;
1009 }
1010 else
1011 r.function = dev_class->tx_function;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001012
Damjan Marionf87acfa2022-03-23 17:36:56 +01001013 hw->tx_node_index = vlib_register_node (vm, &r, "%v-tx", hw->name);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001014
1015 vlib_node_add_named_next_with_slot (vm, hw->tx_node_index,
1016 "error-drop",
1017 VNET_INTERFACE_TX_NEXT_DROP);
1018
1019 r.flags = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001020 r.format_trace = format_vnet_interface_output_trace;
Damjan Marionf91098e2021-03-09 16:28:15 +01001021 if (if_out_node->node_fn_registrations)
1022 {
1023 r.function = 0;
1024 r.node_fn_registrations = if_out_node->node_fn_registrations;
1025 }
1026 else
1027 r.function = if_out_node->function;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001028
1029 {
Dave Barachba868bb2016-08-08 09:51:21 -04001030 static char *e[] = {
Ed Warnickecb9cada2015-12-08 15:45:58 -07001031 "interface is down",
1032 "interface is deleted",
Mohsin Kazmi0d05c0d2021-11-09 17:44:10 +00001033 "no tx queue available",
Ed Warnickecb9cada2015-12-08 15:45:58 -07001034 };
1035
1036 r.n_errors = ARRAY_LEN (e);
1037 r.error_strings = e;
1038 }
Damjan Marionf87acfa2022-03-23 17:36:56 +01001039 hw->output_node_index =
1040 vlib_register_node (vm, &r, "%v-output", hw->name);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001041
Damjan Marion9c6ae5f2016-11-15 23:20:01 +01001042 vlib_node_add_named_next_with_slot (vm, hw->output_node_index,
1043 "error-drop",
1044 VNET_INTERFACE_OUTPUT_NEXT_DROP);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001045 vlib_node_add_next_with_slot (vm, hw->output_node_index,
1046 hw->tx_node_index,
1047 VNET_INTERFACE_OUTPUT_NEXT_TX);
Damjan Marion152e21d2016-11-29 14:55:43 +01001048 /* add interface to the list of "output-interface" feature arc start nodes
1049 and clone nexts from 1st interface if it exists */
1050 fcm = vnet_feature_get_config_main (im->output_feature_arc_index);
1051 cm = &fcm->config_main;
1052 i = vec_len (cm->start_node_indices);
1053 vec_validate (cm->start_node_indices, i);
1054 cm->start_node_indices[i] = hw->output_node_index;
1055 if (hw_index)
1056 {
1057 /* copy nexts from 1st interface */
1058 vnet_hw_interface_t *first_hw;
1059 vlib_node_t *first_node;
1060
1061 first_hw = vnet_get_hw_interface (vnm, /* hw_if_index */ 0);
1062 first_node = vlib_get_node (vm, first_hw->output_node_index);
1063
1064 /* 1st 2 nexts are already added above */
1065 for (i = 2; i < vec_len (first_node->next_nodes); i++)
1066 vlib_node_add_next_with_slot (vm, hw->output_node_index,
1067 first_node->next_nodes[i], i);
1068 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001069 }
1070
Damjan Marion8932e452021-04-16 11:49:26 +02001071 hw->if_out_arc_end_node_next_index = vlib_node_add_next (
1072 vm, vnet_interface_output_arc_end_node.index, hw->tx_node_index);
1073 vnet_if_update_lookup_tables (vnm, hw->sw_if_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001074 setup_output_node (vm, hw->output_node_index, hw_class);
1075 setup_tx_node (vm, hw->tx_node_index, dev_class);
1076
John Loe5453d02018-01-23 19:21:34 -05001077no_output_nodes:
Ed Warnickecb9cada2015-12-08 15:45:58 -07001078 /* Call all up/down callbacks with zero flags when interface is created. */
Dave Barachba868bb2016-08-08 09:51:21 -04001079 vnet_sw_interface_set_flags_helper (vnm, hw->sw_if_index, /* flags */ 0,
1080 VNET_INTERFACE_SET_FLAGS_HELPER_IS_CREATE);
1081 vnet_hw_interface_set_flags_helper (vnm, hw_index, /* flags */ 0,
1082 VNET_INTERFACE_SET_FLAGS_HELPER_IS_CREATE);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001083 return hw_index;
1084}
1085
Dave Barachba868bb2016-08-08 09:51:21 -04001086void
1087vnet_delete_hw_interface (vnet_main_t * vnm, u32 hw_if_index)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001088{
Dave Barachba868bb2016-08-08 09:51:21 -04001089 vnet_interface_main_t *im = &vnm->interface_main;
1090 vnet_hw_interface_t *hw = vnet_get_hw_interface (vnm, hw_if_index);
1091 vlib_main_t *vm = vnm->vlib_main;
John Loe5453d02018-01-23 19:21:34 -05001092 vnet_device_class_t *dev_class = vnet_get_device_class (vnm,
1093 hw->dev_class_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001094 /* If it is up, mark it down. */
1095 if (hw->flags != 0)
1096 vnet_hw_interface_set_flags (vnm, hw_if_index, /* flags */ 0);
1097
1098 /* Call delete callbacks. */
1099 call_hw_interface_add_del_callbacks (vnm, hw_if_index, /* is_create */ 0);
1100
Damjan Marion1bd6cbb2021-04-15 13:12:51 +02001101 /* delete rx & tx queues */
Damjan Marion94100532020-11-06 23:25:57 +01001102 vnet_hw_if_unregister_all_rx_queues (vnm, hw_if_index);
Damjan Marion1bd6cbb2021-04-15 13:12:51 +02001103 vnet_hw_if_unregister_all_tx_queues (vnm, hw_if_index);
Damjan Marion94100532020-11-06 23:25:57 +01001104 vnet_hw_if_update_runtime_data (vnm, hw_if_index);
1105
Ed Warnickecb9cada2015-12-08 15:45:58 -07001106 /* Delete any sub-interfaces. */
1107 {
1108 u32 id, sw_if_index;
John Lo5957a142018-01-18 12:44:50 -05001109 hash_foreach (id, sw_if_index, hw->sub_interface_sw_if_index_by_id,
1110 ({
1111 vnet_sw_interface_t *si = vnet_get_sw_interface (vnm, sw_if_index);
1112 u64 sup_and_sub_key =
1113 ((u64) (si->sup_sw_if_index) << 32) | (u64) si->sub.id;
1114 hash_unset_mem_free (&im->sw_if_index_by_sup_and_sub, &sup_and_sub_key);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001115 vnet_delete_sw_interface (vnm, sw_if_index);
1116 }));
John Lo5957a142018-01-18 12:44:50 -05001117 hash_free (hw->sub_interface_sw_if_index_by_id);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001118 }
1119
John Lo5957a142018-01-18 12:44:50 -05001120 /* Delete software interface corresponding to hardware interface. */
1121 vnet_delete_sw_interface (vnm, hw->sw_if_index);
1122
John Loe5453d02018-01-23 19:21:34 -05001123 if (dev_class->tx_function)
1124 {
1125 /* Put output/tx nodes into recycle pool */
1126 vnet_hw_interface_nodes_t *dn;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001127
Damjan Marion92ccf9b2021-03-26 11:38:01 +01001128 foreach_vlib_main ()
1129 {
John Loe5453d02018-01-23 19:21:34 -05001130 vnet_interface_output_runtime_t *rt =
1131 vlib_node_get_runtime_data (this_vlib_main, hw->output_node_index);
Igor Mikhailov (imichail)8249a582017-06-15 20:47:48 -07001132
John Loe5453d02018-01-23 19:21:34 -05001133 /* Mark node runtime as deleted so output node (if called)
1134 * will drop packets. */
1135 rt->is_deleted = 1;
Damjan Marion92ccf9b2021-03-26 11:38:01 +01001136 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001137
John Loe5453d02018-01-23 19:21:34 -05001138 vlib_node_rename (vm, hw->output_node_index,
1139 "interface-%d-output-deleted", hw_if_index);
1140 vlib_node_rename (vm, hw->tx_node_index, "interface-%d-tx-deleted",
1141 hw_if_index);
Damjan Marion8271dfd2022-04-06 11:07:35 +02001142 vlib_unregister_errors (vm, hw->output_node_index);
1143 vlib_unregister_errors (vm, hw->tx_node_index);
John Loe5453d02018-01-23 19:21:34 -05001144 vec_add2 (im->deleted_hw_interface_nodes, dn, 1);
1145 dn->tx_node_index = hw->tx_node_index;
1146 dn->output_node_index = hw->output_node_index;
1147 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001148 hash_unset_mem (im->hw_interface_by_name, hw->name);
1149 vec_free (hw->name);
Neale Rannscbe8d652018-04-27 04:42:47 -07001150 vec_free (hw->hw_address);
Mohsin Kazmi7318c422021-10-04 11:29:08 +02001151 vec_free (hw->output_node_thread_runtimes);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001152 pool_put (im->hw_interfaces, hw);
1153}
1154
Neale Ranns8b37b872016-11-21 12:25:22 +00001155void
1156vnet_hw_interface_walk_sw (vnet_main_t * vnm,
1157 u32 hw_if_index,
1158 vnet_hw_sw_interface_walk_t fn, void *ctx)
1159{
1160 vnet_hw_interface_t *hi;
1161 u32 id, sw_if_index;
1162
1163 hi = vnet_get_hw_interface (vnm, hw_if_index);
Neale Ranns17ff3c12018-07-04 10:24:24 -07001164 /* the super first, then the sub interfaces */
1165 if (WALK_STOP == fn (vnm, hi->sw_if_index, ctx))
1166 return;
Neale Ranns8b37b872016-11-21 12:25:22 +00001167
Neale Ranns8b37b872016-11-21 12:25:22 +00001168 hash_foreach (id, sw_if_index,
1169 hi->sub_interface_sw_if_index_by_id,
1170 ({
Neale Ranns0053de62018-05-22 08:40:52 -07001171 if (WALK_STOP == fn (vnm, sw_if_index, ctx))
1172 break;
Neale Ranns8b37b872016-11-21 12:25:22 +00001173 }));
Neale Ranns8b37b872016-11-21 12:25:22 +00001174}
1175
Neale Ranns0053de62018-05-22 08:40:52 -07001176void
Neale Ranns17ff3c12018-07-04 10:24:24 -07001177vnet_hw_interface_walk (vnet_main_t * vnm,
1178 vnet_hw_interface_walk_t fn, void *ctx)
1179{
1180 vnet_interface_main_t *im;
1181 vnet_hw_interface_t *hi;
1182
1183 im = &vnm->interface_main;
1184
Damjan Marionb2c31b62020-12-13 21:47:40 +01001185 pool_foreach (hi, im->hw_interfaces)
1186 {
Neale Ranns17ff3c12018-07-04 10:24:24 -07001187 if (WALK_STOP == fn(vnm, hi->hw_if_index, ctx))
1188 break;
Damjan Marionb2c31b62020-12-13 21:47:40 +01001189 }
Neale Ranns17ff3c12018-07-04 10:24:24 -07001190}
1191
1192void
Neale Ranns0053de62018-05-22 08:40:52 -07001193vnet_sw_interface_walk (vnet_main_t * vnm,
1194 vnet_sw_interface_walk_t fn, void *ctx)
1195{
1196 vnet_interface_main_t *im;
1197 vnet_sw_interface_t *si;
1198
1199 im = &vnm->interface_main;
1200
Damjan Marionb2c31b62020-12-13 21:47:40 +01001201 pool_foreach (si, im->sw_interfaces)
Neale Ranns0053de62018-05-22 08:40:52 -07001202 {
1203 if (WALK_STOP == fn (vnm, si, ctx))
1204 break;
Damjan Marionb2c31b62020-12-13 21:47:40 +01001205 }
Neale Ranns0053de62018-05-22 08:40:52 -07001206}
1207
Dave Barachba868bb2016-08-08 09:51:21 -04001208void
1209vnet_hw_interface_init_for_class (vnet_main_t * vnm, u32 hw_if_index,
1210 u32 hw_class_index, u32 hw_instance)
1211{
1212 vnet_hw_interface_t *hi = vnet_get_hw_interface (vnm, hw_if_index);
1213 vnet_hw_interface_class_t *hc =
1214 vnet_get_hw_interface_class (vnm, hw_class_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001215
1216 hi->hw_class_index = hw_class_index;
1217 hi->hw_instance = hw_instance;
1218 setup_output_node (vnm->vlib_main, hi->output_node_index, hc);
1219}
1220
1221static clib_error_t *
Dave Barachba868bb2016-08-08 09:51:21 -04001222vnet_hw_interface_set_class_helper (vnet_main_t * vnm, u32 hw_if_index,
1223 u32 hw_class_index, u32 redistribute)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001224{
Dave Barachba868bb2016-08-08 09:51:21 -04001225 vnet_hw_interface_t *hi = vnet_get_hw_interface (vnm, hw_if_index);
1226 vnet_sw_interface_t *si = vnet_get_sw_interface (vnm, hi->sw_if_index);
1227 vnet_hw_interface_class_t *old_class =
1228 vnet_get_hw_interface_class (vnm, hi->hw_class_index);
1229 vnet_hw_interface_class_t *new_class =
1230 vnet_get_hw_interface_class (vnm, hw_class_index);
1231 vnet_device_class_t *dev_class =
1232 vnet_get_device_class (vnm, hi->dev_class_index);
1233 clib_error_t *error = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001234
1235 /* New class equals old class? Nothing to do. */
1236 if (hi->hw_class_index == hw_class_index)
1237 return 0;
1238
1239 /* No need (and incorrect since admin up flag may be set) to do error checking when
1240 receiving unserialize message. */
1241 if (redistribute)
1242 {
1243 if (si->flags & VNET_SW_INTERFACE_FLAG_ADMIN_UP)
Dave Barachba868bb2016-08-08 09:51:21 -04001244 return clib_error_return (0,
1245 "%v must be admin down to change class from %s to %s",
Ed Warnickecb9cada2015-12-08 15:45:58 -07001246 hi->name, old_class->name, new_class->name);
1247
1248 /* Make sure interface supports given class. */
1249 if ((new_class->is_valid_class_for_interface
Dave Barachba868bb2016-08-08 09:51:21 -04001250 && !new_class->is_valid_class_for_interface (vnm, hw_if_index,
1251 hw_class_index))
1252 || (dev_class->is_valid_class_for_interface
1253 && !dev_class->is_valid_class_for_interface (vnm, hw_if_index,
1254 hw_class_index)))
1255 return clib_error_return (0,
1256 "%v class cannot be changed from %s to %s",
Ed Warnickecb9cada2015-12-08 15:45:58 -07001257 hi->name, old_class->name, new_class->name);
1258
Ed Warnickecb9cada2015-12-08 15:45:58 -07001259 }
1260
1261 if (old_class->hw_class_change)
Dave Barachba868bb2016-08-08 09:51:21 -04001262 old_class->hw_class_change (vnm, hw_if_index, old_class->index,
1263 new_class->index);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001264
Dave Barachba868bb2016-08-08 09:51:21 -04001265 vnet_hw_interface_init_for_class (vnm, hw_if_index, new_class->index,
1266 /* instance */ ~0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001267
1268 if (new_class->hw_class_change)
Dave Barachba868bb2016-08-08 09:51:21 -04001269 new_class->hw_class_change (vnm, hw_if_index, old_class->index,
1270 new_class->index);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001271
1272 if (dev_class->hw_class_change)
1273 dev_class->hw_class_change (vnm, hw_if_index, new_class->index);
1274
1275 return error;
1276}
1277
1278clib_error_t *
Dave Barachba868bb2016-08-08 09:51:21 -04001279vnet_hw_interface_set_class (vnet_main_t * vnm, u32 hw_if_index,
1280 u32 hw_class_index)
1281{
1282 return vnet_hw_interface_set_class_helper (vnm, hw_if_index, hw_class_index,
1283 /* redistribute */ 1);
1284}
Ed Warnickecb9cada2015-12-08 15:45:58 -07001285
1286static int
Dave Barachba868bb2016-08-08 09:51:21 -04001287vnet_hw_interface_rx_redirect_to_node_helper (vnet_main_t * vnm,
1288 u32 hw_if_index,
1289 u32 node_index,
1290 u32 redistribute)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001291{
Dave Barachba868bb2016-08-08 09:51:21 -04001292 vnet_hw_interface_t *hi = vnet_get_hw_interface (vnm, hw_if_index);
1293 vnet_device_class_t *dev_class = vnet_get_device_class
Ed Warnickecb9cada2015-12-08 15:45:58 -07001294 (vnm, hi->dev_class_index);
1295
Ed Warnickecb9cada2015-12-08 15:45:58 -07001296 if (dev_class->rx_redirect_to_node)
1297 {
1298 dev_class->rx_redirect_to_node (vnm, hw_if_index, node_index);
1299 return 0;
1300 }
1301
1302 return VNET_API_ERROR_UNIMPLEMENTED;
1303}
1304
Dave Barachba868bb2016-08-08 09:51:21 -04001305int
1306vnet_hw_interface_rx_redirect_to_node (vnet_main_t * vnm, u32 hw_if_index,
1307 u32 node_index)
1308{
1309 return vnet_hw_interface_rx_redirect_to_node_helper (vnm, hw_if_index,
1310 node_index,
1311 1 /* redistribute */ );
1312}
Ed Warnickecb9cada2015-12-08 15:45:58 -07001313
1314word
1315vnet_sw_interface_compare (vnet_main_t * vnm,
1316 uword sw_if_index0, uword sw_if_index1)
1317{
Dave Barachba868bb2016-08-08 09:51:21 -04001318 vnet_sw_interface_t *sup0 = vnet_get_sup_sw_interface (vnm, sw_if_index0);
1319 vnet_sw_interface_t *sup1 = vnet_get_sup_sw_interface (vnm, sw_if_index1);
1320 vnet_hw_interface_t *h0 = vnet_get_hw_interface (vnm, sup0->hw_if_index);
1321 vnet_hw_interface_t *h1 = vnet_get_hw_interface (vnm, sup1->hw_if_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001322
1323 if (h0 != h1)
1324 return vec_cmp (h0->name, h1->name);
1325 return (word) h0->hw_instance - (word) h1->hw_instance;
1326}
1327
1328word
1329vnet_hw_interface_compare (vnet_main_t * vnm,
1330 uword hw_if_index0, uword hw_if_index1)
1331{
Dave Barachba868bb2016-08-08 09:51:21 -04001332 vnet_hw_interface_t *h0 = vnet_get_hw_interface (vnm, hw_if_index0);
1333 vnet_hw_interface_t *h1 = vnet_get_hw_interface (vnm, hw_if_index1);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001334
1335 if (h0 != h1)
1336 return vec_cmp (h0->name, h1->name);
1337 return (word) h0->hw_instance - (word) h1->hw_instance;
1338}
1339
Neale Rannsb80c5362016-10-08 13:03:40 +01001340int
1341vnet_sw_interface_is_p2p (vnet_main_t * vnm, u32 sw_if_index)
1342{
Nathan Skrzypczak535364e2023-12-06 17:34:57 +01001343 vnet_sw_interface_t *si = vnet_get_sw_interface_or_null (vnm, sw_if_index);
1344 if (si == NULL)
1345 return -1;
1346
Neale Ranns17ff3c12018-07-04 10:24:24 -07001347 if ((si->type == VNET_SW_INTERFACE_TYPE_P2P) ||
1348 (si->type == VNET_SW_INTERFACE_TYPE_PIPE))
Pavel Kotucek15ac81c2017-06-20 14:00:26 +02001349 return 1;
1350
Neale Rannsb80c5362016-10-08 13:03:40 +01001351 vnet_hw_interface_t *hw = vnet_get_sup_hw_interface (vnm, sw_if_index);
1352 vnet_hw_interface_class_t *hc =
1353 vnet_get_hw_interface_class (vnm, hw->hw_class_index);
1354
1355 return (hc->flags & VNET_HW_INTERFACE_CLASS_FLAG_P2P);
1356}
1357
Neale Ranns5f8f6172019-04-18 10:23:56 +00001358int
1359vnet_sw_interface_is_nbma (vnet_main_t * vnm, u32 sw_if_index)
1360{
1361 vnet_hw_interface_t *hw = vnet_get_sup_hw_interface (vnm, sw_if_index);
1362 vnet_hw_interface_class_t *hc =
1363 vnet_get_hw_interface_class (vnm, hw->hw_class_index);
1364
1365 return (hc->flags & VNET_HW_INTERFACE_CLASS_FLAG_NBMA);
1366}
1367
Ed Warnickecb9cada2015-12-08 15:45:58 -07001368clib_error_t *
Pim van Pelt76b19ce2021-08-10 23:44:44 +02001369vnet_sw_interface_supports_addressing (vnet_main_t *vnm, u32 sw_if_index)
1370{
1371 if (sw_if_index == 0)
1372 {
1373 return clib_error_create (
1374 "local0 interface doesn't support IP addressing");
1375 }
1376
1377 if (vnet_sw_interface_is_sub (vnm, sw_if_index))
1378 {
1379 vnet_sw_interface_t *si;
1380 si = vnet_get_sw_interface_or_null (vnm, sw_if_index);
1381 if (si && si->type == VNET_SW_INTERFACE_TYPE_SUB &&
1382 si->sub.eth.flags.exact_match == 0)
1383 {
1384 return clib_error_create (
1385 "sub-interface without exact-match doesn't support IP addressing");
1386 }
1387 }
1388 return NULL;
1389}
1390
Damjan Marion87979562023-07-28 13:02:00 +02001391u32
1392vnet_register_device_class (vlib_main_t *vm, vnet_device_class_t *c)
1393{
1394 vnet_main_t *vnm = vnet_get_main ();
1395 vnet_interface_main_t *im = &vnm->interface_main;
1396 c->index = vec_len (im->device_classes);
1397 hash_set_mem (im->device_class_by_name, c->name, c->index);
1398
1399 /* to avoid confusion, please remove ".tx_function" statement
1400 from VNET_DEVICE_CLASS() if using function candidates */
1401 ASSERT (c->tx_fn_registrations == 0 || c->tx_function == 0);
1402
1403 if (c->tx_fn_registrations)
1404 c->tx_function =
1405 vlib_node_get_preferred_node_fn_variant (vm, c->tx_fn_registrations);
1406
1407 vec_add1 (im->device_classes, c[0]);
1408 return c->index;
1409}
1410
Pim van Pelt76b19ce2021-08-10 23:44:44 +02001411clib_error_t *
Ed Warnickecb9cada2015-12-08 15:45:58 -07001412vnet_interface_init (vlib_main_t * vm)
1413{
Dave Barachba868bb2016-08-08 09:51:21 -04001414 vnet_main_t *vnm = vnet_get_main ();
1415 vnet_interface_main_t *im = &vnm->interface_main;
1416 vlib_buffer_t *b = 0;
1417 vnet_buffer_opaque_t *o = 0;
Dave Barach7bee7732017-10-18 18:48:11 -04001418 clib_error_t *error;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001419
1420 /*
1421 * Keep people from shooting themselves in the foot.
1422 */
Dave Barachba868bb2016-08-08 09:51:21 -04001423 if (sizeof (b->opaque) != sizeof (vnet_buffer_opaque_t))
Ed Warnickecb9cada2015-12-08 15:45:58 -07001424 {
1425#define _(a) if (sizeof(o->a) > sizeof (o->unused)) \
1426 clib_warning \
1427 ("FATAL: size of opaque union subtype %s is %d (max %d)", \
1428 #a, sizeof(o->a), sizeof (o->unused));
Dave Barachba868bb2016-08-08 09:51:21 -04001429 foreach_buffer_opaque_union_subtype;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001430#undef _
1431
Dave Barachba868bb2016-08-08 09:51:21 -04001432 return clib_error_return
1433 (0, "FATAL: size of vlib buffer opaque %d, size of vnet opaque %d",
1434 sizeof (b->opaque), sizeof (vnet_buffer_opaque_t));
Ed Warnickecb9cada2015-12-08 15:45:58 -07001435 }
1436
jaszha035cdde5c2019-07-11 20:47:24 +00001437 clib_spinlock_init (&im->sw_if_counter_lock);
1438 clib_spinlock_lock (&im->sw_if_counter_lock); /* should be no need */
Ed Warnickecb9cada2015-12-08 15:45:58 -07001439
Dave Barachba868bb2016-08-08 09:51:21 -04001440 vec_validate (im->sw_if_counters, VNET_N_SIMPLE_INTERFACE_COUNTER - 1);
Ole Troan1ec0ea82018-06-14 09:28:27 +02001441#define _(E,n,p) \
1442 im->sw_if_counters[VNET_INTERFACE_COUNTER_##E].name = #n; \
1443 im->sw_if_counters[VNET_INTERFACE_COUNTER_##E].stat_segment_name = "/" #p "/" #n;
1444 foreach_simple_interface_counter_name
1445#undef _
1446 vec_validate (im->combined_sw_if_counters,
1447 VNET_N_COMBINED_INTERFACE_COUNTER - 1);
1448#define _(E,n,p) \
1449 im->combined_sw_if_counters[VNET_INTERFACE_COUNTER_##E].name = #n; \
1450 im->combined_sw_if_counters[VNET_INTERFACE_COUNTER_##E].stat_segment_name = "/" #p "/" #n;
1451 foreach_combined_interface_counter_name
1452#undef _
jaszha035cdde5c2019-07-11 20:47:24 +00001453 clib_spinlock_unlock (&im->sw_if_counter_lock);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001454
Dave Barachba868bb2016-08-08 09:51:21 -04001455 im->device_class_by_name = hash_create_string ( /* size */ 0,
Ed Warnickecb9cada2015-12-08 15:45:58 -07001456 sizeof (uword));
Ed Warnickecb9cada2015-12-08 15:45:58 -07001457
Damjan Marion87979562023-07-28 13:02:00 +02001458 for (vnet_device_class_t *c = vnm->device_class_registrations; c;
1459 c = c->next_class_registration)
1460 vnet_register_device_class (vm, c);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001461
Dave Barachba868bb2016-08-08 09:51:21 -04001462 im->hw_interface_class_by_name = hash_create_string ( /* size */ 0,
Ed Warnickecb9cada2015-12-08 15:45:58 -07001463 sizeof (uword));
1464
Damjan Marion94100532020-11-06 23:25:57 +01001465 im->rxq_index_by_hw_if_index_and_queue_id =
1466 hash_create_mem (0, sizeof (u64), sizeof (u32));
Damjan Marion1bd6cbb2021-04-15 13:12:51 +02001467 im->txq_index_by_hw_if_index_and_queue_id =
1468 hash_create_mem (0, sizeof (u64), sizeof (u32));
Dave Barachba868bb2016-08-08 09:51:21 -04001469 im->sw_if_index_by_sup_and_sub = hash_create_mem (0, sizeof (u64),
1470 sizeof (uword));
Ed Warnickecb9cada2015-12-08 15:45:58 -07001471 {
Dave Barachba868bb2016-08-08 09:51:21 -04001472 vnet_hw_interface_class_t *c;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001473
1474 c = vnm->hw_interface_class_registrations;
Dave Barachba868bb2016-08-08 09:51:21 -04001475
Ed Warnickecb9cada2015-12-08 15:45:58 -07001476 while (c)
1477 {
Dave Barachba868bb2016-08-08 09:51:21 -04001478 c->index = vec_len (im->hw_interface_classes);
1479 hash_set_mem (im->hw_interface_class_by_name, c->name, c->index);
Neale Rannsb80c5362016-10-08 13:03:40 +01001480
1481 if (NULL == c->build_rewrite)
1482 c->build_rewrite = default_build_rewrite;
1483 if (NULL == c->update_adjacency)
1484 c->update_adjacency = default_update_adjacency;
1485
Dave Barachba868bb2016-08-08 09:51:21 -04001486 vec_add1 (im->hw_interface_classes, c[0]);
1487 c = c->next_class_registration;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001488 }
1489 }
1490
Andrew Yourtchenko6a7cff72018-10-12 16:09:22 +02001491 /* init per-thread data */
1492 vec_validate_aligned (im->per_thread_data, vlib_num_workers (),
1493 CLIB_CACHE_LINE_BYTES);
1494
Dave Barach7bee7732017-10-18 18:48:11 -04001495 if ((error = vlib_call_init_function (vm, vnet_interface_cli_init)))
Ed Warnickecb9cada2015-12-08 15:45:58 -07001496 return error;
Dave Barach7bee7732017-10-18 18:48:11 -04001497
Dave Barach7be864a2016-11-28 11:41:35 -05001498 vnm->interface_tag_by_sw_if_index = hash_create (0, sizeof (uword));
Dave Barach7bee7732017-10-18 18:48:11 -04001499
Dave Barach7bee7732017-10-18 18:48:11 -04001500 return 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001501}
1502
1503VLIB_INIT_FUNCTION (vnet_interface_init);
1504
1505/* Kludge to renumber interface names [only!] */
Dave Barachba868bb2016-08-08 09:51:21 -04001506int
1507vnet_interface_name_renumber (u32 sw_if_index, u32 new_show_dev_instance)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001508{
1509 int rv;
Dave Barachba868bb2016-08-08 09:51:21 -04001510 vnet_main_t *vnm = vnet_get_main ();
1511 vnet_interface_main_t *im = &vnm->interface_main;
1512 vnet_hw_interface_t *hi = vnet_get_sup_hw_interface (vnm, sw_if_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001513
Dave Barachba868bb2016-08-08 09:51:21 -04001514 vnet_device_class_t *dev_class = vnet_get_device_class
Ed Warnickecb9cada2015-12-08 15:45:58 -07001515 (vnm, hi->dev_class_index);
1516
1517 if (dev_class->name_renumber == 0 || dev_class->format_device_name == 0)
Dave Barachba868bb2016-08-08 09:51:21 -04001518 return VNET_API_ERROR_UNIMPLEMENTED;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001519
1520 rv = dev_class->name_renumber (hi, new_show_dev_instance);
1521
1522 if (rv)
1523 return rv;
1524
1525 hash_unset_mem (im->hw_interface_by_name, hi->name);
1526 vec_free (hi->name);
1527 /* Use the mapping we set up to call it Ishmael */
Dave Barachba868bb2016-08-08 09:51:21 -04001528 hi->name = format (0, "%U", dev_class->format_device_name,
1529 hi->dev_instance);
1530
Ed Warnickecb9cada2015-12-08 15:45:58 -07001531 hash_set_mem (im->hw_interface_by_name, hi->name, hi->hw_if_index);
1532 return rv;
1533}
1534
Sean Hope608d1ed2016-03-09 00:35:21 -05001535clib_error_t *
Dave Barachba868bb2016-08-08 09:51:21 -04001536vnet_rename_interface (vnet_main_t * vnm, u32 hw_if_index, char *new_name)
Sean Hope608d1ed2016-03-09 00:35:21 -05001537{
Dave Barachba868bb2016-08-08 09:51:21 -04001538 vnet_interface_main_t *im = &vnm->interface_main;
1539 vlib_main_t *vm = vnm->vlib_main;
1540 vnet_hw_interface_t *hw;
1541 u8 *old_name;
1542 clib_error_t *error = 0;
Sean Hope608d1ed2016-03-09 00:35:21 -05001543
Dave Barachba868bb2016-08-08 09:51:21 -04001544 hw = vnet_get_hw_interface (vnm, hw_if_index);
Sean Hope608d1ed2016-03-09 00:35:21 -05001545 if (!hw)
1546 {
1547 return clib_error_return (0,
Dave Barachba868bb2016-08-08 09:51:21 -04001548 "unable to find hw interface for index %u",
1549 hw_if_index);
Sean Hope608d1ed2016-03-09 00:35:21 -05001550 }
1551
1552 old_name = hw->name;
1553
Dave Barachba868bb2016-08-08 09:51:21 -04001554 /* set new hw->name */
Sean Hope608d1ed2016-03-09 00:35:21 -05001555 hw->name = format (0, "%s", new_name);
1556
Dave Barachba868bb2016-08-08 09:51:21 -04001557 /* remove the old name to hw_if_index mapping and install the new one */
Sean Hope608d1ed2016-03-09 00:35:21 -05001558 hash_unset_mem (im->hw_interface_by_name, old_name);
1559 hash_set_mem (im->hw_interface_by_name, hw->name, hw_if_index);
1560
Dave Barachba868bb2016-08-08 09:51:21 -04001561 /* rename tx/output nodes */
Sean Hope608d1ed2016-03-09 00:35:21 -05001562 vlib_node_rename (vm, hw->tx_node_index, "%v-tx", hw->name);
1563 vlib_node_rename (vm, hw->output_node_index, "%v-output", hw->name);
1564
Dave Barachba868bb2016-08-08 09:51:21 -04001565 /* free the old name vector */
Sean Hope608d1ed2016-03-09 00:35:21 -05001566 vec_free (old_name);
1567
1568 return error;
1569}
Dave Barachba868bb2016-08-08 09:51:21 -04001570
Matthew Smithe0792fd2019-07-12 11:48:24 -05001571clib_error_t *
1572vnet_hw_interface_add_del_mac_address (vnet_main_t * vnm,
1573 u32 hw_if_index,
1574 const u8 * mac_address, u8 is_add)
1575{
1576 clib_error_t *error = 0;
1577 vnet_hw_interface_t *hi = vnet_get_hw_interface (vnm, hw_if_index);
1578
1579 vnet_device_class_t *dev_class =
1580 vnet_get_device_class (vnm, hi->dev_class_index);
1581
1582 if (!hi->hw_address)
1583 {
1584 error =
1585 clib_error_return
1586 (0, "Secondary MAC Addresses not supported for interface index %u",
1587 hw_if_index);
1588 goto done;
1589 }
1590
1591 if (dev_class->mac_addr_add_del_function)
1592 error = dev_class->mac_addr_add_del_function (hi, mac_address, is_add);
1593
1594 if (!error)
1595 {
1596 vnet_hw_interface_class_t *hw_class;
1597
1598 hw_class = vnet_get_hw_interface_class (vnm, hi->hw_class_index);
1599
1600 if (NULL != hw_class->mac_addr_add_del_function)
1601 error = hw_class->mac_addr_add_del_function (hi, mac_address, is_add);
1602 }
1603
1604 /* If no errors, add to the list of secondary MACs on the ethernet intf */
1605 if (!error)
1606 ethernet_interface_add_del_address (&ethernet_main, hw_if_index,
1607 mac_address, is_add);
1608
1609done:
Damjan Mariond1bd5d22020-11-23 16:58:05 +01001610 if (error)
1611 log_err ("hw_add_del_mac_address: %U", format_clib_error, error);
Matthew Smithe0792fd2019-07-12 11:48:24 -05001612 return error;
1613}
1614
Pavel Kotucekc631f2d2016-09-26 10:40:02 +02001615static clib_error_t *
1616vnet_hw_interface_change_mac_address_helper (vnet_main_t * vnm,
John Lo62fcc0a2017-10-31 14:31:10 -04001617 u32 hw_if_index,
Neale Ranns8f8994a2018-10-30 03:47:20 -07001618 const u8 * mac_address)
Pavel Kotucekc631f2d2016-09-26 10:40:02 +02001619{
1620 clib_error_t *error = 0;
1621 vnet_hw_interface_t *hi = vnet_get_hw_interface (vnm, hw_if_index);
1622
1623 if (hi->hw_address)
1624 {
Neale Ranns3b81a1e2018-09-06 09:50:26 -07001625 u8 *old_address = vec_dup (hi->hw_address);
Pavel Kotucekc631f2d2016-09-26 10:40:02 +02001626 vnet_device_class_t *dev_class =
1627 vnet_get_device_class (vnm, hi->dev_class_index);
1628 if (dev_class->mac_addr_change_function)
1629 {
1630 error =
Neale Ranns3b81a1e2018-09-06 09:50:26 -07001631 dev_class->mac_addr_change_function (hi, old_address,
1632 mac_address);
Pavel Kotucekc631f2d2016-09-26 10:40:02 +02001633 }
1634 if (!error)
1635 {
Neale Ranns3be6b282016-12-20 14:24:01 +00001636 vnet_hw_interface_class_t *hw_class;
Pavel Kotucekc631f2d2016-09-26 10:40:02 +02001637
Neale Ranns3be6b282016-12-20 14:24:01 +00001638 hw_class = vnet_get_hw_interface_class (vnm, hi->hw_class_index);
Pavel Kotuceka6b31772016-10-14 10:20:59 +02001639
Neale Ranns3be6b282016-12-20 14:24:01 +00001640 if (NULL != hw_class->mac_addr_change_function)
Neale Ranns3b81a1e2018-09-06 09:50:26 -07001641 hw_class->mac_addr_change_function (hi, old_address, mac_address);
Pavel Kotucekc631f2d2016-09-26 10:40:02 +02001642 }
1643 else
1644 {
1645 error =
1646 clib_error_return (0,
1647 "MAC Address Change is not supported on this interface");
1648 }
Neale Ranns3b81a1e2018-09-06 09:50:26 -07001649 vec_free (old_address);
Pavel Kotucekc631f2d2016-09-26 10:40:02 +02001650 }
1651 else
1652 {
1653 error =
1654 clib_error_return (0,
1655 "mac address change is not supported for interface index %u",
1656 hw_if_index);
1657 }
1658 return error;
1659}
1660
1661clib_error_t *
1662vnet_hw_interface_change_mac_address (vnet_main_t * vnm, u32 hw_if_index,
Neale Ranns8f8994a2018-10-30 03:47:20 -07001663 const u8 * mac_address)
Pavel Kotucekc631f2d2016-09-26 10:40:02 +02001664{
1665 return vnet_hw_interface_change_mac_address_helper
1666 (vnm, hw_if_index, mac_address);
1667}
1668
Stanislav Zaikin328b5da2021-07-15 16:27:29 +02001669static int
1670vnet_sw_interface_check_table_same (u32 unnumbered_sw_if_index,
1671 u32 ip_sw_if_index)
1672{
Stanislav Zaikin328b5da2021-07-15 16:27:29 +02001673 if (ip4_main.fib_index_by_sw_if_index[unnumbered_sw_if_index] !=
1674 ip4_main.fib_index_by_sw_if_index[ip_sw_if_index])
1675 return VNET_API_ERROR_UNEXPECTED_INTF_STATE;
1676
1677 if (ip4_main.mfib_index_by_sw_if_index[unnumbered_sw_if_index] !=
1678 ip4_main.mfib_index_by_sw_if_index[ip_sw_if_index])
1679 return VNET_API_ERROR_UNEXPECTED_INTF_STATE;
1680
1681 if (ip6_main.fib_index_by_sw_if_index[unnumbered_sw_if_index] !=
1682 ip6_main.fib_index_by_sw_if_index[ip_sw_if_index])
1683 return VNET_API_ERROR_UNEXPECTED_INTF_STATE;
1684
1685 if (ip6_main.mfib_index_by_sw_if_index[unnumbered_sw_if_index] !=
1686 ip6_main.mfib_index_by_sw_if_index[ip_sw_if_index])
1687 return VNET_API_ERROR_UNEXPECTED_INTF_STATE;
1688
1689 return 0;
1690}
1691
Neale Ranns2ae2bc52018-03-16 03:22:39 -07001692/* update the unnumbered state of an interface*/
Stanislav Zaikin328b5da2021-07-15 16:27:29 +02001693int
Neale Ranns2ae2bc52018-03-16 03:22:39 -07001694vnet_sw_interface_update_unnumbered (u32 unnumbered_sw_if_index,
1695 u32 ip_sw_if_index, u8 enable)
1696{
1697 vnet_main_t *vnm = vnet_get_main ();
1698 vnet_sw_interface_t *si;
1699 u32 was_unnum;
Stanislav Zaikin328b5da2021-07-15 16:27:29 +02001700 int rv = 0;
Neale Ranns2ae2bc52018-03-16 03:22:39 -07001701
1702 si = vnet_get_sw_interface (vnm, unnumbered_sw_if_index);
1703 was_unnum = (si->flags & VNET_SW_INTERFACE_FLAG_UNNUMBERED);
1704
1705 if (enable)
1706 {
Stanislav Zaikin328b5da2021-07-15 16:27:29 +02001707 rv = vnet_sw_interface_check_table_same (unnumbered_sw_if_index,
1708 ip_sw_if_index);
1709 if (rv != 0)
1710 return rv;
Neale Ranns2ae2bc52018-03-16 03:22:39 -07001711 si->flags |= VNET_SW_INTERFACE_FLAG_UNNUMBERED;
1712 si->unnumbered_sw_if_index = ip_sw_if_index;
1713
1714 ip4_main.lookup_main.if_address_pool_index_by_sw_if_index
1715 [unnumbered_sw_if_index] =
1716 ip4_main.
1717 lookup_main.if_address_pool_index_by_sw_if_index[ip_sw_if_index];
1718 ip6_main.
1719 lookup_main.if_address_pool_index_by_sw_if_index
1720 [unnumbered_sw_if_index] =
1721 ip6_main.
1722 lookup_main.if_address_pool_index_by_sw_if_index[ip_sw_if_index];
1723 }
1724 else
1725 {
Dave Barach64d20e72021-05-29 09:00:45 -04001726 /*
1727 * Unless the interface is actually unnumbered, don't
1728 * smash e.g. if_address_pool_index_by_sw_if_index
1729 */
1730 if (si->flags & VNET_SW_INTERFACE_FLAG_UNNUMBERED)
1731 {
1732 si->flags &= ~(VNET_SW_INTERFACE_FLAG_UNNUMBERED);
1733 si->unnumbered_sw_if_index = (u32) ~0;
Neale Ranns2ae2bc52018-03-16 03:22:39 -07001734
Dave Barach64d20e72021-05-29 09:00:45 -04001735 ip4_main.lookup_main
1736 .if_address_pool_index_by_sw_if_index[unnumbered_sw_if_index] = ~0;
1737 ip6_main.lookup_main
1738 .if_address_pool_index_by_sw_if_index[unnumbered_sw_if_index] = ~0;
1739 }
Neale Ranns2ae2bc52018-03-16 03:22:39 -07001740 }
1741
1742 if (was_unnum != (si->flags & VNET_SW_INTERFACE_FLAG_UNNUMBERED))
1743 {
1744 ip4_sw_interface_enable_disable (unnumbered_sw_if_index, enable);
1745 ip6_sw_interface_enable_disable (unnumbered_sw_if_index, enable);
1746 }
Stanislav Zaikin328b5da2021-07-15 16:27:29 +02001747
1748 return 0;
Neale Ranns2ae2bc52018-03-16 03:22:39 -07001749}
1750
Neale Rannsb80c5362016-10-08 13:03:40 +01001751vnet_l3_packet_type_t
1752vnet_link_to_l3_proto (vnet_link_t link)
1753{
1754 switch (link)
1755 {
1756 case VNET_LINK_IP4:
1757 return (VNET_L3_PACKET_TYPE_IP4);
1758 case VNET_LINK_IP6:
1759 return (VNET_L3_PACKET_TYPE_IP6);
1760 case VNET_LINK_MPLS:
Neale Ranns0f26c5a2017-03-01 15:12:11 -08001761 return (VNET_L3_PACKET_TYPE_MPLS);
Neale Rannsb80c5362016-10-08 13:03:40 +01001762 case VNET_LINK_ARP:
1763 return (VNET_L3_PACKET_TYPE_ARP);
1764 case VNET_LINK_ETHERNET:
Florin Corasce1b4c72017-01-26 14:25:34 -08001765 case VNET_LINK_NSH:
Neale Rannsb80c5362016-10-08 13:03:40 +01001766 ASSERT (0);
1767 break;
1768 }
1769 ASSERT (0);
1770 return (0);
1771}
1772
Ole Troand7231612018-06-07 10:17:57 +02001773vnet_mtu_t
1774vnet_link_to_mtu (vnet_link_t link)
1775{
1776 switch (link)
1777 {
1778 case VNET_LINK_IP4:
1779 return (VNET_MTU_IP4);
1780 case VNET_LINK_IP6:
1781 return (VNET_MTU_IP6);
1782 case VNET_LINK_MPLS:
1783 return (VNET_MTU_MPLS);
1784 default:
1785 return (VNET_MTU_L3);
1786 }
1787}
1788
Neale Rannsb80c5362016-10-08 13:03:40 +01001789u8 *
1790default_build_rewrite (vnet_main_t * vnm,
1791 u32 sw_if_index,
1792 vnet_link_t link_type, const void *dst_address)
1793{
1794 return (NULL);
1795}
1796
1797void
1798default_update_adjacency (vnet_main_t * vnm, u32 sw_if_index, u32 ai)
1799{
Neale Ranns0117d242017-08-12 12:52:54 -07001800 ip_adjacency_t *adj;
Neale Rannsb80c5362016-10-08 13:03:40 +01001801
Neale Ranns0117d242017-08-12 12:52:54 -07001802 adj = adj_get (ai);
Neale Rannsb80c5362016-10-08 13:03:40 +01001803
Neale Ranns0117d242017-08-12 12:52:54 -07001804 switch (adj->lookup_next_index)
1805 {
Ole Trøan438f6302018-02-15 21:56:06 +00001806 case IP_LOOKUP_NEXT_GLEAN:
Neale Rannsc819fc62018-02-16 02:44:05 -08001807 adj_glean_update_rewrite (ai);
1808 break;
1809 case IP_LOOKUP_NEXT_ARP:
Neale Ranns1855b8e2018-07-11 10:31:26 -07001810 case IP_LOOKUP_NEXT_BCAST:
Neale Ranns0117d242017-08-12 12:52:54 -07001811 /*
Paul Vinciguerrabdc0e6b2018-09-22 05:32:50 -07001812 * default rewrite in neighbour adj
Neale Ranns0117d242017-08-12 12:52:54 -07001813 */
1814 adj_nbr_update_rewrite
1815 (ai,
1816 ADJ_NBR_REWRITE_FLAG_COMPLETE,
1817 vnet_build_rewrite_for_sw_interface (vnm,
1818 sw_if_index,
1819 adj_get_link_type (ai), NULL));
1820 break;
1821 case IP_LOOKUP_NEXT_MCAST:
1822 /*
1823 * mcast traffic also uses default rewrite string with no mcast
1824 * switch time updates.
1825 */
1826 adj_mcast_update_rewrite
1827 (ai,
1828 vnet_build_rewrite_for_sw_interface (vnm,
1829 sw_if_index,
1830 adj_get_link_type (ai),
Neale Ranns889fe942017-06-01 05:43:19 -04001831 NULL), 0);
Neale Ranns0117d242017-08-12 12:52:54 -07001832 break;
1833 case IP_LOOKUP_NEXT_DROP:
1834 case IP_LOOKUP_NEXT_PUNT:
1835 case IP_LOOKUP_NEXT_LOCAL:
1836 case IP_LOOKUP_NEXT_REWRITE:
1837 case IP_LOOKUP_NEXT_MCAST_MIDCHAIN:
1838 case IP_LOOKUP_NEXT_MIDCHAIN:
1839 case IP_LOOKUP_NEXT_ICMP_ERROR:
1840 case IP_LOOKUP_N_NEXT:
1841 ASSERT (0);
1842 break;
1843 }
Neale Rannsb80c5362016-10-08 13:03:40 +01001844}
1845
Chenmin Sunc4665092020-07-06 08:20:39 +08001846clib_error_t *
1847vnet_hw_interface_set_rss_queues (vnet_main_t * vnm,
1848 vnet_hw_interface_t * hi,
1849 clib_bitmap_t * bitmap)
1850{
1851 clib_error_t *error = 0;
1852 vnet_device_class_t *dev_class =
1853 vnet_get_device_class (vnm, hi->dev_class_index);
1854
1855 if (dev_class->set_rss_queues_function)
1856 {
1857 if (clib_bitmap_count_set_bits (bitmap) == 0)
1858 {
1859 error = clib_error_return (0,
1860 "must assign at least one valid rss queue");
1861 goto done;
1862 }
1863
1864 error = dev_class->set_rss_queues_function (vnm, hi, bitmap);
1865 }
1866 else
1867 {
1868 error = clib_error_return (0,
1869 "setting rss queues is not supported on this interface");
1870 }
1871
1872 if (!error)
1873 {
1874 clib_bitmap_free (hi->rss_queues);
1875 hi->rss_queues = clib_bitmap_dup (bitmap);
1876 }
1877
1878done:
Damjan Mariond1bd5d22020-11-23 16:58:05 +01001879 if (error)
1880 log_err ("hw_set_rss_queues: %U", format_clib_error, error);
Chenmin Sunc4665092020-07-06 08:20:39 +08001881 return error;
1882}
1883
Neale Ranns6f4a6be2018-03-16 16:26:21 -07001884int collect_detailed_interface_stats_flag = 0;
1885
1886void
Neale Rannsf704f382018-03-19 12:24:07 -04001887collect_detailed_interface_stats_flag_set (void)
Neale Ranns6f4a6be2018-03-16 16:26:21 -07001888{
1889 collect_detailed_interface_stats_flag = 1;
1890}
1891
1892void
Neale Rannsf704f382018-03-19 12:24:07 -04001893collect_detailed_interface_stats_flag_clear (void)
Neale Ranns6f4a6be2018-03-16 16:26:21 -07001894{
1895 collect_detailed_interface_stats_flag = 0;
1896}
1897
1898static clib_error_t *
1899collect_detailed_interface_stats_cli (vlib_main_t * vm,
1900 unformat_input_t * input,
1901 vlib_cli_command_t * cmd)
1902{
1903 unformat_input_t _line_input, *line_input = &_line_input;
1904 clib_error_t *error = NULL;
1905
1906 /* Get a line of input. */
1907 if (!unformat_user (input, unformat_line_input, line_input))
1908 return clib_error_return (0, "expected enable | disable");
1909
1910 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
1911 {
1912 if (unformat (line_input, "enable") || unformat (line_input, "on"))
1913 collect_detailed_interface_stats_flag_set ();
1914 else if (unformat (line_input, "disable")
1915 || unformat (line_input, "off"))
1916 collect_detailed_interface_stats_flag_clear ();
1917 else
1918 {
1919 error = clib_error_return (0, "unknown input `%U'",
1920 format_unformat_error, line_input);
1921 goto done;
1922 }
1923 }
1924
1925done:
1926 unformat_free (line_input);
1927 return error;
1928}
1929
Neale Ranns6f4a6be2018-03-16 16:26:21 -07001930VLIB_CLI_COMMAND (collect_detailed_interface_stats_command, static) = {
1931 .path = "interface collect detailed-stats",
1932 .short_help = "interface collect detailed-stats <enable|disable>",
1933 .function = collect_detailed_interface_stats_cli,
1934};
Neale Ranns6f4a6be2018-03-16 16:26:21 -07001935
Dave Barachba868bb2016-08-08 09:51:21 -04001936/*
1937 * fd.io coding-style-patch-verification: ON
1938 *
1939 * Local Variables:
1940 * eval: (c-set-style "gnu")
1941 * End:
1942 */