blob: 0c9f7468b11afd8ecdbbec849c0011cd746c6111 [file] [log] [blame]
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001/*
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>
Neale Ranns0bfe5d82016-08-25 15:29:12 +010017#include <vnet/adj/adj_internal.h>
18#include <vnet/adj/adj_glean.h>
19#include <vnet/adj/adj_midchain.h>
Neale Ranns32e1c012016-11-22 17:07:28 +000020#include <vnet/adj/adj_mcast.h>
Neale Ranns88fc83e2017-04-05 08:11:14 -070021#include <vnet/adj/adj_delegate.h>
Neale Ranns0bfe5d82016-08-25 15:29:12 +010022#include <vnet/fib/fib_node_list.h>
23
Neale Ranns0bfe5d82016-08-25 15:29:12 +010024/* Adjacency packet/byte counters indexed by adjacency index. */
25vlib_combined_counter_main_t adjacency_counters;
26
Neale Ranns6c3ebcc2016-10-02 21:20:15 +010027/*
28 * the single adj pool
29 */
30ip_adjacency_t *adj_pool;
31
Neale Ranns9c6a6132017-02-21 05:33:14 -080032/**
33 * @brief Global Config for enabling per-adjacency counters.
34 * By default these are disabled.
35 */
36int adj_per_adj_counters;
37
Neale Ranns0bfe5d82016-08-25 15:29:12 +010038always_inline void
39adj_poison (ip_adjacency_t * adj)
40{
41 if (CLIB_DEBUG > 0)
42 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +010043 memset (adj, 0xfe, sizeof (adj[0]));
Neale Ranns0bfe5d82016-08-25 15:29:12 +010044 }
45}
46
47ip_adjacency_t *
48adj_alloc (fib_protocol_t proto)
49{
50 ip_adjacency_t *adj;
51
Neale Rannsfa5d1982017-02-20 14:19:51 -080052 pool_get_aligned(adj_pool, adj, CLIB_CACHE_LINE_BYTES);
Neale Ranns0bfe5d82016-08-25 15:29:12 +010053
54 adj_poison(adj);
55
56 /* Make sure certain fields are always initialized. */
57 /* Validate adjacency counters. */
58 vlib_validate_combined_counter(&adjacency_counters,
Neale Ranns6c3ebcc2016-10-02 21:20:15 +010059 adj_get_index(adj));
Neale Ranns0bfe5d82016-08-25 15:29:12 +010060
Neale Ranns0bfe5d82016-08-25 15:29:12 +010061 fib_node_init(&adj->ia_node,
62 FIB_NODE_TYPE_ADJ);
Neale Ranns88fc83e2017-04-05 08:11:14 -070063
Neale Ranns0bfe5d82016-08-25 15:29:12 +010064 adj->ia_nh_proto = proto;
Neale Ranns19c68d22016-12-07 15:38:14 +000065 adj->ia_flags = 0;
Neale Ranns88fc83e2017-04-05 08:11:14 -070066 adj->rewrite_header.sw_if_index = ~0;
Neale Ranns8c4611b2017-05-23 03:43:47 -070067 adj->rewrite_header.flags = 0;
Neale Ranns88fc83e2017-04-05 08:11:14 -070068 adj->lookup_next_index = 0;
69 adj->ia_delegates = NULL;
Neale Ranns0bfe5d82016-08-25 15:29:12 +010070
Neale Ranns0f26c5a2017-03-01 15:12:11 -080071 /* 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
Neale Ranns0bfe5d82016-08-25 15:29:12 +010075 return (adj);
76}
77
78static int
79adj_index_is_special (adj_index_t adj_index)
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 */
95u8 *
96format_ip_adjacency (u8 * s, va_list * args)
97{
Neale Rannsb80c5362016-10-08 13:03:40 +010098 format_ip_adjacency_flags_t fiaf;
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);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100105
Neale Rannsb80c5362016-10-08 13:03:40 +0100106 switch (adj->lookup_next_index)
107 {
108 case IP_LOOKUP_NEXT_REWRITE:
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;
114 case IP_LOOKUP_NEXT_GLEAN:
115 s = format (s, "%U", format_adj_glean, adj_index, 0);
116 break;
117 case IP_LOOKUP_NEXT_MIDCHAIN:
118 s = format (s, "%U", format_adj_midchain, adj_index, 2);
119 break;
Neale Ranns32e1c012016-11-22 17:07:28 +0000120 case IP_LOOKUP_NEXT_MCAST:
121 s = format (s, "%U", format_adj_mcast, adj_index, 0);
122 break;
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800123 case IP_LOOKUP_NEXT_MCAST_MIDCHAIN:
124 s = format (s, "%U", format_adj_mcast_midchain, adj_index, 0);
125 break;
Neale Rannsb80c5362016-10-08 13:03:40 +0100126 default:
127 break;
128 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100129
Neale Rannsb80c5362016-10-08 13:03:40 +0100130 if (fiaf & FORMAT_IP_ADJACENCY_DETAIL)
131 {
Neale Ranns044183f2017-01-24 01:34:25 -0800132 vlib_counter_t counts;
133
134 vlib_get_combined_counter(&adjacency_counters, adj_index, &counts);
Neale Ranns2303cb12018-02-21 04:57:17 -0800135 s = format (s, "\n counts:[%Ld:%Ld]", counts.packets, counts.bytes);
136 s = format (s, "\n locks:%d", adj->ia_node.fn_locks);
Neale Ranns88fc83e2017-04-05 08:11:14 -0700137 s = format(s, "\n delegates:\n ");
Neale Rannsd79a43c2018-02-19 02:36:19 -0800138 adj_delegate_format(s, adj);
Neale Ranns88fc83e2017-04-05 08:11:14 -0700139
Neale Ranns2303cb12018-02-21 04:57:17 -0800140 s = format(s, "\n children:");
141 if (fib_node_list_get_size(adj->ia_node.fn_children))
142 {
143 s = format(s, "\n ");
144 s = fib_node_children_format(adj->ia_node.fn_children, s);
145 }
Neale Rannsb80c5362016-10-08 13:03:40 +0100146 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100147
Neale Rannsb80c5362016-10-08 13:03:40 +0100148 return s;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100149}
150
151/*
152 * adj_last_lock_gone
153 *
154 * last lock/reference to the adj has gone, we no longer need it.
155 */
156static void
157adj_last_lock_gone (ip_adjacency_t *adj)
158{
Neale Rannsb80c5362016-10-08 13:03:40 +0100159 vlib_main_t * vm = vlib_get_main();
160
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100161 ASSERT(0 == fib_node_list_get_size(adj->ia_node.fn_children));
162 ADJ_DBG(adj, "last-lock-gone");
163
Neale Rannsd79a43c2018-02-19 02:36:19 -0800164 adj_delegate_adj_deleted(adj);
Ole Troan793c7fe2018-02-15 16:14:56 +0100165
Neale Rannsb80c5362016-10-08 13:03:40 +0100166 vlib_worker_thread_barrier_sync (vm);
167
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100168 switch (adj->lookup_next_index)
169 {
170 case IP_LOOKUP_NEXT_MIDCHAIN:
171 dpo_reset(&adj->sub_type.midchain.next_dpo);
172 /* FALL THROUGH */
173 case IP_LOOKUP_NEXT_ARP:
174 case IP_LOOKUP_NEXT_REWRITE:
175 /*
176 * complete and incomplete nbr adjs
177 */
Neale Ranns177bbdc2016-11-15 09:46:51 +0000178 adj_nbr_remove(adj_get_index(adj),
179 adj->ia_nh_proto,
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100180 adj->ia_link,
181 &adj->sub_type.nbr.next_hop,
182 adj->rewrite_header.sw_if_index);
183 break;
184 case IP_LOOKUP_NEXT_GLEAN:
185 adj_glean_remove(adj->ia_nh_proto,
186 adj->rewrite_header.sw_if_index);
187 break;
Neale Ranns32e1c012016-11-22 17:07:28 +0000188 case IP_LOOKUP_NEXT_MCAST:
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800189 case IP_LOOKUP_NEXT_MCAST_MIDCHAIN:
Neale Ranns32e1c012016-11-22 17:07:28 +0000190 adj_mcast_remove(adj->ia_nh_proto,
191 adj->rewrite_header.sw_if_index);
192 break;
Neale Ranns88fc83e2017-04-05 08:11:14 -0700193 case IP_LOOKUP_NEXT_DROP:
194 case IP_LOOKUP_NEXT_PUNT:
195 case IP_LOOKUP_NEXT_LOCAL:
196 case IP_LOOKUP_NEXT_ICMP_ERROR:
197 case IP_LOOKUP_N_NEXT:
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100198 /*
199 * type not stored in any DB from which we need to remove it
200 */
201 break;
202 }
203
Neale Rannsb80c5362016-10-08 13:03:40 +0100204 vlib_worker_thread_barrier_release(vm);
205
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100206 fib_node_deinit(&adj->ia_node);
Neale Ranns88fc83e2017-04-05 08:11:14 -0700207 ASSERT(0 == vec_len(adj->ia_delegates));
208 vec_free(adj->ia_delegates);
Neale Ranns6c3ebcc2016-10-02 21:20:15 +0100209 pool_put(adj_pool, adj);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100210}
211
Andrew Yourtchenko5f3fcb92017-10-25 05:50:37 -0700212u32
213adj_dpo_get_urpf (const dpo_id_t *dpo)
214{
215 ip_adjacency_t *adj;
216
217 adj = adj_get(dpo->dpoi_index);
218
219 return (adj->rewrite_header.sw_if_index);
220}
221
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100222void
223adj_lock (adj_index_t adj_index)
224{
225 ip_adjacency_t *adj;
226
227 if (adj_index_is_special(adj_index))
228 {
229 return;
230 }
231
232 adj = adj_get(adj_index);
233 ASSERT(adj);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100234
235 ADJ_DBG(adj, "lock");
236 fib_node_lock(&adj->ia_node);
237}
238
239void
240adj_unlock (adj_index_t adj_index)
241{
242 ip_adjacency_t *adj;
243
244 if (adj_index_is_special(adj_index))
245 {
246 return;
247 }
248
249 adj = adj_get(adj_index);
250 ASSERT(adj);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100251
252 ADJ_DBG(adj, "unlock");
253 ASSERT(adj);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100254
255 fib_node_unlock(&adj->ia_node);
256}
257
258u32
259adj_child_add (adj_index_t adj_index,
260 fib_node_type_t child_type,
261 fib_node_index_t child_index)
262{
263 ASSERT(ADJ_INDEX_INVALID != adj_index);
264 if (adj_index_is_special(adj_index))
265 {
266 return (~0);
267 }
268
269 return (fib_node_child_add(FIB_NODE_TYPE_ADJ,
270 adj_index,
271 child_type,
272 child_index));
273}
274
275void
276adj_child_remove (adj_index_t adj_index,
277 u32 sibling_index)
278{
279 if (adj_index_is_special(adj_index))
280 {
281 return;
282 }
283
284 fib_node_child_remove(FIB_NODE_TYPE_ADJ,
285 adj_index,
286 sibling_index);
287}
288
Neale Rannsb069a692017-03-15 12:34:25 -0400289/*
290 * Context for the walk to update the cached feture flags.
291 */
292typedef struct adj_feature_update_t_
293{
294 u8 arc;
295 u8 enable;
296} adj_feature_update_ctx_t;
297
298static adj_walk_rc_t
299adj_feature_update_walk_cb (adj_index_t ai,
300 void *arg)
301{
302 adj_feature_update_ctx_t *ctx = arg;
303 ip_adjacency_t *adj;
304
305 adj = adj_get(ai);
306
307 /*
308 * this ugly mess matches the feature arc that is changing with affected
309 * adjacencies
310 */
311 if (((ctx->arc == ip6_main.lookup_main.output_feature_arc_index) &&
312 (VNET_LINK_IP6 == adj->ia_link)) ||
313 ((ctx->arc == ip4_main.lookup_main.output_feature_arc_index) &&
314 (VNET_LINK_IP4 == adj->ia_link)) ||
315 ((ctx->arc == mpls_main.output_feature_arc_index) &&
316 (VNET_LINK_MPLS == adj->ia_link)))
317 {
318 if (ctx->enable)
319 adj->rewrite_header.flags |= VNET_REWRITE_HAS_FEATURES;
320 else
321 adj->rewrite_header.flags &= ~VNET_REWRITE_HAS_FEATURES;
322 }
323 return (ADJ_WALK_RC_CONTINUE);
324}
325
326void
327adj_feature_update (u32 sw_if_index,
328 u8 arc_index,
329 u8 is_enable)
330{
331 /*
332 * Walk all the adjacencies on the interface to update the cached
333 * 'has-features' flag
334 */
335 adj_feature_update_ctx_t ctx = {
336 .arc = arc_index,
337 .enable = is_enable,
338 };
339 adj_walk (sw_if_index, adj_feature_update_walk_cb, &ctx);
340}
341
Neale Rannsffd78d12018-02-09 06:05:16 -0800342static adj_walk_rc_t
343adj_mtu_update_walk_cb (adj_index_t ai,
344 void *arg)
345{
346 ip_adjacency_t *adj;
347
348 adj = adj_get(ai);
349
350 vnet_rewrite_update_mtu (vnet_get_main(),
351 &adj->rewrite_header);
352
353 return (ADJ_WALK_RC_CONTINUE);
354}
355
Ole Troan70083ee2018-03-27 14:48:39 +0200356void
357adj_mtu_update (u32 sw_if_index)
Neale Rannsffd78d12018-02-09 06:05:16 -0800358{
359 /*
360 * Walk all the adjacencies on the interface to update the cached MTU
361 */
362 adj_walk (sw_if_index, adj_mtu_update_walk_cb, NULL);
363}
364
Neale Rannsb069a692017-03-15 12:34:25 -0400365/**
366 * @brief Walk the Adjacencies on a given interface
367 */
368void
369adj_walk (u32 sw_if_index,
370 adj_walk_cb_t cb,
371 void *ctx)
372{
373 /*
374 * walk all the neighbor adjacencies
375 */
376 fib_protocol_t proto;
377
378 FOR_EACH_FIB_IP_PROTOCOL(proto)
379 {
380 adj_nbr_walk(sw_if_index, proto, cb, ctx);
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800381 adj_mcast_walk(sw_if_index, proto, cb, ctx);
Neale Rannsb069a692017-03-15 12:34:25 -0400382 }
383}
384
Neale Rannsb80c5362016-10-08 13:03:40 +0100385/**
386 * @brief Return the link type of the adjacency
387 */
388vnet_link_t
389adj_get_link_type (adj_index_t ai)
390{
391 const ip_adjacency_t *adj;
392
393 adj = adj_get(ai);
394
395 return (adj->ia_link);
396}
397
398/**
399 * @brief Return the sw interface index of the adjacency.
400 */
401u32
402adj_get_sw_if_index (adj_index_t ai)
403{
404 const ip_adjacency_t *adj;
405
406 adj = adj_get(ai);
407
408 return (adj->rewrite_header.sw_if_index);
409}
410
411/**
Neale Ranns88fc83e2017-04-05 08:11:14 -0700412 * @brief Return true if the adjacency is 'UP', i.e. can be used for forwarding
413 * 0 is down, !0 is up.
414 */
415int
416adj_is_up (adj_index_t ai)
417{
Neale Rannsd79a43c2018-02-19 02:36:19 -0800418 return (adj_bfd_is_up(ai));
Neale Ranns88fc83e2017-04-05 08:11:14 -0700419}
420
421/**
Neale Ranns2e7fbcc2017-03-15 04:22:25 -0700422 * @brief Return the rewrite string of the adjacency
Neale Rannsb80c5362016-10-08 13:03:40 +0100423 */
424const u8*
425adj_get_rewrite (adj_index_t ai)
426{
427 vnet_rewrite_header_t *rw;
428 ip_adjacency_t *adj;
429
430 adj = adj_get(ai);
431 rw = &adj->rewrite_header;
432
433 ASSERT (rw->data_bytes != 0xfefe);
434
435 return (rw->data - rw->data_bytes);
436}
437
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100438static fib_node_t *
439adj_get_node (fib_node_index_t index)
440{
441 ip_adjacency_t *adj;
442
443 adj = adj_get(index);
444
445 return (&adj->ia_node);
446}
447
448#define ADJ_FROM_NODE(_node) \
449 ((ip_adjacency_t*)((char*)_node - STRUCT_OFFSET_OF(ip_adjacency_t, ia_node)))
450
451static void
452adj_node_last_lock_gone (fib_node_t *node)
453{
454 adj_last_lock_gone(ADJ_FROM_NODE(node));
455}
456
457static fib_node_back_walk_rc_t
458adj_back_walk_notify (fib_node_t *node,
459 fib_node_back_walk_ctx_t *ctx)
460{
461 /*
462 * Que pasa. yo soj en el final!
463 */
464 ASSERT(0);
465
466 return (FIB_NODE_BACK_WALK_CONTINUE);
467}
468
469/*
470 * Adjacency's graph node virtual function table
471 */
472static const fib_node_vft_t adj_vft = {
473 .fnv_get = adj_get_node,
474 .fnv_last_lock = adj_node_last_lock_gone,
475 .fnv_back_walk = adj_back_walk_notify,
476};
477
478static clib_error_t *
479adj_module_init (vlib_main_t * vm)
480{
481 fib_node_register_type(FIB_NODE_TYPE_ADJ, &adj_vft);
482
483 adj_nbr_module_init();
484 adj_glean_module_init();
485 adj_midchain_module_init();
Neale Ranns32e1c012016-11-22 17:07:28 +0000486 adj_mcast_module_init();
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100487
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100488 return (NULL);
489}
490
491VLIB_INIT_FUNCTION (adj_module_init);
492
Neale Rannsb80c5362016-10-08 13:03:40 +0100493static clib_error_t *
494adj_show (vlib_main_t * vm,
495 unformat_input_t * input,
496 vlib_cli_command_t * cmd)
497{
498 adj_index_t ai = ADJ_INDEX_INVALID;
499 u32 sw_if_index = ~0;
Neale Ranns9c6a6132017-02-21 05:33:14 -0800500 int summary = 0;
Neale Rannsb80c5362016-10-08 13:03:40 +0100501
502 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
503 {
504 if (unformat (input, "%d", &ai))
505 ;
Neale Ranns9c6a6132017-02-21 05:33:14 -0800506 else if (unformat (input, "sum"))
507 summary = 1;
508 else if (unformat (input, "summary"))
509 summary = 1;
Neale Rannsb80c5362016-10-08 13:03:40 +0100510 else if (unformat (input, "%U",
511 unformat_vnet_sw_interface, vnet_get_main(),
512 &sw_if_index))
513 ;
514 else
515 break;
516 }
517
Neale Ranns9c6a6132017-02-21 05:33:14 -0800518 if (summary)
Neale Rannsb80c5362016-10-08 13:03:40 +0100519 {
Neale Ranns9c6a6132017-02-21 05:33:14 -0800520 vlib_cli_output (vm, "Number of adjacenies: %d", pool_elts(adj_pool));
521 vlib_cli_output (vm, "Per-adjacency counters: %s",
522 (adj_are_counters_enabled() ?
523 "enabled":
524 "disabled"));
Neale Rannsb80c5362016-10-08 13:03:40 +0100525 }
526 else
527 {
Neale Ranns9c6a6132017-02-21 05:33:14 -0800528 if (ADJ_INDEX_INVALID != ai)
529 {
530 if (pool_is_free_index(adj_pool, ai))
Neale Ranns8b37b872016-11-21 12:25:22 +0000531 {
Neale Ranns9c6a6132017-02-21 05:33:14 -0800532 vlib_cli_output (vm, "adjacency %d invalid", ai);
533 return 0;
534 }
Neale Rannsb80c5362016-10-08 13:03:40 +0100535
Neale Ranns9c6a6132017-02-21 05:33:14 -0800536 vlib_cli_output (vm, "[@%d] %U",
537 ai,
538 format_ip_adjacency, ai,
539 FORMAT_IP_ADJACENCY_DETAIL);
540 }
541 else
542 {
543 /* *INDENT-OFF* */
544 pool_foreach_index(ai, adj_pool,
545 ({
546 if (~0 != sw_if_index &&
547 sw_if_index != adj_get_sw_if_index(ai))
548 {
549 }
550 else
551 {
552 vlib_cli_output (vm, "[@%d] %U",
553 ai,
554 format_ip_adjacency, ai,
555 FORMAT_IP_ADJACENCY_NONE);
556 }
557 }));
558 /* *INDENT-ON* */
559 }
560 }
Neale Rannsb80c5362016-10-08 13:03:40 +0100561 return 0;
562}
563
564/*?
565 * Show all adjacencies.
566 * @cliexpar
567 * @cliexstart{sh adj}
568 * [@0]
569 * [@1] glean: loop0
570 * [@2] ipv4 via 1.0.0.2 loop0: IP4: 00:00:22:aa:bb:cc -> 00:00:11:aa:bb:cc
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800571 * [@3] mpls via 1.0.0.2 loop0: MPLS: 00:00:22:aa:bb:cc -> 00:00:11:aa:bb:cc
Neale Rannsb80c5362016-10-08 13:03:40 +0100572 * [@4] ipv4 via 1.0.0.3 loop0: IP4: 00:00:22:aa:bb:cc -> 00:00:11:aa:bb:cc
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800573 * [@5] mpls via 1.0.0.3 loop0: MPLS: 00:00:22:aa:bb:cc -> 00:00:11:aa:bb:cc
Neale Rannsb80c5362016-10-08 13:03:40 +0100574 * @cliexend
575 ?*/
576VLIB_CLI_COMMAND (adj_show_command, static) = {
577 .path = "show adj",
Neale Ranns9c6a6132017-02-21 05:33:14 -0800578 .short_help = "show adj [<adj_index>] [interface] [summary]",
Neale Rannsb80c5362016-10-08 13:03:40 +0100579 .function = adj_show,
580};
Neale Ranns9c6a6132017-02-21 05:33:14 -0800581
582/**
583 * @brief CLI invoked function to enable/disable per-adj counters
584 */
585static clib_error_t *
586adj_cli_counters_set (vlib_main_t * vm,
587 unformat_input_t * input,
588 vlib_cli_command_t * cmd)
589{
590 clib_error_t *error = NULL;
591 int enable = ~0;
592
593 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
594 {
595 if (unformat (input, "enable"))
596 enable = 1;
597 else if (unformat (input, "disable"))
598 enable = 0;
599 else
600 break;
601 }
602
603 if (enable != ~0)
604 {
605 /* user requested something sensible */
606 adj_per_adj_counters = enable;
607 }
608 else
609 {
610 error = clib_error_return (0, "specify 'enable' or 'disable'");
611 }
612
613 return (error);
614}
615
616/*?
617 * Enabe/disble per-adjacency counters. This is optional because it comes with
618 * a non-negligible performance cost.
619 ?*/
620VLIB_CLI_COMMAND (adj_cli_counters_set_command, static) = {
621 .path = "adjacency counters",
622 .short_help = "adjacency counters [enable|disable]",
623 .function = adj_cli_counters_set,
624};