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 | #ifndef included_features_h |
| 17 | #define included_features_h |
| 18 | |
| 19 | #include <vnet/vnet.h> |
Damjan Marion | 96b41f7 | 2016-11-10 18:01:42 +0100 | [diff] [blame] | 20 | #include <vnet/api_errno.h> |
Damjan Marion | 35af9e5 | 2017-03-06 12:02:50 +0100 | [diff] [blame] | 21 | #include <vnet/devices/devices.h> |
Damjan Marion | 2231150 | 2016-10-28 20:30:15 +0200 | [diff] [blame] | 22 | |
| 23 | /** feature registration object */ |
| 24 | typedef struct _vnet_feature_arc_registration |
| 25 | { |
| 26 | /** next registration in list of all registrations*/ |
| 27 | struct _vnet_feature_arc_registration *next; |
| 28 | /** Feature Arc name */ |
| 29 | char *arc_name; |
| 30 | /** Start nodes */ |
| 31 | char **start_nodes; |
| 32 | int n_start_nodes; |
Dave Barach | a25def7 | 2018-11-26 11:04:45 -0500 | [diff] [blame] | 33 | /** End of the arc (optional, for consistency-checking) */ |
| 34 | char *last_in_arc; |
Damjan Marion | 2231150 | 2016-10-28 20:30:15 +0200 | [diff] [blame] | 35 | /* Feature arc index, assigned by init function */ |
Damjan Marion | 87cd119 | 2016-11-04 11:00:27 +0100 | [diff] [blame] | 36 | u8 feature_arc_index; |
Damjan Marion | 8b3191e | 2016-11-09 19:54:20 +0100 | [diff] [blame] | 37 | u8 *arc_index_ptr; |
Damjan Marion | 2231150 | 2016-10-28 20:30:15 +0200 | [diff] [blame] | 38 | } vnet_feature_arc_registration_t; |
| 39 | |
Pavel Kotucek | 7490a75 | 2016-11-15 09:19:11 +0100 | [diff] [blame] | 40 | /* Enable feature callback. */ |
| 41 | typedef clib_error_t *(vnet_feature_enable_disable_function_t) |
| 42 | (u32 sw_if_index, int enable_disable); |
| 43 | |
Damjan Marion | 2231150 | 2016-10-28 20:30:15 +0200 | [diff] [blame] | 44 | /** feature registration object */ |
| 45 | typedef struct _vnet_feature_registration |
| 46 | { |
| 47 | /** next registration in list of all registrations*/ |
Damjan Marion | 13adc3d | 2018-04-09 20:59:53 +0200 | [diff] [blame] | 48 | struct _vnet_feature_registration *next, *next_in_arc; |
Damjan Marion | 2231150 | 2016-10-28 20:30:15 +0200 | [diff] [blame] | 49 | /** Feature arc name */ |
| 50 | char *arc_name; |
| 51 | /** Graph node name */ |
| 52 | char *node_name; |
| 53 | /** Pointer to this feature index, filled in by vnet_feature_arc_init */ |
Damjan Marion | 8b3191e | 2016-11-09 19:54:20 +0100 | [diff] [blame] | 54 | u32 *feature_index_ptr; |
| 55 | u32 feature_index; |
Damjan Marion | 2231150 | 2016-10-28 20:30:15 +0200 | [diff] [blame] | 56 | /** Constraints of the form "this feature runs before X" */ |
| 57 | char **runs_before; |
| 58 | /** Constraints of the form "this feature runs after Y" */ |
| 59 | char **runs_after; |
Pavel Kotucek | 7490a75 | 2016-11-15 09:19:11 +0100 | [diff] [blame] | 60 | |
| 61 | /** Function to enable/disable feature **/ |
| 62 | vnet_feature_enable_disable_function_t *enable_disable_cb; |
Damjan Marion | 2231150 | 2016-10-28 20:30:15 +0200 | [diff] [blame] | 63 | } vnet_feature_registration_t; |
| 64 | |
Dave Barach | 2dd192b | 2018-11-19 09:31:48 -0500 | [diff] [blame] | 65 | /** constraint registration object */ |
| 66 | typedef struct _vnet_feature_constraint_registration |
| 67 | { |
| 68 | /** next constraint set in list of all registrations*/ |
| 69 | struct _vnet_feature_constraint_registration *next, *next_in_arc; |
| 70 | /** Feature arc name */ |
| 71 | char *arc_name; |
| 72 | |
| 73 | /** Feature arc index, assigned by init function */ |
| 74 | u8 feature_arc_index; |
| 75 | |
| 76 | /** Node names, to run in the specified order */ |
| 77 | char **node_names; |
| 78 | } vnet_feature_constraint_registration_t; |
| 79 | |
Damjan Marion | 2231150 | 2016-10-28 20:30:15 +0200 | [diff] [blame] | 80 | typedef struct vnet_feature_config_main_t_ |
| 81 | { |
| 82 | vnet_config_main_t config_main; |
| 83 | u32 *config_index_by_sw_if_index; |
| 84 | } vnet_feature_config_main_t; |
| 85 | |
| 86 | typedef struct |
| 87 | { |
| 88 | /** feature arc configuration list */ |
| 89 | vnet_feature_arc_registration_t *next_arc; |
| 90 | uword **arc_index_by_name; |
| 91 | |
| 92 | /** feature path configuration lists */ |
| 93 | vnet_feature_registration_t *next_feature; |
| 94 | vnet_feature_registration_t **next_feature_by_arc; |
Dave Barach | 2dd192b | 2018-11-19 09:31:48 -0500 | [diff] [blame] | 95 | vnet_feature_constraint_registration_t *next_constraint; |
| 96 | vnet_feature_constraint_registration_t **next_constraint_by_arc; |
Damjan Marion | 2231150 | 2016-10-28 20:30:15 +0200 | [diff] [blame] | 97 | uword **next_feature_by_name; |
| 98 | |
| 99 | /** feature config main objects */ |
| 100 | vnet_feature_config_main_t *feature_config_mains; |
| 101 | |
| 102 | /** Save partial order results for show command */ |
| 103 | char ***feature_nodes; |
| 104 | |
| 105 | /** bitmap of interfaces which have driver rx features configured */ |
| 106 | uword **sw_if_index_has_features; |
| 107 | |
| 108 | /** feature reference counts by interface */ |
| 109 | i16 **feature_count_by_sw_if_index; |
| 110 | |
Damjan Marion | 87cd119 | 2016-11-04 11:00:27 +0100 | [diff] [blame] | 111 | /** Feature arc index for device-input */ |
| 112 | u8 device_input_feature_arc_index; |
| 113 | |
Damjan Marion | 2231150 | 2016-10-28 20:30:15 +0200 | [diff] [blame] | 114 | /** convenience */ |
| 115 | vlib_main_t *vlib_main; |
| 116 | vnet_main_t *vnet_main; |
| 117 | } vnet_feature_main_t; |
| 118 | |
| 119 | extern vnet_feature_main_t feature_main; |
| 120 | |
Damjan Marion | 6e36351 | 2018-08-10 22:39:11 +0200 | [diff] [blame] | 121 | #ifndef CLIB_MARCH_VARIANT |
Damjan Marion | 2231150 | 2016-10-28 20:30:15 +0200 | [diff] [blame] | 122 | #define VNET_FEATURE_ARC_INIT(x,...) \ |
| 123 | __VA_ARGS__ vnet_feature_arc_registration_t vnet_feat_arc_##x;\ |
| 124 | static void __vnet_add_feature_arc_registration_##x (void) \ |
| 125 | __attribute__((__constructor__)) ; \ |
| 126 | static void __vnet_add_feature_arc_registration_##x (void) \ |
| 127 | { \ |
| 128 | vnet_feature_main_t * fm = &feature_main; \ |
| 129 | vnet_feat_arc_##x.next = fm->next_arc; \ |
| 130 | fm->next_arc = & vnet_feat_arc_##x; \ |
| 131 | } \ |
Damjan Marion | 72d2c4f | 2018-04-05 21:32:29 +0200 | [diff] [blame] | 132 | static void __vnet_rm_feature_arc_registration_##x (void) \ |
| 133 | __attribute__((__destructor__)) ; \ |
| 134 | static void __vnet_rm_feature_arc_registration_##x (void) \ |
| 135 | { \ |
| 136 | vnet_feature_main_t * fm = &feature_main; \ |
| 137 | vnet_feature_arc_registration_t *r = &vnet_feat_arc_##x; \ |
| 138 | VLIB_REMOVE_FROM_LINKED_LIST (fm->next_arc, r, next); \ |
| 139 | } \ |
Damjan Marion | 2231150 | 2016-10-28 20:30:15 +0200 | [diff] [blame] | 140 | __VA_ARGS__ vnet_feature_arc_registration_t vnet_feat_arc_##x |
| 141 | |
| 142 | #define VNET_FEATURE_INIT(x,...) \ |
| 143 | __VA_ARGS__ vnet_feature_registration_t vnet_feat_##x; \ |
| 144 | static void __vnet_add_feature_registration_##x (void) \ |
| 145 | __attribute__((__constructor__)) ; \ |
| 146 | static void __vnet_add_feature_registration_##x (void) \ |
| 147 | { \ |
| 148 | vnet_feature_main_t * fm = &feature_main; \ |
| 149 | vnet_feat_##x.next = fm->next_feature; \ |
| 150 | fm->next_feature = & vnet_feat_##x; \ |
| 151 | } \ |
Damjan Marion | 72d2c4f | 2018-04-05 21:32:29 +0200 | [diff] [blame] | 152 | static void __vnet_rm_feature_registration_##x (void) \ |
| 153 | __attribute__((__destructor__)) ; \ |
| 154 | static void __vnet_rm_feature_registration_##x (void) \ |
| 155 | { \ |
| 156 | vnet_feature_main_t * fm = &feature_main; \ |
| 157 | vnet_feature_registration_t *r = &vnet_feat_##x; \ |
| 158 | VLIB_REMOVE_FROM_LINKED_LIST (fm->next_feature, r, next); \ |
| 159 | } \ |
Damjan Marion | 2231150 | 2016-10-28 20:30:15 +0200 | [diff] [blame] | 160 | __VA_ARGS__ vnet_feature_registration_t vnet_feat_##x |
Dave Barach | 2dd192b | 2018-11-19 09:31:48 -0500 | [diff] [blame] | 161 | |
| 162 | #define VNET_FEATURE_ARC_ORDER(x,...) \ |
| 163 | __VA_ARGS__ vnet_feature_constraint_registration_t \ |
| 164 | vnet_feature_constraint_##x; \ |
| 165 | static void __vnet_add_constraint_registration_##x (void) \ |
| 166 | __attribute__((__constructor__)) ; \ |
| 167 | static void __vnet_add_constraint_registration_##x (void) \ |
| 168 | { \ |
| 169 | vnet_feature_main_t * fm = &feature_main; \ |
| 170 | vnet_feature_constraint_##x.next = fm->next_constraint; \ |
| 171 | fm->next_constraint = & vnet_feature_constraint_##x; \ |
| 172 | } \ |
| 173 | static void __vnet_rm_constraint_registration_##x (void) \ |
| 174 | __attribute__((__destructor__)) ; \ |
| 175 | static void __vnet_rm_constraint_registration_##x (void) \ |
| 176 | { \ |
| 177 | vnet_feature_main_t * fm = &feature_main; \ |
| 178 | vnet_feature_constraint_registration_t *r = &vnet_feature_constraint_##x; \ |
| 179 | VLIB_REMOVE_FROM_LINKED_LIST (fm->next_constraint, r, next); \ |
| 180 | } \ |
| 181 | __VA_ARGS__ vnet_feature_constraint_registration_t vnet_feature_constraint_##x |
| 182 | |
Damjan Marion | 6e36351 | 2018-08-10 22:39:11 +0200 | [diff] [blame] | 183 | #else |
| 184 | #define VNET_FEATURE_ARC_INIT(x,...) \ |
| 185 | extern vnet_feature_arc_registration_t __clib_unused vnet_feat_arc_##x; \ |
| 186 | static vnet_feature_arc_registration_t __clib_unused __clib_unused_vnet_feat_arc_##x |
| 187 | #define VNET_FEATURE_INIT(x,...) \ |
| 188 | extern vnet_feature_registration_t __clib_unused vnet_feat_##x; \ |
| 189 | static vnet_feature_registration_t __clib_unused __clib_unused_vnet_feat_##x |
Dave Barach | 2dd192b | 2018-11-19 09:31:48 -0500 | [diff] [blame] | 190 | |
| 191 | #define VNET_FEATURE_ARC_ORDER(x,...) \ |
| 192 | extern vnet_feature_constraint_registration_t \ |
| 193 | __clib_unused vnet_feature_constraint_##x; \ |
| 194 | static vnet_feature_constraint_registration_t __clib_unused \ |
| 195 | __clib_unused_vnet_feature_constraint_##x |
| 196 | |
| 197 | |
Damjan Marion | 6e36351 | 2018-08-10 22:39:11 +0200 | [diff] [blame] | 198 | #endif |
Damjan Marion | 2231150 | 2016-10-28 20:30:15 +0200 | [diff] [blame] | 199 | |
| 200 | void |
Damjan Marion | 87cd119 | 2016-11-04 11:00:27 +0100 | [diff] [blame] | 201 | vnet_config_update_feature_count (vnet_feature_main_t * fm, u8 arc, |
Damjan Marion | 2231150 | 2016-10-28 20:30:15 +0200 | [diff] [blame] | 202 | u32 sw_if_index, int is_add); |
| 203 | |
Damjan Marion | 87cd119 | 2016-11-04 11:00:27 +0100 | [diff] [blame] | 204 | u32 vnet_get_feature_index (u8 arc, const char *s); |
| 205 | u8 vnet_get_feature_arc_index (const char *s); |
Pavel Kotucek | 7490a75 | 2016-11-15 09:19:11 +0100 | [diff] [blame] | 206 | vnet_feature_registration_t *vnet_get_feature_reg (const char *arc_name, |
| 207 | const char *node_name); |
| 208 | |
Damjan Marion | 2231150 | 2016-10-28 20:30:15 +0200 | [diff] [blame] | 209 | |
Damjan Marion | 96b41f7 | 2016-11-10 18:01:42 +0100 | [diff] [blame] | 210 | int |
Damjan Marion | 8b3191e | 2016-11-09 19:54:20 +0100 | [diff] [blame] | 211 | vnet_feature_enable_disable_with_index (u8 arc_index, u32 feature_index, |
| 212 | u32 sw_if_index, int enable_disable, |
| 213 | void *feature_config, |
| 214 | u32 n_feature_config_bytes); |
| 215 | |
| 216 | int |
Damjan Marion | 2231150 | 2016-10-28 20:30:15 +0200 | [diff] [blame] | 217 | vnet_feature_enable_disable (const char *arc_name, const char *node_name, |
| 218 | u32 sw_if_index, int enable_disable, |
| 219 | void *feature_config, |
| 220 | u32 n_feature_config_bytes); |
| 221 | |
Damjan Marion | 8b3191e | 2016-11-09 19:54:20 +0100 | [diff] [blame] | 222 | static inline vnet_feature_config_main_t * |
| 223 | vnet_get_feature_arc_config_main (u8 arc_index) |
| 224 | { |
| 225 | vnet_feature_main_t *fm = &feature_main; |
| 226 | |
| 227 | if (arc_index == (u8) ~ 0) |
| 228 | return 0; |
| 229 | |
| 230 | return &fm->feature_config_mains[arc_index]; |
| 231 | } |
Damjan Marion | 2231150 | 2016-10-28 20:30:15 +0200 | [diff] [blame] | 232 | |
Pavel Kotucek | f6e3dc4 | 2016-11-04 09:58:01 +0100 | [diff] [blame] | 233 | static_always_inline vnet_feature_config_main_t * |
| 234 | vnet_feature_get_config_main (u16 arc) |
| 235 | { |
| 236 | vnet_feature_main_t *fm = &feature_main; |
| 237 | return &fm->feature_config_mains[arc]; |
| 238 | } |
| 239 | |
Damjan Marion | 2231150 | 2016-10-28 20:30:15 +0200 | [diff] [blame] | 240 | static_always_inline int |
Damjan Marion | 87cd119 | 2016-11-04 11:00:27 +0100 | [diff] [blame] | 241 | vnet_have_features (u8 arc, u32 sw_if_index) |
Damjan Marion | 2231150 | 2016-10-28 20:30:15 +0200 | [diff] [blame] | 242 | { |
| 243 | vnet_feature_main_t *fm = &feature_main; |
| 244 | return clib_bitmap_get (fm->sw_if_index_has_features[arc], sw_if_index); |
| 245 | } |
| 246 | |
| 247 | static_always_inline u32 |
Damjan Marion | 87cd119 | 2016-11-04 11:00:27 +0100 | [diff] [blame] | 248 | vnet_get_feature_config_index (u8 arc, u32 sw_if_index) |
Damjan Marion | 2231150 | 2016-10-28 20:30:15 +0200 | [diff] [blame] | 249 | { |
| 250 | vnet_feature_main_t *fm = &feature_main; |
| 251 | vnet_feature_config_main_t *cm = &fm->feature_config_mains[arc]; |
| 252 | return vec_elt (cm->config_index_by_sw_if_index, sw_if_index); |
| 253 | } |
| 254 | |
Damjan Marion | 87cd119 | 2016-11-04 11:00:27 +0100 | [diff] [blame] | 255 | static_always_inline void * |
| 256 | vnet_feature_arc_start_with_data (u8 arc, u32 sw_if_index, u32 * next, |
| 257 | vlib_buffer_t * b, u32 n_data_bytes) |
Damjan Marion | 2231150 | 2016-10-28 20:30:15 +0200 | [diff] [blame] | 258 | { |
| 259 | vnet_feature_main_t *fm = &feature_main; |
Damjan Marion | 87cd119 | 2016-11-04 11:00:27 +0100 | [diff] [blame] | 260 | vnet_feature_config_main_t *cm; |
| 261 | cm = &fm->feature_config_mains[arc]; |
Damjan Marion | 2231150 | 2016-10-28 20:30:15 +0200 | [diff] [blame] | 262 | |
| 263 | if (PREDICT_FALSE (vnet_have_features (arc, sw_if_index))) |
| 264 | { |
Damjan Marion | aa682a3 | 2018-04-26 22:45:40 +0200 | [diff] [blame] | 265 | vnet_buffer (b)->feature_arc_index = arc; |
Damjan Marion | 87cd119 | 2016-11-04 11:00:27 +0100 | [diff] [blame] | 266 | b->current_config_index = |
Damjan Marion | 2231150 | 2016-10-28 20:30:15 +0200 | [diff] [blame] | 267 | vec_elt (cm->config_index_by_sw_if_index, sw_if_index); |
Damjan Marion | 87cd119 | 2016-11-04 11:00:27 +0100 | [diff] [blame] | 268 | return vnet_get_config_data (&cm->config_main, &b->current_config_index, |
| 269 | next, n_data_bytes); |
Damjan Marion | 2231150 | 2016-10-28 20:30:15 +0200 | [diff] [blame] | 270 | } |
Damjan Marion | 05bb1dd | 2016-11-08 21:28:22 +0100 | [diff] [blame] | 271 | return 0; |
Damjan Marion | 2231150 | 2016-10-28 20:30:15 +0200 | [diff] [blame] | 272 | } |
| 273 | |
| 274 | static_always_inline void |
Damjan Marion | 87cd119 | 2016-11-04 11:00:27 +0100 | [diff] [blame] | 275 | vnet_feature_arc_start (u8 arc, u32 sw_if_index, u32 * next0, |
| 276 | vlib_buffer_t * b0) |
| 277 | { |
| 278 | vnet_feature_arc_start_with_data (arc, sw_if_index, next0, b0, 0); |
| 279 | } |
| 280 | |
| 281 | static_always_inline void * |
Damjan Marion | 7d98a12 | 2018-07-19 20:42:08 +0200 | [diff] [blame] | 282 | vnet_feature_next_with_data (u32 * next0, vlib_buffer_t * b0, |
| 283 | u32 n_data_bytes) |
Damjan Marion | 87cd119 | 2016-11-04 11:00:27 +0100 | [diff] [blame] | 284 | { |
| 285 | vnet_feature_main_t *fm = &feature_main; |
Damjan Marion | aa682a3 | 2018-04-26 22:45:40 +0200 | [diff] [blame] | 286 | u8 arc = vnet_buffer (b0)->feature_arc_index; |
Damjan Marion | 87cd119 | 2016-11-04 11:00:27 +0100 | [diff] [blame] | 287 | vnet_feature_config_main_t *cm = &fm->feature_config_mains[arc]; |
| 288 | |
| 289 | return vnet_get_config_data (&cm->config_main, |
| 290 | &b0->current_config_index, next0, |
| 291 | n_data_bytes); |
| 292 | } |
| 293 | |
| 294 | static_always_inline void |
Damjan Marion | 7d98a12 | 2018-07-19 20:42:08 +0200 | [diff] [blame] | 295 | vnet_feature_next (u32 * next0, vlib_buffer_t * b0) |
Damjan Marion | 87cd119 | 2016-11-04 11:00:27 +0100 | [diff] [blame] | 296 | { |
Damjan Marion | 7d98a12 | 2018-07-19 20:42:08 +0200 | [diff] [blame] | 297 | vnet_feature_next_with_data (next0, b0, 0); |
Damjan Marion | 87cd119 | 2016-11-04 11:00:27 +0100 | [diff] [blame] | 298 | } |
| 299 | |
Damjan Marion | dc09133 | 2018-02-25 22:52:07 +0100 | [diff] [blame] | 300 | static_always_inline int |
| 301 | vnet_device_input_have_features (u32 sw_if_index) |
| 302 | { |
| 303 | vnet_feature_main_t *fm = &feature_main; |
| 304 | return vnet_have_features (fm->device_input_feature_arc_index, sw_if_index); |
| 305 | } |
| 306 | |
Damjan Marion | 87cd119 | 2016-11-04 11:00:27 +0100 | [diff] [blame] | 307 | static_always_inline void |
| 308 | vnet_feature_start_device_input_x1 (u32 sw_if_index, u32 * next0, |
Damjan Marion | 35af9e5 | 2017-03-06 12:02:50 +0100 | [diff] [blame] | 309 | vlib_buffer_t * b0) |
Damjan Marion | 2231150 | 2016-10-28 20:30:15 +0200 | [diff] [blame] | 310 | { |
| 311 | vnet_feature_main_t *fm = &feature_main; |
| 312 | vnet_feature_config_main_t *cm; |
Damjan Marion | 87cd119 | 2016-11-04 11:00:27 +0100 | [diff] [blame] | 313 | u8 feature_arc_index = fm->device_input_feature_arc_index; |
| 314 | cm = &fm->feature_config_mains[feature_arc_index]; |
Damjan Marion | 2231150 | 2016-10-28 20:30:15 +0200 | [diff] [blame] | 315 | |
| 316 | if (PREDICT_FALSE |
| 317 | (clib_bitmap_get |
Damjan Marion | 87cd119 | 2016-11-04 11:00:27 +0100 | [diff] [blame] | 318 | (fm->sw_if_index_has_features[feature_arc_index], sw_if_index))) |
Damjan Marion | 2231150 | 2016-10-28 20:30:15 +0200 | [diff] [blame] | 319 | { |
| 320 | /* |
| 321 | * Save next0 so that the last feature in the chain |
| 322 | * can skip ethernet-input if indicated... |
| 323 | */ |
Damjan Marion | 35af9e5 | 2017-03-06 12:02:50 +0100 | [diff] [blame] | 324 | u16 adv; |
| 325 | |
Damjan Marion | 35af9e5 | 2017-03-06 12:02:50 +0100 | [diff] [blame] | 326 | adv = device_input_next_node_advance[*next0]; |
Damjan Marion | 35af9e5 | 2017-03-06 12:02:50 +0100 | [diff] [blame] | 327 | vlib_buffer_advance (b0, -adv); |
Damjan Marion | 2231150 | 2016-10-28 20:30:15 +0200 | [diff] [blame] | 328 | |
Damjan Marion | aa682a3 | 2018-04-26 22:45:40 +0200 | [diff] [blame] | 329 | vnet_buffer (b0)->feature_arc_index = feature_arc_index; |
Damjan Marion | 2231150 | 2016-10-28 20:30:15 +0200 | [diff] [blame] | 330 | b0->current_config_index = |
| 331 | vec_elt (cm->config_index_by_sw_if_index, sw_if_index); |
| 332 | vnet_get_config_data (&cm->config_main, &b0->current_config_index, |
| 333 | next0, /* # bytes of config data */ 0); |
| 334 | } |
| 335 | } |
| 336 | |
Damjan Marion | 87cd119 | 2016-11-04 11:00:27 +0100 | [diff] [blame] | 337 | static_always_inline void |
| 338 | vnet_feature_start_device_input_x2 (u32 sw_if_index, |
| 339 | u32 * next0, |
| 340 | u32 * next1, |
Damjan Marion | 35af9e5 | 2017-03-06 12:02:50 +0100 | [diff] [blame] | 341 | vlib_buffer_t * b0, vlib_buffer_t * b1) |
Damjan Marion | 87cd119 | 2016-11-04 11:00:27 +0100 | [diff] [blame] | 342 | { |
| 343 | vnet_feature_main_t *fm = &feature_main; |
| 344 | vnet_feature_config_main_t *cm; |
| 345 | u8 feature_arc_index = fm->device_input_feature_arc_index; |
| 346 | cm = &fm->feature_config_mains[feature_arc_index]; |
| 347 | |
| 348 | if (PREDICT_FALSE |
| 349 | (clib_bitmap_get |
| 350 | (fm->sw_if_index_has_features[feature_arc_index], sw_if_index))) |
| 351 | { |
| 352 | /* |
| 353 | * Save next0 so that the last feature in the chain |
| 354 | * can skip ethernet-input if indicated... |
| 355 | */ |
Damjan Marion | 35af9e5 | 2017-03-06 12:02:50 +0100 | [diff] [blame] | 356 | u16 adv; |
| 357 | |
Damjan Marion | 35af9e5 | 2017-03-06 12:02:50 +0100 | [diff] [blame] | 358 | adv = device_input_next_node_advance[*next0]; |
Damjan Marion | 35af9e5 | 2017-03-06 12:02:50 +0100 | [diff] [blame] | 359 | vlib_buffer_advance (b0, -adv); |
| 360 | |
Damjan Marion | 35af9e5 | 2017-03-06 12:02:50 +0100 | [diff] [blame] | 361 | adv = device_input_next_node_advance[*next1]; |
Damjan Marion | 35af9e5 | 2017-03-06 12:02:50 +0100 | [diff] [blame] | 362 | vlib_buffer_advance (b1, -adv); |
Damjan Marion | 87cd119 | 2016-11-04 11:00:27 +0100 | [diff] [blame] | 363 | |
Damjan Marion | aa682a3 | 2018-04-26 22:45:40 +0200 | [diff] [blame] | 364 | vnet_buffer (b0)->feature_arc_index = feature_arc_index; |
| 365 | vnet_buffer (b1)->feature_arc_index = feature_arc_index; |
Damjan Marion | 87cd119 | 2016-11-04 11:00:27 +0100 | [diff] [blame] | 366 | b0->current_config_index = |
| 367 | vec_elt (cm->config_index_by_sw_if_index, sw_if_index); |
| 368 | b1->current_config_index = b0->current_config_index; |
| 369 | vnet_get_config_data (&cm->config_main, &b0->current_config_index, |
| 370 | next0, /* # bytes of config data */ 0); |
| 371 | vnet_get_config_data (&cm->config_main, &b1->current_config_index, |
| 372 | next1, /* # bytes of config data */ 0); |
| 373 | } |
| 374 | } |
| 375 | |
Damjan Marion | 7dc4146 | 2016-11-15 19:47:58 +0100 | [diff] [blame] | 376 | static_always_inline void |
| 377 | vnet_feature_start_device_input_x4 (u32 sw_if_index, |
| 378 | u32 * next0, |
| 379 | u32 * next1, |
| 380 | u32 * next2, |
| 381 | u32 * next3, |
| 382 | vlib_buffer_t * b0, |
| 383 | vlib_buffer_t * b1, |
Damjan Marion | 35af9e5 | 2017-03-06 12:02:50 +0100 | [diff] [blame] | 384 | vlib_buffer_t * b2, vlib_buffer_t * b3) |
Damjan Marion | 7dc4146 | 2016-11-15 19:47:58 +0100 | [diff] [blame] | 385 | { |
| 386 | vnet_feature_main_t *fm = &feature_main; |
| 387 | vnet_feature_config_main_t *cm; |
| 388 | u8 feature_arc_index = fm->device_input_feature_arc_index; |
| 389 | cm = &fm->feature_config_mains[feature_arc_index]; |
| 390 | |
| 391 | if (PREDICT_FALSE |
| 392 | (clib_bitmap_get |
| 393 | (fm->sw_if_index_has_features[feature_arc_index], sw_if_index))) |
| 394 | { |
| 395 | /* |
| 396 | * Save next0 so that the last feature in the chain |
| 397 | * can skip ethernet-input if indicated... |
| 398 | */ |
Damjan Marion | 35af9e5 | 2017-03-06 12:02:50 +0100 | [diff] [blame] | 399 | u16 adv; |
| 400 | |
Damjan Marion | 35af9e5 | 2017-03-06 12:02:50 +0100 | [diff] [blame] | 401 | adv = device_input_next_node_advance[*next0]; |
Damjan Marion | 35af9e5 | 2017-03-06 12:02:50 +0100 | [diff] [blame] | 402 | vlib_buffer_advance (b0, -adv); |
| 403 | |
Damjan Marion | 35af9e5 | 2017-03-06 12:02:50 +0100 | [diff] [blame] | 404 | adv = device_input_next_node_advance[*next1]; |
Damjan Marion | 35af9e5 | 2017-03-06 12:02:50 +0100 | [diff] [blame] | 405 | vlib_buffer_advance (b1, -adv); |
| 406 | |
Damjan Marion | 35af9e5 | 2017-03-06 12:02:50 +0100 | [diff] [blame] | 407 | adv = device_input_next_node_advance[*next2]; |
Damjan Marion | 35af9e5 | 2017-03-06 12:02:50 +0100 | [diff] [blame] | 408 | vlib_buffer_advance (b2, -adv); |
| 409 | |
Damjan Marion | 35af9e5 | 2017-03-06 12:02:50 +0100 | [diff] [blame] | 410 | adv = device_input_next_node_advance[*next3]; |
Damjan Marion | 35af9e5 | 2017-03-06 12:02:50 +0100 | [diff] [blame] | 411 | vlib_buffer_advance (b3, -adv); |
Damjan Marion | 7dc4146 | 2016-11-15 19:47:58 +0100 | [diff] [blame] | 412 | |
Damjan Marion | aa682a3 | 2018-04-26 22:45:40 +0200 | [diff] [blame] | 413 | vnet_buffer (b0)->feature_arc_index = feature_arc_index; |
| 414 | vnet_buffer (b1)->feature_arc_index = feature_arc_index; |
| 415 | vnet_buffer (b2)->feature_arc_index = feature_arc_index; |
| 416 | vnet_buffer (b3)->feature_arc_index = feature_arc_index; |
Damjan Marion | 7dc4146 | 2016-11-15 19:47:58 +0100 | [diff] [blame] | 417 | |
| 418 | b0->current_config_index = |
| 419 | vec_elt (cm->config_index_by_sw_if_index, sw_if_index); |
| 420 | b1->current_config_index = b0->current_config_index; |
| 421 | b2->current_config_index = b0->current_config_index; |
| 422 | b3->current_config_index = b0->current_config_index; |
| 423 | |
| 424 | vnet_get_config_data (&cm->config_main, &b0->current_config_index, |
| 425 | next0, /* # bytes of config data */ 0); |
| 426 | vnet_get_config_data (&cm->config_main, &b1->current_config_index, |
| 427 | next1, /* # bytes of config data */ 0); |
| 428 | vnet_get_config_data (&cm->config_main, &b2->current_config_index, |
| 429 | next2, /* # bytes of config data */ 0); |
| 430 | vnet_get_config_data (&cm->config_main, &b3->current_config_index, |
| 431 | next3, /* # bytes of config data */ 0); |
| 432 | } |
| 433 | } |
Damjan Marion | 87cd119 | 2016-11-04 11:00:27 +0100 | [diff] [blame] | 434 | |
Damjan Marion | 2231150 | 2016-10-28 20:30:15 +0200 | [diff] [blame] | 435 | #define VNET_FEATURES(...) (char*[]) { __VA_ARGS__, 0} |
| 436 | |
Dave Barach | 2dd192b | 2018-11-19 09:31:48 -0500 | [diff] [blame] | 437 | clib_error_t *vnet_feature_arc_init |
| 438 | (vlib_main_t * vm, |
| 439 | vnet_config_main_t * vcm, |
| 440 | char **feature_start_nodes, |
| 441 | int num_feature_start_nodes, |
| 442 | vnet_feature_registration_t * first_reg, |
| 443 | vnet_feature_constraint_registration_t * first_const_set, |
| 444 | char ***in_feature_nodes); |
Damjan Marion | 2231150 | 2016-10-28 20:30:15 +0200 | [diff] [blame] | 445 | |
Dave Barach | 525c9d0 | 2018-05-26 10:48:55 -0400 | [diff] [blame] | 446 | void vnet_interface_features_show (vlib_main_t * vm, u32 sw_if_index, |
| 447 | int verbose); |
Damjan Marion | 2231150 | 2016-10-28 20:30:15 +0200 | [diff] [blame] | 448 | |
| 449 | #endif /* included_feature_h */ |
| 450 | |
| 451 | /* |
| 452 | * fd.io coding-style-patch-verification: ON |
| 453 | * |
| 454 | * Local Variables: |
| 455 | * eval: (c-set-style "gnu") |
| 456 | * End: |
| 457 | */ |