blob: 953fcb0222a73a7d0a82af895df1a8534726ffde [file] [log] [blame]
Ed Warnickecb9cada2015-12-08 15:45:58 -07001/*
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 Barach97d8dc22016-08-15 15:31:15 -040030/* Feature graph node names */
31static char *l2output_feat_names[] = {
Ed Warnickecb9cada2015-12-08 15:45:58 -070032#define _(sym,name) name,
33 foreach_l2output_feat
34#undef _
35};
36
Dave Barach97d8dc22016-08-15 15:31:15 -040037char **
38l2output_get_feat_names (void)
39{
Ed Warnickecb9cada2015-12-08 15:45:58 -070040 return l2output_feat_names;
41}
42
43l2output_main_t l2output_main;
44
Dave Barach97d8dc22016-08-15 15:31:15 -040045typedef struct
46{
47 /* per-pkt trace data */
Ed Warnickecb9cada2015-12-08 15:45:58 -070048 u8 src[6];
49 u8 dst[6];
50 u32 sw_if_index;
51} l2output_trace_t;
52
53/* packet trace format function */
Dave Barach97d8dc22016-08-15 15:31:15 -040054static u8 *
55format_l2output_trace (u8 * s, va_list * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -070056{
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 Barach97d8dc22016-08-15 15:31:15 -040059 l2output_trace_t *t = va_arg (*args, l2output_trace_t *);
60
Ed Warnickecb9cada2015-12-08 15:45:58 -070061 s = format (s, "l2-output: sw_if_index %d dst %U src %U",
62 t->sw_if_index,
Dave Barach97d8dc22016-08-15 15:31:15 -040063 format_ethernet_address, t->dst,
64 format_ethernet_address, t->src);
Ed Warnickecb9cada2015-12-08 15:45:58 -070065 return s;
66}
67
68
Dave Barach97d8dc22016-08-15 15:31:15 -040069static char *l2output_error_strings[] = {
Ed Warnickecb9cada2015-12-08 15:45:58 -070070#define _(sym,string) string,
71 foreach_l2output_error
72#undef _
73};
74
Dave Barach97d8dc22016-08-15 15:31:15 -040075/**
Chris Luke16bcf7d2016-09-01 14:31:46 -040076 * Check for split horizon violations.
77 * Return 0 if split horizon check passes, otherwise return non-zero.
Dave Barach97d8dc22016-08-15 15:31:15 -040078 * Packets should not be transmitted out an interface with the same
Chris Luke16bcf7d2016-09-01 14:31:46 -040079 * split-horizon group as the input interface, except if the @c shg is 0
Dave Barach97d8dc22016-08-15 15:31:15 -040080 * in which case the check always passes.
81 */
Ed Warnickecb9cada2015-12-08 15:45:58 -070082static_always_inline u32
83split_horizon_violation (u8 shg1, u8 shg2)
84{
Dave Barach97d8dc22016-08-15 15:31:15 -040085 if (PREDICT_TRUE (shg1 == 0))
86 {
87 return 0;
88 }
89 else
90 {
91 return shg1 == shg2;
92 }
Ed Warnickecb9cada2015-12-08 15:45:58 -070093}
94
Damjan Mariondc5252b2016-11-24 19:25:01 -080095static_always_inline void
96l2output_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 Warnickecb9cada2015-12-08 15:45:58 -0700140
Jean-Mickael Guerin8941ec22016-03-04 14:14:21 +0100141static vlib_node_registration_t l2output_node;
142
Ed Warnickecb9cada2015-12-08 15:45:58 -0700143static uword
144l2output_node_fn (vlib_main_t * vm,
Dave Barach97d8dc22016-08-15 15:31:15 -0400145 vlib_node_runtime_t * node, vlib_frame_t * frame)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700146{
Dave Barach97d8dc22016-08-15 15:31:15 -0400147 u32 n_left_from, *from, *to_next;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700148 l2output_next_t next_index;
Dave Barach97d8dc22016-08-15 15:31:15 -0400149 l2output_main_t *msm = &l2output_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700150 u32 cached_sw_if_index;
151 u32 cached_next_index;
152
153 /* Invalidate cache */
154 cached_sw_if_index = ~0;
Dave Barach97d8dc22016-08-15 15:31:15 -0400155 cached_next_index = ~0; /* warning be gone */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700156
157 from = vlib_frame_vector_args (frame);
Dave Barach97d8dc22016-08-15 15:31:15 -0400158 n_left_from = frame->n_vectors; /* number of packets to process */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700159 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 Barach97d8dc22016-08-15 15:31:15 -0400166 vlib_get_next_frame (vm, node, next_index, to_next, n_left_to_next);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700167
Damjan Mariondc5252b2016-11-24 19:25:01 -0800168 while (n_left_from >= 8 && n_left_to_next >= 4)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700169 {
Damjan Mariondc5252b2016-11-24 19:25:01 -0800170 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 Barach97d8dc22016-08-15 15:31:15 -0400176 u32 feature_bitmap0, feature_bitmap1;
Damjan Mariondc5252b2016-11-24 19:25:01 -0800177 u32 feature_bitmap2, feature_bitmap3;
Dave Barach97d8dc22016-08-15 15:31:15 -0400178
Ed Warnickecb9cada2015-12-08 15:45:58 -0700179 /* Prefetch next iteration. */
180 {
Damjan Mariondc5252b2016-11-24 19:25:01 -0800181 vlib_buffer_t *p4, *p5, *p6, *p7;
Dave Barach97d8dc22016-08-15 15:31:15 -0400182
Ed Warnickecb9cada2015-12-08 15:45:58 -0700183 p4 = vlib_get_buffer (vm, from[4]);
184 p5 = vlib_get_buffer (vm, from[5]);
Damjan Mariondc5252b2016-11-24 19:25:01 -0800185 p6 = vlib_get_buffer (vm, from[6]);
186 p7 = vlib_get_buffer (vm, from[7]);
Dave Barach97d8dc22016-08-15 15:31:15 -0400187
188 /* Prefetch the buffer header for the N+2 loop iteration */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700189 vlib_prefetch_buffer_header (p4, LOAD);
190 vlib_prefetch_buffer_header (p5, LOAD);
Damjan Mariondc5252b2016-11-24 19:25:01 -0800191 vlib_prefetch_buffer_header (p6, LOAD);
192 vlib_prefetch_buffer_header (p7, LOAD);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700193 }
194
Dave Barach97d8dc22016-08-15 15:31:15 -0400195 /* speculatively enqueue b0 and b1 to the current next frame */
196 /* bi is "buffer index", b is pointer to the buffer */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700197 to_next[0] = bi0 = from[0];
198 to_next[1] = bi1 = from[1];
Damjan Mariondc5252b2016-11-24 19:25:01 -0800199 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 Warnickecb9cada2015-12-08 15:45:58 -0700205
206 b0 = vlib_get_buffer (vm, bi0);
207 b1 = vlib_get_buffer (vm, bi1);
Damjan Mariondc5252b2016-11-24 19:25:01 -0800208 b2 = vlib_get_buffer (vm, bi2);
209 b3 = vlib_get_buffer (vm, bi3);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700210
Dave Barach97d8dc22016-08-15 15:31:15 -0400211 /* 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 Mariondc5252b2016-11-24 19:25:01 -0800214 sw_if_index2 = vnet_buffer (b2)->sw_if_index[VLIB_TX];
215 sw_if_index3 = vnet_buffer (b3)->sw_if_index[VLIB_TX];
Ed Warnickecb9cada2015-12-08 15:45:58 -0700216
Dave Barach97d8dc22016-08-15 15:31:15 -0400217 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 Mariondc5252b2016-11-24 19:25:01 -0800221 h2 = vlib_buffer_get_current (b2);
222 h3 = vlib_buffer_get_current (b3);
Dave Barach97d8dc22016-08-15 15:31:15 -0400223 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 Mariondc5252b2016-11-24 19:25:01 -0800239 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 Warnickecb9cada2015-12-08 15:45:58 -0700255 }
256
Damjan Mariondc5252b2016-11-24 19:25:01 -0800257 vlib_node_increment_counter (vm, l2output_node.index,
258 L2OUTPUT_ERROR_L2OUTPUT, 4);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700259
Dave Barach97d8dc22016-08-15 15:31:15 -0400260 /* 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 Mariondc5252b2016-11-24 19:25:01 -0800263 config2 = vec_elt_at_index (msm->configs, sw_if_index2);
264 config3 = vec_elt_at_index (msm->configs, sw_if_index3);
Dave Barach97d8dc22016-08-15 15:31:15 -0400265
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 Mariondc5252b2016-11-24 19:25:01 -0800272 feature_bitmap2 = config2->feature_bitmap;
273 feature_bitmap3 = config3->feature_bitmap;
Dave Barach97d8dc22016-08-15 15:31:15 -0400274
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 Mariondc5252b2016-11-24 19:25:01 -0800294 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 Kotucek95300d12016-08-26 16:11:36 +0200302
Damjan Mariondc5252b2016-11-24 19:25:01 -0800303 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 Kotucek95300d12016-08-26 16:11:36 +0200311
Damjan Mariondc5252b2016-11-24 19:25:01 -0800312 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 Barach97d8dc22016-08-15 15:31:15 -0400316
317 /*
318 * Perform the split horizon check
319 * The check can only fail for non-zero shg's
320 */
Damjan Mariondc5252b2016-11-24 19:25:01 -0800321 if (PREDICT_FALSE (config0->shg + config1->shg +
322 config2->shg + config3->shg))
Dave Barach97d8dc22016-08-15 15:31:15 -0400323 {
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 Mariondc5252b2016-11-24 19:25:01 -0800337 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 Barach97d8dc22016-08-15 15:31:15 -0400349 }
350
351 /* verify speculative enqueues, maybe switch current next frame */
352 /* if next0==next1==next_index then nothing special needs to be done */
Damjan Mariondc5252b2016-11-24 19:25:01 -0800353 vlib_validate_buffer_enqueue_x4 (vm, node, next_index,
Dave Barach97d8dc22016-08-15 15:31:15 -0400354 to_next, n_left_to_next,
Damjan Mariondc5252b2016-11-24 19:25:01 -0800355 bi0, bi1, bi2, bi3,
356 next0, next1, next2, next3);
Dave Barach97d8dc22016-08-15 15:31:15 -0400357 }
358
Ed Warnickecb9cada2015-12-08 15:45:58 -0700359 while (n_left_from > 0 && n_left_to_next > 0)
360 {
Dave Barach97d8dc22016-08-15 15:31:15 -0400361 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 Warnickecb9cada2015-12-08 15:45:58 -0700368
Dave Barach97d8dc22016-08-15 15:31:15 -0400369 /* speculatively enqueue b0 to the current next frame */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700370 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 Barach97d8dc22016-08-15 15:31:15 -0400379 sw_if_index0 = vnet_buffer (b0)->sw_if_index[VLIB_TX];
Ed Warnickecb9cada2015-12-08 15:45:58 -0700380
Dave Barach97d8dc22016-08-15 15:31:15 -0400381 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 Warnickecb9cada2015-12-08 15:45:58 -0700391
Damjan Mariondc5252b2016-11-24 19:25:01 -0800392 vlib_node_increment_counter (vm, l2output_node.index,
393 L2OUTPUT_ERROR_L2OUTPUT, 1);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700394
Dave Barach97d8dc22016-08-15 15:31:15 -0400395 /* Get config for the output interface */
396 config0 = vec_elt_at_index (msm->configs, sw_if_index0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700397
Dave Barach97d8dc22016-08-15 15:31:15 -0400398 /*
399 * Get features from the config
400 * TODO: mask out any non-applicable features
401 */
402 feature_bitmap0 = config0->feature_bitmap;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700403
Dave Barach97d8dc22016-08-15 15:31:15 -0400404 /* 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 Warnickecb9cada2015-12-08 15:45:58 -0700413
Damjan Mariondc5252b2016-11-24 19:25:01 -0800414 l2output_vtr (node, config0, feature_bitmap0, b0, &next0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700415
Dave Barach97d8dc22016-08-15 15:31:15 -0400416 /* 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 Warnickecb9cada2015-12-08 15:45:58 -0700426 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 Barach97d8dc22016-08-15 15:31:15 -0400438/* *INDENT-OFF* */
Jean-Mickael Guerin8941ec22016-03-04 14:14:21 +0100439VLIB_REGISTER_NODE (l2output_node,static) = {
Ed Warnickecb9cada2015-12-08 15:45:58 -0700440 .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 Barach97d8dc22016-08-15 15:31:15 -0400445
Ed Warnickecb9cada2015-12-08 15:45:58 -0700446 .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 Lo0fc9bc12016-10-27 11:17:02 -0400454 [L2OUTPUT_NEXT_BAD_INTF] = "l2-output-bad-intf",
Ed Warnickecb9cada2015-12-08 15:45:58 -0700455 },
456};
Dave Barach97d8dc22016-08-15 15:31:15 -0400457/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700458
John Lo3ef822e2016-06-07 09:14:07 -0400459
John Lo0fc9bc12016-10-27 11:17:02 -0400460#define foreach_l2output_bad_intf_error \
461_(DROP, "L2 output to interface not in L2 mode or deleted")
John Lo3ef822e2016-06-07 09:14:07 -0400462
John Lo0fc9bc12016-10-27 11:17:02 -0400463static char *l2output_bad_intf_error_strings[] = {
John Lo3ef822e2016-06-07 09:14:07 -0400464#define _(sym,string) string,
John Lo0fc9bc12016-10-27 11:17:02 -0400465 foreach_l2output_bad_intf_error
John Lo3ef822e2016-06-07 09:14:07 -0400466#undef _
467};
468
Dave Barach97d8dc22016-08-15 15:31:15 -0400469typedef enum
470{
John Lo0fc9bc12016-10-27 11:17:02 -0400471#define _(sym,str) L2OUTPUT_BAD_INTF_ERROR_##sym,
472 foreach_l2output_bad_intf_error
John Lo3ef822e2016-06-07 09:14:07 -0400473#undef _
John Lo0fc9bc12016-10-27 11:17:02 -0400474 L2OUTPUT_BAD_INTF_N_ERROR,
475} l2output_bad_intf_error_t;
John Lo3ef822e2016-06-07 09:14:07 -0400476
477
Dave Barach97d8dc22016-08-15 15:31:15 -0400478/**
John Lo0fc9bc12016-10-27 11:17:02 -0400479 * 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 Barach97d8dc22016-08-15 15:31:15 -0400488 */
John Lo0fc9bc12016-10-27 11:17:02 -0400489static vlib_node_registration_t l2output_bad_intf_node;
John Lo3ef822e2016-06-07 09:14:07 -0400490
491static uword
John Lo0fc9bc12016-10-27 11:17:02 -0400492l2output_bad_intf_node_fn (vlib_main_t * vm,
493 vlib_node_runtime_t * node, vlib_frame_t * frame)
John Lo3ef822e2016-06-07 09:14:07 -0400494{
Dave Barach97d8dc22016-08-15 15:31:15 -0400495 u32 n_left_from, *from, *to_next;
John Lo3ef822e2016-06-07 09:14:07 -0400496 l2output_next_t next_index = 0;
497
498 from = vlib_frame_vector_args (frame);
Dave Barach97d8dc22016-08-15 15:31:15 -0400499 n_left_from = frame->n_vectors; /* number of packets to process */
John Lo3ef822e2016-06-07 09:14:07 -0400500
501 while (n_left_from > 0)
502 {
503 u32 n_left_to_next;
504
Dave Barach97d8dc22016-08-15 15:31:15 -0400505 /* 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 Lo3ef822e2016-06-07 09:14:07 -0400507
508 while (n_left_from >= 4 && n_left_to_next >= 2)
509 {
Dave Barach97d8dc22016-08-15 15:31:15 -0400510 u32 bi0, bi1;
511 vlib_buffer_t *b0, *b1;
John Lo3ef822e2016-06-07 09:14:07 -0400512
Dave Barach97d8dc22016-08-15 15:31:15 -0400513 to_next[0] = bi0 = from[0];
John Lo3ef822e2016-06-07 09:14:07 -0400514 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 Lo0fc9bc12016-10-27 11:17:02 -0400521 b0->error = node->errors[L2OUTPUT_BAD_INTF_ERROR_DROP];
522 b1->error = node->errors[L2OUTPUT_BAD_INTF_ERROR_DROP];
Dave Barach97d8dc22016-08-15 15:31:15 -0400523 }
524
John Lo3ef822e2016-06-07 09:14:07 -0400525 while (n_left_from > 0 && n_left_to_next > 0)
526 {
Dave Barach97d8dc22016-08-15 15:31:15 -0400527 u32 bi0;
528 vlib_buffer_t *b0;
John Lo3ef822e2016-06-07 09:14:07 -0400529
Dave Barach97d8dc22016-08-15 15:31:15 -0400530 bi0 = from[0];
John Lo3ef822e2016-06-07 09:14:07 -0400531 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 Lo0fc9bc12016-10-27 11:17:02 -0400537 b0->error = node->errors[L2OUTPUT_BAD_INTF_ERROR_DROP];
John Lo3ef822e2016-06-07 09:14:07 -0400538 }
539
540 vlib_put_next_frame (vm, node, next_index, n_left_to_next);
541 }
542
543 return frame->n_vectors;
544}
545
Dave Barach97d8dc22016-08-15 15:31:15 -0400546/* *INDENT-OFF* */
John Lo0fc9bc12016-10-27 11:17:02 -0400547VLIB_REGISTER_NODE (l2output_bad_intf_node,static) = {
548 .function = l2output_bad_intf_node_fn,
549 .name = "l2-output-bad-intf",
John Lo3ef822e2016-06-07 09:14:07 -0400550 .vector_size = sizeof (u32),
551 .type = VLIB_NODE_TYPE_INTERNAL,
Dave Barach97d8dc22016-08-15 15:31:15 -0400552
John Lo0fc9bc12016-10-27 11:17:02 -0400553 .n_errors = ARRAY_LEN(l2output_bad_intf_error_strings),
554 .error_strings = l2output_bad_intf_error_strings,
John Lo3ef822e2016-06-07 09:14:07 -0400555
556 .n_next_nodes = 1,
557
558 /* edit / add dispositions here */
559 .next_nodes = {
560 [0] = "error-drop",
561 },
562};
Dave Barach97d8dc22016-08-15 15:31:15 -0400563/* *INDENT-ON* */
John Lo3ef822e2016-06-07 09:14:07 -0400564
565
Damjan Marion1c80e832016-05-11 23:07:18 +0200566VLIB_NODE_FUNCTION_MULTIARCH (l2output_node, l2output_node_fn)
Dave Barach97d8dc22016-08-15 15:31:15 -0400567 clib_error_t *l2output_init (vlib_main_t * vm)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700568{
Dave Barach97d8dc22016-08-15 15:31:15 -0400569 l2output_main_t *mp = &l2output_main;
570
Ed Warnickecb9cada2015-12-08 15:45:58 -0700571 mp->vlib_main = vm;
Dave Barach97d8dc22016-08-15 15:31:15 -0400572 mp->vnet_main = vnet_get_main ();
Ed Warnickecb9cada2015-12-08 15:45:58 -0700573
Dave Barach97d8dc22016-08-15 15:31:15 -0400574 /* 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 Warnickecb9cada2015-12-08 15:45:58 -0700577
Dave Barach97d8dc22016-08-15 15:31:15 -0400578 /* 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 Warnickecb9cada2015-12-08 15:45:58 -0700584
Dave Barach97d8dc22016-08-15 15:31:15 -0400585 /* Initialize the output node mapping table */
586 l2output_init_output_node_vec (&mp->next_nodes.output_node_index_vec);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700587
588 return 0;
589}
590
591VLIB_INIT_FUNCTION (l2output_init);
592
Dave Barach97d8dc22016-08-15 15:31:15 -0400593typedef struct
594{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700595 u32 node_index;
596 u32 sw_if_index;
597} output_node_mapping_rpc_args_t;
598
Dave Barach97d8dc22016-08-15 15:31:15 -0400599static void output_node_rpc_callback (output_node_mapping_rpc_args_t * a);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700600
Dave Barach97d8dc22016-08-15 15:31:15 -0400601static void
602output_node_mapping_send_rpc (u32 node_index, u32 sw_if_index)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700603{
604 output_node_mapping_rpc_args_t args;
Dave Barachf9bd6202015-12-14 13:22:11 -0500605 void vl_api_rpc_call_main_thread (void *fp, u8 * data, u32 data_length);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700606
607 args.node_index = node_index;
608 args.sw_if_index = sw_if_index;
609
Dave Barach97d8dc22016-08-15 15:31:15 -0400610 vl_api_rpc_call_main_thread (output_node_rpc_callback,
611 (u8 *) & args, sizeof (args));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700612}
Ed Warnickecb9cada2015-12-08 15:45:58 -0700613
614
Chris Luke16bcf7d2016-09-01 14:31:46 -0400615/** Create a mapping in the next node mapping table for the given sw_if_index. */
Dave Barach97d8dc22016-08-15 15:31:15 -0400616u32
617l2output_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 Warnickecb9cada2015-12-08 15:45:58 -0700621
Dave Barach97d8dc22016-08-15 15:31:15 -0400622 u32 next; /* index of next graph node */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700623 vnet_hw_interface_t *hw0;
Dave Barach97d8dc22016-08-15 15:31:15 -0400624 u32 *node;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700625
Damjan Mariondb2c6c62015-12-16 19:31:59 +0100626 hw0 = vnet_get_sup_hw_interface (vnet_main, sw_if_index);
627
Dave Barach97d8dc22016-08-15 15:31:15 -0400628 uword cpu_number;
Shesha Sreenivasamurthy49be7f02016-01-14 14:11:38 -0800629
Dave Barach97d8dc22016-08-15 15:31:15 -0400630 cpu_number = os_get_cpu_number ();
Ed Warnickecb9cada2015-12-08 15:45:58 -0700631
632 if (cpu_number)
633 {
Damjan Mariondb2c6c62015-12-16 19:31:59 +0100634 u32 oldflags;
Damjan Mariondb2c6c62015-12-16 19:31:59 +0100635
Dave Barach97d8dc22016-08-15 15:31:15 -0400636 oldflags = __sync_fetch_and_or (&hw0->flags,
637 VNET_HW_INTERFACE_FLAG_L2OUTPUT_MAPPED);
Damjan Mariondb2c6c62015-12-16 19:31:59 +0100638
Dave Barach97d8dc22016-08-15 15:31:15 -0400639 if ((oldflags & VNET_HW_INTERFACE_FLAG_L2OUTPUT_MAPPED))
640 return L2OUTPUT_NEXT_DROP;
Damjan Mariondb2c6c62015-12-16 19:31:59 +0100641
Ed Warnickecb9cada2015-12-08 15:45:58 -0700642 output_node_mapping_send_rpc (node_index, sw_if_index);
Dave Barach97d8dc22016-08-15 15:31:15 -0400643 return L2OUTPUT_NEXT_DROP;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700644 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700645
Dave Barach97d8dc22016-08-15 15:31:15 -0400646 /* dynamically create graph node arc */
647 next = vlib_node_add_next (vlib_main, node_index, hw0->output_node_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700648
Dave Barach97d8dc22016-08-15 15:31:15 -0400649 /* Initialize vector with the mapping */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700650
Dave Barach97d8dc22016-08-15 15:31:15 -0400651 node = vec_elt_at_index (output_node_index_vec, sw_if_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700652 *node = next;
Dave Barach97d8dc22016-08-15 15:31:15 -0400653
Damjan Mariondd931032016-09-13 17:00:41 +0200654 /* reset mapping bit, includes memory barrier */
655 __sync_fetch_and_and (&hw0->flags, ~VNET_HW_INTERFACE_FLAG_L2OUTPUT_MAPPED);
656
Ed Warnickecb9cada2015-12-08 15:45:58 -0700657 return next;
658}
659
Dave Barach97d8dc22016-08-15 15:31:15 -0400660void
661output_node_rpc_callback (output_node_mapping_rpc_args_t * a)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700662{
Dave Barach97d8dc22016-08-15 15:31:15 -0400663 vlib_main_t *vm = vlib_get_main ();
664 vnet_main_t *vnm = vnet_get_main ();
665 l2output_main_t *mp = &l2output_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700666
Dave Barach97d8dc22016-08-15 15:31:15 -0400667 (void) l2output_create_output_node_mapping
668 (vm, vnm, a->node_index, mp->next_nodes.output_node_index_vec,
Ed Warnickecb9cada2015-12-08 15:45:58 -0700669 a->sw_if_index);
670}
Ed Warnickecb9cada2015-12-08 15:45:58 -0700671
Dave Barach97d8dc22016-08-15 15:31:15 -0400672/* Get a pointer to the config for the given interface */
673l2_output_config_t *
674l2output_intf_config (u32 sw_if_index)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700675{
Dave Barach97d8dc22016-08-15 15:31:15 -0400676 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 Warnickecb9cada2015-12-08 15:45:58 -0700680}
681
Chris Luke16bcf7d2016-09-01 14:31:46 -0400682/** Enable (or disable) the feature in the bitmap for the given interface. */
Dave Barach97d8dc22016-08-15 15:31:15 -0400683void
684l2output_intf_bitmap_enable (u32 sw_if_index, u32 feature_bitmap, u32 enable)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700685{
Dave Barach97d8dc22016-08-15 15:31:15 -0400686 l2output_main_t *mp = &l2output_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700687 l2_output_config_t *config;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700688
Dave Barach97d8dc22016-08-15 15:31:15 -0400689 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 Warnickecb9cada2015-12-08 15:45:58 -0700700}
Dave Barach97d8dc22016-08-15 15:31:15 -0400701
702/*
703 * fd.io coding-style-patch-verification: ON
704 *
705 * Local Variables:
706 * eval: (c-set-style "gnu")
707 * End:
708 */