FD.io VPP  v17.10-9-gd594711
Vector Packet Processing
adj.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.h>
17 #include <vnet/adj/adj_internal.h>
18 #include <vnet/adj/adj_glean.h>
19 #include <vnet/adj/adj_midchain.h>
20 #include <vnet/adj/adj_mcast.h>
21 #include <vnet/adj/adj_delegate.h>
22 #include <vnet/fib/fib_node_list.h>
23 
24 /* Adjacency packet/byte counters indexed by adjacency index. */
26 
27 /*
28  * the single adj pool
29  */
31 
32 /**
33  * @brief Global Config for enabling per-adjacency counters.
34  * By default these are disabled.
35  */
37 
38 always_inline void
40 {
41  if (CLIB_DEBUG > 0)
42  {
43  memset (adj, 0xfe, sizeof (adj[0]));
44  }
45 }
46 
49 {
50  ip_adjacency_t *adj;
51 
53 
54  adj_poison(adj);
55 
56  /* Make sure certain fields are always initialized. */
57  /* Validate adjacency counters. */
58  vlib_validate_combined_counter(&adjacency_counters,
59  adj_get_index(adj));
60 
61  fib_node_init(&adj->ia_node,
63 
64  adj->ia_nh_proto = proto;
65  adj->ia_flags = 0;
66  adj->rewrite_header.sw_if_index = ~0;
67  adj->rewrite_header.flags = 0;
68  adj->lookup_next_index = 0;
69  adj->ia_delegates = NULL;
70 
71  /* lest it become a midchain in the future */
72  memset(&adj->sub_type.midchain.next_dpo, 0,
73  sizeof(adj->sub_type.midchain.next_dpo));
74 
75  return (adj);
76 }
77 
78 static int
80 {
81  if (ADJ_INDEX_INVALID == adj_index)
82  return (!0);
83 
84  return (0);
85 }
86 
87 /**
88  * @brief Pretty print helper function for formatting specific adjacencies.
89  * @param s - input string to format
90  * @param args - other args passed to format function such as:
91  * - vnet_main_t
92  * - ip_lookup_main_t
93  * - adj_index
94  */
95 u8 *
96 format_ip_adjacency (u8 * s, va_list * args)
97 {
99  ip_adjacency_t * adj;
100  u32 adj_index;
101 
102  adj_index = va_arg (*args, u32);
103  fiaf = va_arg (*args, format_ip_adjacency_flags_t);
104  adj = adj_get(adj_index);
105 
106  switch (adj->lookup_next_index)
107  {
109  s = format (s, "%U", format_adj_nbr, adj_index, 0);
110  break;
111  case IP_LOOKUP_NEXT_ARP:
112  s = format (s, "%U", format_adj_nbr_incomplete, adj_index, 0);
113  break;
115  s = format (s, "%U", format_adj_glean, adj_index, 0);
116  break;
118  s = format (s, "%U", format_adj_midchain, adj_index, 2);
119  break;
121  s = format (s, "%U", format_adj_mcast, adj_index, 0);
122  break;
124  s = format (s, "%U", format_adj_mcast_midchain, adj_index, 0);
125  break;
126  default:
127  break;
128  }
129 
130  if (fiaf & FORMAT_IP_ADJACENCY_DETAIL)
131  {
133  adj_delegate_t *aed;
134  vlib_counter_t counts;
135 
136  vlib_get_combined_counter(&adjacency_counters, adj_index, &counts);
137  s = format (s, "\n counts:[%Ld:%Ld]", counts.packets, counts.bytes);
138  s = format (s, "\n locks:%d", adj->ia_node.fn_locks);
139  s = format(s, "\n delegates:\n ");
140  FOR_EACH_ADJ_DELEGATE(adj, adt, aed,
141  {
142  s = format(s, " %U\n", format_adj_deletegate, aed);
143  });
144 
145  s = format(s, "\n children:\n ");
147  }
148 
149  return s;
150 }
151 
152 /*
153  * adj_last_lock_gone
154  *
155  * last lock/reference to the adj has gone, we no longer need it.
156  */
157 static void
159 {
161 
163  ADJ_DBG(adj, "last-lock-gone");
164 
166 
167  switch (adj->lookup_next_index)
168  {
170  dpo_reset(&adj->sub_type.midchain.next_dpo);
171  /* FALL THROUGH */
172  case IP_LOOKUP_NEXT_ARP:
174  /*
175  * complete and incomplete nbr adjs
176  */
178  adj->ia_nh_proto,
179  adj->ia_link,
180  &adj->sub_type.nbr.next_hop,
181  adj->rewrite_header.sw_if_index);
182  break;
185  adj->rewrite_header.sw_if_index);
186  break;
190  adj->rewrite_header.sw_if_index);
191  break;
192  case IP_LOOKUP_NEXT_DROP:
193  case IP_LOOKUP_NEXT_PUNT:
196  case IP_LOOKUP_N_NEXT:
197  /*
198  * type not stored in any DB from which we need to remove it
199  */
200  break;
201  }
202 
204 
205  fib_node_deinit(&adj->ia_node);
206  ASSERT(0 == vec_len(adj->ia_delegates));
207  vec_free(adj->ia_delegates);
208  pool_put(adj_pool, adj);
209 }
210 
211 void
213 {
214  ip_adjacency_t *adj;
215 
216  if (adj_index_is_special(adj_index))
217  {
218  return;
219  }
220 
221  adj = adj_get(adj_index);
222  ASSERT(adj);
223 
224  ADJ_DBG(adj, "lock");
225  fib_node_lock(&adj->ia_node);
226 }
227 
228 void
230 {
231  ip_adjacency_t *adj;
232 
233  if (adj_index_is_special(adj_index))
234  {
235  return;
236  }
237 
238  adj = adj_get(adj_index);
239  ASSERT(adj);
240 
241  ADJ_DBG(adj, "unlock");
242  ASSERT(adj);
243 
244  fib_node_unlock(&adj->ia_node);
245 }
246 
247 u32
249  fib_node_type_t child_type,
250  fib_node_index_t child_index)
251 {
252  ASSERT(ADJ_INDEX_INVALID != adj_index);
253  if (adj_index_is_special(adj_index))
254  {
255  return (~0);
256  }
257 
259  adj_index,
260  child_type,
261  child_index));
262 }
263 
264 void
266  u32 sibling_index)
267 {
268  if (adj_index_is_special(adj_index))
269  {
270  return;
271  }
272 
274  adj_index,
275  sibling_index);
276 }
277 
278 /*
279  * Context for the walk to update the cached feture flags.
280  */
281 typedef struct adj_feature_update_t_
282 {
286 
287 static adj_walk_rc_t
289  void *arg)
290 {
292  ip_adjacency_t *adj;
293 
294  adj = adj_get(ai);
295 
296  /*
297  * this ugly mess matches the feature arc that is changing with affected
298  * adjacencies
299  */
301  (VNET_LINK_IP6 == adj->ia_link)) ||
303  (VNET_LINK_IP4 == adj->ia_link)) ||
305  (VNET_LINK_MPLS == adj->ia_link)))
306  {
307  if (ctx->enable)
308  adj->rewrite_header.flags |= VNET_REWRITE_HAS_FEATURES;
309  else
310  adj->rewrite_header.flags &= ~VNET_REWRITE_HAS_FEATURES;
311  }
312  return (ADJ_WALK_RC_CONTINUE);
313 }
314 
315 void
316 adj_feature_update (u32 sw_if_index,
317  u8 arc_index,
318  u8 is_enable)
319 {
320  /*
321  * Walk all the adjacencies on the interface to update the cached
322  * 'has-features' flag
323  */
325  .arc = arc_index,
326  .enable = is_enable,
327  };
328  adj_walk (sw_if_index, adj_feature_update_walk_cb, &ctx);
329 }
330 
331 /**
332  * @brief Walk the Adjacencies on a given interface
333  */
334 void
335 adj_walk (u32 sw_if_index,
336  adj_walk_cb_t cb,
337  void *ctx)
338 {
339  /*
340  * walk all the neighbor adjacencies
341  */
342  fib_protocol_t proto;
343 
345  {
346  adj_nbr_walk(sw_if_index, proto, cb, ctx);
347  adj_mcast_walk(sw_if_index, proto, cb, ctx);
348  }
349 }
350 
351 /**
352  * @brief Return the link type of the adjacency
353  */
356 {
357  const ip_adjacency_t *adj;
358 
359  adj = adj_get(ai);
360 
361  return (adj->ia_link);
362 }
363 
364 /**
365  * @brief Return the sw interface index of the adjacency.
366  */
367 u32
369 {
370  const ip_adjacency_t *adj;
371 
372  adj = adj_get(ai);
373 
374  return (adj->rewrite_header.sw_if_index);
375 }
376 
377 /**
378  * @brief Return true if the adjacency is 'UP', i.e. can be used for forwarding
379  * 0 is down, !0 is up.
380  */
381 int
383 {
384  const adj_delegate_t *aed;
385 
387 
388  if (NULL == aed)
389  {
390  /*
391  * no BFD tracking - resolved
392  */
393  return (!0);
394  }
395  else
396  {
397  /*
398  * defer to the state of the BFD tracking
399  */
400  return (ADJ_BFD_STATE_UP == aed->ad_bfd_state);
401  }
402 }
403 
404 /**
405  * @brief Return the rewrite string of the adjacency
406  */
407 const u8*
409 {
410  vnet_rewrite_header_t *rw;
411  ip_adjacency_t *adj;
412 
413  adj = adj_get(ai);
414  rw = &adj->rewrite_header;
415 
416  ASSERT (rw->data_bytes != 0xfefe);
417 
418  return (rw->data - rw->data_bytes);
419 }
420 
421 static fib_node_t *
423 {
424  ip_adjacency_t *adj;
425 
426  adj = adj_get(index);
427 
428  return (&adj->ia_node);
429 }
430 
431 #define ADJ_FROM_NODE(_node) \
432  ((ip_adjacency_t*)((char*)_node - STRUCT_OFFSET_OF(ip_adjacency_t, ia_node)))
433 
434 static void
436 {
438 }
439 
443 {
444  /*
445  * Que pasa. yo soj en el final!
446  */
447  ASSERT(0);
448 
450 }
451 
452 /*
453  * Adjacency's graph node virtual function table
454  */
455 static const fib_node_vft_t adj_vft = {
457  .fnv_last_lock = adj_node_last_lock_gone,
458  .fnv_back_walk = adj_back_walk_notify,
459 };
460 
461 static clib_error_t *
463 {
465 
470 
471  return (NULL);
472 }
473 
475 
476 static clib_error_t *
478  unformat_input_t * input,
479  vlib_cli_command_t * cmd)
480 {
482  u32 sw_if_index = ~0;
483  int summary = 0;
484 
486  {
487  if (unformat (input, "%d", &ai))
488  ;
489  else if (unformat (input, "sum"))
490  summary = 1;
491  else if (unformat (input, "summary"))
492  summary = 1;
493  else if (unformat (input, "%U",
495  &sw_if_index))
496  ;
497  else
498  break;
499  }
500 
501  if (summary)
502  {
503  vlib_cli_output (vm, "Number of adjacenies: %d", pool_elts(adj_pool));
504  vlib_cli_output (vm, "Per-adjacency counters: %s",
506  "enabled":
507  "disabled"));
508  }
509  else
510  {
511  if (ADJ_INDEX_INVALID != ai)
512  {
513  if (pool_is_free_index(adj_pool, ai))
514  {
515  vlib_cli_output (vm, "adjacency %d invalid", ai);
516  return 0;
517  }
518 
519  vlib_cli_output (vm, "[@%d] %U",
520  ai,
523  }
524  else
525  {
526  /* *INDENT-OFF* */
527  pool_foreach_index(ai, adj_pool,
528  ({
529  if (~0 != sw_if_index &&
530  sw_if_index != adj_get_sw_if_index(ai))
531  {
532  }
533  else
534  {
535  vlib_cli_output (vm, "[@%d] %U",
536  ai,
539  }
540  }));
541  /* *INDENT-ON* */
542  }
543  }
544  return 0;
545 }
546 
547 /*?
548  * Show all adjacencies.
549  * @cliexpar
550  * @cliexstart{sh adj}
551  * [@0]
552  * [@1] glean: loop0
553  * [@2] ipv4 via 1.0.0.2 loop0: IP4: 00:00:22:aa:bb:cc -> 00:00:11:aa:bb:cc
554  * [@3] mpls via 1.0.0.2 loop0: MPLS: 00:00:22:aa:bb:cc -> 00:00:11:aa:bb:cc
555  * [@4] ipv4 via 1.0.0.3 loop0: IP4: 00:00:22:aa:bb:cc -> 00:00:11:aa:bb:cc
556  * [@5] mpls via 1.0.0.3 loop0: MPLS: 00:00:22:aa:bb:cc -> 00:00:11:aa:bb:cc
557  * @cliexend
558  ?*/
559 VLIB_CLI_COMMAND (adj_show_command, static) = {
560  .path = "show adj",
561  .short_help = "show adj [<adj_index>] [interface] [summary]",
562  .function = adj_show,
563 };
564 
565 /**
566  * @brief CLI invoked function to enable/disable per-adj counters
567  */
568 static clib_error_t *
570  unformat_input_t * input,
571  vlib_cli_command_t * cmd)
572 {
573  clib_error_t *error = NULL;
574  int enable = ~0;
575 
577  {
578  if (unformat (input, "enable"))
579  enable = 1;
580  else if (unformat (input, "disable"))
581  enable = 0;
582  else
583  break;
584  }
585 
586  if (enable != ~0)
587  {
588  /* user requested something sensible */
590  }
591  else
592  {
593  error = clib_error_return (0, "specify 'enable' or 'disable'");
594  }
595 
596  return (error);
597 }
598 
599 /*?
600  * Enabe/disble per-adjacency counters. This is optional because it comes with
601  * a non-negligible performance cost.
602  ?*/
603 VLIB_CLI_COMMAND (adj_cli_counters_set_command, static) = {
604  .path = "adjacency counters",
605  .short_help = "adjacency counters [enable|disable]",
606  .function = adj_cli_counters_set,
607 };
void adj_glean_remove(fib_protocol_t proto, u32 sw_if_index)
Definition: adj_glean.c:92
adj_flags_t ia_flags
Flags on the adjacency 1-bytes.
Definition: adj.h:208
ip_adjacency_t * adj_pool
The global adjacnecy pool.
Definition: adj.c:30
void vlib_validate_combined_counter(vlib_combined_counter_main_t *cm, u32 index)
validate a combined counter
Definition: counter.c:89
enum fib_node_type_t_ fib_node_type_t
The types of nodes in a FIB graph.
u8 * format_adj_mcast_midchain(u8 *s, va_list *ap)
Definition: adj_mcast.c:353
u8 * format_adj_nbr(u8 *s, va_list *ap)
Format a neigbour (REWRITE) adjacency.
Definition: adj_nbr.c:1008
static int adj_index_is_special(adj_index_t adj_index)
Definition: adj.c:79
void adj_lock(adj_index_t adj_index)
Take a reference counting lock on the adjacency.
Definition: adj.c:212
vnet_main_t * vnet_get_main(void)
Definition: misc.c:46
void fib_node_init(fib_node_t *node, fib_node_type_t type)
Definition: fib_node.c:183
const u8 * adj_get_rewrite(adj_index_t ai)
Return the rewrite string of the adjacency.
Definition: adj.c:408
Multicast Adjacency.
Definition: adj.h:82
vnet_link_t adj_get_link_type(adj_index_t ai)
Return the link type of the adjacency.
Definition: adj.c:355
#define NULL
Definition: clib.h:55
IP unicast adjacency.
Definition: adj.h:174
enum fib_node_back_walk_rc_t_ fib_node_back_walk_rc_t
Return code from a back walk function.
adj_bfd_state_t ad_bfd_state
BFD session state.
Definition: adj_delegate.h:85
This packet is to be rewritten and forwarded to the next processing node.
Definition: adj.h:73
Combined counter to hold both packets and byte differences.
Definition: counter.h:139
void fib_node_deinit(fib_node_t *node)
Definition: fib_node.c:198
ip_lookup_main_t lookup_main
Definition: ip4.h:97
u8 * format(u8 *s, const char *fmt,...)
Definition: format.c:419
unformat_function_t unformat_vnet_sw_interface
u8 * format_adj_nbr_incomplete(u8 *s, va_list *ap)
Format aa incomplete neigbour (ARP) adjacency.
Definition: adj_nbr.c:987
void adj_child_remove(adj_index_t adj_index, u32 sibling_index)
Remove a child dependent.
Definition: adj.c:265
struct ip_adjacency_t_::@38::@40 midchain
IP_LOOKUP_NEXT_MIDCHAIN.
enum fib_protocol_t_ fib_protocol_t
Protocol Type.
u32 fib_node_child_add(fib_node_type_t parent_type, fib_node_index_t parent_index, fib_node_type_t type, fib_node_index_t index)
Definition: fib_node.c:96
#define vlib_worker_thread_barrier_sync(X)
Definition: threads.h:212
void fib_node_register_type(fib_node_type_t type, const fib_node_vft_t *vft)
fib_node_register_type
Definition: fib_node.c:58
vnet_link_t ia_link
link/ether-type 1 bytes
Definition: adj.h:195
Adjacency to punt this packet.
Definition: adj.h:55
u8 output_feature_arc_index
Definition: lookup.h:137
static ip_adjacency_t * adj_get(adj_index_t adj_index)
Get a pointer to an adjacency object from its index.
Definition: adj.h:365
#define VLIB_INIT_FUNCTION(x)
Definition: init.h:111
#define always_inline
Definition: clib.h:84
enum adj_walk_rc_t_ adj_walk_rc_t
return codes from a adjacency walker callback function
void adj_mcast_walk(u32 sw_if_index, fib_protocol_t proto, adj_walk_cb_t cb, void *ctx)
Walk the multicast Adjacencies on a given interface.
Definition: adj_mcast.c:320
#define FOR_EACH_ADJ_DELEGATE(_adj, _adt, _aed, _body)
Definition: adj_delegate.h:31
#define clib_error_return(e, args...)
Definition: error.h:99
void adj_unlock(adj_index_t adj_index)
Release a reference counting lock on the adjacency.
Definition: adj.c:229
A Delagate is a means to implement the Delagation design pattern; the extension of an object&#39;s functi...
Definition: adj_delegate.h:61
static clib_error_t * adj_cli_counters_set(vlib_main_t *vm, unformat_input_t *input, vlib_cli_command_t *cmd)
CLI invoked function to enable/disable per-adj counters.
Definition: adj.c:569
void adj_nbr_remove(adj_index_t ai, fib_protocol_t nh_proto, vnet_link_t link_type, const ip46_address_t *nh_addr, u32 sw_if_index)
Definition: adj_nbr.c:79
u8 output_feature_arc_index
Definition: mpls.h:57
#define ADJ_DBG(_e, _fmt, _args...)
big switch to turn on Adjacency debugging
Definition: adj_internal.h:42
#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
int adj_is_up(adj_index_t ai)
Return true if the adjacency is &#39;UP&#39;, i.e.
Definition: adj.c:382
counter_t packets
packet counter
Definition: counter.h:141
u32 adj_get_sw_if_index(adj_index_t ai)
Return the sw interface index of the adjacency.
Definition: adj.c:368
struct ip_adjacency_t_::@38::@39 nbr
IP_LOOKUP_NEXT_ARP/IP_LOOKUP_NEXT_REWRITE.
void fib_node_lock(fib_node_t *node)
Definition: fib_node.c:204
void adj_midchain_module_init(void)
Module initialisation.
Definition: adj_midchain.c:663
struct _unformat_input_t unformat_input_t
enum adj_delegate_type_t_ adj_delegate_type_t
Delegate types.
#define ADJ_FROM_NODE(_node)
Definition: adj.c:431
static adj_index_t adj_get_index(ip_adjacency_t *adj)
Get a pointer to an adjacency object from its index.
Definition: adj_internal.h:86
#define pool_put(P, E)
Free an object E in pool P.
Definition: pool.h:270
This packet matches an "interface route" and packets need to be passed to ARP to find rewrite string ...
Definition: adj.h:68
int adj_per_adj_counters
Global Config for enabling per-adjacency counters.
Definition: adj.c:36
static fib_node_back_walk_rc_t adj_back_walk_notify(fib_node_t *node, fib_node_back_walk_ctx_t *ctx)
Definition: adj.c:441
An node in the FIB graph.
Definition: fib_node.h:279
void adj_nbr_module_init(void)
Module initialisation.
Definition: adj_nbr.c:1116
void fib_node_unlock(fib_node_t *node)
Definition: fib_node.c:210
vlib_combined_counter_main_t adjacency_counters
Adjacency packet counters.
Definition: adj.c:25
fib_node_t ia_node
Linkage into the FIB node grpah.
Definition: adj.h:182
u8 * format_adj_deletegate(u8 *s, va_list *args)
Definition: adj_delegate.c:137
void adj_mcast_remove(fib_protocol_t proto, u32 sw_if_index)
Definition: adj_mcast.c:186
void adj_glean_module_init(void)
Module initialisation.
Definition: adj_glean.c:282
union ip_adjacency_t_::@38 sub_type
#define pool_get_aligned(P, E, A)
Allocate an object E from a pool P (general version).
Definition: pool.h:188
static clib_error_t * adj_show(vlib_main_t *vm, unformat_input_t *input, vlib_cli_command_t *cmd)
Definition: adj.c:477
This packet matches an "incomplete adjacency" and packets need to be passed to ARP to find rewrite st...
Definition: adj.h:63
Adjacency to drop this packet.
Definition: adj.h:53
#define UNFORMAT_END_OF_INPUT
Definition: format.h:143
fib_node_list_t fn_children
Vector of nodes that depend upon/use/share this node.
Definition: fib_node.h:296
mpls_main_t mpls_main
Definition: mpls.c:25
static void vlib_get_combined_counter(const vlib_combined_counter_main_t *cm, u32 index, vlib_counter_t *result)
Get the value of a combined counter, never called in the speed path Scrapes the entire set of per-thr...
Definition: counter.h:250
vlib_main_t * vm
Definition: buffer.c:283
static void adj_last_lock_gone(ip_adjacency_t *adj)
Definition: adj.c:158
#define vec_free(V)
Free vector&#39;s memory (no header).
Definition: vec.h:336
Multicast Midchain Adjacency.
Definition: adj.h:86
fib_node_get_t fnv_get
Definition: fib_node.h:267
u8 * format_adj_glean(u8 *s, va_list *ap)
Format/display a glean adjacency.
Definition: adj_glean.c:223
void adj_mcast_module_init(void)
Module initialisation.
Definition: adj_mcast.c:475
u32 fib_node_index_t
A typedef of a node index.
Definition: fib_types.h:28
adj_walk_rc_t(* adj_walk_cb_t)(adj_index_t ai, void *ctx)
Call back function when walking adjacencies.
Definition: adj_types.h:50
static void adj_poison(ip_adjacency_t *adj)
Definition: adj.c:39
#define pool_is_free_index(P, I)
Use free bitmap to query whether given index is free.
Definition: pool.h:267
u32 adj_index_t
An index for adjacencies.
Definition: adj_types.h:30
u8 * format_adj_mcast(u8 *s, va_list *ap)
Format/display a mcast adjacency.
Definition: adj_mcast.c:335
void adj_nbr_walk(u32 sw_if_index, fib_protocol_t adj_nh_proto, adj_walk_cb_t cb, void *ctx)
Walk the neighbour Adjacencies on a given interface.
Definition: adj_nbr.c:567
Context passed between object during a back walk.
Definition: fib_node.h:192
#define VLIB_CLI_COMMAND(x,...)
Definition: cli.h:154
void adj_walk(u32 sw_if_index, adj_walk_cb_t cb, void *ctx)
Walk the Adjacencies on a given interface.
Definition: adj.c:335
u8 * format_adj_midchain(u8 *s, va_list *ap)
Format a midchain adjacency.
Definition: adj_midchain.c:583
This packets follow a mid-chain adjacency.
Definition: adj.h:76
BFD session state.
Definition: adj_delegate.h:28
u32 fib_node_list_get_size(fib_node_list_t list)
#define ASSERT(truth)
unsigned int u32
Definition: types.h:88
static fib_node_t * adj_get_node(fib_node_index_t index)
Definition: adj.c:422
adj_delegate_t * adj_delegate_get(const ip_adjacency_t *adj, adj_delegate_type_t type)
Definition: adj_delegate.c:48
ip6_main_t ip6_main
Definition: ip6_forward.c:3043
ip_lookup_main_t lookup_main
Definition: ip6.h:158
long ctx[MAX_CONNS]
Definition: main.c:95
enum vnet_link_t_ vnet_link_t
Link Type: A description of the protocol of packets on the link.
void fib_node_child_remove(fib_node_type_t parent_type, fib_node_index_t parent_index, fib_node_index_t sibling_index)
Definition: fib_node.c:121
static vlib_main_t * vlib_get_main(void)
Definition: global_funcs.h:23
counter_t bytes
byte counter
Definition: counter.h:142
This packets needs to go to ICMP error.
Definition: adj.h:79
This packet is for one of our own IP addresses.
Definition: adj.h:58
fib_protocol_t ia_nh_proto
The protocol of the neighbor/peer.
Definition: adj.h:202
#define vec_len(v)
Number of elements in vector (rvalue-only, NULL tolerant)
unsigned char u8
Definition: types.h:56
ip_lookup_next_t lookup_next_index
Next hop after ip4-lookup.
Definition: adj.h:189
u32 fn_locks
Number of dependents on this node.
Definition: fib_node.h:302
u32 adj_child_add(adj_index_t adj_index, fib_node_type_t child_type, fib_node_index_t child_index)
Add a child dependent to an adjacency.
Definition: adj.c:248
u8 * format_ip_adjacency(u8 *s, va_list *args)
Pretty print helper function for formatting specific adjacencies.
Definition: adj.c:96
ip_adjacency_t * adj_alloc(fib_protocol_t proto)
Definition: adj.c:48
A collection of combined counters.
Definition: counter.h:180
#define FOR_EACH_FIB_IP_PROTOCOL(_item)
Definition: fib_types.h:62
static void adj_node_last_lock_gone(fib_node_t *node)
Definition: adj.c:435
A FIB graph nodes virtual function table.
Definition: fib_node.h:266
void vlib_worker_thread_barrier_release(vlib_main_t *vm)
Definition: threads.c:1488
ip4_main_t ip4_main
Global ip4 main structure.
Definition: ip4_forward.c:1175
void adj_feature_update(u32 sw_if_index, u8 arc_index, u8 is_enable)
Notify the adjacency subsystem that the features settings for an interface have changed.
Definition: adj.c:316
void dpo_reset(dpo_id_t *dpo)
reset a DPO ID The DPO will be unlocked.
Definition: dpo.c:225
static clib_error_t * adj_module_init(vlib_main_t *vm)
Definition: adj.c:462
#define pool_foreach_index(i, v, body)
Iterate pool by index.
Definition: pool.h:479
u8 * fib_node_children_format(fib_node_list_t list, u8 *s)
Definition: fib_node.c:174
#define CLIB_CACHE_LINE_BYTES
Definition: cache.h:67
struct adj_feature_update_t_ adj_feature_update_ctx_t
This adjacency/interface has output features configured.
Definition: rewrite.h:57
void vlib_cli_output(vlib_main_t *vm, char *fmt,...)
Definition: cli.c:680
static adj_walk_rc_t adj_feature_update_walk_cb(adj_index_t ai, void *arg)
Definition: adj.c:288
static int adj_are_counters_enabled(void)
Get the global configuration option for enabling per-adj counters.
Definition: adj.h:374
uword unformat(unformat_input_t *i, const char *fmt,...)
Definition: unformat.c:972
static uword unformat_check_input(unformat_input_t *i)
Definition: format.h:169
struct adj_delegate_t_ * ia_delegates
more control plane members that do not fit on the first cacheline
Definition: adj.h:271
enum format_ip_adjacency_flags_t_ format_ip_adjacency_flags_t
static uword pool_elts(void *v)
Number of active elements in a pool.
Definition: pool.h:128