Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2015 Cisco and/or its affiliates. |
| 3 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 | * you may not use this file except in compliance with the License. |
| 5 | * You may obtain a copy of the License at: |
| 6 | * |
| 7 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 8 | * |
| 9 | * Unless required by applicable law or agreed to in writing, software |
| 10 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 11 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 | * See the License for the specific language governing permissions and |
| 13 | * limitations under the License. |
| 14 | */ |
| 15 | /* |
| 16 | * interface.c: VNET interfaces/sub-interfaces |
| 17 | * |
| 18 | * Copyright (c) 2008 Eliot Dresselhaus |
| 19 | * |
| 20 | * Permission is hereby granted, free of charge, to any person obtaining |
| 21 | * a copy of this software and associated documentation files (the |
| 22 | * "Software"), to deal in the Software without restriction, including |
| 23 | * without limitation the rights to use, copy, modify, merge, publish, |
| 24 | * distribute, sublicense, and/or sell copies of the Software, and to |
| 25 | * permit persons to whom the Software is furnished to do so, subject to |
| 26 | * the following conditions: |
| 27 | * |
| 28 | * The above copyright notice and this permission notice shall be |
| 29 | * included in all copies or substantial portions of the Software. |
| 30 | * |
| 31 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, |
| 32 | * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF |
| 33 | * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND |
| 34 | * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE |
| 35 | * LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION |
| 36 | * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION |
| 37 | * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. |
| 38 | */ |
| 39 | |
| 40 | #include <vnet/vnet.h> |
| 41 | #include <vnet/plugin/plugin.h> |
Neale Ranns | b80c536 | 2016-10-08 13:03:40 +0100 | [diff] [blame] | 42 | #include <vnet/adj/adj.h> |
Neale Ranns | 0117d24 | 2017-08-12 12:52:54 -0700 | [diff] [blame] | 43 | #include <vnet/adj/adj_mcast.h> |
Neale Ranns | 5a59b2b | 2020-10-19 14:47:20 +0000 | [diff] [blame] | 44 | #include <vnet/ip/ip.h> |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 45 | |
Damjan Marion | d1bd5d2 | 2020-11-23 16:58:05 +0100 | [diff] [blame^] | 46 | /* *INDENT-OFF* */ |
| 47 | VLIB_REGISTER_LOG_CLASS (if_default_log, static) = { |
| 48 | .class_name = "interface", |
| 49 | }; |
| 50 | /* *INDENT-ON* */ |
| 51 | |
| 52 | #define log_debug(fmt,...) vlib_log_debug(if_default_log.class, fmt, __VA_ARGS__) |
| 53 | #define log_err(fmt,...) vlib_log_err(if_default_log.class, fmt, __VA_ARGS__) |
Neale Ranns | 6e43e06 | 2018-10-26 05:17:03 -0700 | [diff] [blame] | 54 | typedef enum vnet_interface_helper_flags_t_ |
| 55 | { |
| 56 | VNET_INTERFACE_SET_FLAGS_HELPER_IS_CREATE = (1 << 0), |
| 57 | VNET_INTERFACE_SET_FLAGS_HELPER_WANT_REDISTRIBUTE = (1 << 1), |
| 58 | } vnet_interface_helper_flags_t; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 59 | |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 60 | static clib_error_t *vnet_hw_interface_set_flags_helper (vnet_main_t * vnm, |
| 61 | u32 hw_if_index, |
Neale Ranns | 6e43e06 | 2018-10-26 05:17:03 -0700 | [diff] [blame] | 62 | vnet_hw_interface_flags_t |
| 63 | flags, |
| 64 | vnet_interface_helper_flags_t |
| 65 | helper_flags); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 66 | |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 67 | static clib_error_t *vnet_sw_interface_set_flags_helper (vnet_main_t * vnm, |
| 68 | u32 sw_if_index, |
Neale Ranns | 6e43e06 | 2018-10-26 05:17:03 -0700 | [diff] [blame] | 69 | vnet_sw_interface_flags_t |
| 70 | flags, |
| 71 | vnet_interface_helper_flags_t |
| 72 | helper_flags); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 73 | |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 74 | static clib_error_t *vnet_hw_interface_set_class_helper (vnet_main_t * vnm, |
| 75 | u32 hw_if_index, |
| 76 | u32 hw_class_index, |
| 77 | u32 redistribute); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 78 | |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 79 | typedef struct |
| 80 | { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 81 | /* Either sw or hw interface index. */ |
| 82 | u32 sw_hw_if_index; |
| 83 | |
| 84 | /* Flags. */ |
| 85 | u32 flags; |
| 86 | } vnet_sw_hw_interface_state_t; |
| 87 | |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 88 | static void |
| 89 | serialize_vec_vnet_sw_hw_interface_state (serialize_main_t * m, va_list * va) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 90 | { |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 91 | vnet_sw_hw_interface_state_t *s = |
| 92 | va_arg (*va, vnet_sw_hw_interface_state_t *); |
| 93 | u32 n = va_arg (*va, u32); |
| 94 | u32 i; |
| 95 | for (i = 0; i < n; i++) |
| 96 | { |
| 97 | serialize_integer (m, s[i].sw_hw_if_index, |
| 98 | sizeof (s[i].sw_hw_if_index)); |
| 99 | serialize_integer (m, s[i].flags, sizeof (s[i].flags)); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 100 | } |
| 101 | } |
| 102 | |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 103 | static void |
| 104 | unserialize_vec_vnet_sw_hw_interface_state (serialize_main_t * m, |
| 105 | va_list * va) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 106 | { |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 107 | vnet_sw_hw_interface_state_t *s = |
| 108 | va_arg (*va, vnet_sw_hw_interface_state_t *); |
| 109 | u32 n = va_arg (*va, u32); |
| 110 | u32 i; |
| 111 | for (i = 0; i < n; i++) |
| 112 | { |
| 113 | unserialize_integer (m, &s[i].sw_hw_if_index, |
| 114 | sizeof (s[i].sw_hw_if_index)); |
| 115 | unserialize_integer (m, &s[i].flags, sizeof (s[i].flags)); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 116 | } |
| 117 | } |
| 118 | |
Neale Ranns | b3a9381 | 2018-10-29 01:55:24 -0700 | [diff] [blame] | 119 | static vnet_sw_interface_flags_t |
| 120 | vnet_hw_interface_flags_to_sw (vnet_hw_interface_flags_t hwf) |
| 121 | { |
| 122 | vnet_sw_interface_flags_t swf = VNET_SW_INTERFACE_FLAG_NONE; |
| 123 | |
| 124 | if (hwf & VNET_HW_INTERFACE_FLAG_LINK_UP) |
| 125 | swf |= VNET_SW_INTERFACE_FLAG_ADMIN_UP; |
| 126 | |
| 127 | return (swf); |
| 128 | } |
| 129 | |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 130 | void |
| 131 | serialize_vnet_interface_state (serialize_main_t * m, va_list * va) |
| 132 | { |
| 133 | vnet_main_t *vnm = va_arg (*va, vnet_main_t *); |
| 134 | vnet_sw_hw_interface_state_t *sts = 0, *st; |
| 135 | vnet_sw_interface_t *sif; |
| 136 | vnet_hw_interface_t *hif; |
| 137 | vnet_interface_main_t *im = &vnm->interface_main; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 138 | |
| 139 | /* Serialize hardware interface classes since they may have changed. |
| 140 | Must do this before sending up/down flags. */ |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 141 | /* *INDENT-OFF* */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 142 | pool_foreach (hif, im->hw_interfaces, ({ |
| 143 | vnet_hw_interface_class_t * hw_class = vnet_get_hw_interface_class (vnm, hif->hw_class_index); |
| 144 | serialize_cstring (m, hw_class->name); |
| 145 | })); |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 146 | /* *INDENT-ON* */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 147 | |
| 148 | /* Send sw/hw interface state when non-zero. */ |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 149 | /* *INDENT-OFF* */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 150 | pool_foreach (sif, im->sw_interfaces, ({ |
| 151 | if (sif->flags != 0) |
| 152 | { |
| 153 | vec_add2 (sts, st, 1); |
| 154 | st->sw_hw_if_index = sif->sw_if_index; |
| 155 | st->flags = sif->flags; |
| 156 | } |
| 157 | })); |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 158 | /* *INDENT-ON* */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 159 | |
| 160 | vec_serialize (m, sts, serialize_vec_vnet_sw_hw_interface_state); |
| 161 | |
| 162 | if (sts) |
| 163 | _vec_len (sts) = 0; |
| 164 | |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 165 | /* *INDENT-OFF* */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 166 | pool_foreach (hif, im->hw_interfaces, ({ |
| 167 | if (hif->flags != 0) |
| 168 | { |
| 169 | vec_add2 (sts, st, 1); |
| 170 | st->sw_hw_if_index = hif->hw_if_index; |
Neale Ranns | b3a9381 | 2018-10-29 01:55:24 -0700 | [diff] [blame] | 171 | st->flags = vnet_hw_interface_flags_to_sw(hif->flags); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 172 | } |
| 173 | })); |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 174 | /* *INDENT-ON* */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 175 | |
| 176 | vec_serialize (m, sts, serialize_vec_vnet_sw_hw_interface_state); |
| 177 | |
| 178 | vec_free (sts); |
| 179 | } |
| 180 | |
Neale Ranns | b3a9381 | 2018-10-29 01:55:24 -0700 | [diff] [blame] | 181 | static vnet_hw_interface_flags_t |
| 182 | vnet_sw_interface_flags_to_hw (vnet_sw_interface_flags_t swf) |
| 183 | { |
| 184 | vnet_hw_interface_flags_t hwf = VNET_HW_INTERFACE_FLAG_NONE; |
| 185 | |
| 186 | if (swf & VNET_SW_INTERFACE_FLAG_ADMIN_UP) |
| 187 | hwf |= VNET_HW_INTERFACE_FLAG_LINK_UP; |
| 188 | |
| 189 | return (hwf); |
| 190 | } |
| 191 | |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 192 | void |
| 193 | unserialize_vnet_interface_state (serialize_main_t * m, va_list * va) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 194 | { |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 195 | vnet_main_t *vnm = va_arg (*va, vnet_main_t *); |
| 196 | vnet_sw_hw_interface_state_t *sts = 0, *st; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 197 | |
| 198 | /* First set interface hardware class. */ |
| 199 | { |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 200 | vnet_interface_main_t *im = &vnm->interface_main; |
| 201 | vnet_hw_interface_t *hif; |
| 202 | char *class_name; |
| 203 | uword *p; |
| 204 | clib_error_t *error; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 205 | |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 206 | /* *INDENT-OFF* */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 207 | pool_foreach (hif, im->hw_interfaces, ({ |
| 208 | unserialize_cstring (m, &class_name); |
| 209 | p = hash_get_mem (im->hw_interface_class_by_name, class_name); |
Dave Barach | a6ef36b | 2020-02-11 10:29:13 -0500 | [diff] [blame] | 210 | if (p) |
| 211 | { |
| 212 | error = vnet_hw_interface_set_class_helper |
| 213 | (vnm, hif->hw_if_index, p[0], /* redistribute */ 0); |
| 214 | } |
| 215 | else |
| 216 | error = clib_error_return (0, "hw class %s AWOL?", class_name); |
| 217 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 218 | if (error) |
| 219 | clib_error_report (error); |
| 220 | vec_free (class_name); |
| 221 | })); |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 222 | /* *INDENT-ON* */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 223 | } |
| 224 | |
| 225 | vec_unserialize (m, &sts, unserialize_vec_vnet_sw_hw_interface_state); |
| 226 | vec_foreach (st, sts) |
| 227 | vnet_sw_interface_set_flags_helper (vnm, st->sw_hw_if_index, st->flags, |
| 228 | /* no distribute */ 0); |
| 229 | vec_free (sts); |
| 230 | |
| 231 | vec_unserialize (m, &sts, unserialize_vec_vnet_sw_hw_interface_state); |
| 232 | vec_foreach (st, sts) |
Neale Ranns | b3a9381 | 2018-10-29 01:55:24 -0700 | [diff] [blame] | 233 | { |
| 234 | vnet_hw_interface_set_flags_helper |
| 235 | (vnm, st->sw_hw_if_index, vnet_sw_interface_flags_to_hw (st->flags), |
| 236 | /* no distribute */ 0); |
| 237 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 238 | vec_free (sts); |
| 239 | } |
| 240 | |
| 241 | static clib_error_t * |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 242 | call_elf_section_interface_callbacks (vnet_main_t * vnm, u32 if_index, |
| 243 | u32 flags, |
Neale Ranns | 8b37b87 | 2016-11-21 12:25:22 +0000 | [diff] [blame] | 244 | _vnet_interface_function_list_elt_t ** |
| 245 | elts) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 246 | { |
Neale Ranns | 8b37b87 | 2016-11-21 12:25:22 +0000 | [diff] [blame] | 247 | _vnet_interface_function_list_elt_t *elt; |
| 248 | vnet_interface_function_priority_t prio; |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 249 | clib_error_t *error = 0; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 250 | |
Neale Ranns | 8b37b87 | 2016-11-21 12:25:22 +0000 | [diff] [blame] | 251 | for (prio = VNET_ITF_FUNC_PRIORITY_LOW; |
| 252 | prio <= VNET_ITF_FUNC_PRIORITY_HIGH; prio++) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 253 | { |
Neale Ranns | 8b37b87 | 2016-11-21 12:25:22 +0000 | [diff] [blame] | 254 | elt = elts[prio]; |
| 255 | |
| 256 | while (elt) |
| 257 | { |
| 258 | error = elt->fp (vnm, if_index, flags); |
| 259 | if (error) |
| 260 | return error; |
| 261 | elt = elt->next_interface_function; |
| 262 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 263 | } |
| 264 | return error; |
| 265 | } |
| 266 | |
| 267 | static clib_error_t * |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 268 | call_hw_interface_add_del_callbacks (vnet_main_t * vnm, u32 hw_if_index, |
| 269 | u32 is_create) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 270 | { |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 271 | vnet_hw_interface_t *hi = vnet_get_hw_interface (vnm, hw_if_index); |
| 272 | vnet_hw_interface_class_t *hw_class = |
| 273 | vnet_get_hw_interface_class (vnm, hi->hw_class_index); |
| 274 | vnet_device_class_t *dev_class = |
| 275 | vnet_get_device_class (vnm, hi->dev_class_index); |
| 276 | clib_error_t *error = 0; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 277 | |
| 278 | if (hw_class->interface_add_del_function |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 279 | && (error = |
| 280 | hw_class->interface_add_del_function (vnm, hw_if_index, is_create))) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 281 | return error; |
| 282 | |
| 283 | if (dev_class->interface_add_del_function |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 284 | && (error = |
| 285 | dev_class->interface_add_del_function (vnm, hw_if_index, |
| 286 | is_create))) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 287 | return error; |
| 288 | |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 289 | error = call_elf_section_interface_callbacks |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 290 | (vnm, hw_if_index, is_create, vnm->hw_interface_add_del_functions); |
| 291 | |
| 292 | return error; |
| 293 | } |
| 294 | |
| 295 | static clib_error_t * |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 296 | call_sw_interface_add_del_callbacks (vnet_main_t * vnm, u32 sw_if_index, |
| 297 | u32 is_create) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 298 | { |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 299 | return call_elf_section_interface_callbacks |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 300 | (vnm, sw_if_index, is_create, vnm->sw_interface_add_del_functions); |
| 301 | } |
| 302 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 303 | static clib_error_t * |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 304 | vnet_hw_interface_set_flags_helper (vnet_main_t * vnm, u32 hw_if_index, |
Neale Ranns | 6e43e06 | 2018-10-26 05:17:03 -0700 | [diff] [blame] | 305 | vnet_hw_interface_flags_t flags, |
| 306 | vnet_interface_helper_flags_t |
| 307 | helper_flags) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 308 | { |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 309 | vnet_hw_interface_t *hi = vnet_get_hw_interface (vnm, hw_if_index); |
| 310 | vnet_hw_interface_class_t *hw_class = |
| 311 | vnet_get_hw_interface_class (vnm, hi->hw_class_index); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 312 | u32 mask; |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 313 | clib_error_t *error = 0; |
| 314 | u32 is_create = |
| 315 | (helper_flags & VNET_INTERFACE_SET_FLAGS_HELPER_IS_CREATE) != 0; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 316 | |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 317 | mask = |
Damjan Marion | 5100aa9 | 2018-11-08 15:30:16 +0100 | [diff] [blame] | 318 | (VNET_HW_INTERFACE_FLAG_LINK_UP | VNET_HW_INTERFACE_FLAG_DUPLEX_MASK); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 319 | flags &= mask; |
| 320 | |
| 321 | /* Call hardware interface add/del callbacks. */ |
| 322 | if (is_create) |
| 323 | call_hw_interface_add_del_callbacks (vnm, hw_if_index, is_create); |
| 324 | |
| 325 | /* Already in the desired state? */ |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 326 | if (!is_create && (hi->flags & mask) == flags) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 327 | goto done; |
| 328 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 329 | if ((hi->flags & VNET_HW_INTERFACE_FLAG_LINK_UP) != |
| 330 | (flags & VNET_HW_INTERFACE_FLAG_LINK_UP)) |
| 331 | { |
| 332 | /* Do hardware class (e.g. ethernet). */ |
| 333 | if (hw_class->link_up_down_function |
| 334 | && (error = hw_class->link_up_down_function (vnm, hw_if_index, |
| 335 | flags))) |
| 336 | goto done; |
| 337 | |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 338 | error = call_elf_section_interface_callbacks |
Klement Sekera | 2cee01d | 2016-09-08 17:53:13 +0200 | [diff] [blame] | 339 | (vnm, hw_if_index, flags, vnm->hw_interface_link_up_down_functions); |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 340 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 341 | if (error) |
| 342 | goto done; |
| 343 | } |
| 344 | |
| 345 | hi->flags &= ~mask; |
| 346 | hi->flags |= flags; |
| 347 | |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 348 | done: |
Damjan Marion | d1bd5d2 | 2020-11-23 16:58:05 +0100 | [diff] [blame^] | 349 | if (error) |
| 350 | log_err ("hw_set_flags_helper: %U", format_clib_error, error); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 351 | return error; |
| 352 | } |
| 353 | |
| 354 | static clib_error_t * |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 355 | vnet_sw_interface_set_flags_helper (vnet_main_t * vnm, u32 sw_if_index, |
Neale Ranns | 6e43e06 | 2018-10-26 05:17:03 -0700 | [diff] [blame] | 356 | vnet_sw_interface_flags_t flags, |
| 357 | vnet_interface_helper_flags_t |
| 358 | helper_flags) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 359 | { |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 360 | vnet_sw_interface_t *si = vnet_get_sw_interface (vnm, sw_if_index); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 361 | u32 mask; |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 362 | clib_error_t *error = 0; |
| 363 | u32 is_create = |
| 364 | (helper_flags & VNET_INTERFACE_SET_FLAGS_HELPER_IS_CREATE) != 0; |
Georgi Savov | 3a03598 | 2016-02-25 12:56:03 -0500 | [diff] [blame] | 365 | u32 old_flags; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 366 | |
| 367 | mask = VNET_SW_INTERFACE_FLAG_ADMIN_UP | VNET_SW_INTERFACE_FLAG_PUNT; |
| 368 | flags &= mask; |
| 369 | |
| 370 | if (is_create) |
| 371 | { |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 372 | error = |
| 373 | call_sw_interface_add_del_callbacks (vnm, sw_if_index, is_create); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 374 | if (error) |
| 375 | goto done; |
| 376 | |
| 377 | if (flags & VNET_SW_INTERFACE_FLAG_ADMIN_UP) |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 378 | { |
| 379 | /* Notify everyone when the interface is created as admin up */ |
| 380 | error = call_elf_section_interface_callbacks (vnm, sw_if_index, |
| 381 | flags, |
| 382 | vnm-> |
| 383 | sw_interface_admin_up_down_functions); |
| 384 | if (error) |
| 385 | goto done; |
| 386 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 387 | } |
| 388 | else |
| 389 | { |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 390 | vnet_sw_interface_t *si_sup = si; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 391 | |
| 392 | /* Check that super interface is in correct state. */ |
| 393 | if (si->type == VNET_SW_INTERFACE_TYPE_SUB) |
| 394 | { |
| 395 | si_sup = vnet_get_sw_interface (vnm, si->sup_sw_if_index); |
| 396 | |
Calvin | 31a3674 | 2016-07-04 14:14:46 -0400 | [diff] [blame] | 397 | /* Check to see if we're bringing down the soft interface and if it's parent is up */ |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 398 | if ((flags != (si_sup->flags & mask)) && |
| 399 | (!((flags == 0) |
| 400 | && ((si_sup->flags & mask) == |
| 401 | VNET_SW_INTERFACE_FLAG_ADMIN_UP)))) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 402 | { |
| 403 | error = clib_error_return (0, "super-interface %U must be %U", |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 404 | format_vnet_sw_interface_name, vnm, |
| 405 | si_sup, |
| 406 | format_vnet_sw_interface_flags, |
| 407 | flags); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 408 | goto done; |
| 409 | } |
| 410 | } |
| 411 | |
| 412 | /* Already in the desired state? */ |
| 413 | if ((si->flags & mask) == flags) |
| 414 | goto done; |
| 415 | |
| 416 | /* Sub-interfaces of hardware interfaces that do no redistribute, |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 417 | do not redistribute themselves. */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 418 | if (si_sup->type == VNET_SW_INTERFACE_TYPE_HARDWARE) |
| 419 | { |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 420 | vnet_hw_interface_t *hi = |
| 421 | vnet_get_hw_interface (vnm, si_sup->hw_if_index); |
| 422 | vnet_device_class_t *dev_class = |
| 423 | vnet_get_device_class (vnm, hi->dev_class_index); |
| 424 | if (!dev_class->redistribute) |
| 425 | helper_flags &= |
| 426 | ~VNET_INTERFACE_SET_FLAGS_HELPER_WANT_REDISTRIBUTE; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 427 | } |
| 428 | |
Neale Ranns | 0bfe5d8 | 2016-08-25 15:29:12 +0100 | [diff] [blame] | 429 | /* set the flags now before invoking the registered clients |
| 430 | * so that the state they query is consistent with the state here notified */ |
| 431 | old_flags = si->flags; |
| 432 | si->flags &= ~mask; |
| 433 | si->flags |= flags; |
| 434 | if ((flags | old_flags) & VNET_SW_INTERFACE_FLAG_ADMIN_UP) |
| 435 | error = call_elf_section_interface_callbacks |
| 436 | (vnm, sw_if_index, flags, |
| 437 | vnm->sw_interface_admin_up_down_functions); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 438 | |
| 439 | if (error) |
Mohsin Kazmi | a50a14c | 2018-04-25 15:58:05 +0200 | [diff] [blame] | 440 | { |
| 441 | /* restore flags on error */ |
| 442 | si->flags = old_flags; |
| 443 | goto done; |
| 444 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 445 | |
| 446 | if (si->type == VNET_SW_INTERFACE_TYPE_HARDWARE) |
| 447 | { |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 448 | vnet_hw_interface_t *hi = |
| 449 | vnet_get_hw_interface (vnm, si->hw_if_index); |
| 450 | vnet_hw_interface_class_t *hw_class = |
| 451 | vnet_get_hw_interface_class (vnm, hi->hw_class_index); |
| 452 | vnet_device_class_t *dev_class = |
| 453 | vnet_get_device_class (vnm, hi->dev_class_index); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 454 | |
Damjan Marion | abce509 | 2017-05-10 20:09:31 +0200 | [diff] [blame] | 455 | if ((flags & VNET_SW_INTERFACE_FLAG_ADMIN_UP) && |
| 456 | (si->flags & VNET_SW_INTERFACE_FLAG_ERROR)) |
| 457 | { |
| 458 | error = clib_error_return (0, "Interface in the error state"); |
| 459 | goto done; |
| 460 | } |
| 461 | |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 462 | /* save the si admin up flag */ |
| 463 | old_flags = si->flags; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 464 | |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 465 | /* update si admin up flag in advance if we are going admin down */ |
| 466 | if (!(flags & VNET_SW_INTERFACE_FLAG_ADMIN_UP)) |
| 467 | si->flags &= ~VNET_SW_INTERFACE_FLAG_ADMIN_UP; |
Georgi Savov | 3a03598 | 2016-02-25 12:56:03 -0500 | [diff] [blame] | 468 | |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 469 | if (dev_class->admin_up_down_function |
| 470 | && (error = dev_class->admin_up_down_function (vnm, |
| 471 | si->hw_if_index, |
| 472 | flags))) |
| 473 | { |
| 474 | /* restore si admin up flag to it's original state on errors */ |
| 475 | si->flags = old_flags; |
| 476 | goto done; |
| 477 | } |
Georgi Savov | 3a03598 | 2016-02-25 12:56:03 -0500 | [diff] [blame] | 478 | |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 479 | if (hw_class->admin_up_down_function |
| 480 | && (error = hw_class->admin_up_down_function (vnm, |
| 481 | si->hw_if_index, |
| 482 | flags))) |
| 483 | { |
| 484 | /* restore si admin up flag to it's original state on errors */ |
| 485 | si->flags = old_flags; |
| 486 | goto done; |
| 487 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 488 | |
| 489 | /* Admin down implies link down. */ |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 490 | if (!(flags & VNET_SW_INTERFACE_FLAG_ADMIN_UP) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 491 | && (hi->flags & VNET_HW_INTERFACE_FLAG_LINK_UP)) |
| 492 | vnet_hw_interface_set_flags_helper (vnm, si->hw_if_index, |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 493 | hi->flags & |
| 494 | ~VNET_HW_INTERFACE_FLAG_LINK_UP, |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 495 | helper_flags); |
| 496 | } |
| 497 | } |
| 498 | |
| 499 | si->flags &= ~mask; |
| 500 | si->flags |= flags; |
| 501 | |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 502 | done: |
Damjan Marion | d1bd5d2 | 2020-11-23 16:58:05 +0100 | [diff] [blame^] | 503 | if (error) |
| 504 | log_err ("sw_set_flags_helper: %U", format_clib_error, error); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 505 | return error; |
| 506 | } |
| 507 | |
| 508 | clib_error_t * |
Neale Ranns | 6e43e06 | 2018-10-26 05:17:03 -0700 | [diff] [blame] | 509 | vnet_hw_interface_set_flags (vnet_main_t * vnm, u32 hw_if_index, |
| 510 | vnet_hw_interface_flags_t flags) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 511 | { |
Damjan Marion | d1bd5d2 | 2020-11-23 16:58:05 +0100 | [diff] [blame^] | 512 | log_debug ("hw_set_flags: hw_if_index %u flags 0x%x", hw_if_index, flags); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 513 | return vnet_hw_interface_set_flags_helper |
| 514 | (vnm, hw_if_index, flags, |
| 515 | VNET_INTERFACE_SET_FLAGS_HELPER_WANT_REDISTRIBUTE); |
| 516 | } |
| 517 | |
| 518 | clib_error_t * |
Neale Ranns | 6e43e06 | 2018-10-26 05:17:03 -0700 | [diff] [blame] | 519 | vnet_sw_interface_set_flags (vnet_main_t * vnm, u32 sw_if_index, |
| 520 | vnet_sw_interface_flags_t flags) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 521 | { |
Damjan Marion | d1bd5d2 | 2020-11-23 16:58:05 +0100 | [diff] [blame^] | 522 | log_debug ("sw_set_flags: sw_if_index %u flags 0x%x", sw_if_index, flags); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 523 | return vnet_sw_interface_set_flags_helper |
| 524 | (vnm, sw_if_index, flags, |
| 525 | VNET_INTERFACE_SET_FLAGS_HELPER_WANT_REDISTRIBUTE); |
| 526 | } |
| 527 | |
Neale Ranns | c87b66c | 2019-02-07 07:26:12 -0800 | [diff] [blame] | 528 | void |
| 529 | vnet_sw_interface_admin_up (vnet_main_t * vnm, u32 sw_if_index) |
| 530 | { |
| 531 | u32 flags = vnet_sw_interface_get_flags (vnm, sw_if_index); |
Damjan Marion | d1bd5d2 | 2020-11-23 16:58:05 +0100 | [diff] [blame^] | 532 | log_debug ("sw_admin_up: sw_if_index %u", sw_if_index); |
Neale Ranns | c87b66c | 2019-02-07 07:26:12 -0800 | [diff] [blame] | 533 | |
| 534 | if (!(flags & VNET_SW_INTERFACE_FLAG_ADMIN_UP)) |
| 535 | { |
| 536 | flags |= VNET_SW_INTERFACE_FLAG_ADMIN_UP; |
| 537 | vnet_sw_interface_set_flags (vnm, sw_if_index, flags); |
| 538 | } |
| 539 | } |
| 540 | |
| 541 | void |
| 542 | vnet_sw_interface_admin_down (vnet_main_t * vnm, u32 sw_if_index) |
| 543 | { |
| 544 | u32 flags = vnet_sw_interface_get_flags (vnm, sw_if_index); |
Damjan Marion | d1bd5d2 | 2020-11-23 16:58:05 +0100 | [diff] [blame^] | 545 | log_debug ("sw_admin_down: sw_if_index %u", sw_if_index); |
Neale Ranns | c87b66c | 2019-02-07 07:26:12 -0800 | [diff] [blame] | 546 | |
| 547 | if (flags & VNET_SW_INTERFACE_FLAG_ADMIN_UP) |
| 548 | { |
| 549 | flags &= ~(VNET_SW_INTERFACE_FLAG_ADMIN_UP); |
| 550 | vnet_sw_interface_set_flags (vnm, sw_if_index, flags); |
| 551 | } |
| 552 | } |
| 553 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 554 | static u32 |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 555 | vnet_create_sw_interface_no_callbacks (vnet_main_t * vnm, |
| 556 | vnet_sw_interface_t * template) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 557 | { |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 558 | vnet_interface_main_t *im = &vnm->interface_main; |
| 559 | vnet_sw_interface_t *sw; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 560 | u32 sw_if_index; |
| 561 | |
| 562 | pool_get (im->sw_interfaces, sw); |
| 563 | sw_if_index = sw - im->sw_interfaces; |
| 564 | |
| 565 | sw[0] = template[0]; |
| 566 | |
| 567 | sw->flags = 0; |
| 568 | sw->sw_if_index = sw_if_index; |
| 569 | if (sw->type == VNET_SW_INTERFACE_TYPE_HARDWARE) |
| 570 | sw->sup_sw_if_index = sw->sw_if_index; |
| 571 | |
| 572 | /* Allocate counters for this interface. */ |
| 573 | { |
| 574 | u32 i; |
| 575 | |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 576 | vnet_interface_counter_lock (im); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 577 | |
| 578 | for (i = 0; i < vec_len (im->sw_if_counters); i++) |
| 579 | { |
| 580 | vlib_validate_simple_counter (&im->sw_if_counters[i], sw_if_index); |
| 581 | vlib_zero_simple_counter (&im->sw_if_counters[i], sw_if_index); |
| 582 | } |
| 583 | |
| 584 | for (i = 0; i < vec_len (im->combined_sw_if_counters); i++) |
| 585 | { |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 586 | vlib_validate_combined_counter (&im->combined_sw_if_counters[i], |
| 587 | sw_if_index); |
| 588 | vlib_zero_combined_counter (&im->combined_sw_if_counters[i], |
| 589 | sw_if_index); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 590 | } |
| 591 | |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 592 | vnet_interface_counter_unlock (im); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 593 | } |
| 594 | |
| 595 | return sw_if_index; |
| 596 | } |
| 597 | |
| 598 | clib_error_t * |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 599 | vnet_create_sw_interface (vnet_main_t * vnm, vnet_sw_interface_t * template, |
| 600 | u32 * sw_if_index) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 601 | { |
Damjan Marion | d1bd5d2 | 2020-11-23 16:58:05 +0100 | [diff] [blame^] | 602 | vnet_interface_main_t *im = &vnm->interface_main; |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 603 | clib_error_t *error; |
| 604 | vnet_hw_interface_t *hi; |
| 605 | vnet_device_class_t *dev_class; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 606 | |
Jon Loeliger | b22e1f0 | 2019-12-19 09:03:52 -0600 | [diff] [blame] | 607 | if (template->sub.eth.flags.two_tags == 1 |
| 608 | && template->sub.eth.flags.exact_match == 1 |
| 609 | && (template->sub.eth.flags.inner_vlan_id_any == 1 |
| 610 | || template->sub.eth.flags.outer_vlan_id_any == 1)) |
| 611 | { |
Damjan Marion | d1bd5d2 | 2020-11-23 16:58:05 +0100 | [diff] [blame^] | 612 | char *str = "inner-dot1q any exact-match is unsupported"; |
| 613 | error = clib_error_return (0, str); |
| 614 | log_err ("create_sw_interface: %s", str); |
Jon Loeliger | b22e1f0 | 2019-12-19 09:03:52 -0600 | [diff] [blame] | 615 | return error; |
| 616 | } |
| 617 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 618 | hi = vnet_get_sup_hw_interface (vnm, template->sup_sw_if_index); |
| 619 | dev_class = vnet_get_device_class (vnm, hi->dev_class_index); |
| 620 | |
| 621 | if (template->type == VNET_SW_INTERFACE_TYPE_SUB && |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 622 | dev_class->subif_add_del_function) |
| 623 | { |
| 624 | error = dev_class->subif_add_del_function (vnm, hi->hw_if_index, |
| 625 | (struct vnet_sw_interface_t |
| 626 | *) template, 1); |
| 627 | if (error) |
| 628 | return error; |
| 629 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 630 | |
| 631 | *sw_if_index = vnet_create_sw_interface_no_callbacks (vnm, template); |
| 632 | error = vnet_sw_interface_set_flags_helper |
| 633 | (vnm, *sw_if_index, template->flags, |
| 634 | VNET_INTERFACE_SET_FLAGS_HELPER_IS_CREATE); |
| 635 | |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 636 | if (error) |
| 637 | { |
| 638 | /* undo the work done by vnet_create_sw_interface_no_callbacks() */ |
Damjan Marion | d1bd5d2 | 2020-11-23 16:58:05 +0100 | [diff] [blame^] | 639 | log_err ("create_sw_interface: set flags failed\n %U", |
| 640 | format_clib_error, error); |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 641 | vnet_sw_interface_t *sw = |
| 642 | pool_elt_at_index (im->sw_interfaces, *sw_if_index); |
| 643 | pool_put (im->sw_interfaces, sw); |
| 644 | } |
Damjan Marion | d1bd5d2 | 2020-11-23 16:58:05 +0100 | [diff] [blame^] | 645 | else |
| 646 | { |
| 647 | vnet_sw_interface_t *sw = |
| 648 | pool_elt_at_index (im->sw_interfaces, *sw_if_index); |
| 649 | log_debug ("create_sw_interface: interface %U (sw_if_index %u) created", |
| 650 | format_vnet_sw_interface_name, vnm, sw, *sw_if_index); |
| 651 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 652 | |
| 653 | return error; |
| 654 | } |
| 655 | |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 656 | void |
| 657 | vnet_delete_sw_interface (vnet_main_t * vnm, u32 sw_if_index) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 658 | { |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 659 | vnet_interface_main_t *im = &vnm->interface_main; |
| 660 | vnet_sw_interface_t *sw = |
| 661 | pool_elt_at_index (im->sw_interfaces, sw_if_index); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 662 | |
Damjan Marion | d1bd5d2 | 2020-11-23 16:58:05 +0100 | [diff] [blame^] | 663 | log_debug ("delete_sw_interface: sw_if_index %u, name '%U'", |
| 664 | sw_if_index, format_vnet_sw_if_index_name, vnm, sw_if_index); |
| 665 | |
Wojciech Dec | d63370c | 2017-01-03 10:27:03 +0100 | [diff] [blame] | 666 | /* Check if the interface has config and is removed from L2 BD or XConnect */ |
Neale Ranns | e8d7ff5 | 2018-05-31 21:23:37 -0700 | [diff] [blame] | 667 | vnet_clear_sw_interface_tag (vnm, sw_if_index); |
Pavel Kotucek | 7c8eda1 | 2016-10-17 15:31:59 +0200 | [diff] [blame] | 668 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 669 | /* Bring down interface in case it is up. */ |
| 670 | if (sw->flags != 0) |
| 671 | vnet_sw_interface_set_flags (vnm, sw_if_index, /* flags */ 0); |
| 672 | |
| 673 | call_sw_interface_add_del_callbacks (vnm, sw_if_index, /* is_create */ 0); |
| 674 | |
| 675 | pool_put (im->sw_interfaces, sw); |
| 676 | } |
| 677 | |
Ole Troan | d723161 | 2018-06-07 10:17:57 +0200 | [diff] [blame] | 678 | static clib_error_t * |
| 679 | call_sw_interface_mtu_change_callbacks (vnet_main_t * vnm, u32 sw_if_index) |
| 680 | { |
| 681 | return call_elf_section_interface_callbacks |
| 682 | (vnm, sw_if_index, 0, vnm->sw_interface_mtu_change_functions); |
| 683 | } |
| 684 | |
| 685 | void |
| 686 | vnet_sw_interface_set_mtu (vnet_main_t * vnm, u32 sw_if_index, u32 mtu) |
| 687 | { |
| 688 | vnet_sw_interface_t *si = vnet_get_sw_interface (vnm, sw_if_index); |
| 689 | |
| 690 | if (si->mtu[VNET_MTU_L3] != mtu) |
| 691 | { |
| 692 | si->mtu[VNET_MTU_L3] = mtu; |
Damjan Marion | d1bd5d2 | 2020-11-23 16:58:05 +0100 | [diff] [blame^] | 693 | log_debug ("set_mtu: interface %U, new mtu %u", |
| 694 | format_vnet_sw_if_index_name, vnm, sw_if_index, mtu); |
| 695 | |
Ole Troan | d723161 | 2018-06-07 10:17:57 +0200 | [diff] [blame] | 696 | call_sw_interface_mtu_change_callbacks (vnm, sw_if_index); |
| 697 | } |
| 698 | } |
| 699 | |
| 700 | void |
| 701 | vnet_sw_interface_set_protocol_mtu (vnet_main_t * vnm, u32 sw_if_index, |
| 702 | u32 mtu[]) |
| 703 | { |
| 704 | vnet_sw_interface_t *si = vnet_get_sw_interface (vnm, sw_if_index); |
| 705 | bool changed = false; |
| 706 | int i; |
| 707 | |
| 708 | for (i = 0; i < VNET_N_MTU; i++) |
| 709 | { |
| 710 | if (si->mtu[i] != mtu[i]) |
| 711 | { |
| 712 | si->mtu[i] = mtu[i]; |
| 713 | changed = true; |
| 714 | } |
| 715 | } |
| 716 | /* Notify interested parties */ |
| 717 | if (changed) |
Damjan Marion | d1bd5d2 | 2020-11-23 16:58:05 +0100 | [diff] [blame^] | 718 | { |
| 719 | log_debug ("set_protocol_mtu: interface %U l3 %u ip4 %u ip6 %u mpls %u", |
| 720 | format_vnet_sw_if_index_name, vnm, sw_if_index, |
| 721 | mtu[VNET_MTU_L3], mtu[VNET_MTU_IP4], mtu[VNET_MTU_IP6], |
| 722 | mtu[VNET_MTU_MPLS]); |
| 723 | call_sw_interface_mtu_change_callbacks (vnm, sw_if_index); |
| 724 | } |
Ole Troan | d723161 | 2018-06-07 10:17:57 +0200 | [diff] [blame] | 725 | } |
| 726 | |
Neale Ranns | 1855b8e | 2018-07-11 10:31:26 -0700 | [diff] [blame] | 727 | void |
| 728 | vnet_sw_interface_ip_directed_broadcast (vnet_main_t * vnm, |
| 729 | u32 sw_if_index, u8 enable) |
| 730 | { |
| 731 | vnet_sw_interface_t *si; |
| 732 | |
| 733 | si = vnet_get_sw_interface (vnm, sw_if_index); |
| 734 | |
| 735 | if (enable) |
| 736 | si->flags |= VNET_SW_INTERFACE_FLAG_DIRECTED_BCAST; |
| 737 | else |
| 738 | si->flags &= ~VNET_SW_INTERFACE_FLAG_DIRECTED_BCAST; |
| 739 | |
| 740 | ip4_directed_broadcast (sw_if_index, enable); |
| 741 | } |
| 742 | |
Ole Troan | d723161 | 2018-06-07 10:17:57 +0200 | [diff] [blame] | 743 | /* |
| 744 | * Reflect a change in hardware MTU on protocol MTUs |
| 745 | */ |
| 746 | static walk_rc_t |
| 747 | sw_interface_walk_callback (vnet_main_t * vnm, u32 sw_if_index, void *ctx) |
| 748 | { |
| 749 | u32 *link_mtu = ctx; |
| 750 | vnet_sw_interface_set_mtu (vnm, sw_if_index, *link_mtu); |
| 751 | return WALK_CONTINUE; |
| 752 | } |
| 753 | |
| 754 | void |
| 755 | vnet_hw_interface_set_mtu (vnet_main_t * vnm, u32 hw_if_index, u32 mtu) |
| 756 | { |
| 757 | vnet_hw_interface_t *hi = vnet_get_hw_interface (vnm, hw_if_index); |
| 758 | |
| 759 | if (hi->max_packet_bytes != mtu) |
| 760 | { |
| 761 | hi->max_packet_bytes = mtu; |
| 762 | ethernet_set_flags (vnm, hw_if_index, ETHERNET_INTERFACE_FLAG_MTU); |
| 763 | vnet_hw_interface_walk_sw (vnm, hw_if_index, sw_interface_walk_callback, |
| 764 | &mtu); |
| 765 | } |
| 766 | } |
| 767 | |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 768 | static void |
| 769 | setup_tx_node (vlib_main_t * vm, |
| 770 | u32 node_index, vnet_device_class_t * dev_class) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 771 | { |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 772 | vlib_node_t *n = vlib_get_node (vm, node_index); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 773 | |
| 774 | n->function = dev_class->tx_function; |
| 775 | n->format_trace = dev_class->format_tx_trace; |
Neale Ranns | 5e575b1 | 2016-10-03 09:40:25 +0100 | [diff] [blame] | 776 | |
Ole Troan | 148c7b7 | 2020-10-07 18:05:37 +0200 | [diff] [blame] | 777 | /// XXX: Update this to use counter structure |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 778 | vlib_register_errors (vm, node_index, |
| 779 | dev_class->tx_function_n_errors, |
Ole Troan | 148c7b7 | 2020-10-07 18:05:37 +0200 | [diff] [blame] | 780 | dev_class->tx_function_error_strings, 0); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 781 | } |
| 782 | |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 783 | static void |
| 784 | setup_output_node (vlib_main_t * vm, |
| 785 | u32 node_index, vnet_hw_interface_class_t * hw_class) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 786 | { |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 787 | vlib_node_t *n = vlib_get_node (vm, node_index); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 788 | n->format_buffer = hw_class->format_header; |
| 789 | n->unformat_buffer = hw_class->unformat_header; |
| 790 | } |
| 791 | |
| 792 | /* Register an interface instance. */ |
| 793 | u32 |
| 794 | vnet_register_interface (vnet_main_t * vnm, |
| 795 | u32 dev_class_index, |
| 796 | u32 dev_instance, |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 797 | u32 hw_class_index, u32 hw_instance) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 798 | { |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 799 | vnet_interface_main_t *im = &vnm->interface_main; |
| 800 | vnet_hw_interface_t *hw; |
| 801 | vnet_device_class_t *dev_class = |
| 802 | vnet_get_device_class (vnm, dev_class_index); |
| 803 | vnet_hw_interface_class_t *hw_class = |
| 804 | vnet_get_hw_interface_class (vnm, hw_class_index); |
| 805 | vlib_main_t *vm = vnm->vlib_main; |
Damjan Marion | 152e21d | 2016-11-29 14:55:43 +0100 | [diff] [blame] | 806 | vnet_feature_config_main_t *fcm; |
| 807 | vnet_config_main_t *cm; |
| 808 | u32 hw_index, i; |
Neale Ranns | cbe8d65 | 2018-04-27 04:42:47 -0700 | [diff] [blame] | 809 | char *tx_node_name = NULL, *output_node_name = NULL; |
Benoît Ganne | 7d2094c | 2020-11-09 15:23:52 +0100 | [diff] [blame] | 810 | vlib_node_function_t *output_node = vnet_interface_output_node_get (); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 811 | |
| 812 | pool_get (im->hw_interfaces, hw); |
Dave Barach | b7b9299 | 2018-10-17 10:38:51 -0400 | [diff] [blame] | 813 | clib_memset (hw, 0, sizeof (*hw)); |
Dave Barach | f5667c3 | 2019-09-25 11:27:46 -0400 | [diff] [blame] | 814 | hw->trace_classify_table_index = ~0; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 815 | |
| 816 | hw_index = hw - im->hw_interfaces; |
| 817 | hw->hw_if_index = hw_index; |
Damjan Marion | eabd424 | 2020-10-07 20:59:07 +0200 | [diff] [blame] | 818 | hw->default_rx_mode = VNET_HW_IF_RX_MODE_POLLING; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 819 | |
| 820 | if (dev_class->format_device_name) |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 821 | hw->name = format (0, "%U", dev_class->format_device_name, dev_instance); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 822 | else if (hw_class->format_interface_name) |
| 823 | hw->name = format (0, "%U", hw_class->format_interface_name, |
| 824 | dev_instance); |
| 825 | else |
| 826 | hw->name = format (0, "%s%x", hw_class->name, dev_instance); |
| 827 | |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 828 | if (!im->hw_interface_by_name) |
| 829 | im->hw_interface_by_name = hash_create_vec ( /* size */ 0, |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 830 | sizeof (hw->name[0]), |
| 831 | sizeof (uword)); |
| 832 | |
| 833 | hash_set_mem (im->hw_interface_by_name, hw->name, hw_index); |
| 834 | |
| 835 | /* Make hardware interface point to software interface. */ |
| 836 | { |
Eyal Bari | c5b1360 | 2016-11-24 19:42:43 +0200 | [diff] [blame] | 837 | vnet_sw_interface_t sw = { |
| 838 | .type = VNET_SW_INTERFACE_TYPE_HARDWARE, |
| 839 | .flood_class = VNET_FLOOD_CLASS_NORMAL, |
| 840 | .hw_if_index = hw_index |
| 841 | }; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 842 | hw->sw_if_index = vnet_create_sw_interface_no_callbacks (vnm, &sw); |
| 843 | } |
| 844 | |
| 845 | hw->dev_class_index = dev_class_index; |
| 846 | hw->dev_instance = dev_instance; |
| 847 | hw->hw_class_index = hw_class_index; |
| 848 | hw->hw_instance = hw_instance; |
| 849 | |
| 850 | hw->max_rate_bits_per_sec = 0; |
| 851 | hw->min_packet_bytes = 0; |
Ole Troan | d723161 | 2018-06-07 10:17:57 +0200 | [diff] [blame] | 852 | vnet_sw_interface_set_mtu (vnm, hw->sw_if_index, 0); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 853 | |
John Lo | e5453d0 | 2018-01-23 19:21:34 -0500 | [diff] [blame] | 854 | if (dev_class->tx_function == 0) |
| 855 | goto no_output_nodes; /* No output/tx nodes to create */ |
| 856 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 857 | tx_node_name = (char *) format (0, "%v-tx", hw->name); |
| 858 | output_node_name = (char *) format (0, "%v-output", hw->name); |
| 859 | |
| 860 | /* If we have previously deleted interface nodes, re-use them. */ |
| 861 | if (vec_len (im->deleted_hw_interface_nodes) > 0) |
| 862 | { |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 863 | vnet_hw_interface_nodes_t *hn; |
Pierre Pfister | 064f55d | 2016-10-17 15:58:29 +0100 | [diff] [blame] | 864 | vlib_node_t *node; |
| 865 | vlib_node_runtime_t *nrt; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 866 | |
| 867 | hn = vec_end (im->deleted_hw_interface_nodes) - 1; |
| 868 | |
| 869 | hw->tx_node_index = hn->tx_node_index; |
| 870 | hw->output_node_index = hn->output_node_index; |
| 871 | |
| 872 | vlib_node_rename (vm, hw->tx_node_index, "%v", tx_node_name); |
| 873 | vlib_node_rename (vm, hw->output_node_index, "%v", output_node_name); |
| 874 | |
Igor Mikhailov (imichail) | 8249a58 | 2017-06-15 20:47:48 -0700 | [diff] [blame] | 875 | /* *INDENT-OFF* */ |
| 876 | foreach_vlib_main ({ |
| 877 | vnet_interface_output_runtime_t *rt; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 878 | |
Igor Mikhailov (imichail) | 8249a58 | 2017-06-15 20:47:48 -0700 | [diff] [blame] | 879 | rt = vlib_node_get_runtime_data (this_vlib_main, hw->output_node_index); |
| 880 | ASSERT (rt->is_deleted == 1); |
| 881 | rt->is_deleted = 0; |
| 882 | rt->hw_if_index = hw_index; |
| 883 | rt->sw_if_index = hw->sw_if_index; |
| 884 | rt->dev_instance = hw->dev_instance; |
| 885 | |
| 886 | rt = vlib_node_get_runtime_data (this_vlib_main, hw->tx_node_index); |
| 887 | rt->hw_if_index = hw_index; |
| 888 | rt->sw_if_index = hw->sw_if_index; |
| 889 | rt->dev_instance = hw->dev_instance; |
| 890 | }); |
| 891 | /* *INDENT-ON* */ |
Dave Barach | b8dca74 | 2016-07-01 12:38:11 -0400 | [diff] [blame] | 892 | |
Pierre Pfister | 064f55d | 2016-10-17 15:58:29 +0100 | [diff] [blame] | 893 | /* The new class may differ from the old one. |
| 894 | * Functions have to be updated. */ |
| 895 | node = vlib_get_node (vm, hw->output_node_index); |
Benoît Ganne | 7d2094c | 2020-11-09 15:23:52 +0100 | [diff] [blame] | 896 | node->function = output_node; |
Pierre Pfister | 064f55d | 2016-10-17 15:58:29 +0100 | [diff] [blame] | 897 | node->format_trace = format_vnet_interface_output_trace; |
Damjan Marion | c418e4a | 2017-07-27 04:07:50 -0400 | [diff] [blame] | 898 | /* *INDENT-OFF* */ |
| 899 | foreach_vlib_main ({ |
| 900 | nrt = vlib_node_get_runtime (this_vlib_main, hw->output_node_index); |
| 901 | nrt->function = node->function; |
Tom Seidenberg | 6c81f5a | 2020-07-10 15:49:03 +0000 | [diff] [blame] | 902 | vlib_node_runtime_perf_counter (this_vlib_main, nrt, 0, 0, 0, |
| 903 | VLIB_NODE_RUNTIME_PERF_RESET); |
Damjan Marion | c418e4a | 2017-07-27 04:07:50 -0400 | [diff] [blame] | 904 | }); |
| 905 | /* *INDENT-ON* */ |
Pierre Pfister | 064f55d | 2016-10-17 15:58:29 +0100 | [diff] [blame] | 906 | |
| 907 | node = vlib_get_node (vm, hw->tx_node_index); |
| 908 | node->function = dev_class->tx_function; |
| 909 | node->format_trace = dev_class->format_tx_trace; |
Damjan Marion | c418e4a | 2017-07-27 04:07:50 -0400 | [diff] [blame] | 910 | /* *INDENT-OFF* */ |
| 911 | foreach_vlib_main ({ |
| 912 | nrt = vlib_node_get_runtime (this_vlib_main, hw->tx_node_index); |
| 913 | nrt->function = node->function; |
Tom Seidenberg | 6c81f5a | 2020-07-10 15:49:03 +0000 | [diff] [blame] | 914 | vlib_node_runtime_perf_counter (this_vlib_main, nrt, 0, 0, 0, |
| 915 | VLIB_NODE_RUNTIME_PERF_RESET); |
Damjan Marion | c418e4a | 2017-07-27 04:07:50 -0400 | [diff] [blame] | 916 | }); |
| 917 | /* *INDENT-ON* */ |
Pierre Pfister | 064f55d | 2016-10-17 15:58:29 +0100 | [diff] [blame] | 918 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 919 | _vec_len (im->deleted_hw_interface_nodes) -= 1; |
| 920 | } |
| 921 | else |
| 922 | { |
| 923 | vlib_node_registration_t r; |
| 924 | vnet_interface_output_runtime_t rt = { |
| 925 | .hw_if_index = hw_index, |
| 926 | .sw_if_index = hw->sw_if_index, |
| 927 | .dev_instance = hw->dev_instance, |
| 928 | .is_deleted = 0, |
| 929 | }; |
| 930 | |
Dave Barach | b7b9299 | 2018-10-17 10:38:51 -0400 | [diff] [blame] | 931 | clib_memset (&r, 0, sizeof (r)); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 932 | r.type = VLIB_NODE_TYPE_INTERNAL; |
| 933 | r.runtime_data = &rt; |
| 934 | r.runtime_data_bytes = sizeof (rt); |
| 935 | r.scalar_size = 0; |
| 936 | r.vector_size = sizeof (u32); |
| 937 | |
| 938 | r.flags = VLIB_NODE_FLAG_IS_OUTPUT; |
| 939 | r.name = tx_node_name; |
| 940 | r.function = dev_class->tx_function; |
| 941 | |
| 942 | hw->tx_node_index = vlib_register_node (vm, &r); |
| 943 | |
| 944 | vlib_node_add_named_next_with_slot (vm, hw->tx_node_index, |
| 945 | "error-drop", |
| 946 | VNET_INTERFACE_TX_NEXT_DROP); |
| 947 | |
| 948 | r.flags = 0; |
| 949 | r.name = output_node_name; |
Benoît Ganne | 7d2094c | 2020-11-09 15:23:52 +0100 | [diff] [blame] | 950 | r.function = output_node; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 951 | r.format_trace = format_vnet_interface_output_trace; |
| 952 | |
| 953 | { |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 954 | static char *e[] = { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 955 | "interface is down", |
| 956 | "interface is deleted", |
Andrew Yourtchenko | 6a7cff7 | 2018-10-12 16:09:22 +0200 | [diff] [blame] | 957 | "no buffers to segment GSO", |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 958 | }; |
| 959 | |
| 960 | r.n_errors = ARRAY_LEN (e); |
| 961 | r.error_strings = e; |
| 962 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 963 | hw->output_node_index = vlib_register_node (vm, &r); |
| 964 | |
Damjan Marion | 9c6ae5f | 2016-11-15 23:20:01 +0100 | [diff] [blame] | 965 | vlib_node_add_named_next_with_slot (vm, hw->output_node_index, |
| 966 | "error-drop", |
| 967 | VNET_INTERFACE_OUTPUT_NEXT_DROP); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 968 | vlib_node_add_next_with_slot (vm, hw->output_node_index, |
| 969 | hw->tx_node_index, |
| 970 | VNET_INTERFACE_OUTPUT_NEXT_TX); |
Damjan Marion | 152e21d | 2016-11-29 14:55:43 +0100 | [diff] [blame] | 971 | |
| 972 | /* add interface to the list of "output-interface" feature arc start nodes |
| 973 | and clone nexts from 1st interface if it exists */ |
| 974 | fcm = vnet_feature_get_config_main (im->output_feature_arc_index); |
| 975 | cm = &fcm->config_main; |
| 976 | i = vec_len (cm->start_node_indices); |
| 977 | vec_validate (cm->start_node_indices, i); |
| 978 | cm->start_node_indices[i] = hw->output_node_index; |
| 979 | if (hw_index) |
| 980 | { |
| 981 | /* copy nexts from 1st interface */ |
| 982 | vnet_hw_interface_t *first_hw; |
| 983 | vlib_node_t *first_node; |
| 984 | |
| 985 | first_hw = vnet_get_hw_interface (vnm, /* hw_if_index */ 0); |
| 986 | first_node = vlib_get_node (vm, first_hw->output_node_index); |
| 987 | |
| 988 | /* 1st 2 nexts are already added above */ |
| 989 | for (i = 2; i < vec_len (first_node->next_nodes); i++) |
| 990 | vlib_node_add_next_with_slot (vm, hw->output_node_index, |
| 991 | first_node->next_nodes[i], i); |
| 992 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 993 | } |
| 994 | |
| 995 | setup_output_node (vm, hw->output_node_index, hw_class); |
| 996 | setup_tx_node (vm, hw->tx_node_index, dev_class); |
| 997 | |
John Lo | e5453d0 | 2018-01-23 19:21:34 -0500 | [diff] [blame] | 998 | no_output_nodes: |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 999 | /* Call all up/down callbacks with zero flags when interface is created. */ |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 1000 | vnet_sw_interface_set_flags_helper (vnm, hw->sw_if_index, /* flags */ 0, |
| 1001 | VNET_INTERFACE_SET_FLAGS_HELPER_IS_CREATE); |
| 1002 | vnet_hw_interface_set_flags_helper (vnm, hw_index, /* flags */ 0, |
| 1003 | VNET_INTERFACE_SET_FLAGS_HELPER_IS_CREATE); |
Neale Ranns | cbe8d65 | 2018-04-27 04:42:47 -0700 | [diff] [blame] | 1004 | vec_free (tx_node_name); |
| 1005 | vec_free (output_node_name); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1006 | |
| 1007 | return hw_index; |
| 1008 | } |
| 1009 | |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 1010 | void |
| 1011 | vnet_delete_hw_interface (vnet_main_t * vnm, u32 hw_if_index) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1012 | { |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 1013 | vnet_interface_main_t *im = &vnm->interface_main; |
| 1014 | vnet_hw_interface_t *hw = vnet_get_hw_interface (vnm, hw_if_index); |
| 1015 | vlib_main_t *vm = vnm->vlib_main; |
John Lo | e5453d0 | 2018-01-23 19:21:34 -0500 | [diff] [blame] | 1016 | vnet_device_class_t *dev_class = vnet_get_device_class (vnm, |
| 1017 | hw->dev_class_index); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1018 | /* If it is up, mark it down. */ |
| 1019 | if (hw->flags != 0) |
| 1020 | vnet_hw_interface_set_flags (vnm, hw_if_index, /* flags */ 0); |
| 1021 | |
| 1022 | /* Call delete callbacks. */ |
| 1023 | call_hw_interface_add_del_callbacks (vnm, hw_if_index, /* is_create */ 0); |
| 1024 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1025 | /* Delete any sub-interfaces. */ |
| 1026 | { |
| 1027 | u32 id, sw_if_index; |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 1028 | /* *INDENT-OFF* */ |
John Lo | 5957a14 | 2018-01-18 12:44:50 -0500 | [diff] [blame] | 1029 | hash_foreach (id, sw_if_index, hw->sub_interface_sw_if_index_by_id, |
| 1030 | ({ |
| 1031 | vnet_sw_interface_t *si = vnet_get_sw_interface (vnm, sw_if_index); |
| 1032 | u64 sup_and_sub_key = |
| 1033 | ((u64) (si->sup_sw_if_index) << 32) | (u64) si->sub.id; |
| 1034 | hash_unset_mem_free (&im->sw_if_index_by_sup_and_sub, &sup_and_sub_key); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1035 | vnet_delete_sw_interface (vnm, sw_if_index); |
| 1036 | })); |
John Lo | 5957a14 | 2018-01-18 12:44:50 -0500 | [diff] [blame] | 1037 | hash_free (hw->sub_interface_sw_if_index_by_id); |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 1038 | /* *INDENT-ON* */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1039 | } |
| 1040 | |
John Lo | 5957a14 | 2018-01-18 12:44:50 -0500 | [diff] [blame] | 1041 | /* Delete software interface corresponding to hardware interface. */ |
| 1042 | vnet_delete_sw_interface (vnm, hw->sw_if_index); |
| 1043 | |
John Lo | e5453d0 | 2018-01-23 19:21:34 -0500 | [diff] [blame] | 1044 | if (dev_class->tx_function) |
| 1045 | { |
| 1046 | /* Put output/tx nodes into recycle pool */ |
| 1047 | vnet_hw_interface_nodes_t *dn; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1048 | |
John Lo | e5453d0 | 2018-01-23 19:21:34 -0500 | [diff] [blame] | 1049 | /* *INDENT-OFF* */ |
| 1050 | foreach_vlib_main |
| 1051 | ({ |
| 1052 | vnet_interface_output_runtime_t *rt = |
| 1053 | vlib_node_get_runtime_data (this_vlib_main, hw->output_node_index); |
Igor Mikhailov (imichail) | 8249a58 | 2017-06-15 20:47:48 -0700 | [diff] [blame] | 1054 | |
John Lo | e5453d0 | 2018-01-23 19:21:34 -0500 | [diff] [blame] | 1055 | /* Mark node runtime as deleted so output node (if called) |
| 1056 | * will drop packets. */ |
| 1057 | rt->is_deleted = 1; |
| 1058 | }); |
| 1059 | /* *INDENT-ON* */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1060 | |
John Lo | e5453d0 | 2018-01-23 19:21:34 -0500 | [diff] [blame] | 1061 | vlib_node_rename (vm, hw->output_node_index, |
| 1062 | "interface-%d-output-deleted", hw_if_index); |
| 1063 | vlib_node_rename (vm, hw->tx_node_index, "interface-%d-tx-deleted", |
| 1064 | hw_if_index); |
| 1065 | vec_add2 (im->deleted_hw_interface_nodes, dn, 1); |
| 1066 | dn->tx_node_index = hw->tx_node_index; |
| 1067 | dn->output_node_index = hw->output_node_index; |
| 1068 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1069 | |
| 1070 | hash_unset_mem (im->hw_interface_by_name, hw->name); |
| 1071 | vec_free (hw->name); |
Neale Ranns | cbe8d65 | 2018-04-27 04:42:47 -0700 | [diff] [blame] | 1072 | vec_free (hw->hw_address); |
Damjan Marion | 153646e | 2017-04-05 18:15:45 +0200 | [diff] [blame] | 1073 | vec_free (hw->input_node_thread_index_by_queue); |
| 1074 | vec_free (hw->dq_runtime_index_by_queue); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1075 | |
| 1076 | pool_put (im->hw_interfaces, hw); |
| 1077 | } |
| 1078 | |
Neale Ranns | 8b37b87 | 2016-11-21 12:25:22 +0000 | [diff] [blame] | 1079 | void |
| 1080 | vnet_hw_interface_walk_sw (vnet_main_t * vnm, |
| 1081 | u32 hw_if_index, |
| 1082 | vnet_hw_sw_interface_walk_t fn, void *ctx) |
| 1083 | { |
| 1084 | vnet_hw_interface_t *hi; |
| 1085 | u32 id, sw_if_index; |
| 1086 | |
| 1087 | hi = vnet_get_hw_interface (vnm, hw_if_index); |
Neale Ranns | 17ff3c1 | 2018-07-04 10:24:24 -0700 | [diff] [blame] | 1088 | /* the super first, then the sub interfaces */ |
| 1089 | if (WALK_STOP == fn (vnm, hi->sw_if_index, ctx)) |
| 1090 | return; |
Neale Ranns | 8b37b87 | 2016-11-21 12:25:22 +0000 | [diff] [blame] | 1091 | |
| 1092 | /* *INDENT-OFF* */ |
| 1093 | hash_foreach (id, sw_if_index, |
| 1094 | hi->sub_interface_sw_if_index_by_id, |
| 1095 | ({ |
Neale Ranns | 0053de6 | 2018-05-22 08:40:52 -0700 | [diff] [blame] | 1096 | if (WALK_STOP == fn (vnm, sw_if_index, ctx)) |
| 1097 | break; |
Neale Ranns | 8b37b87 | 2016-11-21 12:25:22 +0000 | [diff] [blame] | 1098 | })); |
| 1099 | /* *INDENT-ON* */ |
| 1100 | } |
| 1101 | |
Neale Ranns | 0053de6 | 2018-05-22 08:40:52 -0700 | [diff] [blame] | 1102 | void |
Neale Ranns | 17ff3c1 | 2018-07-04 10:24:24 -0700 | [diff] [blame] | 1103 | vnet_hw_interface_walk (vnet_main_t * vnm, |
| 1104 | vnet_hw_interface_walk_t fn, void *ctx) |
| 1105 | { |
| 1106 | vnet_interface_main_t *im; |
| 1107 | vnet_hw_interface_t *hi; |
| 1108 | |
| 1109 | im = &vnm->interface_main; |
| 1110 | |
| 1111 | /* *INDENT-OFF* */ |
| 1112 | pool_foreach (hi, im->hw_interfaces, |
| 1113 | ({ |
| 1114 | if (WALK_STOP == fn(vnm, hi->hw_if_index, ctx)) |
| 1115 | break; |
| 1116 | })); |
| 1117 | /* *INDENT-ON* */ |
| 1118 | } |
| 1119 | |
| 1120 | void |
Neale Ranns | 0053de6 | 2018-05-22 08:40:52 -0700 | [diff] [blame] | 1121 | vnet_sw_interface_walk (vnet_main_t * vnm, |
| 1122 | vnet_sw_interface_walk_t fn, void *ctx) |
| 1123 | { |
| 1124 | vnet_interface_main_t *im; |
| 1125 | vnet_sw_interface_t *si; |
| 1126 | |
| 1127 | im = &vnm->interface_main; |
| 1128 | |
| 1129 | /* *INDENT-OFF* */ |
| 1130 | pool_foreach (si, im->sw_interfaces, |
| 1131 | { |
| 1132 | if (WALK_STOP == fn (vnm, si, ctx)) |
| 1133 | break; |
| 1134 | }); |
| 1135 | /* *INDENT-ON* */ |
| 1136 | } |
| 1137 | |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 1138 | void |
| 1139 | vnet_hw_interface_init_for_class (vnet_main_t * vnm, u32 hw_if_index, |
| 1140 | u32 hw_class_index, u32 hw_instance) |
| 1141 | { |
| 1142 | vnet_hw_interface_t *hi = vnet_get_hw_interface (vnm, hw_if_index); |
| 1143 | vnet_hw_interface_class_t *hc = |
| 1144 | vnet_get_hw_interface_class (vnm, hw_class_index); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1145 | |
| 1146 | hi->hw_class_index = hw_class_index; |
| 1147 | hi->hw_instance = hw_instance; |
| 1148 | setup_output_node (vnm->vlib_main, hi->output_node_index, hc); |
| 1149 | } |
| 1150 | |
| 1151 | static clib_error_t * |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 1152 | vnet_hw_interface_set_class_helper (vnet_main_t * vnm, u32 hw_if_index, |
| 1153 | u32 hw_class_index, u32 redistribute) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1154 | { |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 1155 | vnet_hw_interface_t *hi = vnet_get_hw_interface (vnm, hw_if_index); |
| 1156 | vnet_sw_interface_t *si = vnet_get_sw_interface (vnm, hi->sw_if_index); |
| 1157 | vnet_hw_interface_class_t *old_class = |
| 1158 | vnet_get_hw_interface_class (vnm, hi->hw_class_index); |
| 1159 | vnet_hw_interface_class_t *new_class = |
| 1160 | vnet_get_hw_interface_class (vnm, hw_class_index); |
| 1161 | vnet_device_class_t *dev_class = |
| 1162 | vnet_get_device_class (vnm, hi->dev_class_index); |
| 1163 | clib_error_t *error = 0; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1164 | |
| 1165 | /* New class equals old class? Nothing to do. */ |
| 1166 | if (hi->hw_class_index == hw_class_index) |
| 1167 | return 0; |
| 1168 | |
| 1169 | /* No need (and incorrect since admin up flag may be set) to do error checking when |
| 1170 | receiving unserialize message. */ |
| 1171 | if (redistribute) |
| 1172 | { |
| 1173 | if (si->flags & VNET_SW_INTERFACE_FLAG_ADMIN_UP) |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 1174 | return clib_error_return (0, |
| 1175 | "%v must be admin down to change class from %s to %s", |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1176 | hi->name, old_class->name, new_class->name); |
| 1177 | |
| 1178 | /* Make sure interface supports given class. */ |
| 1179 | if ((new_class->is_valid_class_for_interface |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 1180 | && !new_class->is_valid_class_for_interface (vnm, hw_if_index, |
| 1181 | hw_class_index)) |
| 1182 | || (dev_class->is_valid_class_for_interface |
| 1183 | && !dev_class->is_valid_class_for_interface (vnm, hw_if_index, |
| 1184 | hw_class_index))) |
| 1185 | return clib_error_return (0, |
| 1186 | "%v class cannot be changed from %s to %s", |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1187 | hi->name, old_class->name, new_class->name); |
| 1188 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1189 | } |
| 1190 | |
| 1191 | if (old_class->hw_class_change) |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 1192 | old_class->hw_class_change (vnm, hw_if_index, old_class->index, |
| 1193 | new_class->index); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1194 | |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 1195 | vnet_hw_interface_init_for_class (vnm, hw_if_index, new_class->index, |
| 1196 | /* instance */ ~0); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1197 | |
| 1198 | if (new_class->hw_class_change) |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 1199 | new_class->hw_class_change (vnm, hw_if_index, old_class->index, |
| 1200 | new_class->index); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1201 | |
| 1202 | if (dev_class->hw_class_change) |
| 1203 | dev_class->hw_class_change (vnm, hw_if_index, new_class->index); |
| 1204 | |
| 1205 | return error; |
| 1206 | } |
| 1207 | |
| 1208 | clib_error_t * |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 1209 | vnet_hw_interface_set_class (vnet_main_t * vnm, u32 hw_if_index, |
| 1210 | u32 hw_class_index) |
| 1211 | { |
| 1212 | return vnet_hw_interface_set_class_helper (vnm, hw_if_index, hw_class_index, |
| 1213 | /* redistribute */ 1); |
| 1214 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1215 | |
| 1216 | static int |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 1217 | vnet_hw_interface_rx_redirect_to_node_helper (vnet_main_t * vnm, |
| 1218 | u32 hw_if_index, |
| 1219 | u32 node_index, |
| 1220 | u32 redistribute) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1221 | { |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 1222 | vnet_hw_interface_t *hi = vnet_get_hw_interface (vnm, hw_if_index); |
| 1223 | vnet_device_class_t *dev_class = vnet_get_device_class |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1224 | (vnm, hi->dev_class_index); |
| 1225 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1226 | if (dev_class->rx_redirect_to_node) |
| 1227 | { |
| 1228 | dev_class->rx_redirect_to_node (vnm, hw_if_index, node_index); |
| 1229 | return 0; |
| 1230 | } |
| 1231 | |
| 1232 | return VNET_API_ERROR_UNIMPLEMENTED; |
| 1233 | } |
| 1234 | |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 1235 | int |
| 1236 | vnet_hw_interface_rx_redirect_to_node (vnet_main_t * vnm, u32 hw_if_index, |
| 1237 | u32 node_index) |
| 1238 | { |
| 1239 | return vnet_hw_interface_rx_redirect_to_node_helper (vnm, hw_if_index, |
| 1240 | node_index, |
| 1241 | 1 /* redistribute */ ); |
| 1242 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1243 | |
| 1244 | word |
| 1245 | vnet_sw_interface_compare (vnet_main_t * vnm, |
| 1246 | uword sw_if_index0, uword sw_if_index1) |
| 1247 | { |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 1248 | vnet_sw_interface_t *sup0 = vnet_get_sup_sw_interface (vnm, sw_if_index0); |
| 1249 | vnet_sw_interface_t *sup1 = vnet_get_sup_sw_interface (vnm, sw_if_index1); |
| 1250 | vnet_hw_interface_t *h0 = vnet_get_hw_interface (vnm, sup0->hw_if_index); |
| 1251 | vnet_hw_interface_t *h1 = vnet_get_hw_interface (vnm, sup1->hw_if_index); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1252 | |
| 1253 | if (h0 != h1) |
| 1254 | return vec_cmp (h0->name, h1->name); |
| 1255 | return (word) h0->hw_instance - (word) h1->hw_instance; |
| 1256 | } |
| 1257 | |
| 1258 | word |
| 1259 | vnet_hw_interface_compare (vnet_main_t * vnm, |
| 1260 | uword hw_if_index0, uword hw_if_index1) |
| 1261 | { |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 1262 | vnet_hw_interface_t *h0 = vnet_get_hw_interface (vnm, hw_if_index0); |
| 1263 | vnet_hw_interface_t *h1 = vnet_get_hw_interface (vnm, hw_if_index1); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1264 | |
| 1265 | if (h0 != h1) |
| 1266 | return vec_cmp (h0->name, h1->name); |
| 1267 | return (word) h0->hw_instance - (word) h1->hw_instance; |
| 1268 | } |
| 1269 | |
Neale Ranns | b80c536 | 2016-10-08 13:03:40 +0100 | [diff] [blame] | 1270 | int |
| 1271 | vnet_sw_interface_is_p2p (vnet_main_t * vnm, u32 sw_if_index) |
| 1272 | { |
Pavel Kotucek | 15ac81c | 2017-06-20 14:00:26 +0200 | [diff] [blame] | 1273 | vnet_sw_interface_t *si = vnet_get_sw_interface (vnm, sw_if_index); |
Neale Ranns | 17ff3c1 | 2018-07-04 10:24:24 -0700 | [diff] [blame] | 1274 | if ((si->type == VNET_SW_INTERFACE_TYPE_P2P) || |
| 1275 | (si->type == VNET_SW_INTERFACE_TYPE_PIPE)) |
Pavel Kotucek | 15ac81c | 2017-06-20 14:00:26 +0200 | [diff] [blame] | 1276 | return 1; |
| 1277 | |
Neale Ranns | b80c536 | 2016-10-08 13:03:40 +0100 | [diff] [blame] | 1278 | vnet_hw_interface_t *hw = vnet_get_sup_hw_interface (vnm, sw_if_index); |
| 1279 | vnet_hw_interface_class_t *hc = |
| 1280 | vnet_get_hw_interface_class (vnm, hw->hw_class_index); |
| 1281 | |
| 1282 | return (hc->flags & VNET_HW_INTERFACE_CLASS_FLAG_P2P); |
| 1283 | } |
| 1284 | |
Neale Ranns | 5f8f617 | 2019-04-18 10:23:56 +0000 | [diff] [blame] | 1285 | int |
| 1286 | vnet_sw_interface_is_nbma (vnet_main_t * vnm, u32 sw_if_index) |
| 1287 | { |
| 1288 | vnet_hw_interface_t *hw = vnet_get_sup_hw_interface (vnm, sw_if_index); |
| 1289 | vnet_hw_interface_class_t *hc = |
| 1290 | vnet_get_hw_interface_class (vnm, hw->hw_class_index); |
| 1291 | |
| 1292 | return (hc->flags & VNET_HW_INTERFACE_CLASS_FLAG_NBMA); |
| 1293 | } |
| 1294 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1295 | clib_error_t * |
| 1296 | vnet_interface_init (vlib_main_t * vm) |
| 1297 | { |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 1298 | vnet_main_t *vnm = vnet_get_main (); |
| 1299 | vnet_interface_main_t *im = &vnm->interface_main; |
| 1300 | vlib_buffer_t *b = 0; |
| 1301 | vnet_buffer_opaque_t *o = 0; |
Dave Barach | 7bee773 | 2017-10-18 18:48:11 -0400 | [diff] [blame] | 1302 | clib_error_t *error; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1303 | |
| 1304 | /* |
| 1305 | * Keep people from shooting themselves in the foot. |
| 1306 | */ |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 1307 | if (sizeof (b->opaque) != sizeof (vnet_buffer_opaque_t)) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1308 | { |
| 1309 | #define _(a) if (sizeof(o->a) > sizeof (o->unused)) \ |
| 1310 | clib_warning \ |
| 1311 | ("FATAL: size of opaque union subtype %s is %d (max %d)", \ |
| 1312 | #a, sizeof(o->a), sizeof (o->unused)); |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 1313 | foreach_buffer_opaque_union_subtype; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1314 | #undef _ |
| 1315 | |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 1316 | return clib_error_return |
| 1317 | (0, "FATAL: size of vlib buffer opaque %d, size of vnet opaque %d", |
| 1318 | sizeof (b->opaque), sizeof (vnet_buffer_opaque_t)); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1319 | } |
| 1320 | |
jaszha03 | 5cdde5c | 2019-07-11 20:47:24 +0000 | [diff] [blame] | 1321 | clib_spinlock_init (&im->sw_if_counter_lock); |
| 1322 | clib_spinlock_lock (&im->sw_if_counter_lock); /* should be no need */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1323 | |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 1324 | vec_validate (im->sw_if_counters, VNET_N_SIMPLE_INTERFACE_COUNTER - 1); |
Ole Troan | 1ec0ea8 | 2018-06-14 09:28:27 +0200 | [diff] [blame] | 1325 | #define _(E,n,p) \ |
| 1326 | im->sw_if_counters[VNET_INTERFACE_COUNTER_##E].name = #n; \ |
| 1327 | im->sw_if_counters[VNET_INTERFACE_COUNTER_##E].stat_segment_name = "/" #p "/" #n; |
| 1328 | foreach_simple_interface_counter_name |
| 1329 | #undef _ |
| 1330 | vec_validate (im->combined_sw_if_counters, |
| 1331 | VNET_N_COMBINED_INTERFACE_COUNTER - 1); |
| 1332 | #define _(E,n,p) \ |
| 1333 | im->combined_sw_if_counters[VNET_INTERFACE_COUNTER_##E].name = #n; \ |
| 1334 | im->combined_sw_if_counters[VNET_INTERFACE_COUNTER_##E].stat_segment_name = "/" #p "/" #n; |
| 1335 | foreach_combined_interface_counter_name |
| 1336 | #undef _ |
jaszha03 | 5cdde5c | 2019-07-11 20:47:24 +0000 | [diff] [blame] | 1337 | clib_spinlock_unlock (&im->sw_if_counter_lock); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1338 | |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 1339 | im->device_class_by_name = hash_create_string ( /* size */ 0, |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1340 | sizeof (uword)); |
| 1341 | { |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 1342 | vnet_device_class_t *c; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1343 | |
| 1344 | c = vnm->device_class_registrations; |
| 1345 | |
| 1346 | while (c) |
| 1347 | { |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 1348 | c->index = vec_len (im->device_classes); |
| 1349 | hash_set_mem (im->device_class_by_name, c->name, c->index); |
Mohsin Kazmi | dd8e7d0 | 2018-07-23 14:45:57 +0200 | [diff] [blame] | 1350 | |
| 1351 | if (c->tx_fn_registrations) |
| 1352 | { |
| 1353 | vlib_node_fn_registration_t *fnr = c->tx_fn_registrations; |
| 1354 | int priority = -1; |
| 1355 | |
Paul Vinciguerra | bdc0e6b | 2018-09-22 05:32:50 -0700 | [diff] [blame] | 1356 | /* to avoid confusion, please remove ".tx_function" statement |
Mohsin Kazmi | dd8e7d0 | 2018-07-23 14:45:57 +0200 | [diff] [blame] | 1357 | from VNET_DEVICE_CLASS() if using function candidates */ |
| 1358 | ASSERT (c->tx_function == 0); |
| 1359 | |
| 1360 | while (fnr) |
| 1361 | { |
| 1362 | if (fnr->priority > priority) |
| 1363 | { |
| 1364 | priority = fnr->priority; |
| 1365 | c->tx_function = fnr->function; |
| 1366 | } |
| 1367 | fnr = fnr->next_registration; |
| 1368 | } |
| 1369 | } |
| 1370 | |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 1371 | vec_add1 (im->device_classes, c[0]); |
| 1372 | c = c->next_class_registration; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1373 | } |
| 1374 | } |
| 1375 | |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 1376 | im->hw_interface_class_by_name = hash_create_string ( /* size */ 0, |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1377 | sizeof (uword)); |
| 1378 | |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 1379 | im->sw_if_index_by_sup_and_sub = hash_create_mem (0, sizeof (u64), |
| 1380 | sizeof (uword)); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1381 | { |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 1382 | vnet_hw_interface_class_t *c; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1383 | |
| 1384 | c = vnm->hw_interface_class_registrations; |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 1385 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1386 | while (c) |
| 1387 | { |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 1388 | c->index = vec_len (im->hw_interface_classes); |
| 1389 | hash_set_mem (im->hw_interface_class_by_name, c->name, c->index); |
Neale Ranns | b80c536 | 2016-10-08 13:03:40 +0100 | [diff] [blame] | 1390 | |
| 1391 | if (NULL == c->build_rewrite) |
| 1392 | c->build_rewrite = default_build_rewrite; |
| 1393 | if (NULL == c->update_adjacency) |
| 1394 | c->update_adjacency = default_update_adjacency; |
| 1395 | |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 1396 | vec_add1 (im->hw_interface_classes, c[0]); |
| 1397 | c = c->next_class_registration; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1398 | } |
| 1399 | } |
| 1400 | |
Andrew Yourtchenko | 6a7cff7 | 2018-10-12 16:09:22 +0200 | [diff] [blame] | 1401 | /* init per-thread data */ |
| 1402 | vec_validate_aligned (im->per_thread_data, vlib_num_workers (), |
| 1403 | CLIB_CACHE_LINE_BYTES); |
| 1404 | |
Dave Barach | 7bee773 | 2017-10-18 18:48:11 -0400 | [diff] [blame] | 1405 | if ((error = vlib_call_init_function (vm, vnet_interface_cli_init))) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1406 | return error; |
Dave Barach | 7bee773 | 2017-10-18 18:48:11 -0400 | [diff] [blame] | 1407 | |
Dave Barach | 7be864a | 2016-11-28 11:41:35 -0500 | [diff] [blame] | 1408 | vnm->interface_tag_by_sw_if_index = hash_create (0, sizeof (uword)); |
Dave Barach | 7bee773 | 2017-10-18 18:48:11 -0400 | [diff] [blame] | 1409 | |
| 1410 | #if VLIB_BUFFER_TRACE_TRAJECTORY > 0 |
| 1411 | if ((error = vlib_call_init_function (vm, trajectory_trace_init))) |
| 1412 | return error; |
| 1413 | #endif |
| 1414 | |
| 1415 | return 0; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1416 | } |
| 1417 | |
| 1418 | VLIB_INIT_FUNCTION (vnet_interface_init); |
| 1419 | |
| 1420 | /* Kludge to renumber interface names [only!] */ |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 1421 | int |
| 1422 | vnet_interface_name_renumber (u32 sw_if_index, u32 new_show_dev_instance) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1423 | { |
| 1424 | int rv; |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 1425 | vnet_main_t *vnm = vnet_get_main (); |
| 1426 | vnet_interface_main_t *im = &vnm->interface_main; |
| 1427 | vnet_hw_interface_t *hi = vnet_get_sup_hw_interface (vnm, sw_if_index); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1428 | |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 1429 | vnet_device_class_t *dev_class = vnet_get_device_class |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1430 | (vnm, hi->dev_class_index); |
| 1431 | |
| 1432 | if (dev_class->name_renumber == 0 || dev_class->format_device_name == 0) |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 1433 | return VNET_API_ERROR_UNIMPLEMENTED; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1434 | |
| 1435 | rv = dev_class->name_renumber (hi, new_show_dev_instance); |
| 1436 | |
| 1437 | if (rv) |
| 1438 | return rv; |
| 1439 | |
| 1440 | hash_unset_mem (im->hw_interface_by_name, hi->name); |
| 1441 | vec_free (hi->name); |
| 1442 | /* Use the mapping we set up to call it Ishmael */ |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 1443 | hi->name = format (0, "%U", dev_class->format_device_name, |
| 1444 | hi->dev_instance); |
| 1445 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1446 | hash_set_mem (im->hw_interface_by_name, hi->name, hi->hw_if_index); |
| 1447 | return rv; |
| 1448 | } |
| 1449 | |
Sean Hope | 608d1ed | 2016-03-09 00:35:21 -0500 | [diff] [blame] | 1450 | clib_error_t * |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 1451 | vnet_rename_interface (vnet_main_t * vnm, u32 hw_if_index, char *new_name) |
Sean Hope | 608d1ed | 2016-03-09 00:35:21 -0500 | [diff] [blame] | 1452 | { |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 1453 | vnet_interface_main_t *im = &vnm->interface_main; |
| 1454 | vlib_main_t *vm = vnm->vlib_main; |
| 1455 | vnet_hw_interface_t *hw; |
| 1456 | u8 *old_name; |
| 1457 | clib_error_t *error = 0; |
Sean Hope | 608d1ed | 2016-03-09 00:35:21 -0500 | [diff] [blame] | 1458 | |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 1459 | hw = vnet_get_hw_interface (vnm, hw_if_index); |
Sean Hope | 608d1ed | 2016-03-09 00:35:21 -0500 | [diff] [blame] | 1460 | if (!hw) |
| 1461 | { |
| 1462 | return clib_error_return (0, |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 1463 | "unable to find hw interface for index %u", |
| 1464 | hw_if_index); |
Sean Hope | 608d1ed | 2016-03-09 00:35:21 -0500 | [diff] [blame] | 1465 | } |
| 1466 | |
| 1467 | old_name = hw->name; |
| 1468 | |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 1469 | /* set new hw->name */ |
Sean Hope | 608d1ed | 2016-03-09 00:35:21 -0500 | [diff] [blame] | 1470 | hw->name = format (0, "%s", new_name); |
| 1471 | |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 1472 | /* remove the old name to hw_if_index mapping and install the new one */ |
Sean Hope | 608d1ed | 2016-03-09 00:35:21 -0500 | [diff] [blame] | 1473 | hash_unset_mem (im->hw_interface_by_name, old_name); |
| 1474 | hash_set_mem (im->hw_interface_by_name, hw->name, hw_if_index); |
| 1475 | |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 1476 | /* rename tx/output nodes */ |
Sean Hope | 608d1ed | 2016-03-09 00:35:21 -0500 | [diff] [blame] | 1477 | vlib_node_rename (vm, hw->tx_node_index, "%v-tx", hw->name); |
| 1478 | vlib_node_rename (vm, hw->output_node_index, "%v-output", hw->name); |
| 1479 | |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 1480 | /* free the old name vector */ |
Sean Hope | 608d1ed | 2016-03-09 00:35:21 -0500 | [diff] [blame] | 1481 | vec_free (old_name); |
| 1482 | |
| 1483 | return error; |
| 1484 | } |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 1485 | |
Matthew Smith | e0792fd | 2019-07-12 11:48:24 -0500 | [diff] [blame] | 1486 | clib_error_t * |
| 1487 | vnet_hw_interface_add_del_mac_address (vnet_main_t * vnm, |
| 1488 | u32 hw_if_index, |
| 1489 | const u8 * mac_address, u8 is_add) |
| 1490 | { |
| 1491 | clib_error_t *error = 0; |
| 1492 | vnet_hw_interface_t *hi = vnet_get_hw_interface (vnm, hw_if_index); |
| 1493 | |
| 1494 | vnet_device_class_t *dev_class = |
| 1495 | vnet_get_device_class (vnm, hi->dev_class_index); |
| 1496 | |
| 1497 | if (!hi->hw_address) |
| 1498 | { |
| 1499 | error = |
| 1500 | clib_error_return |
| 1501 | (0, "Secondary MAC Addresses not supported for interface index %u", |
| 1502 | hw_if_index); |
| 1503 | goto done; |
| 1504 | } |
| 1505 | |
| 1506 | if (dev_class->mac_addr_add_del_function) |
| 1507 | error = dev_class->mac_addr_add_del_function (hi, mac_address, is_add); |
| 1508 | |
| 1509 | if (!error) |
| 1510 | { |
| 1511 | vnet_hw_interface_class_t *hw_class; |
| 1512 | |
| 1513 | hw_class = vnet_get_hw_interface_class (vnm, hi->hw_class_index); |
| 1514 | |
| 1515 | if (NULL != hw_class->mac_addr_add_del_function) |
| 1516 | error = hw_class->mac_addr_add_del_function (hi, mac_address, is_add); |
| 1517 | } |
| 1518 | |
| 1519 | /* If no errors, add to the list of secondary MACs on the ethernet intf */ |
| 1520 | if (!error) |
| 1521 | ethernet_interface_add_del_address (ðernet_main, hw_if_index, |
| 1522 | mac_address, is_add); |
| 1523 | |
| 1524 | done: |
Damjan Marion | d1bd5d2 | 2020-11-23 16:58:05 +0100 | [diff] [blame^] | 1525 | if (error) |
| 1526 | log_err ("hw_add_del_mac_address: %U", format_clib_error, error); |
Matthew Smith | e0792fd | 2019-07-12 11:48:24 -0500 | [diff] [blame] | 1527 | return error; |
| 1528 | } |
| 1529 | |
Pavel Kotucek | c631f2d | 2016-09-26 10:40:02 +0200 | [diff] [blame] | 1530 | static clib_error_t * |
| 1531 | vnet_hw_interface_change_mac_address_helper (vnet_main_t * vnm, |
John Lo | 62fcc0a | 2017-10-31 14:31:10 -0400 | [diff] [blame] | 1532 | u32 hw_if_index, |
Neale Ranns | 8f8994a | 2018-10-30 03:47:20 -0700 | [diff] [blame] | 1533 | const u8 * mac_address) |
Pavel Kotucek | c631f2d | 2016-09-26 10:40:02 +0200 | [diff] [blame] | 1534 | { |
| 1535 | clib_error_t *error = 0; |
| 1536 | vnet_hw_interface_t *hi = vnet_get_hw_interface (vnm, hw_if_index); |
| 1537 | |
| 1538 | if (hi->hw_address) |
| 1539 | { |
Neale Ranns | 3b81a1e | 2018-09-06 09:50:26 -0700 | [diff] [blame] | 1540 | u8 *old_address = vec_dup (hi->hw_address); |
Pavel Kotucek | c631f2d | 2016-09-26 10:40:02 +0200 | [diff] [blame] | 1541 | vnet_device_class_t *dev_class = |
| 1542 | vnet_get_device_class (vnm, hi->dev_class_index); |
| 1543 | if (dev_class->mac_addr_change_function) |
| 1544 | { |
| 1545 | error = |
Neale Ranns | 3b81a1e | 2018-09-06 09:50:26 -0700 | [diff] [blame] | 1546 | dev_class->mac_addr_change_function (hi, old_address, |
| 1547 | mac_address); |
Pavel Kotucek | c631f2d | 2016-09-26 10:40:02 +0200 | [diff] [blame] | 1548 | } |
| 1549 | if (!error) |
| 1550 | { |
Neale Ranns | 3be6b28 | 2016-12-20 14:24:01 +0000 | [diff] [blame] | 1551 | vnet_hw_interface_class_t *hw_class; |
Pavel Kotucek | c631f2d | 2016-09-26 10:40:02 +0200 | [diff] [blame] | 1552 | |
Neale Ranns | 3be6b28 | 2016-12-20 14:24:01 +0000 | [diff] [blame] | 1553 | hw_class = vnet_get_hw_interface_class (vnm, hi->hw_class_index); |
Pavel Kotucek | a6b3177 | 2016-10-14 10:20:59 +0200 | [diff] [blame] | 1554 | |
Neale Ranns | 3be6b28 | 2016-12-20 14:24:01 +0000 | [diff] [blame] | 1555 | if (NULL != hw_class->mac_addr_change_function) |
Neale Ranns | 3b81a1e | 2018-09-06 09:50:26 -0700 | [diff] [blame] | 1556 | hw_class->mac_addr_change_function (hi, old_address, mac_address); |
Pavel Kotucek | c631f2d | 2016-09-26 10:40:02 +0200 | [diff] [blame] | 1557 | } |
| 1558 | else |
| 1559 | { |
| 1560 | error = |
| 1561 | clib_error_return (0, |
| 1562 | "MAC Address Change is not supported on this interface"); |
| 1563 | } |
Neale Ranns | 3b81a1e | 2018-09-06 09:50:26 -0700 | [diff] [blame] | 1564 | vec_free (old_address); |
Pavel Kotucek | c631f2d | 2016-09-26 10:40:02 +0200 | [diff] [blame] | 1565 | } |
| 1566 | else |
| 1567 | { |
| 1568 | error = |
| 1569 | clib_error_return (0, |
| 1570 | "mac address change is not supported for interface index %u", |
| 1571 | hw_if_index); |
| 1572 | } |
| 1573 | return error; |
| 1574 | } |
| 1575 | |
| 1576 | clib_error_t * |
| 1577 | vnet_hw_interface_change_mac_address (vnet_main_t * vnm, u32 hw_if_index, |
Neale Ranns | 8f8994a | 2018-10-30 03:47:20 -0700 | [diff] [blame] | 1578 | const u8 * mac_address) |
Pavel Kotucek | c631f2d | 2016-09-26 10:40:02 +0200 | [diff] [blame] | 1579 | { |
| 1580 | return vnet_hw_interface_change_mac_address_helper |
| 1581 | (vnm, hw_if_index, mac_address); |
| 1582 | } |
| 1583 | |
Neale Ranns | 2ae2bc5 | 2018-03-16 03:22:39 -0700 | [diff] [blame] | 1584 | /* update the unnumbered state of an interface*/ |
| 1585 | void |
| 1586 | vnet_sw_interface_update_unnumbered (u32 unnumbered_sw_if_index, |
| 1587 | u32 ip_sw_if_index, u8 enable) |
| 1588 | { |
| 1589 | vnet_main_t *vnm = vnet_get_main (); |
| 1590 | vnet_sw_interface_t *si; |
| 1591 | u32 was_unnum; |
| 1592 | |
| 1593 | si = vnet_get_sw_interface (vnm, unnumbered_sw_if_index); |
| 1594 | was_unnum = (si->flags & VNET_SW_INTERFACE_FLAG_UNNUMBERED); |
| 1595 | |
| 1596 | if (enable) |
| 1597 | { |
| 1598 | si->flags |= VNET_SW_INTERFACE_FLAG_UNNUMBERED; |
| 1599 | si->unnumbered_sw_if_index = ip_sw_if_index; |
| 1600 | |
| 1601 | ip4_main.lookup_main.if_address_pool_index_by_sw_if_index |
| 1602 | [unnumbered_sw_if_index] = |
| 1603 | ip4_main. |
| 1604 | lookup_main.if_address_pool_index_by_sw_if_index[ip_sw_if_index]; |
| 1605 | ip6_main. |
| 1606 | lookup_main.if_address_pool_index_by_sw_if_index |
| 1607 | [unnumbered_sw_if_index] = |
| 1608 | ip6_main. |
| 1609 | lookup_main.if_address_pool_index_by_sw_if_index[ip_sw_if_index]; |
| 1610 | } |
| 1611 | else |
| 1612 | { |
| 1613 | si->flags &= ~(VNET_SW_INTERFACE_FLAG_UNNUMBERED); |
| 1614 | si->unnumbered_sw_if_index = (u32) ~ 0; |
| 1615 | |
| 1616 | ip4_main.lookup_main.if_address_pool_index_by_sw_if_index |
| 1617 | [unnumbered_sw_if_index] = ~0; |
| 1618 | ip6_main.lookup_main.if_address_pool_index_by_sw_if_index |
| 1619 | [unnumbered_sw_if_index] = ~0; |
| 1620 | } |
| 1621 | |
| 1622 | if (was_unnum != (si->flags & VNET_SW_INTERFACE_FLAG_UNNUMBERED)) |
| 1623 | { |
| 1624 | ip4_sw_interface_enable_disable (unnumbered_sw_if_index, enable); |
| 1625 | ip6_sw_interface_enable_disable (unnumbered_sw_if_index, enable); |
| 1626 | } |
| 1627 | } |
| 1628 | |
Neale Ranns | b80c536 | 2016-10-08 13:03:40 +0100 | [diff] [blame] | 1629 | vnet_l3_packet_type_t |
| 1630 | vnet_link_to_l3_proto (vnet_link_t link) |
| 1631 | { |
| 1632 | switch (link) |
| 1633 | { |
| 1634 | case VNET_LINK_IP4: |
| 1635 | return (VNET_L3_PACKET_TYPE_IP4); |
| 1636 | case VNET_LINK_IP6: |
| 1637 | return (VNET_L3_PACKET_TYPE_IP6); |
| 1638 | case VNET_LINK_MPLS: |
Neale Ranns | 0f26c5a | 2017-03-01 15:12:11 -0800 | [diff] [blame] | 1639 | return (VNET_L3_PACKET_TYPE_MPLS); |
Neale Ranns | b80c536 | 2016-10-08 13:03:40 +0100 | [diff] [blame] | 1640 | case VNET_LINK_ARP: |
| 1641 | return (VNET_L3_PACKET_TYPE_ARP); |
| 1642 | case VNET_LINK_ETHERNET: |
Florin Coras | ce1b4c7 | 2017-01-26 14:25:34 -0800 | [diff] [blame] | 1643 | case VNET_LINK_NSH: |
Neale Ranns | b80c536 | 2016-10-08 13:03:40 +0100 | [diff] [blame] | 1644 | ASSERT (0); |
| 1645 | break; |
| 1646 | } |
| 1647 | ASSERT (0); |
| 1648 | return (0); |
| 1649 | } |
| 1650 | |
Ole Troan | d723161 | 2018-06-07 10:17:57 +0200 | [diff] [blame] | 1651 | vnet_mtu_t |
| 1652 | vnet_link_to_mtu (vnet_link_t link) |
| 1653 | { |
| 1654 | switch (link) |
| 1655 | { |
| 1656 | case VNET_LINK_IP4: |
| 1657 | return (VNET_MTU_IP4); |
| 1658 | case VNET_LINK_IP6: |
| 1659 | return (VNET_MTU_IP6); |
| 1660 | case VNET_LINK_MPLS: |
| 1661 | return (VNET_MTU_MPLS); |
| 1662 | default: |
| 1663 | return (VNET_MTU_L3); |
| 1664 | } |
| 1665 | } |
| 1666 | |
Neale Ranns | b80c536 | 2016-10-08 13:03:40 +0100 | [diff] [blame] | 1667 | u8 * |
| 1668 | default_build_rewrite (vnet_main_t * vnm, |
| 1669 | u32 sw_if_index, |
| 1670 | vnet_link_t link_type, const void *dst_address) |
| 1671 | { |
| 1672 | return (NULL); |
| 1673 | } |
| 1674 | |
| 1675 | void |
| 1676 | default_update_adjacency (vnet_main_t * vnm, u32 sw_if_index, u32 ai) |
| 1677 | { |
Neale Ranns | 0117d24 | 2017-08-12 12:52:54 -0700 | [diff] [blame] | 1678 | ip_adjacency_t *adj; |
Neale Ranns | b80c536 | 2016-10-08 13:03:40 +0100 | [diff] [blame] | 1679 | |
Neale Ranns | 0117d24 | 2017-08-12 12:52:54 -0700 | [diff] [blame] | 1680 | adj = adj_get (ai); |
Neale Ranns | b80c536 | 2016-10-08 13:03:40 +0100 | [diff] [blame] | 1681 | |
Neale Ranns | 0117d24 | 2017-08-12 12:52:54 -0700 | [diff] [blame] | 1682 | switch (adj->lookup_next_index) |
| 1683 | { |
Ole Trøan | 438f630 | 2018-02-15 21:56:06 +0000 | [diff] [blame] | 1684 | case IP_LOOKUP_NEXT_GLEAN: |
Neale Ranns | c819fc6 | 2018-02-16 02:44:05 -0800 | [diff] [blame] | 1685 | adj_glean_update_rewrite (ai); |
| 1686 | break; |
| 1687 | case IP_LOOKUP_NEXT_ARP: |
Neale Ranns | 1855b8e | 2018-07-11 10:31:26 -0700 | [diff] [blame] | 1688 | case IP_LOOKUP_NEXT_BCAST: |
Neale Ranns | 0117d24 | 2017-08-12 12:52:54 -0700 | [diff] [blame] | 1689 | /* |
Paul Vinciguerra | bdc0e6b | 2018-09-22 05:32:50 -0700 | [diff] [blame] | 1690 | * default rewrite in neighbour adj |
Neale Ranns | 0117d24 | 2017-08-12 12:52:54 -0700 | [diff] [blame] | 1691 | */ |
| 1692 | adj_nbr_update_rewrite |
| 1693 | (ai, |
| 1694 | ADJ_NBR_REWRITE_FLAG_COMPLETE, |
| 1695 | vnet_build_rewrite_for_sw_interface (vnm, |
| 1696 | sw_if_index, |
| 1697 | adj_get_link_type (ai), NULL)); |
| 1698 | break; |
| 1699 | case IP_LOOKUP_NEXT_MCAST: |
| 1700 | /* |
| 1701 | * mcast traffic also uses default rewrite string with no mcast |
| 1702 | * switch time updates. |
| 1703 | */ |
| 1704 | adj_mcast_update_rewrite |
| 1705 | (ai, |
| 1706 | vnet_build_rewrite_for_sw_interface (vnm, |
| 1707 | sw_if_index, |
| 1708 | adj_get_link_type (ai), |
Neale Ranns | 889fe94 | 2017-06-01 05:43:19 -0400 | [diff] [blame] | 1709 | NULL), 0); |
Neale Ranns | 0117d24 | 2017-08-12 12:52:54 -0700 | [diff] [blame] | 1710 | break; |
| 1711 | case IP_LOOKUP_NEXT_DROP: |
| 1712 | case IP_LOOKUP_NEXT_PUNT: |
| 1713 | case IP_LOOKUP_NEXT_LOCAL: |
| 1714 | case IP_LOOKUP_NEXT_REWRITE: |
| 1715 | case IP_LOOKUP_NEXT_MCAST_MIDCHAIN: |
| 1716 | case IP_LOOKUP_NEXT_MIDCHAIN: |
| 1717 | case IP_LOOKUP_NEXT_ICMP_ERROR: |
| 1718 | case IP_LOOKUP_N_NEXT: |
| 1719 | ASSERT (0); |
| 1720 | break; |
| 1721 | } |
Neale Ranns | b80c536 | 2016-10-08 13:03:40 +0100 | [diff] [blame] | 1722 | } |
| 1723 | |
Chenmin Sun | c466509 | 2020-07-06 08:20:39 +0800 | [diff] [blame] | 1724 | clib_error_t * |
| 1725 | vnet_hw_interface_set_rss_queues (vnet_main_t * vnm, |
| 1726 | vnet_hw_interface_t * hi, |
| 1727 | clib_bitmap_t * bitmap) |
| 1728 | { |
| 1729 | clib_error_t *error = 0; |
| 1730 | vnet_device_class_t *dev_class = |
| 1731 | vnet_get_device_class (vnm, hi->dev_class_index); |
| 1732 | |
| 1733 | if (dev_class->set_rss_queues_function) |
| 1734 | { |
| 1735 | if (clib_bitmap_count_set_bits (bitmap) == 0) |
| 1736 | { |
| 1737 | error = clib_error_return (0, |
| 1738 | "must assign at least one valid rss queue"); |
| 1739 | goto done; |
| 1740 | } |
| 1741 | |
| 1742 | error = dev_class->set_rss_queues_function (vnm, hi, bitmap); |
| 1743 | } |
| 1744 | else |
| 1745 | { |
| 1746 | error = clib_error_return (0, |
| 1747 | "setting rss queues is not supported on this interface"); |
| 1748 | } |
| 1749 | |
| 1750 | if (!error) |
| 1751 | { |
| 1752 | clib_bitmap_free (hi->rss_queues); |
| 1753 | hi->rss_queues = clib_bitmap_dup (bitmap); |
| 1754 | } |
| 1755 | |
| 1756 | done: |
Damjan Marion | d1bd5d2 | 2020-11-23 16:58:05 +0100 | [diff] [blame^] | 1757 | if (error) |
| 1758 | log_err ("hw_set_rss_queues: %U", format_clib_error, error); |
Chenmin Sun | c466509 | 2020-07-06 08:20:39 +0800 | [diff] [blame] | 1759 | return error; |
| 1760 | } |
| 1761 | |
Neale Ranns | 6f4a6be | 2018-03-16 16:26:21 -0700 | [diff] [blame] | 1762 | int collect_detailed_interface_stats_flag = 0; |
| 1763 | |
| 1764 | void |
Neale Ranns | f704f38 | 2018-03-19 12:24:07 -0400 | [diff] [blame] | 1765 | collect_detailed_interface_stats_flag_set (void) |
Neale Ranns | 6f4a6be | 2018-03-16 16:26:21 -0700 | [diff] [blame] | 1766 | { |
| 1767 | collect_detailed_interface_stats_flag = 1; |
| 1768 | } |
| 1769 | |
| 1770 | void |
Neale Ranns | f704f38 | 2018-03-19 12:24:07 -0400 | [diff] [blame] | 1771 | collect_detailed_interface_stats_flag_clear (void) |
Neale Ranns | 6f4a6be | 2018-03-16 16:26:21 -0700 | [diff] [blame] | 1772 | { |
| 1773 | collect_detailed_interface_stats_flag = 0; |
| 1774 | } |
| 1775 | |
| 1776 | static clib_error_t * |
| 1777 | collect_detailed_interface_stats_cli (vlib_main_t * vm, |
| 1778 | unformat_input_t * input, |
| 1779 | vlib_cli_command_t * cmd) |
| 1780 | { |
| 1781 | unformat_input_t _line_input, *line_input = &_line_input; |
| 1782 | clib_error_t *error = NULL; |
| 1783 | |
| 1784 | /* Get a line of input. */ |
| 1785 | if (!unformat_user (input, unformat_line_input, line_input)) |
| 1786 | return clib_error_return (0, "expected enable | disable"); |
| 1787 | |
| 1788 | while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT) |
| 1789 | { |
| 1790 | if (unformat (line_input, "enable") || unformat (line_input, "on")) |
| 1791 | collect_detailed_interface_stats_flag_set (); |
| 1792 | else if (unformat (line_input, "disable") |
| 1793 | || unformat (line_input, "off")) |
| 1794 | collect_detailed_interface_stats_flag_clear (); |
| 1795 | else |
| 1796 | { |
| 1797 | error = clib_error_return (0, "unknown input `%U'", |
| 1798 | format_unformat_error, line_input); |
| 1799 | goto done; |
| 1800 | } |
| 1801 | } |
| 1802 | |
| 1803 | done: |
| 1804 | unformat_free (line_input); |
| 1805 | return error; |
| 1806 | } |
| 1807 | |
| 1808 | /* *INDENT-OFF* */ |
| 1809 | VLIB_CLI_COMMAND (collect_detailed_interface_stats_command, static) = { |
| 1810 | .path = "interface collect detailed-stats", |
| 1811 | .short_help = "interface collect detailed-stats <enable|disable>", |
| 1812 | .function = collect_detailed_interface_stats_cli, |
| 1813 | }; |
| 1814 | /* *INDENT-ON* */ |
| 1815 | |
Dave Barach | ba868bb | 2016-08-08 09:51:21 -0400 | [diff] [blame] | 1816 | /* |
| 1817 | * fd.io coding-style-patch-verification: ON |
| 1818 | * |
| 1819 | * Local Variables: |
| 1820 | * eval: (c-set-style "gnu") |
| 1821 | * End: |
| 1822 | */ |