FD.io VPP  v16.09
Vector Packet Processing
l2_output.c
Go to the documentation of this file.
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 
30 /* Feature graph node names */
31 static char *l2output_feat_names[] = {
32 #define _(sym,name) name,
34 #undef _
35 };
36 
37 char **
39 {
40  return l2output_feat_names;
41 }
42 
44 
45 typedef struct
46 {
47  /* per-pkt trace data */
48  u8 src[6];
49  u8 dst[6];
52 
53 /* packet trace format function */
54 static u8 *
55 format_l2output_trace (u8 * s, va_list * args)
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 *);
59  l2output_trace_t *t = va_arg (*args, l2output_trace_t *);
60 
61  s = format (s, "l2-output: sw_if_index %d dst %U src %U",
62  t->sw_if_index,
65  return s;
66 }
67 
68 
69 static char *l2output_error_strings[] = {
70 #define _(sym,string) string,
72 #undef _
73 };
74 
75 /**
76  * Check for split horizon violations.
77  * Return 0 if split horizon check passes, otherwise return non-zero.
78  * Packets should not be transmitted out an interface with the same
79  * split-horizon group as the input interface, except if the @c shg is 0
80  * in which case the check always passes.
81  */
84 {
85  if (PREDICT_TRUE (shg1 == 0))
86  {
87  return 0;
88  }
89  else
90  {
91  return shg1 == shg2;
92  }
93 }
94 
95 
97 
98 static uword
100  vlib_node_runtime_t * node, vlib_frame_t * frame)
101 {
102  u32 n_left_from, *from, *to_next;
103  l2output_next_t next_index;
105  vlib_node_t *n = vlib_get_node (vm, l2output_node.index);
106  u32 node_counter_base_index = n->error_heap_index;
107  vlib_error_main_t *em = &vm->error_main;
108  u32 cached_sw_if_index;
109  u32 cached_next_index;
110 
111  /* Invalidate cache */
112  cached_sw_if_index = ~0;
113  cached_next_index = ~0; /* warning be gone */
114 
115  from = vlib_frame_vector_args (frame);
116  n_left_from = frame->n_vectors; /* number of packets to process */
117  next_index = node->cached_next_index;
118 
119  while (n_left_from > 0)
120  {
121  u32 n_left_to_next;
122 
123  /* get space to enqueue frame to graph node "next_index" */
124  vlib_get_next_frame (vm, node, next_index, to_next, n_left_to_next);
125 
126  while (n_left_from >= 6 && n_left_to_next >= 2)
127  {
128  u32 bi0, bi1;
129  vlib_buffer_t *b0, *b1;
130  u32 next0, next1;
131  u32 sw_if_index0, sw_if_index1;
132  ethernet_header_t *h0, *h1;
133  l2_output_config_t *config0, *config1;
134  u32 feature_bitmap0, feature_bitmap1;
135 
136  /* Prefetch next iteration. */
137  {
138  vlib_buffer_t *p2, *p3, *p4, *p5;
139  u32 sw_if_index2, sw_if_index3;
140 
141  p2 = vlib_get_buffer (vm, from[2]);
142  p3 = vlib_get_buffer (vm, from[3]);
143  p4 = vlib_get_buffer (vm, from[4]);
144  p5 = vlib_get_buffer (vm, from[5]);
145 
146  /* Prefetch the buffer header for the N+2 loop iteration */
147  vlib_prefetch_buffer_header (p4, LOAD);
148  vlib_prefetch_buffer_header (p5, LOAD);
149  /*
150  * Note: no need to prefetch packet data.
151  * This node doesn't reference it.
152  *
153  * Prefetch the input config for the N+1 loop iteration
154  * This depends on the buffer header above
155  */
156  sw_if_index2 = vnet_buffer (p2)->sw_if_index[VLIB_TX];
157  sw_if_index3 = vnet_buffer (p3)->sw_if_index[VLIB_TX];
158  CLIB_PREFETCH (&msm->configs[sw_if_index2], CLIB_CACHE_LINE_BYTES,
159  LOAD);
160  CLIB_PREFETCH (&msm->configs[sw_if_index3], CLIB_CACHE_LINE_BYTES,
161  LOAD);
162  }
163 
164  /* speculatively enqueue b0 and b1 to the current next frame */
165  /* bi is "buffer index", b is pointer to the buffer */
166  to_next[0] = bi0 = from[0];
167  to_next[1] = bi1 = from[1];
168  from += 2;
169  to_next += 2;
170  n_left_from -= 2;
171  n_left_to_next -= 2;
172 
173  b0 = vlib_get_buffer (vm, bi0);
174  b1 = vlib_get_buffer (vm, bi1);
175 
176  /* TX interface handles */
177  sw_if_index0 = vnet_buffer (b0)->sw_if_index[VLIB_TX];
178  sw_if_index1 = vnet_buffer (b1)->sw_if_index[VLIB_TX];
179 
180  if (PREDICT_FALSE ((node->flags & VLIB_NODE_FLAG_TRACE)))
181  {
182  h0 = vlib_buffer_get_current (b0);
183  h1 = vlib_buffer_get_current (b1);
184  if (b0->flags & VLIB_BUFFER_IS_TRACED)
185  {
186  l2output_trace_t *t =
187  vlib_add_trace (vm, node, b0, sizeof (*t));
188  t->sw_if_index = sw_if_index0;
189  clib_memcpy (t->src, h0->src_address, 6);
190  clib_memcpy (t->dst, h0->dst_address, 6);
191  }
192  if (b1->flags & VLIB_BUFFER_IS_TRACED)
193  {
194  l2output_trace_t *t =
195  vlib_add_trace (vm, node, b1, sizeof (*t));
196  t->sw_if_index = sw_if_index1;
197  clib_memcpy (t->src, h1->src_address, 6);
198  clib_memcpy (t->dst, h1->dst_address, 6);
199  }
200  }
201 
202  em->counters[node_counter_base_index + L2OUTPUT_ERROR_L2OUTPUT] +=
203  2;
204 
205  /* Get config for the output interface */
206  config0 = vec_elt_at_index (msm->configs, sw_if_index0);
207  config1 = vec_elt_at_index (msm->configs, sw_if_index1);
208 
209  /*
210  * Get features from the config
211  * TODO: mask out any non-applicable features
212  */
213  feature_bitmap0 = config0->feature_bitmap;
214  feature_bitmap1 = config1->feature_bitmap;
215 
216  /* Determine next node */
218  msm->vnet_main,
219  node,
220  l2output_node.index,
221  &cached_sw_if_index,
222  &cached_next_index,
223  &msm->next_nodes,
224  b0, sw_if_index0, feature_bitmap0, &next0);
225 
227  msm->vnet_main,
228  node,
229  l2output_node.index,
230  &cached_sw_if_index,
231  &cached_next_index,
232  &msm->next_nodes,
233  b1, sw_if_index1, feature_bitmap1, &next1);
234 
235  /*
236  * Perform output vlan tag rewrite and the pre-vtr EFP filter check.
237  * The EFP Filter only needs to be run if there is an output VTR
238  * configured. The flag for the post-vtr EFP Filter node is used
239  * to trigger the pre-vtr check as well.
240  */
241 
243  {
244  /* Perform pre-vtr EFP filter check if configured */
245  u32 failed1 = (feature_bitmap0 & L2OUTPUT_FEAT_EFP_FILTER) &&
246  (l2_efp_filter_process (b0, &(config0->input_vtr)));
247  u32 failed2 = l2_vtr_process (b0, &(config0->output_vtr));
248 
249  if (PREDICT_FALSE (failed1 | failed2))
250  {
251  next0 = L2OUTPUT_NEXT_DROP;
252  if (failed2)
253  {
254  b0->error = node->errors[L2OUTPUT_ERROR_VTR_DROP];
255  }
256  if (failed1)
257  {
258  b0->error = node->errors[L2OUTPUT_ERROR_EFP_DROP];
259  }
260  }
261  }
262 
264  {
265  /* Perform pre-vtr EFP filter check if configured */
266  u32 failed1 = (feature_bitmap1 & L2OUTPUT_FEAT_EFP_FILTER) &&
267  (l2_efp_filter_process (b1, &(config1->input_vtr)));
268  u32 failed2 = l2_vtr_process (b1, &(config1->output_vtr));
269 
270  if (PREDICT_FALSE (failed1 | failed2))
271  {
272  next1 = L2OUTPUT_NEXT_DROP;
273  if (failed2)
274  {
275  b1->error = node->errors[L2OUTPUT_ERROR_VTR_DROP];
276  }
277  if (failed1)
278  {
279  b1->error = node->errors[L2OUTPUT_ERROR_EFP_DROP];
280  }
281  }
282  }
283 
284  /*
285  * Perform the split horizon check
286  * The check can only fail for non-zero shg's
287  */
288  if (PREDICT_FALSE (config0->shg + config1->shg))
289  {
290  /* one of the checks might fail, check both */
292  (config0->shg, vnet_buffer (b0)->l2.shg))
293  {
294  next0 = L2OUTPUT_NEXT_DROP;
295  b0->error = node->errors[L2OUTPUT_ERROR_SHG_DROP];
296  }
298  (config1->shg, vnet_buffer (b1)->l2.shg))
299  {
300  next1 = L2OUTPUT_NEXT_DROP;
301  b1->error = node->errors[L2OUTPUT_ERROR_SHG_DROP];
302  }
303  }
304 
305  /* verify speculative enqueues, maybe switch current next frame */
306  /* if next0==next1==next_index then nothing special needs to be done */
307  vlib_validate_buffer_enqueue_x2 (vm, node, next_index,
308  to_next, n_left_to_next,
309  bi0, bi1, next0, next1);
310  }
311 
312  while (n_left_from > 0 && n_left_to_next > 0)
313  {
314  u32 bi0;
315  vlib_buffer_t *b0;
316  u32 next0;
317  u32 sw_if_index0;
318  ethernet_header_t *h0;
319  l2_output_config_t *config0;
320  u32 feature_bitmap0;
321 
322  /* speculatively enqueue b0 to the current next frame */
323  bi0 = from[0];
324  to_next[0] = bi0;
325  from += 1;
326  to_next += 1;
327  n_left_from -= 1;
328  n_left_to_next -= 1;
329 
330  b0 = vlib_get_buffer (vm, bi0);
331 
332  sw_if_index0 = vnet_buffer (b0)->sw_if_index[VLIB_TX];
333 
335  && (b0->flags & VLIB_BUFFER_IS_TRACED)))
336  {
337  l2output_trace_t *t =
338  vlib_add_trace (vm, node, b0, sizeof (*t));
339  t->sw_if_index = sw_if_index0;
340  h0 = vlib_buffer_get_current (b0);
341  clib_memcpy (t->src, h0->src_address, 6);
342  clib_memcpy (t->dst, h0->dst_address, 6);
343  }
344 
345  em->counters[node_counter_base_index + L2OUTPUT_ERROR_L2OUTPUT] +=
346  1;
347 
348  /* Get config for the output interface */
349  config0 = vec_elt_at_index (msm->configs, sw_if_index0);
350 
351  /*
352  * Get features from the config
353  * TODO: mask out any non-applicable features
354  */
355  feature_bitmap0 = config0->feature_bitmap;
356 
357  /* Determine next node */
359  msm->vnet_main,
360  node,
361  l2output_node.index,
362  &cached_sw_if_index,
363  &cached_next_index,
364  &msm->next_nodes,
365  b0, sw_if_index0, feature_bitmap0, &next0);
366 
367  /*
368  * Perform output vlan tag rewrite and the pre-vtr EFP filter check.
369  * The EFP Filter only needs to be run if there is an output VTR
370  * configured. The flag for the post-vtr EFP Filter node is used
371  * to trigger the pre-vtr check as well.
372  */
373 
374  if (config0->output_vtr.push_and_pop_bytes)
375  {
376  /* Perform pre-vtr EFP filter check if configured */
377  u32 failed1 = (feature_bitmap0 & L2OUTPUT_FEAT_EFP_FILTER) &&
378  (l2_efp_filter_process (b0, &(config0->input_vtr)));
379  u32 failed2 = l2_vtr_process (b0, &(config0->output_vtr));
380 
381  if (PREDICT_FALSE (failed1 | failed2))
382  {
383  next0 = L2OUTPUT_NEXT_DROP;
384  if (failed2)
385  {
386  b0->error = node->errors[L2OUTPUT_ERROR_VTR_DROP];
387  }
388  if (failed1)
389  {
390  b0->error = node->errors[L2OUTPUT_ERROR_EFP_DROP];
391  }
392  }
393  }
394 
395  /* Perform the split horizon check */
396  if (PREDICT_FALSE
398  (config0->shg, vnet_buffer (b0)->l2.shg)))
399  {
400  next0 = L2OUTPUT_NEXT_DROP;
401  b0->error = node->errors[L2OUTPUT_ERROR_SHG_DROP];
402  }
403 
404  /* verify speculative enqueue, maybe switch current next frame */
405  vlib_validate_buffer_enqueue_x1 (vm, node, next_index,
406  to_next, n_left_to_next,
407  bi0, next0);
408  }
409 
410  vlib_put_next_frame (vm, node, next_index, n_left_to_next);
411  }
412 
413  return frame->n_vectors;
414 }
415 
416 
417 /* *INDENT-OFF* */
419  .function = l2output_node_fn,
420  .name = "l2-output",
421  .vector_size = sizeof (u32),
422  .format_trace = format_l2output_trace,
424 
425  .n_errors = ARRAY_LEN(l2output_error_strings),
426  .error_strings = l2output_error_strings,
427 
428  .n_next_nodes = L2OUTPUT_N_NEXT,
429 
430  /* edit / add dispositions here */
431  .next_nodes = {
432  [L2OUTPUT_NEXT_DROP] = "error-drop",
433  [L2OUTPUT_NEXT_DEL_TUNNEL] = "l2-output-del-tunnel",
434  },
435 };
436 /* *INDENT-ON* */
437 
438 
439 #define foreach_l2output_del_tunnel_error \
440 _(DROP, "L2 output to deleted tunnel")
441 
443 #define _(sym,string) string,
445 #undef _
446 };
447 
448 typedef enum
449 {
450 #define _(sym,str) L2OUTPUT_DEL_TUNNEL_ERROR_##sym,
452 #undef _
455 
456 
457 /**
458  * Output node for tunnels which was in L2 BD's but were deleted.
459  * On deletion of any tunnel which was on a L2 BD, its entry in
460  * l2_output_main table next_nodes.output_node_index_vec[sw_if_index]
461  * MUST be set to the value of L2OUTPUT_NEXT_DEL_TUNNEL. Thus, if there
462  * are stale entries in the L2FIB for this tunnel sw_if_index, l2-output
463  * will send packets for this sw_if_index to the l2-output-tunnel-del
464  * node which just setup the proper drop reason before sending packets
465  * to the error-drop node to drop the packet. Then, stale L2FIB entries
466  * for delted tunnels won't cause possible packet or memory corrpution.
467  */
469 
470 static uword
472  vlib_node_runtime_t * node, vlib_frame_t * frame)
473 {
474  u32 n_left_from, *from, *to_next;
475  l2output_next_t next_index = 0;
476 
477  from = vlib_frame_vector_args (frame);
478  n_left_from = frame->n_vectors; /* number of packets to process */
479 
480  while (n_left_from > 0)
481  {
482  u32 n_left_to_next;
483 
484  /* get space to enqueue frame to graph node "next_index" */
485  vlib_get_next_frame (vm, node, next_index, to_next, n_left_to_next);
486 
487  while (n_left_from >= 4 && n_left_to_next >= 2)
488  {
489  u32 bi0, bi1;
490  vlib_buffer_t *b0, *b1;
491 
492  to_next[0] = bi0 = from[0];
493  to_next[1] = bi1 = from[1];
494  from += 2;
495  to_next += 2;
496  n_left_from -= 2;
497  n_left_to_next -= 2;
498  b0 = vlib_get_buffer (vm, bi0);
499  b1 = vlib_get_buffer (vm, bi1);
500  b0->error = node->errors[L2OUTPUT_DEL_TUNNEL_ERROR_DROP];
501  b1->error = node->errors[L2OUTPUT_DEL_TUNNEL_ERROR_DROP];
502  }
503 
504  while (n_left_from > 0 && n_left_to_next > 0)
505  {
506  u32 bi0;
507  vlib_buffer_t *b0;
508 
509  bi0 = from[0];
510  to_next[0] = bi0;
511  from += 1;
512  to_next += 1;
513  n_left_from -= 1;
514  n_left_to_next -= 1;
515  b0 = vlib_get_buffer (vm, bi0);
516  b0->error = node->errors[L2OUTPUT_DEL_TUNNEL_ERROR_DROP];
517  }
518 
519  vlib_put_next_frame (vm, node, next_index, n_left_to_next);
520  }
521 
522  return frame->n_vectors;
523 }
524 
525 /* *INDENT-OFF* */
527  .function = l2output_del_tunnel_node_fn,
528  .name = "l2-output-del-tunnel",
529  .vector_size = sizeof (u32),
531 
533  .error_strings = l2output_del_tunnel_error_strings,
534 
535  .n_next_nodes = 1,
536 
537  /* edit / add dispositions here */
538  .next_nodes = {
539  [0] = "error-drop",
540  },
541 };
542 /* *INDENT-ON* */
543 
544 
547 {
549 
550  mp->vlib_main = vm;
551  mp->vnet_main = vnet_get_main ();
552 
553  /* Create the config vector */
554  vec_validate (mp->configs, 100);
555  /* Until we hook up the CLI config, just create 100 sw interface entries and zero them */
556 
557  /* Initialize the feature next-node indexes */
559  l2output_node.index,
563 
564  /* Initialize the output node mapping table */
566 
567  return 0;
568 }
569 
571 
572 typedef struct
573 {
577 
578 #if DPDK > 0
580 
581 static void
582 output_node_mapping_send_rpc (u32 node_index, u32 sw_if_index)
583 {
585  void vl_api_rpc_call_main_thread (void *fp, u8 * data, u32 data_length);
586 
587  args.node_index = node_index;
588  args.sw_if_index = sw_if_index;
589 
591  (u8 *) & args, sizeof (args));
592 }
593 #endif
594 
595 
596 /** Create a mapping in the next node mapping table for the given sw_if_index. */
597 u32
599  u32 * output_node_index_vec,
600  u32 sw_if_index)
601 {
602 
603  u32 next; /* index of next graph node */
604  vnet_hw_interface_t *hw0;
605  u32 *node;
606 
607  hw0 = vnet_get_sup_hw_interface (vnet_main, sw_if_index);
608 
609 #if DPDK > 0
610  uword cpu_number;
611 
612  cpu_number = os_get_cpu_number ();
613 
614  if (cpu_number)
615  {
616  u32 oldflags;
617 
618  oldflags = __sync_fetch_and_or (&hw0->flags,
620 
622  return L2OUTPUT_NEXT_DROP;
623 
624  output_node_mapping_send_rpc (node_index, sw_if_index);
625  return L2OUTPUT_NEXT_DROP;
626  }
627 #endif
628 
629  /* dynamically create graph node arc */
630  next = vlib_node_add_next (vlib_main, node_index, hw0->output_node_index);
631 
632  /* Initialize vector with the mapping */
633 
634  node = vec_elt_at_index (output_node_index_vec, sw_if_index);
635  *node = next;
636 
637  return next;
638 }
639 
640 #if DPDK > 0
641 void
643 {
644  vlib_main_t *vm = vlib_get_main ();
645  vnet_main_t *vnm = vnet_get_main ();
647 
649  (vm, vnm, a->node_index, mp->next_nodes.output_node_index_vec,
650  a->sw_if_index);
651 }
652 #endif
653 
654 /* Get a pointer to the config for the given interface */
657 {
659 
660  vec_validate (mp->configs, sw_if_index);
661  return vec_elt_at_index (mp->configs, sw_if_index);
662 }
663 
664 /** Enable (or disable) the feature in the bitmap for the given interface. */
665 void
666 l2output_intf_bitmap_enable (u32 sw_if_index, u32 feature_bitmap, u32 enable)
667 {
669  l2_output_config_t *config;
670 
671  vec_validate (mp->configs, sw_if_index);
672  config = vec_elt_at_index (mp->configs, sw_if_index);
673 
674  if (enable)
675  {
676  config->feature_bitmap |= feature_bitmap;
677  }
678  else
679  {
680  config->feature_bitmap &= ~feature_bitmap;
681  }
682 }
683 
684 /*
685  * fd.io coding-style-patch-verification: ON
686  *
687  * Local Variables:
688  * eval: (c-set-style "gnu")
689  * End:
690  */
#define vec_validate(V, I)
Make sure vector is long enough for given index (no header, unspecified alignment) ...
Definition: vec.h:396
void vlib_put_next_frame(vlib_main_t *vm, vlib_node_runtime_t *r, u32 next_index, u32 n_vectors_left)
Release pointer to next frame vector data.
Definition: main.c:457
#define foreach_l2output_error
Definition: l2_output.h:120
u32 error_heap_index
Definition: node.h:278
#define CLIB_UNUSED(x)
Definition: clib.h:79
char ** l2output_get_feat_names(void)
Definition: l2_output.c:38
clib_error_t * l2output_init(vlib_main_t *vm)
Definition: l2_output.c:546
a
Definition: bitmap.h:516
static vlib_main_t * vlib_get_main(void)
Definition: global_funcs.h:23
bad routing header type(not 4)") sr_error (NO_MORE_SEGMENTS
static vnet_hw_interface_t * vnet_get_sup_hw_interface(vnet_main_t *vnm, u32 sw_if_index)
l2output_next_t
Definition: l2_output.h:127
#define PREDICT_TRUE(x)
Definition: clib.h:98
static uword l2output_node_fn(vlib_main_t *vm, vlib_node_runtime_t *node, vlib_frame_t *frame)
Definition: l2_output.c:99
u8 src_address[6]
Definition: packet.h:54
struct _vlib_node_registration vlib_node_registration_t
vlib_error_t * errors
Definition: node.h:418
l2_output_next_nodes_st next_nodes
Definition: l2_output.h:76
static uword vlib_node_add_next(vlib_main_t *vm, uword node, uword next_node)
Definition: node_funcs.h:1061
u32 l2output_create_output_node_mapping(vlib_main_t *vlib_main, vnet_main_t *vnet_main, u32 node_index, u32 *output_node_index_vec, u32 sw_if_index)
Create a mapping in the next node mapping table for the given sw_if_index.
Definition: l2_output.c:598
u16 push_and_pop_bytes
Definition: l2_vtr.h:64
vnet_main_t * vnet_get_main(void)
Definition: misc.c:45
static_always_inline u32 split_horizon_violation(u8 shg1, u8 shg2)
Check for split horizon violations.
Definition: l2_output.c:83
#define static_always_inline
Definition: clib.h:85
u8 * format_ethernet_address(u8 *s, va_list *args)
Definition: format.c:44
#define VLIB_INIT_FUNCTION(x)
Definition: init.h:111
static void * vlib_buffer_get_current(vlib_buffer_t *b)
Get pointer to current data to process.
Definition: buffer.h:187
u8 dst_address[6]
Definition: packet.h:53
static uword l2output_del_tunnel_node_fn(vlib_main_t *vm, vlib_node_runtime_t *node, vlib_frame_t *frame)
Definition: l2_output.c:471
#define vec_elt_at_index(v, i)
Get vector value at index i checking that i is in bounds.
static void output_node_mapping_send_rpc(u32 node_index, u32 sw_if_index)
Definition: l2_output.c:582
void vl_api_rpc_call_main_thread(void *fp, u8 *data, u32 data_length)
Definition: memory_vlib.c:1321
int vlib_main(vlib_main_t *vm, unformat_input_t *input)
Definition: main.c:1572
void l2output_intf_bitmap_enable(u32 sw_if_index, u32 feature_bitmap, u32 enable)
Enable (or disable) the feature in the bitmap for the given interface.
Definition: l2_output.c:666
static u32 l2_vtr_process(vlib_buffer_t *b0, vtr_config_t *config)
Perform the configured tag rewrite on the packet.
Definition: l2_vtr.h:75
u32 feat_next_node_index[32]
Definition: l2_output.h:68
l2_output_config_t * l2output_intf_config(u32 sw_if_index)
Get a pointer to the config for the given interface.
Definition: l2_output.c:656
vtr_config_t input_vtr
Definition: l2_output.h:38
vlib_error_main_t error_main
Definition: main.h:124
#define VNET_HW_INTERFACE_FLAG_L2OUTPUT_MAPPED
Definition: interface.h:300
uword os_get_cpu_number(void)
Definition: unix-misc.c:224
#define foreach_l2output_del_tunnel_error
Definition: l2_output.c:439
#define PREDICT_FALSE(x)
Definition: clib.h:97
vnet_main_t vnet_main
Definition: misc.c:42
l2output_main_t l2output_main
Definition: l2_output.c:43
#define vlib_validate_buffer_enqueue_x2(vm, node, next_index, to_next, n_left_to_next, bi0, bi1, next0, next1)
Finish enqueueing two buffers forward in the graph.
Definition: buffer_node.h:70
#define vlib_validate_buffer_enqueue_x1(vm, node, next_index, to_next, n_left_to_next, bi0, next0)
Finish enqueueing one buffer forward in the graph.
Definition: buffer_node.h:130
#define vlib_get_next_frame(vm, node, next_index, vectors, n_vectors_left)
Get pointer to next frame vector data by (vlib_node_runtime_t, next_index).
Definition: node_funcs.h:348
vlib_error_t error
Error code for buffers to be enqueued to error handler.
Definition: buffer.h:118
vlib_main_t * vlib_main
Definition: l2_output.h:82
u64 * counters
Definition: error.h:78
u16 n_vectors
Definition: node.h:344
#define CLIB_PREFETCH(addr, size, type)
Definition: cache.h:82
static void feat_bitmap_init_next_nodes(vlib_main_t *vm, u32 node_index, u32 num_features, char **feat_names, u32 *next_nodes)
Initialize the feature next-node indexes of a graph node.
Definition: feat_bitmap.h:43
static u8 l2_efp_filter_process(vlib_buffer_t *b0, vtr_config_t *in_config)
Definition: l2_vtr.h:139
#define clib_memcpy(a, b, c)
Definition: string.h:63
static char * l2output_feat_names[]
Definition: l2_output.c:31
#define ARRAY_LEN(x)
Definition: clib.h:59
vtr_config_t output_vtr
Definition: l2_output.h:39
u16 cached_next_index
Definition: node.h:462
unsigned int u32
Definition: types.h:88
#define vnet_buffer(b)
Definition: buffer.h:335
u8 * format(u8 *s, char *fmt,...)
Definition: format.c:418
#define VLIB_NODE_FLAG_TRACE
Definition: node.h:259
static char * l2output_error_strings[]
Definition: l2_output.c:69
#define VLIB_BUFFER_IS_TRACED
Definition: buffer.h:93
u64 uword
Definition: types.h:112
static void * vlib_add_trace(vlib_main_t *vm, vlib_node_runtime_t *r, vlib_buffer_t *b, u32 n_data_bytes)
Definition: trace_funcs.h:55
Definition: defs.h:47
static void output_node_rpc_callback(output_node_mapping_rpc_args_t *a)
Definition: l2_output.c:642
unsigned char u8
Definition: types.h:56
static void * vlib_frame_vector_args(vlib_frame_t *f)
Get pointer to frame vector data.
Definition: node_funcs.h:251
l2_output_config_t * configs
Definition: l2_output.h:79
static vlib_node_registration_t l2output_node
(constructor) VLIB_REGISTER_NODE (l2output_node)
Definition: l2_output.c:96
#define vlib_prefetch_buffer_header(b, type)
Prefetch buffer metadata.
Definition: buffer.h:163
#define VLIB_NODE_FUNCTION_MULTIARCH(node, fn)
Definition: node.h:158
#define VLIB_REGISTER_NODE(x,...)
Definition: node.h:143
static vlib_node_t * vlib_get_node(vlib_main_t *vm, u32 i)
Get vlib node by index.
Definition: node_funcs.h:58
static u8 * format_l2output_trace(u8 *s, va_list *args)
Definition: l2_output.c:55
static void l2_output_dispatch(vlib_main_t *vlib_main, vnet_main_t *vnet_main, vlib_node_runtime_t *node, u32 node_index, u32 *cached_sw_if_index, u32 *cached_next_index, l2_output_next_nodes_st *next_nodes, vlib_buffer_t *b0, u32 sw_if_index, u32 feature_bitmap, u32 *next0)
Determine the next L2 node based on the output feature bitmap.
Definition: l2_output.h:203
static char * l2output_del_tunnel_error_strings[]
Definition: l2_output.c:442
#define CLIB_CACHE_LINE_BYTES
Definition: cache.h:67
u32 flags
buffer flags: VLIB_BUFFER_IS_TRACED: trace this buffer.
Definition: buffer.h:85
static vlib_node_registration_t l2output_del_tunnel_node
Output node for tunnels which was in L2 BD&#39;s but were deleted.
Definition: l2_output.c:468
static void l2output_init_output_node_vec(u32 **output_node_index_vec)
Definition: l2_output.h:160
vnet_main_t * vnet_main
Definition: l2_output.h:83
static vlib_buffer_t * vlib_get_buffer(vlib_main_t *vm, u32 buffer_index)
Translate buffer index into buffer pointer.
Definition: buffer_funcs.h:69
l2output_del_tunnel_error_t
Definition: l2_output.c:448