blob: 60f11bc3957799ecc590f18aba7cb1cb8d2d060e [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)
653 set_int_l2_mode (vm, vnm, MODE_L3, config->output_sw_if_index, 0, 0,
654 0, 0);
655 if (config->xconnect || config->bridge)
656 set_int_l2_mode (vm, vnm, MODE_L3, sw_if_index, 0, 0, 0, 0);
657 }
Neale Rannse8d7ff52018-05-31 21:23:37 -0700658 vnet_clear_sw_interface_tag (vnm, sw_if_index);
Pavel Kotucek7c8eda12016-10-17 15:31:59 +0200659
Ed Warnickecb9cada2015-12-08 15:45:58 -0700660 /* Bring down interface in case it is up. */
661 if (sw->flags != 0)
662 vnet_sw_interface_set_flags (vnm, sw_if_index, /* flags */ 0);
663
664 call_sw_interface_add_del_callbacks (vnm, sw_if_index, /* is_create */ 0);
665
666 pool_put (im->sw_interfaces, sw);
667}
668
Ole Troand7231612018-06-07 10:17:57 +0200669static clib_error_t *
670call_sw_interface_mtu_change_callbacks (vnet_main_t * vnm, u32 sw_if_index)
671{
672 return call_elf_section_interface_callbacks
673 (vnm, sw_if_index, 0, vnm->sw_interface_mtu_change_functions);
674}
675
676void
677vnet_sw_interface_set_mtu (vnet_main_t * vnm, u32 sw_if_index, u32 mtu)
678{
679 vnet_sw_interface_t *si = vnet_get_sw_interface (vnm, sw_if_index);
680
681 if (si->mtu[VNET_MTU_L3] != mtu)
682 {
683 si->mtu[VNET_MTU_L3] = mtu;
684 call_sw_interface_mtu_change_callbacks (vnm, sw_if_index);
685 }
686}
687
688void
689vnet_sw_interface_set_protocol_mtu (vnet_main_t * vnm, u32 sw_if_index,
690 u32 mtu[])
691{
692 vnet_sw_interface_t *si = vnet_get_sw_interface (vnm, sw_if_index);
693 bool changed = false;
694 int i;
695
696 for (i = 0; i < VNET_N_MTU; i++)
697 {
698 if (si->mtu[i] != mtu[i])
699 {
700 si->mtu[i] = mtu[i];
701 changed = true;
702 }
703 }
704 /* Notify interested parties */
705 if (changed)
706 call_sw_interface_mtu_change_callbacks (vnm, sw_if_index);
707}
708
Neale Ranns1855b8e2018-07-11 10:31:26 -0700709void
710vnet_sw_interface_ip_directed_broadcast (vnet_main_t * vnm,
711 u32 sw_if_index, u8 enable)
712{
713 vnet_sw_interface_t *si;
714
715 si = vnet_get_sw_interface (vnm, sw_if_index);
716
717 if (enable)
718 si->flags |= VNET_SW_INTERFACE_FLAG_DIRECTED_BCAST;
719 else
720 si->flags &= ~VNET_SW_INTERFACE_FLAG_DIRECTED_BCAST;
721
722 ip4_directed_broadcast (sw_if_index, enable);
723}
724
Ole Troand7231612018-06-07 10:17:57 +0200725/*
726 * Reflect a change in hardware MTU on protocol MTUs
727 */
728static walk_rc_t
729sw_interface_walk_callback (vnet_main_t * vnm, u32 sw_if_index, void *ctx)
730{
731 u32 *link_mtu = ctx;
732 vnet_sw_interface_set_mtu (vnm, sw_if_index, *link_mtu);
733 return WALK_CONTINUE;
734}
735
736void
737vnet_hw_interface_set_mtu (vnet_main_t * vnm, u32 hw_if_index, u32 mtu)
738{
739 vnet_hw_interface_t *hi = vnet_get_hw_interface (vnm, hw_if_index);
740
741 if (hi->max_packet_bytes != mtu)
742 {
743 hi->max_packet_bytes = mtu;
744 ethernet_set_flags (vnm, hw_if_index, ETHERNET_INTERFACE_FLAG_MTU);
745 vnet_hw_interface_walk_sw (vnm, hw_if_index, sw_interface_walk_callback,
746 &mtu);
747 }
748}
749
Dave Barachba868bb2016-08-08 09:51:21 -0400750static void
751setup_tx_node (vlib_main_t * vm,
752 u32 node_index, vnet_device_class_t * dev_class)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700753{
Dave Barachba868bb2016-08-08 09:51:21 -0400754 vlib_node_t *n = vlib_get_node (vm, node_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700755
756 n->function = dev_class->tx_function;
757 n->format_trace = dev_class->format_tx_trace;
Neale Ranns5e575b12016-10-03 09:40:25 +0100758
Dave Barachba868bb2016-08-08 09:51:21 -0400759 vlib_register_errors (vm, node_index,
760 dev_class->tx_function_n_errors,
761 dev_class->tx_function_error_strings);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700762}
763
Dave Barachba868bb2016-08-08 09:51:21 -0400764static void
765setup_output_node (vlib_main_t * vm,
766 u32 node_index, vnet_hw_interface_class_t * hw_class)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700767{
Dave Barachba868bb2016-08-08 09:51:21 -0400768 vlib_node_t *n = vlib_get_node (vm, node_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700769 n->format_buffer = hw_class->format_header;
770 n->unformat_buffer = hw_class->unformat_header;
771}
772
773/* Register an interface instance. */
774u32
775vnet_register_interface (vnet_main_t * vnm,
776 u32 dev_class_index,
777 u32 dev_instance,
Dave Barachba868bb2016-08-08 09:51:21 -0400778 u32 hw_class_index, u32 hw_instance)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700779{
Dave Barachba868bb2016-08-08 09:51:21 -0400780 vnet_interface_main_t *im = &vnm->interface_main;
781 vnet_hw_interface_t *hw;
782 vnet_device_class_t *dev_class =
783 vnet_get_device_class (vnm, dev_class_index);
784 vnet_hw_interface_class_t *hw_class =
785 vnet_get_hw_interface_class (vnm, hw_class_index);
786 vlib_main_t *vm = vnm->vlib_main;
Damjan Marion152e21d2016-11-29 14:55:43 +0100787 vnet_feature_config_main_t *fcm;
788 vnet_config_main_t *cm;
789 u32 hw_index, i;
Neale Rannscbe8d652018-04-27 04:42:47 -0700790 char *tx_node_name = NULL, *output_node_name = NULL;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700791
792 pool_get (im->hw_interfaces, hw);
John Lo5957a142018-01-18 12:44:50 -0500793 memset (hw, 0, sizeof (*hw));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700794
795 hw_index = hw - im->hw_interfaces;
796 hw->hw_if_index = hw_index;
Damjan Marion4e53a0d2017-06-21 14:29:44 +0200797 hw->default_rx_mode = VNET_HW_INTERFACE_RX_MODE_POLLING;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700798
799 if (dev_class->format_device_name)
Dave Barachba868bb2016-08-08 09:51:21 -0400800 hw->name = format (0, "%U", dev_class->format_device_name, dev_instance);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700801 else if (hw_class->format_interface_name)
802 hw->name = format (0, "%U", hw_class->format_interface_name,
803 dev_instance);
804 else
805 hw->name = format (0, "%s%x", hw_class->name, dev_instance);
806
Dave Barachba868bb2016-08-08 09:51:21 -0400807 if (!im->hw_interface_by_name)
808 im->hw_interface_by_name = hash_create_vec ( /* size */ 0,
Ed Warnickecb9cada2015-12-08 15:45:58 -0700809 sizeof (hw->name[0]),
810 sizeof (uword));
811
812 hash_set_mem (im->hw_interface_by_name, hw->name, hw_index);
813
814 /* Make hardware interface point to software interface. */
815 {
Eyal Baric5b13602016-11-24 19:42:43 +0200816 vnet_sw_interface_t sw = {
817 .type = VNET_SW_INTERFACE_TYPE_HARDWARE,
818 .flood_class = VNET_FLOOD_CLASS_NORMAL,
819 .hw_if_index = hw_index
820 };
Ed Warnickecb9cada2015-12-08 15:45:58 -0700821 hw->sw_if_index = vnet_create_sw_interface_no_callbacks (vnm, &sw);
822 }
823
824 hw->dev_class_index = dev_class_index;
825 hw->dev_instance = dev_instance;
826 hw->hw_class_index = hw_class_index;
827 hw->hw_instance = hw_instance;
828
829 hw->max_rate_bits_per_sec = 0;
830 hw->min_packet_bytes = 0;
Ole Troand7231612018-06-07 10:17:57 +0200831 vnet_sw_interface_set_mtu (vnm, hw->sw_if_index, 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700832
John Loe5453d02018-01-23 19:21:34 -0500833 if (dev_class->tx_function == 0)
834 goto no_output_nodes; /* No output/tx nodes to create */
835
Ed Warnickecb9cada2015-12-08 15:45:58 -0700836 tx_node_name = (char *) format (0, "%v-tx", hw->name);
837 output_node_name = (char *) format (0, "%v-output", hw->name);
838
839 /* If we have previously deleted interface nodes, re-use them. */
840 if (vec_len (im->deleted_hw_interface_nodes) > 0)
841 {
Dave Barachba868bb2016-08-08 09:51:21 -0400842 vnet_hw_interface_nodes_t *hn;
Pierre Pfister064f55d2016-10-17 15:58:29 +0100843 vlib_node_t *node;
844 vlib_node_runtime_t *nrt;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700845
846 hn = vec_end (im->deleted_hw_interface_nodes) - 1;
847
848 hw->tx_node_index = hn->tx_node_index;
849 hw->output_node_index = hn->output_node_index;
850
851 vlib_node_rename (vm, hw->tx_node_index, "%v", tx_node_name);
852 vlib_node_rename (vm, hw->output_node_index, "%v", output_node_name);
853
Igor Mikhailov (imichail)8249a582017-06-15 20:47:48 -0700854 /* *INDENT-OFF* */
855 foreach_vlib_main ({
856 vnet_interface_output_runtime_t *rt;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700857
Igor Mikhailov (imichail)8249a582017-06-15 20:47:48 -0700858 rt = vlib_node_get_runtime_data (this_vlib_main, hw->output_node_index);
859 ASSERT (rt->is_deleted == 1);
860 rt->is_deleted = 0;
861 rt->hw_if_index = hw_index;
862 rt->sw_if_index = hw->sw_if_index;
863 rt->dev_instance = hw->dev_instance;
864
865 rt = vlib_node_get_runtime_data (this_vlib_main, hw->tx_node_index);
866 rt->hw_if_index = hw_index;
867 rt->sw_if_index = hw->sw_if_index;
868 rt->dev_instance = hw->dev_instance;
869 });
870 /* *INDENT-ON* */
Dave Barachb8dca742016-07-01 12:38:11 -0400871
Pierre Pfister064f55d2016-10-17 15:58:29 +0100872 /* The new class may differ from the old one.
873 * Functions have to be updated. */
874 node = vlib_get_node (vm, hw->output_node_index);
Damjan Marion10ae7662017-06-30 19:53:03 +0200875 node->function = vnet_interface_output_node_multiarch_select ();
Pierre Pfister064f55d2016-10-17 15:58:29 +0100876 node->format_trace = format_vnet_interface_output_trace;
Damjan Marionc418e4a2017-07-27 04:07:50 -0400877 /* *INDENT-OFF* */
878 foreach_vlib_main ({
879 nrt = vlib_node_get_runtime (this_vlib_main, hw->output_node_index);
880 nrt->function = node->function;
881 });
882 /* *INDENT-ON* */
Pierre Pfister064f55d2016-10-17 15:58:29 +0100883
884 node = vlib_get_node (vm, hw->tx_node_index);
885 node->function = dev_class->tx_function;
886 node->format_trace = dev_class->format_tx_trace;
Damjan Marionc418e4a2017-07-27 04:07:50 -0400887 /* *INDENT-OFF* */
888 foreach_vlib_main ({
889 nrt = vlib_node_get_runtime (this_vlib_main, hw->tx_node_index);
890 nrt->function = node->function;
891 });
892 /* *INDENT-ON* */
Pierre Pfister064f55d2016-10-17 15:58:29 +0100893
Ed Warnickecb9cada2015-12-08 15:45:58 -0700894 _vec_len (im->deleted_hw_interface_nodes) -= 1;
895 }
896 else
897 {
898 vlib_node_registration_t r;
899 vnet_interface_output_runtime_t rt = {
900 .hw_if_index = hw_index,
901 .sw_if_index = hw->sw_if_index,
902 .dev_instance = hw->dev_instance,
903 .is_deleted = 0,
904 };
905
906 memset (&r, 0, sizeof (r));
907 r.type = VLIB_NODE_TYPE_INTERNAL;
908 r.runtime_data = &rt;
909 r.runtime_data_bytes = sizeof (rt);
910 r.scalar_size = 0;
911 r.vector_size = sizeof (u32);
912
913 r.flags = VLIB_NODE_FLAG_IS_OUTPUT;
914 r.name = tx_node_name;
915 r.function = dev_class->tx_function;
916
917 hw->tx_node_index = vlib_register_node (vm, &r);
918
919 vlib_node_add_named_next_with_slot (vm, hw->tx_node_index,
920 "error-drop",
921 VNET_INTERFACE_TX_NEXT_DROP);
922
923 r.flags = 0;
924 r.name = output_node_name;
Damjan Marion10ae7662017-06-30 19:53:03 +0200925 r.function = vnet_interface_output_node_multiarch_select ();
Ed Warnickecb9cada2015-12-08 15:45:58 -0700926 r.format_trace = format_vnet_interface_output_trace;
927
928 {
Dave Barachba868bb2016-08-08 09:51:21 -0400929 static char *e[] = {
Ed Warnickecb9cada2015-12-08 15:45:58 -0700930 "interface is down",
931 "interface is deleted",
932 };
933
934 r.n_errors = ARRAY_LEN (e);
935 r.error_strings = e;
936 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700937 hw->output_node_index = vlib_register_node (vm, &r);
938
Damjan Marion9c6ae5f2016-11-15 23:20:01 +0100939 vlib_node_add_named_next_with_slot (vm, hw->output_node_index,
940 "error-drop",
941 VNET_INTERFACE_OUTPUT_NEXT_DROP);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700942 vlib_node_add_next_with_slot (vm, hw->output_node_index,
943 hw->tx_node_index,
944 VNET_INTERFACE_OUTPUT_NEXT_TX);
Damjan Marion152e21d2016-11-29 14:55:43 +0100945
946 /* add interface to the list of "output-interface" feature arc start nodes
947 and clone nexts from 1st interface if it exists */
948 fcm = vnet_feature_get_config_main (im->output_feature_arc_index);
949 cm = &fcm->config_main;
950 i = vec_len (cm->start_node_indices);
951 vec_validate (cm->start_node_indices, i);
952 cm->start_node_indices[i] = hw->output_node_index;
953 if (hw_index)
954 {
955 /* copy nexts from 1st interface */
956 vnet_hw_interface_t *first_hw;
957 vlib_node_t *first_node;
958
959 first_hw = vnet_get_hw_interface (vnm, /* hw_if_index */ 0);
960 first_node = vlib_get_node (vm, first_hw->output_node_index);
961
962 /* 1st 2 nexts are already added above */
963 for (i = 2; i < vec_len (first_node->next_nodes); i++)
964 vlib_node_add_next_with_slot (vm, hw->output_node_index,
965 first_node->next_nodes[i], i);
966 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700967 }
968
969 setup_output_node (vm, hw->output_node_index, hw_class);
970 setup_tx_node (vm, hw->tx_node_index, dev_class);
971
John Loe5453d02018-01-23 19:21:34 -0500972no_output_nodes:
Ed Warnickecb9cada2015-12-08 15:45:58 -0700973 /* Call all up/down callbacks with zero flags when interface is created. */
Dave Barachba868bb2016-08-08 09:51:21 -0400974 vnet_sw_interface_set_flags_helper (vnm, hw->sw_if_index, /* flags */ 0,
975 VNET_INTERFACE_SET_FLAGS_HELPER_IS_CREATE);
976 vnet_hw_interface_set_flags_helper (vnm, hw_index, /* flags */ 0,
977 VNET_INTERFACE_SET_FLAGS_HELPER_IS_CREATE);
Neale Rannscbe8d652018-04-27 04:42:47 -0700978 vec_free (tx_node_name);
979 vec_free (output_node_name);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700980
981 return hw_index;
982}
983
Dave Barachba868bb2016-08-08 09:51:21 -0400984void
985vnet_delete_hw_interface (vnet_main_t * vnm, u32 hw_if_index)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700986{
Dave Barachba868bb2016-08-08 09:51:21 -0400987 vnet_interface_main_t *im = &vnm->interface_main;
988 vnet_hw_interface_t *hw = vnet_get_hw_interface (vnm, hw_if_index);
989 vlib_main_t *vm = vnm->vlib_main;
John Loe5453d02018-01-23 19:21:34 -0500990 vnet_device_class_t *dev_class = vnet_get_device_class (vnm,
991 hw->dev_class_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700992 /* If it is up, mark it down. */
993 if (hw->flags != 0)
994 vnet_hw_interface_set_flags (vnm, hw_if_index, /* flags */ 0);
995
996 /* Call delete callbacks. */
997 call_hw_interface_add_del_callbacks (vnm, hw_if_index, /* is_create */ 0);
998
Ed Warnickecb9cada2015-12-08 15:45:58 -0700999 /* Delete any sub-interfaces. */
1000 {
1001 u32 id, sw_if_index;
Dave Barachba868bb2016-08-08 09:51:21 -04001002 /* *INDENT-OFF* */
John Lo5957a142018-01-18 12:44:50 -05001003 hash_foreach (id, sw_if_index, hw->sub_interface_sw_if_index_by_id,
1004 ({
1005 vnet_sw_interface_t *si = vnet_get_sw_interface (vnm, sw_if_index);
1006 u64 sup_and_sub_key =
1007 ((u64) (si->sup_sw_if_index) << 32) | (u64) si->sub.id;
1008 hash_unset_mem_free (&im->sw_if_index_by_sup_and_sub, &sup_and_sub_key);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001009 vnet_delete_sw_interface (vnm, sw_if_index);
1010 }));
John Lo5957a142018-01-18 12:44:50 -05001011 hash_free (hw->sub_interface_sw_if_index_by_id);
Dave Barachba868bb2016-08-08 09:51:21 -04001012 /* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07001013 }
1014
John Lo5957a142018-01-18 12:44:50 -05001015 /* Delete software interface corresponding to hardware interface. */
1016 vnet_delete_sw_interface (vnm, hw->sw_if_index);
1017
John Loe5453d02018-01-23 19:21:34 -05001018 if (dev_class->tx_function)
1019 {
1020 /* Put output/tx nodes into recycle pool */
1021 vnet_hw_interface_nodes_t *dn;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001022
John Loe5453d02018-01-23 19:21:34 -05001023 /* *INDENT-OFF* */
1024 foreach_vlib_main
1025 ({
1026 vnet_interface_output_runtime_t *rt =
1027 vlib_node_get_runtime_data (this_vlib_main, hw->output_node_index);
Igor Mikhailov (imichail)8249a582017-06-15 20:47:48 -07001028
John Loe5453d02018-01-23 19:21:34 -05001029 /* Mark node runtime as deleted so output node (if called)
1030 * will drop packets. */
1031 rt->is_deleted = 1;
1032 });
1033 /* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07001034
John Loe5453d02018-01-23 19:21:34 -05001035 vlib_node_rename (vm, hw->output_node_index,
1036 "interface-%d-output-deleted", hw_if_index);
1037 vlib_node_rename (vm, hw->tx_node_index, "interface-%d-tx-deleted",
1038 hw_if_index);
1039 vec_add2 (im->deleted_hw_interface_nodes, dn, 1);
1040 dn->tx_node_index = hw->tx_node_index;
1041 dn->output_node_index = hw->output_node_index;
1042 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001043
1044 hash_unset_mem (im->hw_interface_by_name, hw->name);
1045 vec_free (hw->name);
Neale Rannscbe8d652018-04-27 04:42:47 -07001046 vec_free (hw->hw_address);
Damjan Marion153646e2017-04-05 18:15:45 +02001047 vec_free (hw->input_node_thread_index_by_queue);
1048 vec_free (hw->dq_runtime_index_by_queue);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001049
1050 pool_put (im->hw_interfaces, hw);
1051}
1052
Neale Ranns8b37b872016-11-21 12:25:22 +00001053void
1054vnet_hw_interface_walk_sw (vnet_main_t * vnm,
1055 u32 hw_if_index,
1056 vnet_hw_sw_interface_walk_t fn, void *ctx)
1057{
1058 vnet_hw_interface_t *hi;
1059 u32 id, sw_if_index;
1060
1061 hi = vnet_get_hw_interface (vnm, hw_if_index);
Neale Ranns17ff3c12018-07-04 10:24:24 -07001062 /* the super first, then the sub interfaces */
1063 if (WALK_STOP == fn (vnm, hi->sw_if_index, ctx))
1064 return;
Neale Ranns8b37b872016-11-21 12:25:22 +00001065
1066 /* *INDENT-OFF* */
1067 hash_foreach (id, sw_if_index,
1068 hi->sub_interface_sw_if_index_by_id,
1069 ({
Neale Ranns0053de62018-05-22 08:40:52 -07001070 if (WALK_STOP == fn (vnm, sw_if_index, ctx))
1071 break;
Neale Ranns8b37b872016-11-21 12:25:22 +00001072 }));
1073 /* *INDENT-ON* */
1074}
1075
Neale Ranns0053de62018-05-22 08:40:52 -07001076void
Neale Ranns17ff3c12018-07-04 10:24:24 -07001077vnet_hw_interface_walk (vnet_main_t * vnm,
1078 vnet_hw_interface_walk_t fn, void *ctx)
1079{
1080 vnet_interface_main_t *im;
1081 vnet_hw_interface_t *hi;
1082
1083 im = &vnm->interface_main;
1084
1085 /* *INDENT-OFF* */
1086 pool_foreach (hi, im->hw_interfaces,
1087 ({
1088 if (WALK_STOP == fn(vnm, hi->hw_if_index, ctx))
1089 break;
1090 }));
1091 /* *INDENT-ON* */
1092}
1093
1094void
Neale Ranns0053de62018-05-22 08:40:52 -07001095vnet_sw_interface_walk (vnet_main_t * vnm,
1096 vnet_sw_interface_walk_t fn, void *ctx)
1097{
1098 vnet_interface_main_t *im;
1099 vnet_sw_interface_t *si;
1100
1101 im = &vnm->interface_main;
1102
1103 /* *INDENT-OFF* */
1104 pool_foreach (si, im->sw_interfaces,
1105 {
1106 if (WALK_STOP == fn (vnm, si, ctx))
1107 break;
1108 });
1109 /* *INDENT-ON* */
1110}
1111
Dave Barachba868bb2016-08-08 09:51:21 -04001112static void
1113serialize_vnet_hw_interface_set_class (serialize_main_t * m, va_list * va)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001114{
1115 u32 hw_if_index = va_arg (*va, u32);
Dave Barachba868bb2016-08-08 09:51:21 -04001116 char *hw_class_name = va_arg (*va, char *);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001117 serialize_integer (m, hw_if_index, sizeof (hw_if_index));
1118 serialize_cstring (m, hw_class_name);
1119}
1120
Dave Barachba868bb2016-08-08 09:51:21 -04001121static void
1122unserialize_vnet_hw_interface_set_class (serialize_main_t * m, va_list * va)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001123{
1124 CLIB_UNUSED (mc_main_t * mc) = va_arg (*va, mc_main_t *);
Dave Barachba868bb2016-08-08 09:51:21 -04001125 vnet_main_t *vnm = vnet_get_main ();
Ed Warnickecb9cada2015-12-08 15:45:58 -07001126 u32 hw_if_index;
Dave Barachba868bb2016-08-08 09:51:21 -04001127 char *hw_class_name;
1128 uword *p;
1129 clib_error_t *error;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001130
1131 unserialize_integer (m, &hw_if_index, sizeof (hw_if_index));
1132 unserialize_cstring (m, &hw_class_name);
Dave Barachba868bb2016-08-08 09:51:21 -04001133 p =
1134 hash_get (vnm->interface_main.hw_interface_class_by_name, hw_class_name);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001135 ASSERT (p != 0);
Dave Barachba868bb2016-08-08 09:51:21 -04001136 error = vnet_hw_interface_set_class_helper (vnm, hw_if_index, p[0],
1137 /* redistribute */ 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001138 if (error)
1139 clib_error_report (error);
1140}
1141
Dave Barachba868bb2016-08-08 09:51:21 -04001142MC_SERIALIZE_MSG (vnet_hw_interface_set_class_msg, static) =
Ed Warnickecb9cada2015-12-08 15:45:58 -07001143{
Dave Barachba868bb2016-08-08 09:51:21 -04001144.name = "vnet_hw_interface_set_class",.serialize =
1145 serialize_vnet_hw_interface_set_class,.unserialize =
1146 unserialize_vnet_hw_interface_set_class,};
1147
1148void
1149vnet_hw_interface_init_for_class (vnet_main_t * vnm, u32 hw_if_index,
1150 u32 hw_class_index, u32 hw_instance)
1151{
1152 vnet_hw_interface_t *hi = vnet_get_hw_interface (vnm, hw_if_index);
1153 vnet_hw_interface_class_t *hc =
1154 vnet_get_hw_interface_class (vnm, hw_class_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001155
1156 hi->hw_class_index = hw_class_index;
1157 hi->hw_instance = hw_instance;
1158 setup_output_node (vnm->vlib_main, hi->output_node_index, hc);
1159}
1160
1161static clib_error_t *
Dave Barachba868bb2016-08-08 09:51:21 -04001162vnet_hw_interface_set_class_helper (vnet_main_t * vnm, u32 hw_if_index,
1163 u32 hw_class_index, u32 redistribute)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001164{
Dave Barachba868bb2016-08-08 09:51:21 -04001165 vnet_hw_interface_t *hi = vnet_get_hw_interface (vnm, hw_if_index);
1166 vnet_sw_interface_t *si = vnet_get_sw_interface (vnm, hi->sw_if_index);
1167 vnet_hw_interface_class_t *old_class =
1168 vnet_get_hw_interface_class (vnm, hi->hw_class_index);
1169 vnet_hw_interface_class_t *new_class =
1170 vnet_get_hw_interface_class (vnm, hw_class_index);
1171 vnet_device_class_t *dev_class =
1172 vnet_get_device_class (vnm, hi->dev_class_index);
1173 clib_error_t *error = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001174
1175 /* New class equals old class? Nothing to do. */
1176 if (hi->hw_class_index == hw_class_index)
1177 return 0;
1178
1179 /* No need (and incorrect since admin up flag may be set) to do error checking when
1180 receiving unserialize message. */
1181 if (redistribute)
1182 {
1183 if (si->flags & VNET_SW_INTERFACE_FLAG_ADMIN_UP)
Dave Barachba868bb2016-08-08 09:51:21 -04001184 return clib_error_return (0,
1185 "%v must be admin down to change class from %s to %s",
Ed Warnickecb9cada2015-12-08 15:45:58 -07001186 hi->name, old_class->name, new_class->name);
1187
1188 /* Make sure interface supports given class. */
1189 if ((new_class->is_valid_class_for_interface
Dave Barachba868bb2016-08-08 09:51:21 -04001190 && !new_class->is_valid_class_for_interface (vnm, hw_if_index,
1191 hw_class_index))
1192 || (dev_class->is_valid_class_for_interface
1193 && !dev_class->is_valid_class_for_interface (vnm, hw_if_index,
1194 hw_class_index)))
1195 return clib_error_return (0,
1196 "%v class cannot be changed from %s to %s",
Ed Warnickecb9cada2015-12-08 15:45:58 -07001197 hi->name, old_class->name, new_class->name);
1198
1199 if (vnm->vlib_main->mc_main)
1200 {
Dave Barachba868bb2016-08-08 09:51:21 -04001201 mc_serialize (vnm->vlib_main->mc_main,
1202 &vnet_hw_interface_set_class_msg, hw_if_index,
1203 new_class->name);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001204 return 0;
1205 }
1206 }
1207
1208 if (old_class->hw_class_change)
Dave Barachba868bb2016-08-08 09:51:21 -04001209 old_class->hw_class_change (vnm, hw_if_index, old_class->index,
1210 new_class->index);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001211
Dave Barachba868bb2016-08-08 09:51:21 -04001212 vnet_hw_interface_init_for_class (vnm, hw_if_index, new_class->index,
1213 /* instance */ ~0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001214
1215 if (new_class->hw_class_change)
Dave Barachba868bb2016-08-08 09:51:21 -04001216 new_class->hw_class_change (vnm, hw_if_index, old_class->index,
1217 new_class->index);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001218
1219 if (dev_class->hw_class_change)
1220 dev_class->hw_class_change (vnm, hw_if_index, new_class->index);
1221
1222 return error;
1223}
1224
1225clib_error_t *
Dave Barachba868bb2016-08-08 09:51:21 -04001226vnet_hw_interface_set_class (vnet_main_t * vnm, u32 hw_if_index,
1227 u32 hw_class_index)
1228{
1229 return vnet_hw_interface_set_class_helper (vnm, hw_if_index, hw_class_index,
1230 /* redistribute */ 1);
1231}
Ed Warnickecb9cada2015-12-08 15:45:58 -07001232
1233static int
Dave Barachba868bb2016-08-08 09:51:21 -04001234vnet_hw_interface_rx_redirect_to_node_helper (vnet_main_t * vnm,
1235 u32 hw_if_index,
1236 u32 node_index,
1237 u32 redistribute)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001238{
Dave Barachba868bb2016-08-08 09:51:21 -04001239 vnet_hw_interface_t *hi = vnet_get_hw_interface (vnm, hw_if_index);
1240 vnet_device_class_t *dev_class = vnet_get_device_class
Ed Warnickecb9cada2015-12-08 15:45:58 -07001241 (vnm, hi->dev_class_index);
1242
1243 if (redistribute)
1244 {
1245 /* $$$$ fixme someday maybe */
Dave Barachba868bb2016-08-08 09:51:21 -04001246 ASSERT (vnm->vlib_main->mc_main == 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001247 }
1248 if (dev_class->rx_redirect_to_node)
1249 {
1250 dev_class->rx_redirect_to_node (vnm, hw_if_index, node_index);
1251 return 0;
1252 }
1253
1254 return VNET_API_ERROR_UNIMPLEMENTED;
1255}
1256
Dave Barachba868bb2016-08-08 09:51:21 -04001257int
1258vnet_hw_interface_rx_redirect_to_node (vnet_main_t * vnm, u32 hw_if_index,
1259 u32 node_index)
1260{
1261 return vnet_hw_interface_rx_redirect_to_node_helper (vnm, hw_if_index,
1262 node_index,
1263 1 /* redistribute */ );
1264}
Ed Warnickecb9cada2015-12-08 15:45:58 -07001265
1266word
1267vnet_sw_interface_compare (vnet_main_t * vnm,
1268 uword sw_if_index0, uword sw_if_index1)
1269{
Dave Barachba868bb2016-08-08 09:51:21 -04001270 vnet_sw_interface_t *sup0 = vnet_get_sup_sw_interface (vnm, sw_if_index0);
1271 vnet_sw_interface_t *sup1 = vnet_get_sup_sw_interface (vnm, sw_if_index1);
1272 vnet_hw_interface_t *h0 = vnet_get_hw_interface (vnm, sup0->hw_if_index);
1273 vnet_hw_interface_t *h1 = vnet_get_hw_interface (vnm, sup1->hw_if_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001274
1275 if (h0 != h1)
1276 return vec_cmp (h0->name, h1->name);
1277 return (word) h0->hw_instance - (word) h1->hw_instance;
1278}
1279
1280word
1281vnet_hw_interface_compare (vnet_main_t * vnm,
1282 uword hw_if_index0, uword hw_if_index1)
1283{
Dave Barachba868bb2016-08-08 09:51:21 -04001284 vnet_hw_interface_t *h0 = vnet_get_hw_interface (vnm, hw_if_index0);
1285 vnet_hw_interface_t *h1 = vnet_get_hw_interface (vnm, hw_if_index1);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001286
1287 if (h0 != h1)
1288 return vec_cmp (h0->name, h1->name);
1289 return (word) h0->hw_instance - (word) h1->hw_instance;
1290}
1291
Neale Rannsb80c5362016-10-08 13:03:40 +01001292int
1293vnet_sw_interface_is_p2p (vnet_main_t * vnm, u32 sw_if_index)
1294{
Pavel Kotucek15ac81c2017-06-20 14:00:26 +02001295 vnet_sw_interface_t *si = vnet_get_sw_interface (vnm, sw_if_index);
Neale Ranns17ff3c12018-07-04 10:24:24 -07001296 if ((si->type == VNET_SW_INTERFACE_TYPE_P2P) ||
1297 (si->type == VNET_SW_INTERFACE_TYPE_PIPE))
Pavel Kotucek15ac81c2017-06-20 14:00:26 +02001298 return 1;
1299
Neale Rannsb80c5362016-10-08 13:03:40 +01001300 vnet_hw_interface_t *hw = vnet_get_sup_hw_interface (vnm, sw_if_index);
1301 vnet_hw_interface_class_t *hc =
1302 vnet_get_hw_interface_class (vnm, hw->hw_class_index);
1303
1304 return (hc->flags & VNET_HW_INTERFACE_CLASS_FLAG_P2P);
1305}
1306
Ed Warnickecb9cada2015-12-08 15:45:58 -07001307clib_error_t *
1308vnet_interface_init (vlib_main_t * vm)
1309{
Dave Barachba868bb2016-08-08 09:51:21 -04001310 vnet_main_t *vnm = vnet_get_main ();
1311 vnet_interface_main_t *im = &vnm->interface_main;
1312 vlib_buffer_t *b = 0;
1313 vnet_buffer_opaque_t *o = 0;
Dave Barach7bee7732017-10-18 18:48:11 -04001314 clib_error_t *error;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001315
1316 /*
1317 * Keep people from shooting themselves in the foot.
1318 */
Dave Barachba868bb2016-08-08 09:51:21 -04001319 if (sizeof (b->opaque) != sizeof (vnet_buffer_opaque_t))
Ed Warnickecb9cada2015-12-08 15:45:58 -07001320 {
1321#define _(a) if (sizeof(o->a) > sizeof (o->unused)) \
1322 clib_warning \
1323 ("FATAL: size of opaque union subtype %s is %d (max %d)", \
1324 #a, sizeof(o->a), sizeof (o->unused));
Dave Barachba868bb2016-08-08 09:51:21 -04001325 foreach_buffer_opaque_union_subtype;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001326#undef _
1327
Dave Barachba868bb2016-08-08 09:51:21 -04001328 return clib_error_return
1329 (0, "FATAL: size of vlib buffer opaque %d, size of vnet opaque %d",
1330 sizeof (b->opaque), sizeof (vnet_buffer_opaque_t));
Ed Warnickecb9cada2015-12-08 15:45:58 -07001331 }
1332
Dave Barachba868bb2016-08-08 09:51:21 -04001333 im->sw_if_counter_lock = clib_mem_alloc_aligned (CLIB_CACHE_LINE_BYTES,
1334 CLIB_CACHE_LINE_BYTES);
1335 im->sw_if_counter_lock[0] = 1; /* should be no need */
Ed Warnickecb9cada2015-12-08 15:45:58 -07001336
Dave Barachba868bb2016-08-08 09:51:21 -04001337 vec_validate (im->sw_if_counters, VNET_N_SIMPLE_INTERFACE_COUNTER - 1);
Ole Troan1ec0ea82018-06-14 09:28:27 +02001338#define _(E,n,p) \
1339 im->sw_if_counters[VNET_INTERFACE_COUNTER_##E].name = #n; \
1340 im->sw_if_counters[VNET_INTERFACE_COUNTER_##E].stat_segment_name = "/" #p "/" #n;
1341 foreach_simple_interface_counter_name
1342#undef _
1343 vec_validate (im->combined_sw_if_counters,
1344 VNET_N_COMBINED_INTERFACE_COUNTER - 1);
1345#define _(E,n,p) \
1346 im->combined_sw_if_counters[VNET_INTERFACE_COUNTER_##E].name = #n; \
1347 im->combined_sw_if_counters[VNET_INTERFACE_COUNTER_##E].stat_segment_name = "/" #p "/" #n;
1348 foreach_combined_interface_counter_name
1349#undef _
1350 im->sw_if_counter_lock[0] = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001351
Dave Barachba868bb2016-08-08 09:51:21 -04001352 im->device_class_by_name = hash_create_string ( /* size */ 0,
Ed Warnickecb9cada2015-12-08 15:45:58 -07001353 sizeof (uword));
1354 {
Dave Barachba868bb2016-08-08 09:51:21 -04001355 vnet_device_class_t *c;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001356
1357 c = vnm->device_class_registrations;
1358
1359 while (c)
1360 {
Dave Barachba868bb2016-08-08 09:51:21 -04001361 c->index = vec_len (im->device_classes);
1362 hash_set_mem (im->device_class_by_name, c->name, c->index);
Mohsin Kazmidd8e7d02018-07-23 14:45:57 +02001363
1364 if (c->tx_fn_registrations)
1365 {
1366 vlib_node_fn_registration_t *fnr = c->tx_fn_registrations;
1367 int priority = -1;
1368
Paul Vinciguerrabdc0e6b2018-09-22 05:32:50 -07001369 /* to avoid confusion, please remove ".tx_function" statement
Mohsin Kazmidd8e7d02018-07-23 14:45:57 +02001370 from VNET_DEVICE_CLASS() if using function candidates */
1371 ASSERT (c->tx_function == 0);
1372
1373 while (fnr)
1374 {
1375 if (fnr->priority > priority)
1376 {
1377 priority = fnr->priority;
1378 c->tx_function = fnr->function;
1379 }
1380 fnr = fnr->next_registration;
1381 }
1382 }
1383
Dave Barachba868bb2016-08-08 09:51:21 -04001384 vec_add1 (im->device_classes, c[0]);
1385 c = c->next_class_registration;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001386 }
1387 }
1388
Dave Barachba868bb2016-08-08 09:51:21 -04001389 im->hw_interface_class_by_name = hash_create_string ( /* size */ 0,
Ed Warnickecb9cada2015-12-08 15:45:58 -07001390 sizeof (uword));
1391
Dave Barachba868bb2016-08-08 09:51:21 -04001392 im->sw_if_index_by_sup_and_sub = hash_create_mem (0, sizeof (u64),
1393 sizeof (uword));
Ed Warnickecb9cada2015-12-08 15:45:58 -07001394 {
Dave Barachba868bb2016-08-08 09:51:21 -04001395 vnet_hw_interface_class_t *c;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001396
1397 c = vnm->hw_interface_class_registrations;
Dave Barachba868bb2016-08-08 09:51:21 -04001398
Ed Warnickecb9cada2015-12-08 15:45:58 -07001399 while (c)
1400 {
Dave Barachba868bb2016-08-08 09:51:21 -04001401 c->index = vec_len (im->hw_interface_classes);
1402 hash_set_mem (im->hw_interface_class_by_name, c->name, c->index);
Neale Rannsb80c5362016-10-08 13:03:40 +01001403
1404 if (NULL == c->build_rewrite)
1405 c->build_rewrite = default_build_rewrite;
1406 if (NULL == c->update_adjacency)
1407 c->update_adjacency = default_update_adjacency;
1408
Dave Barachba868bb2016-08-08 09:51:21 -04001409 vec_add1 (im->hw_interface_classes, c[0]);
1410 c = c->next_class_registration;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001411 }
1412 }
1413
Dave Barach7bee7732017-10-18 18:48:11 -04001414 if ((error = vlib_call_init_function (vm, vnet_interface_cli_init)))
Ed Warnickecb9cada2015-12-08 15:45:58 -07001415 return error;
Dave Barach7bee7732017-10-18 18:48:11 -04001416
Dave Barach7be864a2016-11-28 11:41:35 -05001417 vnm->interface_tag_by_sw_if_index = hash_create (0, sizeof (uword));
Dave Barach7bee7732017-10-18 18:48:11 -04001418
1419#if VLIB_BUFFER_TRACE_TRAJECTORY > 0
1420 if ((error = vlib_call_init_function (vm, trajectory_trace_init)))
1421 return error;
1422#endif
1423
1424 return 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001425}
1426
1427VLIB_INIT_FUNCTION (vnet_interface_init);
1428
1429/* Kludge to renumber interface names [only!] */
Dave Barachba868bb2016-08-08 09:51:21 -04001430int
1431vnet_interface_name_renumber (u32 sw_if_index, u32 new_show_dev_instance)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001432{
1433 int rv;
Dave Barachba868bb2016-08-08 09:51:21 -04001434 vnet_main_t *vnm = vnet_get_main ();
1435 vnet_interface_main_t *im = &vnm->interface_main;
1436 vnet_hw_interface_t *hi = vnet_get_sup_hw_interface (vnm, sw_if_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001437
Dave Barachba868bb2016-08-08 09:51:21 -04001438 vnet_device_class_t *dev_class = vnet_get_device_class
Ed Warnickecb9cada2015-12-08 15:45:58 -07001439 (vnm, hi->dev_class_index);
1440
1441 if (dev_class->name_renumber == 0 || dev_class->format_device_name == 0)
Dave Barachba868bb2016-08-08 09:51:21 -04001442 return VNET_API_ERROR_UNIMPLEMENTED;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001443
1444 rv = dev_class->name_renumber (hi, new_show_dev_instance);
1445
1446 if (rv)
1447 return rv;
1448
1449 hash_unset_mem (im->hw_interface_by_name, hi->name);
1450 vec_free (hi->name);
1451 /* Use the mapping we set up to call it Ishmael */
Dave Barachba868bb2016-08-08 09:51:21 -04001452 hi->name = format (0, "%U", dev_class->format_device_name,
1453 hi->dev_instance);
1454
Ed Warnickecb9cada2015-12-08 15:45:58 -07001455 hash_set_mem (im->hw_interface_by_name, hi->name, hi->hw_if_index);
1456 return rv;
1457}
1458
Sean Hope608d1ed2016-03-09 00:35:21 -05001459clib_error_t *
Dave Barachba868bb2016-08-08 09:51:21 -04001460vnet_rename_interface (vnet_main_t * vnm, u32 hw_if_index, char *new_name)
Sean Hope608d1ed2016-03-09 00:35:21 -05001461{
Dave Barachba868bb2016-08-08 09:51:21 -04001462 vnet_interface_main_t *im = &vnm->interface_main;
1463 vlib_main_t *vm = vnm->vlib_main;
1464 vnet_hw_interface_t *hw;
1465 u8 *old_name;
1466 clib_error_t *error = 0;
Sean Hope608d1ed2016-03-09 00:35:21 -05001467
Dave Barachba868bb2016-08-08 09:51:21 -04001468 hw = vnet_get_hw_interface (vnm, hw_if_index);
Sean Hope608d1ed2016-03-09 00:35:21 -05001469 if (!hw)
1470 {
1471 return clib_error_return (0,
Dave Barachba868bb2016-08-08 09:51:21 -04001472 "unable to find hw interface for index %u",
1473 hw_if_index);
Sean Hope608d1ed2016-03-09 00:35:21 -05001474 }
1475
1476 old_name = hw->name;
1477
Dave Barachba868bb2016-08-08 09:51:21 -04001478 /* set new hw->name */
Sean Hope608d1ed2016-03-09 00:35:21 -05001479 hw->name = format (0, "%s", new_name);
1480
Dave Barachba868bb2016-08-08 09:51:21 -04001481 /* remove the old name to hw_if_index mapping and install the new one */
Sean Hope608d1ed2016-03-09 00:35:21 -05001482 hash_unset_mem (im->hw_interface_by_name, old_name);
1483 hash_set_mem (im->hw_interface_by_name, hw->name, hw_if_index);
1484
Dave Barachba868bb2016-08-08 09:51:21 -04001485 /* rename tx/output nodes */
Sean Hope608d1ed2016-03-09 00:35:21 -05001486 vlib_node_rename (vm, hw->tx_node_index, "%v-tx", hw->name);
1487 vlib_node_rename (vm, hw->output_node_index, "%v-output", hw->name);
1488
Dave Barachba868bb2016-08-08 09:51:21 -04001489 /* free the old name vector */
Sean Hope608d1ed2016-03-09 00:35:21 -05001490 vec_free (old_name);
1491
1492 return error;
1493}
Dave Barachba868bb2016-08-08 09:51:21 -04001494
Pavel Kotucekc631f2d2016-09-26 10:40:02 +02001495static clib_error_t *
1496vnet_hw_interface_change_mac_address_helper (vnet_main_t * vnm,
John Lo62fcc0a2017-10-31 14:31:10 -04001497 u32 hw_if_index,
1498 u8 * mac_address)
Pavel Kotucekc631f2d2016-09-26 10:40:02 +02001499{
1500 clib_error_t *error = 0;
1501 vnet_hw_interface_t *hi = vnet_get_hw_interface (vnm, hw_if_index);
1502
1503 if (hi->hw_address)
1504 {
Neale Ranns3b81a1e2018-09-06 09:50:26 -07001505 u8 *old_address = vec_dup (hi->hw_address);
Pavel Kotucekc631f2d2016-09-26 10:40:02 +02001506 vnet_device_class_t *dev_class =
1507 vnet_get_device_class (vnm, hi->dev_class_index);
1508 if (dev_class->mac_addr_change_function)
1509 {
1510 error =
Neale Ranns3b81a1e2018-09-06 09:50:26 -07001511 dev_class->mac_addr_change_function (hi, old_address,
1512 mac_address);
Pavel Kotucekc631f2d2016-09-26 10:40:02 +02001513 }
1514 if (!error)
1515 {
Neale Ranns3be6b282016-12-20 14:24:01 +00001516 vnet_hw_interface_class_t *hw_class;
Pavel Kotucekc631f2d2016-09-26 10:40:02 +02001517
Neale Ranns3be6b282016-12-20 14:24:01 +00001518 hw_class = vnet_get_hw_interface_class (vnm, hi->hw_class_index);
Pavel Kotuceka6b31772016-10-14 10:20:59 +02001519
Neale Ranns3be6b282016-12-20 14:24:01 +00001520 if (NULL != hw_class->mac_addr_change_function)
Neale Ranns3b81a1e2018-09-06 09:50:26 -07001521 hw_class->mac_addr_change_function (hi, old_address, mac_address);
Pavel Kotucekc631f2d2016-09-26 10:40:02 +02001522 }
1523 else
1524 {
1525 error =
1526 clib_error_return (0,
1527 "MAC Address Change is not supported on this interface");
1528 }
Neale Ranns3b81a1e2018-09-06 09:50:26 -07001529 vec_free (old_address);
Pavel Kotucekc631f2d2016-09-26 10:40:02 +02001530 }
1531 else
1532 {
1533 error =
1534 clib_error_return (0,
1535 "mac address change is not supported for interface index %u",
1536 hw_if_index);
1537 }
1538 return error;
1539}
1540
1541clib_error_t *
1542vnet_hw_interface_change_mac_address (vnet_main_t * vnm, u32 hw_if_index,
John Lo62fcc0a2017-10-31 14:31:10 -04001543 u8 * mac_address)
Pavel Kotucekc631f2d2016-09-26 10:40:02 +02001544{
1545 return vnet_hw_interface_change_mac_address_helper
1546 (vnm, hw_if_index, mac_address);
1547}
1548
Neale Ranns2ae2bc52018-03-16 03:22:39 -07001549/* update the unnumbered state of an interface*/
1550void
1551vnet_sw_interface_update_unnumbered (u32 unnumbered_sw_if_index,
1552 u32 ip_sw_if_index, u8 enable)
1553{
1554 vnet_main_t *vnm = vnet_get_main ();
1555 vnet_sw_interface_t *si;
1556 u32 was_unnum;
1557
1558 si = vnet_get_sw_interface (vnm, unnumbered_sw_if_index);
1559 was_unnum = (si->flags & VNET_SW_INTERFACE_FLAG_UNNUMBERED);
1560
1561 if (enable)
1562 {
1563 si->flags |= VNET_SW_INTERFACE_FLAG_UNNUMBERED;
1564 si->unnumbered_sw_if_index = ip_sw_if_index;
1565
1566 ip4_main.lookup_main.if_address_pool_index_by_sw_if_index
1567 [unnumbered_sw_if_index] =
1568 ip4_main.
1569 lookup_main.if_address_pool_index_by_sw_if_index[ip_sw_if_index];
1570 ip6_main.
1571 lookup_main.if_address_pool_index_by_sw_if_index
1572 [unnumbered_sw_if_index] =
1573 ip6_main.
1574 lookup_main.if_address_pool_index_by_sw_if_index[ip_sw_if_index];
1575 }
1576 else
1577 {
1578 si->flags &= ~(VNET_SW_INTERFACE_FLAG_UNNUMBERED);
1579 si->unnumbered_sw_if_index = (u32) ~ 0;
1580
1581 ip4_main.lookup_main.if_address_pool_index_by_sw_if_index
1582 [unnumbered_sw_if_index] = ~0;
1583 ip6_main.lookup_main.if_address_pool_index_by_sw_if_index
1584 [unnumbered_sw_if_index] = ~0;
1585 }
1586
1587 if (was_unnum != (si->flags & VNET_SW_INTERFACE_FLAG_UNNUMBERED))
1588 {
1589 ip4_sw_interface_enable_disable (unnumbered_sw_if_index, enable);
1590 ip6_sw_interface_enable_disable (unnumbered_sw_if_index, enable);
1591 }
1592}
1593
Neale Rannsb80c5362016-10-08 13:03:40 +01001594vnet_l3_packet_type_t
1595vnet_link_to_l3_proto (vnet_link_t link)
1596{
1597 switch (link)
1598 {
1599 case VNET_LINK_IP4:
1600 return (VNET_L3_PACKET_TYPE_IP4);
1601 case VNET_LINK_IP6:
1602 return (VNET_L3_PACKET_TYPE_IP6);
1603 case VNET_LINK_MPLS:
Neale Ranns0f26c5a2017-03-01 15:12:11 -08001604 return (VNET_L3_PACKET_TYPE_MPLS);
Neale Rannsb80c5362016-10-08 13:03:40 +01001605 case VNET_LINK_ARP:
1606 return (VNET_L3_PACKET_TYPE_ARP);
1607 case VNET_LINK_ETHERNET:
Florin Corasce1b4c72017-01-26 14:25:34 -08001608 case VNET_LINK_NSH:
Neale Rannsb80c5362016-10-08 13:03:40 +01001609 ASSERT (0);
1610 break;
1611 }
1612 ASSERT (0);
1613 return (0);
1614}
1615
Ole Troand7231612018-06-07 10:17:57 +02001616vnet_mtu_t
1617vnet_link_to_mtu (vnet_link_t link)
1618{
1619 switch (link)
1620 {
1621 case VNET_LINK_IP4:
1622 return (VNET_MTU_IP4);
1623 case VNET_LINK_IP6:
1624 return (VNET_MTU_IP6);
1625 case VNET_LINK_MPLS:
1626 return (VNET_MTU_MPLS);
1627 default:
1628 return (VNET_MTU_L3);
1629 }
1630}
1631
Neale Rannsb80c5362016-10-08 13:03:40 +01001632u8 *
1633default_build_rewrite (vnet_main_t * vnm,
1634 u32 sw_if_index,
1635 vnet_link_t link_type, const void *dst_address)
1636{
1637 return (NULL);
1638}
1639
1640void
1641default_update_adjacency (vnet_main_t * vnm, u32 sw_if_index, u32 ai)
1642{
Neale Ranns0117d242017-08-12 12:52:54 -07001643 ip_adjacency_t *adj;
Neale Rannsb80c5362016-10-08 13:03:40 +01001644
Neale Ranns0117d242017-08-12 12:52:54 -07001645 adj = adj_get (ai);
Neale Rannsb80c5362016-10-08 13:03:40 +01001646
Neale Ranns0117d242017-08-12 12:52:54 -07001647 switch (adj->lookup_next_index)
1648 {
Ole Trøan438f6302018-02-15 21:56:06 +00001649 case IP_LOOKUP_NEXT_GLEAN:
Neale Rannsc819fc62018-02-16 02:44:05 -08001650 adj_glean_update_rewrite (ai);
1651 break;
1652 case IP_LOOKUP_NEXT_ARP:
Neale Ranns1855b8e2018-07-11 10:31:26 -07001653 case IP_LOOKUP_NEXT_BCAST:
Neale Ranns0117d242017-08-12 12:52:54 -07001654 /*
Paul Vinciguerrabdc0e6b2018-09-22 05:32:50 -07001655 * default rewrite in neighbour adj
Neale Ranns0117d242017-08-12 12:52:54 -07001656 */
1657 adj_nbr_update_rewrite
1658 (ai,
1659 ADJ_NBR_REWRITE_FLAG_COMPLETE,
1660 vnet_build_rewrite_for_sw_interface (vnm,
1661 sw_if_index,
1662 adj_get_link_type (ai), NULL));
1663 break;
1664 case IP_LOOKUP_NEXT_MCAST:
1665 /*
1666 * mcast traffic also uses default rewrite string with no mcast
1667 * switch time updates.
1668 */
1669 adj_mcast_update_rewrite
1670 (ai,
1671 vnet_build_rewrite_for_sw_interface (vnm,
1672 sw_if_index,
1673 adj_get_link_type (ai),
Neale Ranns889fe942017-06-01 05:43:19 -04001674 NULL), 0);
Neale Ranns0117d242017-08-12 12:52:54 -07001675 break;
1676 case IP_LOOKUP_NEXT_DROP:
1677 case IP_LOOKUP_NEXT_PUNT:
1678 case IP_LOOKUP_NEXT_LOCAL:
1679 case IP_LOOKUP_NEXT_REWRITE:
1680 case IP_LOOKUP_NEXT_MCAST_MIDCHAIN:
1681 case IP_LOOKUP_NEXT_MIDCHAIN:
1682 case IP_LOOKUP_NEXT_ICMP_ERROR:
1683 case IP_LOOKUP_N_NEXT:
1684 ASSERT (0);
1685 break;
1686 }
Neale Rannsb80c5362016-10-08 13:03:40 +01001687}
1688
Neale Ranns6f4a6be2018-03-16 16:26:21 -07001689int collect_detailed_interface_stats_flag = 0;
1690
1691void
Neale Rannsf704f382018-03-19 12:24:07 -04001692collect_detailed_interface_stats_flag_set (void)
Neale Ranns6f4a6be2018-03-16 16:26:21 -07001693{
1694 collect_detailed_interface_stats_flag = 1;
1695}
1696
1697void
Neale Rannsf704f382018-03-19 12:24:07 -04001698collect_detailed_interface_stats_flag_clear (void)
Neale Ranns6f4a6be2018-03-16 16:26:21 -07001699{
1700 collect_detailed_interface_stats_flag = 0;
1701}
1702
1703static clib_error_t *
1704collect_detailed_interface_stats_cli (vlib_main_t * vm,
1705 unformat_input_t * input,
1706 vlib_cli_command_t * cmd)
1707{
1708 unformat_input_t _line_input, *line_input = &_line_input;
1709 clib_error_t *error = NULL;
1710
1711 /* Get a line of input. */
1712 if (!unformat_user (input, unformat_line_input, line_input))
1713 return clib_error_return (0, "expected enable | disable");
1714
1715 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
1716 {
1717 if (unformat (line_input, "enable") || unformat (line_input, "on"))
1718 collect_detailed_interface_stats_flag_set ();
1719 else if (unformat (line_input, "disable")
1720 || unformat (line_input, "off"))
1721 collect_detailed_interface_stats_flag_clear ();
1722 else
1723 {
1724 error = clib_error_return (0, "unknown input `%U'",
1725 format_unformat_error, line_input);
1726 goto done;
1727 }
1728 }
1729
1730done:
1731 unformat_free (line_input);
1732 return error;
1733}
1734
1735/* *INDENT-OFF* */
1736VLIB_CLI_COMMAND (collect_detailed_interface_stats_command, static) = {
1737 .path = "interface collect detailed-stats",
1738 .short_help = "interface collect detailed-stats <enable|disable>",
1739 .function = collect_detailed_interface_stats_cli,
1740};
1741/* *INDENT-ON* */
1742
Dave Barachba868bb2016-08-08 09:51:21 -04001743/*
1744 * fd.io coding-style-patch-verification: ON
1745 *
1746 * Local Variables:
1747 * eval: (c-set-style "gnu")
1748 * End:
1749 */