blob: 5cbbbf96055ba5e71c837961c902adf48eea6c84 [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>
Pavel Kotucekc631f2d2016-09-26 10:40:02 +020042#include <vnet/fib/ip6_fib.h>
Neale Rannsb80c5362016-10-08 13:03:40 +010043#include <vnet/adj/adj.h>
Neale Ranns0117d242017-08-12 12:52:54 -070044#include <vnet/adj/adj_mcast.h>
Neale Ranns3b81a1e2018-09-06 09:50:26 -070045#include <vnet/l2/l2_input.h>
Ed Warnickecb9cada2015-12-08 15:45:58 -070046
47#define VNET_INTERFACE_SET_FLAGS_HELPER_IS_CREATE (1 << 0)
48#define VNET_INTERFACE_SET_FLAGS_HELPER_WANT_REDISTRIBUTE (1 << 1)
49
Dave Barachba868bb2016-08-08 09:51:21 -040050static clib_error_t *vnet_hw_interface_set_flags_helper (vnet_main_t * vnm,
51 u32 hw_if_index,
52 u32 flags,
53 u32 helper_flags);
Ed Warnickecb9cada2015-12-08 15:45:58 -070054
Dave Barachba868bb2016-08-08 09:51:21 -040055static clib_error_t *vnet_sw_interface_set_flags_helper (vnet_main_t * vnm,
56 u32 sw_if_index,
57 u32 flags,
58 u32 helper_flags);
Ed Warnickecb9cada2015-12-08 15:45:58 -070059
Dave Barachba868bb2016-08-08 09:51:21 -040060static clib_error_t *vnet_hw_interface_set_class_helper (vnet_main_t * vnm,
61 u32 hw_if_index,
62 u32 hw_class_index,
63 u32 redistribute);
Ed Warnickecb9cada2015-12-08 15:45:58 -070064
Dave Barachba868bb2016-08-08 09:51:21 -040065typedef struct
66{
Ed Warnickecb9cada2015-12-08 15:45:58 -070067 /* Either sw or hw interface index. */
68 u32 sw_hw_if_index;
69
70 /* Flags. */
71 u32 flags;
72} vnet_sw_hw_interface_state_t;
73
Dave Barachba868bb2016-08-08 09:51:21 -040074static void
75serialize_vec_vnet_sw_hw_interface_state (serialize_main_t * m, va_list * va)
Ed Warnickecb9cada2015-12-08 15:45:58 -070076{
Dave Barachba868bb2016-08-08 09:51:21 -040077 vnet_sw_hw_interface_state_t *s =
78 va_arg (*va, vnet_sw_hw_interface_state_t *);
79 u32 n = va_arg (*va, u32);
80 u32 i;
81 for (i = 0; i < n; i++)
82 {
83 serialize_integer (m, s[i].sw_hw_if_index,
84 sizeof (s[i].sw_hw_if_index));
85 serialize_integer (m, s[i].flags, sizeof (s[i].flags));
Ed Warnickecb9cada2015-12-08 15:45:58 -070086 }
87}
88
Dave Barachba868bb2016-08-08 09:51:21 -040089static void
90unserialize_vec_vnet_sw_hw_interface_state (serialize_main_t * m,
91 va_list * va)
Ed Warnickecb9cada2015-12-08 15:45:58 -070092{
Dave Barachba868bb2016-08-08 09:51:21 -040093 vnet_sw_hw_interface_state_t *s =
94 va_arg (*va, vnet_sw_hw_interface_state_t *);
95 u32 n = va_arg (*va, u32);
96 u32 i;
97 for (i = 0; i < n; i++)
98 {
99 unserialize_integer (m, &s[i].sw_hw_if_index,
100 sizeof (s[i].sw_hw_if_index));
101 unserialize_integer (m, &s[i].flags, sizeof (s[i].flags));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700102 }
103}
104
Dave Barachba868bb2016-08-08 09:51:21 -0400105static void
106serialize_vnet_sw_hw_interface_set_flags (serialize_main_t * m, 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 *);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700110 serialize (m, serialize_vec_vnet_sw_hw_interface_state, s, 1);
111}
112
Dave Barachba868bb2016-08-08 09:51:21 -0400113static void
114unserialize_vnet_sw_interface_set_flags (serialize_main_t * m, va_list * va)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700115{
116 CLIB_UNUSED (mc_main_t * mc) = va_arg (*va, mc_main_t *);
117 vnet_sw_hw_interface_state_t s;
118
119 unserialize (m, unserialize_vec_vnet_sw_hw_interface_state, &s, 1);
120
121 vnet_sw_interface_set_flags_helper
Dave Barachba868bb2016-08-08 09:51:21 -0400122 (vnet_get_main (), s.sw_hw_if_index, s.flags,
Ed Warnickecb9cada2015-12-08 15:45:58 -0700123 /* helper_flags no redistribution */ 0);
124}
125
Dave Barachba868bb2016-08-08 09:51:21 -0400126static void
127unserialize_vnet_hw_interface_set_flags (serialize_main_t * m, va_list * va)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700128{
129 CLIB_UNUSED (mc_main_t * mc) = va_arg (*va, mc_main_t *);
130 vnet_sw_hw_interface_state_t s;
131
132 unserialize (m, unserialize_vec_vnet_sw_hw_interface_state, &s, 1);
133
134 vnet_hw_interface_set_flags_helper
Dave Barachba868bb2016-08-08 09:51:21 -0400135 (vnet_get_main (), s.sw_hw_if_index, s.flags,
Ed Warnickecb9cada2015-12-08 15:45:58 -0700136 /* helper_flags no redistribution */ 0);
137}
138
Dave Barachba868bb2016-08-08 09:51:21 -0400139MC_SERIALIZE_MSG (vnet_sw_interface_set_flags_msg, static) =
Ed Warnickecb9cada2015-12-08 15:45:58 -0700140{
Dave Barachba868bb2016-08-08 09:51:21 -0400141.name = "vnet_sw_interface_set_flags",.serialize =
142 serialize_vnet_sw_hw_interface_set_flags,.unserialize =
143 unserialize_vnet_sw_interface_set_flags,};
144
145MC_SERIALIZE_MSG (vnet_hw_interface_set_flags_msg, static) =
146{
147.name = "vnet_hw_interface_set_flags",.serialize =
148 serialize_vnet_sw_hw_interface_set_flags,.unserialize =
149 unserialize_vnet_hw_interface_set_flags,};
150
151void
152serialize_vnet_interface_state (serialize_main_t * m, va_list * va)
153{
154 vnet_main_t *vnm = va_arg (*va, vnet_main_t *);
155 vnet_sw_hw_interface_state_t *sts = 0, *st;
156 vnet_sw_interface_t *sif;
157 vnet_hw_interface_t *hif;
158 vnet_interface_main_t *im = &vnm->interface_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700159
160 /* Serialize hardware interface classes since they may have changed.
161 Must do this before sending up/down flags. */
Dave Barachba868bb2016-08-08 09:51:21 -0400162 /* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700163 pool_foreach (hif, im->hw_interfaces, ({
164 vnet_hw_interface_class_t * hw_class = vnet_get_hw_interface_class (vnm, hif->hw_class_index);
165 serialize_cstring (m, hw_class->name);
166 }));
Dave Barachba868bb2016-08-08 09:51:21 -0400167 /* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700168
169 /* Send sw/hw interface state when non-zero. */
Dave Barachba868bb2016-08-08 09:51:21 -0400170 /* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700171 pool_foreach (sif, im->sw_interfaces, ({
172 if (sif->flags != 0)
173 {
174 vec_add2 (sts, st, 1);
175 st->sw_hw_if_index = sif->sw_if_index;
176 st->flags = sif->flags;
177 }
178 }));
Dave Barachba868bb2016-08-08 09:51:21 -0400179 /* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700180
181 vec_serialize (m, sts, serialize_vec_vnet_sw_hw_interface_state);
182
183 if (sts)
184 _vec_len (sts) = 0;
185
Dave Barachba868bb2016-08-08 09:51:21 -0400186 /* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700187 pool_foreach (hif, im->hw_interfaces, ({
188 if (hif->flags != 0)
189 {
190 vec_add2 (sts, st, 1);
191 st->sw_hw_if_index = hif->hw_if_index;
192 st->flags = hif->flags;
193 }
194 }));
Dave Barachba868bb2016-08-08 09:51:21 -0400195 /* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700196
197 vec_serialize (m, sts, serialize_vec_vnet_sw_hw_interface_state);
198
199 vec_free (sts);
200}
201
Dave Barachba868bb2016-08-08 09:51:21 -0400202void
203unserialize_vnet_interface_state (serialize_main_t * m, va_list * va)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700204{
Dave Barachba868bb2016-08-08 09:51:21 -0400205 vnet_main_t *vnm = va_arg (*va, vnet_main_t *);
206 vnet_sw_hw_interface_state_t *sts = 0, *st;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700207
208 /* First set interface hardware class. */
209 {
Dave Barachba868bb2016-08-08 09:51:21 -0400210 vnet_interface_main_t *im = &vnm->interface_main;
211 vnet_hw_interface_t *hif;
212 char *class_name;
213 uword *p;
214 clib_error_t *error;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700215
Dave Barachba868bb2016-08-08 09:51:21 -0400216 /* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700217 pool_foreach (hif, im->hw_interfaces, ({
218 unserialize_cstring (m, &class_name);
219 p = hash_get_mem (im->hw_interface_class_by_name, class_name);
220 ASSERT (p != 0);
221 error = vnet_hw_interface_set_class_helper (vnm, hif->hw_if_index, p[0], /* redistribute */ 0);
222 if (error)
223 clib_error_report (error);
224 vec_free (class_name);
225 }));
Dave Barachba868bb2016-08-08 09:51:21 -0400226 /* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700227 }
228
229 vec_unserialize (m, &sts, unserialize_vec_vnet_sw_hw_interface_state);
230 vec_foreach (st, sts)
231 vnet_sw_interface_set_flags_helper (vnm, st->sw_hw_if_index, st->flags,
232 /* no distribute */ 0);
233 vec_free (sts);
234
235 vec_unserialize (m, &sts, unserialize_vec_vnet_sw_hw_interface_state);
236 vec_foreach (st, sts)
237 vnet_hw_interface_set_flags_helper (vnm, st->sw_hw_if_index, st->flags,
238 /* no distribute */ 0);
239 vec_free (sts);
240}
241
242static clib_error_t *
Dave Barachba868bb2016-08-08 09:51:21 -0400243call_elf_section_interface_callbacks (vnet_main_t * vnm, u32 if_index,
244 u32 flags,
Neale Ranns8b37b872016-11-21 12:25:22 +0000245 _vnet_interface_function_list_elt_t **
246 elts)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700247{
Neale Ranns8b37b872016-11-21 12:25:22 +0000248 _vnet_interface_function_list_elt_t *elt;
249 vnet_interface_function_priority_t prio;
Dave Barachba868bb2016-08-08 09:51:21 -0400250 clib_error_t *error = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700251
Neale Ranns8b37b872016-11-21 12:25:22 +0000252 for (prio = VNET_ITF_FUNC_PRIORITY_LOW;
253 prio <= VNET_ITF_FUNC_PRIORITY_HIGH; prio++)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700254 {
Neale Ranns8b37b872016-11-21 12:25:22 +0000255 elt = elts[prio];
256
257 while (elt)
258 {
259 error = elt->fp (vnm, if_index, flags);
260 if (error)
261 return error;
262 elt = elt->next_interface_function;
263 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700264 }
265 return error;
266}
267
268static clib_error_t *
Dave Barachba868bb2016-08-08 09:51:21 -0400269call_hw_interface_add_del_callbacks (vnet_main_t * vnm, u32 hw_if_index,
270 u32 is_create)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700271{
Dave Barachba868bb2016-08-08 09:51:21 -0400272 vnet_hw_interface_t *hi = vnet_get_hw_interface (vnm, hw_if_index);
273 vnet_hw_interface_class_t *hw_class =
274 vnet_get_hw_interface_class (vnm, hi->hw_class_index);
275 vnet_device_class_t *dev_class =
276 vnet_get_device_class (vnm, hi->dev_class_index);
277 clib_error_t *error = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700278
279 if (hw_class->interface_add_del_function
Dave Barachba868bb2016-08-08 09:51:21 -0400280 && (error =
281 hw_class->interface_add_del_function (vnm, hw_if_index, is_create)))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700282 return error;
283
284 if (dev_class->interface_add_del_function
Dave Barachba868bb2016-08-08 09:51:21 -0400285 && (error =
286 dev_class->interface_add_del_function (vnm, hw_if_index,
287 is_create)))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700288 return error;
289
Dave Barachba868bb2016-08-08 09:51:21 -0400290 error = call_elf_section_interface_callbacks
Ed Warnickecb9cada2015-12-08 15:45:58 -0700291 (vnm, hw_if_index, is_create, vnm->hw_interface_add_del_functions);
292
293 return error;
294}
295
296static clib_error_t *
Dave Barachba868bb2016-08-08 09:51:21 -0400297call_sw_interface_add_del_callbacks (vnet_main_t * vnm, u32 sw_if_index,
298 u32 is_create)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700299{
Dave Barachba868bb2016-08-08 09:51:21 -0400300 return call_elf_section_interface_callbacks
Ed Warnickecb9cada2015-12-08 15:45:58 -0700301 (vnm, sw_if_index, is_create, vnm->sw_interface_add_del_functions);
302}
303
304#define VNET_INTERFACE_SET_FLAGS_HELPER_IS_CREATE (1 << 0)
305#define VNET_INTERFACE_SET_FLAGS_HELPER_WANT_REDISTRIBUTE (1 << 1)
306
307static clib_error_t *
Dave Barachba868bb2016-08-08 09:51:21 -0400308vnet_hw_interface_set_flags_helper (vnet_main_t * vnm, u32 hw_if_index,
309 u32 flags, u32 helper_flags)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700310{
Dave Barachba868bb2016-08-08 09:51:21 -0400311 vnet_hw_interface_t *hi = vnet_get_hw_interface (vnm, hw_if_index);
312 vnet_hw_interface_class_t *hw_class =
313 vnet_get_hw_interface_class (vnm, hi->hw_class_index);
314 vnet_device_class_t *dev_class =
315 vnet_get_device_class (vnm, hi->dev_class_index);
316 vlib_main_t *vm = vnm->vlib_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700317 u32 mask;
Dave Barachba868bb2016-08-08 09:51:21 -0400318 clib_error_t *error = 0;
319 u32 is_create =
320 (helper_flags & VNET_INTERFACE_SET_FLAGS_HELPER_IS_CREATE) != 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700321
Dave Barachba868bb2016-08-08 09:51:21 -0400322 mask =
323 (VNET_HW_INTERFACE_FLAG_LINK_UP | VNET_HW_INTERFACE_FLAG_DUPLEX_MASK |
324 VNET_HW_INTERFACE_FLAG_SPEED_MASK);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700325 flags &= mask;
326
327 /* Call hardware interface add/del callbacks. */
328 if (is_create)
329 call_hw_interface_add_del_callbacks (vnm, hw_if_index, is_create);
330
331 /* Already in the desired state? */
Dave Barachba868bb2016-08-08 09:51:21 -0400332 if (!is_create && (hi->flags & mask) == flags)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700333 goto done;
334
335 /* Some interface classes do not redistribute (e.g. are local). */
Dave Barachba868bb2016-08-08 09:51:21 -0400336 if (!dev_class->redistribute)
337 helper_flags &= ~VNET_INTERFACE_SET_FLAGS_HELPER_WANT_REDISTRIBUTE;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700338
339 if (vm->mc_main
340 && (helper_flags & VNET_INTERFACE_SET_FLAGS_HELPER_WANT_REDISTRIBUTE))
341 {
342 vnet_sw_hw_interface_state_t s;
343 s.sw_hw_if_index = hw_if_index;
344 s.flags = flags;
345 mc_serialize (vm->mc_main, &vnet_hw_interface_set_flags_msg, &s);
346 }
347
348 if ((hi->flags & VNET_HW_INTERFACE_FLAG_LINK_UP) !=
349 (flags & VNET_HW_INTERFACE_FLAG_LINK_UP))
350 {
351 /* Do hardware class (e.g. ethernet). */
352 if (hw_class->link_up_down_function
353 && (error = hw_class->link_up_down_function (vnm, hw_if_index,
354 flags)))
355 goto done;
356
Dave Barachba868bb2016-08-08 09:51:21 -0400357 error = call_elf_section_interface_callbacks
Klement Sekera2cee01d2016-09-08 17:53:13 +0200358 (vnm, hw_if_index, flags, vnm->hw_interface_link_up_down_functions);
Dave Barachba868bb2016-08-08 09:51:21 -0400359
Ed Warnickecb9cada2015-12-08 15:45:58 -0700360 if (error)
361 goto done;
362 }
363
364 hi->flags &= ~mask;
365 hi->flags |= flags;
366
Dave Barachba868bb2016-08-08 09:51:21 -0400367done:
Ed Warnickecb9cada2015-12-08 15:45:58 -0700368 return error;
369}
370
371static clib_error_t *
Dave Barachba868bb2016-08-08 09:51:21 -0400372vnet_sw_interface_set_flags_helper (vnet_main_t * vnm, u32 sw_if_index,
373 u32 flags, u32 helper_flags)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700374{
Dave Barachba868bb2016-08-08 09:51:21 -0400375 vnet_sw_interface_t *si = vnet_get_sw_interface (vnm, sw_if_index);
376 vlib_main_t *vm = vnm->vlib_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700377 u32 mask;
Dave Barachba868bb2016-08-08 09:51:21 -0400378 clib_error_t *error = 0;
379 u32 is_create =
380 (helper_flags & VNET_INTERFACE_SET_FLAGS_HELPER_IS_CREATE) != 0;
Georgi Savov3a035982016-02-25 12:56:03 -0500381 u32 old_flags;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700382
383 mask = VNET_SW_INTERFACE_FLAG_ADMIN_UP | VNET_SW_INTERFACE_FLAG_PUNT;
384 flags &= mask;
385
386 if (is_create)
387 {
Dave Barachba868bb2016-08-08 09:51:21 -0400388 error =
389 call_sw_interface_add_del_callbacks (vnm, sw_if_index, is_create);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700390 if (error)
391 goto done;
392
393 if (flags & VNET_SW_INTERFACE_FLAG_ADMIN_UP)
Dave Barachba868bb2016-08-08 09:51:21 -0400394 {
395 /* Notify everyone when the interface is created as admin up */
396 error = call_elf_section_interface_callbacks (vnm, sw_if_index,
397 flags,
398 vnm->
399 sw_interface_admin_up_down_functions);
400 if (error)
401 goto done;
402 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700403 }
404 else
405 {
Dave Barachba868bb2016-08-08 09:51:21 -0400406 vnet_sw_interface_t *si_sup = si;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700407
408 /* Check that super interface is in correct state. */
409 if (si->type == VNET_SW_INTERFACE_TYPE_SUB)
410 {
411 si_sup = vnet_get_sw_interface (vnm, si->sup_sw_if_index);
412
Calvin31a36742016-07-04 14:14:46 -0400413 /* 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 -0400414 if ((flags != (si_sup->flags & mask)) &&
415 (!((flags == 0)
416 && ((si_sup->flags & mask) ==
417 VNET_SW_INTERFACE_FLAG_ADMIN_UP))))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700418 {
419 error = clib_error_return (0, "super-interface %U must be %U",
Dave Barachba868bb2016-08-08 09:51:21 -0400420 format_vnet_sw_interface_name, vnm,
421 si_sup,
422 format_vnet_sw_interface_flags,
423 flags);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700424 goto done;
425 }
426 }
427
Paul Vinciguerrabdc0e6b2018-09-22 05:32:50 -0700428 /* Do not change state for slave link of bonded interfaces */
John Lobcebbb92016-04-05 15:47:43 -0400429 if (si->flags & VNET_SW_INTERFACE_FLAG_BOND_SLAVE)
Dave Barachba868bb2016-08-08 09:51:21 -0400430 {
431 error = clib_error_return
432 (0, "not allowed as %U belong to a BondEthernet interface",
433 format_vnet_sw_interface_name, vnm, si);
John Lobcebbb92016-04-05 15:47:43 -0400434 goto done;
Dave Barachba868bb2016-08-08 09:51:21 -0400435 }
John Lobcebbb92016-04-05 15:47:43 -0400436
Ed Warnickecb9cada2015-12-08 15:45:58 -0700437 /* Already in the desired state? */
438 if ((si->flags & mask) == flags)
439 goto done;
440
441 /* Sub-interfaces of hardware interfaces that do no redistribute,
Dave Barachba868bb2016-08-08 09:51:21 -0400442 do not redistribute themselves. */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700443 if (si_sup->type == VNET_SW_INTERFACE_TYPE_HARDWARE)
444 {
Dave Barachba868bb2016-08-08 09:51:21 -0400445 vnet_hw_interface_t *hi =
446 vnet_get_hw_interface (vnm, si_sup->hw_if_index);
447 vnet_device_class_t *dev_class =
448 vnet_get_device_class (vnm, hi->dev_class_index);
449 if (!dev_class->redistribute)
450 helper_flags &=
451 ~VNET_INTERFACE_SET_FLAGS_HELPER_WANT_REDISTRIBUTE;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700452 }
453
454 if (vm->mc_main
Dave Barachba868bb2016-08-08 09:51:21 -0400455 && (helper_flags &
456 VNET_INTERFACE_SET_FLAGS_HELPER_WANT_REDISTRIBUTE))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700457 {
458 vnet_sw_hw_interface_state_t s;
459 s.sw_hw_if_index = sw_if_index;
460 s.flags = flags;
461 mc_serialize (vm->mc_main, &vnet_sw_interface_set_flags_msg, &s);
462 }
463
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100464 /* set the flags now before invoking the registered clients
465 * so that the state they query is consistent with the state here notified */
466 old_flags = si->flags;
467 si->flags &= ~mask;
468 si->flags |= flags;
469 if ((flags | old_flags) & VNET_SW_INTERFACE_FLAG_ADMIN_UP)
470 error = call_elf_section_interface_callbacks
471 (vnm, sw_if_index, flags,
472 vnm->sw_interface_admin_up_down_functions);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700473
474 if (error)
Mohsin Kazmia50a14c2018-04-25 15:58:05 +0200475 {
476 /* restore flags on error */
477 si->flags = old_flags;
478 goto done;
479 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700480
481 if (si->type == VNET_SW_INTERFACE_TYPE_HARDWARE)
482 {
Dave Barachba868bb2016-08-08 09:51:21 -0400483 vnet_hw_interface_t *hi =
484 vnet_get_hw_interface (vnm, si->hw_if_index);
485 vnet_hw_interface_class_t *hw_class =
486 vnet_get_hw_interface_class (vnm, hi->hw_class_index);
487 vnet_device_class_t *dev_class =
488 vnet_get_device_class (vnm, hi->dev_class_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700489
Damjan Marionabce5092017-05-10 20:09:31 +0200490 if ((flags & VNET_SW_INTERFACE_FLAG_ADMIN_UP) &&
491 (si->flags & VNET_SW_INTERFACE_FLAG_ERROR))
492 {
493 error = clib_error_return (0, "Interface in the error state");
494 goto done;
495 }
496
Dave Barachba868bb2016-08-08 09:51:21 -0400497 /* save the si admin up flag */
498 old_flags = si->flags;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700499
Dave Barachba868bb2016-08-08 09:51:21 -0400500 /* update si admin up flag in advance if we are going admin down */
501 if (!(flags & VNET_SW_INTERFACE_FLAG_ADMIN_UP))
502 si->flags &= ~VNET_SW_INTERFACE_FLAG_ADMIN_UP;
Georgi Savov3a035982016-02-25 12:56:03 -0500503
Dave Barachba868bb2016-08-08 09:51:21 -0400504 if (dev_class->admin_up_down_function
505 && (error = dev_class->admin_up_down_function (vnm,
506 si->hw_if_index,
507 flags)))
508 {
509 /* restore si admin up flag to it's original state on errors */
510 si->flags = old_flags;
511 goto done;
512 }
Georgi Savov3a035982016-02-25 12:56:03 -0500513
Dave Barachba868bb2016-08-08 09:51:21 -0400514 if (hw_class->admin_up_down_function
515 && (error = hw_class->admin_up_down_function (vnm,
516 si->hw_if_index,
517 flags)))
518 {
519 /* restore si admin up flag to it's original state on errors */
520 si->flags = old_flags;
521 goto done;
522 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700523
524 /* Admin down implies link down. */
Dave Barachba868bb2016-08-08 09:51:21 -0400525 if (!(flags & VNET_SW_INTERFACE_FLAG_ADMIN_UP)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700526 && (hi->flags & VNET_HW_INTERFACE_FLAG_LINK_UP))
527 vnet_hw_interface_set_flags_helper (vnm, si->hw_if_index,
Dave Barachba868bb2016-08-08 09:51:21 -0400528 hi->flags &
529 ~VNET_HW_INTERFACE_FLAG_LINK_UP,
Ed Warnickecb9cada2015-12-08 15:45:58 -0700530 helper_flags);
531 }
532 }
533
534 si->flags &= ~mask;
535 si->flags |= flags;
536
Dave Barachba868bb2016-08-08 09:51:21 -0400537done:
Ed Warnickecb9cada2015-12-08 15:45:58 -0700538 return error;
539}
540
541clib_error_t *
542vnet_hw_interface_set_flags (vnet_main_t * vnm, u32 hw_if_index, u32 flags)
543{
544 return vnet_hw_interface_set_flags_helper
545 (vnm, hw_if_index, flags,
546 VNET_INTERFACE_SET_FLAGS_HELPER_WANT_REDISTRIBUTE);
547}
548
549clib_error_t *
550vnet_sw_interface_set_flags (vnet_main_t * vnm, u32 sw_if_index, u32 flags)
551{
552 return vnet_sw_interface_set_flags_helper
553 (vnm, sw_if_index, flags,
554 VNET_INTERFACE_SET_FLAGS_HELPER_WANT_REDISTRIBUTE);
555}
556
557static u32
Dave Barachba868bb2016-08-08 09:51:21 -0400558vnet_create_sw_interface_no_callbacks (vnet_main_t * vnm,
559 vnet_sw_interface_t * template)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700560{
Dave Barachba868bb2016-08-08 09:51:21 -0400561 vnet_interface_main_t *im = &vnm->interface_main;
562 vnet_sw_interface_t *sw;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700563 u32 sw_if_index;
564
565 pool_get (im->sw_interfaces, sw);
566 sw_if_index = sw - im->sw_interfaces;
567
568 sw[0] = template[0];
569
570 sw->flags = 0;
571 sw->sw_if_index = sw_if_index;
572 if (sw->type == VNET_SW_INTERFACE_TYPE_HARDWARE)
573 sw->sup_sw_if_index = sw->sw_if_index;
574
575 /* Allocate counters for this interface. */
576 {
577 u32 i;
578
Dave Barachba868bb2016-08-08 09:51:21 -0400579 vnet_interface_counter_lock (im);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700580
581 for (i = 0; i < vec_len (im->sw_if_counters); i++)
582 {
583 vlib_validate_simple_counter (&im->sw_if_counters[i], sw_if_index);
584 vlib_zero_simple_counter (&im->sw_if_counters[i], sw_if_index);
585 }
586
587 for (i = 0; i < vec_len (im->combined_sw_if_counters); i++)
588 {
Dave Barachba868bb2016-08-08 09:51:21 -0400589 vlib_validate_combined_counter (&im->combined_sw_if_counters[i],
590 sw_if_index);
591 vlib_zero_combined_counter (&im->combined_sw_if_counters[i],
592 sw_if_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700593 }
594
Dave Barachba868bb2016-08-08 09:51:21 -0400595 vnet_interface_counter_unlock (im);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700596 }
597
598 return sw_if_index;
599}
600
601clib_error_t *
Dave Barachba868bb2016-08-08 09:51:21 -0400602vnet_create_sw_interface (vnet_main_t * vnm, vnet_sw_interface_t * template,
603 u32 * sw_if_index)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700604{
Dave Barachba868bb2016-08-08 09:51:21 -0400605 clib_error_t *error;
606 vnet_hw_interface_t *hi;
607 vnet_device_class_t *dev_class;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700608
609 hi = vnet_get_sup_hw_interface (vnm, template->sup_sw_if_index);
610 dev_class = vnet_get_device_class (vnm, hi->dev_class_index);
611
612 if (template->type == VNET_SW_INTERFACE_TYPE_SUB &&
Dave Barachba868bb2016-08-08 09:51:21 -0400613 dev_class->subif_add_del_function)
614 {
615 error = dev_class->subif_add_del_function (vnm, hi->hw_if_index,
616 (struct vnet_sw_interface_t
617 *) template, 1);
618 if (error)
619 return error;
620 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700621
622 *sw_if_index = vnet_create_sw_interface_no_callbacks (vnm, template);
623 error = vnet_sw_interface_set_flags_helper
624 (vnm, *sw_if_index, template->flags,
625 VNET_INTERFACE_SET_FLAGS_HELPER_IS_CREATE);
626
Dave Barachba868bb2016-08-08 09:51:21 -0400627 if (error)
628 {
629 /* undo the work done by vnet_create_sw_interface_no_callbacks() */
630 vnet_interface_main_t *im = &vnm->interface_main;
631 vnet_sw_interface_t *sw =
632 pool_elt_at_index (im->sw_interfaces, *sw_if_index);
633 pool_put (im->sw_interfaces, sw);
634 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700635
636 return error;
637}
638
Dave Barachba868bb2016-08-08 09:51:21 -0400639void
640vnet_delete_sw_interface (vnet_main_t * vnm, u32 sw_if_index)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700641{
Dave Barachba868bb2016-08-08 09:51:21 -0400642 vnet_interface_main_t *im = &vnm->interface_main;
643 vnet_sw_interface_t *sw =
644 pool_elt_at_index (im->sw_interfaces, sw_if_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700645
Wojciech Decd63370c2017-01-03 10:27:03 +0100646 /* Check if the interface has config and is removed from L2 BD or XConnect */
Pavel Kotucek7c8eda12016-10-17 15:31:59 +0200647 vlib_main_t *vm = vlib_get_main ();
648 l2_input_config_t *config;
Wojciech Decd63370c2017-01-03 10:27:03 +0100649 if (sw_if_index < vec_len (l2input_main.configs))
650 {
651 config = vec_elt_at_index (l2input_main.configs, sw_if_index);
652 if (config->xconnect)
Neale Rannsb4743802018-09-05 09:13:57 -0700653 set_int_l2_mode (vm, vnm, MODE_L3, config->output_sw_if_index, 0,
654 L2_BD_PORT_TYPE_NORMAL, 0, 0);
Wojciech Decd63370c2017-01-03 10:27:03 +0100655 if (config->xconnect || config->bridge)
Neale Rannsb4743802018-09-05 09:13:57 -0700656 set_int_l2_mode (vm, vnm, MODE_L3, sw_if_index, 0,
657 L2_BD_PORT_TYPE_NORMAL, 0, 0);
Wojciech Decd63370c2017-01-03 10:27:03 +0100658 }
Neale Rannse8d7ff52018-05-31 21:23:37 -0700659 vnet_clear_sw_interface_tag (vnm, sw_if_index);
Pavel Kotucek7c8eda12016-10-17 15:31:59 +0200660
Ed Warnickecb9cada2015-12-08 15:45:58 -0700661 /* Bring down interface in case it is up. */
662 if (sw->flags != 0)
663 vnet_sw_interface_set_flags (vnm, sw_if_index, /* flags */ 0);
664
665 call_sw_interface_add_del_callbacks (vnm, sw_if_index, /* is_create */ 0);
666
667 pool_put (im->sw_interfaces, sw);
668}
669
Ole Troand7231612018-06-07 10:17:57 +0200670static clib_error_t *
671call_sw_interface_mtu_change_callbacks (vnet_main_t * vnm, u32 sw_if_index)
672{
673 return call_elf_section_interface_callbacks
674 (vnm, sw_if_index, 0, vnm->sw_interface_mtu_change_functions);
675}
676
677void
678vnet_sw_interface_set_mtu (vnet_main_t * vnm, u32 sw_if_index, u32 mtu)
679{
680 vnet_sw_interface_t *si = vnet_get_sw_interface (vnm, sw_if_index);
681
682 if (si->mtu[VNET_MTU_L3] != mtu)
683 {
684 si->mtu[VNET_MTU_L3] = mtu;
685 call_sw_interface_mtu_change_callbacks (vnm, sw_if_index);
686 }
687}
688
689void
690vnet_sw_interface_set_protocol_mtu (vnet_main_t * vnm, u32 sw_if_index,
691 u32 mtu[])
692{
693 vnet_sw_interface_t *si = vnet_get_sw_interface (vnm, sw_if_index);
694 bool changed = false;
695 int i;
696
697 for (i = 0; i < VNET_N_MTU; i++)
698 {
699 if (si->mtu[i] != mtu[i])
700 {
701 si->mtu[i] = mtu[i];
702 changed = true;
703 }
704 }
705 /* Notify interested parties */
706 if (changed)
707 call_sw_interface_mtu_change_callbacks (vnm, sw_if_index);
708}
709
Neale Ranns1855b8e2018-07-11 10:31:26 -0700710void
711vnet_sw_interface_ip_directed_broadcast (vnet_main_t * vnm,
712 u32 sw_if_index, u8 enable)
713{
714 vnet_sw_interface_t *si;
715
716 si = vnet_get_sw_interface (vnm, sw_if_index);
717
718 if (enable)
719 si->flags |= VNET_SW_INTERFACE_FLAG_DIRECTED_BCAST;
720 else
721 si->flags &= ~VNET_SW_INTERFACE_FLAG_DIRECTED_BCAST;
722
723 ip4_directed_broadcast (sw_if_index, enable);
724}
725
Ole Troand7231612018-06-07 10:17:57 +0200726/*
727 * Reflect a change in hardware MTU on protocol MTUs
728 */
729static walk_rc_t
730sw_interface_walk_callback (vnet_main_t * vnm, u32 sw_if_index, void *ctx)
731{
732 u32 *link_mtu = ctx;
733 vnet_sw_interface_set_mtu (vnm, sw_if_index, *link_mtu);
734 return WALK_CONTINUE;
735}
736
737void
738vnet_hw_interface_set_mtu (vnet_main_t * vnm, u32 hw_if_index, u32 mtu)
739{
740 vnet_hw_interface_t *hi = vnet_get_hw_interface (vnm, hw_if_index);
741
742 if (hi->max_packet_bytes != mtu)
743 {
744 hi->max_packet_bytes = mtu;
745 ethernet_set_flags (vnm, hw_if_index, ETHERNET_INTERFACE_FLAG_MTU);
746 vnet_hw_interface_walk_sw (vnm, hw_if_index, sw_interface_walk_callback,
747 &mtu);
748 }
749}
750
Dave Barachba868bb2016-08-08 09:51:21 -0400751static void
752setup_tx_node (vlib_main_t * vm,
753 u32 node_index, vnet_device_class_t * dev_class)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700754{
Dave Barachba868bb2016-08-08 09:51:21 -0400755 vlib_node_t *n = vlib_get_node (vm, node_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700756
757 n->function = dev_class->tx_function;
758 n->format_trace = dev_class->format_tx_trace;
Neale Ranns5e575b12016-10-03 09:40:25 +0100759
Dave Barachba868bb2016-08-08 09:51:21 -0400760 vlib_register_errors (vm, node_index,
761 dev_class->tx_function_n_errors,
762 dev_class->tx_function_error_strings);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700763}
764
Dave Barachba868bb2016-08-08 09:51:21 -0400765static void
766setup_output_node (vlib_main_t * vm,
767 u32 node_index, vnet_hw_interface_class_t * hw_class)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700768{
Dave Barachba868bb2016-08-08 09:51:21 -0400769 vlib_node_t *n = vlib_get_node (vm, node_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700770 n->format_buffer = hw_class->format_header;
771 n->unformat_buffer = hw_class->unformat_header;
772}
773
774/* Register an interface instance. */
775u32
776vnet_register_interface (vnet_main_t * vnm,
777 u32 dev_class_index,
778 u32 dev_instance,
Dave Barachba868bb2016-08-08 09:51:21 -0400779 u32 hw_class_index, u32 hw_instance)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700780{
Dave Barachba868bb2016-08-08 09:51:21 -0400781 vnet_interface_main_t *im = &vnm->interface_main;
782 vnet_hw_interface_t *hw;
783 vnet_device_class_t *dev_class =
784 vnet_get_device_class (vnm, dev_class_index);
785 vnet_hw_interface_class_t *hw_class =
786 vnet_get_hw_interface_class (vnm, hw_class_index);
787 vlib_main_t *vm = vnm->vlib_main;
Damjan Marion152e21d2016-11-29 14:55:43 +0100788 vnet_feature_config_main_t *fcm;
789 vnet_config_main_t *cm;
790 u32 hw_index, i;
Neale Rannscbe8d652018-04-27 04:42:47 -0700791 char *tx_node_name = NULL, *output_node_name = NULL;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700792
793 pool_get (im->hw_interfaces, hw);
John Lo5957a142018-01-18 12:44:50 -0500794 memset (hw, 0, sizeof (*hw));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700795
796 hw_index = hw - im->hw_interfaces;
797 hw->hw_if_index = hw_index;
Damjan Marion4e53a0d2017-06-21 14:29:44 +0200798 hw->default_rx_mode = VNET_HW_INTERFACE_RX_MODE_POLLING;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700799
800 if (dev_class->format_device_name)
Dave Barachba868bb2016-08-08 09:51:21 -0400801 hw->name = format (0, "%U", dev_class->format_device_name, dev_instance);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700802 else if (hw_class->format_interface_name)
803 hw->name = format (0, "%U", hw_class->format_interface_name,
804 dev_instance);
805 else
806 hw->name = format (0, "%s%x", hw_class->name, dev_instance);
807
Dave Barachba868bb2016-08-08 09:51:21 -0400808 if (!im->hw_interface_by_name)
809 im->hw_interface_by_name = hash_create_vec ( /* size */ 0,
Ed Warnickecb9cada2015-12-08 15:45:58 -0700810 sizeof (hw->name[0]),
811 sizeof (uword));
812
813 hash_set_mem (im->hw_interface_by_name, hw->name, hw_index);
814
815 /* Make hardware interface point to software interface. */
816 {
Eyal Baric5b13602016-11-24 19:42:43 +0200817 vnet_sw_interface_t sw = {
818 .type = VNET_SW_INTERFACE_TYPE_HARDWARE,
819 .flood_class = VNET_FLOOD_CLASS_NORMAL,
820 .hw_if_index = hw_index
821 };
Ed Warnickecb9cada2015-12-08 15:45:58 -0700822 hw->sw_if_index = vnet_create_sw_interface_no_callbacks (vnm, &sw);
823 }
824
825 hw->dev_class_index = dev_class_index;
826 hw->dev_instance = dev_instance;
827 hw->hw_class_index = hw_class_index;
828 hw->hw_instance = hw_instance;
829
830 hw->max_rate_bits_per_sec = 0;
831 hw->min_packet_bytes = 0;
Ole Troand7231612018-06-07 10:17:57 +0200832 vnet_sw_interface_set_mtu (vnm, hw->sw_if_index, 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700833
John Loe5453d02018-01-23 19:21:34 -0500834 if (dev_class->tx_function == 0)
835 goto no_output_nodes; /* No output/tx nodes to create */
836
Ed Warnickecb9cada2015-12-08 15:45:58 -0700837 tx_node_name = (char *) format (0, "%v-tx", hw->name);
838 output_node_name = (char *) format (0, "%v-output", hw->name);
839
840 /* If we have previously deleted interface nodes, re-use them. */
841 if (vec_len (im->deleted_hw_interface_nodes) > 0)
842 {
Dave Barachba868bb2016-08-08 09:51:21 -0400843 vnet_hw_interface_nodes_t *hn;
Pierre Pfister064f55d2016-10-17 15:58:29 +0100844 vlib_node_t *node;
845 vlib_node_runtime_t *nrt;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700846
847 hn = vec_end (im->deleted_hw_interface_nodes) - 1;
848
849 hw->tx_node_index = hn->tx_node_index;
850 hw->output_node_index = hn->output_node_index;
851
852 vlib_node_rename (vm, hw->tx_node_index, "%v", tx_node_name);
853 vlib_node_rename (vm, hw->output_node_index, "%v", output_node_name);
854
Igor Mikhailov (imichail)8249a582017-06-15 20:47:48 -0700855 /* *INDENT-OFF* */
856 foreach_vlib_main ({
857 vnet_interface_output_runtime_t *rt;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700858
Igor Mikhailov (imichail)8249a582017-06-15 20:47:48 -0700859 rt = vlib_node_get_runtime_data (this_vlib_main, hw->output_node_index);
860 ASSERT (rt->is_deleted == 1);
861 rt->is_deleted = 0;
862 rt->hw_if_index = hw_index;
863 rt->sw_if_index = hw->sw_if_index;
864 rt->dev_instance = hw->dev_instance;
865
866 rt = vlib_node_get_runtime_data (this_vlib_main, hw->tx_node_index);
867 rt->hw_if_index = hw_index;
868 rt->sw_if_index = hw->sw_if_index;
869 rt->dev_instance = hw->dev_instance;
870 });
871 /* *INDENT-ON* */
Dave Barachb8dca742016-07-01 12:38:11 -0400872
Pierre Pfister064f55d2016-10-17 15:58:29 +0100873 /* The new class may differ from the old one.
874 * Functions have to be updated. */
875 node = vlib_get_node (vm, hw->output_node_index);
Damjan Marion10ae7662017-06-30 19:53:03 +0200876 node->function = vnet_interface_output_node_multiarch_select ();
Pierre Pfister064f55d2016-10-17 15:58:29 +0100877 node->format_trace = format_vnet_interface_output_trace;
Damjan Marionc418e4a2017-07-27 04:07:50 -0400878 /* *INDENT-OFF* */
879 foreach_vlib_main ({
880 nrt = vlib_node_get_runtime (this_vlib_main, hw->output_node_index);
881 nrt->function = node->function;
882 });
883 /* *INDENT-ON* */
Pierre Pfister064f55d2016-10-17 15:58:29 +0100884
885 node = vlib_get_node (vm, hw->tx_node_index);
886 node->function = dev_class->tx_function;
887 node->format_trace = dev_class->format_tx_trace;
Damjan Marionc418e4a2017-07-27 04:07:50 -0400888 /* *INDENT-OFF* */
889 foreach_vlib_main ({
890 nrt = vlib_node_get_runtime (this_vlib_main, hw->tx_node_index);
891 nrt->function = node->function;
892 });
893 /* *INDENT-ON* */
Pierre Pfister064f55d2016-10-17 15:58:29 +0100894
Ed Warnickecb9cada2015-12-08 15:45:58 -0700895 _vec_len (im->deleted_hw_interface_nodes) -= 1;
896 }
897 else
898 {
899 vlib_node_registration_t r;
900 vnet_interface_output_runtime_t rt = {
901 .hw_if_index = hw_index,
902 .sw_if_index = hw->sw_if_index,
903 .dev_instance = hw->dev_instance,
904 .is_deleted = 0,
905 };
906
907 memset (&r, 0, sizeof (r));
908 r.type = VLIB_NODE_TYPE_INTERNAL;
909 r.runtime_data = &rt;
910 r.runtime_data_bytes = sizeof (rt);
911 r.scalar_size = 0;
912 r.vector_size = sizeof (u32);
913
914 r.flags = VLIB_NODE_FLAG_IS_OUTPUT;
915 r.name = tx_node_name;
916 r.function = dev_class->tx_function;
917
918 hw->tx_node_index = vlib_register_node (vm, &r);
919
920 vlib_node_add_named_next_with_slot (vm, hw->tx_node_index,
921 "error-drop",
922 VNET_INTERFACE_TX_NEXT_DROP);
923
924 r.flags = 0;
925 r.name = output_node_name;
Damjan Marion10ae7662017-06-30 19:53:03 +0200926 r.function = vnet_interface_output_node_multiarch_select ();
Ed Warnickecb9cada2015-12-08 15:45:58 -0700927 r.format_trace = format_vnet_interface_output_trace;
928
929 {
Dave Barachba868bb2016-08-08 09:51:21 -0400930 static char *e[] = {
Ed Warnickecb9cada2015-12-08 15:45:58 -0700931 "interface is down",
932 "interface is deleted",
933 };
934
935 r.n_errors = ARRAY_LEN (e);
936 r.error_strings = e;
937 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700938 hw->output_node_index = vlib_register_node (vm, &r);
939
Damjan Marion9c6ae5f2016-11-15 23:20:01 +0100940 vlib_node_add_named_next_with_slot (vm, hw->output_node_index,
941 "error-drop",
942 VNET_INTERFACE_OUTPUT_NEXT_DROP);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700943 vlib_node_add_next_with_slot (vm, hw->output_node_index,
944 hw->tx_node_index,
945 VNET_INTERFACE_OUTPUT_NEXT_TX);
Damjan Marion152e21d2016-11-29 14:55:43 +0100946
947 /* add interface to the list of "output-interface" feature arc start nodes
948 and clone nexts from 1st interface if it exists */
949 fcm = vnet_feature_get_config_main (im->output_feature_arc_index);
950 cm = &fcm->config_main;
951 i = vec_len (cm->start_node_indices);
952 vec_validate (cm->start_node_indices, i);
953 cm->start_node_indices[i] = hw->output_node_index;
954 if (hw_index)
955 {
956 /* copy nexts from 1st interface */
957 vnet_hw_interface_t *first_hw;
958 vlib_node_t *first_node;
959
960 first_hw = vnet_get_hw_interface (vnm, /* hw_if_index */ 0);
961 first_node = vlib_get_node (vm, first_hw->output_node_index);
962
963 /* 1st 2 nexts are already added above */
964 for (i = 2; i < vec_len (first_node->next_nodes); i++)
965 vlib_node_add_next_with_slot (vm, hw->output_node_index,
966 first_node->next_nodes[i], i);
967 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700968 }
969
970 setup_output_node (vm, hw->output_node_index, hw_class);
971 setup_tx_node (vm, hw->tx_node_index, dev_class);
972
John Loe5453d02018-01-23 19:21:34 -0500973no_output_nodes:
Ed Warnickecb9cada2015-12-08 15:45:58 -0700974 /* Call all up/down callbacks with zero flags when interface is created. */
Dave Barachba868bb2016-08-08 09:51:21 -0400975 vnet_sw_interface_set_flags_helper (vnm, hw->sw_if_index, /* flags */ 0,
976 VNET_INTERFACE_SET_FLAGS_HELPER_IS_CREATE);
977 vnet_hw_interface_set_flags_helper (vnm, hw_index, /* flags */ 0,
978 VNET_INTERFACE_SET_FLAGS_HELPER_IS_CREATE);
Neale Rannscbe8d652018-04-27 04:42:47 -0700979 vec_free (tx_node_name);
980 vec_free (output_node_name);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700981
982 return hw_index;
983}
984
Dave Barachba868bb2016-08-08 09:51:21 -0400985void
986vnet_delete_hw_interface (vnet_main_t * vnm, u32 hw_if_index)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700987{
Dave Barachba868bb2016-08-08 09:51:21 -0400988 vnet_interface_main_t *im = &vnm->interface_main;
989 vnet_hw_interface_t *hw = vnet_get_hw_interface (vnm, hw_if_index);
990 vlib_main_t *vm = vnm->vlib_main;
John Loe5453d02018-01-23 19:21:34 -0500991 vnet_device_class_t *dev_class = vnet_get_device_class (vnm,
992 hw->dev_class_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700993 /* If it is up, mark it down. */
994 if (hw->flags != 0)
995 vnet_hw_interface_set_flags (vnm, hw_if_index, /* flags */ 0);
996
997 /* Call delete callbacks. */
998 call_hw_interface_add_del_callbacks (vnm, hw_if_index, /* is_create */ 0);
999
Ed Warnickecb9cada2015-12-08 15:45:58 -07001000 /* Delete any sub-interfaces. */
1001 {
1002 u32 id, sw_if_index;
Dave Barachba868bb2016-08-08 09:51:21 -04001003 /* *INDENT-OFF* */
John Lo5957a142018-01-18 12:44:50 -05001004 hash_foreach (id, sw_if_index, hw->sub_interface_sw_if_index_by_id,
1005 ({
1006 vnet_sw_interface_t *si = vnet_get_sw_interface (vnm, sw_if_index);
1007 u64 sup_and_sub_key =
1008 ((u64) (si->sup_sw_if_index) << 32) | (u64) si->sub.id;
1009 hash_unset_mem_free (&im->sw_if_index_by_sup_and_sub, &sup_and_sub_key);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001010 vnet_delete_sw_interface (vnm, sw_if_index);
1011 }));
John Lo5957a142018-01-18 12:44:50 -05001012 hash_free (hw->sub_interface_sw_if_index_by_id);
Dave Barachba868bb2016-08-08 09:51:21 -04001013 /* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07001014 }
1015
John Lo5957a142018-01-18 12:44:50 -05001016 /* Delete software interface corresponding to hardware interface. */
1017 vnet_delete_sw_interface (vnm, hw->sw_if_index);
1018
John Loe5453d02018-01-23 19:21:34 -05001019 if (dev_class->tx_function)
1020 {
1021 /* Put output/tx nodes into recycle pool */
1022 vnet_hw_interface_nodes_t *dn;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001023
John Loe5453d02018-01-23 19:21:34 -05001024 /* *INDENT-OFF* */
1025 foreach_vlib_main
1026 ({
1027 vnet_interface_output_runtime_t *rt =
1028 vlib_node_get_runtime_data (this_vlib_main, hw->output_node_index);
Igor Mikhailov (imichail)8249a582017-06-15 20:47:48 -07001029
John Loe5453d02018-01-23 19:21:34 -05001030 /* Mark node runtime as deleted so output node (if called)
1031 * will drop packets. */
1032 rt->is_deleted = 1;
1033 });
1034 /* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07001035
John Loe5453d02018-01-23 19:21:34 -05001036 vlib_node_rename (vm, hw->output_node_index,
1037 "interface-%d-output-deleted", hw_if_index);
1038 vlib_node_rename (vm, hw->tx_node_index, "interface-%d-tx-deleted",
1039 hw_if_index);
1040 vec_add2 (im->deleted_hw_interface_nodes, dn, 1);
1041 dn->tx_node_index = hw->tx_node_index;
1042 dn->output_node_index = hw->output_node_index;
1043 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001044
1045 hash_unset_mem (im->hw_interface_by_name, hw->name);
1046 vec_free (hw->name);
Neale Rannscbe8d652018-04-27 04:42:47 -07001047 vec_free (hw->hw_address);
Damjan Marion153646e2017-04-05 18:15:45 +02001048 vec_free (hw->input_node_thread_index_by_queue);
1049 vec_free (hw->dq_runtime_index_by_queue);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001050
1051 pool_put (im->hw_interfaces, hw);
1052}
1053
Neale Ranns8b37b872016-11-21 12:25:22 +00001054void
1055vnet_hw_interface_walk_sw (vnet_main_t * vnm,
1056 u32 hw_if_index,
1057 vnet_hw_sw_interface_walk_t fn, void *ctx)
1058{
1059 vnet_hw_interface_t *hi;
1060 u32 id, sw_if_index;
1061
1062 hi = vnet_get_hw_interface (vnm, hw_if_index);
Neale Ranns17ff3c12018-07-04 10:24:24 -07001063 /* the super first, then the sub interfaces */
1064 if (WALK_STOP == fn (vnm, hi->sw_if_index, ctx))
1065 return;
Neale Ranns8b37b872016-11-21 12:25:22 +00001066
1067 /* *INDENT-OFF* */
1068 hash_foreach (id, sw_if_index,
1069 hi->sub_interface_sw_if_index_by_id,
1070 ({
Neale Ranns0053de62018-05-22 08:40:52 -07001071 if (WALK_STOP == fn (vnm, sw_if_index, ctx))
1072 break;
Neale Ranns8b37b872016-11-21 12:25:22 +00001073 }));
1074 /* *INDENT-ON* */
1075}
1076
Neale Ranns0053de62018-05-22 08:40:52 -07001077void
Neale Ranns17ff3c12018-07-04 10:24:24 -07001078vnet_hw_interface_walk (vnet_main_t * vnm,
1079 vnet_hw_interface_walk_t fn, void *ctx)
1080{
1081 vnet_interface_main_t *im;
1082 vnet_hw_interface_t *hi;
1083
1084 im = &vnm->interface_main;
1085
1086 /* *INDENT-OFF* */
1087 pool_foreach (hi, im->hw_interfaces,
1088 ({
1089 if (WALK_STOP == fn(vnm, hi->hw_if_index, ctx))
1090 break;
1091 }));
1092 /* *INDENT-ON* */
1093}
1094
1095void
Neale Ranns0053de62018-05-22 08:40:52 -07001096vnet_sw_interface_walk (vnet_main_t * vnm,
1097 vnet_sw_interface_walk_t fn, void *ctx)
1098{
1099 vnet_interface_main_t *im;
1100 vnet_sw_interface_t *si;
1101
1102 im = &vnm->interface_main;
1103
1104 /* *INDENT-OFF* */
1105 pool_foreach (si, im->sw_interfaces,
1106 {
1107 if (WALK_STOP == fn (vnm, si, ctx))
1108 break;
1109 });
1110 /* *INDENT-ON* */
1111}
1112
Dave Barachba868bb2016-08-08 09:51:21 -04001113static void
1114serialize_vnet_hw_interface_set_class (serialize_main_t * m, va_list * va)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001115{
1116 u32 hw_if_index = va_arg (*va, u32);
Dave Barachba868bb2016-08-08 09:51:21 -04001117 char *hw_class_name = va_arg (*va, char *);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001118 serialize_integer (m, hw_if_index, sizeof (hw_if_index));
1119 serialize_cstring (m, hw_class_name);
1120}
1121
Dave Barachba868bb2016-08-08 09:51:21 -04001122static void
1123unserialize_vnet_hw_interface_set_class (serialize_main_t * m, va_list * va)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001124{
1125 CLIB_UNUSED (mc_main_t * mc) = va_arg (*va, mc_main_t *);
Dave Barachba868bb2016-08-08 09:51:21 -04001126 vnet_main_t *vnm = vnet_get_main ();
Ed Warnickecb9cada2015-12-08 15:45:58 -07001127 u32 hw_if_index;
Dave Barachba868bb2016-08-08 09:51:21 -04001128 char *hw_class_name;
1129 uword *p;
1130 clib_error_t *error;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001131
1132 unserialize_integer (m, &hw_if_index, sizeof (hw_if_index));
1133 unserialize_cstring (m, &hw_class_name);
Dave Barachba868bb2016-08-08 09:51:21 -04001134 p =
1135 hash_get (vnm->interface_main.hw_interface_class_by_name, hw_class_name);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001136 ASSERT (p != 0);
Dave Barachba868bb2016-08-08 09:51:21 -04001137 error = vnet_hw_interface_set_class_helper (vnm, hw_if_index, p[0],
1138 /* redistribute */ 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001139 if (error)
1140 clib_error_report (error);
1141}
1142
Dave Barachba868bb2016-08-08 09:51:21 -04001143MC_SERIALIZE_MSG (vnet_hw_interface_set_class_msg, static) =
Ed Warnickecb9cada2015-12-08 15:45:58 -07001144{
Dave Barachba868bb2016-08-08 09:51:21 -04001145.name = "vnet_hw_interface_set_class",.serialize =
1146 serialize_vnet_hw_interface_set_class,.unserialize =
1147 unserialize_vnet_hw_interface_set_class,};
1148
1149void
1150vnet_hw_interface_init_for_class (vnet_main_t * vnm, u32 hw_if_index,
1151 u32 hw_class_index, u32 hw_instance)
1152{
1153 vnet_hw_interface_t *hi = vnet_get_hw_interface (vnm, hw_if_index);
1154 vnet_hw_interface_class_t *hc =
1155 vnet_get_hw_interface_class (vnm, hw_class_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001156
1157 hi->hw_class_index = hw_class_index;
1158 hi->hw_instance = hw_instance;
1159 setup_output_node (vnm->vlib_main, hi->output_node_index, hc);
1160}
1161
1162static clib_error_t *
Dave Barachba868bb2016-08-08 09:51:21 -04001163vnet_hw_interface_set_class_helper (vnet_main_t * vnm, u32 hw_if_index,
1164 u32 hw_class_index, u32 redistribute)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001165{
Dave Barachba868bb2016-08-08 09:51:21 -04001166 vnet_hw_interface_t *hi = vnet_get_hw_interface (vnm, hw_if_index);
1167 vnet_sw_interface_t *si = vnet_get_sw_interface (vnm, hi->sw_if_index);
1168 vnet_hw_interface_class_t *old_class =
1169 vnet_get_hw_interface_class (vnm, hi->hw_class_index);
1170 vnet_hw_interface_class_t *new_class =
1171 vnet_get_hw_interface_class (vnm, hw_class_index);
1172 vnet_device_class_t *dev_class =
1173 vnet_get_device_class (vnm, hi->dev_class_index);
1174 clib_error_t *error = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001175
1176 /* New class equals old class? Nothing to do. */
1177 if (hi->hw_class_index == hw_class_index)
1178 return 0;
1179
1180 /* No need (and incorrect since admin up flag may be set) to do error checking when
1181 receiving unserialize message. */
1182 if (redistribute)
1183 {
1184 if (si->flags & VNET_SW_INTERFACE_FLAG_ADMIN_UP)
Dave Barachba868bb2016-08-08 09:51:21 -04001185 return clib_error_return (0,
1186 "%v must be admin down to change class from %s to %s",
Ed Warnickecb9cada2015-12-08 15:45:58 -07001187 hi->name, old_class->name, new_class->name);
1188
1189 /* Make sure interface supports given class. */
1190 if ((new_class->is_valid_class_for_interface
Dave Barachba868bb2016-08-08 09:51:21 -04001191 && !new_class->is_valid_class_for_interface (vnm, hw_if_index,
1192 hw_class_index))
1193 || (dev_class->is_valid_class_for_interface
1194 && !dev_class->is_valid_class_for_interface (vnm, hw_if_index,
1195 hw_class_index)))
1196 return clib_error_return (0,
1197 "%v class cannot be changed from %s to %s",
Ed Warnickecb9cada2015-12-08 15:45:58 -07001198 hi->name, old_class->name, new_class->name);
1199
1200 if (vnm->vlib_main->mc_main)
1201 {
Dave Barachba868bb2016-08-08 09:51:21 -04001202 mc_serialize (vnm->vlib_main->mc_main,
1203 &vnet_hw_interface_set_class_msg, hw_if_index,
1204 new_class->name);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001205 return 0;
1206 }
1207 }
1208
1209 if (old_class->hw_class_change)
Dave Barachba868bb2016-08-08 09:51:21 -04001210 old_class->hw_class_change (vnm, hw_if_index, old_class->index,
1211 new_class->index);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001212
Dave Barachba868bb2016-08-08 09:51:21 -04001213 vnet_hw_interface_init_for_class (vnm, hw_if_index, new_class->index,
1214 /* instance */ ~0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001215
1216 if (new_class->hw_class_change)
Dave Barachba868bb2016-08-08 09:51:21 -04001217 new_class->hw_class_change (vnm, hw_if_index, old_class->index,
1218 new_class->index);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001219
1220 if (dev_class->hw_class_change)
1221 dev_class->hw_class_change (vnm, hw_if_index, new_class->index);
1222
1223 return error;
1224}
1225
1226clib_error_t *
Dave Barachba868bb2016-08-08 09:51:21 -04001227vnet_hw_interface_set_class (vnet_main_t * vnm, u32 hw_if_index,
1228 u32 hw_class_index)
1229{
1230 return vnet_hw_interface_set_class_helper (vnm, hw_if_index, hw_class_index,
1231 /* redistribute */ 1);
1232}
Ed Warnickecb9cada2015-12-08 15:45:58 -07001233
1234static int
Dave Barachba868bb2016-08-08 09:51:21 -04001235vnet_hw_interface_rx_redirect_to_node_helper (vnet_main_t * vnm,
1236 u32 hw_if_index,
1237 u32 node_index,
1238 u32 redistribute)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001239{
Dave Barachba868bb2016-08-08 09:51:21 -04001240 vnet_hw_interface_t *hi = vnet_get_hw_interface (vnm, hw_if_index);
1241 vnet_device_class_t *dev_class = vnet_get_device_class
Ed Warnickecb9cada2015-12-08 15:45:58 -07001242 (vnm, hi->dev_class_index);
1243
1244 if (redistribute)
1245 {
1246 /* $$$$ fixme someday maybe */
Dave Barachba868bb2016-08-08 09:51:21 -04001247 ASSERT (vnm->vlib_main->mc_main == 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001248 }
1249 if (dev_class->rx_redirect_to_node)
1250 {
1251 dev_class->rx_redirect_to_node (vnm, hw_if_index, node_index);
1252 return 0;
1253 }
1254
1255 return VNET_API_ERROR_UNIMPLEMENTED;
1256}
1257
Dave Barachba868bb2016-08-08 09:51:21 -04001258int
1259vnet_hw_interface_rx_redirect_to_node (vnet_main_t * vnm, u32 hw_if_index,
1260 u32 node_index)
1261{
1262 return vnet_hw_interface_rx_redirect_to_node_helper (vnm, hw_if_index,
1263 node_index,
1264 1 /* redistribute */ );
1265}
Ed Warnickecb9cada2015-12-08 15:45:58 -07001266
1267word
1268vnet_sw_interface_compare (vnet_main_t * vnm,
1269 uword sw_if_index0, uword sw_if_index1)
1270{
Dave Barachba868bb2016-08-08 09:51:21 -04001271 vnet_sw_interface_t *sup0 = vnet_get_sup_sw_interface (vnm, sw_if_index0);
1272 vnet_sw_interface_t *sup1 = vnet_get_sup_sw_interface (vnm, sw_if_index1);
1273 vnet_hw_interface_t *h0 = vnet_get_hw_interface (vnm, sup0->hw_if_index);
1274 vnet_hw_interface_t *h1 = vnet_get_hw_interface (vnm, sup1->hw_if_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001275
1276 if (h0 != h1)
1277 return vec_cmp (h0->name, h1->name);
1278 return (word) h0->hw_instance - (word) h1->hw_instance;
1279}
1280
1281word
1282vnet_hw_interface_compare (vnet_main_t * vnm,
1283 uword hw_if_index0, uword hw_if_index1)
1284{
Dave Barachba868bb2016-08-08 09:51:21 -04001285 vnet_hw_interface_t *h0 = vnet_get_hw_interface (vnm, hw_if_index0);
1286 vnet_hw_interface_t *h1 = vnet_get_hw_interface (vnm, hw_if_index1);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001287
1288 if (h0 != h1)
1289 return vec_cmp (h0->name, h1->name);
1290 return (word) h0->hw_instance - (word) h1->hw_instance;
1291}
1292
Neale Rannsb80c5362016-10-08 13:03:40 +01001293int
1294vnet_sw_interface_is_p2p (vnet_main_t * vnm, u32 sw_if_index)
1295{
Pavel Kotucek15ac81c2017-06-20 14:00:26 +02001296 vnet_sw_interface_t *si = vnet_get_sw_interface (vnm, sw_if_index);
Neale Ranns17ff3c12018-07-04 10:24:24 -07001297 if ((si->type == VNET_SW_INTERFACE_TYPE_P2P) ||
1298 (si->type == VNET_SW_INTERFACE_TYPE_PIPE))
Pavel Kotucek15ac81c2017-06-20 14:00:26 +02001299 return 1;
1300
Neale Rannsb80c5362016-10-08 13:03:40 +01001301 vnet_hw_interface_t *hw = vnet_get_sup_hw_interface (vnm, sw_if_index);
1302 vnet_hw_interface_class_t *hc =
1303 vnet_get_hw_interface_class (vnm, hw->hw_class_index);
1304
1305 return (hc->flags & VNET_HW_INTERFACE_CLASS_FLAG_P2P);
1306}
1307
Ed Warnickecb9cada2015-12-08 15:45:58 -07001308clib_error_t *
1309vnet_interface_init (vlib_main_t * vm)
1310{
Dave Barachba868bb2016-08-08 09:51:21 -04001311 vnet_main_t *vnm = vnet_get_main ();
1312 vnet_interface_main_t *im = &vnm->interface_main;
1313 vlib_buffer_t *b = 0;
1314 vnet_buffer_opaque_t *o = 0;
Dave Barach7bee7732017-10-18 18:48:11 -04001315 clib_error_t *error;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001316
1317 /*
1318 * Keep people from shooting themselves in the foot.
1319 */
Dave Barachba868bb2016-08-08 09:51:21 -04001320 if (sizeof (b->opaque) != sizeof (vnet_buffer_opaque_t))
Ed Warnickecb9cada2015-12-08 15:45:58 -07001321 {
1322#define _(a) if (sizeof(o->a) > sizeof (o->unused)) \
1323 clib_warning \
1324 ("FATAL: size of opaque union subtype %s is %d (max %d)", \
1325 #a, sizeof(o->a), sizeof (o->unused));
Dave Barachba868bb2016-08-08 09:51:21 -04001326 foreach_buffer_opaque_union_subtype;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001327#undef _
1328
Dave Barachba868bb2016-08-08 09:51:21 -04001329 return clib_error_return
1330 (0, "FATAL: size of vlib buffer opaque %d, size of vnet opaque %d",
1331 sizeof (b->opaque), sizeof (vnet_buffer_opaque_t));
Ed Warnickecb9cada2015-12-08 15:45:58 -07001332 }
1333
Dave Barachba868bb2016-08-08 09:51:21 -04001334 im->sw_if_counter_lock = clib_mem_alloc_aligned (CLIB_CACHE_LINE_BYTES,
1335 CLIB_CACHE_LINE_BYTES);
1336 im->sw_if_counter_lock[0] = 1; /* should be no need */
Ed Warnickecb9cada2015-12-08 15:45:58 -07001337
Dave Barachba868bb2016-08-08 09:51:21 -04001338 vec_validate (im->sw_if_counters, VNET_N_SIMPLE_INTERFACE_COUNTER - 1);
Ole Troan1ec0ea82018-06-14 09:28:27 +02001339#define _(E,n,p) \
1340 im->sw_if_counters[VNET_INTERFACE_COUNTER_##E].name = #n; \
1341 im->sw_if_counters[VNET_INTERFACE_COUNTER_##E].stat_segment_name = "/" #p "/" #n;
1342 foreach_simple_interface_counter_name
1343#undef _
1344 vec_validate (im->combined_sw_if_counters,
1345 VNET_N_COMBINED_INTERFACE_COUNTER - 1);
1346#define _(E,n,p) \
1347 im->combined_sw_if_counters[VNET_INTERFACE_COUNTER_##E].name = #n; \
1348 im->combined_sw_if_counters[VNET_INTERFACE_COUNTER_##E].stat_segment_name = "/" #p "/" #n;
1349 foreach_combined_interface_counter_name
1350#undef _
1351 im->sw_if_counter_lock[0] = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001352
Dave Barachba868bb2016-08-08 09:51:21 -04001353 im->device_class_by_name = hash_create_string ( /* size */ 0,
Ed Warnickecb9cada2015-12-08 15:45:58 -07001354 sizeof (uword));
1355 {
Dave Barachba868bb2016-08-08 09:51:21 -04001356 vnet_device_class_t *c;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001357
1358 c = vnm->device_class_registrations;
1359
1360 while (c)
1361 {
Dave Barachba868bb2016-08-08 09:51:21 -04001362 c->index = vec_len (im->device_classes);
1363 hash_set_mem (im->device_class_by_name, c->name, c->index);
Mohsin Kazmidd8e7d02018-07-23 14:45:57 +02001364
1365 if (c->tx_fn_registrations)
1366 {
1367 vlib_node_fn_registration_t *fnr = c->tx_fn_registrations;
1368 int priority = -1;
1369
Paul Vinciguerrabdc0e6b2018-09-22 05:32:50 -07001370 /* to avoid confusion, please remove ".tx_function" statement
Mohsin Kazmidd8e7d02018-07-23 14:45:57 +02001371 from VNET_DEVICE_CLASS() if using function candidates */
1372 ASSERT (c->tx_function == 0);
1373
1374 while (fnr)
1375 {
1376 if (fnr->priority > priority)
1377 {
1378 priority = fnr->priority;
1379 c->tx_function = fnr->function;
1380 }
1381 fnr = fnr->next_registration;
1382 }
1383 }
1384
Dave Barachba868bb2016-08-08 09:51:21 -04001385 vec_add1 (im->device_classes, c[0]);
1386 c = c->next_class_registration;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001387 }
1388 }
1389
Dave Barachba868bb2016-08-08 09:51:21 -04001390 im->hw_interface_class_by_name = hash_create_string ( /* size */ 0,
Ed Warnickecb9cada2015-12-08 15:45:58 -07001391 sizeof (uword));
1392
Dave Barachba868bb2016-08-08 09:51:21 -04001393 im->sw_if_index_by_sup_and_sub = hash_create_mem (0, sizeof (u64),
1394 sizeof (uword));
Ed Warnickecb9cada2015-12-08 15:45:58 -07001395 {
Dave Barachba868bb2016-08-08 09:51:21 -04001396 vnet_hw_interface_class_t *c;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001397
1398 c = vnm->hw_interface_class_registrations;
Dave Barachba868bb2016-08-08 09:51:21 -04001399
Ed Warnickecb9cada2015-12-08 15:45:58 -07001400 while (c)
1401 {
Dave Barachba868bb2016-08-08 09:51:21 -04001402 c->index = vec_len (im->hw_interface_classes);
1403 hash_set_mem (im->hw_interface_class_by_name, c->name, c->index);
Neale Rannsb80c5362016-10-08 13:03:40 +01001404
1405 if (NULL == c->build_rewrite)
1406 c->build_rewrite = default_build_rewrite;
1407 if (NULL == c->update_adjacency)
1408 c->update_adjacency = default_update_adjacency;
1409
Dave Barachba868bb2016-08-08 09:51:21 -04001410 vec_add1 (im->hw_interface_classes, c[0]);
1411 c = c->next_class_registration;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001412 }
1413 }
1414
Dave Barach7bee7732017-10-18 18:48:11 -04001415 if ((error = vlib_call_init_function (vm, vnet_interface_cli_init)))
Ed Warnickecb9cada2015-12-08 15:45:58 -07001416 return error;
Dave Barach7bee7732017-10-18 18:48:11 -04001417
Dave Barach7be864a2016-11-28 11:41:35 -05001418 vnm->interface_tag_by_sw_if_index = hash_create (0, sizeof (uword));
Dave Barach7bee7732017-10-18 18:48:11 -04001419
1420#if VLIB_BUFFER_TRACE_TRAJECTORY > 0
1421 if ((error = vlib_call_init_function (vm, trajectory_trace_init)))
1422 return error;
1423#endif
1424
1425 return 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001426}
1427
1428VLIB_INIT_FUNCTION (vnet_interface_init);
1429
1430/* Kludge to renumber interface names [only!] */
Dave Barachba868bb2016-08-08 09:51:21 -04001431int
1432vnet_interface_name_renumber (u32 sw_if_index, u32 new_show_dev_instance)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001433{
1434 int rv;
Dave Barachba868bb2016-08-08 09:51:21 -04001435 vnet_main_t *vnm = vnet_get_main ();
1436 vnet_interface_main_t *im = &vnm->interface_main;
1437 vnet_hw_interface_t *hi = vnet_get_sup_hw_interface (vnm, sw_if_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001438
Dave Barachba868bb2016-08-08 09:51:21 -04001439 vnet_device_class_t *dev_class = vnet_get_device_class
Ed Warnickecb9cada2015-12-08 15:45:58 -07001440 (vnm, hi->dev_class_index);
1441
1442 if (dev_class->name_renumber == 0 || dev_class->format_device_name == 0)
Dave Barachba868bb2016-08-08 09:51:21 -04001443 return VNET_API_ERROR_UNIMPLEMENTED;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001444
1445 rv = dev_class->name_renumber (hi, new_show_dev_instance);
1446
1447 if (rv)
1448 return rv;
1449
1450 hash_unset_mem (im->hw_interface_by_name, hi->name);
1451 vec_free (hi->name);
1452 /* Use the mapping we set up to call it Ishmael */
Dave Barachba868bb2016-08-08 09:51:21 -04001453 hi->name = format (0, "%U", dev_class->format_device_name,
1454 hi->dev_instance);
1455
Ed Warnickecb9cada2015-12-08 15:45:58 -07001456 hash_set_mem (im->hw_interface_by_name, hi->name, hi->hw_if_index);
1457 return rv;
1458}
1459
Sean Hope608d1ed2016-03-09 00:35:21 -05001460clib_error_t *
Dave Barachba868bb2016-08-08 09:51:21 -04001461vnet_rename_interface (vnet_main_t * vnm, u32 hw_if_index, char *new_name)
Sean Hope608d1ed2016-03-09 00:35:21 -05001462{
Dave Barachba868bb2016-08-08 09:51:21 -04001463 vnet_interface_main_t *im = &vnm->interface_main;
1464 vlib_main_t *vm = vnm->vlib_main;
1465 vnet_hw_interface_t *hw;
1466 u8 *old_name;
1467 clib_error_t *error = 0;
Sean Hope608d1ed2016-03-09 00:35:21 -05001468
Dave Barachba868bb2016-08-08 09:51:21 -04001469 hw = vnet_get_hw_interface (vnm, hw_if_index);
Sean Hope608d1ed2016-03-09 00:35:21 -05001470 if (!hw)
1471 {
1472 return clib_error_return (0,
Dave Barachba868bb2016-08-08 09:51:21 -04001473 "unable to find hw interface for index %u",
1474 hw_if_index);
Sean Hope608d1ed2016-03-09 00:35:21 -05001475 }
1476
1477 old_name = hw->name;
1478
Dave Barachba868bb2016-08-08 09:51:21 -04001479 /* set new hw->name */
Sean Hope608d1ed2016-03-09 00:35:21 -05001480 hw->name = format (0, "%s", new_name);
1481
Dave Barachba868bb2016-08-08 09:51:21 -04001482 /* remove the old name to hw_if_index mapping and install the new one */
Sean Hope608d1ed2016-03-09 00:35:21 -05001483 hash_unset_mem (im->hw_interface_by_name, old_name);
1484 hash_set_mem (im->hw_interface_by_name, hw->name, hw_if_index);
1485
Dave Barachba868bb2016-08-08 09:51:21 -04001486 /* rename tx/output nodes */
Sean Hope608d1ed2016-03-09 00:35:21 -05001487 vlib_node_rename (vm, hw->tx_node_index, "%v-tx", hw->name);
1488 vlib_node_rename (vm, hw->output_node_index, "%v-output", hw->name);
1489
Dave Barachba868bb2016-08-08 09:51:21 -04001490 /* free the old name vector */
Sean Hope608d1ed2016-03-09 00:35:21 -05001491 vec_free (old_name);
1492
1493 return error;
1494}
Dave Barachba868bb2016-08-08 09:51:21 -04001495
Pavel Kotucekc631f2d2016-09-26 10:40:02 +02001496static clib_error_t *
1497vnet_hw_interface_change_mac_address_helper (vnet_main_t * vnm,
John Lo62fcc0a2017-10-31 14:31:10 -04001498 u32 hw_if_index,
1499 u8 * mac_address)
Pavel Kotucekc631f2d2016-09-26 10:40:02 +02001500{
1501 clib_error_t *error = 0;
1502 vnet_hw_interface_t *hi = vnet_get_hw_interface (vnm, hw_if_index);
1503
1504 if (hi->hw_address)
1505 {
Neale Ranns3b81a1e2018-09-06 09:50:26 -07001506 u8 *old_address = vec_dup (hi->hw_address);
Pavel Kotucekc631f2d2016-09-26 10:40:02 +02001507 vnet_device_class_t *dev_class =
1508 vnet_get_device_class (vnm, hi->dev_class_index);
1509 if (dev_class->mac_addr_change_function)
1510 {
1511 error =
Neale Ranns3b81a1e2018-09-06 09:50:26 -07001512 dev_class->mac_addr_change_function (hi, old_address,
1513 mac_address);
Pavel Kotucekc631f2d2016-09-26 10:40:02 +02001514 }
1515 if (!error)
1516 {
Neale Ranns3be6b282016-12-20 14:24:01 +00001517 vnet_hw_interface_class_t *hw_class;
Pavel Kotucekc631f2d2016-09-26 10:40:02 +02001518
Neale Ranns3be6b282016-12-20 14:24:01 +00001519 hw_class = vnet_get_hw_interface_class (vnm, hi->hw_class_index);
Pavel Kotuceka6b31772016-10-14 10:20:59 +02001520
Neale Ranns3be6b282016-12-20 14:24:01 +00001521 if (NULL != hw_class->mac_addr_change_function)
Neale Ranns3b81a1e2018-09-06 09:50:26 -07001522 hw_class->mac_addr_change_function (hi, old_address, mac_address);
Pavel Kotucekc631f2d2016-09-26 10:40:02 +02001523 }
1524 else
1525 {
1526 error =
1527 clib_error_return (0,
1528 "MAC Address Change is not supported on this interface");
1529 }
Neale Ranns3b81a1e2018-09-06 09:50:26 -07001530 vec_free (old_address);
Pavel Kotucekc631f2d2016-09-26 10:40:02 +02001531 }
1532 else
1533 {
1534 error =
1535 clib_error_return (0,
1536 "mac address change is not supported for interface index %u",
1537 hw_if_index);
1538 }
1539 return error;
1540}
1541
1542clib_error_t *
1543vnet_hw_interface_change_mac_address (vnet_main_t * vnm, u32 hw_if_index,
John Lo62fcc0a2017-10-31 14:31:10 -04001544 u8 * mac_address)
Pavel Kotucekc631f2d2016-09-26 10:40:02 +02001545{
1546 return vnet_hw_interface_change_mac_address_helper
1547 (vnm, hw_if_index, mac_address);
1548}
1549
Neale Ranns2ae2bc52018-03-16 03:22:39 -07001550/* update the unnumbered state of an interface*/
1551void
1552vnet_sw_interface_update_unnumbered (u32 unnumbered_sw_if_index,
1553 u32 ip_sw_if_index, u8 enable)
1554{
1555 vnet_main_t *vnm = vnet_get_main ();
1556 vnet_sw_interface_t *si;
1557 u32 was_unnum;
1558
1559 si = vnet_get_sw_interface (vnm, unnumbered_sw_if_index);
1560 was_unnum = (si->flags & VNET_SW_INTERFACE_FLAG_UNNUMBERED);
1561
1562 if (enable)
1563 {
1564 si->flags |= VNET_SW_INTERFACE_FLAG_UNNUMBERED;
1565 si->unnumbered_sw_if_index = ip_sw_if_index;
1566
1567 ip4_main.lookup_main.if_address_pool_index_by_sw_if_index
1568 [unnumbered_sw_if_index] =
1569 ip4_main.
1570 lookup_main.if_address_pool_index_by_sw_if_index[ip_sw_if_index];
1571 ip6_main.
1572 lookup_main.if_address_pool_index_by_sw_if_index
1573 [unnumbered_sw_if_index] =
1574 ip6_main.
1575 lookup_main.if_address_pool_index_by_sw_if_index[ip_sw_if_index];
1576 }
1577 else
1578 {
1579 si->flags &= ~(VNET_SW_INTERFACE_FLAG_UNNUMBERED);
1580 si->unnumbered_sw_if_index = (u32) ~ 0;
1581
1582 ip4_main.lookup_main.if_address_pool_index_by_sw_if_index
1583 [unnumbered_sw_if_index] = ~0;
1584 ip6_main.lookup_main.if_address_pool_index_by_sw_if_index
1585 [unnumbered_sw_if_index] = ~0;
1586 }
1587
1588 if (was_unnum != (si->flags & VNET_SW_INTERFACE_FLAG_UNNUMBERED))
1589 {
1590 ip4_sw_interface_enable_disable (unnumbered_sw_if_index, enable);
1591 ip6_sw_interface_enable_disable (unnumbered_sw_if_index, enable);
1592 }
1593}
1594
Neale Rannsb80c5362016-10-08 13:03:40 +01001595vnet_l3_packet_type_t
1596vnet_link_to_l3_proto (vnet_link_t link)
1597{
1598 switch (link)
1599 {
1600 case VNET_LINK_IP4:
1601 return (VNET_L3_PACKET_TYPE_IP4);
1602 case VNET_LINK_IP6:
1603 return (VNET_L3_PACKET_TYPE_IP6);
1604 case VNET_LINK_MPLS:
Neale Ranns0f26c5a2017-03-01 15:12:11 -08001605 return (VNET_L3_PACKET_TYPE_MPLS);
Neale Rannsb80c5362016-10-08 13:03:40 +01001606 case VNET_LINK_ARP:
1607 return (VNET_L3_PACKET_TYPE_ARP);
1608 case VNET_LINK_ETHERNET:
Florin Corasce1b4c72017-01-26 14:25:34 -08001609 case VNET_LINK_NSH:
Neale Rannsb80c5362016-10-08 13:03:40 +01001610 ASSERT (0);
1611 break;
1612 }
1613 ASSERT (0);
1614 return (0);
1615}
1616
Ole Troand7231612018-06-07 10:17:57 +02001617vnet_mtu_t
1618vnet_link_to_mtu (vnet_link_t link)
1619{
1620 switch (link)
1621 {
1622 case VNET_LINK_IP4:
1623 return (VNET_MTU_IP4);
1624 case VNET_LINK_IP6:
1625 return (VNET_MTU_IP6);
1626 case VNET_LINK_MPLS:
1627 return (VNET_MTU_MPLS);
1628 default:
1629 return (VNET_MTU_L3);
1630 }
1631}
1632
Neale Rannsb80c5362016-10-08 13:03:40 +01001633u8 *
1634default_build_rewrite (vnet_main_t * vnm,
1635 u32 sw_if_index,
1636 vnet_link_t link_type, const void *dst_address)
1637{
1638 return (NULL);
1639}
1640
1641void
1642default_update_adjacency (vnet_main_t * vnm, u32 sw_if_index, u32 ai)
1643{
Neale Ranns0117d242017-08-12 12:52:54 -07001644 ip_adjacency_t *adj;
Neale Rannsb80c5362016-10-08 13:03:40 +01001645
Neale Ranns0117d242017-08-12 12:52:54 -07001646 adj = adj_get (ai);
Neale Rannsb80c5362016-10-08 13:03:40 +01001647
Neale Ranns0117d242017-08-12 12:52:54 -07001648 switch (adj->lookup_next_index)
1649 {
Ole Trøan438f6302018-02-15 21:56:06 +00001650 case IP_LOOKUP_NEXT_GLEAN:
Neale Rannsc819fc62018-02-16 02:44:05 -08001651 adj_glean_update_rewrite (ai);
1652 break;
1653 case IP_LOOKUP_NEXT_ARP:
Neale Ranns1855b8e2018-07-11 10:31:26 -07001654 case IP_LOOKUP_NEXT_BCAST:
Neale Ranns0117d242017-08-12 12:52:54 -07001655 /*
Paul Vinciguerrabdc0e6b2018-09-22 05:32:50 -07001656 * default rewrite in neighbour adj
Neale Ranns0117d242017-08-12 12:52:54 -07001657 */
1658 adj_nbr_update_rewrite
1659 (ai,
1660 ADJ_NBR_REWRITE_FLAG_COMPLETE,
1661 vnet_build_rewrite_for_sw_interface (vnm,
1662 sw_if_index,
1663 adj_get_link_type (ai), NULL));
1664 break;
1665 case IP_LOOKUP_NEXT_MCAST:
1666 /*
1667 * mcast traffic also uses default rewrite string with no mcast
1668 * switch time updates.
1669 */
1670 adj_mcast_update_rewrite
1671 (ai,
1672 vnet_build_rewrite_for_sw_interface (vnm,
1673 sw_if_index,
1674 adj_get_link_type (ai),
Neale Ranns889fe942017-06-01 05:43:19 -04001675 NULL), 0);
Neale Ranns0117d242017-08-12 12:52:54 -07001676 break;
1677 case IP_LOOKUP_NEXT_DROP:
1678 case IP_LOOKUP_NEXT_PUNT:
1679 case IP_LOOKUP_NEXT_LOCAL:
1680 case IP_LOOKUP_NEXT_REWRITE:
1681 case IP_LOOKUP_NEXT_MCAST_MIDCHAIN:
1682 case IP_LOOKUP_NEXT_MIDCHAIN:
1683 case IP_LOOKUP_NEXT_ICMP_ERROR:
1684 case IP_LOOKUP_N_NEXT:
1685 ASSERT (0);
1686 break;
1687 }
Neale Rannsb80c5362016-10-08 13:03:40 +01001688}
1689
Neale Ranns6f4a6be2018-03-16 16:26:21 -07001690int collect_detailed_interface_stats_flag = 0;
1691
1692void
Neale Rannsf704f382018-03-19 12:24:07 -04001693collect_detailed_interface_stats_flag_set (void)
Neale Ranns6f4a6be2018-03-16 16:26:21 -07001694{
1695 collect_detailed_interface_stats_flag = 1;
1696}
1697
1698void
Neale Rannsf704f382018-03-19 12:24:07 -04001699collect_detailed_interface_stats_flag_clear (void)
Neale Ranns6f4a6be2018-03-16 16:26:21 -07001700{
1701 collect_detailed_interface_stats_flag = 0;
1702}
1703
1704static clib_error_t *
1705collect_detailed_interface_stats_cli (vlib_main_t * vm,
1706 unformat_input_t * input,
1707 vlib_cli_command_t * cmd)
1708{
1709 unformat_input_t _line_input, *line_input = &_line_input;
1710 clib_error_t *error = NULL;
1711
1712 /* Get a line of input. */
1713 if (!unformat_user (input, unformat_line_input, line_input))
1714 return clib_error_return (0, "expected enable | disable");
1715
1716 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
1717 {
1718 if (unformat (line_input, "enable") || unformat (line_input, "on"))
1719 collect_detailed_interface_stats_flag_set ();
1720 else if (unformat (line_input, "disable")
1721 || unformat (line_input, "off"))
1722 collect_detailed_interface_stats_flag_clear ();
1723 else
1724 {
1725 error = clib_error_return (0, "unknown input `%U'",
1726 format_unformat_error, line_input);
1727 goto done;
1728 }
1729 }
1730
1731done:
1732 unformat_free (line_input);
1733 return error;
1734}
1735
1736/* *INDENT-OFF* */
1737VLIB_CLI_COMMAND (collect_detailed_interface_stats_command, static) = {
1738 .path = "interface collect detailed-stats",
1739 .short_help = "interface collect detailed-stats <enable|disable>",
1740 .function = collect_detailed_interface_stats_cli,
1741};
1742/* *INDENT-ON* */
1743
Dave Barachba868bb2016-08-08 09:51:21 -04001744/*
1745 * fd.io coding-style-patch-verification: ON
1746 *
1747 * Local Variables:
1748 * eval: (c-set-style "gnu")
1749 * End:
1750 */