Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1 | /* |
| 2 | * l2_output.c : layer 2 output packet processing |
| 3 | * |
| 4 | * Copyright (c) 2013 Cisco and/or its affiliates. |
| 5 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 6 | * you may not use this file except in compliance with the License. |
| 7 | * You may obtain a copy of the License at: |
| 8 | * |
| 9 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 10 | * |
| 11 | * Unless required by applicable law or agreed to in writing, software |
| 12 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 13 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 14 | * See the License for the specific language governing permissions and |
| 15 | * limitations under the License. |
| 16 | */ |
| 17 | |
| 18 | #include <vlib/vlib.h> |
| 19 | #include <vnet/vnet.h> |
| 20 | #include <vnet/pg/pg.h> |
| 21 | #include <vnet/ethernet/ethernet.h> |
| 22 | #include <vlib/cli.h> |
| 23 | |
| 24 | #include <vppinfra/error.h> |
| 25 | #include <vppinfra/hash.h> |
| 26 | #include <vnet/l2/feat_bitmap.h> |
| 27 | #include <vnet/l2/l2_output.h> |
| 28 | |
| 29 | |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 30 | /* Feature graph node names */ |
| 31 | static char *l2output_feat_names[] = { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 32 | #define _(sym,name) name, |
| 33 | foreach_l2output_feat |
| 34 | #undef _ |
| 35 | }; |
| 36 | |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 37 | char ** |
| 38 | l2output_get_feat_names (void) |
| 39 | { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 40 | return l2output_feat_names; |
| 41 | } |
| 42 | |
| 43 | l2output_main_t l2output_main; |
| 44 | |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 45 | typedef struct |
| 46 | { |
| 47 | /* per-pkt trace data */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 48 | u8 src[6]; |
| 49 | u8 dst[6]; |
| 50 | u32 sw_if_index; |
| 51 | } l2output_trace_t; |
| 52 | |
| 53 | /* packet trace format function */ |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 54 | static u8 * |
| 55 | format_l2output_trace (u8 * s, va_list * args) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 56 | { |
| 57 | CLIB_UNUSED (vlib_main_t * vm) = va_arg (*args, vlib_main_t *); |
| 58 | CLIB_UNUSED (vlib_node_t * node) = va_arg (*args, vlib_node_t *); |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 59 | l2output_trace_t *t = va_arg (*args, l2output_trace_t *); |
| 60 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 61 | s = format (s, "l2-output: sw_if_index %d dst %U src %U", |
| 62 | t->sw_if_index, |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 63 | format_ethernet_address, t->dst, |
| 64 | format_ethernet_address, t->src); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 65 | return s; |
| 66 | } |
| 67 | |
| 68 | |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 69 | static char *l2output_error_strings[] = { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 70 | #define _(sym,string) string, |
| 71 | foreach_l2output_error |
| 72 | #undef _ |
| 73 | }; |
| 74 | |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 75 | /** |
Chris Luke | 16bcf7d | 2016-09-01 14:31:46 -0400 | [diff] [blame] | 76 | * Check for split horizon violations. |
| 77 | * Return 0 if split horizon check passes, otherwise return non-zero. |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 78 | * Packets should not be transmitted out an interface with the same |
Chris Luke | 16bcf7d | 2016-09-01 14:31:46 -0400 | [diff] [blame] | 79 | * split-horizon group as the input interface, except if the @c shg is 0 |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 80 | * in which case the check always passes. |
| 81 | */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 82 | static_always_inline u32 |
| 83 | split_horizon_violation (u8 shg1, u8 shg2) |
| 84 | { |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 85 | if (PREDICT_TRUE (shg1 == 0)) |
| 86 | { |
| 87 | return 0; |
| 88 | } |
| 89 | else |
| 90 | { |
| 91 | return shg1 == shg2; |
| 92 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 93 | } |
| 94 | |
Damjan Marion | dc5252b | 2016-11-24 19:25:01 -0800 | [diff] [blame] | 95 | static_always_inline void |
| 96 | l2output_vtr (vlib_node_runtime_t * node, l2_output_config_t * config, |
| 97 | u32 feature_bitmap, vlib_buffer_t * b, u32 * next) |
| 98 | { |
| 99 | if (PREDICT_FALSE (config->out_vtr_flag)) |
| 100 | { |
| 101 | /* Perform pre-vtr EFP filter check if configured */ |
| 102 | if (config->output_vtr.push_and_pop_bytes) |
| 103 | { |
| 104 | /* |
| 105 | * Perform output vlan tag rewrite and the pre-vtr EFP filter check. |
| 106 | * The EFP Filter only needs to be run if there is an output VTR |
| 107 | * configured. The flag for the post-vtr EFP Filter node is used |
| 108 | * to trigger the pre-vtr check as well. |
| 109 | */ |
| 110 | u32 failed1 = (feature_bitmap & L2OUTPUT_FEAT_EFP_FILTER) |
| 111 | && (l2_efp_filter_process (b, &(config->input_vtr))); |
| 112 | u32 failed2 = l2_vtr_process (b, &(config->output_vtr)); |
| 113 | |
| 114 | if (PREDICT_FALSE (failed1 | failed2)) |
| 115 | { |
| 116 | *next = L2OUTPUT_NEXT_DROP; |
| 117 | if (failed2) |
| 118 | { |
| 119 | b->error = node->errors[L2OUTPUT_ERROR_VTR_DROP]; |
| 120 | } |
| 121 | if (failed1) |
| 122 | { |
| 123 | b->error = node->errors[L2OUTPUT_ERROR_EFP_DROP]; |
| 124 | } |
| 125 | } |
| 126 | } |
| 127 | // perform the PBB rewrite |
| 128 | else if (config->output_pbb_vtr.push_and_pop_bytes) |
| 129 | { |
| 130 | u32 failed = l2_pbb_process (b, &(config->output_pbb_vtr)); |
| 131 | if (PREDICT_FALSE (failed)) |
| 132 | { |
| 133 | *next = L2OUTPUT_NEXT_DROP; |
| 134 | b->error = node->errors[L2OUTPUT_ERROR_VTR_DROP]; |
| 135 | } |
| 136 | } |
| 137 | } |
| 138 | } |
| 139 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 140 | |
Jean-Mickael Guerin | 8941ec2 | 2016-03-04 14:14:21 +0100 | [diff] [blame] | 141 | static vlib_node_registration_t l2output_node; |
| 142 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 143 | static uword |
| 144 | l2output_node_fn (vlib_main_t * vm, |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 145 | vlib_node_runtime_t * node, vlib_frame_t * frame) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 146 | { |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 147 | u32 n_left_from, *from, *to_next; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 148 | l2output_next_t next_index; |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 149 | l2output_main_t *msm = &l2output_main; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 150 | u32 cached_sw_if_index; |
| 151 | u32 cached_next_index; |
| 152 | |
| 153 | /* Invalidate cache */ |
| 154 | cached_sw_if_index = ~0; |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 155 | cached_next_index = ~0; /* warning be gone */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 156 | |
| 157 | from = vlib_frame_vector_args (frame); |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 158 | n_left_from = frame->n_vectors; /* number of packets to process */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 159 | next_index = node->cached_next_index; |
| 160 | |
| 161 | while (n_left_from > 0) |
| 162 | { |
| 163 | u32 n_left_to_next; |
| 164 | |
| 165 | /* get space to enqueue frame to graph node "next_index" */ |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 166 | vlib_get_next_frame (vm, node, next_index, to_next, n_left_to_next); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 167 | |
Damjan Marion | dc5252b | 2016-11-24 19:25:01 -0800 | [diff] [blame] | 168 | while (n_left_from >= 8 && n_left_to_next >= 4) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 169 | { |
Damjan Marion | dc5252b | 2016-11-24 19:25:01 -0800 | [diff] [blame] | 170 | u32 bi0, bi1, bi2, bi3; |
| 171 | vlib_buffer_t *b0, *b1, *b2, *b3; |
| 172 | u32 next0, next1, next2, next3; |
| 173 | u32 sw_if_index0, sw_if_index1, sw_if_index2, sw_if_index3; |
| 174 | ethernet_header_t *h0, *h1, *h2, *h3; |
| 175 | l2_output_config_t *config0, *config1, *config2, *config3; |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 176 | u32 feature_bitmap0, feature_bitmap1; |
Damjan Marion | dc5252b | 2016-11-24 19:25:01 -0800 | [diff] [blame] | 177 | u32 feature_bitmap2, feature_bitmap3; |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 178 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 179 | /* Prefetch next iteration. */ |
| 180 | { |
Damjan Marion | dc5252b | 2016-11-24 19:25:01 -0800 | [diff] [blame] | 181 | vlib_buffer_t *p4, *p5, *p6, *p7; |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 182 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 183 | p4 = vlib_get_buffer (vm, from[4]); |
| 184 | p5 = vlib_get_buffer (vm, from[5]); |
Damjan Marion | dc5252b | 2016-11-24 19:25:01 -0800 | [diff] [blame] | 185 | p6 = vlib_get_buffer (vm, from[6]); |
| 186 | p7 = vlib_get_buffer (vm, from[7]); |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 187 | |
| 188 | /* Prefetch the buffer header for the N+2 loop iteration */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 189 | vlib_prefetch_buffer_header (p4, LOAD); |
| 190 | vlib_prefetch_buffer_header (p5, LOAD); |
Damjan Marion | dc5252b | 2016-11-24 19:25:01 -0800 | [diff] [blame] | 191 | vlib_prefetch_buffer_header (p6, LOAD); |
| 192 | vlib_prefetch_buffer_header (p7, LOAD); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 193 | } |
| 194 | |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 195 | /* speculatively enqueue b0 and b1 to the current next frame */ |
| 196 | /* bi is "buffer index", b is pointer to the buffer */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 197 | to_next[0] = bi0 = from[0]; |
| 198 | to_next[1] = bi1 = from[1]; |
Damjan Marion | dc5252b | 2016-11-24 19:25:01 -0800 | [diff] [blame] | 199 | to_next[2] = bi2 = from[2]; |
| 200 | to_next[3] = bi3 = from[3]; |
| 201 | from += 4; |
| 202 | to_next += 4; |
| 203 | n_left_from -= 4; |
| 204 | n_left_to_next -= 4; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 205 | |
| 206 | b0 = vlib_get_buffer (vm, bi0); |
| 207 | b1 = vlib_get_buffer (vm, bi1); |
Damjan Marion | dc5252b | 2016-11-24 19:25:01 -0800 | [diff] [blame] | 208 | b2 = vlib_get_buffer (vm, bi2); |
| 209 | b3 = vlib_get_buffer (vm, bi3); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 210 | |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 211 | /* TX interface handles */ |
| 212 | sw_if_index0 = vnet_buffer (b0)->sw_if_index[VLIB_TX]; |
| 213 | sw_if_index1 = vnet_buffer (b1)->sw_if_index[VLIB_TX]; |
Damjan Marion | dc5252b | 2016-11-24 19:25:01 -0800 | [diff] [blame] | 214 | sw_if_index2 = vnet_buffer (b2)->sw_if_index[VLIB_TX]; |
| 215 | sw_if_index3 = vnet_buffer (b3)->sw_if_index[VLIB_TX]; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 216 | |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 217 | if (PREDICT_FALSE ((node->flags & VLIB_NODE_FLAG_TRACE))) |
| 218 | { |
| 219 | h0 = vlib_buffer_get_current (b0); |
| 220 | h1 = vlib_buffer_get_current (b1); |
Damjan Marion | dc5252b | 2016-11-24 19:25:01 -0800 | [diff] [blame] | 221 | h2 = vlib_buffer_get_current (b2); |
| 222 | h3 = vlib_buffer_get_current (b3); |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 223 | if (b0->flags & VLIB_BUFFER_IS_TRACED) |
| 224 | { |
| 225 | l2output_trace_t *t = |
| 226 | vlib_add_trace (vm, node, b0, sizeof (*t)); |
| 227 | t->sw_if_index = sw_if_index0; |
| 228 | clib_memcpy (t->src, h0->src_address, 6); |
| 229 | clib_memcpy (t->dst, h0->dst_address, 6); |
| 230 | } |
| 231 | if (b1->flags & VLIB_BUFFER_IS_TRACED) |
| 232 | { |
| 233 | l2output_trace_t *t = |
| 234 | vlib_add_trace (vm, node, b1, sizeof (*t)); |
| 235 | t->sw_if_index = sw_if_index1; |
| 236 | clib_memcpy (t->src, h1->src_address, 6); |
| 237 | clib_memcpy (t->dst, h1->dst_address, 6); |
| 238 | } |
Damjan Marion | dc5252b | 2016-11-24 19:25:01 -0800 | [diff] [blame] | 239 | if (b2->flags & VLIB_BUFFER_IS_TRACED) |
| 240 | { |
| 241 | l2output_trace_t *t = |
| 242 | vlib_add_trace (vm, node, b2, sizeof (*t)); |
| 243 | t->sw_if_index = sw_if_index2; |
| 244 | clib_memcpy (t->src, h2->src_address, 6); |
| 245 | clib_memcpy (t->dst, h2->dst_address, 6); |
| 246 | } |
| 247 | if (b3->flags & VLIB_BUFFER_IS_TRACED) |
| 248 | { |
| 249 | l2output_trace_t *t = |
| 250 | vlib_add_trace (vm, node, b3, sizeof (*t)); |
| 251 | t->sw_if_index = sw_if_index3; |
| 252 | clib_memcpy (t->src, h3->src_address, 6); |
| 253 | clib_memcpy (t->dst, h3->dst_address, 6); |
| 254 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 255 | } |
| 256 | |
Damjan Marion | dc5252b | 2016-11-24 19:25:01 -0800 | [diff] [blame] | 257 | vlib_node_increment_counter (vm, l2output_node.index, |
| 258 | L2OUTPUT_ERROR_L2OUTPUT, 4); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 259 | |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 260 | /* Get config for the output interface */ |
| 261 | config0 = vec_elt_at_index (msm->configs, sw_if_index0); |
| 262 | config1 = vec_elt_at_index (msm->configs, sw_if_index1); |
Damjan Marion | dc5252b | 2016-11-24 19:25:01 -0800 | [diff] [blame] | 263 | config2 = vec_elt_at_index (msm->configs, sw_if_index2); |
| 264 | config3 = vec_elt_at_index (msm->configs, sw_if_index3); |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 265 | |
| 266 | /* |
| 267 | * Get features from the config |
| 268 | * TODO: mask out any non-applicable features |
| 269 | */ |
| 270 | feature_bitmap0 = config0->feature_bitmap; |
| 271 | feature_bitmap1 = config1->feature_bitmap; |
Damjan Marion | dc5252b | 2016-11-24 19:25:01 -0800 | [diff] [blame] | 272 | feature_bitmap2 = config2->feature_bitmap; |
| 273 | feature_bitmap3 = config3->feature_bitmap; |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 274 | |
| 275 | /* Determine next node */ |
| 276 | l2_output_dispatch (msm->vlib_main, |
| 277 | msm->vnet_main, |
| 278 | node, |
| 279 | l2output_node.index, |
| 280 | &cached_sw_if_index, |
| 281 | &cached_next_index, |
| 282 | &msm->next_nodes, |
| 283 | b0, sw_if_index0, feature_bitmap0, &next0); |
| 284 | |
| 285 | l2_output_dispatch (msm->vlib_main, |
| 286 | msm->vnet_main, |
| 287 | node, |
| 288 | l2output_node.index, |
| 289 | &cached_sw_if_index, |
| 290 | &cached_next_index, |
| 291 | &msm->next_nodes, |
| 292 | b1, sw_if_index1, feature_bitmap1, &next1); |
| 293 | |
Damjan Marion | dc5252b | 2016-11-24 19:25:01 -0800 | [diff] [blame] | 294 | l2_output_dispatch (msm->vlib_main, |
| 295 | msm->vnet_main, |
| 296 | node, |
| 297 | l2output_node.index, |
| 298 | &cached_sw_if_index, |
| 299 | &cached_next_index, |
| 300 | &msm->next_nodes, |
| 301 | b2, sw_if_index2, feature_bitmap2, &next2); |
Pavel Kotucek | 95300d1 | 2016-08-26 16:11:36 +0200 | [diff] [blame] | 302 | |
Damjan Marion | dc5252b | 2016-11-24 19:25:01 -0800 | [diff] [blame] | 303 | l2_output_dispatch (msm->vlib_main, |
| 304 | msm->vnet_main, |
| 305 | node, |
| 306 | l2output_node.index, |
| 307 | &cached_sw_if_index, |
| 308 | &cached_next_index, |
| 309 | &msm->next_nodes, |
| 310 | b3, sw_if_index3, feature_bitmap3, &next3); |
Pavel Kotucek | 95300d1 | 2016-08-26 16:11:36 +0200 | [diff] [blame] | 311 | |
Damjan Marion | dc5252b | 2016-11-24 19:25:01 -0800 | [diff] [blame] | 312 | l2output_vtr (node, config0, feature_bitmap0, b0, &next0); |
| 313 | l2output_vtr (node, config1, feature_bitmap1, b1, &next1); |
| 314 | l2output_vtr (node, config2, feature_bitmap2, b2, &next2); |
| 315 | l2output_vtr (node, config3, feature_bitmap3, b3, &next3); |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 316 | |
| 317 | /* |
| 318 | * Perform the split horizon check |
| 319 | * The check can only fail for non-zero shg's |
| 320 | */ |
Damjan Marion | dc5252b | 2016-11-24 19:25:01 -0800 | [diff] [blame] | 321 | if (PREDICT_FALSE (config0->shg + config1->shg + |
| 322 | config2->shg + config3->shg)) |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 323 | { |
| 324 | /* one of the checks might fail, check both */ |
| 325 | if (split_horizon_violation |
| 326 | (config0->shg, vnet_buffer (b0)->l2.shg)) |
| 327 | { |
| 328 | next0 = L2OUTPUT_NEXT_DROP; |
| 329 | b0->error = node->errors[L2OUTPUT_ERROR_SHG_DROP]; |
| 330 | } |
| 331 | if (split_horizon_violation |
| 332 | (config1->shg, vnet_buffer (b1)->l2.shg)) |
| 333 | { |
| 334 | next1 = L2OUTPUT_NEXT_DROP; |
| 335 | b1->error = node->errors[L2OUTPUT_ERROR_SHG_DROP]; |
| 336 | } |
Damjan Marion | dc5252b | 2016-11-24 19:25:01 -0800 | [diff] [blame] | 337 | if (split_horizon_violation |
| 338 | (config2->shg, vnet_buffer (b2)->l2.shg)) |
| 339 | { |
| 340 | next2 = L2OUTPUT_NEXT_DROP; |
| 341 | b2->error = node->errors[L2OUTPUT_ERROR_SHG_DROP]; |
| 342 | } |
| 343 | if (split_horizon_violation |
| 344 | (config3->shg, vnet_buffer (b3)->l2.shg)) |
| 345 | { |
| 346 | next3 = L2OUTPUT_NEXT_DROP; |
| 347 | b3->error = node->errors[L2OUTPUT_ERROR_SHG_DROP]; |
| 348 | } |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 349 | } |
| 350 | |
| 351 | /* verify speculative enqueues, maybe switch current next frame */ |
| 352 | /* if next0==next1==next_index then nothing special needs to be done */ |
Damjan Marion | dc5252b | 2016-11-24 19:25:01 -0800 | [diff] [blame] | 353 | vlib_validate_buffer_enqueue_x4 (vm, node, next_index, |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 354 | to_next, n_left_to_next, |
Damjan Marion | dc5252b | 2016-11-24 19:25:01 -0800 | [diff] [blame] | 355 | bi0, bi1, bi2, bi3, |
| 356 | next0, next1, next2, next3); |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 357 | } |
| 358 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 359 | while (n_left_from > 0 && n_left_to_next > 0) |
| 360 | { |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 361 | u32 bi0; |
| 362 | vlib_buffer_t *b0; |
| 363 | u32 next0; |
| 364 | u32 sw_if_index0; |
| 365 | ethernet_header_t *h0; |
| 366 | l2_output_config_t *config0; |
| 367 | u32 feature_bitmap0; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 368 | |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 369 | /* speculatively enqueue b0 to the current next frame */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 370 | bi0 = from[0]; |
| 371 | to_next[0] = bi0; |
| 372 | from += 1; |
| 373 | to_next += 1; |
| 374 | n_left_from -= 1; |
| 375 | n_left_to_next -= 1; |
| 376 | |
| 377 | b0 = vlib_get_buffer (vm, bi0); |
| 378 | |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 379 | sw_if_index0 = vnet_buffer (b0)->sw_if_index[VLIB_TX]; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 380 | |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 381 | if (PREDICT_FALSE ((node->flags & VLIB_NODE_FLAG_TRACE) |
| 382 | && (b0->flags & VLIB_BUFFER_IS_TRACED))) |
| 383 | { |
| 384 | l2output_trace_t *t = |
| 385 | vlib_add_trace (vm, node, b0, sizeof (*t)); |
| 386 | t->sw_if_index = sw_if_index0; |
| 387 | h0 = vlib_buffer_get_current (b0); |
| 388 | clib_memcpy (t->src, h0->src_address, 6); |
| 389 | clib_memcpy (t->dst, h0->dst_address, 6); |
| 390 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 391 | |
Damjan Marion | dc5252b | 2016-11-24 19:25:01 -0800 | [diff] [blame] | 392 | vlib_node_increment_counter (vm, l2output_node.index, |
| 393 | L2OUTPUT_ERROR_L2OUTPUT, 1); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 394 | |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 395 | /* Get config for the output interface */ |
| 396 | config0 = vec_elt_at_index (msm->configs, sw_if_index0); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 397 | |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 398 | /* |
| 399 | * Get features from the config |
| 400 | * TODO: mask out any non-applicable features |
| 401 | */ |
| 402 | feature_bitmap0 = config0->feature_bitmap; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 403 | |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 404 | /* Determine next node */ |
| 405 | l2_output_dispatch (msm->vlib_main, |
| 406 | msm->vnet_main, |
| 407 | node, |
| 408 | l2output_node.index, |
| 409 | &cached_sw_if_index, |
| 410 | &cached_next_index, |
| 411 | &msm->next_nodes, |
| 412 | b0, sw_if_index0, feature_bitmap0, &next0); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 413 | |
Damjan Marion | dc5252b | 2016-11-24 19:25:01 -0800 | [diff] [blame] | 414 | l2output_vtr (node, config0, feature_bitmap0, b0, &next0); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 415 | |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 416 | /* Perform the split horizon check */ |
| 417 | if (PREDICT_FALSE |
| 418 | (split_horizon_violation |
| 419 | (config0->shg, vnet_buffer (b0)->l2.shg))) |
| 420 | { |
| 421 | next0 = L2OUTPUT_NEXT_DROP; |
| 422 | b0->error = node->errors[L2OUTPUT_ERROR_SHG_DROP]; |
| 423 | } |
| 424 | |
| 425 | /* verify speculative enqueue, maybe switch current next frame */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 426 | vlib_validate_buffer_enqueue_x1 (vm, node, next_index, |
| 427 | to_next, n_left_to_next, |
| 428 | bi0, next0); |
| 429 | } |
| 430 | |
| 431 | vlib_put_next_frame (vm, node, next_index, n_left_to_next); |
| 432 | } |
| 433 | |
| 434 | return frame->n_vectors; |
| 435 | } |
| 436 | |
| 437 | |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 438 | /* *INDENT-OFF* */ |
Jean-Mickael Guerin | 8941ec2 | 2016-03-04 14:14:21 +0100 | [diff] [blame] | 439 | VLIB_REGISTER_NODE (l2output_node,static) = { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 440 | .function = l2output_node_fn, |
| 441 | .name = "l2-output", |
| 442 | .vector_size = sizeof (u32), |
| 443 | .format_trace = format_l2output_trace, |
| 444 | .type = VLIB_NODE_TYPE_INTERNAL, |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 445 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 446 | .n_errors = ARRAY_LEN(l2output_error_strings), |
| 447 | .error_strings = l2output_error_strings, |
| 448 | |
| 449 | .n_next_nodes = L2OUTPUT_N_NEXT, |
| 450 | |
| 451 | /* edit / add dispositions here */ |
| 452 | .next_nodes = { |
| 453 | [L2OUTPUT_NEXT_DROP] = "error-drop", |
John Lo | 0fc9bc1 | 2016-10-27 11:17:02 -0400 | [diff] [blame] | 454 | [L2OUTPUT_NEXT_BAD_INTF] = "l2-output-bad-intf", |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 455 | }, |
| 456 | }; |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 457 | /* *INDENT-ON* */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 458 | |
John Lo | 3ef822e | 2016-06-07 09:14:07 -0400 | [diff] [blame] | 459 | |
John Lo | 0fc9bc1 | 2016-10-27 11:17:02 -0400 | [diff] [blame] | 460 | #define foreach_l2output_bad_intf_error \ |
| 461 | _(DROP, "L2 output to interface not in L2 mode or deleted") |
John Lo | 3ef822e | 2016-06-07 09:14:07 -0400 | [diff] [blame] | 462 | |
John Lo | 0fc9bc1 | 2016-10-27 11:17:02 -0400 | [diff] [blame] | 463 | static char *l2output_bad_intf_error_strings[] = { |
John Lo | 3ef822e | 2016-06-07 09:14:07 -0400 | [diff] [blame] | 464 | #define _(sym,string) string, |
John Lo | 0fc9bc1 | 2016-10-27 11:17:02 -0400 | [diff] [blame] | 465 | foreach_l2output_bad_intf_error |
John Lo | 3ef822e | 2016-06-07 09:14:07 -0400 | [diff] [blame] | 466 | #undef _ |
| 467 | }; |
| 468 | |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 469 | typedef enum |
| 470 | { |
John Lo | 0fc9bc1 | 2016-10-27 11:17:02 -0400 | [diff] [blame] | 471 | #define _(sym,str) L2OUTPUT_BAD_INTF_ERROR_##sym, |
| 472 | foreach_l2output_bad_intf_error |
John Lo | 3ef822e | 2016-06-07 09:14:07 -0400 | [diff] [blame] | 473 | #undef _ |
John Lo | 0fc9bc1 | 2016-10-27 11:17:02 -0400 | [diff] [blame] | 474 | L2OUTPUT_BAD_INTF_N_ERROR, |
| 475 | } l2output_bad_intf_error_t; |
John Lo | 3ef822e | 2016-06-07 09:14:07 -0400 | [diff] [blame] | 476 | |
| 477 | |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 478 | /** |
John Lo | 0fc9bc1 | 2016-10-27 11:17:02 -0400 | [diff] [blame] | 479 | * Output node for interfaces/tunnels which was in L2 mode but were changed |
| 480 | * to L3 mode or possibly deleted thereafter. On changing forwarding mode |
| 481 | * of any tunnel/interface from L2 to L3, its entry in l2_output_main table |
| 482 | * next_nodes.output_node_index_vec[sw_if_index] MUST be set to the value of |
| 483 | * L2OUTPUT_NEXT_BAD_INTF. Thus, if there are stale entries in the L2FIB for |
| 484 | * this sw_if_index, l2-output will send packets for this sw_if_index to the |
| 485 | * l2-output-bad-intf node which just setup the proper drop reason before |
| 486 | * sending packets to the error-drop node to drop the packet. Then, stale L2FIB |
| 487 | * entries for delted tunnels won't cause possible packet or memory corrpution. |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 488 | */ |
John Lo | 0fc9bc1 | 2016-10-27 11:17:02 -0400 | [diff] [blame] | 489 | static vlib_node_registration_t l2output_bad_intf_node; |
John Lo | 3ef822e | 2016-06-07 09:14:07 -0400 | [diff] [blame] | 490 | |
| 491 | static uword |
John Lo | 0fc9bc1 | 2016-10-27 11:17:02 -0400 | [diff] [blame] | 492 | l2output_bad_intf_node_fn (vlib_main_t * vm, |
| 493 | vlib_node_runtime_t * node, vlib_frame_t * frame) |
John Lo | 3ef822e | 2016-06-07 09:14:07 -0400 | [diff] [blame] | 494 | { |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 495 | u32 n_left_from, *from, *to_next; |
John Lo | 3ef822e | 2016-06-07 09:14:07 -0400 | [diff] [blame] | 496 | l2output_next_t next_index = 0; |
| 497 | |
| 498 | from = vlib_frame_vector_args (frame); |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 499 | n_left_from = frame->n_vectors; /* number of packets to process */ |
John Lo | 3ef822e | 2016-06-07 09:14:07 -0400 | [diff] [blame] | 500 | |
| 501 | while (n_left_from > 0) |
| 502 | { |
| 503 | u32 n_left_to_next; |
| 504 | |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 505 | /* get space to enqueue frame to graph node "next_index" */ |
| 506 | vlib_get_next_frame (vm, node, next_index, to_next, n_left_to_next); |
John Lo | 3ef822e | 2016-06-07 09:14:07 -0400 | [diff] [blame] | 507 | |
| 508 | while (n_left_from >= 4 && n_left_to_next >= 2) |
| 509 | { |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 510 | u32 bi0, bi1; |
| 511 | vlib_buffer_t *b0, *b1; |
John Lo | 3ef822e | 2016-06-07 09:14:07 -0400 | [diff] [blame] | 512 | |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 513 | to_next[0] = bi0 = from[0]; |
John Lo | 3ef822e | 2016-06-07 09:14:07 -0400 | [diff] [blame] | 514 | to_next[1] = bi1 = from[1]; |
| 515 | from += 2; |
| 516 | to_next += 2; |
| 517 | n_left_from -= 2; |
| 518 | n_left_to_next -= 2; |
| 519 | b0 = vlib_get_buffer (vm, bi0); |
| 520 | b1 = vlib_get_buffer (vm, bi1); |
John Lo | 0fc9bc1 | 2016-10-27 11:17:02 -0400 | [diff] [blame] | 521 | b0->error = node->errors[L2OUTPUT_BAD_INTF_ERROR_DROP]; |
| 522 | b1->error = node->errors[L2OUTPUT_BAD_INTF_ERROR_DROP]; |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 523 | } |
| 524 | |
John Lo | 3ef822e | 2016-06-07 09:14:07 -0400 | [diff] [blame] | 525 | while (n_left_from > 0 && n_left_to_next > 0) |
| 526 | { |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 527 | u32 bi0; |
| 528 | vlib_buffer_t *b0; |
John Lo | 3ef822e | 2016-06-07 09:14:07 -0400 | [diff] [blame] | 529 | |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 530 | bi0 = from[0]; |
John Lo | 3ef822e | 2016-06-07 09:14:07 -0400 | [diff] [blame] | 531 | to_next[0] = bi0; |
| 532 | from += 1; |
| 533 | to_next += 1; |
| 534 | n_left_from -= 1; |
| 535 | n_left_to_next -= 1; |
| 536 | b0 = vlib_get_buffer (vm, bi0); |
John Lo | 0fc9bc1 | 2016-10-27 11:17:02 -0400 | [diff] [blame] | 537 | b0->error = node->errors[L2OUTPUT_BAD_INTF_ERROR_DROP]; |
John Lo | 3ef822e | 2016-06-07 09:14:07 -0400 | [diff] [blame] | 538 | } |
| 539 | |
| 540 | vlib_put_next_frame (vm, node, next_index, n_left_to_next); |
| 541 | } |
| 542 | |
| 543 | return frame->n_vectors; |
| 544 | } |
| 545 | |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 546 | /* *INDENT-OFF* */ |
John Lo | 0fc9bc1 | 2016-10-27 11:17:02 -0400 | [diff] [blame] | 547 | VLIB_REGISTER_NODE (l2output_bad_intf_node,static) = { |
| 548 | .function = l2output_bad_intf_node_fn, |
| 549 | .name = "l2-output-bad-intf", |
John Lo | 3ef822e | 2016-06-07 09:14:07 -0400 | [diff] [blame] | 550 | .vector_size = sizeof (u32), |
| 551 | .type = VLIB_NODE_TYPE_INTERNAL, |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 552 | |
John Lo | 0fc9bc1 | 2016-10-27 11:17:02 -0400 | [diff] [blame] | 553 | .n_errors = ARRAY_LEN(l2output_bad_intf_error_strings), |
| 554 | .error_strings = l2output_bad_intf_error_strings, |
John Lo | 3ef822e | 2016-06-07 09:14:07 -0400 | [diff] [blame] | 555 | |
| 556 | .n_next_nodes = 1, |
| 557 | |
| 558 | /* edit / add dispositions here */ |
| 559 | .next_nodes = { |
| 560 | [0] = "error-drop", |
| 561 | }, |
| 562 | }; |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 563 | /* *INDENT-ON* */ |
John Lo | 3ef822e | 2016-06-07 09:14:07 -0400 | [diff] [blame] | 564 | |
| 565 | |
Damjan Marion | 1c80e83 | 2016-05-11 23:07:18 +0200 | [diff] [blame] | 566 | VLIB_NODE_FUNCTION_MULTIARCH (l2output_node, l2output_node_fn) |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 567 | clib_error_t *l2output_init (vlib_main_t * vm) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 568 | { |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 569 | l2output_main_t *mp = &l2output_main; |
| 570 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 571 | mp->vlib_main = vm; |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 572 | mp->vnet_main = vnet_get_main (); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 573 | |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 574 | /* Create the config vector */ |
| 575 | vec_validate (mp->configs, 100); |
| 576 | /* Until we hook up the CLI config, just create 100 sw interface entries and zero them */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 577 | |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 578 | /* Initialize the feature next-node indexes */ |
| 579 | feat_bitmap_init_next_nodes (vm, |
| 580 | l2output_node.index, |
| 581 | L2OUTPUT_N_FEAT, |
| 582 | l2output_get_feat_names (), |
| 583 | mp->next_nodes.feat_next_node_index); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 584 | |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 585 | /* Initialize the output node mapping table */ |
| 586 | l2output_init_output_node_vec (&mp->next_nodes.output_node_index_vec); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 587 | |
| 588 | return 0; |
| 589 | } |
| 590 | |
| 591 | VLIB_INIT_FUNCTION (l2output_init); |
| 592 | |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 593 | typedef struct |
| 594 | { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 595 | u32 node_index; |
| 596 | u32 sw_if_index; |
| 597 | } output_node_mapping_rpc_args_t; |
| 598 | |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 599 | static void output_node_rpc_callback (output_node_mapping_rpc_args_t * a); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 600 | |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 601 | static void |
| 602 | output_node_mapping_send_rpc (u32 node_index, u32 sw_if_index) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 603 | { |
| 604 | output_node_mapping_rpc_args_t args; |
Dave Barach | f9bd620 | 2015-12-14 13:22:11 -0500 | [diff] [blame] | 605 | void vl_api_rpc_call_main_thread (void *fp, u8 * data, u32 data_length); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 606 | |
| 607 | args.node_index = node_index; |
| 608 | args.sw_if_index = sw_if_index; |
| 609 | |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 610 | vl_api_rpc_call_main_thread (output_node_rpc_callback, |
| 611 | (u8 *) & args, sizeof (args)); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 612 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 613 | |
| 614 | |
Chris Luke | 16bcf7d | 2016-09-01 14:31:46 -0400 | [diff] [blame] | 615 | /** Create a mapping in the next node mapping table for the given sw_if_index. */ |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 616 | u32 |
| 617 | l2output_create_output_node_mapping (vlib_main_t * vlib_main, vnet_main_t * vnet_main, u32 node_index, /* index of current node */ |
| 618 | u32 * output_node_index_vec, |
| 619 | u32 sw_if_index) |
| 620 | { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 621 | |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 622 | u32 next; /* index of next graph node */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 623 | vnet_hw_interface_t *hw0; |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 624 | u32 *node; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 625 | |
Damjan Marion | db2c6c6 | 2015-12-16 19:31:59 +0100 | [diff] [blame] | 626 | hw0 = vnet_get_sup_hw_interface (vnet_main, sw_if_index); |
| 627 | |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 628 | uword cpu_number; |
Shesha Sreenivasamurthy | 49be7f0 | 2016-01-14 14:11:38 -0800 | [diff] [blame] | 629 | |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 630 | cpu_number = os_get_cpu_number (); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 631 | |
| 632 | if (cpu_number) |
| 633 | { |
Damjan Marion | db2c6c6 | 2015-12-16 19:31:59 +0100 | [diff] [blame] | 634 | u32 oldflags; |
Damjan Marion | db2c6c6 | 2015-12-16 19:31:59 +0100 | [diff] [blame] | 635 | |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 636 | oldflags = __sync_fetch_and_or (&hw0->flags, |
| 637 | VNET_HW_INTERFACE_FLAG_L2OUTPUT_MAPPED); |
Damjan Marion | db2c6c6 | 2015-12-16 19:31:59 +0100 | [diff] [blame] | 638 | |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 639 | if ((oldflags & VNET_HW_INTERFACE_FLAG_L2OUTPUT_MAPPED)) |
| 640 | return L2OUTPUT_NEXT_DROP; |
Damjan Marion | db2c6c6 | 2015-12-16 19:31:59 +0100 | [diff] [blame] | 641 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 642 | output_node_mapping_send_rpc (node_index, sw_if_index); |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 643 | return L2OUTPUT_NEXT_DROP; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 644 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 645 | |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 646 | /* dynamically create graph node arc */ |
| 647 | next = vlib_node_add_next (vlib_main, node_index, hw0->output_node_index); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 648 | |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 649 | /* Initialize vector with the mapping */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 650 | |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 651 | node = vec_elt_at_index (output_node_index_vec, sw_if_index); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 652 | *node = next; |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 653 | |
Damjan Marion | dd93103 | 2016-09-13 17:00:41 +0200 | [diff] [blame] | 654 | /* reset mapping bit, includes memory barrier */ |
| 655 | __sync_fetch_and_and (&hw0->flags, ~VNET_HW_INTERFACE_FLAG_L2OUTPUT_MAPPED); |
| 656 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 657 | return next; |
| 658 | } |
| 659 | |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 660 | void |
| 661 | output_node_rpc_callback (output_node_mapping_rpc_args_t * a) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 662 | { |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 663 | vlib_main_t *vm = vlib_get_main (); |
| 664 | vnet_main_t *vnm = vnet_get_main (); |
| 665 | l2output_main_t *mp = &l2output_main; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 666 | |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 667 | (void) l2output_create_output_node_mapping |
| 668 | (vm, vnm, a->node_index, mp->next_nodes.output_node_index_vec, |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 669 | a->sw_if_index); |
| 670 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 671 | |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 672 | /* Get a pointer to the config for the given interface */ |
| 673 | l2_output_config_t * |
| 674 | l2output_intf_config (u32 sw_if_index) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 675 | { |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 676 | l2output_main_t *mp = &l2output_main; |
| 677 | |
| 678 | vec_validate (mp->configs, sw_if_index); |
| 679 | return vec_elt_at_index (mp->configs, sw_if_index); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 680 | } |
| 681 | |
Chris Luke | 16bcf7d | 2016-09-01 14:31:46 -0400 | [diff] [blame] | 682 | /** Enable (or disable) the feature in the bitmap for the given interface. */ |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 683 | void |
| 684 | l2output_intf_bitmap_enable (u32 sw_if_index, u32 feature_bitmap, u32 enable) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 685 | { |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 686 | l2output_main_t *mp = &l2output_main; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 687 | l2_output_config_t *config; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 688 | |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 689 | vec_validate (mp->configs, sw_if_index); |
| 690 | config = vec_elt_at_index (mp->configs, sw_if_index); |
| 691 | |
| 692 | if (enable) |
| 693 | { |
| 694 | config->feature_bitmap |= feature_bitmap; |
| 695 | } |
| 696 | else |
| 697 | { |
| 698 | config->feature_bitmap &= ~feature_bitmap; |
| 699 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 700 | } |
Dave Barach | 97d8dc2 | 2016-08-15 15:31:15 -0400 | [diff] [blame] | 701 | |
| 702 | /* |
| 703 | * fd.io coding-style-patch-verification: ON |
| 704 | * |
| 705 | * Local Variables: |
| 706 | * eval: (c-set-style "gnu") |
| 707 | * End: |
| 708 | */ |