blob: ab12da563a5430f9c79c301661036b082b953244 [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 +010048/* *INDENT-OFF* */
49VLIB_REGISTER_LOG_CLASS (if_default_log, static) = {
50 .class_name = "interface",
51};
52/* *INDENT-ON* */
53
54#define log_debug(fmt,...) vlib_log_debug(if_default_log.class, fmt, __VA_ARGS__)
55#define log_err(fmt,...) vlib_log_err(if_default_log.class, fmt, __VA_ARGS__)
Damjan Marion94100532020-11-06 23:25:57 +010056
Neale Ranns6e43e062018-10-26 05:17:03 -070057typedef enum vnet_interface_helper_flags_t_
58{
59 VNET_INTERFACE_SET_FLAGS_HELPER_IS_CREATE = (1 << 0),
60 VNET_INTERFACE_SET_FLAGS_HELPER_WANT_REDISTRIBUTE = (1 << 1),
61} vnet_interface_helper_flags_t;
Ed Warnickecb9cada2015-12-08 15:45:58 -070062
Dave Barachba868bb2016-08-08 09:51:21 -040063static clib_error_t *vnet_hw_interface_set_flags_helper (vnet_main_t * vnm,
64 u32 hw_if_index,
Neale Ranns6e43e062018-10-26 05:17:03 -070065 vnet_hw_interface_flags_t
66 flags,
67 vnet_interface_helper_flags_t
68 helper_flags);
Ed Warnickecb9cada2015-12-08 15:45:58 -070069
Dave Barachba868bb2016-08-08 09:51:21 -040070static clib_error_t *vnet_sw_interface_set_flags_helper (vnet_main_t * vnm,
71 u32 sw_if_index,
Neale Ranns6e43e062018-10-26 05:17:03 -070072 vnet_sw_interface_flags_t
73 flags,
74 vnet_interface_helper_flags_t
75 helper_flags);
Ed Warnickecb9cada2015-12-08 15:45:58 -070076
Dave Barachba868bb2016-08-08 09:51:21 -040077static clib_error_t *vnet_hw_interface_set_class_helper (vnet_main_t * vnm,
78 u32 hw_if_index,
79 u32 hw_class_index,
80 u32 redistribute);
Ed Warnickecb9cada2015-12-08 15:45:58 -070081
Dave Barachba868bb2016-08-08 09:51:21 -040082typedef struct
83{
Ed Warnickecb9cada2015-12-08 15:45:58 -070084 /* Either sw or hw interface index. */
85 u32 sw_hw_if_index;
86
87 /* Flags. */
88 u32 flags;
89} vnet_sw_hw_interface_state_t;
90
Dave Barachba868bb2016-08-08 09:51:21 -040091static void
92serialize_vec_vnet_sw_hw_interface_state (serialize_main_t * m, va_list * va)
Ed Warnickecb9cada2015-12-08 15:45:58 -070093{
Dave Barachba868bb2016-08-08 09:51:21 -040094 vnet_sw_hw_interface_state_t *s =
95 va_arg (*va, vnet_sw_hw_interface_state_t *);
96 u32 n = va_arg (*va, u32);
97 u32 i;
98 for (i = 0; i < n; i++)
99 {
100 serialize_integer (m, s[i].sw_hw_if_index,
101 sizeof (s[i].sw_hw_if_index));
102 serialize_integer (m, s[i].flags, sizeof (s[i].flags));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700103 }
104}
105
Dave Barachba868bb2016-08-08 09:51:21 -0400106static void
107unserialize_vec_vnet_sw_hw_interface_state (serialize_main_t * m,
108 va_list * va)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700109{
Dave Barachba868bb2016-08-08 09:51:21 -0400110 vnet_sw_hw_interface_state_t *s =
111 va_arg (*va, vnet_sw_hw_interface_state_t *);
112 u32 n = va_arg (*va, u32);
113 u32 i;
114 for (i = 0; i < n; i++)
115 {
116 unserialize_integer (m, &s[i].sw_hw_if_index,
117 sizeof (s[i].sw_hw_if_index));
118 unserialize_integer (m, &s[i].flags, sizeof (s[i].flags));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700119 }
120}
121
Neale Rannsb3a93812018-10-29 01:55:24 -0700122static vnet_sw_interface_flags_t
123vnet_hw_interface_flags_to_sw (vnet_hw_interface_flags_t hwf)
124{
125 vnet_sw_interface_flags_t swf = VNET_SW_INTERFACE_FLAG_NONE;
126
127 if (hwf & VNET_HW_INTERFACE_FLAG_LINK_UP)
128 swf |= VNET_SW_INTERFACE_FLAG_ADMIN_UP;
129
130 return (swf);
131}
132
Dave Barachba868bb2016-08-08 09:51:21 -0400133void
134serialize_vnet_interface_state (serialize_main_t * m, va_list * va)
135{
136 vnet_main_t *vnm = va_arg (*va, vnet_main_t *);
137 vnet_sw_hw_interface_state_t *sts = 0, *st;
138 vnet_sw_interface_t *sif;
139 vnet_hw_interface_t *hif;
140 vnet_interface_main_t *im = &vnm->interface_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700141
142 /* Serialize hardware interface classes since they may have changed.
143 Must do this before sending up/down flags. */
Dave Barachba868bb2016-08-08 09:51:21 -0400144 /* *INDENT-OFF* */
Damjan Marionb2c31b62020-12-13 21:47:40 +0100145 pool_foreach (hif, im->hw_interfaces) {
Ed Warnickecb9cada2015-12-08 15:45:58 -0700146 vnet_hw_interface_class_t * hw_class = vnet_get_hw_interface_class (vnm, hif->hw_class_index);
147 serialize_cstring (m, hw_class->name);
Damjan Marionb2c31b62020-12-13 21:47:40 +0100148 }
Dave Barachba868bb2016-08-08 09:51:21 -0400149 /* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700150
151 /* Send sw/hw interface state when non-zero. */
Dave Barachba868bb2016-08-08 09:51:21 -0400152 /* *INDENT-OFF* */
Damjan Marionb2c31b62020-12-13 21:47:40 +0100153 pool_foreach (sif, im->sw_interfaces) {
Ed Warnickecb9cada2015-12-08 15:45:58 -0700154 if (sif->flags != 0)
155 {
156 vec_add2 (sts, st, 1);
157 st->sw_hw_if_index = sif->sw_if_index;
158 st->flags = sif->flags;
159 }
Damjan Marionb2c31b62020-12-13 21:47:40 +0100160 }
Dave Barachba868bb2016-08-08 09:51:21 -0400161 /* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700162
163 vec_serialize (m, sts, serialize_vec_vnet_sw_hw_interface_state);
164
165 if (sts)
166 _vec_len (sts) = 0;
167
Dave Barachba868bb2016-08-08 09:51:21 -0400168 /* *INDENT-OFF* */
Damjan Marionb2c31b62020-12-13 21:47:40 +0100169 pool_foreach (hif, im->hw_interfaces) {
Ed Warnickecb9cada2015-12-08 15:45:58 -0700170 if (hif->flags != 0)
171 {
172 vec_add2 (sts, st, 1);
173 st->sw_hw_if_index = hif->hw_if_index;
Neale Rannsb3a93812018-10-29 01:55:24 -0700174 st->flags = vnet_hw_interface_flags_to_sw(hif->flags);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700175 }
Damjan Marionb2c31b62020-12-13 21:47:40 +0100176 }
Dave Barachba868bb2016-08-08 09:51:21 -0400177 /* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700178
179 vec_serialize (m, sts, serialize_vec_vnet_sw_hw_interface_state);
180
181 vec_free (sts);
182}
183
Neale Rannsb3a93812018-10-29 01:55:24 -0700184static vnet_hw_interface_flags_t
185vnet_sw_interface_flags_to_hw (vnet_sw_interface_flags_t swf)
186{
187 vnet_hw_interface_flags_t hwf = VNET_HW_INTERFACE_FLAG_NONE;
188
189 if (swf & VNET_SW_INTERFACE_FLAG_ADMIN_UP)
190 hwf |= VNET_HW_INTERFACE_FLAG_LINK_UP;
191
192 return (hwf);
193}
194
Dave Barachba868bb2016-08-08 09:51:21 -0400195void
196unserialize_vnet_interface_state (serialize_main_t * m, va_list * va)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700197{
Dave Barachba868bb2016-08-08 09:51:21 -0400198 vnet_main_t *vnm = va_arg (*va, vnet_main_t *);
199 vnet_sw_hw_interface_state_t *sts = 0, *st;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700200
201 /* First set interface hardware class. */
202 {
Dave Barachba868bb2016-08-08 09:51:21 -0400203 vnet_interface_main_t *im = &vnm->interface_main;
204 vnet_hw_interface_t *hif;
205 char *class_name;
206 uword *p;
207 clib_error_t *error;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700208
Dave Barachba868bb2016-08-08 09:51:21 -0400209 /* *INDENT-OFF* */
Damjan Marionb2c31b62020-12-13 21:47:40 +0100210 pool_foreach (hif, im->hw_interfaces) {
Ed Warnickecb9cada2015-12-08 15:45:58 -0700211 unserialize_cstring (m, &class_name);
212 p = hash_get_mem (im->hw_interface_class_by_name, class_name);
Dave Baracha6ef36b2020-02-11 10:29:13 -0500213 if (p)
214 {
215 error = vnet_hw_interface_set_class_helper
216 (vnm, hif->hw_if_index, p[0], /* redistribute */ 0);
217 }
218 else
219 error = clib_error_return (0, "hw class %s AWOL?", class_name);
220
Ed Warnickecb9cada2015-12-08 15:45:58 -0700221 if (error)
222 clib_error_report (error);
223 vec_free (class_name);
Damjan Marionb2c31b62020-12-13 21:47:40 +0100224 }
Dave Barachba868bb2016-08-08 09:51:21 -0400225 /* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700226 }
227
228 vec_unserialize (m, &sts, unserialize_vec_vnet_sw_hw_interface_state);
229 vec_foreach (st, sts)
230 vnet_sw_interface_set_flags_helper (vnm, st->sw_hw_if_index, st->flags,
231 /* no distribute */ 0);
232 vec_free (sts);
233
234 vec_unserialize (m, &sts, unserialize_vec_vnet_sw_hw_interface_state);
235 vec_foreach (st, sts)
Neale Rannsb3a93812018-10-29 01:55:24 -0700236 {
237 vnet_hw_interface_set_flags_helper
238 (vnm, st->sw_hw_if_index, vnet_sw_interface_flags_to_hw (st->flags),
239 /* no distribute */ 0);
240 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700241 vec_free (sts);
242}
243
244static clib_error_t *
Dave Barachba868bb2016-08-08 09:51:21 -0400245call_elf_section_interface_callbacks (vnet_main_t * vnm, u32 if_index,
246 u32 flags,
Neale Ranns8b37b872016-11-21 12:25:22 +0000247 _vnet_interface_function_list_elt_t **
248 elts)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700249{
Neale Ranns8b37b872016-11-21 12:25:22 +0000250 _vnet_interface_function_list_elt_t *elt;
251 vnet_interface_function_priority_t prio;
Dave Barachba868bb2016-08-08 09:51:21 -0400252 clib_error_t *error = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700253
Neale Ranns8b37b872016-11-21 12:25:22 +0000254 for (prio = VNET_ITF_FUNC_PRIORITY_LOW;
255 prio <= VNET_ITF_FUNC_PRIORITY_HIGH; prio++)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700256 {
Neale Ranns8b37b872016-11-21 12:25:22 +0000257 elt = elts[prio];
258
259 while (elt)
260 {
261 error = elt->fp (vnm, if_index, flags);
262 if (error)
263 return error;
264 elt = elt->next_interface_function;
265 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700266 }
267 return error;
268}
269
270static clib_error_t *
Dave Barachba868bb2016-08-08 09:51:21 -0400271call_hw_interface_add_del_callbacks (vnet_main_t * vnm, u32 hw_if_index,
272 u32 is_create)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700273{
Dave Barachba868bb2016-08-08 09:51:21 -0400274 vnet_hw_interface_t *hi = vnet_get_hw_interface (vnm, hw_if_index);
275 vnet_hw_interface_class_t *hw_class =
276 vnet_get_hw_interface_class (vnm, hi->hw_class_index);
277 vnet_device_class_t *dev_class =
278 vnet_get_device_class (vnm, hi->dev_class_index);
279 clib_error_t *error = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700280
281 if (hw_class->interface_add_del_function
Dave Barachba868bb2016-08-08 09:51:21 -0400282 && (error =
283 hw_class->interface_add_del_function (vnm, hw_if_index, is_create)))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700284 return error;
285
286 if (dev_class->interface_add_del_function
Dave Barachba868bb2016-08-08 09:51:21 -0400287 && (error =
288 dev_class->interface_add_del_function (vnm, hw_if_index,
289 is_create)))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700290 return error;
291
Dave Barachba868bb2016-08-08 09:51:21 -0400292 error = call_elf_section_interface_callbacks
Ed Warnickecb9cada2015-12-08 15:45:58 -0700293 (vnm, hw_if_index, is_create, vnm->hw_interface_add_del_functions);
294
295 return error;
296}
297
298static clib_error_t *
Dave Barachba868bb2016-08-08 09:51:21 -0400299call_sw_interface_add_del_callbacks (vnet_main_t * vnm, u32 sw_if_index,
300 u32 is_create)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700301{
Dave Barachba868bb2016-08-08 09:51:21 -0400302 return call_elf_section_interface_callbacks
Ed Warnickecb9cada2015-12-08 15:45:58 -0700303 (vnm, sw_if_index, is_create, vnm->sw_interface_add_del_functions);
304}
305
Ed Warnickecb9cada2015-12-08 15:45:58 -0700306static clib_error_t *
Dave Barachba868bb2016-08-08 09:51:21 -0400307vnet_hw_interface_set_flags_helper (vnet_main_t * vnm, u32 hw_if_index,
Neale Ranns6e43e062018-10-26 05:17:03 -0700308 vnet_hw_interface_flags_t flags,
309 vnet_interface_helper_flags_t
310 helper_flags)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700311{
Dave Barachba868bb2016-08-08 09:51:21 -0400312 vnet_hw_interface_t *hi = vnet_get_hw_interface (vnm, hw_if_index);
313 vnet_hw_interface_class_t *hw_class =
314 vnet_get_hw_interface_class (vnm, hi->hw_class_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700315 u32 mask;
Dave Barachba868bb2016-08-08 09:51:21 -0400316 clib_error_t *error = 0;
317 u32 is_create =
318 (helper_flags & VNET_INTERFACE_SET_FLAGS_HELPER_IS_CREATE) != 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700319
Dave Barachba868bb2016-08-08 09:51:21 -0400320 mask =
Damjan Marion5100aa92018-11-08 15:30:16 +0100321 (VNET_HW_INTERFACE_FLAG_LINK_UP | VNET_HW_INTERFACE_FLAG_DUPLEX_MASK);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700322 flags &= mask;
323
324 /* Call hardware interface add/del callbacks. */
325 if (is_create)
326 call_hw_interface_add_del_callbacks (vnm, hw_if_index, is_create);
327
328 /* Already in the desired state? */
Dave Barachba868bb2016-08-08 09:51:21 -0400329 if (!is_create && (hi->flags & mask) == flags)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700330 goto done;
331
Ed Warnickecb9cada2015-12-08 15:45:58 -0700332 if ((hi->flags & VNET_HW_INTERFACE_FLAG_LINK_UP) !=
333 (flags & VNET_HW_INTERFACE_FLAG_LINK_UP))
334 {
335 /* Do hardware class (e.g. ethernet). */
336 if (hw_class->link_up_down_function
337 && (error = hw_class->link_up_down_function (vnm, hw_if_index,
338 flags)))
339 goto done;
340
Dave Barachba868bb2016-08-08 09:51:21 -0400341 error = call_elf_section_interface_callbacks
Klement Sekera2cee01d2016-09-08 17:53:13 +0200342 (vnm, hw_if_index, flags, vnm->hw_interface_link_up_down_functions);
Dave Barachba868bb2016-08-08 09:51:21 -0400343
Ed Warnickecb9cada2015-12-08 15:45:58 -0700344 if (error)
345 goto done;
346 }
347
348 hi->flags &= ~mask;
349 hi->flags |= flags;
350
Dave Barachba868bb2016-08-08 09:51:21 -0400351done:
Damjan Mariond1bd5d22020-11-23 16:58:05 +0100352 if (error)
353 log_err ("hw_set_flags_helper: %U", format_clib_error, error);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700354 return error;
355}
356
357static clib_error_t *
Dave Barachba868bb2016-08-08 09:51:21 -0400358vnet_sw_interface_set_flags_helper (vnet_main_t * vnm, u32 sw_if_index,
Neale Ranns6e43e062018-10-26 05:17:03 -0700359 vnet_sw_interface_flags_t flags,
360 vnet_interface_helper_flags_t
361 helper_flags)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700362{
Dave Barachba868bb2016-08-08 09:51:21 -0400363 vnet_sw_interface_t *si = vnet_get_sw_interface (vnm, sw_if_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700364 u32 mask;
Dave Barachba868bb2016-08-08 09:51:21 -0400365 clib_error_t *error = 0;
366 u32 is_create =
367 (helper_flags & VNET_INTERFACE_SET_FLAGS_HELPER_IS_CREATE) != 0;
Georgi Savov3a035982016-02-25 12:56:03 -0500368 u32 old_flags;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700369
370 mask = VNET_SW_INTERFACE_FLAG_ADMIN_UP | VNET_SW_INTERFACE_FLAG_PUNT;
371 flags &= mask;
372
373 if (is_create)
374 {
Dave Barachba868bb2016-08-08 09:51:21 -0400375 error =
376 call_sw_interface_add_del_callbacks (vnm, sw_if_index, is_create);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700377 if (error)
378 goto done;
379
380 if (flags & VNET_SW_INTERFACE_FLAG_ADMIN_UP)
Dave Barachba868bb2016-08-08 09:51:21 -0400381 {
382 /* Notify everyone when the interface is created as admin up */
383 error = call_elf_section_interface_callbacks (vnm, sw_if_index,
384 flags,
385 vnm->
386 sw_interface_admin_up_down_functions);
387 if (error)
388 goto done;
389 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700390 }
391 else
392 {
Dave Barachba868bb2016-08-08 09:51:21 -0400393 vnet_sw_interface_t *si_sup = si;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700394
395 /* Check that super interface is in correct state. */
396 if (si->type == VNET_SW_INTERFACE_TYPE_SUB)
397 {
398 si_sup = vnet_get_sw_interface (vnm, si->sup_sw_if_index);
399
Calvin31a36742016-07-04 14:14:46 -0400400 /* 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 -0400401 if ((flags != (si_sup->flags & mask)) &&
402 (!((flags == 0)
403 && ((si_sup->flags & mask) ==
404 VNET_SW_INTERFACE_FLAG_ADMIN_UP))))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700405 {
406 error = clib_error_return (0, "super-interface %U must be %U",
Dave Barachba868bb2016-08-08 09:51:21 -0400407 format_vnet_sw_interface_name, vnm,
408 si_sup,
409 format_vnet_sw_interface_flags,
410 flags);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700411 goto done;
412 }
413 }
414
415 /* Already in the desired state? */
416 if ((si->flags & mask) == flags)
417 goto done;
418
419 /* Sub-interfaces of hardware interfaces that do no redistribute,
Dave Barachba868bb2016-08-08 09:51:21 -0400420 do not redistribute themselves. */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700421 if (si_sup->type == VNET_SW_INTERFACE_TYPE_HARDWARE)
422 {
Dave Barachba868bb2016-08-08 09:51:21 -0400423 vnet_hw_interface_t *hi =
424 vnet_get_hw_interface (vnm, si_sup->hw_if_index);
425 vnet_device_class_t *dev_class =
426 vnet_get_device_class (vnm, hi->dev_class_index);
427 if (!dev_class->redistribute)
428 helper_flags &=
429 ~VNET_INTERFACE_SET_FLAGS_HELPER_WANT_REDISTRIBUTE;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700430 }
431
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100432 /* set the flags now before invoking the registered clients
433 * so that the state they query is consistent with the state here notified */
434 old_flags = si->flags;
435 si->flags &= ~mask;
436 si->flags |= flags;
437 if ((flags | old_flags) & VNET_SW_INTERFACE_FLAG_ADMIN_UP)
438 error = call_elf_section_interface_callbacks
439 (vnm, sw_if_index, flags,
440 vnm->sw_interface_admin_up_down_functions);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700441
442 if (error)
Mohsin Kazmia50a14c2018-04-25 15:58:05 +0200443 {
444 /* restore flags on error */
445 si->flags = old_flags;
446 goto done;
447 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700448
449 if (si->type == VNET_SW_INTERFACE_TYPE_HARDWARE)
450 {
Dave Barachba868bb2016-08-08 09:51:21 -0400451 vnet_hw_interface_t *hi =
452 vnet_get_hw_interface (vnm, si->hw_if_index);
453 vnet_hw_interface_class_t *hw_class =
454 vnet_get_hw_interface_class (vnm, hi->hw_class_index);
455 vnet_device_class_t *dev_class =
456 vnet_get_device_class (vnm, hi->dev_class_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700457
Damjan Marionabce5092017-05-10 20:09:31 +0200458 if ((flags & VNET_SW_INTERFACE_FLAG_ADMIN_UP) &&
459 (si->flags & VNET_SW_INTERFACE_FLAG_ERROR))
460 {
461 error = clib_error_return (0, "Interface in the error state");
462 goto done;
463 }
464
Dave Barachba868bb2016-08-08 09:51:21 -0400465 /* update si admin up flag in advance if we are going admin down */
466 if (!(flags & VNET_SW_INTERFACE_FLAG_ADMIN_UP))
467 si->flags &= ~VNET_SW_INTERFACE_FLAG_ADMIN_UP;
Georgi Savov3a035982016-02-25 12:56:03 -0500468
Dave Barachba868bb2016-08-08 09:51:21 -0400469 if (dev_class->admin_up_down_function
470 && (error = dev_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 }
Georgi Savov3a035982016-02-25 12:56:03 -0500478
Dave Barachba868bb2016-08-08 09:51:21 -0400479 if (hw_class->admin_up_down_function
480 && (error = hw_class->admin_up_down_function (vnm,
481 si->hw_if_index,
482 flags)))
483 {
484 /* restore si admin up flag to it's original state on errors */
485 si->flags = old_flags;
486 goto done;
487 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700488
489 /* Admin down implies link down. */
Dave Barachba868bb2016-08-08 09:51:21 -0400490 if (!(flags & VNET_SW_INTERFACE_FLAG_ADMIN_UP)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700491 && (hi->flags & VNET_HW_INTERFACE_FLAG_LINK_UP))
492 vnet_hw_interface_set_flags_helper (vnm, si->hw_if_index,
Dave Barachba868bb2016-08-08 09:51:21 -0400493 hi->flags &
494 ~VNET_HW_INTERFACE_FLAG_LINK_UP,
Ed Warnickecb9cada2015-12-08 15:45:58 -0700495 helper_flags);
Damjan Marion94100532020-11-06 23:25:57 +0100496 vnet_hw_if_update_runtime_data (vnm, si->hw_if_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700497 }
498 }
499
500 si->flags &= ~mask;
501 si->flags |= flags;
502
Dave Barachba868bb2016-08-08 09:51:21 -0400503done:
Damjan Mariond1bd5d22020-11-23 16:58:05 +0100504 if (error)
505 log_err ("sw_set_flags_helper: %U", format_clib_error, error);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700506 return error;
507}
508
509clib_error_t *
Neale Ranns6e43e062018-10-26 05:17:03 -0700510vnet_hw_interface_set_flags (vnet_main_t * vnm, u32 hw_if_index,
511 vnet_hw_interface_flags_t flags)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700512{
Damjan Mariond1bd5d22020-11-23 16:58:05 +0100513 log_debug ("hw_set_flags: hw_if_index %u flags 0x%x", hw_if_index, flags);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700514 return vnet_hw_interface_set_flags_helper
515 (vnm, hw_if_index, flags,
516 VNET_INTERFACE_SET_FLAGS_HELPER_WANT_REDISTRIBUTE);
517}
518
519clib_error_t *
Neale Ranns6e43e062018-10-26 05:17:03 -0700520vnet_sw_interface_set_flags (vnet_main_t * vnm, u32 sw_if_index,
521 vnet_sw_interface_flags_t flags)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700522{
Damjan Mariond1bd5d22020-11-23 16:58:05 +0100523 log_debug ("sw_set_flags: sw_if_index %u flags 0x%x", sw_if_index, flags);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700524 return vnet_sw_interface_set_flags_helper
525 (vnm, sw_if_index, flags,
526 VNET_INTERFACE_SET_FLAGS_HELPER_WANT_REDISTRIBUTE);
527}
528
Neale Rannsc87b66c2019-02-07 07:26:12 -0800529void
530vnet_sw_interface_admin_up (vnet_main_t * vnm, u32 sw_if_index)
531{
532 u32 flags = vnet_sw_interface_get_flags (vnm, sw_if_index);
Damjan Mariond1bd5d22020-11-23 16:58:05 +0100533 log_debug ("sw_admin_up: sw_if_index %u", sw_if_index);
Neale Rannsc87b66c2019-02-07 07:26:12 -0800534
535 if (!(flags & VNET_SW_INTERFACE_FLAG_ADMIN_UP))
536 {
537 flags |= VNET_SW_INTERFACE_FLAG_ADMIN_UP;
538 vnet_sw_interface_set_flags (vnm, sw_if_index, flags);
539 }
540}
541
542void
543vnet_sw_interface_admin_down (vnet_main_t * vnm, u32 sw_if_index)
544{
545 u32 flags = vnet_sw_interface_get_flags (vnm, sw_if_index);
Damjan Mariond1bd5d22020-11-23 16:58:05 +0100546 log_debug ("sw_admin_down: sw_if_index %u", sw_if_index);
Neale Rannsc87b66c2019-02-07 07:26:12 -0800547
548 if (flags & VNET_SW_INTERFACE_FLAG_ADMIN_UP)
549 {
550 flags &= ~(VNET_SW_INTERFACE_FLAG_ADMIN_UP);
551 vnet_sw_interface_set_flags (vnm, sw_if_index, flags);
552 }
553}
554
Damjan Marion8932e452021-04-16 11:49:26 +0200555static void
556vnet_if_update_lookup_tables (vnet_main_t *vnm, u32 sw_if_index)
557{
558 vnet_interface_main_t *im = &vnm->interface_main;
559 vnet_hw_interface_t *hi = vnet_get_sup_hw_interface (vnm, sw_if_index);
560
561 vec_validate_init_empty (im->hw_if_index_by_sw_if_index, sw_if_index, ~0);
562 vec_validate_init_empty (im->if_out_arc_end_next_index_by_sw_if_index,
563 sw_if_index, ~0);
564
565 im->hw_if_index_by_sw_if_index[sw_if_index] = hi->hw_if_index;
566 im->if_out_arc_end_next_index_by_sw_if_index[sw_if_index] =
567 hi->if_out_arc_end_node_next_index;
568}
569
Ed Warnickecb9cada2015-12-08 15:45:58 -0700570static u32
Dave Barachba868bb2016-08-08 09:51:21 -0400571vnet_create_sw_interface_no_callbacks (vnet_main_t * vnm,
572 vnet_sw_interface_t * template)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700573{
Dave Barachba868bb2016-08-08 09:51:21 -0400574 vnet_interface_main_t *im = &vnm->interface_main;
575 vnet_sw_interface_t *sw;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700576 u32 sw_if_index;
577
578 pool_get (im->sw_interfaces, sw);
579 sw_if_index = sw - im->sw_interfaces;
580
581 sw[0] = template[0];
582
583 sw->flags = 0;
584 sw->sw_if_index = sw_if_index;
585 if (sw->type == VNET_SW_INTERFACE_TYPE_HARDWARE)
586 sw->sup_sw_if_index = sw->sw_if_index;
587
588 /* Allocate counters for this interface. */
589 {
590 u32 i;
591
Dave Barachba868bb2016-08-08 09:51:21 -0400592 vnet_interface_counter_lock (im);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700593
594 for (i = 0; i < vec_len (im->sw_if_counters); i++)
595 {
596 vlib_validate_simple_counter (&im->sw_if_counters[i], sw_if_index);
597 vlib_zero_simple_counter (&im->sw_if_counters[i], sw_if_index);
598 }
599
600 for (i = 0; i < vec_len (im->combined_sw_if_counters); i++)
601 {
Dave Barachba868bb2016-08-08 09:51:21 -0400602 vlib_validate_combined_counter (&im->combined_sw_if_counters[i],
603 sw_if_index);
604 vlib_zero_combined_counter (&im->combined_sw_if_counters[i],
605 sw_if_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700606 }
607
Dave Barachba868bb2016-08-08 09:51:21 -0400608 vnet_interface_counter_unlock (im);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700609 }
610
Damjan Marion8932e452021-04-16 11:49:26 +0200611 vnet_if_update_lookup_tables (vnm, sw_if_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700612 return sw_if_index;
613}
614
615clib_error_t *
Dave Barachba868bb2016-08-08 09:51:21 -0400616vnet_create_sw_interface (vnet_main_t * vnm, vnet_sw_interface_t * template,
617 u32 * sw_if_index)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700618{
Damjan Mariond1bd5d22020-11-23 16:58:05 +0100619 vnet_interface_main_t *im = &vnm->interface_main;
Dave Barachba868bb2016-08-08 09:51:21 -0400620 clib_error_t *error;
621 vnet_hw_interface_t *hi;
622 vnet_device_class_t *dev_class;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700623
Jon Loeligerb22e1f02019-12-19 09:03:52 -0600624 if (template->sub.eth.flags.two_tags == 1
625 && template->sub.eth.flags.exact_match == 1
626 && (template->sub.eth.flags.inner_vlan_id_any == 1
627 || template->sub.eth.flags.outer_vlan_id_any == 1))
628 {
Damjan Mariond1bd5d22020-11-23 16:58:05 +0100629 char *str = "inner-dot1q any exact-match is unsupported";
630 error = clib_error_return (0, str);
631 log_err ("create_sw_interface: %s", str);
Jon Loeligerb22e1f02019-12-19 09:03:52 -0600632 return error;
633 }
634
Ed Warnickecb9cada2015-12-08 15:45:58 -0700635 hi = vnet_get_sup_hw_interface (vnm, template->sup_sw_if_index);
636 dev_class = vnet_get_device_class (vnm, hi->dev_class_index);
637
638 if (template->type == VNET_SW_INTERFACE_TYPE_SUB &&
Dave Barachba868bb2016-08-08 09:51:21 -0400639 dev_class->subif_add_del_function)
640 {
641 error = dev_class->subif_add_del_function (vnm, hi->hw_if_index,
642 (struct vnet_sw_interface_t
643 *) template, 1);
644 if (error)
645 return error;
646 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700647
648 *sw_if_index = vnet_create_sw_interface_no_callbacks (vnm, template);
649 error = vnet_sw_interface_set_flags_helper
650 (vnm, *sw_if_index, template->flags,
651 VNET_INTERFACE_SET_FLAGS_HELPER_IS_CREATE);
652
Dave Barachba868bb2016-08-08 09:51:21 -0400653 if (error)
654 {
655 /* undo the work done by vnet_create_sw_interface_no_callbacks() */
Damjan Mariond1bd5d22020-11-23 16:58:05 +0100656 log_err ("create_sw_interface: set flags failed\n %U",
657 format_clib_error, error);
Dave Barachba868bb2016-08-08 09:51:21 -0400658 vnet_sw_interface_t *sw =
659 pool_elt_at_index (im->sw_interfaces, *sw_if_index);
660 pool_put (im->sw_interfaces, sw);
661 }
Damjan Mariond1bd5d22020-11-23 16:58:05 +0100662 else
663 {
664 vnet_sw_interface_t *sw =
665 pool_elt_at_index (im->sw_interfaces, *sw_if_index);
666 log_debug ("create_sw_interface: interface %U (sw_if_index %u) created",
667 format_vnet_sw_interface_name, vnm, sw, *sw_if_index);
668 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700669
670 return error;
671}
672
Dave Barachba868bb2016-08-08 09:51:21 -0400673void
674vnet_delete_sw_interface (vnet_main_t * vnm, u32 sw_if_index)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700675{
Dave Barachba868bb2016-08-08 09:51:21 -0400676 vnet_interface_main_t *im = &vnm->interface_main;
677 vnet_sw_interface_t *sw =
678 pool_elt_at_index (im->sw_interfaces, sw_if_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700679
Damjan Mariond1bd5d22020-11-23 16:58:05 +0100680 log_debug ("delete_sw_interface: sw_if_index %u, name '%U'",
681 sw_if_index, format_vnet_sw_if_index_name, vnm, sw_if_index);
682
Wojciech Decd63370c2017-01-03 10:27:03 +0100683 /* Check if the interface has config and is removed from L2 BD or XConnect */
Neale Rannse8d7ff52018-05-31 21:23:37 -0700684 vnet_clear_sw_interface_tag (vnm, sw_if_index);
Pavel Kotucek7c8eda12016-10-17 15:31:59 +0200685
Ed Warnickecb9cada2015-12-08 15:45:58 -0700686 /* Bring down interface in case it is up. */
687 if (sw->flags != 0)
688 vnet_sw_interface_set_flags (vnm, sw_if_index, /* flags */ 0);
689
690 call_sw_interface_add_del_callbacks (vnm, sw_if_index, /* is_create */ 0);
691
692 pool_put (im->sw_interfaces, sw);
693}
694
Ole Troand7231612018-06-07 10:17:57 +0200695static clib_error_t *
696call_sw_interface_mtu_change_callbacks (vnet_main_t * vnm, u32 sw_if_index)
697{
698 return call_elf_section_interface_callbacks
699 (vnm, sw_if_index, 0, vnm->sw_interface_mtu_change_functions);
700}
701
702void
703vnet_sw_interface_set_mtu (vnet_main_t * vnm, u32 sw_if_index, u32 mtu)
704{
705 vnet_sw_interface_t *si = vnet_get_sw_interface (vnm, sw_if_index);
706
707 if (si->mtu[VNET_MTU_L3] != mtu)
708 {
709 si->mtu[VNET_MTU_L3] = mtu;
Damjan Mariond1bd5d22020-11-23 16:58:05 +0100710 log_debug ("set_mtu: interface %U, new mtu %u",
711 format_vnet_sw_if_index_name, vnm, sw_if_index, mtu);
712
Ole Troand7231612018-06-07 10:17:57 +0200713 call_sw_interface_mtu_change_callbacks (vnm, sw_if_index);
714 }
715}
716
717void
718vnet_sw_interface_set_protocol_mtu (vnet_main_t * vnm, u32 sw_if_index,
719 u32 mtu[])
720{
721 vnet_sw_interface_t *si = vnet_get_sw_interface (vnm, sw_if_index);
722 bool changed = false;
723 int i;
724
725 for (i = 0; i < VNET_N_MTU; i++)
726 {
727 if (si->mtu[i] != mtu[i])
728 {
729 si->mtu[i] = mtu[i];
730 changed = true;
731 }
732 }
733 /* Notify interested parties */
734 if (changed)
Damjan Mariond1bd5d22020-11-23 16:58:05 +0100735 {
736 log_debug ("set_protocol_mtu: interface %U l3 %u ip4 %u ip6 %u mpls %u",
737 format_vnet_sw_if_index_name, vnm, sw_if_index,
738 mtu[VNET_MTU_L3], mtu[VNET_MTU_IP4], mtu[VNET_MTU_IP6],
739 mtu[VNET_MTU_MPLS]);
740 call_sw_interface_mtu_change_callbacks (vnm, sw_if_index);
741 }
Ole Troand7231612018-06-07 10:17:57 +0200742}
743
Neale Ranns1855b8e2018-07-11 10:31:26 -0700744void
745vnet_sw_interface_ip_directed_broadcast (vnet_main_t * vnm,
746 u32 sw_if_index, u8 enable)
747{
748 vnet_sw_interface_t *si;
749
750 si = vnet_get_sw_interface (vnm, sw_if_index);
751
752 if (enable)
753 si->flags |= VNET_SW_INTERFACE_FLAG_DIRECTED_BCAST;
754 else
755 si->flags &= ~VNET_SW_INTERFACE_FLAG_DIRECTED_BCAST;
756
757 ip4_directed_broadcast (sw_if_index, enable);
758}
759
Ole Troand7231612018-06-07 10:17:57 +0200760/*
761 * Reflect a change in hardware MTU on protocol MTUs
762 */
763static walk_rc_t
764sw_interface_walk_callback (vnet_main_t * vnm, u32 sw_if_index, void *ctx)
765{
766 u32 *link_mtu = ctx;
767 vnet_sw_interface_set_mtu (vnm, sw_if_index, *link_mtu);
768 return WALK_CONTINUE;
769}
770
771void
772vnet_hw_interface_set_mtu (vnet_main_t * vnm, u32 hw_if_index, u32 mtu)
773{
774 vnet_hw_interface_t *hi = vnet_get_hw_interface (vnm, hw_if_index);
775
776 if (hi->max_packet_bytes != mtu)
777 {
778 hi->max_packet_bytes = mtu;
779 ethernet_set_flags (vnm, hw_if_index, ETHERNET_INTERFACE_FLAG_MTU);
780 vnet_hw_interface_walk_sw (vnm, hw_if_index, sw_interface_walk_callback,
781 &mtu);
782 }
783}
784
Dave Barachba868bb2016-08-08 09:51:21 -0400785static void
786setup_tx_node (vlib_main_t * vm,
787 u32 node_index, vnet_device_class_t * dev_class)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700788{
Dave Barachba868bb2016-08-08 09:51:21 -0400789 vlib_node_t *n = vlib_get_node (vm, node_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700790
Ed Warnickecb9cada2015-12-08 15:45:58 -0700791 n->format_trace = dev_class->format_tx_trace;
Neale Ranns5e575b12016-10-03 09:40:25 +0100792
Ole Troanf09d6552021-03-10 12:52:53 +0100793 vlib_register_errors (vm, node_index, dev_class->tx_function_n_errors,
794 dev_class->tx_function_error_strings,
795 dev_class->tx_function_error_counters);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700796}
797
Dave Barachba868bb2016-08-08 09:51:21 -0400798static void
799setup_output_node (vlib_main_t * vm,
800 u32 node_index, vnet_hw_interface_class_t * hw_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 n->format_buffer = hw_class->format_header;
804 n->unformat_buffer = hw_class->unformat_header;
805}
806
807/* Register an interface instance. */
808u32
809vnet_register_interface (vnet_main_t * vnm,
810 u32 dev_class_index,
811 u32 dev_instance,
Dave Barachba868bb2016-08-08 09:51:21 -0400812 u32 hw_class_index, u32 hw_instance)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700813{
Dave Barachba868bb2016-08-08 09:51:21 -0400814 vnet_interface_main_t *im = &vnm->interface_main;
815 vnet_hw_interface_t *hw;
816 vnet_device_class_t *dev_class =
817 vnet_get_device_class (vnm, dev_class_index);
818 vnet_hw_interface_class_t *hw_class =
819 vnet_get_hw_interface_class (vnm, hw_class_index);
820 vlib_main_t *vm = vnm->vlib_main;
Damjan Marion152e21d2016-11-29 14:55:43 +0100821 vnet_feature_config_main_t *fcm;
822 vnet_config_main_t *cm;
823 u32 hw_index, i;
Neale Rannscbe8d652018-04-27 04:42:47 -0700824 char *tx_node_name = NULL, *output_node_name = NULL;
Damjan Marionf91098e2021-03-09 16:28:15 +0100825 vlib_node_t *if_out_node =
826 vlib_get_node (vm, vnet_interface_output_node.index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700827
828 pool_get (im->hw_interfaces, hw);
Dave Barachb7b92992018-10-17 10:38:51 -0400829 clib_memset (hw, 0, sizeof (*hw));
Dave Barachf5667c32019-09-25 11:27:46 -0400830 hw->trace_classify_table_index = ~0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700831
832 hw_index = hw - im->hw_interfaces;
833 hw->hw_if_index = hw_index;
Damjan Marioneabd4242020-10-07 20:59:07 +0200834 hw->default_rx_mode = VNET_HW_IF_RX_MODE_POLLING;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700835
836 if (dev_class->format_device_name)
Dave Barachba868bb2016-08-08 09:51:21 -0400837 hw->name = format (0, "%U", dev_class->format_device_name, dev_instance);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700838 else if (hw_class->format_interface_name)
839 hw->name = format (0, "%U", hw_class->format_interface_name,
840 dev_instance);
841 else
842 hw->name = format (0, "%s%x", hw_class->name, dev_instance);
843
Dave Barachba868bb2016-08-08 09:51:21 -0400844 if (!im->hw_interface_by_name)
845 im->hw_interface_by_name = hash_create_vec ( /* size */ 0,
Ed Warnickecb9cada2015-12-08 15:45:58 -0700846 sizeof (hw->name[0]),
847 sizeof (uword));
848
849 hash_set_mem (im->hw_interface_by_name, hw->name, hw_index);
850
851 /* Make hardware interface point to software interface. */
852 {
Eyal Baric5b13602016-11-24 19:42:43 +0200853 vnet_sw_interface_t sw = {
854 .type = VNET_SW_INTERFACE_TYPE_HARDWARE,
855 .flood_class = VNET_FLOOD_CLASS_NORMAL,
856 .hw_if_index = hw_index
857 };
Ed Warnickecb9cada2015-12-08 15:45:58 -0700858 hw->sw_if_index = vnet_create_sw_interface_no_callbacks (vnm, &sw);
859 }
860
861 hw->dev_class_index = dev_class_index;
862 hw->dev_instance = dev_instance;
863 hw->hw_class_index = hw_class_index;
864 hw->hw_instance = hw_instance;
865
866 hw->max_rate_bits_per_sec = 0;
867 hw->min_packet_bytes = 0;
Ole Troand7231612018-06-07 10:17:57 +0200868 vnet_sw_interface_set_mtu (vnm, hw->sw_if_index, 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700869
Damjan Mariona31698b2021-03-10 14:35:28 +0100870 if (dev_class->tx_function == 0 && dev_class->tx_fn_registrations == 0)
John Loe5453d02018-01-23 19:21:34 -0500871 goto no_output_nodes; /* No output/tx nodes to create */
872
Ed Warnickecb9cada2015-12-08 15:45:58 -0700873 tx_node_name = (char *) format (0, "%v-tx", hw->name);
874 output_node_name = (char *) format (0, "%v-output", hw->name);
875
876 /* If we have previously deleted interface nodes, re-use them. */
877 if (vec_len (im->deleted_hw_interface_nodes) > 0)
878 {
Dave Barachba868bb2016-08-08 09:51:21 -0400879 vnet_hw_interface_nodes_t *hn;
Pierre Pfister064f55d2016-10-17 15:58:29 +0100880 vlib_node_t *node;
881 vlib_node_runtime_t *nrt;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700882
883 hn = vec_end (im->deleted_hw_interface_nodes) - 1;
884
885 hw->tx_node_index = hn->tx_node_index;
886 hw->output_node_index = hn->output_node_index;
887
888 vlib_node_rename (vm, hw->tx_node_index, "%v", tx_node_name);
889 vlib_node_rename (vm, hw->output_node_index, "%v", output_node_name);
890
Damjan Marion92ccf9b2021-03-26 11:38:01 +0100891 foreach_vlib_main ()
892 {
893 vnet_interface_output_runtime_t *rt;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700894
Damjan Marion92ccf9b2021-03-26 11:38:01 +0100895 rt =
896 vlib_node_get_runtime_data (this_vlib_main, hw->output_node_index);
897 ASSERT (rt->is_deleted == 1);
898 rt->is_deleted = 0;
899 rt->hw_if_index = hw_index;
900 rt->sw_if_index = hw->sw_if_index;
901 rt->dev_instance = hw->dev_instance;
Igor Mikhailov (imichail)8249a582017-06-15 20:47:48 -0700902
Damjan Marion92ccf9b2021-03-26 11:38:01 +0100903 rt = vlib_node_get_runtime_data (this_vlib_main, hw->tx_node_index);
904 rt->hw_if_index = hw_index;
905 rt->sw_if_index = hw->sw_if_index;
906 rt->dev_instance = hw->dev_instance;
907 }
Dave Barachb8dca742016-07-01 12:38:11 -0400908
Pierre Pfister064f55d2016-10-17 15:58:29 +0100909 /* The new class may differ from the old one.
910 * Functions have to be updated. */
911 node = vlib_get_node (vm, hw->output_node_index);
Pierre Pfister064f55d2016-10-17 15:58:29 +0100912 node->format_trace = format_vnet_interface_output_trace;
Damjan Marionf91098e2021-03-09 16:28:15 +0100913 node->node_fn_registrations = if_out_node->node_fn_registrations;
914 node->function = if_out_node->function;
915
Damjan Marion92ccf9b2021-03-26 11:38:01 +0100916 foreach_vlib_main ()
917 {
918 nrt = vlib_node_get_runtime (this_vlib_main, hw->output_node_index);
919 nrt->function = node->function;
920 vlib_node_runtime_perf_counter (this_vlib_main, nrt, 0, 0, 0,
921 VLIB_NODE_RUNTIME_PERF_RESET);
922 }
Pierre Pfister064f55d2016-10-17 15:58:29 +0100923
924 node = vlib_get_node (vm, hw->tx_node_index);
Damjan Mariona31698b2021-03-10 14:35:28 +0100925 if (dev_class->tx_fn_registrations)
926 {
927 node->node_fn_registrations = dev_class->tx_fn_registrations;
928 node->function = vlib_node_get_preferred_node_fn_variant (
929 vm, dev_class->tx_fn_registrations);
930 }
931 else
932 node->function = dev_class->tx_function;
Pierre Pfister064f55d2016-10-17 15:58:29 +0100933 node->format_trace = dev_class->format_tx_trace;
Damjan Marion92ccf9b2021-03-26 11:38:01 +0100934
935 foreach_vlib_main ()
936 {
937 nrt = vlib_node_get_runtime (this_vlib_main, hw->tx_node_index);
938 nrt->function = node->function;
939 vlib_node_runtime_perf_counter (this_vlib_main, nrt, 0, 0, 0,
940 VLIB_NODE_RUNTIME_PERF_RESET);
941 }
Pierre Pfister064f55d2016-10-17 15:58:29 +0100942
Ed Warnickecb9cada2015-12-08 15:45:58 -0700943 _vec_len (im->deleted_hw_interface_nodes) -= 1;
944 }
945 else
946 {
947 vlib_node_registration_t r;
948 vnet_interface_output_runtime_t rt = {
949 .hw_if_index = hw_index,
950 .sw_if_index = hw->sw_if_index,
951 .dev_instance = hw->dev_instance,
952 .is_deleted = 0,
953 };
954
Dave Barachb7b92992018-10-17 10:38:51 -0400955 clib_memset (&r, 0, sizeof (r));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700956 r.type = VLIB_NODE_TYPE_INTERNAL;
957 r.runtime_data = &rt;
958 r.runtime_data_bytes = sizeof (rt);
Damjan Marion1bd6cbb2021-04-15 13:12:51 +0200959 r.scalar_size = sizeof (vnet_hw_if_tx_frame_t);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700960 r.vector_size = sizeof (u32);
961
962 r.flags = VLIB_NODE_FLAG_IS_OUTPUT;
963 r.name = tx_node_name;
Damjan Marionf91098e2021-03-09 16:28:15 +0100964 if (dev_class->tx_fn_registrations)
965 {
966 r.function = 0;
967 r.node_fn_registrations = dev_class->tx_fn_registrations;
968 }
969 else
970 r.function = dev_class->tx_function;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700971
972 hw->tx_node_index = vlib_register_node (vm, &r);
973
974 vlib_node_add_named_next_with_slot (vm, hw->tx_node_index,
975 "error-drop",
976 VNET_INTERFACE_TX_NEXT_DROP);
977
978 r.flags = 0;
979 r.name = output_node_name;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700980 r.format_trace = format_vnet_interface_output_trace;
Damjan Marionf91098e2021-03-09 16:28:15 +0100981 if (if_out_node->node_fn_registrations)
982 {
983 r.function = 0;
984 r.node_fn_registrations = if_out_node->node_fn_registrations;
985 }
986 else
987 r.function = if_out_node->function;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700988
989 {
Dave Barachba868bb2016-08-08 09:51:21 -0400990 static char *e[] = {
Ed Warnickecb9cada2015-12-08 15:45:58 -0700991 "interface is down",
992 "interface is deleted",
993 };
994
995 r.n_errors = ARRAY_LEN (e);
996 r.error_strings = e;
997 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700998 hw->output_node_index = vlib_register_node (vm, &r);
999
Damjan Marion9c6ae5f2016-11-15 23:20:01 +01001000 vlib_node_add_named_next_with_slot (vm, hw->output_node_index,
1001 "error-drop",
1002 VNET_INTERFACE_OUTPUT_NEXT_DROP);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001003 vlib_node_add_next_with_slot (vm, hw->output_node_index,
1004 hw->tx_node_index,
1005 VNET_INTERFACE_OUTPUT_NEXT_TX);
Damjan Marion152e21d2016-11-29 14:55:43 +01001006 /* add interface to the list of "output-interface" feature arc start nodes
1007 and clone nexts from 1st interface if it exists */
1008 fcm = vnet_feature_get_config_main (im->output_feature_arc_index);
1009 cm = &fcm->config_main;
1010 i = vec_len (cm->start_node_indices);
1011 vec_validate (cm->start_node_indices, i);
1012 cm->start_node_indices[i] = hw->output_node_index;
1013 if (hw_index)
1014 {
1015 /* copy nexts from 1st interface */
1016 vnet_hw_interface_t *first_hw;
1017 vlib_node_t *first_node;
1018
1019 first_hw = vnet_get_hw_interface (vnm, /* hw_if_index */ 0);
1020 first_node = vlib_get_node (vm, first_hw->output_node_index);
1021
1022 /* 1st 2 nexts are already added above */
1023 for (i = 2; i < vec_len (first_node->next_nodes); i++)
1024 vlib_node_add_next_with_slot (vm, hw->output_node_index,
1025 first_node->next_nodes[i], i);
1026 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001027 }
1028
Damjan Marion8932e452021-04-16 11:49:26 +02001029 hw->if_out_arc_end_node_next_index = vlib_node_add_next (
1030 vm, vnet_interface_output_arc_end_node.index, hw->tx_node_index);
1031 vnet_if_update_lookup_tables (vnm, hw->sw_if_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001032 setup_output_node (vm, hw->output_node_index, hw_class);
1033 setup_tx_node (vm, hw->tx_node_index, dev_class);
1034
John Loe5453d02018-01-23 19:21:34 -05001035no_output_nodes:
Ed Warnickecb9cada2015-12-08 15:45:58 -07001036 /* Call all up/down callbacks with zero flags when interface is created. */
Dave Barachba868bb2016-08-08 09:51:21 -04001037 vnet_sw_interface_set_flags_helper (vnm, hw->sw_if_index, /* flags */ 0,
1038 VNET_INTERFACE_SET_FLAGS_HELPER_IS_CREATE);
1039 vnet_hw_interface_set_flags_helper (vnm, hw_index, /* flags */ 0,
1040 VNET_INTERFACE_SET_FLAGS_HELPER_IS_CREATE);
Neale Rannscbe8d652018-04-27 04:42:47 -07001041 vec_free (tx_node_name);
1042 vec_free (output_node_name);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001043
1044 return hw_index;
1045}
1046
Dave Barachba868bb2016-08-08 09:51:21 -04001047void
1048vnet_delete_hw_interface (vnet_main_t * vnm, u32 hw_if_index)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001049{
Dave Barachba868bb2016-08-08 09:51:21 -04001050 vnet_interface_main_t *im = &vnm->interface_main;
1051 vnet_hw_interface_t *hw = vnet_get_hw_interface (vnm, hw_if_index);
1052 vlib_main_t *vm = vnm->vlib_main;
John Loe5453d02018-01-23 19:21:34 -05001053 vnet_device_class_t *dev_class = vnet_get_device_class (vnm,
1054 hw->dev_class_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001055 /* If it is up, mark it down. */
1056 if (hw->flags != 0)
1057 vnet_hw_interface_set_flags (vnm, hw_if_index, /* flags */ 0);
1058
1059 /* Call delete callbacks. */
1060 call_hw_interface_add_del_callbacks (vnm, hw_if_index, /* is_create */ 0);
1061
Damjan Marion1bd6cbb2021-04-15 13:12:51 +02001062 /* delete rx & tx queues */
Damjan Marion94100532020-11-06 23:25:57 +01001063 vnet_hw_if_unregister_all_rx_queues (vnm, hw_if_index);
Damjan Marion1bd6cbb2021-04-15 13:12:51 +02001064 vnet_hw_if_unregister_all_tx_queues (vnm, hw_if_index);
Damjan Marion94100532020-11-06 23:25:57 +01001065 vnet_hw_if_update_runtime_data (vnm, hw_if_index);
1066
Ed Warnickecb9cada2015-12-08 15:45:58 -07001067 /* Delete any sub-interfaces. */
1068 {
1069 u32 id, sw_if_index;
Dave Barachba868bb2016-08-08 09:51:21 -04001070 /* *INDENT-OFF* */
John Lo5957a142018-01-18 12:44:50 -05001071 hash_foreach (id, sw_if_index, hw->sub_interface_sw_if_index_by_id,
1072 ({
1073 vnet_sw_interface_t *si = vnet_get_sw_interface (vnm, sw_if_index);
1074 u64 sup_and_sub_key =
1075 ((u64) (si->sup_sw_if_index) << 32) | (u64) si->sub.id;
1076 hash_unset_mem_free (&im->sw_if_index_by_sup_and_sub, &sup_and_sub_key);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001077 vnet_delete_sw_interface (vnm, sw_if_index);
1078 }));
John Lo5957a142018-01-18 12:44:50 -05001079 hash_free (hw->sub_interface_sw_if_index_by_id);
Dave Barachba868bb2016-08-08 09:51:21 -04001080 /* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07001081 }
1082
John Lo5957a142018-01-18 12:44:50 -05001083 /* Delete software interface corresponding to hardware interface. */
1084 vnet_delete_sw_interface (vnm, hw->sw_if_index);
1085
John Loe5453d02018-01-23 19:21:34 -05001086 if (dev_class->tx_function)
1087 {
1088 /* Put output/tx nodes into recycle pool */
1089 vnet_hw_interface_nodes_t *dn;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001090
Damjan Marion92ccf9b2021-03-26 11:38:01 +01001091 foreach_vlib_main ()
1092 {
John Loe5453d02018-01-23 19:21:34 -05001093 vnet_interface_output_runtime_t *rt =
1094 vlib_node_get_runtime_data (this_vlib_main, hw->output_node_index);
Igor Mikhailov (imichail)8249a582017-06-15 20:47:48 -07001095
John Loe5453d02018-01-23 19:21:34 -05001096 /* Mark node runtime as deleted so output node (if called)
1097 * will drop packets. */
1098 rt->is_deleted = 1;
Damjan Marion92ccf9b2021-03-26 11:38:01 +01001099 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001100
John Loe5453d02018-01-23 19:21:34 -05001101 vlib_node_rename (vm, hw->output_node_index,
1102 "interface-%d-output-deleted", hw_if_index);
1103 vlib_node_rename (vm, hw->tx_node_index, "interface-%d-tx-deleted",
1104 hw_if_index);
1105 vec_add2 (im->deleted_hw_interface_nodes, dn, 1);
1106 dn->tx_node_index = hw->tx_node_index;
1107 dn->output_node_index = hw->output_node_index;
1108 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001109
1110 hash_unset_mem (im->hw_interface_by_name, hw->name);
1111 vec_free (hw->name);
Neale Rannscbe8d652018-04-27 04:42:47 -07001112 vec_free (hw->hw_address);
Mohsin Kazmi7318c422021-10-04 11:29:08 +02001113 vec_free (hw->output_node_thread_runtimes);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001114 pool_put (im->hw_interfaces, hw);
1115}
1116
Neale Ranns8b37b872016-11-21 12:25:22 +00001117void
1118vnet_hw_interface_walk_sw (vnet_main_t * vnm,
1119 u32 hw_if_index,
1120 vnet_hw_sw_interface_walk_t fn, void *ctx)
1121{
1122 vnet_hw_interface_t *hi;
1123 u32 id, sw_if_index;
1124
1125 hi = vnet_get_hw_interface (vnm, hw_if_index);
Neale Ranns17ff3c12018-07-04 10:24:24 -07001126 /* the super first, then the sub interfaces */
1127 if (WALK_STOP == fn (vnm, hi->sw_if_index, ctx))
1128 return;
Neale Ranns8b37b872016-11-21 12:25:22 +00001129
1130 /* *INDENT-OFF* */
1131 hash_foreach (id, sw_if_index,
1132 hi->sub_interface_sw_if_index_by_id,
1133 ({
Neale Ranns0053de62018-05-22 08:40:52 -07001134 if (WALK_STOP == fn (vnm, sw_if_index, ctx))
1135 break;
Neale Ranns8b37b872016-11-21 12:25:22 +00001136 }));
1137 /* *INDENT-ON* */
1138}
1139
Neale Ranns0053de62018-05-22 08:40:52 -07001140void
Neale Ranns17ff3c12018-07-04 10:24:24 -07001141vnet_hw_interface_walk (vnet_main_t * vnm,
1142 vnet_hw_interface_walk_t fn, void *ctx)
1143{
1144 vnet_interface_main_t *im;
1145 vnet_hw_interface_t *hi;
1146
1147 im = &vnm->interface_main;
1148
1149 /* *INDENT-OFF* */
Damjan Marionb2c31b62020-12-13 21:47:40 +01001150 pool_foreach (hi, im->hw_interfaces)
1151 {
Neale Ranns17ff3c12018-07-04 10:24:24 -07001152 if (WALK_STOP == fn(vnm, hi->hw_if_index, ctx))
1153 break;
Damjan Marionb2c31b62020-12-13 21:47:40 +01001154 }
Neale Ranns17ff3c12018-07-04 10:24:24 -07001155 /* *INDENT-ON* */
1156}
1157
1158void
Neale Ranns0053de62018-05-22 08:40:52 -07001159vnet_sw_interface_walk (vnet_main_t * vnm,
1160 vnet_sw_interface_walk_t fn, void *ctx)
1161{
1162 vnet_interface_main_t *im;
1163 vnet_sw_interface_t *si;
1164
1165 im = &vnm->interface_main;
1166
1167 /* *INDENT-OFF* */
Damjan Marionb2c31b62020-12-13 21:47:40 +01001168 pool_foreach (si, im->sw_interfaces)
Neale Ranns0053de62018-05-22 08:40:52 -07001169 {
1170 if (WALK_STOP == fn (vnm, si, ctx))
1171 break;
Damjan Marionb2c31b62020-12-13 21:47:40 +01001172 }
Neale Ranns0053de62018-05-22 08:40:52 -07001173 /* *INDENT-ON* */
1174}
1175
Dave Barachba868bb2016-08-08 09:51:21 -04001176void
1177vnet_hw_interface_init_for_class (vnet_main_t * vnm, u32 hw_if_index,
1178 u32 hw_class_index, u32 hw_instance)
1179{
1180 vnet_hw_interface_t *hi = vnet_get_hw_interface (vnm, hw_if_index);
1181 vnet_hw_interface_class_t *hc =
1182 vnet_get_hw_interface_class (vnm, hw_class_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001183
1184 hi->hw_class_index = hw_class_index;
1185 hi->hw_instance = hw_instance;
1186 setup_output_node (vnm->vlib_main, hi->output_node_index, hc);
1187}
1188
1189static clib_error_t *
Dave Barachba868bb2016-08-08 09:51:21 -04001190vnet_hw_interface_set_class_helper (vnet_main_t * vnm, u32 hw_if_index,
1191 u32 hw_class_index, u32 redistribute)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001192{
Dave Barachba868bb2016-08-08 09:51:21 -04001193 vnet_hw_interface_t *hi = vnet_get_hw_interface (vnm, hw_if_index);
1194 vnet_sw_interface_t *si = vnet_get_sw_interface (vnm, hi->sw_if_index);
1195 vnet_hw_interface_class_t *old_class =
1196 vnet_get_hw_interface_class (vnm, hi->hw_class_index);
1197 vnet_hw_interface_class_t *new_class =
1198 vnet_get_hw_interface_class (vnm, hw_class_index);
1199 vnet_device_class_t *dev_class =
1200 vnet_get_device_class (vnm, hi->dev_class_index);
1201 clib_error_t *error = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001202
1203 /* New class equals old class? Nothing to do. */
1204 if (hi->hw_class_index == hw_class_index)
1205 return 0;
1206
1207 /* No need (and incorrect since admin up flag may be set) to do error checking when
1208 receiving unserialize message. */
1209 if (redistribute)
1210 {
1211 if (si->flags & VNET_SW_INTERFACE_FLAG_ADMIN_UP)
Dave Barachba868bb2016-08-08 09:51:21 -04001212 return clib_error_return (0,
1213 "%v must be admin down to change class from %s to %s",
Ed Warnickecb9cada2015-12-08 15:45:58 -07001214 hi->name, old_class->name, new_class->name);
1215
1216 /* Make sure interface supports given class. */
1217 if ((new_class->is_valid_class_for_interface
Dave Barachba868bb2016-08-08 09:51:21 -04001218 && !new_class->is_valid_class_for_interface (vnm, hw_if_index,
1219 hw_class_index))
1220 || (dev_class->is_valid_class_for_interface
1221 && !dev_class->is_valid_class_for_interface (vnm, hw_if_index,
1222 hw_class_index)))
1223 return clib_error_return (0,
1224 "%v class cannot be changed from %s to %s",
Ed Warnickecb9cada2015-12-08 15:45:58 -07001225 hi->name, old_class->name, new_class->name);
1226
Ed Warnickecb9cada2015-12-08 15:45:58 -07001227 }
1228
1229 if (old_class->hw_class_change)
Dave Barachba868bb2016-08-08 09:51:21 -04001230 old_class->hw_class_change (vnm, hw_if_index, old_class->index,
1231 new_class->index);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001232
Dave Barachba868bb2016-08-08 09:51:21 -04001233 vnet_hw_interface_init_for_class (vnm, hw_if_index, new_class->index,
1234 /* instance */ ~0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001235
1236 if (new_class->hw_class_change)
Dave Barachba868bb2016-08-08 09:51:21 -04001237 new_class->hw_class_change (vnm, hw_if_index, old_class->index,
1238 new_class->index);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001239
1240 if (dev_class->hw_class_change)
1241 dev_class->hw_class_change (vnm, hw_if_index, new_class->index);
1242
1243 return error;
1244}
1245
1246clib_error_t *
Dave Barachba868bb2016-08-08 09:51:21 -04001247vnet_hw_interface_set_class (vnet_main_t * vnm, u32 hw_if_index,
1248 u32 hw_class_index)
1249{
1250 return vnet_hw_interface_set_class_helper (vnm, hw_if_index, hw_class_index,
1251 /* redistribute */ 1);
1252}
Ed Warnickecb9cada2015-12-08 15:45:58 -07001253
1254static int
Dave Barachba868bb2016-08-08 09:51:21 -04001255vnet_hw_interface_rx_redirect_to_node_helper (vnet_main_t * vnm,
1256 u32 hw_if_index,
1257 u32 node_index,
1258 u32 redistribute)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001259{
Dave Barachba868bb2016-08-08 09:51:21 -04001260 vnet_hw_interface_t *hi = vnet_get_hw_interface (vnm, hw_if_index);
1261 vnet_device_class_t *dev_class = vnet_get_device_class
Ed Warnickecb9cada2015-12-08 15:45:58 -07001262 (vnm, hi->dev_class_index);
1263
Ed Warnickecb9cada2015-12-08 15:45:58 -07001264 if (dev_class->rx_redirect_to_node)
1265 {
1266 dev_class->rx_redirect_to_node (vnm, hw_if_index, node_index);
1267 return 0;
1268 }
1269
1270 return VNET_API_ERROR_UNIMPLEMENTED;
1271}
1272
Dave Barachba868bb2016-08-08 09:51:21 -04001273int
1274vnet_hw_interface_rx_redirect_to_node (vnet_main_t * vnm, u32 hw_if_index,
1275 u32 node_index)
1276{
1277 return vnet_hw_interface_rx_redirect_to_node_helper (vnm, hw_if_index,
1278 node_index,
1279 1 /* redistribute */ );
1280}
Ed Warnickecb9cada2015-12-08 15:45:58 -07001281
1282word
1283vnet_sw_interface_compare (vnet_main_t * vnm,
1284 uword sw_if_index0, uword sw_if_index1)
1285{
Dave Barachba868bb2016-08-08 09:51:21 -04001286 vnet_sw_interface_t *sup0 = vnet_get_sup_sw_interface (vnm, sw_if_index0);
1287 vnet_sw_interface_t *sup1 = vnet_get_sup_sw_interface (vnm, sw_if_index1);
1288 vnet_hw_interface_t *h0 = vnet_get_hw_interface (vnm, sup0->hw_if_index);
1289 vnet_hw_interface_t *h1 = vnet_get_hw_interface (vnm, sup1->hw_if_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001290
1291 if (h0 != h1)
1292 return vec_cmp (h0->name, h1->name);
1293 return (word) h0->hw_instance - (word) h1->hw_instance;
1294}
1295
1296word
1297vnet_hw_interface_compare (vnet_main_t * vnm,
1298 uword hw_if_index0, uword hw_if_index1)
1299{
Dave Barachba868bb2016-08-08 09:51:21 -04001300 vnet_hw_interface_t *h0 = vnet_get_hw_interface (vnm, hw_if_index0);
1301 vnet_hw_interface_t *h1 = vnet_get_hw_interface (vnm, hw_if_index1);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001302
1303 if (h0 != h1)
1304 return vec_cmp (h0->name, h1->name);
1305 return (word) h0->hw_instance - (word) h1->hw_instance;
1306}
1307
Neale Rannsb80c5362016-10-08 13:03:40 +01001308int
1309vnet_sw_interface_is_p2p (vnet_main_t * vnm, u32 sw_if_index)
1310{
Pavel Kotucek15ac81c2017-06-20 14:00:26 +02001311 vnet_sw_interface_t *si = vnet_get_sw_interface (vnm, sw_if_index);
Neale Ranns17ff3c12018-07-04 10:24:24 -07001312 if ((si->type == VNET_SW_INTERFACE_TYPE_P2P) ||
1313 (si->type == VNET_SW_INTERFACE_TYPE_PIPE))
Pavel Kotucek15ac81c2017-06-20 14:00:26 +02001314 return 1;
1315
Neale Rannsb80c5362016-10-08 13:03:40 +01001316 vnet_hw_interface_t *hw = vnet_get_sup_hw_interface (vnm, sw_if_index);
1317 vnet_hw_interface_class_t *hc =
1318 vnet_get_hw_interface_class (vnm, hw->hw_class_index);
1319
1320 return (hc->flags & VNET_HW_INTERFACE_CLASS_FLAG_P2P);
1321}
1322
Neale Ranns5f8f6172019-04-18 10:23:56 +00001323int
1324vnet_sw_interface_is_nbma (vnet_main_t * vnm, u32 sw_if_index)
1325{
1326 vnet_hw_interface_t *hw = vnet_get_sup_hw_interface (vnm, sw_if_index);
1327 vnet_hw_interface_class_t *hc =
1328 vnet_get_hw_interface_class (vnm, hw->hw_class_index);
1329
1330 return (hc->flags & VNET_HW_INTERFACE_CLASS_FLAG_NBMA);
1331}
1332
Ed Warnickecb9cada2015-12-08 15:45:58 -07001333clib_error_t *
Pim van Pelt76b19ce2021-08-10 23:44:44 +02001334vnet_sw_interface_supports_addressing (vnet_main_t *vnm, u32 sw_if_index)
1335{
1336 if (sw_if_index == 0)
1337 {
1338 return clib_error_create (
1339 "local0 interface doesn't support IP addressing");
1340 }
1341
1342 if (vnet_sw_interface_is_sub (vnm, sw_if_index))
1343 {
1344 vnet_sw_interface_t *si;
1345 si = vnet_get_sw_interface_or_null (vnm, sw_if_index);
1346 if (si && si->type == VNET_SW_INTERFACE_TYPE_SUB &&
1347 si->sub.eth.flags.exact_match == 0)
1348 {
1349 return clib_error_create (
1350 "sub-interface without exact-match doesn't support IP addressing");
1351 }
1352 }
1353 return NULL;
1354}
1355
1356clib_error_t *
Ed Warnickecb9cada2015-12-08 15:45:58 -07001357vnet_interface_init (vlib_main_t * vm)
1358{
Dave Barachba868bb2016-08-08 09:51:21 -04001359 vnet_main_t *vnm = vnet_get_main ();
1360 vnet_interface_main_t *im = &vnm->interface_main;
1361 vlib_buffer_t *b = 0;
1362 vnet_buffer_opaque_t *o = 0;
Dave Barach7bee7732017-10-18 18:48:11 -04001363 clib_error_t *error;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001364
1365 /*
1366 * Keep people from shooting themselves in the foot.
1367 */
Dave Barachba868bb2016-08-08 09:51:21 -04001368 if (sizeof (b->opaque) != sizeof (vnet_buffer_opaque_t))
Ed Warnickecb9cada2015-12-08 15:45:58 -07001369 {
1370#define _(a) if (sizeof(o->a) > sizeof (o->unused)) \
1371 clib_warning \
1372 ("FATAL: size of opaque union subtype %s is %d (max %d)", \
1373 #a, sizeof(o->a), sizeof (o->unused));
Dave Barachba868bb2016-08-08 09:51:21 -04001374 foreach_buffer_opaque_union_subtype;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001375#undef _
1376
Dave Barachba868bb2016-08-08 09:51:21 -04001377 return clib_error_return
1378 (0, "FATAL: size of vlib buffer opaque %d, size of vnet opaque %d",
1379 sizeof (b->opaque), sizeof (vnet_buffer_opaque_t));
Ed Warnickecb9cada2015-12-08 15:45:58 -07001380 }
1381
jaszha035cdde5c2019-07-11 20:47:24 +00001382 clib_spinlock_init (&im->sw_if_counter_lock);
1383 clib_spinlock_lock (&im->sw_if_counter_lock); /* should be no need */
Ed Warnickecb9cada2015-12-08 15:45:58 -07001384
Dave Barachba868bb2016-08-08 09:51:21 -04001385 vec_validate (im->sw_if_counters, VNET_N_SIMPLE_INTERFACE_COUNTER - 1);
Ole Troan1ec0ea82018-06-14 09:28:27 +02001386#define _(E,n,p) \
1387 im->sw_if_counters[VNET_INTERFACE_COUNTER_##E].name = #n; \
1388 im->sw_if_counters[VNET_INTERFACE_COUNTER_##E].stat_segment_name = "/" #p "/" #n;
1389 foreach_simple_interface_counter_name
1390#undef _
1391 vec_validate (im->combined_sw_if_counters,
1392 VNET_N_COMBINED_INTERFACE_COUNTER - 1);
1393#define _(E,n,p) \
1394 im->combined_sw_if_counters[VNET_INTERFACE_COUNTER_##E].name = #n; \
1395 im->combined_sw_if_counters[VNET_INTERFACE_COUNTER_##E].stat_segment_name = "/" #p "/" #n;
1396 foreach_combined_interface_counter_name
1397#undef _
jaszha035cdde5c2019-07-11 20:47:24 +00001398 clib_spinlock_unlock (&im->sw_if_counter_lock);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001399
Dave Barachba868bb2016-08-08 09:51:21 -04001400 im->device_class_by_name = hash_create_string ( /* size */ 0,
Ed Warnickecb9cada2015-12-08 15:45:58 -07001401 sizeof (uword));
1402 {
Dave Barachba868bb2016-08-08 09:51:21 -04001403 vnet_device_class_t *c;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001404
1405 c = vnm->device_class_registrations;
1406
1407 while (c)
1408 {
Dave Barachba868bb2016-08-08 09:51:21 -04001409 c->index = vec_len (im->device_classes);
1410 hash_set_mem (im->device_class_by_name, c->name, c->index);
Mohsin Kazmidd8e7d02018-07-23 14:45:57 +02001411
Damjan Mariona31698b2021-03-10 14:35:28 +01001412 /* to avoid confusion, please remove ".tx_function" statement
1413 from VNET_DEVICE_CLASS() if using function candidates */
1414 ASSERT (c->tx_fn_registrations == 0 || c->tx_function == 0);
1415
Mohsin Kazmidd8e7d02018-07-23 14:45:57 +02001416 if (c->tx_fn_registrations)
Damjan Mariona31698b2021-03-10 14:35:28 +01001417 c->tx_function = vlib_node_get_preferred_node_fn_variant (
1418 vm, c->tx_fn_registrations);
Mohsin Kazmidd8e7d02018-07-23 14:45:57 +02001419
Dave Barachba868bb2016-08-08 09:51:21 -04001420 vec_add1 (im->device_classes, c[0]);
1421 c = c->next_class_registration;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001422 }
1423 }
1424
Dave Barachba868bb2016-08-08 09:51:21 -04001425 im->hw_interface_class_by_name = hash_create_string ( /* size */ 0,
Ed Warnickecb9cada2015-12-08 15:45:58 -07001426 sizeof (uword));
1427
Damjan Marion94100532020-11-06 23:25:57 +01001428 im->rxq_index_by_hw_if_index_and_queue_id =
1429 hash_create_mem (0, sizeof (u64), sizeof (u32));
Damjan Marion1bd6cbb2021-04-15 13:12:51 +02001430 im->txq_index_by_hw_if_index_and_queue_id =
1431 hash_create_mem (0, sizeof (u64), sizeof (u32));
Dave Barachba868bb2016-08-08 09:51:21 -04001432 im->sw_if_index_by_sup_and_sub = hash_create_mem (0, sizeof (u64),
1433 sizeof (uword));
Ed Warnickecb9cada2015-12-08 15:45:58 -07001434 {
Dave Barachba868bb2016-08-08 09:51:21 -04001435 vnet_hw_interface_class_t *c;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001436
1437 c = vnm->hw_interface_class_registrations;
Dave Barachba868bb2016-08-08 09:51:21 -04001438
Ed Warnickecb9cada2015-12-08 15:45:58 -07001439 while (c)
1440 {
Dave Barachba868bb2016-08-08 09:51:21 -04001441 c->index = vec_len (im->hw_interface_classes);
1442 hash_set_mem (im->hw_interface_class_by_name, c->name, c->index);
Neale Rannsb80c5362016-10-08 13:03:40 +01001443
1444 if (NULL == c->build_rewrite)
1445 c->build_rewrite = default_build_rewrite;
1446 if (NULL == c->update_adjacency)
1447 c->update_adjacency = default_update_adjacency;
1448
Dave Barachba868bb2016-08-08 09:51:21 -04001449 vec_add1 (im->hw_interface_classes, c[0]);
1450 c = c->next_class_registration;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001451 }
1452 }
1453
Andrew Yourtchenko6a7cff72018-10-12 16:09:22 +02001454 /* init per-thread data */
1455 vec_validate_aligned (im->per_thread_data, vlib_num_workers (),
1456 CLIB_CACHE_LINE_BYTES);
1457
Dave Barach7bee7732017-10-18 18:48:11 -04001458 if ((error = vlib_call_init_function (vm, vnet_interface_cli_init)))
Ed Warnickecb9cada2015-12-08 15:45:58 -07001459 return error;
Dave Barach7bee7732017-10-18 18:48:11 -04001460
Dave Barach7be864a2016-11-28 11:41:35 -05001461 vnm->interface_tag_by_sw_if_index = hash_create (0, sizeof (uword));
Dave Barach7bee7732017-10-18 18:48:11 -04001462
Dave Barach7bee7732017-10-18 18:48:11 -04001463 return 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001464}
1465
1466VLIB_INIT_FUNCTION (vnet_interface_init);
1467
1468/* Kludge to renumber interface names [only!] */
Dave Barachba868bb2016-08-08 09:51:21 -04001469int
1470vnet_interface_name_renumber (u32 sw_if_index, u32 new_show_dev_instance)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001471{
1472 int rv;
Dave Barachba868bb2016-08-08 09:51:21 -04001473 vnet_main_t *vnm = vnet_get_main ();
1474 vnet_interface_main_t *im = &vnm->interface_main;
1475 vnet_hw_interface_t *hi = vnet_get_sup_hw_interface (vnm, sw_if_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001476
Dave Barachba868bb2016-08-08 09:51:21 -04001477 vnet_device_class_t *dev_class = vnet_get_device_class
Ed Warnickecb9cada2015-12-08 15:45:58 -07001478 (vnm, hi->dev_class_index);
1479
1480 if (dev_class->name_renumber == 0 || dev_class->format_device_name == 0)
Dave Barachba868bb2016-08-08 09:51:21 -04001481 return VNET_API_ERROR_UNIMPLEMENTED;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001482
1483 rv = dev_class->name_renumber (hi, new_show_dev_instance);
1484
1485 if (rv)
1486 return rv;
1487
1488 hash_unset_mem (im->hw_interface_by_name, hi->name);
1489 vec_free (hi->name);
1490 /* Use the mapping we set up to call it Ishmael */
Dave Barachba868bb2016-08-08 09:51:21 -04001491 hi->name = format (0, "%U", dev_class->format_device_name,
1492 hi->dev_instance);
1493
Ed Warnickecb9cada2015-12-08 15:45:58 -07001494 hash_set_mem (im->hw_interface_by_name, hi->name, hi->hw_if_index);
1495 return rv;
1496}
1497
Sean Hope608d1ed2016-03-09 00:35:21 -05001498clib_error_t *
Dave Barachba868bb2016-08-08 09:51:21 -04001499vnet_rename_interface (vnet_main_t * vnm, u32 hw_if_index, char *new_name)
Sean Hope608d1ed2016-03-09 00:35:21 -05001500{
Dave Barachba868bb2016-08-08 09:51:21 -04001501 vnet_interface_main_t *im = &vnm->interface_main;
1502 vlib_main_t *vm = vnm->vlib_main;
1503 vnet_hw_interface_t *hw;
1504 u8 *old_name;
1505 clib_error_t *error = 0;
Sean Hope608d1ed2016-03-09 00:35:21 -05001506
Dave Barachba868bb2016-08-08 09:51:21 -04001507 hw = vnet_get_hw_interface (vnm, hw_if_index);
Sean Hope608d1ed2016-03-09 00:35:21 -05001508 if (!hw)
1509 {
1510 return clib_error_return (0,
Dave Barachba868bb2016-08-08 09:51:21 -04001511 "unable to find hw interface for index %u",
1512 hw_if_index);
Sean Hope608d1ed2016-03-09 00:35:21 -05001513 }
1514
1515 old_name = hw->name;
1516
Dave Barachba868bb2016-08-08 09:51:21 -04001517 /* set new hw->name */
Sean Hope608d1ed2016-03-09 00:35:21 -05001518 hw->name = format (0, "%s", new_name);
1519
Dave Barachba868bb2016-08-08 09:51:21 -04001520 /* remove the old name to hw_if_index mapping and install the new one */
Sean Hope608d1ed2016-03-09 00:35:21 -05001521 hash_unset_mem (im->hw_interface_by_name, old_name);
1522 hash_set_mem (im->hw_interface_by_name, hw->name, hw_if_index);
1523
Dave Barachba868bb2016-08-08 09:51:21 -04001524 /* rename tx/output nodes */
Sean Hope608d1ed2016-03-09 00:35:21 -05001525 vlib_node_rename (vm, hw->tx_node_index, "%v-tx", hw->name);
1526 vlib_node_rename (vm, hw->output_node_index, "%v-output", hw->name);
1527
Dave Barachba868bb2016-08-08 09:51:21 -04001528 /* free the old name vector */
Sean Hope608d1ed2016-03-09 00:35:21 -05001529 vec_free (old_name);
1530
1531 return error;
1532}
Dave Barachba868bb2016-08-08 09:51:21 -04001533
Matthew Smithe0792fd2019-07-12 11:48:24 -05001534clib_error_t *
1535vnet_hw_interface_add_del_mac_address (vnet_main_t * vnm,
1536 u32 hw_if_index,
1537 const u8 * mac_address, u8 is_add)
1538{
1539 clib_error_t *error = 0;
1540 vnet_hw_interface_t *hi = vnet_get_hw_interface (vnm, hw_if_index);
1541
1542 vnet_device_class_t *dev_class =
1543 vnet_get_device_class (vnm, hi->dev_class_index);
1544
1545 if (!hi->hw_address)
1546 {
1547 error =
1548 clib_error_return
1549 (0, "Secondary MAC Addresses not supported for interface index %u",
1550 hw_if_index);
1551 goto done;
1552 }
1553
1554 if (dev_class->mac_addr_add_del_function)
1555 error = dev_class->mac_addr_add_del_function (hi, mac_address, is_add);
1556
1557 if (!error)
1558 {
1559 vnet_hw_interface_class_t *hw_class;
1560
1561 hw_class = vnet_get_hw_interface_class (vnm, hi->hw_class_index);
1562
1563 if (NULL != hw_class->mac_addr_add_del_function)
1564 error = hw_class->mac_addr_add_del_function (hi, mac_address, is_add);
1565 }
1566
1567 /* If no errors, add to the list of secondary MACs on the ethernet intf */
1568 if (!error)
1569 ethernet_interface_add_del_address (&ethernet_main, hw_if_index,
1570 mac_address, is_add);
1571
1572done:
Damjan Mariond1bd5d22020-11-23 16:58:05 +01001573 if (error)
1574 log_err ("hw_add_del_mac_address: %U", format_clib_error, error);
Matthew Smithe0792fd2019-07-12 11:48:24 -05001575 return error;
1576}
1577
Pavel Kotucekc631f2d2016-09-26 10:40:02 +02001578static clib_error_t *
1579vnet_hw_interface_change_mac_address_helper (vnet_main_t * vnm,
John Lo62fcc0a2017-10-31 14:31:10 -04001580 u32 hw_if_index,
Neale Ranns8f8994a2018-10-30 03:47:20 -07001581 const u8 * mac_address)
Pavel Kotucekc631f2d2016-09-26 10:40:02 +02001582{
1583 clib_error_t *error = 0;
1584 vnet_hw_interface_t *hi = vnet_get_hw_interface (vnm, hw_if_index);
1585
1586 if (hi->hw_address)
1587 {
Neale Ranns3b81a1e2018-09-06 09:50:26 -07001588 u8 *old_address = vec_dup (hi->hw_address);
Pavel Kotucekc631f2d2016-09-26 10:40:02 +02001589 vnet_device_class_t *dev_class =
1590 vnet_get_device_class (vnm, hi->dev_class_index);
1591 if (dev_class->mac_addr_change_function)
1592 {
1593 error =
Neale Ranns3b81a1e2018-09-06 09:50:26 -07001594 dev_class->mac_addr_change_function (hi, old_address,
1595 mac_address);
Pavel Kotucekc631f2d2016-09-26 10:40:02 +02001596 }
1597 if (!error)
1598 {
Neale Ranns3be6b282016-12-20 14:24:01 +00001599 vnet_hw_interface_class_t *hw_class;
Pavel Kotucekc631f2d2016-09-26 10:40:02 +02001600
Neale Ranns3be6b282016-12-20 14:24:01 +00001601 hw_class = vnet_get_hw_interface_class (vnm, hi->hw_class_index);
Pavel Kotuceka6b31772016-10-14 10:20:59 +02001602
Neale Ranns3be6b282016-12-20 14:24:01 +00001603 if (NULL != hw_class->mac_addr_change_function)
Neale Ranns3b81a1e2018-09-06 09:50:26 -07001604 hw_class->mac_addr_change_function (hi, old_address, mac_address);
Pavel Kotucekc631f2d2016-09-26 10:40:02 +02001605 }
1606 else
1607 {
1608 error =
1609 clib_error_return (0,
1610 "MAC Address Change is not supported on this interface");
1611 }
Neale Ranns3b81a1e2018-09-06 09:50:26 -07001612 vec_free (old_address);
Pavel Kotucekc631f2d2016-09-26 10:40:02 +02001613 }
1614 else
1615 {
1616 error =
1617 clib_error_return (0,
1618 "mac address change is not supported for interface index %u",
1619 hw_if_index);
1620 }
1621 return error;
1622}
1623
1624clib_error_t *
1625vnet_hw_interface_change_mac_address (vnet_main_t * vnm, u32 hw_if_index,
Neale Ranns8f8994a2018-10-30 03:47:20 -07001626 const u8 * mac_address)
Pavel Kotucekc631f2d2016-09-26 10:40:02 +02001627{
1628 return vnet_hw_interface_change_mac_address_helper
1629 (vnm, hw_if_index, mac_address);
1630}
1631
Stanislav Zaikin328b5da2021-07-15 16:27:29 +02001632static int
1633vnet_sw_interface_check_table_same (u32 unnumbered_sw_if_index,
1634 u32 ip_sw_if_index)
1635{
Stanislav Zaikin328b5da2021-07-15 16:27:29 +02001636 if (ip4_main.fib_index_by_sw_if_index[unnumbered_sw_if_index] !=
1637 ip4_main.fib_index_by_sw_if_index[ip_sw_if_index])
1638 return VNET_API_ERROR_UNEXPECTED_INTF_STATE;
1639
1640 if (ip4_main.mfib_index_by_sw_if_index[unnumbered_sw_if_index] !=
1641 ip4_main.mfib_index_by_sw_if_index[ip_sw_if_index])
1642 return VNET_API_ERROR_UNEXPECTED_INTF_STATE;
1643
1644 if (ip6_main.fib_index_by_sw_if_index[unnumbered_sw_if_index] !=
1645 ip6_main.fib_index_by_sw_if_index[ip_sw_if_index])
1646 return VNET_API_ERROR_UNEXPECTED_INTF_STATE;
1647
1648 if (ip6_main.mfib_index_by_sw_if_index[unnumbered_sw_if_index] !=
1649 ip6_main.mfib_index_by_sw_if_index[ip_sw_if_index])
1650 return VNET_API_ERROR_UNEXPECTED_INTF_STATE;
1651
1652 return 0;
1653}
1654
Neale Ranns2ae2bc52018-03-16 03:22:39 -07001655/* update the unnumbered state of an interface*/
Stanislav Zaikin328b5da2021-07-15 16:27:29 +02001656int
Neale Ranns2ae2bc52018-03-16 03:22:39 -07001657vnet_sw_interface_update_unnumbered (u32 unnumbered_sw_if_index,
1658 u32 ip_sw_if_index, u8 enable)
1659{
1660 vnet_main_t *vnm = vnet_get_main ();
1661 vnet_sw_interface_t *si;
1662 u32 was_unnum;
Stanislav Zaikin328b5da2021-07-15 16:27:29 +02001663 int rv = 0;
Neale Ranns2ae2bc52018-03-16 03:22:39 -07001664
1665 si = vnet_get_sw_interface (vnm, unnumbered_sw_if_index);
1666 was_unnum = (si->flags & VNET_SW_INTERFACE_FLAG_UNNUMBERED);
1667
1668 if (enable)
1669 {
Stanislav Zaikin328b5da2021-07-15 16:27:29 +02001670 rv = vnet_sw_interface_check_table_same (unnumbered_sw_if_index,
1671 ip_sw_if_index);
1672 if (rv != 0)
1673 return rv;
Neale Ranns2ae2bc52018-03-16 03:22:39 -07001674 si->flags |= VNET_SW_INTERFACE_FLAG_UNNUMBERED;
1675 si->unnumbered_sw_if_index = ip_sw_if_index;
1676
1677 ip4_main.lookup_main.if_address_pool_index_by_sw_if_index
1678 [unnumbered_sw_if_index] =
1679 ip4_main.
1680 lookup_main.if_address_pool_index_by_sw_if_index[ip_sw_if_index];
1681 ip6_main.
1682 lookup_main.if_address_pool_index_by_sw_if_index
1683 [unnumbered_sw_if_index] =
1684 ip6_main.
1685 lookup_main.if_address_pool_index_by_sw_if_index[ip_sw_if_index];
1686 }
1687 else
1688 {
Dave Barach64d20e72021-05-29 09:00:45 -04001689 /*
1690 * Unless the interface is actually unnumbered, don't
1691 * smash e.g. if_address_pool_index_by_sw_if_index
1692 */
1693 if (si->flags & VNET_SW_INTERFACE_FLAG_UNNUMBERED)
1694 {
1695 si->flags &= ~(VNET_SW_INTERFACE_FLAG_UNNUMBERED);
1696 si->unnumbered_sw_if_index = (u32) ~0;
Neale Ranns2ae2bc52018-03-16 03:22:39 -07001697
Dave Barach64d20e72021-05-29 09:00:45 -04001698 ip4_main.lookup_main
1699 .if_address_pool_index_by_sw_if_index[unnumbered_sw_if_index] = ~0;
1700 ip6_main.lookup_main
1701 .if_address_pool_index_by_sw_if_index[unnumbered_sw_if_index] = ~0;
1702 }
Neale Ranns2ae2bc52018-03-16 03:22:39 -07001703 }
1704
1705 if (was_unnum != (si->flags & VNET_SW_INTERFACE_FLAG_UNNUMBERED))
1706 {
1707 ip4_sw_interface_enable_disable (unnumbered_sw_if_index, enable);
1708 ip6_sw_interface_enable_disable (unnumbered_sw_if_index, enable);
1709 }
Stanislav Zaikin328b5da2021-07-15 16:27:29 +02001710
1711 return 0;
Neale Ranns2ae2bc52018-03-16 03:22:39 -07001712}
1713
Neale Rannsb80c5362016-10-08 13:03:40 +01001714vnet_l3_packet_type_t
1715vnet_link_to_l3_proto (vnet_link_t link)
1716{
1717 switch (link)
1718 {
1719 case VNET_LINK_IP4:
1720 return (VNET_L3_PACKET_TYPE_IP4);
1721 case VNET_LINK_IP6:
1722 return (VNET_L3_PACKET_TYPE_IP6);
1723 case VNET_LINK_MPLS:
Neale Ranns0f26c5a2017-03-01 15:12:11 -08001724 return (VNET_L3_PACKET_TYPE_MPLS);
Neale Rannsb80c5362016-10-08 13:03:40 +01001725 case VNET_LINK_ARP:
1726 return (VNET_L3_PACKET_TYPE_ARP);
1727 case VNET_LINK_ETHERNET:
Florin Corasce1b4c72017-01-26 14:25:34 -08001728 case VNET_LINK_NSH:
Neale Rannsb80c5362016-10-08 13:03:40 +01001729 ASSERT (0);
1730 break;
1731 }
1732 ASSERT (0);
1733 return (0);
1734}
1735
Ole Troand7231612018-06-07 10:17:57 +02001736vnet_mtu_t
1737vnet_link_to_mtu (vnet_link_t link)
1738{
1739 switch (link)
1740 {
1741 case VNET_LINK_IP4:
1742 return (VNET_MTU_IP4);
1743 case VNET_LINK_IP6:
1744 return (VNET_MTU_IP6);
1745 case VNET_LINK_MPLS:
1746 return (VNET_MTU_MPLS);
1747 default:
1748 return (VNET_MTU_L3);
1749 }
1750}
1751
Neale Rannsb80c5362016-10-08 13:03:40 +01001752u8 *
1753default_build_rewrite (vnet_main_t * vnm,
1754 u32 sw_if_index,
1755 vnet_link_t link_type, const void *dst_address)
1756{
1757 return (NULL);
1758}
1759
1760void
1761default_update_adjacency (vnet_main_t * vnm, u32 sw_if_index, u32 ai)
1762{
Neale Ranns0117d242017-08-12 12:52:54 -07001763 ip_adjacency_t *adj;
Neale Rannsb80c5362016-10-08 13:03:40 +01001764
Neale Ranns0117d242017-08-12 12:52:54 -07001765 adj = adj_get (ai);
Neale Rannsb80c5362016-10-08 13:03:40 +01001766
Neale Ranns0117d242017-08-12 12:52:54 -07001767 switch (adj->lookup_next_index)
1768 {
Ole Trøan438f6302018-02-15 21:56:06 +00001769 case IP_LOOKUP_NEXT_GLEAN:
Neale Rannsc819fc62018-02-16 02:44:05 -08001770 adj_glean_update_rewrite (ai);
1771 break;
1772 case IP_LOOKUP_NEXT_ARP:
Neale Ranns1855b8e2018-07-11 10:31:26 -07001773 case IP_LOOKUP_NEXT_BCAST:
Neale Ranns0117d242017-08-12 12:52:54 -07001774 /*
Paul Vinciguerrabdc0e6b2018-09-22 05:32:50 -07001775 * default rewrite in neighbour adj
Neale Ranns0117d242017-08-12 12:52:54 -07001776 */
1777 adj_nbr_update_rewrite
1778 (ai,
1779 ADJ_NBR_REWRITE_FLAG_COMPLETE,
1780 vnet_build_rewrite_for_sw_interface (vnm,
1781 sw_if_index,
1782 adj_get_link_type (ai), NULL));
1783 break;
1784 case IP_LOOKUP_NEXT_MCAST:
1785 /*
1786 * mcast traffic also uses default rewrite string with no mcast
1787 * switch time updates.
1788 */
1789 adj_mcast_update_rewrite
1790 (ai,
1791 vnet_build_rewrite_for_sw_interface (vnm,
1792 sw_if_index,
1793 adj_get_link_type (ai),
Neale Ranns889fe942017-06-01 05:43:19 -04001794 NULL), 0);
Neale Ranns0117d242017-08-12 12:52:54 -07001795 break;
1796 case IP_LOOKUP_NEXT_DROP:
1797 case IP_LOOKUP_NEXT_PUNT:
1798 case IP_LOOKUP_NEXT_LOCAL:
1799 case IP_LOOKUP_NEXT_REWRITE:
1800 case IP_LOOKUP_NEXT_MCAST_MIDCHAIN:
1801 case IP_LOOKUP_NEXT_MIDCHAIN:
1802 case IP_LOOKUP_NEXT_ICMP_ERROR:
1803 case IP_LOOKUP_N_NEXT:
1804 ASSERT (0);
1805 break;
1806 }
Neale Rannsb80c5362016-10-08 13:03:40 +01001807}
1808
Chenmin Sunc4665092020-07-06 08:20:39 +08001809clib_error_t *
1810vnet_hw_interface_set_rss_queues (vnet_main_t * vnm,
1811 vnet_hw_interface_t * hi,
1812 clib_bitmap_t * bitmap)
1813{
1814 clib_error_t *error = 0;
1815 vnet_device_class_t *dev_class =
1816 vnet_get_device_class (vnm, hi->dev_class_index);
1817
1818 if (dev_class->set_rss_queues_function)
1819 {
1820 if (clib_bitmap_count_set_bits (bitmap) == 0)
1821 {
1822 error = clib_error_return (0,
1823 "must assign at least one valid rss queue");
1824 goto done;
1825 }
1826
1827 error = dev_class->set_rss_queues_function (vnm, hi, bitmap);
1828 }
1829 else
1830 {
1831 error = clib_error_return (0,
1832 "setting rss queues is not supported on this interface");
1833 }
1834
1835 if (!error)
1836 {
1837 clib_bitmap_free (hi->rss_queues);
1838 hi->rss_queues = clib_bitmap_dup (bitmap);
1839 }
1840
1841done:
Damjan Mariond1bd5d22020-11-23 16:58:05 +01001842 if (error)
1843 log_err ("hw_set_rss_queues: %U", format_clib_error, error);
Chenmin Sunc4665092020-07-06 08:20:39 +08001844 return error;
1845}
1846
Neale Ranns6f4a6be2018-03-16 16:26:21 -07001847int collect_detailed_interface_stats_flag = 0;
1848
1849void
Neale Rannsf704f382018-03-19 12:24:07 -04001850collect_detailed_interface_stats_flag_set (void)
Neale Ranns6f4a6be2018-03-16 16:26:21 -07001851{
1852 collect_detailed_interface_stats_flag = 1;
1853}
1854
1855void
Neale Rannsf704f382018-03-19 12:24:07 -04001856collect_detailed_interface_stats_flag_clear (void)
Neale Ranns6f4a6be2018-03-16 16:26:21 -07001857{
1858 collect_detailed_interface_stats_flag = 0;
1859}
1860
1861static clib_error_t *
1862collect_detailed_interface_stats_cli (vlib_main_t * vm,
1863 unformat_input_t * input,
1864 vlib_cli_command_t * cmd)
1865{
1866 unformat_input_t _line_input, *line_input = &_line_input;
1867 clib_error_t *error = NULL;
1868
1869 /* Get a line of input. */
1870 if (!unformat_user (input, unformat_line_input, line_input))
1871 return clib_error_return (0, "expected enable | disable");
1872
1873 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
1874 {
1875 if (unformat (line_input, "enable") || unformat (line_input, "on"))
1876 collect_detailed_interface_stats_flag_set ();
1877 else if (unformat (line_input, "disable")
1878 || unformat (line_input, "off"))
1879 collect_detailed_interface_stats_flag_clear ();
1880 else
1881 {
1882 error = clib_error_return (0, "unknown input `%U'",
1883 format_unformat_error, line_input);
1884 goto done;
1885 }
1886 }
1887
1888done:
1889 unformat_free (line_input);
1890 return error;
1891}
1892
1893/* *INDENT-OFF* */
1894VLIB_CLI_COMMAND (collect_detailed_interface_stats_command, static) = {
1895 .path = "interface collect detailed-stats",
1896 .short_help = "interface collect detailed-stats <enable|disable>",
1897 .function = collect_detailed_interface_stats_cli,
1898};
1899/* *INDENT-ON* */
1900
Dave Barachba868bb2016-08-08 09:51:21 -04001901/*
1902 * fd.io coding-style-patch-verification: ON
1903 *
1904 * Local Variables:
1905 * eval: (c-set-style "gnu")
1906 * End:
1907 */