Damjan Marion | 2231150 | 2016-10-28 20:30:15 +0200 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2016 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 | #include <vnet/feature/feature.h> |
Neale Ranns | b069a69 | 2017-03-15 12:34:25 -0400 | [diff] [blame] | 17 | #include <vnet/adj/adj.h> |
Damjan Marion | 2231150 | 2016-10-28 20:30:15 +0200 | [diff] [blame] | 18 | |
| 19 | vnet_feature_main_t feature_main; |
| 20 | |
| 21 | static clib_error_t * |
| 22 | vnet_feature_init (vlib_main_t * vm) |
| 23 | { |
| 24 | vnet_feature_main_t *fm = &feature_main; |
| 25 | vnet_feature_registration_t *freg; |
| 26 | vnet_feature_arc_registration_t *areg; |
Dave Barach | 2dd192b | 2018-11-19 09:31:48 -0500 | [diff] [blame] | 27 | vnet_feature_constraint_registration_t *creg; |
Damjan Marion | 2231150 | 2016-10-28 20:30:15 +0200 | [diff] [blame] | 28 | u32 arc_index = 0; |
| 29 | |
| 30 | fm->arc_index_by_name = hash_create_string (0, sizeof (uword)); |
| 31 | areg = fm->next_arc; |
| 32 | |
| 33 | /* process feature arc registrations */ |
| 34 | while (areg) |
| 35 | { |
| 36 | char *s; |
| 37 | int i = 0; |
| 38 | areg->feature_arc_index = arc_index; |
Damjan Marion | 8b3191e | 2016-11-09 19:54:20 +0100 | [diff] [blame] | 39 | if (areg->arc_index_ptr) |
| 40 | *areg->arc_index_ptr = arc_index; |
Damjan Marion | 2231150 | 2016-10-28 20:30:15 +0200 | [diff] [blame] | 41 | hash_set_mem (fm->arc_index_by_name, areg->arc_name, |
| 42 | pointer_to_uword (areg)); |
| 43 | |
| 44 | /* process start nodes */ |
| 45 | while ((s = areg->start_nodes[i])) |
| 46 | { |
Damjan Marion | 2231150 | 2016-10-28 20:30:15 +0200 | [diff] [blame] | 47 | i++; |
| 48 | } |
| 49 | areg->n_start_nodes = i; |
| 50 | |
| 51 | /* next */ |
| 52 | areg = areg->next; |
| 53 | arc_index++; |
| 54 | } |
| 55 | |
| 56 | vec_validate (fm->next_feature_by_arc, arc_index - 1); |
| 57 | vec_validate (fm->feature_nodes, arc_index - 1); |
| 58 | vec_validate (fm->feature_config_mains, arc_index - 1); |
| 59 | vec_validate (fm->next_feature_by_name, arc_index - 1); |
| 60 | vec_validate (fm->sw_if_index_has_features, arc_index - 1); |
| 61 | vec_validate (fm->feature_count_by_sw_if_index, arc_index - 1); |
Dave Barach | 2dd192b | 2018-11-19 09:31:48 -0500 | [diff] [blame] | 62 | vec_validate (fm->next_constraint_by_arc, arc_index - 1); |
Damjan Marion | 2231150 | 2016-10-28 20:30:15 +0200 | [diff] [blame] | 63 | |
| 64 | freg = fm->next_feature; |
| 65 | while (freg) |
| 66 | { |
Damjan Marion | 96b41f7 | 2016-11-10 18:01:42 +0100 | [diff] [blame] | 67 | vnet_feature_registration_t *next; |
Damjan Marion | 2231150 | 2016-10-28 20:30:15 +0200 | [diff] [blame] | 68 | uword *p = hash_get_mem (fm->arc_index_by_name, freg->arc_name); |
| 69 | if (p == 0) |
Florin Coras | 3d2a914 | 2017-08-16 21:23:44 -0700 | [diff] [blame] | 70 | { |
| 71 | /* Don't start vpp with broken features arcs */ |
| 72 | clib_warning ("Unknown feature arc '%s'", freg->arc_name); |
| 73 | os_exit (1); |
| 74 | } |
Damjan Marion | 2231150 | 2016-10-28 20:30:15 +0200 | [diff] [blame] | 75 | |
| 76 | areg = uword_to_pointer (p[0], vnet_feature_arc_registration_t *); |
| 77 | arc_index = areg->feature_arc_index; |
| 78 | |
Damjan Marion | 96b41f7 | 2016-11-10 18:01:42 +0100 | [diff] [blame] | 79 | next = freg->next; |
Damjan Marion | 13adc3d | 2018-04-09 20:59:53 +0200 | [diff] [blame] | 80 | freg->next_in_arc = fm->next_feature_by_arc[arc_index]; |
Damjan Marion | 96b41f7 | 2016-11-10 18:01:42 +0100 | [diff] [blame] | 81 | fm->next_feature_by_arc[arc_index] = freg; |
Damjan Marion | 2231150 | 2016-10-28 20:30:15 +0200 | [diff] [blame] | 82 | |
| 83 | /* next */ |
Damjan Marion | 96b41f7 | 2016-11-10 18:01:42 +0100 | [diff] [blame] | 84 | freg = next; |
Damjan Marion | 2231150 | 2016-10-28 20:30:15 +0200 | [diff] [blame] | 85 | } |
| 86 | |
Dave Barach | 2dd192b | 2018-11-19 09:31:48 -0500 | [diff] [blame] | 87 | /* Move bulk constraints to the constraint by arc lists */ |
| 88 | creg = fm->next_constraint; |
| 89 | while (creg) |
| 90 | { |
| 91 | vnet_feature_constraint_registration_t *next; |
| 92 | uword *p = hash_get_mem (fm->arc_index_by_name, creg->arc_name); |
| 93 | if (p == 0) |
| 94 | { |
| 95 | /* Don't start vpp with broken features arcs */ |
| 96 | clib_warning ("Unknown feature arc '%s'", creg->arc_name); |
| 97 | os_exit (1); |
| 98 | } |
| 99 | |
| 100 | areg = uword_to_pointer (p[0], vnet_feature_arc_registration_t *); |
| 101 | arc_index = areg->feature_arc_index; |
| 102 | |
| 103 | next = creg->next; |
| 104 | creg->next_in_arc = fm->next_constraint_by_arc[arc_index]; |
| 105 | fm->next_constraint_by_arc[arc_index] = creg; |
| 106 | |
| 107 | /* next */ |
| 108 | creg = next; |
| 109 | } |
| 110 | |
| 111 | |
Damjan Marion | 96b41f7 | 2016-11-10 18:01:42 +0100 | [diff] [blame] | 112 | areg = fm->next_arc; |
Damjan Marion | 2231150 | 2016-10-28 20:30:15 +0200 | [diff] [blame] | 113 | while (areg) |
| 114 | { |
| 115 | clib_error_t *error; |
| 116 | vnet_feature_config_main_t *cm; |
| 117 | vnet_config_main_t *vcm; |
Dave Barach | a25def7 | 2018-11-26 11:04:45 -0500 | [diff] [blame] | 118 | char **features_in_order, *last_feature; |
Damjan Marion | 2231150 | 2016-10-28 20:30:15 +0200 | [diff] [blame] | 119 | |
| 120 | arc_index = areg->feature_arc_index; |
| 121 | cm = &fm->feature_config_mains[arc_index]; |
| 122 | vcm = &cm->config_main; |
Dave Barach | 2dd192b | 2018-11-19 09:31:48 -0500 | [diff] [blame] | 123 | if ((error = vnet_feature_arc_init |
| 124 | (vm, vcm, areg->start_nodes, areg->n_start_nodes, |
Dave Barach | 5f9f3c8 | 2019-11-22 17:42:58 -0500 | [diff] [blame] | 125 | areg->last_in_arc, |
Dave Barach | 2dd192b | 2018-11-19 09:31:48 -0500 | [diff] [blame] | 126 | fm->next_feature_by_arc[arc_index], |
| 127 | fm->next_constraint_by_arc[arc_index], |
| 128 | &fm->feature_nodes[arc_index]))) |
Damjan Marion | 2231150 | 2016-10-28 20:30:15 +0200 | [diff] [blame] | 129 | { |
Florin Coras | 3d2a914 | 2017-08-16 21:23:44 -0700 | [diff] [blame] | 130 | clib_error_report (error); |
| 131 | os_exit (1); |
Damjan Marion | 2231150 | 2016-10-28 20:30:15 +0200 | [diff] [blame] | 132 | } |
| 133 | |
Dave Barach | a25def7 | 2018-11-26 11:04:45 -0500 | [diff] [blame] | 134 | features_in_order = fm->feature_nodes[arc_index]; |
| 135 | |
Paul Vinciguerra | 8feeaff | 2019-03-27 11:25:48 -0700 | [diff] [blame] | 136 | /* If specified, verify that the last node in the arc is actually last */ |
Dave Barach | a25def7 | 2018-11-26 11:04:45 -0500 | [diff] [blame] | 137 | if (areg->last_in_arc && vec_len (features_in_order) > 0) |
| 138 | { |
| 139 | last_feature = features_in_order[vec_len (features_in_order) - 1]; |
| 140 | if (strncmp (areg->last_in_arc, last_feature, |
| 141 | strlen (areg->last_in_arc))) |
| 142 | clib_warning |
| 143 | ("WARNING: %s arc: last node is %s, but expected %s!", |
| 144 | areg->arc_name, last_feature, areg->last_in_arc); |
| 145 | } |
| 146 | |
Damjan Marion | 2231150 | 2016-10-28 20:30:15 +0200 | [diff] [blame] | 147 | fm->next_feature_by_name[arc_index] = |
| 148 | hash_create_string (0, sizeof (uword)); |
| 149 | freg = fm->next_feature_by_arc[arc_index]; |
| 150 | |
| 151 | while (freg) |
| 152 | { |
| 153 | hash_set_mem (fm->next_feature_by_name[arc_index], |
| 154 | freg->node_name, pointer_to_uword (freg)); |
Damjan Marion | 13adc3d | 2018-04-09 20:59:53 +0200 | [diff] [blame] | 155 | freg = freg->next_in_arc; |
Damjan Marion | 2231150 | 2016-10-28 20:30:15 +0200 | [diff] [blame] | 156 | } |
| 157 | |
| 158 | /* next */ |
| 159 | areg = areg->next; |
| 160 | arc_index++; |
| 161 | } |
| 162 | |
| 163 | return 0; |
| 164 | } |
| 165 | |
| 166 | VLIB_INIT_FUNCTION (vnet_feature_init); |
| 167 | |
Damjan Marion | 87cd119 | 2016-11-04 11:00:27 +0100 | [diff] [blame] | 168 | u8 |
| 169 | vnet_get_feature_arc_index (const char *s) |
Damjan Marion | 2231150 | 2016-10-28 20:30:15 +0200 | [diff] [blame] | 170 | { |
| 171 | vnet_feature_main_t *fm = &feature_main; |
| 172 | vnet_feature_arc_registration_t *reg; |
| 173 | uword *p; |
| 174 | |
| 175 | p = hash_get_mem (fm->arc_index_by_name, s); |
| 176 | if (p == 0) |
| 177 | return ~0; |
| 178 | |
| 179 | reg = uword_to_pointer (p[0], vnet_feature_arc_registration_t *); |
| 180 | return reg->feature_arc_index; |
| 181 | } |
| 182 | |
Pavel Kotucek | 7490a75 | 2016-11-15 09:19:11 +0100 | [diff] [blame] | 183 | vnet_feature_registration_t * |
| 184 | vnet_get_feature_reg (const char *arc_name, const char *node_name) |
| 185 | { |
| 186 | u8 arc_index; |
| 187 | |
| 188 | arc_index = vnet_get_feature_arc_index (arc_name); |
| 189 | if (arc_index == (u8) ~ 0) |
| 190 | return 0; |
| 191 | |
| 192 | vnet_feature_main_t *fm = &feature_main; |
| 193 | vnet_feature_registration_t *reg; |
| 194 | uword *p; |
| 195 | |
| 196 | p = hash_get_mem (fm->next_feature_by_name[arc_index], node_name); |
| 197 | if (p == 0) |
| 198 | return 0; |
| 199 | |
| 200 | reg = uword_to_pointer (p[0], vnet_feature_registration_t *); |
| 201 | return reg; |
| 202 | } |
| 203 | |
Damjan Marion | 2231150 | 2016-10-28 20:30:15 +0200 | [diff] [blame] | 204 | u32 |
Damjan Marion | 87cd119 | 2016-11-04 11:00:27 +0100 | [diff] [blame] | 205 | vnet_get_feature_index (u8 arc, const char *s) |
Damjan Marion | 2231150 | 2016-10-28 20:30:15 +0200 | [diff] [blame] | 206 | { |
| 207 | vnet_feature_main_t *fm = &feature_main; |
| 208 | vnet_feature_registration_t *reg; |
| 209 | uword *p; |
| 210 | |
Damjan Marion | 21da6ce | 2016-11-28 18:21:59 +0100 | [diff] [blame] | 211 | if (s == 0) |
| 212 | return ~0; |
| 213 | |
Damjan Marion | 2231150 | 2016-10-28 20:30:15 +0200 | [diff] [blame] | 214 | p = hash_get_mem (fm->next_feature_by_name[arc], s); |
| 215 | if (p == 0) |
| 216 | return ~0; |
| 217 | |
| 218 | reg = uword_to_pointer (p[0], vnet_feature_registration_t *); |
Damjan Marion | 8b3191e | 2016-11-09 19:54:20 +0100 | [diff] [blame] | 219 | return reg->feature_index; |
Damjan Marion | 2231150 | 2016-10-28 20:30:15 +0200 | [diff] [blame] | 220 | } |
| 221 | |
Damjan Marion | 96b41f7 | 2016-11-10 18:01:42 +0100 | [diff] [blame] | 222 | int |
Damjan Marion | 8b3191e | 2016-11-09 19:54:20 +0100 | [diff] [blame] | 223 | vnet_feature_enable_disable_with_index (u8 arc_index, u32 feature_index, |
| 224 | u32 sw_if_index, int enable_disable, |
| 225 | void *feature_config, |
| 226 | u32 n_feature_config_bytes) |
Damjan Marion | 2231150 | 2016-10-28 20:30:15 +0200 | [diff] [blame] | 227 | { |
| 228 | vnet_feature_main_t *fm = &feature_main; |
| 229 | vnet_feature_config_main_t *cm; |
Damjan Marion | 21da6ce | 2016-11-28 18:21:59 +0100 | [diff] [blame] | 230 | i16 feature_count; |
Matthew Smith | c3267ed | 2018-05-15 15:51:30 -0500 | [diff] [blame] | 231 | u32 ci; |
Damjan Marion | 2231150 | 2016-10-28 20:30:15 +0200 | [diff] [blame] | 232 | |
Damjan Marion | 05bb1dd | 2016-11-08 21:28:22 +0100 | [diff] [blame] | 233 | if (arc_index == (u8) ~ 0) |
Damjan Marion | 96b41f7 | 2016-11-10 18:01:42 +0100 | [diff] [blame] | 234 | return VNET_API_ERROR_INVALID_VALUE; |
Damjan Marion | 2231150 | 2016-10-28 20:30:15 +0200 | [diff] [blame] | 235 | |
Damjan Marion | 2231150 | 2016-10-28 20:30:15 +0200 | [diff] [blame] | 236 | if (feature_index == ~0) |
Damjan Marion | 96b41f7 | 2016-11-10 18:01:42 +0100 | [diff] [blame] | 237 | return VNET_API_ERROR_INVALID_VALUE_2; |
Damjan Marion | 8b3191e | 2016-11-09 19:54:20 +0100 | [diff] [blame] | 238 | |
| 239 | cm = &fm->feature_config_mains[arc_index]; |
| 240 | vec_validate_init_empty (cm->config_index_by_sw_if_index, sw_if_index, ~0); |
Matthew Smith | c3267ed | 2018-05-15 15:51:30 -0500 | [diff] [blame] | 241 | ci = cm->config_index_by_sw_if_index[sw_if_index]; |
Damjan Marion | 2231150 | 2016-10-28 20:30:15 +0200 | [diff] [blame] | 242 | |
Pavel Kotucek | f6e3dc4 | 2016-11-04 09:58:01 +0100 | [diff] [blame] | 243 | vec_validate (fm->feature_count_by_sw_if_index[arc_index], sw_if_index); |
Damjan Marion | 21da6ce | 2016-11-28 18:21:59 +0100 | [diff] [blame] | 244 | feature_count = fm->feature_count_by_sw_if_index[arc_index][sw_if_index]; |
| 245 | |
| 246 | if (!enable_disable && feature_count < 1) |
Pavel Kotucek | f6e3dc4 | 2016-11-04 09:58:01 +0100 | [diff] [blame] | 247 | return 0; |
| 248 | |
Damjan Marion | 2231150 | 2016-10-28 20:30:15 +0200 | [diff] [blame] | 249 | ci = (enable_disable |
| 250 | ? vnet_config_add_feature |
| 251 | : vnet_config_del_feature) |
| 252 | (vlib_get_main (), &cm->config_main, ci, feature_index, feature_config, |
| 253 | n_feature_config_bytes); |
Matthew Smith | c3267ed | 2018-05-15 15:51:30 -0500 | [diff] [blame] | 254 | if (ci == ~0) |
Klement Sekera | 3ecc221 | 2018-03-27 10:34:43 +0200 | [diff] [blame] | 255 | { |
| 256 | return 0; |
| 257 | } |
Damjan Marion | 2231150 | 2016-10-28 20:30:15 +0200 | [diff] [blame] | 258 | cm->config_index_by_sw_if_index[sw_if_index] = ci; |
| 259 | |
Damjan Marion | 21da6ce | 2016-11-28 18:21:59 +0100 | [diff] [blame] | 260 | /* update feature count */ |
| 261 | enable_disable = (enable_disable > 0); |
| 262 | feature_count += enable_disable ? 1 : -1; |
Damjan Marion | 21da6ce | 2016-11-28 18:21:59 +0100 | [diff] [blame] | 263 | ASSERT (feature_count >= 0); |
Damjan Marion | 2231150 | 2016-10-28 20:30:15 +0200 | [diff] [blame] | 264 | |
Damjan Marion | 21da6ce | 2016-11-28 18:21:59 +0100 | [diff] [blame] | 265 | fm->sw_if_index_has_features[arc_index] = |
| 266 | clib_bitmap_set (fm->sw_if_index_has_features[arc_index], sw_if_index, |
| 267 | (feature_count > 0)); |
Neale Ranns | b069a69 | 2017-03-15 12:34:25 -0400 | [diff] [blame] | 268 | adj_feature_update (sw_if_index, arc_index, (feature_count > 0)); |
Damjan Marion | 21da6ce | 2016-11-28 18:21:59 +0100 | [diff] [blame] | 269 | |
| 270 | fm->feature_count_by_sw_if_index[arc_index][sw_if_index] = feature_count; |
Damjan Marion | 96b41f7 | 2016-11-10 18:01:42 +0100 | [diff] [blame] | 271 | return 0; |
Damjan Marion | 2231150 | 2016-10-28 20:30:15 +0200 | [diff] [blame] | 272 | } |
| 273 | |
Damjan Marion | 8b3191e | 2016-11-09 19:54:20 +0100 | [diff] [blame] | 274 | int |
| 275 | vnet_feature_enable_disable (const char *arc_name, const char *node_name, |
| 276 | u32 sw_if_index, int enable_disable, |
| 277 | void *feature_config, u32 n_feature_config_bytes) |
| 278 | { |
| 279 | u32 feature_index; |
| 280 | u8 arc_index; |
| 281 | |
| 282 | arc_index = vnet_get_feature_arc_index (arc_name); |
| 283 | |
| 284 | if (arc_index == (u8) ~ 0) |
| 285 | return VNET_API_ERROR_INVALID_VALUE; |
| 286 | |
| 287 | feature_index = vnet_get_feature_index (arc_index, node_name); |
| 288 | |
| 289 | return vnet_feature_enable_disable_with_index (arc_index, feature_index, |
| 290 | sw_if_index, enable_disable, |
| 291 | feature_config, |
| 292 | n_feature_config_bytes); |
| 293 | } |
| 294 | |
Dave Barach | 525c9d0 | 2018-05-26 10:48:55 -0400 | [diff] [blame] | 295 | static int |
| 296 | feature_cmp (void *a1, void *a2) |
| 297 | { |
| 298 | vnet_feature_registration_t *reg1 = a1; |
| 299 | vnet_feature_registration_t *reg2 = a2; |
| 300 | |
| 301 | return (int) reg1->feature_index - reg2->feature_index; |
| 302 | } |
Damjan Marion | 2231150 | 2016-10-28 20:30:15 +0200 | [diff] [blame] | 303 | |
| 304 | /** Display the set of available driver features. |
| 305 | Useful for verifying that expected features are present |
| 306 | */ |
| 307 | |
| 308 | static clib_error_t * |
| 309 | show_features_command_fn (vlib_main_t * vm, |
| 310 | unformat_input_t * input, vlib_cli_command_t * cmd) |
| 311 | { |
| 312 | vnet_feature_main_t *fm = &feature_main; |
| 313 | vnet_feature_arc_registration_t *areg; |
| 314 | vnet_feature_registration_t *freg; |
Dave Barach | 525c9d0 | 2018-05-26 10:48:55 -0400 | [diff] [blame] | 315 | vnet_feature_registration_t *feature_regs = 0; |
| 316 | int verbose = 0; |
| 317 | |
| 318 | if (unformat (input, "verbose")) |
| 319 | verbose = 1; |
Damjan Marion | 2231150 | 2016-10-28 20:30:15 +0200 | [diff] [blame] | 320 | |
| 321 | vlib_cli_output (vm, "Available feature paths"); |
| 322 | |
| 323 | areg = fm->next_arc; |
| 324 | while (areg) |
| 325 | { |
Dave Barach | 525c9d0 | 2018-05-26 10:48:55 -0400 | [diff] [blame] | 326 | if (verbose) |
| 327 | vlib_cli_output (vm, "[%2d] %s:", areg->feature_arc_index, |
| 328 | areg->arc_name); |
| 329 | else |
| 330 | vlib_cli_output (vm, "%s:", areg->arc_name); |
| 331 | |
Damjan Marion | 96b41f7 | 2016-11-10 18:01:42 +0100 | [diff] [blame] | 332 | freg = fm->next_feature_by_arc[areg->feature_arc_index]; |
| 333 | while (freg) |
| 334 | { |
Dave Barach | 525c9d0 | 2018-05-26 10:48:55 -0400 | [diff] [blame] | 335 | vec_add1 (feature_regs, freg[0]); |
Damjan Marion | 13adc3d | 2018-04-09 20:59:53 +0200 | [diff] [blame] | 336 | freg = freg->next_in_arc; |
Damjan Marion | 96b41f7 | 2016-11-10 18:01:42 +0100 | [diff] [blame] | 337 | } |
Damjan Marion | 2231150 | 2016-10-28 20:30:15 +0200 | [diff] [blame] | 338 | |
Dave Barach | 525c9d0 | 2018-05-26 10:48:55 -0400 | [diff] [blame] | 339 | vec_sort_with_function (feature_regs, feature_cmp); |
Damjan Marion | 2231150 | 2016-10-28 20:30:15 +0200 | [diff] [blame] | 340 | |
Dave Barach | 525c9d0 | 2018-05-26 10:48:55 -0400 | [diff] [blame] | 341 | vec_foreach (freg, feature_regs) |
| 342 | { |
| 343 | if (verbose) |
| 344 | vlib_cli_output (vm, " [%2d]: %s\n", freg->feature_index, |
| 345 | freg->node_name); |
| 346 | else |
| 347 | vlib_cli_output (vm, " %s\n", freg->node_name); |
| 348 | } |
| 349 | vec_reset_length (feature_regs); |
Damjan Marion | 2231150 | 2016-10-28 20:30:15 +0200 | [diff] [blame] | 350 | /* next */ |
| 351 | areg = areg->next; |
| 352 | } |
Dave Barach | 525c9d0 | 2018-05-26 10:48:55 -0400 | [diff] [blame] | 353 | vec_free (feature_regs); |
Damjan Marion | 2231150 | 2016-10-28 20:30:15 +0200 | [diff] [blame] | 354 | |
| 355 | return 0; |
| 356 | } |
| 357 | |
| 358 | /*? |
| 359 | * Display the set of available driver features |
| 360 | * |
| 361 | * @cliexpar |
| 362 | * Example: |
Dave Barach | 525c9d0 | 2018-05-26 10:48:55 -0400 | [diff] [blame] | 363 | * @cliexcmd{show features [verbose]} |
Damjan Marion | 2231150 | 2016-10-28 20:30:15 +0200 | [diff] [blame] | 364 | * @cliexend |
| 365 | * @endparblock |
| 366 | ?*/ |
| 367 | /* *INDENT-OFF* */ |
| 368 | VLIB_CLI_COMMAND (show_features_command, static) = { |
| 369 | .path = "show features", |
| 370 | .short_help = "show features", |
| 371 | .function = show_features_command_fn, |
| 372 | }; |
| 373 | /* *INDENT-ON* */ |
| 374 | |
| 375 | /** Display the set of driver features configured on a specific interface |
| 376 | * Called by "show interface" handler |
| 377 | */ |
| 378 | |
| 379 | void |
Dave Barach | 525c9d0 | 2018-05-26 10:48:55 -0400 | [diff] [blame] | 380 | vnet_interface_features_show (vlib_main_t * vm, u32 sw_if_index, int verbose) |
Damjan Marion | 2231150 | 2016-10-28 20:30:15 +0200 | [diff] [blame] | 381 | { |
| 382 | vnet_feature_main_t *fm = &feature_main; |
| 383 | u32 node_index, current_config_index; |
| 384 | u16 feature_arc; |
| 385 | vnet_feature_config_main_t *cm = fm->feature_config_mains; |
| 386 | vnet_feature_arc_registration_t *areg; |
| 387 | vnet_config_main_t *vcm; |
| 388 | vnet_config_t *cfg; |
| 389 | u32 cfg_index; |
| 390 | vnet_config_feature_t *feat; |
| 391 | vlib_node_t *n; |
| 392 | int i; |
| 393 | |
Dave Barach | 525c9d0 | 2018-05-26 10:48:55 -0400 | [diff] [blame] | 394 | vlib_cli_output (vm, "Feature paths configured on %U...", |
Damjan Marion | 2231150 | 2016-10-28 20:30:15 +0200 | [diff] [blame] | 395 | format_vnet_sw_if_index_name, |
| 396 | vnet_get_main (), sw_if_index); |
| 397 | |
| 398 | areg = fm->next_arc; |
| 399 | while (areg) |
| 400 | { |
| 401 | feature_arc = areg->feature_arc_index; |
| 402 | vcm = &(cm[feature_arc].config_main); |
| 403 | |
| 404 | vlib_cli_output (vm, "\n%s:", areg->arc_name); |
| 405 | areg = areg->next; |
| 406 | |
| 407 | if (NULL == cm[feature_arc].config_index_by_sw_if_index || |
Damjan Marion | 87cd119 | 2016-11-04 11:00:27 +0100 | [diff] [blame] | 408 | vec_len (cm[feature_arc].config_index_by_sw_if_index) <= |
| 409 | sw_if_index) |
Damjan Marion | 2231150 | 2016-10-28 20:30:15 +0200 | [diff] [blame] | 410 | { |
| 411 | vlib_cli_output (vm, " none configured"); |
| 412 | continue; |
| 413 | } |
| 414 | |
| 415 | current_config_index = |
| 416 | vec_elt (cm[feature_arc].config_index_by_sw_if_index, sw_if_index); |
| 417 | |
| 418 | if (current_config_index == ~0) |
| 419 | { |
| 420 | vlib_cli_output (vm, " none configured"); |
| 421 | continue; |
| 422 | } |
| 423 | |
| 424 | ASSERT (current_config_index |
| 425 | < vec_len (vcm->config_pool_index_by_user_index)); |
| 426 | |
| 427 | cfg_index = vcm->config_pool_index_by_user_index[current_config_index]; |
| 428 | cfg = pool_elt_at_index (vcm->config_pool, cfg_index); |
| 429 | |
| 430 | for (i = 0; i < vec_len (cfg->features); i++) |
| 431 | { |
| 432 | feat = cfg->features + i; |
| 433 | node_index = feat->node_index; |
| 434 | n = vlib_get_node (vm, node_index); |
Dave Barach | 525c9d0 | 2018-05-26 10:48:55 -0400 | [diff] [blame] | 435 | if (verbose) |
| 436 | vlib_cli_output (vm, " [%2d] %v", feat->feature_index, n->name); |
| 437 | else |
| 438 | vlib_cli_output (vm, " %v", n->name); |
Damjan Marion | 2231150 | 2016-10-28 20:30:15 +0200 | [diff] [blame] | 439 | } |
| 440 | } |
| 441 | } |
| 442 | |
Pavel Kotucek | 7490a75 | 2016-11-15 09:19:11 +0100 | [diff] [blame] | 443 | static clib_error_t * |
| 444 | set_interface_features_command_fn (vlib_main_t * vm, |
| 445 | unformat_input_t * input, |
| 446 | vlib_cli_command_t * cmd) |
| 447 | { |
| 448 | vnet_main_t *vnm = vnet_get_main (); |
| 449 | unformat_input_t _line_input, *line_input = &_line_input; |
| 450 | clib_error_t *error = 0; |
| 451 | |
| 452 | u8 *arc_name = 0; |
| 453 | u8 *feature_name = 0; |
| 454 | u32 sw_if_index = ~0; |
| 455 | u8 enable = 1; |
| 456 | |
| 457 | /* Get a line of input. */ |
| 458 | if (!unformat_user (input, unformat_line_input, line_input)) |
Paul Vinciguerra | 3b4a6a1 | 2018-10-02 19:02:16 -0700 | [diff] [blame] | 459 | return 0; |
Pavel Kotucek | 7490a75 | 2016-11-15 09:19:11 +0100 | [diff] [blame] | 460 | |
| 461 | while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT) |
| 462 | { |
| 463 | if (unformat |
| 464 | (line_input, "%U %v", unformat_vnet_sw_interface, vnm, &sw_if_index, |
| 465 | &feature_name)) |
| 466 | ; |
| 467 | else if (unformat (line_input, "arc %v", &arc_name)) |
| 468 | ; |
| 469 | else if (unformat (line_input, "disable")) |
| 470 | enable = 0; |
| 471 | else |
| 472 | { |
Dave Barach | 525c9d0 | 2018-05-26 10:48:55 -0400 | [diff] [blame] | 473 | if (feature_name && arc_name) |
| 474 | break; |
Pavel Kotucek | 7490a75 | 2016-11-15 09:19:11 +0100 | [diff] [blame] | 475 | error = unformat_parse_error (line_input); |
| 476 | goto done; |
| 477 | } |
| 478 | } |
| 479 | |
| 480 | if (sw_if_index == ~0) |
| 481 | { |
| 482 | error = clib_error_return (0, "Interface not specified..."); |
| 483 | goto done; |
| 484 | } |
| 485 | |
| 486 | vec_add1 (arc_name, 0); |
| 487 | vec_add1 (feature_name, 0); |
| 488 | |
| 489 | vnet_feature_registration_t *reg; |
| 490 | reg = |
| 491 | vnet_get_feature_reg ((const char *) arc_name, |
| 492 | (const char *) feature_name); |
| 493 | if (reg == 0) |
| 494 | { |
| 495 | error = clib_error_return (0, "Unknown feature..."); |
| 496 | goto done; |
| 497 | } |
| 498 | if (reg->enable_disable_cb) |
| 499 | error = reg->enable_disable_cb (sw_if_index, enable); |
| 500 | if (!error) |
| 501 | vnet_feature_enable_disable ((const char *) arc_name, |
| 502 | (const char *) feature_name, sw_if_index, |
| 503 | enable, 0, 0); |
| 504 | |
| 505 | done: |
| 506 | vec_free (feature_name); |
| 507 | vec_free (arc_name); |
Billy McFall | 614c131 | 2017-03-01 17:01:06 -0500 | [diff] [blame] | 508 | unformat_free (line_input); |
Pavel Kotucek | 7490a75 | 2016-11-15 09:19:11 +0100 | [diff] [blame] | 509 | return error; |
| 510 | } |
| 511 | |
| 512 | /*? |
| 513 | * Set feature for given interface |
| 514 | * |
| 515 | * @cliexpar |
| 516 | * Example: |
| 517 | * @cliexcmd{set interface feature GigabitEthernet2/0/0 ip4_flow_classify arc ip4_unicast} |
| 518 | * @cliexend |
| 519 | * @endparblock |
| 520 | ?*/ |
| 521 | /* *INDENT-OFF* */ |
| 522 | VLIB_CLI_COMMAND (set_interface_feature_command, static) = { |
| 523 | .path = "set interface feature", |
Pierre Pfister | 1bfd372 | 2017-09-18 11:40:32 +0200 | [diff] [blame] | 524 | .short_help = "set interface feature <intfc> <feature_name> arc <arc_name> " |
| 525 | "[disable]", |
Pavel Kotucek | 7490a75 | 2016-11-15 09:19:11 +0100 | [diff] [blame] | 526 | .function = set_interface_features_command_fn, |
| 527 | }; |
| 528 | /* *INDENT-ON* */ |
| 529 | |
Damjan Marion | 2231150 | 2016-10-28 20:30:15 +0200 | [diff] [blame] | 530 | /* |
| 531 | * fd.io coding-style-patch-verification: ON |
| 532 | * |
| 533 | * Local Variables: |
| 534 | * eval: (c-set-style "gnu") |
| 535 | * End: |
| 536 | */ |