FD.io VPP  v19.08.1-401-g8e4ed521a
Vector Packet Processing
adj_midchain.c
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2016 Cisco and/or its affiliates.
3  * Licensed under the Apache License, Version 2.0 (the "License");
4  * you may not use this file except in compliance with the License.
5  * You may obtain a copy of the License at:
6  *
7  * http://www.apache.org/licenses/LICENSE-2.0
8  *
9  * Unless required by applicable law or agreed to in writing, software
10  * distributed under the License is distributed on an "AS IS" BASIS,
11  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12  * See the License for the specific language governing permissions and
13  * limitations under the License.
14  */
15 
16 #include <vnet/adj/adj_nbr.h>
17 #include <vnet/adj/adj_internal.h>
18 #include <vnet/adj/adj_l2.h>
19 #include <vnet/adj/adj_nsh.h>
20 #include <vnet/adj/adj_midchain.h>
22 #include <vnet/dpo/drop_dpo.h>
23 #include <vnet/dpo/load_balance.h>
24 #include <vnet/fib/fib_walk.h>
25 #include <vnet/fib/fib_entry.h>
26 
27 /**
28  * The two midchain tx feature node indices
29  */
32 
33 /**
34  * @brief Trace data for packets traversing the midchain tx node
35  */
37 {
38  /**
39  * @brief the midchain adj we are traversing
40  */
43 
46  vlib_node_runtime_t * node,
47  vlib_frame_t * frame,
48  int interface_count)
49 {
50  u32 * from, * to_next, n_left_from, n_left_to_next;
51  u32 next_index;
52  vnet_main_t *vnm = vnet_get_main ();
54  u32 thread_index = vm->thread_index;
55 
56  /* Vector of buffer / pkt indices we're supposed to process */
57  from = vlib_frame_vector_args (frame);
58 
59  /* Number of buffers / pkts */
60  n_left_from = frame->n_vectors;
61 
62  /* Speculatively send the first buffer to the last disposition we used */
63  next_index = node->cached_next_index;
64 
65  while (n_left_from > 0)
66  {
67  /* set up to enqueue to our disposition with index = next_index */
68  vlib_get_next_frame (vm, node, next_index, to_next, n_left_to_next);
69 
70  while (n_left_from >= 8 && n_left_to_next > 4)
71  {
72  const ip_adjacency_t *adj0, *adj1, *adj2, *adj3;
73  const dpo_id_t *dpo0, *dpo1, *dpo2, *dpo3;
74  vlib_buffer_t * b0, *b1, *b2, *b3;
75  u32 bi0, adj_index0, next0;
76  u32 bi1, adj_index1, next1;
77  u32 bi2, adj_index2, next2;
78  u32 bi3, adj_index3, next3;
79 
80  /* Prefetch next iteration. */
81  {
82  vlib_buffer_t * p4, * p5;
83  vlib_buffer_t * p6, * p7;
84 
85  p4 = vlib_get_buffer (vm, from[4]);
86  p5 = vlib_get_buffer (vm, from[5]);
87  p6 = vlib_get_buffer (vm, from[6]);
88  p7 = vlib_get_buffer (vm, from[7]);
89 
90  vlib_prefetch_buffer_header (p4, LOAD);
91  vlib_prefetch_buffer_header (p5, LOAD);
92  vlib_prefetch_buffer_header (p6, LOAD);
93  vlib_prefetch_buffer_header (p7, LOAD);
94  }
95 
96  bi0 = from[0];
97  to_next[0] = bi0;
98  bi1 = from[1];
99  to_next[1] = bi1;
100  bi2 = from[2];
101  to_next[2] = bi2;
102  bi3 = from[3];
103  to_next[3] = bi3;
104 
105  from += 4;
106  to_next += 4;
107  n_left_from -= 4;
108  n_left_to_next -= 4;
109 
110  b0 = vlib_get_buffer(vm, bi0);
111  b1 = vlib_get_buffer(vm, bi1);
112  b2 = vlib_get_buffer(vm, bi2);
113  b3 = vlib_get_buffer(vm, bi3);
114 
115  /* Follow the DPO on which the midchain is stacked */
116  adj_index0 = vnet_buffer(b0)->ip.adj_index[VLIB_TX];
117  adj_index1 = vnet_buffer(b1)->ip.adj_index[VLIB_TX];
118  adj_index2 = vnet_buffer(b2)->ip.adj_index[VLIB_TX];
119  adj_index3 = vnet_buffer(b3)->ip.adj_index[VLIB_TX];
120 
121  adj0 = adj_get(adj_index0);
122  adj1 = adj_get(adj_index1);
123  adj2 = adj_get(adj_index2);
124  adj3 = adj_get(adj_index3);
125 
126  dpo0 = &adj0->sub_type.midchain.next_dpo;
127  dpo1 = &adj1->sub_type.midchain.next_dpo;
128  dpo2 = &adj2->sub_type.midchain.next_dpo;
129  dpo3 = &adj3->sub_type.midchain.next_dpo;
130 
131  next0 = dpo0->dpoi_next_node;
132  next1 = dpo1->dpoi_next_node;
133  next2 = dpo2->dpoi_next_node;
134  next3 = dpo3->dpoi_next_node;
135 
136  vnet_buffer(b1)->ip.adj_index[VLIB_TX] = dpo1->dpoi_index;
137  vnet_buffer(b0)->ip.adj_index[VLIB_TX] = dpo0->dpoi_index;
138  vnet_buffer(b2)->ip.adj_index[VLIB_TX] = dpo2->dpoi_index;
139  vnet_buffer(b3)->ip.adj_index[VLIB_TX] = dpo3->dpoi_index;
140 
141  if (interface_count)
142  {
145  thread_index,
146  adj0->rewrite_header.sw_if_index,
147  1,
148  vlib_buffer_length_in_chain (vm, b0));
151  thread_index,
152  adj1->rewrite_header.sw_if_index,
153  1,
154  vlib_buffer_length_in_chain (vm, b1));
157  thread_index,
158  adj2->rewrite_header.sw_if_index,
159  1,
160  vlib_buffer_length_in_chain (vm, b2));
163  thread_index,
164  adj3->rewrite_header.sw_if_index,
165  1,
166  vlib_buffer_length_in_chain (vm, b3));
167  }
168 
169  if (PREDICT_FALSE(b0->flags & VLIB_BUFFER_IS_TRACED))
170  {
171  adj_midchain_tx_trace_t *tr = vlib_add_trace (vm, node,
172  b0, sizeof (*tr));
173  tr->ai = adj_index0;
174  }
175  if (PREDICT_FALSE(b1->flags & VLIB_BUFFER_IS_TRACED))
176  {
177  adj_midchain_tx_trace_t *tr = vlib_add_trace (vm, node,
178  b1, sizeof (*tr));
179  tr->ai = adj_index1;
180  }
181  if (PREDICT_FALSE(b2->flags & VLIB_BUFFER_IS_TRACED))
182  {
183  adj_midchain_tx_trace_t *tr = vlib_add_trace (vm, node,
184  b2, sizeof (*tr));
185  tr->ai = adj_index2;
186  }
187  if (PREDICT_FALSE(b3->flags & VLIB_BUFFER_IS_TRACED))
188  {
189  adj_midchain_tx_trace_t *tr = vlib_add_trace (vm, node,
190  b3, sizeof (*tr));
191  tr->ai = adj_index3;
192  }
193 
194  vlib_validate_buffer_enqueue_x4 (vm, node, next_index,
195  to_next, n_left_to_next,
196  bi0, bi1, bi2, bi3,
197  next0, next1, next2, next3);
198  }
199  while (n_left_from > 0 && n_left_to_next > 0)
200  {
201  u32 bi0, adj_index0, next0;
202  const ip_adjacency_t * adj0;
203  const dpo_id_t *dpo0;
204  vlib_buffer_t * b0;
205 
206  bi0 = from[0];
207  to_next[0] = bi0;
208  from += 1;
209  to_next += 1;
210  n_left_from -= 1;
211  n_left_to_next -= 1;
212 
213  b0 = vlib_get_buffer(vm, bi0);
214 
215  /* Follow the DPO on which the midchain is stacked */
216  adj_index0 = vnet_buffer(b0)->ip.adj_index[VLIB_TX];
217  adj0 = adj_get(adj_index0);
218  dpo0 = &adj0->sub_type.midchain.next_dpo;
219  next0 = dpo0->dpoi_next_node;
220  vnet_buffer(b0)->ip.adj_index[VLIB_TX] = dpo0->dpoi_index;
221 
222  if (interface_count)
223  {
226  thread_index,
227  adj0->rewrite_header.sw_if_index,
228  1,
229  vlib_buffer_length_in_chain (vm, b0));
230  }
231 
232  if (PREDICT_FALSE(b0->flags & VLIB_BUFFER_IS_TRACED))
233  {
234  adj_midchain_tx_trace_t *tr = vlib_add_trace (vm, node,
235  b0, sizeof (*tr));
236  tr->ai = adj_index0;
237  }
238 
239  vlib_validate_buffer_enqueue_x1 (vm, node, next_index,
240  to_next, n_left_to_next,
241  bi0, next0);
242  }
243 
244  vlib_put_next_frame (vm, node, next_index, n_left_to_next);
245  }
246 
247  return frame->n_vectors;
248 }
249 
250 static u8 *
251 format_adj_midchain_tx_trace (u8 * s, va_list * args)
252 {
253  CLIB_UNUSED (vlib_main_t * vm) = va_arg (*args, vlib_main_t *);
254  CLIB_UNUSED (vlib_node_t * node) = va_arg (*args, vlib_node_t *);
255  adj_midchain_tx_trace_t *tr = va_arg (*args, adj_midchain_tx_trace_t*);
256 
257  s = format(s, "adj-midchain:[%d]:%U", tr->ai,
258  format_ip_adjacency, tr->ai,
260 
261  return (s);
262 }
263 
264 static uword
266  vlib_node_runtime_t * node,
267  vlib_frame_t * frame)
268 {
269  return (adj_midchain_tx_inline(vm, node, frame, 1));
270 }
271 
273  .function = adj_midchain_tx,
274  .name = "adj-midchain-tx",
275  .vector_size = sizeof (u32),
276 
277  .format_trace = format_adj_midchain_tx_trace,
278 
279  .n_next_nodes = 1,
280  .next_nodes = {
281  [0] = "error-drop",
282  },
283 };
284 
285 static uword
287  vlib_node_runtime_t * node,
288  vlib_frame_t * frame)
289 {
290  return (adj_midchain_tx_inline(vm, node, frame, 0));
291 }
292 
294  .function = adj_midchain_tx_no_count,
295  .name = "adj-midchain-tx-no-count",
296  .vector_size = sizeof (u32),
297 
298  .format_trace = format_adj_midchain_tx_trace,
299 
300  .n_next_nodes = 1,
301  .next_nodes = {
302  [0] = "error-drop",
303  },
304 };
305 
306 VNET_FEATURE_INIT (adj_midchain_tx_ip4, static) = {
307  .arc_name = "ip4-output",
308  .node_name = "adj-midchain-tx",
309  .runs_before = VNET_FEATURES ("interface-output"),
310  .feature_index_ptr = &adj_midchain_tx_feature_node[VNET_LINK_IP4],
311 };
312 VNET_FEATURE_INIT (adj_midchain_tx_no_count_ip4, static) = {
313  .arc_name = "ip4-output",
314  .node_name = "adj-midchain-tx-no-count",
315  .runs_before = VNET_FEATURES ("interface-output"),
317 };
318 VNET_FEATURE_INIT (adj_midchain_tx_ip6, static) = {
319  .arc_name = "ip6-output",
320  .node_name = "adj-midchain-tx",
321  .runs_before = VNET_FEATURES ("interface-output"),
322  .feature_index_ptr = &adj_midchain_tx_feature_node[VNET_LINK_IP6],
323 };
324 VNET_FEATURE_INIT (adj_midchain_tx_no_count_ip6, static) = {
325  .arc_name = "ip6-output",
326  .node_name = "adj-midchain-tx-no-count",
327  .runs_before = VNET_FEATURES ("interface-output"),
329 };
330 VNET_FEATURE_INIT (adj_midchain_tx_mpls, static) = {
331  .arc_name = "mpls-output",
332  .node_name = "adj-midchain-tx",
333  .runs_before = VNET_FEATURES ("interface-output"),
334  .feature_index_ptr = &adj_midchain_tx_feature_node[VNET_LINK_MPLS],
335 };
336 VNET_FEATURE_INIT (adj_midchain_tx_no_count_mpls, static) = {
337  .arc_name = "mpls-output",
338  .node_name = "adj-midchain-tx-no-count",
339  .runs_before = VNET_FEATURES ("interface-output"),
341 };
342 VNET_FEATURE_INIT (adj_midchain_tx_ethernet, static) = {
343  .arc_name = "ethernet-output",
344  .node_name = "adj-midchain-tx",
345  .runs_before = VNET_FEATURES ("error-drop"),
346  .feature_index_ptr = &adj_midchain_tx_feature_node[VNET_LINK_ETHERNET],
347 };
348 VNET_FEATURE_INIT (adj_midchain_tx_no_count_ethernet, static) = {
349  .arc_name = "ethernet-output",
350  .node_name = "adj-midchain-tx-no-count",
351  .runs_before = VNET_FEATURES ("error-drop"),
353 };
354 VNET_FEATURE_INIT (adj_midchain_tx_nsh, static) = {
355  .arc_name = "nsh-output",
356  .node_name = "adj-midchain-tx",
357  .runs_before = VNET_FEATURES ("error-drop"),
358  .feature_index_ptr = &adj_midchain_tx_feature_node[VNET_LINK_NSH],
359 };
360 VNET_FEATURE_INIT (adj_midchain_tx_no_count_nsh, static) = {
361  .arc_name = "nsh-output",
362  .node_name = "adj-midchain-tx-no-count",
363  .runs_before = VNET_FEATURES ("error-drop"),
365 };
366 
367 static inline u32
369 {
370  switch (link) {
371  case VNET_LINK_IP4:
372  return (ip4_midchain_node.index);
373  case VNET_LINK_IP6:
374  return (ip6_midchain_node.index);
375  case VNET_LINK_MPLS:
376  return (mpls_midchain_node.index);
377  case VNET_LINK_ETHERNET:
378  return (adj_l2_midchain_node.index);
379  case VNET_LINK_NSH:
380  return (adj_nsh_midchain_node.index);
381  case VNET_LINK_ARP:
382  break;
383  }
384  ASSERT(0);
385  return (0);
386 }
387 
388 static u8
390 {
391  u8 arc = (u8) ~0;
392  switch (adj->ia_link)
393  {
394  case VNET_LINK_IP4:
395  {
397  break;
398  }
399  case VNET_LINK_IP6:
400  {
402  break;
403  }
404  case VNET_LINK_MPLS:
405  {
407  break;
408  }
409  case VNET_LINK_ETHERNET:
410  {
412  break;
413  }
414  case VNET_LINK_NSH:
415  {
416  arc = nsh_main_dummy.output_feature_arc_index;
417  break;
418  }
419  case VNET_LINK_ARP:
420  ASSERT(0);
421  break;
422  }
423 
424  ASSERT (arc != (u8) ~0);
425 
426  return (arc);
427 }
428 
429 static u32
431 {
432  return ((adj->ia_flags & ADJ_FLAG_MIDCHAIN_NO_COUNT) ?
434  adj_midchain_tx_node.index);
435 }
436 
437 static u32
439 {
441  {
443  }
444 
445  return (adj_midchain_tx_feature_node[adj->ia_link]);
446 }
447 
448 /**
449  * adj_midchain_setup
450  *
451  * Setup the adj as a mid-chain
452  */
453 void
455  adj_midchain_fixup_t fixup,
456  const void *data,
458 {
459  u32 feature_index, tx_node;
460  ip_adjacency_t *adj;
461  u8 arc_index;
462 
463  ASSERT(ADJ_INDEX_INVALID != adj_index);
464 
465  adj = adj_get(adj_index);
466 
467  adj->sub_type.midchain.fixup_func = fixup;
468  adj->sub_type.midchain.fixup_data = data;
470  adj->ia_flags |= flags;
471 
473  feature_index = adj_nbr_midchain_get_feature_node(adj);
474  tx_node = adj_nbr_midchain_get_tx_node(adj);
475 
476  vnet_feature_enable_disable_with_index (arc_index, feature_index,
477  adj->rewrite_header.sw_if_index,
478  1 /* enable */, 0, 0);
479 
480  /*
481  * stack the midchain on the drop so it's ready to forward in the adj-midchain-tx.
482  * The graph arc used/created here is from the midchain-tx node to the
483  * child's registered node. This is because post adj processing the next
484  * node are any output features, then the midchain-tx. from there we
485  * need to get to the stacked child's node.
486  */
487  dpo_stack_from_node(tx_node,
488  &adj->sub_type.midchain.next_dpo,
490 }
491 
492 /**
493  * adj_nbr_midchain_update_rewrite
494  *
495  * Update the adjacency's rewrite string. A NULL string implies the
496  * rewrite is reset (i.e. when ARP/ND entry is gone).
497  * NB: the adj being updated may be handling traffic in the DP.
498  */
499 void
501  adj_midchain_fixup_t fixup,
502  const void *fixup_data,
504  u8 *rewrite)
505 {
506  ip_adjacency_t *adj;
507 
508  ASSERT(ADJ_INDEX_INVALID != adj_index);
509 
510  adj = adj_get(adj_index);
511 
512  /*
513  * one time only update. since we don't support changing the tunnel
514  * src,dst, this is all we need.
515  */
520 
521  adj_midchain_setup(adj_index, fixup, fixup_data, flags);
522 
523  /*
524  * update the rewrite with the workers paused.
525  */
530  rewrite);
531 }
532 
533 /**
534  * adj_nbr_midchain_unstack
535  *
536  * Unstack the adj. stack it on drop
537  */
538 void
540 {
541  fib_node_index_t *entry_indicies, tmp;
542  ip_adjacency_t *adj;
543 
544  ASSERT(ADJ_INDEX_INVALID != adj_index);
545  adj = adj_get (adj_index);
546 
547  /*
548  * check to see if this unstacking breaks a recursion loop
549  */
550  entry_indicies = NULL;
551  tmp = adj->sub_type.midchain.fei;
553 
554  if (FIB_NODE_INDEX_INVALID != tmp)
555  {
556  fib_entry_recursive_loop_detect(tmp, &entry_indicies);
557  vec_free(entry_indicies);
558  }
559 
560  /*
561  * stack on the drop
562  */
565  &adj->sub_type.midchain.next_dpo,
568 }
569 
570 void
572  fib_node_index_t fei,
574 {
575  fib_node_index_t *entry_indicies;
576  dpo_id_t tmp = DPO_INVALID;
577  ip_adjacency_t *adj;
578 
579  adj = adj_get (ai);
580 
581  /*
582  * check to see if this stacking will form a recursion loop
583  */
584  entry_indicies = NULL;
585  adj->sub_type.midchain.fei = fei;
586 
587  if (fib_entry_recursive_loop_detect(adj->sub_type.midchain.fei, &entry_indicies))
588  {
589  /*
590  * loop formed, stack on the drop.
591  */
593  }
594  else
595  {
596  fib_entry_contribute_forwarding (fei, fct, &tmp);
597 
598  if ((adj->ia_flags & ADJ_FLAG_MIDCHAIN_IP_STACK) &&
599  (DPO_LOAD_BALANCE == tmp.dpoi_type))
600  {
601  /*
602  * do that hash now and stack on the choice.
603  * If the choice is an incomplete adj then we will need a poke when
604  * it becomes complete. This happens since the adj update walk propagates
605  * as far a recursive paths.
606  */
607  const dpo_id_t *choice;
608  load_balance_t *lb;
609  int hash;
610 
611  lb = load_balance_get (tmp.dpoi_index);
612 
614  {
616  lb->lb_hash_config);
617  }
618  else if (FIB_FORW_CHAIN_TYPE_UNICAST_IP6 == fct)
619  {
621  lb->lb_hash_config);
622  }
623  else
624  {
625  hash = 0;
626  ASSERT(0);
627  }
628 
629  choice = load_balance_get_bucket_i (lb, hash & lb->lb_n_buckets_minus_1);
630  dpo_copy (&tmp, choice);
631  }
632  }
633  adj_nbr_midchain_stack (ai, &tmp);
634  dpo_reset(&tmp);
635  vec_free(entry_indicies);
636 }
637 
638 /**
639  * adj_nbr_midchain_stack
640  */
641 void
643  const dpo_id_t *next)
644 {
645  ip_adjacency_t *adj;
646 
647  ASSERT(ADJ_INDEX_INVALID != adj_index);
648 
649  adj = adj_get(adj_index);
650 
653 
655  &adj->sub_type.midchain.next_dpo,
656  next);
657 }
658 
659 int
661  fib_node_index_t **entry_indicies)
662 {
663  fib_node_index_t *entry_index, *entries;
664  ip_adjacency_t * adj;
665 
666  adj = adj_get(ai);
667  entries = *entry_indicies;
668 
669  vec_foreach(entry_index, entries)
670  {
671  if (*entry_index == adj->sub_type.midchain.fei)
672  {
673  /*
674  * The entry this midchain links to is already in the set
675  * of visited entries, this is a loop
676  */
678  return (1);
679  }
680  }
681 
683  return (0);
684 }
685 
686 u8*
687 format_adj_midchain (u8* s, va_list *ap)
688 {
689  index_t index = va_arg(*ap, index_t);
690  u32 indent = va_arg(*ap, u32);
691  ip_adjacency_t * adj = adj_get(index);
692 
693  s = format (s, "%U", format_vnet_link, adj->ia_link);
694  if (adj->rewrite_header.flags & VNET_REWRITE_HAS_FEATURES)
695  s = format(s, " [features]");
696  s = format (s, " via %U",
697  format_ip46_address, &adj->sub_type.nbr.next_hop,
699  s = format (s, " %U",
701  &adj->rewrite_header, sizeof (adj->rewrite_data), indent);
702  s = format (s, "\n%Ustacked-on",
703  format_white_space, indent);
704 
705  if (FIB_NODE_INDEX_INVALID != adj->sub_type.midchain.fei)
706  {
707  s = format (s, " entry:%d", adj->sub_type.midchain.fei);
708 
709  }
710  s = format (s, ":\n%U%U",
711  format_white_space, indent+2,
712  format_dpo_id, &adj->sub_type.midchain.next_dpo, indent+2);
713 
714  return (s);
715 }
716 
717 static void
719 {
720  adj_lock(dpo->dpoi_index);
721 }
722 static void
724 {
725  adj_unlock(dpo->dpoi_index);
726 }
727 
728 const static dpo_vft_t adj_midchain_dpo_vft = {
730  .dv_unlock = adj_dpo_unlock,
731  .dv_format = format_adj_midchain,
732  .dv_get_urpf = adj_dpo_get_urpf,
733 };
734 
735 /**
736  * @brief The per-protocol VLIB graph nodes that are assigned to a midchain
737  * object.
738  *
739  * this means that these graph nodes are ones from which a midchain is the
740  * parent object in the DPO-graph.
741  */
742 const static char* const midchain_ip4_nodes[] =
743 {
744  "ip4-midchain",
745  NULL,
746 };
747 const static char* const midchain_ip6_nodes[] =
748 {
749  "ip6-midchain",
750  NULL,
751 };
752 const static char* const midchain_mpls_nodes[] =
753 {
754  "mpls-midchain",
755  NULL,
756 };
757 const static char* const midchain_ethernet_nodes[] =
758 {
759  "adj-l2-midchain",
760  NULL,
761 };
762 const static char* const midchain_nsh_nodes[] =
763 {
764  "adj-nsh-midchain",
765  NULL,
766 };
767 
768 const static char* const * const midchain_nodes[DPO_PROTO_NUM] =
769 {
775 };
776 
777 void
779 {
780  dpo_register(DPO_ADJACENCY_MIDCHAIN, &adj_midchain_dpo_vft, midchain_nodes);
781 }
static uword adj_midchain_tx(vlib_main_t *vm, vlib_node_runtime_t *node, vlib_frame_t *frame)
Definition: adj_midchain.c:265
static const char *const midchain_nsh_nodes[]
Definition: adj_midchain.c:762
static const char *const midchain_ip6_nodes[]
Definition: adj_midchain.c:747
void dpo_stack_from_node(u32 child_node_index, dpo_id_t *dpo, const dpo_id_t *parent)
Stack one DPO object on another, and thus establish a child parent relationship.
Definition: dpo.c:531
u32 flags
buffer flags: VLIB_BUFFER_FREE_LIST_INDEX_MASK: bits used to store free list index, VLIB_BUFFER_IS_TRACED: trace this buffer.
Definition: buffer.h:124
dpo_lock_fn_t dv_lock
A reference counting lock function.
Definition: dpo.h:406
#define VNET_LINK_NUM
Number of link types.
Definition: interface.h:353
static u32 adj_midchain_tx_no_count_feature_node[VNET_LINK_NUM]
Definition: adj_midchain.c:31
adj_flags_t ia_flags
Flags on the adjacency 1-bytes.
Definition: adj.h:255
Contribute an object that is to be used to forward IP6 packets.
Definition: fib_types.h:113
vlib_node_registration_t ip6_midchain_node
(constructor) VLIB_REGISTER_NODE (ip6_midchain_node)
Definition: ip6_forward.c:2141
u32 flags
Definition: vhost_user.h:141
#define CLIB_UNUSED(x)
Definition: clib.h:82
A virtual function table regisitered for a DPO type.
Definition: dpo.h:401
static vlib_node_registration_t adj_midchain_tx_node
(constructor) VLIB_REGISTER_NODE (adj_midchain_tx_node)
Definition: adj_midchain.c:272
static void vlib_increment_combined_counter(vlib_combined_counter_main_t *cm, u32 thread_index, u32 index, u64 n_packets, u64 n_bytes)
Increment a combined counter.
Definition: counter.h:220
void adj_lock(adj_index_t adj_index)
Take a reference counting lock on the adjacency.
Definition: adj.c:305
vnet_main_t * vnet_get_main(void)
Definition: misc.c:46
static uword adj_midchain_tx_no_count(vlib_main_t *vm, vlib_node_runtime_t *node, vlib_frame_t *frame)
Definition: adj_midchain.c:286
vnet_interface_main_t interface_main
Definition: vnet.h:56
static const char *const midchain_ip4_nodes[]
The per-protocol VLIB graph nodes that are assigned to a midchain object.
Definition: adj_midchain.c:742
const u8 * adj_get_rewrite(adj_index_t ai)
Return the rewrite string of the adjacency.
Definition: adj.c:508
Multicast Adjacency.
Definition: adj.h:82
#define NULL
Definition: clib.h:58
static u32 ip4_compute_flow_hash(const ip4_header_t *ip, flow_hash_config_t flow_hash_config)
Definition: ip4.h:310
Broadcasr Adjacency.
Definition: adj.h:85
IP unicast adjacency.
Definition: adj.h:221
void fib_entry_contribute_forwarding(fib_node_index_t fib_entry_index, fib_forward_chain_type_t fct, dpo_id_t *dpo)
Definition: fib_entry.c:448
flow_hash_config_t lb_hash_config
the hash config to use when selecting a bucket.
Definition: load_balance.h:161
vlib_node_registration_t ip4_midchain_node
(constructor) VLIB_REGISTER_NODE (ip4_midchain_node)
Definition: ip4_forward.c:2810
u32 thread_index
Definition: main.h:218
dpo_proto_t fib_forw_chain_type_to_dpo_proto(fib_forward_chain_type_t fct)
Convert from a chain type to the DPO proto it will install.
Definition: fib_types.c:418
void dpo_copy(dpo_id_t *dst, const dpo_id_t *src)
atomic copy a data-plane object.
Definition: dpo.c:262
u32 index_t
A Data-Path Object is an object that represents actions that are applied to packets are they are swit...
Definition: dpo.h:41
#define vlib_validate_buffer_enqueue_x4(vm, node, next_index, to_next, n_left_to_next, bi0, bi1, bi2, bi3, next0, next1, next2, next3)
Finish enqueueing four buffers forward in the graph.
Definition: buffer_node.h:138
format_function_t format_ip46_address
Definition: format.h:61
Contribute an object that is to be used to forward IP4 packets.
Definition: fib_types.h:109
ip_lookup_main_t lookup_main
Definition: ip4.h:107
u8 * format(u8 *s, const char *fmt,...)
Definition: format.c:424
u8 data[128]
Definition: ipsec.api:251
void adj_nbr_update_rewrite_internal(ip_adjacency_t *adj, ip_lookup_next_t adj_next_index, u32 complete_next_index, u32 next_index, u8 *rewrite)
adj_nbr_update_rewrite_internal
Definition: adj_nbr.c:340
static uword vlib_buffer_length_in_chain(vlib_main_t *vm, vlib_buffer_t *b)
Get length in bytes of the buffer chain.
Definition: buffer_funcs.h:366
u32 adj_dpo_get_urpf(const dpo_id_t *dpo)
Definition: adj.c:295
unsigned char u8
Definition: types.h:56
vnet_link_t ia_link
link/ether-type 1 bytes
Definition: adj.h:242
union ip_adjacency_t_::@48 sub_type
const dpo_id_t * drop_dpo_get(dpo_proto_t proto)
Definition: drop_dpo.c:25
u8 output_feature_arc_index
Definition: lookup.h:164
ethernet_main_t ethernet_main
Definition: init.c:45
static ip_adjacency_t * adj_get(adj_index_t adj_index)
Get a pointer to an adjacency object from its index.
Definition: adj.h:433
void dpo_register(dpo_type_t type, const dpo_vft_t *vft, const char *const *const *nodes)
For a given DPO type Register:
Definition: dpo.c:322
vlib_node_registration_t adj_nsh_midchain_node
(constructor) VLIB_REGISTER_NODE (adj_nsh_midchain_node)
Definition: adj_nsh.c:180
dpo_proto_t vnet_link_to_dpo_proto(vnet_link_t linkt)
Definition: dpo.c:96
format_function_t format_ip_adjacency
Definition: format.h:58
#define always_inline
Definition: clib.h:98
u16 lb_n_buckets_minus_1
number of buckets in the load-balance - 1.
Definition: load_balance.h:121
vlib_combined_counter_main_t * combined_sw_if_counters
Definition: interface.h:846
u8 * format_white_space(u8 *s, va_list *va)
Definition: std-formats.c:129
int vnet_feature_enable_disable_with_index(u8 arc_index, u32 feature_index, u32 sw_if_index, int enable_disable, void *feature_config, u32 n_feature_config_bytes)
Definition: feature.c:223
#define vlib_prefetch_buffer_header(b, type)
Prefetch buffer metadata.
Definition: buffer.h:203
static const char *const *const midchain_nodes[DPO_PROTO_NUM]
Definition: adj_midchain.c:768
void adj_nbr_midchain_stack_on_fib_entry(adj_index_t ai, fib_node_index_t fei, fib_forward_chain_type_t fct)
[re]stack a midchain.
Definition: adj_midchain.c:571
u8 output_feature_arc_index
Definition: ethernet.h:296
void adj_unlock(adj_index_t adj_index)
Release a reference counting lock on the adjacency.
Definition: adj.c:322
vlib_node_registration_t mpls_midchain_node
(constructor) VLIB_REGISTER_NODE (mpls_midchain_node)
Definition: mpls_output.c:389
unsigned int u32
Definition: types.h:88
struct ip_adjacency_t_::@48::@50 midchain
IP_LOOKUP_NEXT_MIDCHAIN.
format_function_t format_vnet_rewrite
Definition: rewrite.h:250
static uword adj_midchain_tx_inline(vlib_main_t *vm, vlib_node_runtime_t *node, vlib_frame_t *frame, int interface_count)
Definition: adj_midchain.c:45
u8 output_feature_arc_index
Definition: mpls.h:57
vlib_node_registration_t adj_l2_midchain_node
(constructor) VLIB_REGISTER_NODE (adj_l2_midchain_node)
Definition: adj_l2.c:181
static const char *const midchain_mpls_nodes[]
Definition: adj_midchain.c:752
The identity of a DPO is a combination of its type and its instance number/index of objects of that t...
Definition: dpo.h:170
#define ADJ_INDEX_INVALID
Invalid ADJ index - used when no adj is known likewise blazoned capitals INVALID speak volumes where ...
Definition: adj_types.h:36
static u32 adj_get_midchain_node(vnet_link_t link)
Definition: adj_midchain.c:368
dpo_type_t dpoi_type
the type
Definition: dpo.h:174
static const dpo_id_t * load_balance_get_bucket_i(const load_balance_t *lb, u32 bucket)
Definition: load_balance.h:229
Trace data for packets traversing the midchain tx node.
Definition: adj_midchain.c:36
void adj_midchain_module_init(void)
Module initialisation.
Definition: adj_midchain.c:778
int adj_ndr_midchain_recursive_loop_detect(adj_index_t ai, fib_node_index_t **entry_indicies)
descend the FIB graph looking for loops
Definition: adj_midchain.c:660
adj_index_t ai
the midchain adj we are traversing
Definition: adj_midchain.c:41
load-balancing over a choice of [un]equal cost paths
Definition: dpo.h:102
static u32 ip6_compute_flow_hash(const ip6_header_t *ip, flow_hash_config_t flow_hash_config)
Definition: ip6.h:482
The FIB DPO provieds;.
Definition: load_balance.h:106
#define PREDICT_FALSE(x)
Definition: clib.h:111
This packet matches an "interface route" and packets need to be passed to ARP to find rewrite string ...
Definition: adj.h:68
static u8 adj_midchain_get_feature_arc_index_for_link_type(const ip_adjacency_t *adj)
Definition: adj_midchain.c:389
static vlib_node_registration_t adj_midchain_tx_no_count_node
(constructor) VLIB_REGISTER_NODE (adj_midchain_tx_no_count_node)
Definition: adj_midchain.c:293
#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:218
#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:338
struct ip_adjacency_t_::@48::@49 nbr
IP_LOOKUP_NEXT_ARP/IP_LOOKUP_NEXT_REWRITE.
This packet matches an "incomplete adjacency" and packets need to be passed to ARP to find rewrite st...
Definition: adj.h:63
#define VLIB_REGISTER_NODE(x,...)
Definition: node.h:169
u16 n_vectors
Definition: node.h:397
mpls_main_t mpls_main
Definition: mpls.c:25
vlib_main_t * vm
Definition: buffer.c:323
static void adj_dpo_unlock(dpo_id_t *dpo)
Definition: adj_midchain.c:723
#define vec_free(V)
Free vector&#39;s memory (no header).
Definition: vec.h:341
Multicast Midchain Adjacency.
Definition: adj.h:89
static u8 * format_adj_midchain_tx_trace(u8 *s, va_list *args)
Definition: adj_midchain.c:251
void adj_nbr_midchain_update_rewrite(adj_index_t adj_index, adj_midchain_fixup_t fixup, const void *fixup_data, adj_flags_t flags, u8 *rewrite)
adj_nbr_midchain_update_rewrite
Definition: adj_midchain.c:500
int fib_entry_recursive_loop_detect(fib_node_index_t entry_index, fib_node_index_t **entry_indicies)
Definition: fib_entry.c:1407
u32 fib_node_index_t
A typedef of a node index.
Definition: fib_types.h:30
void(* adj_midchain_fixup_t)(vlib_main_t *vm, struct ip_adjacency_t_ *adj, vlib_buffer_t *b0, const void *data)
A function type for post-rewrite fixups on midchain adjacency.
Definition: adj.h:152
u32 adj_index_t
An index for adjacencies.
Definition: adj_types.h:30
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:456
u8 * format_adj_midchain(u8 *s, va_list *ap)
Format a midchain adjacency.
Definition: adj_midchain.c:687
This packets follow a mid-chain adjacency.
Definition: adj.h:76
u16 cached_next_index
Next frame index that vector arguments were last enqueued to last time this node ran.
Definition: node.h:515
static u32 adj_nbr_midchain_get_tx_node(ip_adjacency_t *adj)
Definition: adj_midchain.c:430
#define ASSERT(truth)
void adj_nbr_midchain_stack(adj_index_t adj_index, const dpo_id_t *next)
adj_nbr_midchain_stack
Definition: adj_midchain.c:642
ip6_main_t ip6_main
Definition: ip6_forward.c:2732
ip_lookup_main_t lookup_main
Definition: ip6.h:179
enum vnet_link_t_ vnet_link_t
Link Type: A description of the protocol of packets on the link.
static load_balance_t * load_balance_get(index_t lbi)
Definition: load_balance.h:220
enum fib_forward_chain_type_t_ fib_forward_chain_type_t
FIB output chain type.
void adj_nbr_midchain_unstack(adj_index_t adj_index)
adj_nbr_midchain_unstack
Definition: adj_midchain.c:539
u8 * format_dpo_id(u8 *s, va_list *args)
Format a DPO_id_t oject
Definition: dpo.c:148
#define VNET_FEATURES(...)
Definition: feature.h:442
u32 entries
static void adj_dpo_lock(dpo_id_t *dpo)
Definition: adj_midchain.c:718
enum adj_flags_t_ adj_flags_t
Flags on an IP adjacency.
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
fib_protocol_t ia_nh_proto
The protocol of the neighbor/peer.
Definition: adj.h:249
Definition: defs.h:47
#define DPO_PROTO_NUM
Definition: dpo.h:70
index_t dpoi_index
the index of objects of that type
Definition: dpo.h:186
#define FIB_NODE_INDEX_INVALID
Definition: fib_types.h:31
ip_lookup_next_t lookup_next_index
Next hop after ip4-lookup.
Definition: adj.h:236
void adj_midchain_setup(adj_index_t adj_index, adj_midchain_fixup_t fixup, const void *data, adj_flags_t flags)
adj_midchain_setup
Definition: adj_midchain.c:454
VLIB buffer representation.
Definition: buffer.h:102
nsh_main_dummy_t nsh_main_dummy
Definition: adj_nsh.c:21
u64 uword
Definition: types.h:112
struct adj_midchain_tx_trace_t_ adj_midchain_tx_trace_t
Trace data for packets traversing the midchain tx node.
static u32 adj_midchain_tx_feature_node[VNET_LINK_NUM]
The two midchain tx feature node indices.
Definition: adj_midchain.c:30
static void * vlib_frame_vector_args(vlib_frame_t *f)
Get pointer to frame vector data.
Definition: node_funcs.h:244
#define DPO_INVALID
An initialiser for DPOs declared on the stack.
Definition: dpo.h:197
#define vnet_buffer(b)
Definition: buffer.h:365
ip4_main_t ip4_main
Global ip4 main structure.
Definition: ip4_forward.c:1076
void dpo_reset(dpo_id_t *dpo)
reset a DPO ID The DPO will be unlocked.
Definition: dpo.c:232
#define vec_foreach(var, vec)
Vector iterator.
#define CLIB_MEMORY_BARRIER()
Definition: clib.h:115
u8 * format_vnet_link(u8 *s, va_list *ap)
Definition: fib_types.c:41
u16 dpoi_next_node
The next VLIB node to follow.
Definition: dpo.h:182
This adjacency/interface has output features configured.
Definition: rewrite.h:57
static const char *const midchain_ethernet_nodes[]
Definition: adj_midchain.c:757
static vlib_buffer_t * vlib_get_buffer(vlib_main_t *vm, u32 buffer_index)
Translate buffer index into buffer pointer.
Definition: buffer_funcs.h:85
VNET_FEATURE_INIT(adj_midchain_tx_ip4, static)
static u32 adj_nbr_midchain_get_feature_node(ip_adjacency_t *adj)
Definition: adj_midchain.c:438
static ip46_type_t adj_proto_to_46(fib_protocol_t proto)
Definition: adj_internal.h:82
void dpo_stack(dpo_type_t child_type, dpo_proto_t child_proto, dpo_id_t *dpo, const dpo_id_t *parent)
Stack one DPO object on another, and thus establish a child-parent relationship.
Definition: dpo.c:516