blob: 5f7fe74cd43e9a7d2d9e9090dcbaadd06884c7e0 [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 Ranns88fc83e2017-04-05 08:11:14 -0700132 adj_delegate_type_t adt;
133 adj_delegate_t *aed;
Neale Ranns044183f2017-01-24 01:34:25 -0800134 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);
Neale Rannsb80c5362016-10-08 13:03:40 +0100138 s = format (s, "\n locks:%d", adj->ia_node.fn_locks);
Neale Ranns88fc83e2017-04-05 08:11:14 -0700139 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
Neale Rannsb80c5362016-10-08 13:03:40 +0100145 s = format(s, "\n children:\n ");
146 s = fib_node_children_format(adj->ia_node.fn_children, s);
147 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100148
Neale Rannsb80c5362016-10-08 13:03:40 +0100149 return s;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100150}
151
152/*
153 * adj_last_lock_gone
154 *
155 * last lock/reference to the adj has gone, we no longer need it.
156 */
157static void
158adj_last_lock_gone (ip_adjacency_t *adj)
159{
Neale Rannsb80c5362016-10-08 13:03:40 +0100160 vlib_main_t * vm = vlib_get_main();
161
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100162 ASSERT(0 == fib_node_list_get_size(adj->ia_node.fn_children));
163 ADJ_DBG(adj, "last-lock-gone");
164
Neale Rannsb80c5362016-10-08 13:03:40 +0100165 vlib_worker_thread_barrier_sync (vm);
166
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100167 switch (adj->lookup_next_index)
168 {
169 case IP_LOOKUP_NEXT_MIDCHAIN:
170 dpo_reset(&adj->sub_type.midchain.next_dpo);
171 /* FALL THROUGH */
172 case IP_LOOKUP_NEXT_ARP:
173 case IP_LOOKUP_NEXT_REWRITE:
174 /*
175 * complete and incomplete nbr adjs
176 */
Neale Ranns177bbdc2016-11-15 09:46:51 +0000177 adj_nbr_remove(adj_get_index(adj),
178 adj->ia_nh_proto,
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100179 adj->ia_link,
180 &adj->sub_type.nbr.next_hop,
181 adj->rewrite_header.sw_if_index);
182 break;
183 case IP_LOOKUP_NEXT_GLEAN:
184 adj_glean_remove(adj->ia_nh_proto,
185 adj->rewrite_header.sw_if_index);
186 break;
Neale Ranns32e1c012016-11-22 17:07:28 +0000187 case IP_LOOKUP_NEXT_MCAST:
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800188 case IP_LOOKUP_NEXT_MCAST_MIDCHAIN:
Neale Ranns32e1c012016-11-22 17:07:28 +0000189 adj_mcast_remove(adj->ia_nh_proto,
190 adj->rewrite_header.sw_if_index);
191 break;
Neale Ranns88fc83e2017-04-05 08:11:14 -0700192 case IP_LOOKUP_NEXT_DROP:
193 case IP_LOOKUP_NEXT_PUNT:
194 case IP_LOOKUP_NEXT_LOCAL:
195 case IP_LOOKUP_NEXT_ICMP_ERROR:
196 case IP_LOOKUP_N_NEXT:
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100197 /*
198 * type not stored in any DB from which we need to remove it
199 */
200 break;
201 }
202
Neale Rannsb80c5362016-10-08 13:03:40 +0100203 vlib_worker_thread_barrier_release(vm);
204
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100205 fib_node_deinit(&adj->ia_node);
Neale Ranns88fc83e2017-04-05 08:11:14 -0700206 ASSERT(0 == vec_len(adj->ia_delegates));
207 vec_free(adj->ia_delegates);
Neale Ranns6c3ebcc2016-10-02 21:20:15 +0100208 pool_put(adj_pool, adj);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100209}
210
Andrew Yourtchenko5f3fcb92017-10-25 05:50:37 -0700211u32
212adj_dpo_get_urpf (const dpo_id_t *dpo)
213{
214 ip_adjacency_t *adj;
215
216 adj = adj_get(dpo->dpoi_index);
217
218 return (adj->rewrite_header.sw_if_index);
219}
220
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100221void
222adj_lock (adj_index_t adj_index)
223{
224 ip_adjacency_t *adj;
225
226 if (adj_index_is_special(adj_index))
227 {
228 return;
229 }
230
231 adj = adj_get(adj_index);
232 ASSERT(adj);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100233
234 ADJ_DBG(adj, "lock");
235 fib_node_lock(&adj->ia_node);
236}
237
238void
239adj_unlock (adj_index_t adj_index)
240{
241 ip_adjacency_t *adj;
242
243 if (adj_index_is_special(adj_index))
244 {
245 return;
246 }
247
248 adj = adj_get(adj_index);
249 ASSERT(adj);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100250
251 ADJ_DBG(adj, "unlock");
252 ASSERT(adj);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100253
254 fib_node_unlock(&adj->ia_node);
255}
256
257u32
258adj_child_add (adj_index_t adj_index,
259 fib_node_type_t child_type,
260 fib_node_index_t child_index)
261{
262 ASSERT(ADJ_INDEX_INVALID != adj_index);
263 if (adj_index_is_special(adj_index))
264 {
265 return (~0);
266 }
267
268 return (fib_node_child_add(FIB_NODE_TYPE_ADJ,
269 adj_index,
270 child_type,
271 child_index));
272}
273
274void
275adj_child_remove (adj_index_t adj_index,
276 u32 sibling_index)
277{
278 if (adj_index_is_special(adj_index))
279 {
280 return;
281 }
282
283 fib_node_child_remove(FIB_NODE_TYPE_ADJ,
284 adj_index,
285 sibling_index);
286}
287
Neale Rannsb069a692017-03-15 12:34:25 -0400288/*
289 * Context for the walk to update the cached feture flags.
290 */
291typedef struct adj_feature_update_t_
292{
293 u8 arc;
294 u8 enable;
295} adj_feature_update_ctx_t;
296
297static adj_walk_rc_t
298adj_feature_update_walk_cb (adj_index_t ai,
299 void *arg)
300{
301 adj_feature_update_ctx_t *ctx = arg;
302 ip_adjacency_t *adj;
303
304 adj = adj_get(ai);
305
306 /*
307 * this ugly mess matches the feature arc that is changing with affected
308 * adjacencies
309 */
310 if (((ctx->arc == ip6_main.lookup_main.output_feature_arc_index) &&
311 (VNET_LINK_IP6 == adj->ia_link)) ||
312 ((ctx->arc == ip4_main.lookup_main.output_feature_arc_index) &&
313 (VNET_LINK_IP4 == adj->ia_link)) ||
314 ((ctx->arc == mpls_main.output_feature_arc_index) &&
315 (VNET_LINK_MPLS == adj->ia_link)))
316 {
317 if (ctx->enable)
318 adj->rewrite_header.flags |= VNET_REWRITE_HAS_FEATURES;
319 else
320 adj->rewrite_header.flags &= ~VNET_REWRITE_HAS_FEATURES;
321 }
322 return (ADJ_WALK_RC_CONTINUE);
323}
324
325void
326adj_feature_update (u32 sw_if_index,
327 u8 arc_index,
328 u8 is_enable)
329{
330 /*
331 * Walk all the adjacencies on the interface to update the cached
332 * 'has-features' flag
333 */
334 adj_feature_update_ctx_t ctx = {
335 .arc = arc_index,
336 .enable = is_enable,
337 };
338 adj_walk (sw_if_index, adj_feature_update_walk_cb, &ctx);
339}
340
341/**
342 * @brief Walk the Adjacencies on a given interface
343 */
344void
345adj_walk (u32 sw_if_index,
346 adj_walk_cb_t cb,
347 void *ctx)
348{
349 /*
350 * walk all the neighbor adjacencies
351 */
352 fib_protocol_t proto;
353
354 FOR_EACH_FIB_IP_PROTOCOL(proto)
355 {
356 adj_nbr_walk(sw_if_index, proto, cb, ctx);
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800357 adj_mcast_walk(sw_if_index, proto, cb, ctx);
Neale Rannsb069a692017-03-15 12:34:25 -0400358 }
359}
360
Neale Rannsb80c5362016-10-08 13:03:40 +0100361/**
362 * @brief Return the link type of the adjacency
363 */
364vnet_link_t
365adj_get_link_type (adj_index_t ai)
366{
367 const ip_adjacency_t *adj;
368
369 adj = adj_get(ai);
370
371 return (adj->ia_link);
372}
373
374/**
375 * @brief Return the sw interface index of the adjacency.
376 */
377u32
378adj_get_sw_if_index (adj_index_t ai)
379{
380 const ip_adjacency_t *adj;
381
382 adj = adj_get(ai);
383
384 return (adj->rewrite_header.sw_if_index);
385}
386
387/**
Neale Ranns88fc83e2017-04-05 08:11:14 -0700388 * @brief Return true if the adjacency is 'UP', i.e. can be used for forwarding
389 * 0 is down, !0 is up.
390 */
391int
392adj_is_up (adj_index_t ai)
393{
394 const adj_delegate_t *aed;
395
396 aed = adj_delegate_get(adj_get(ai), ADJ_DELEGATE_BFD);
397
398 if (NULL == aed)
399 {
400 /*
401 * no BFD tracking - resolved
402 */
403 return (!0);
404 }
405 else
406 {
407 /*
408 * defer to the state of the BFD tracking
409 */
410 return (ADJ_BFD_STATE_UP == aed->ad_bfd_state);
411 }
412}
413
414/**
Neale Ranns2e7fbcc2017-03-15 04:22:25 -0700415 * @brief Return the rewrite string of the adjacency
Neale Rannsb80c5362016-10-08 13:03:40 +0100416 */
417const u8*
418adj_get_rewrite (adj_index_t ai)
419{
420 vnet_rewrite_header_t *rw;
421 ip_adjacency_t *adj;
422
423 adj = adj_get(ai);
424 rw = &adj->rewrite_header;
425
426 ASSERT (rw->data_bytes != 0xfefe);
427
428 return (rw->data - rw->data_bytes);
429}
430
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100431static fib_node_t *
432adj_get_node (fib_node_index_t index)
433{
434 ip_adjacency_t *adj;
435
436 adj = adj_get(index);
437
438 return (&adj->ia_node);
439}
440
441#define ADJ_FROM_NODE(_node) \
442 ((ip_adjacency_t*)((char*)_node - STRUCT_OFFSET_OF(ip_adjacency_t, ia_node)))
443
444static void
445adj_node_last_lock_gone (fib_node_t *node)
446{
447 adj_last_lock_gone(ADJ_FROM_NODE(node));
448}
449
450static fib_node_back_walk_rc_t
451adj_back_walk_notify (fib_node_t *node,
452 fib_node_back_walk_ctx_t *ctx)
453{
454 /*
455 * Que pasa. yo soj en el final!
456 */
457 ASSERT(0);
458
459 return (FIB_NODE_BACK_WALK_CONTINUE);
460}
461
462/*
463 * Adjacency's graph node virtual function table
464 */
465static const fib_node_vft_t adj_vft = {
466 .fnv_get = adj_get_node,
467 .fnv_last_lock = adj_node_last_lock_gone,
468 .fnv_back_walk = adj_back_walk_notify,
469};
470
471static clib_error_t *
472adj_module_init (vlib_main_t * vm)
473{
474 fib_node_register_type(FIB_NODE_TYPE_ADJ, &adj_vft);
475
476 adj_nbr_module_init();
477 adj_glean_module_init();
478 adj_midchain_module_init();
Neale Ranns32e1c012016-11-22 17:07:28 +0000479 adj_mcast_module_init();
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100480
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100481 return (NULL);
482}
483
484VLIB_INIT_FUNCTION (adj_module_init);
485
Neale Rannsb80c5362016-10-08 13:03:40 +0100486static clib_error_t *
487adj_show (vlib_main_t * vm,
488 unformat_input_t * input,
489 vlib_cli_command_t * cmd)
490{
491 adj_index_t ai = ADJ_INDEX_INVALID;
492 u32 sw_if_index = ~0;
Neale Ranns9c6a6132017-02-21 05:33:14 -0800493 int summary = 0;
Neale Rannsb80c5362016-10-08 13:03:40 +0100494
495 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
496 {
497 if (unformat (input, "%d", &ai))
498 ;
Neale Ranns9c6a6132017-02-21 05:33:14 -0800499 else if (unformat (input, "sum"))
500 summary = 1;
501 else if (unformat (input, "summary"))
502 summary = 1;
Neale Rannsb80c5362016-10-08 13:03:40 +0100503 else if (unformat (input, "%U",
504 unformat_vnet_sw_interface, vnet_get_main(),
505 &sw_if_index))
506 ;
507 else
508 break;
509 }
510
Neale Ranns9c6a6132017-02-21 05:33:14 -0800511 if (summary)
Neale Rannsb80c5362016-10-08 13:03:40 +0100512 {
Neale Ranns9c6a6132017-02-21 05:33:14 -0800513 vlib_cli_output (vm, "Number of adjacenies: %d", pool_elts(adj_pool));
514 vlib_cli_output (vm, "Per-adjacency counters: %s",
515 (adj_are_counters_enabled() ?
516 "enabled":
517 "disabled"));
Neale Rannsb80c5362016-10-08 13:03:40 +0100518 }
519 else
520 {
Neale Ranns9c6a6132017-02-21 05:33:14 -0800521 if (ADJ_INDEX_INVALID != ai)
522 {
523 if (pool_is_free_index(adj_pool, ai))
Neale Ranns8b37b872016-11-21 12:25:22 +0000524 {
Neale Ranns9c6a6132017-02-21 05:33:14 -0800525 vlib_cli_output (vm, "adjacency %d invalid", ai);
526 return 0;
527 }
Neale Rannsb80c5362016-10-08 13:03:40 +0100528
Neale Ranns9c6a6132017-02-21 05:33:14 -0800529 vlib_cli_output (vm, "[@%d] %U",
530 ai,
531 format_ip_adjacency, ai,
532 FORMAT_IP_ADJACENCY_DETAIL);
533 }
534 else
535 {
536 /* *INDENT-OFF* */
537 pool_foreach_index(ai, adj_pool,
538 ({
539 if (~0 != sw_if_index &&
540 sw_if_index != adj_get_sw_if_index(ai))
541 {
542 }
543 else
544 {
545 vlib_cli_output (vm, "[@%d] %U",
546 ai,
547 format_ip_adjacency, ai,
548 FORMAT_IP_ADJACENCY_NONE);
549 }
550 }));
551 /* *INDENT-ON* */
552 }
553 }
Neale Rannsb80c5362016-10-08 13:03:40 +0100554 return 0;
555}
556
557/*?
558 * Show all adjacencies.
559 * @cliexpar
560 * @cliexstart{sh adj}
561 * [@0]
562 * [@1] glean: loop0
563 * [@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 -0800564 * [@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 +0100565 * [@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 -0800566 * [@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 +0100567 * @cliexend
568 ?*/
569VLIB_CLI_COMMAND (adj_show_command, static) = {
570 .path = "show adj",
Neale Ranns9c6a6132017-02-21 05:33:14 -0800571 .short_help = "show adj [<adj_index>] [interface] [summary]",
Neale Rannsb80c5362016-10-08 13:03:40 +0100572 .function = adj_show,
573};
Neale Ranns9c6a6132017-02-21 05:33:14 -0800574
575/**
576 * @brief CLI invoked function to enable/disable per-adj counters
577 */
578static clib_error_t *
579adj_cli_counters_set (vlib_main_t * vm,
580 unformat_input_t * input,
581 vlib_cli_command_t * cmd)
582{
583 clib_error_t *error = NULL;
584 int enable = ~0;
585
586 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
587 {
588 if (unformat (input, "enable"))
589 enable = 1;
590 else if (unformat (input, "disable"))
591 enable = 0;
592 else
593 break;
594 }
595
596 if (enable != ~0)
597 {
598 /* user requested something sensible */
599 adj_per_adj_counters = enable;
600 }
601 else
602 {
603 error = clib_error_return (0, "specify 'enable' or 'disable'");
604 }
605
606 return (error);
607}
608
609/*?
610 * Enabe/disble per-adjacency counters. This is optional because it comes with
611 * a non-negligible performance cost.
612 ?*/
613VLIB_CLI_COMMAND (adj_cli_counters_set_command, static) = {
614 .path = "adjacency counters",
615 .short_help = "adjacency counters [enable|disable]",
616 .function = adj_cli_counters_set,
617};