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