blob: 1750612783b71ed4a782169b8ba157fbd7136888 [file] [log] [blame]
Damjan Marion22311502016-10-28 20:30:15 +02001/*
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 Rannsc8972fe2019-12-02 23:10:08 +000017
Damjan Marion22311502016-10-28 20:30:15 +020018vnet_feature_main_t feature_main;
19
Neale Rannsc8972fe2019-12-02 23:10:08 +000020typedef struct vnet_feature_upd_registration_t_
21{
22 vnet_feature_update_cb_t cb;
23 void *data;
24} vnet_feature_upd_registration_t;
25
26static vnet_feature_upd_registration_t *regs;
27
28void
29vnet_feature_register (vnet_feature_update_cb_t cb, void *data)
30{
31 vnet_feature_upd_registration_t *reg;
32
33 vec_add2 (regs, reg, 1);
34
35 reg->cb = cb;
36 reg->data = data;
37}
38
39static void
Benoît Ganne6178bda2020-11-04 10:02:03 +010040vnet_feature_reg_invoke (u32 sw_if_index, u8 arc_index, u8 is_enable)
Neale Rannsc8972fe2019-12-02 23:10:08 +000041{
42 vnet_feature_upd_registration_t *reg;
43
44 vec_foreach (reg, regs)
45 reg->cb (sw_if_index, arc_index, is_enable, reg->data);
46}
47
48
Damjan Marion22311502016-10-28 20:30:15 +020049static clib_error_t *
50vnet_feature_init (vlib_main_t * vm)
51{
52 vnet_feature_main_t *fm = &feature_main;
53 vnet_feature_registration_t *freg;
54 vnet_feature_arc_registration_t *areg;
Dave Barach2dd192b2018-11-19 09:31:48 -050055 vnet_feature_constraint_registration_t *creg;
Damjan Marion22311502016-10-28 20:30:15 +020056 u32 arc_index = 0;
57
58 fm->arc_index_by_name = hash_create_string (0, sizeof (uword));
59 areg = fm->next_arc;
60
61 /* process feature arc registrations */
62 while (areg)
63 {
64 char *s;
65 int i = 0;
66 areg->feature_arc_index = arc_index;
Damjan Marion8b3191e2016-11-09 19:54:20 +010067 if (areg->arc_index_ptr)
68 *areg->arc_index_ptr = arc_index;
Damjan Marion22311502016-10-28 20:30:15 +020069 hash_set_mem (fm->arc_index_by_name, areg->arc_name,
70 pointer_to_uword (areg));
71
72 /* process start nodes */
73 while ((s = areg->start_nodes[i]))
74 {
Damjan Marion22311502016-10-28 20:30:15 +020075 i++;
76 }
77 areg->n_start_nodes = i;
78
79 /* next */
80 areg = areg->next;
81 arc_index++;
82 }
83
84 vec_validate (fm->next_feature_by_arc, arc_index - 1);
85 vec_validate (fm->feature_nodes, arc_index - 1);
86 vec_validate (fm->feature_config_mains, arc_index - 1);
87 vec_validate (fm->next_feature_by_name, arc_index - 1);
88 vec_validate (fm->sw_if_index_has_features, arc_index - 1);
89 vec_validate (fm->feature_count_by_sw_if_index, arc_index - 1);
Dave Barach2dd192b2018-11-19 09:31:48 -050090 vec_validate (fm->next_constraint_by_arc, arc_index - 1);
Damjan Marion22311502016-10-28 20:30:15 +020091
92 freg = fm->next_feature;
93 while (freg)
94 {
Damjan Marion96b41f72016-11-10 18:01:42 +010095 vnet_feature_registration_t *next;
Damjan Marion22311502016-10-28 20:30:15 +020096 uword *p = hash_get_mem (fm->arc_index_by_name, freg->arc_name);
97 if (p == 0)
Florin Coras3d2a9142017-08-16 21:23:44 -070098 {
99 /* Don't start vpp with broken features arcs */
100 clib_warning ("Unknown feature arc '%s'", freg->arc_name);
101 os_exit (1);
102 }
Damjan Marion22311502016-10-28 20:30:15 +0200103
104 areg = uword_to_pointer (p[0], vnet_feature_arc_registration_t *);
105 arc_index = areg->feature_arc_index;
106
Damjan Marion96b41f72016-11-10 18:01:42 +0100107 next = freg->next;
Damjan Marion13adc3d2018-04-09 20:59:53 +0200108 freg->next_in_arc = fm->next_feature_by_arc[arc_index];
Damjan Marion96b41f72016-11-10 18:01:42 +0100109 fm->next_feature_by_arc[arc_index] = freg;
Damjan Marion22311502016-10-28 20:30:15 +0200110
111 /* next */
Damjan Marion96b41f72016-11-10 18:01:42 +0100112 freg = next;
Damjan Marion22311502016-10-28 20:30:15 +0200113 }
114
Dave Barach2dd192b2018-11-19 09:31:48 -0500115 /* Move bulk constraints to the constraint by arc lists */
116 creg = fm->next_constraint;
117 while (creg)
118 {
119 vnet_feature_constraint_registration_t *next;
120 uword *p = hash_get_mem (fm->arc_index_by_name, creg->arc_name);
121 if (p == 0)
122 {
123 /* Don't start vpp with broken features arcs */
124 clib_warning ("Unknown feature arc '%s'", creg->arc_name);
125 os_exit (1);
126 }
127
128 areg = uword_to_pointer (p[0], vnet_feature_arc_registration_t *);
129 arc_index = areg->feature_arc_index;
130
131 next = creg->next;
132 creg->next_in_arc = fm->next_constraint_by_arc[arc_index];
133 fm->next_constraint_by_arc[arc_index] = creg;
134
135 /* next */
136 creg = next;
137 }
138
139
Damjan Marion96b41f72016-11-10 18:01:42 +0100140 areg = fm->next_arc;
Damjan Marion22311502016-10-28 20:30:15 +0200141 while (areg)
142 {
143 clib_error_t *error;
144 vnet_feature_config_main_t *cm;
145 vnet_config_main_t *vcm;
Dave Baracha25def72018-11-26 11:04:45 -0500146 char **features_in_order, *last_feature;
Damjan Marion22311502016-10-28 20:30:15 +0200147
148 arc_index = areg->feature_arc_index;
149 cm = &fm->feature_config_mains[arc_index];
150 vcm = &cm->config_main;
Dave Barach2dd192b2018-11-19 09:31:48 -0500151 if ((error = vnet_feature_arc_init
152 (vm, vcm, areg->start_nodes, areg->n_start_nodes,
Dave Barach5f9f3c82019-11-22 17:42:58 -0500153 areg->last_in_arc,
Dave Barach2dd192b2018-11-19 09:31:48 -0500154 fm->next_feature_by_arc[arc_index],
155 fm->next_constraint_by_arc[arc_index],
156 &fm->feature_nodes[arc_index])))
Damjan Marion22311502016-10-28 20:30:15 +0200157 {
Florin Coras3d2a9142017-08-16 21:23:44 -0700158 clib_error_report (error);
159 os_exit (1);
Damjan Marion22311502016-10-28 20:30:15 +0200160 }
161
Dave Baracha25def72018-11-26 11:04:45 -0500162 features_in_order = fm->feature_nodes[arc_index];
163
Paul Vinciguerra8feeaff2019-03-27 11:25:48 -0700164 /* If specified, verify that the last node in the arc is actually last */
Dave Baracha25def72018-11-26 11:04:45 -0500165 if (areg->last_in_arc && vec_len (features_in_order) > 0)
166 {
167 last_feature = features_in_order[vec_len (features_in_order) - 1];
168 if (strncmp (areg->last_in_arc, last_feature,
169 strlen (areg->last_in_arc)))
170 clib_warning
171 ("WARNING: %s arc: last node is %s, but expected %s!",
172 areg->arc_name, last_feature, areg->last_in_arc);
173 }
174
Damjan Marion22311502016-10-28 20:30:15 +0200175 fm->next_feature_by_name[arc_index] =
176 hash_create_string (0, sizeof (uword));
177 freg = fm->next_feature_by_arc[arc_index];
178
179 while (freg)
180 {
181 hash_set_mem (fm->next_feature_by_name[arc_index],
182 freg->node_name, pointer_to_uword (freg));
Damjan Marion13adc3d2018-04-09 20:59:53 +0200183 freg = freg->next_in_arc;
Damjan Marion22311502016-10-28 20:30:15 +0200184 }
185
186 /* next */
187 areg = areg->next;
188 arc_index++;
189 }
190
191 return 0;
192}
193
194VLIB_INIT_FUNCTION (vnet_feature_init);
195
Damjan Marion87cd1192016-11-04 11:00:27 +0100196u8
197vnet_get_feature_arc_index (const char *s)
Damjan Marion22311502016-10-28 20:30:15 +0200198{
199 vnet_feature_main_t *fm = &feature_main;
200 vnet_feature_arc_registration_t *reg;
201 uword *p;
202
203 p = hash_get_mem (fm->arc_index_by_name, s);
204 if (p == 0)
205 return ~0;
206
207 reg = uword_to_pointer (p[0], vnet_feature_arc_registration_t *);
208 return reg->feature_arc_index;
209}
210
Pavel Kotucek7490a752016-11-15 09:19:11 +0100211vnet_feature_registration_t *
212vnet_get_feature_reg (const char *arc_name, const char *node_name)
213{
214 u8 arc_index;
215
216 arc_index = vnet_get_feature_arc_index (arc_name);
217 if (arc_index == (u8) ~ 0)
218 return 0;
219
220 vnet_feature_main_t *fm = &feature_main;
221 vnet_feature_registration_t *reg;
222 uword *p;
223
224 p = hash_get_mem (fm->next_feature_by_name[arc_index], node_name);
225 if (p == 0)
226 return 0;
227
228 reg = uword_to_pointer (p[0], vnet_feature_registration_t *);
229 return reg;
230}
231
Damjan Marion22311502016-10-28 20:30:15 +0200232u32
Damjan Marion87cd1192016-11-04 11:00:27 +0100233vnet_get_feature_index (u8 arc, const char *s)
Damjan Marion22311502016-10-28 20:30:15 +0200234{
235 vnet_feature_main_t *fm = &feature_main;
236 vnet_feature_registration_t *reg;
237 uword *p;
238
Damjan Marion21da6ce2016-11-28 18:21:59 +0100239 if (s == 0)
240 return ~0;
241
Damjan Marion22311502016-10-28 20:30:15 +0200242 p = hash_get_mem (fm->next_feature_by_name[arc], s);
243 if (p == 0)
244 return ~0;
245
246 reg = uword_to_pointer (p[0], vnet_feature_registration_t *);
Damjan Marion8b3191e2016-11-09 19:54:20 +0100247 return reg->feature_index;
Damjan Marion22311502016-10-28 20:30:15 +0200248}
249
Damjan Marion96b41f72016-11-10 18:01:42 +0100250int
Damjan Marion8b3191e2016-11-09 19:54:20 +0100251vnet_feature_enable_disable_with_index (u8 arc_index, u32 feature_index,
252 u32 sw_if_index, int enable_disable,
253 void *feature_config,
254 u32 n_feature_config_bytes)
Damjan Marion22311502016-10-28 20:30:15 +0200255{
256 vnet_feature_main_t *fm = &feature_main;
257 vnet_feature_config_main_t *cm;
Damjan Marion21da6ce2016-11-28 18:21:59 +0100258 i16 feature_count;
Matthew Smithc3267ed2018-05-15 15:51:30 -0500259 u32 ci;
Damjan Marion22311502016-10-28 20:30:15 +0200260
Damjan Marion05bb1dd2016-11-08 21:28:22 +0100261 if (arc_index == (u8) ~ 0)
Damjan Marion96b41f72016-11-10 18:01:42 +0100262 return VNET_API_ERROR_INVALID_VALUE;
Damjan Marion22311502016-10-28 20:30:15 +0200263
Damjan Marion22311502016-10-28 20:30:15 +0200264 if (feature_index == ~0)
Damjan Marion96b41f72016-11-10 18:01:42 +0100265 return VNET_API_ERROR_INVALID_VALUE_2;
Damjan Marion8b3191e2016-11-09 19:54:20 +0100266
267 cm = &fm->feature_config_mains[arc_index];
268 vec_validate_init_empty (cm->config_index_by_sw_if_index, sw_if_index, ~0);
Matthew Smithc3267ed2018-05-15 15:51:30 -0500269 ci = cm->config_index_by_sw_if_index[sw_if_index];
Damjan Marion22311502016-10-28 20:30:15 +0200270
Pavel Kotucekf6e3dc42016-11-04 09:58:01 +0100271 vec_validate (fm->feature_count_by_sw_if_index[arc_index], sw_if_index);
Damjan Marion21da6ce2016-11-28 18:21:59 +0100272 feature_count = fm->feature_count_by_sw_if_index[arc_index][sw_if_index];
273
274 if (!enable_disable && feature_count < 1)
Pavel Kotucekf6e3dc42016-11-04 09:58:01 +0100275 return 0;
276
Damjan Marion22311502016-10-28 20:30:15 +0200277 ci = (enable_disable
278 ? vnet_config_add_feature
279 : vnet_config_del_feature)
280 (vlib_get_main (), &cm->config_main, ci, feature_index, feature_config,
281 n_feature_config_bytes);
Matthew Smithc3267ed2018-05-15 15:51:30 -0500282 if (ci == ~0)
Klement Sekera3ecc2212018-03-27 10:34:43 +0200283 {
284 return 0;
285 }
Damjan Marion22311502016-10-28 20:30:15 +0200286 cm->config_index_by_sw_if_index[sw_if_index] = ci;
287
Damjan Marion21da6ce2016-11-28 18:21:59 +0100288 /* update feature count */
289 enable_disable = (enable_disable > 0);
290 feature_count += enable_disable ? 1 : -1;
Damjan Marion21da6ce2016-11-28 18:21:59 +0100291 ASSERT (feature_count >= 0);
Damjan Marion22311502016-10-28 20:30:15 +0200292
Damjan Marion21da6ce2016-11-28 18:21:59 +0100293 fm->sw_if_index_has_features[arc_index] =
294 clib_bitmap_set (fm->sw_if_index_has_features[arc_index], sw_if_index,
295 (feature_count > 0));
Neale Ranns6fdcc3d2021-10-08 07:30:47 +0000296 fm->feature_count_by_sw_if_index[arc_index][sw_if_index] = feature_count;
297
Benoît Ganne6178bda2020-11-04 10:02:03 +0100298 vnet_feature_reg_invoke (sw_if_index, arc_index, (feature_count > 0));
Damjan Marion21da6ce2016-11-28 18:21:59 +0100299
Damjan Marion96b41f72016-11-10 18:01:42 +0100300 return 0;
Damjan Marion22311502016-10-28 20:30:15 +0200301}
302
Damjan Marion8b3191e2016-11-09 19:54:20 +0100303int
304vnet_feature_enable_disable (const char *arc_name, const char *node_name,
305 u32 sw_if_index, int enable_disable,
306 void *feature_config, u32 n_feature_config_bytes)
307{
308 u32 feature_index;
309 u8 arc_index;
310
311 arc_index = vnet_get_feature_arc_index (arc_name);
312
313 if (arc_index == (u8) ~ 0)
314 return VNET_API_ERROR_INVALID_VALUE;
315
316 feature_index = vnet_get_feature_index (arc_index, node_name);
317
318 return vnet_feature_enable_disable_with_index (arc_index, feature_index,
319 sw_if_index, enable_disable,
320 feature_config,
321 n_feature_config_bytes);
322}
323
Dave Barachcaebbcf2020-07-29 18:07:02 -0400324int
325vnet_feature_is_enabled (const char *arc_name, const char *feature_node_name,
326 u32 sw_if_index)
327{
328 vnet_feature_main_t *fm = &feature_main;
329 vnet_feature_config_main_t *cm;
330 vnet_config_main_t *ccm;
331 vnet_config_t *current_config;
332 vnet_config_feature_t *f;
333 u32 feature_index;
334 u32 ci;
335 u8 arc_index;
336 u32 *p;
337
338 arc_index = vnet_get_feature_arc_index (arc_name);
339
340 /* No such arc? */
341 if (arc_index == (u8) ~ 0)
342 return VNET_API_ERROR_INVALID_VALUE;
343
344 feature_index = vnet_get_feature_index (arc_index, feature_node_name);
345
346 /* No such feature? */
347 if (feature_index == (u32) ~ 0)
348 return VNET_API_ERROR_INVALID_VALUE_2;
349
350 cm = &fm->feature_config_mains[arc_index];
351
352 if (sw_if_index < vec_len (cm->config_index_by_sw_if_index))
353 ci = vec_elt (cm->config_index_by_sw_if_index, sw_if_index);
354 else
355 /* sw_if_index out of range, certainly not enabled */
356 return VNET_API_ERROR_INVALID_SW_IF_INDEX;
357
358 /* No features were ever configured? */
359 if (ci == ~0)
360 return 0;
361
362 ccm = &cm->config_main;
363
364 p = heap_elt_at_index (ccm->config_string_heap, ci);
365
366 current_config = pool_elt_at_index (ccm->config_pool, p[-1]);
367
368 /* Find feature with the required index */
369 vec_foreach (f, current_config->features)
370 {
371 if (f->feature_index == feature_index)
372 /* Feature was enabled */
373 return 1;
374 }
375 /* feature wasn't enabled */
376 return 0;
377}
378
Neale Ranns6fdcc3d2021-10-08 07:30:47 +0000379u32
380vnet_feature_get_end_node (u8 arc_index, u32 sw_if_index)
381{
382 vnet_feature_main_t *fm = &feature_main;
383 vnet_feature_config_main_t *cm;
384 u32 ci;
385
386 if (arc_index == (u8) ~0)
387 return VNET_API_ERROR_INVALID_VALUE;
388
389 cm = &fm->feature_config_mains[arc_index];
390 vec_validate_init_empty (cm->config_index_by_sw_if_index, sw_if_index, ~0);
391 ci = cm->config_index_by_sw_if_index[sw_if_index];
392
393 return (vnet_config_get_end_node (vlib_get_main (), &cm->config_main, ci));
394}
395
396u32
397vnet_feature_reset_end_node (u8 arc_index, u32 sw_if_index)
398{
399 vnet_feature_main_t *fm = &feature_main;
400 vnet_feature_config_main_t *cm;
401 u32 ci;
402
403 cm = &fm->feature_config_mains[arc_index];
404 vec_validate_init_empty (cm->config_index_by_sw_if_index, sw_if_index, ~0);
405 ci = cm->config_index_by_sw_if_index[sw_if_index];
406
407 ci = vnet_config_reset_end_node (vlib_get_main (), &cm->config_main, ci);
408
409 if (ci != ~0)
410 cm->config_index_by_sw_if_index[sw_if_index] = ci;
411
412 i16 feature_count;
413
414 if (NULL == fm->feature_count_by_sw_if_index ||
415 vec_len (fm->feature_count_by_sw_if_index) <= arc_index ||
416 vec_len (fm->feature_count_by_sw_if_index[arc_index]) <= sw_if_index)
417 feature_count = 0;
418 else
419 feature_count = fm->feature_count_by_sw_if_index[arc_index][sw_if_index];
420
421 vnet_feature_reg_invoke (sw_if_index, arc_index, (feature_count > 0));
422
423 return ci;
424}
Dave Barachcaebbcf2020-07-29 18:07:02 -0400425
Neale Ranns5d0136f2020-05-12 08:51:02 +0000426u32
Neale Ranns4ec36c52020-03-31 09:21:29 -0400427vnet_feature_modify_end_node (u8 arc_index,
428 u32 sw_if_index, u32 end_node_index)
429{
430 vnet_feature_main_t *fm = &feature_main;
431 vnet_feature_config_main_t *cm;
432 u32 ci;
433
434 if (arc_index == (u8) ~ 0)
435 return VNET_API_ERROR_INVALID_VALUE;
436
437 if (end_node_index == ~0)
438 return VNET_API_ERROR_INVALID_VALUE_2;
439
440 cm = &fm->feature_config_mains[arc_index];
441 vec_validate_init_empty (cm->config_index_by_sw_if_index, sw_if_index, ~0);
442 ci = cm->config_index_by_sw_if_index[sw_if_index];
443
444 ci = vnet_config_modify_end_node (vlib_get_main (), &cm->config_main,
445 ci, end_node_index);
446
Neale Ranns5d0136f2020-05-12 08:51:02 +0000447 if (ci != ~0)
448 cm->config_index_by_sw_if_index[sw_if_index] = ci;
Neale Ranns4ec36c52020-03-31 09:21:29 -0400449
Neale Ranns6fdcc3d2021-10-08 07:30:47 +0000450 i16 feature_count;
451
452 if (NULL == fm->feature_count_by_sw_if_index ||
453 vec_len (fm->feature_count_by_sw_if_index) <= arc_index ||
454 vec_len (fm->feature_count_by_sw_if_index[arc_index]) <= sw_if_index)
455 feature_count = 0;
456 else
457 feature_count = fm->feature_count_by_sw_if_index[arc_index][sw_if_index];
458
459 vnet_feature_reg_invoke (sw_if_index, arc_index, (feature_count > 0));
460
Neale Ranns5d0136f2020-05-12 08:51:02 +0000461 return ci;
Neale Ranns4ec36c52020-03-31 09:21:29 -0400462}
463
Dave Barach525c9d02018-05-26 10:48:55 -0400464static int
465feature_cmp (void *a1, void *a2)
466{
467 vnet_feature_registration_t *reg1 = a1;
468 vnet_feature_registration_t *reg2 = a2;
469
470 return (int) reg1->feature_index - reg2->feature_index;
471}
Damjan Marion22311502016-10-28 20:30:15 +0200472
473/** Display the set of available driver features.
474 Useful for verifying that expected features are present
475*/
476
477static clib_error_t *
478show_features_command_fn (vlib_main_t * vm,
479 unformat_input_t * input, vlib_cli_command_t * cmd)
480{
481 vnet_feature_main_t *fm = &feature_main;
482 vnet_feature_arc_registration_t *areg;
483 vnet_feature_registration_t *freg;
Dave Barach525c9d02018-05-26 10:48:55 -0400484 vnet_feature_registration_t *feature_regs = 0;
485 int verbose = 0;
486
487 if (unformat (input, "verbose"))
488 verbose = 1;
Damjan Marion22311502016-10-28 20:30:15 +0200489
490 vlib_cli_output (vm, "Available feature paths");
491
492 areg = fm->next_arc;
493 while (areg)
494 {
Dave Barach525c9d02018-05-26 10:48:55 -0400495 if (verbose)
496 vlib_cli_output (vm, "[%2d] %s:", areg->feature_arc_index,
497 areg->arc_name);
498 else
499 vlib_cli_output (vm, "%s:", areg->arc_name);
500
Damjan Marion96b41f72016-11-10 18:01:42 +0100501 freg = fm->next_feature_by_arc[areg->feature_arc_index];
502 while (freg)
503 {
Dave Barach525c9d02018-05-26 10:48:55 -0400504 vec_add1 (feature_regs, freg[0]);
Damjan Marion13adc3d2018-04-09 20:59:53 +0200505 freg = freg->next_in_arc;
Damjan Marion96b41f72016-11-10 18:01:42 +0100506 }
Damjan Marion22311502016-10-28 20:30:15 +0200507
Dave Barach525c9d02018-05-26 10:48:55 -0400508 vec_sort_with_function (feature_regs, feature_cmp);
Damjan Marion22311502016-10-28 20:30:15 +0200509
Dave Barach525c9d02018-05-26 10:48:55 -0400510 vec_foreach (freg, feature_regs)
511 {
512 if (verbose)
513 vlib_cli_output (vm, " [%2d]: %s\n", freg->feature_index,
514 freg->node_name);
515 else
516 vlib_cli_output (vm, " %s\n", freg->node_name);
517 }
518 vec_reset_length (feature_regs);
Damjan Marion22311502016-10-28 20:30:15 +0200519 /* next */
520 areg = areg->next;
521 }
Dave Barach525c9d02018-05-26 10:48:55 -0400522 vec_free (feature_regs);
Damjan Marion22311502016-10-28 20:30:15 +0200523
524 return 0;
525}
526
527/*?
528 * Display the set of available driver features
529 *
530 * @cliexpar
531 * Example:
Dave Barach525c9d02018-05-26 10:48:55 -0400532 * @cliexcmd{show features [verbose]}
Damjan Marion22311502016-10-28 20:30:15 +0200533 * @cliexend
534 * @endparblock
535?*/
536/* *INDENT-OFF* */
537VLIB_CLI_COMMAND (show_features_command, static) = {
538 .path = "show features",
Paul Vinciguerrabaa17102019-11-06 15:41:45 -0500539 .short_help = "show features [verbose]",
Damjan Marion22311502016-10-28 20:30:15 +0200540 .function = show_features_command_fn,
541};
542/* *INDENT-ON* */
543
544/** Display the set of driver features configured on a specific interface
545 * Called by "show interface" handler
546 */
547
548void
Dave Barach525c9d02018-05-26 10:48:55 -0400549vnet_interface_features_show (vlib_main_t * vm, u32 sw_if_index, int verbose)
Damjan Marion22311502016-10-28 20:30:15 +0200550{
551 vnet_feature_main_t *fm = &feature_main;
552 u32 node_index, current_config_index;
553 u16 feature_arc;
554 vnet_feature_config_main_t *cm = fm->feature_config_mains;
555 vnet_feature_arc_registration_t *areg;
556 vnet_config_main_t *vcm;
557 vnet_config_t *cfg;
558 u32 cfg_index;
559 vnet_config_feature_t *feat;
560 vlib_node_t *n;
561 int i;
562
Dave Barach525c9d02018-05-26 10:48:55 -0400563 vlib_cli_output (vm, "Feature paths configured on %U...",
Damjan Marion22311502016-10-28 20:30:15 +0200564 format_vnet_sw_if_index_name,
565 vnet_get_main (), sw_if_index);
566
567 areg = fm->next_arc;
568 while (areg)
569 {
570 feature_arc = areg->feature_arc_index;
571 vcm = &(cm[feature_arc].config_main);
572
573 vlib_cli_output (vm, "\n%s:", areg->arc_name);
574 areg = areg->next;
575
Benoît Ganne6178bda2020-11-04 10:02:03 +0100576 if (!vnet_have_features (feature_arc, sw_if_index))
Damjan Marion22311502016-10-28 20:30:15 +0200577 {
578 vlib_cli_output (vm, " none configured");
579 continue;
580 }
581
582 current_config_index =
583 vec_elt (cm[feature_arc].config_index_by_sw_if_index, sw_if_index);
Benoît Ganne6178bda2020-11-04 10:02:03 +0100584 cfg_index =
585 vec_elt (vcm->config_pool_index_by_user_index, current_config_index);
Damjan Marion22311502016-10-28 20:30:15 +0200586 cfg = pool_elt_at_index (vcm->config_pool, cfg_index);
587
588 for (i = 0; i < vec_len (cfg->features); i++)
589 {
590 feat = cfg->features + i;
591 node_index = feat->node_index;
592 n = vlib_get_node (vm, node_index);
Dave Barach525c9d02018-05-26 10:48:55 -0400593 if (verbose)
594 vlib_cli_output (vm, " [%2d] %v", feat->feature_index, n->name);
595 else
596 vlib_cli_output (vm, " %v", n->name);
Damjan Marion22311502016-10-28 20:30:15 +0200597 }
Neale Ranns5d0136f2020-05-12 08:51:02 +0000598 if (verbose)
599 {
600 n =
601 vlib_get_node (vm,
602 vcm->end_node_indices_by_user_index
603 [current_config_index]);
604 vlib_cli_output (vm, " [end] %v", n->name);
605 }
Damjan Marion22311502016-10-28 20:30:15 +0200606 }
607}
608
Pavel Kotucek7490a752016-11-15 09:19:11 +0100609static clib_error_t *
610set_interface_features_command_fn (vlib_main_t * vm,
611 unformat_input_t * input,
612 vlib_cli_command_t * cmd)
613{
614 vnet_main_t *vnm = vnet_get_main ();
615 unformat_input_t _line_input, *line_input = &_line_input;
616 clib_error_t *error = 0;
617
618 u8 *arc_name = 0;
619 u8 *feature_name = 0;
620 u32 sw_if_index = ~0;
621 u8 enable = 1;
622
623 /* Get a line of input. */
624 if (!unformat_user (input, unformat_line_input, line_input))
Paul Vinciguerra3b4a6a12018-10-02 19:02:16 -0700625 return 0;
Pavel Kotucek7490a752016-11-15 09:19:11 +0100626
627 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
628 {
629 if (unformat
Paul Vinciguerraa4e2e7c2019-11-06 13:25:17 -0500630 (line_input, "%U %s arc %s", unformat_vnet_sw_interface, vnm,
631 &sw_if_index, &feature_name, &arc_name))
Pavel Kotucek7490a752016-11-15 09:19:11 +0100632 ;
633 else if (unformat (line_input, "disable"))
634 enable = 0;
635 else
636 {
637 error = unformat_parse_error (line_input);
638 goto done;
639 }
640 }
Paul Vinciguerraa4e2e7c2019-11-06 13:25:17 -0500641 if (!feature_name || !arc_name)
642 {
643 error = clib_error_return (0, "Both feature name and arc required...");
644 goto done;
645 }
Pavel Kotucek7490a752016-11-15 09:19:11 +0100646
647 if (sw_if_index == ~0)
648 {
649 error = clib_error_return (0, "Interface not specified...");
650 goto done;
651 }
652
653 vec_add1 (arc_name, 0);
654 vec_add1 (feature_name, 0);
655
Paul Vinciguerraa4e2e7c2019-11-06 13:25:17 -0500656 u8 arc_index;
657
658 arc_index = vnet_get_feature_arc_index ((const char *) arc_name);
659
660 if (arc_index == (u8) ~ 0)
661 {
662 error =
663 clib_error_return (0, "Unknown arc name (%s)... ",
664 (const char *) arc_name);
665 goto done;
666 }
667
Pavel Kotucek7490a752016-11-15 09:19:11 +0100668 vnet_feature_registration_t *reg;
669 reg =
670 vnet_get_feature_reg ((const char *) arc_name,
671 (const char *) feature_name);
672 if (reg == 0)
673 {
Paul Vinciguerraa4e2e7c2019-11-06 13:25:17 -0500674 error =
675 clib_error_return (0,
676 "Feature (%s) not registered to arc (%s)... See 'show features verbose' for valid feature/arc combinations. ",
677 feature_name, arc_name);
Pavel Kotucek7490a752016-11-15 09:19:11 +0100678 goto done;
679 }
680 if (reg->enable_disable_cb)
681 error = reg->enable_disable_cb (sw_if_index, enable);
682 if (!error)
683 vnet_feature_enable_disable ((const char *) arc_name,
684 (const char *) feature_name, sw_if_index,
685 enable, 0, 0);
686
687done:
688 vec_free (feature_name);
689 vec_free (arc_name);
Billy McFall614c1312017-03-01 17:01:06 -0500690 unformat_free (line_input);
Pavel Kotucek7490a752016-11-15 09:19:11 +0100691 return error;
692}
693
694/*?
695 * Set feature for given interface
696 *
697 * @cliexpar
698 * Example:
699 * @cliexcmd{set interface feature GigabitEthernet2/0/0 ip4_flow_classify arc ip4_unicast}
700 * @cliexend
701 * @endparblock
702?*/
703/* *INDENT-OFF* */
704VLIB_CLI_COMMAND (set_interface_feature_command, static) = {
705 .path = "set interface feature",
Pierre Pfister1bfd3722017-09-18 11:40:32 +0200706 .short_help = "set interface feature <intfc> <feature_name> arc <arc_name> "
707 "[disable]",
Pavel Kotucek7490a752016-11-15 09:19:11 +0100708 .function = set_interface_features_command_fn,
709};
710/* *INDENT-ON* */
711
Benoît Ganne6178bda2020-11-04 10:02:03 +0100712static clib_error_t *
713vnet_feature_add_del_sw_interface (vnet_main_t * vnm, u32 sw_if_index,
714 u32 is_add)
715{
716 vnet_feature_main_t *fm = &feature_main;
717 const vnet_feature_arc_registration_t *far;
718
719 if (is_add)
720 return 0;
721
722 /*
723 * remove all enabled features from an interface on deletion
724 */
725 for (far = fm->next_arc; far != 0; far = far->next)
726 {
727 const u8 arc_index = far->feature_arc_index;
728 vnet_feature_config_main_t *cm =
729 vec_elt_at_index (fm->feature_config_mains, arc_index);
730 const u32 ci =
731 vec_len (cm->config_index_by_sw_if_index) <=
732 sw_if_index ? ~0 : vec_elt (cm->config_index_by_sw_if_index,
733 sw_if_index);
734
735 if (~0 == ci)
736 continue;
737
738 fm->sw_if_index_has_features[arc_index] =
739 clib_bitmap_set (fm->sw_if_index_has_features[arc_index], sw_if_index,
740 0);
741
742 vnet_feature_reg_invoke (sw_if_index, arc_index, 0);
743
744 if (vec_len (fm->feature_count_by_sw_if_index[arc_index]) > sw_if_index)
745 vec_elt (fm->feature_count_by_sw_if_index[arc_index], sw_if_index) =
746 0;
747
748 vec_elt (cm->config_index_by_sw_if_index, sw_if_index) = ~0;
749 vnet_config_del (&cm->config_main, ci);
750 }
751
752 return 0;
753}
754
755VNET_SW_INTERFACE_ADD_DEL_FUNCTION_PRIO (vnet_feature_add_del_sw_interface,
756 VNET_ITF_FUNC_PRIORITY_HIGH);
757
Damjan Marion22311502016-10-28 20:30:15 +0200758/*
759 * fd.io coding-style-patch-verification: ON
760 *
761 * Local Variables:
762 * eval: (c-set-style "gnu")
763 * End:
764 */