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