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