blob: 8604bf73dd682ec12e1f66e24c0037bb1936edd9 [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_nbr.h>
17#include <vnet/adj/adj_internal.h>
18#include <vnet/ethernet/arp_packet.h>
19#include <vnet/fib/fib_walk.h>
20
Neale Rannsae809832018-11-23 09:00:27 -080021#include <vppinfra/bihash_24_8.h>
22
Neale Ranns0bfe5d82016-08-25 15:29:12 +010023/*
24 * Vector Hash tables of neighbour (traditional) adjacencies
25 * Key: interface(for the vector index), address (and its proto),
26 * link-type/ether-type.
27 */
28static BVT(clib_bihash) **adj_nbr_tables[FIB_PROTOCOL_MAX];
29
30// FIXME SIZE APPROPRIATELY. ASK DAVEB.
31#define ADJ_NBR_DEFAULT_HASH_NUM_BUCKETS (64 * 64)
32#define ADJ_NBR_DEFAULT_HASH_MEMORY_SIZE (32<<20)
33
34
35#define ADJ_NBR_SET_KEY(_key, _lt, _nh) \
36{ \
37 _key.key[0] = (_nh)->as_u64[0]; \
38 _key.key[1] = (_nh)->as_u64[1]; \
39 _key.key[2] = (_lt); \
40}
41
42#define ADJ_NBR_ITF_OK(_proto, _itf) \
43 (((_itf) < vec_len(adj_nbr_tables[_proto])) && \
44 (NULL != adj_nbr_tables[_proto][sw_if_index]))
45
46static void
47adj_nbr_insert (fib_protocol_t nh_proto,
Neale Ranns924d03a2016-10-19 08:25:46 +010048 vnet_link_t link_type,
Neale Ranns0bfe5d82016-08-25 15:29:12 +010049 const ip46_address_t *nh_addr,
50 u32 sw_if_index,
51 adj_index_t adj_index)
52{
53 BVT(clib_bihash_kv) kv;
54
55 if (sw_if_index >= vec_len(adj_nbr_tables[nh_proto]))
56 {
57 vec_validate(adj_nbr_tables[nh_proto], sw_if_index);
58 }
59 if (NULL == adj_nbr_tables[nh_proto][sw_if_index])
60 {
61 adj_nbr_tables[nh_proto][sw_if_index] =
62 clib_mem_alloc_aligned(sizeof(BVT(clib_bihash)),
63 CLIB_CACHE_LINE_BYTES);
Dave Barachb7b92992018-10-17 10:38:51 -040064 clib_memset(adj_nbr_tables[nh_proto][sw_if_index],
Neale Ranns0bfe5d82016-08-25 15:29:12 +010065 0,
66 sizeof(BVT(clib_bihash)));
67
68 BV(clib_bihash_init) (adj_nbr_tables[nh_proto][sw_if_index],
69 "Adjacency Neighbour table",
70 ADJ_NBR_DEFAULT_HASH_NUM_BUCKETS,
71 ADJ_NBR_DEFAULT_HASH_MEMORY_SIZE);
72 }
73
74 ADJ_NBR_SET_KEY(kv, link_type, nh_addr);
75 kv.value = adj_index;
76
77 BV(clib_bihash_add_del) (adj_nbr_tables[nh_proto][sw_if_index], &kv, 1);
78}
79
80void
Neale Ranns177bbdc2016-11-15 09:46:51 +000081adj_nbr_remove (adj_index_t ai,
82 fib_protocol_t nh_proto,
Neale Ranns924d03a2016-10-19 08:25:46 +010083 vnet_link_t link_type,
Neale Ranns0bfe5d82016-08-25 15:29:12 +010084 const ip46_address_t *nh_addr,
85 u32 sw_if_index)
86{
87 BVT(clib_bihash_kv) kv;
88
89 if (!ADJ_NBR_ITF_OK(nh_proto, sw_if_index))
90 return;
91
92 ADJ_NBR_SET_KEY(kv, link_type, nh_addr);
Neale Ranns177bbdc2016-11-15 09:46:51 +000093 kv.value = ai;
Neale Ranns0bfe5d82016-08-25 15:29:12 +010094
95 BV(clib_bihash_add_del) (adj_nbr_tables[nh_proto][sw_if_index], &kv, 0);
96}
97
Florin Corasf9d05682018-04-26 08:26:52 -070098adj_index_t
Neale Ranns0bfe5d82016-08-25 15:29:12 +010099adj_nbr_find (fib_protocol_t nh_proto,
Neale Ranns924d03a2016-10-19 08:25:46 +0100100 vnet_link_t link_type,
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100101 const ip46_address_t *nh_addr,
102 u32 sw_if_index)
103{
104 BVT(clib_bihash_kv) kv;
105
106 ADJ_NBR_SET_KEY(kv, link_type, nh_addr);
107
108 if (!ADJ_NBR_ITF_OK(nh_proto, sw_if_index))
109 return (ADJ_INDEX_INVALID);
110
111 if (BV(clib_bihash_search)(adj_nbr_tables[nh_proto][sw_if_index],
112 &kv, &kv) < 0)
113 {
114 return (ADJ_INDEX_INVALID);
115 }
116 else
117 {
118 return (kv.value);
119 }
120}
121
Neale Rannsb80c5362016-10-08 13:03:40 +0100122static inline u32
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100123adj_get_nd_node (fib_protocol_t proto)
124{
125 switch (proto) {
126 case FIB_PROTOCOL_IP4:
Neale Rannsb80c5362016-10-08 13:03:40 +0100127 return (ip4_arp_node.index);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100128 case FIB_PROTOCOL_IP6:
Neale Rannsb80c5362016-10-08 13:03:40 +0100129 return (ip6_discover_neighbor_node.index);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100130 case FIB_PROTOCOL_MPLS:
131 break;
132 }
133 ASSERT(0);
Neale Rannsb80c5362016-10-08 13:03:40 +0100134 return (ip4_arp_node.index);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100135}
136
AkshayaNadahalli17f5f602017-03-27 14:47:41 +0530137/**
138 * @brief Check and set feature flags if o/p interface has any o/p features.
139 */
140static void
141adj_nbr_evaluate_feature (adj_index_t ai)
142{
143 ip_adjacency_t *adj;
144 vnet_feature_main_t *fm = &feature_main;
145 i16 feature_count;
146 u8 arc_index;
147 u32 sw_if_index;
148
149 adj = adj_get(ai);
150
151 switch (adj->ia_link)
152 {
153 case VNET_LINK_IP4:
154 arc_index = ip4_main.lookup_main.output_feature_arc_index;
155 break;
156 case VNET_LINK_IP6:
157 arc_index = ip6_main.lookup_main.output_feature_arc_index;
158 break;
159 case VNET_LINK_MPLS:
160 arc_index = mpls_main.output_feature_arc_index;
161 break;
162 default:
163 return;
164 }
165
166 sw_if_index = adj->rewrite_header.sw_if_index;
AkshayaNadahalli98ab0912017-03-27 17:21:05 +0000167 if (vec_len(fm->feature_count_by_sw_if_index[arc_index]) > sw_if_index)
168 {
169 feature_count = fm->feature_count_by_sw_if_index[arc_index][sw_if_index];
170 if (feature_count > 0)
Neale Ranns4ec36c52020-03-31 09:21:29 -0400171 {
172 vnet_feature_config_main_t *cm;
AkshayaNadahalli17f5f602017-03-27 14:47:41 +0530173
Neale Ranns4ec36c52020-03-31 09:21:29 -0400174 adj->rewrite_header.flags |= VNET_REWRITE_HAS_FEATURES;
175 cm = &fm->feature_config_mains[arc_index];
176
177 adj->ia_cfg_index = vec_elt (cm->config_index_by_sw_if_index,
178 sw_if_index);
179 }
180 }
AkshayaNadahalli17f5f602017-03-27 14:47:41 +0530181 return;
182}
183
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100184static ip_adjacency_t*
185adj_nbr_alloc (fib_protocol_t nh_proto,
Neale Ranns924d03a2016-10-19 08:25:46 +0100186 vnet_link_t link_type,
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100187 const ip46_address_t *nh_addr,
188 u32 sw_if_index)
189{
190 ip_adjacency_t *adj;
191
192 adj = adj_alloc(nh_proto);
193
194 adj_nbr_insert(nh_proto, link_type, nh_addr,
195 sw_if_index,
Neale Ranns6c3ebcc2016-10-02 21:20:15 +0100196 adj_get_index(adj));
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100197
198 /*
199 * since we just added the ADJ we have no rewrite string for it,
200 * so its for ARP
201 */
202 adj->lookup_next_index = IP_LOOKUP_NEXT_ARP;
203 adj->sub_type.nbr.next_hop = *nh_addr;
204 adj->ia_link = link_type;
205 adj->ia_nh_proto = nh_proto;
Neale Rannsb80c5362016-10-08 13:03:40 +0100206 adj->rewrite_header.sw_if_index = sw_if_index;
Neale Ranns1bce5a92018-10-30 06:34:25 -0700207 vnet_rewrite_update_mtu(vnet_get_main(), adj->ia_link,
208 &adj->rewrite_header);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100209
AkshayaNadahalli17f5f602017-03-27 14:47:41 +0530210 adj_nbr_evaluate_feature (adj_get_index(adj));
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100211 return (adj);
212}
213
214/*
Neale Ranns32e1c012016-11-22 17:07:28 +0000215 * adj_nbr_add_or_lock
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100216 *
217 * Add an adjacency for the neighbour requested.
218 *
219 * The key for an adj is:
220 * - the Next-hops protocol (i.e. v4 or v6)
221 * - the address of the next-hop
222 * - the interface the next-hop is reachable through
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100223 */
224adj_index_t
225adj_nbr_add_or_lock (fib_protocol_t nh_proto,
Neale Ranns924d03a2016-10-19 08:25:46 +0100226 vnet_link_t link_type,
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100227 const ip46_address_t *nh_addr,
228 u32 sw_if_index)
229{
230 adj_index_t adj_index;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100231
232 adj_index = adj_nbr_find(nh_proto, link_type, nh_addr, sw_if_index);
233
234 if (ADJ_INDEX_INVALID == adj_index)
235 {
Neale Ranns77cfc012019-12-15 22:26:37 +0000236 ip_adjacency_t *adj;
Neale Rannsb80c5362016-10-08 13:03:40 +0100237 vnet_main_t *vnm;
238
239 vnm = vnet_get_main();
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100240 adj = adj_nbr_alloc(nh_proto, link_type, nh_addr, sw_if_index);
Neale Rannsb80c5362016-10-08 13:03:40 +0100241 adj_index = adj_get_index(adj);
242 adj_lock(adj_index);
243
Neale Ranns1855b8e2018-07-11 10:31:26 -0700244 if (ip46_address_is_equal(&ADJ_BCAST_ADDR, nh_addr))
245 {
246 adj->lookup_next_index = IP_LOOKUP_NEXT_BCAST;
247 }
248
Ole Troand7231612018-06-07 10:17:57 +0200249 vnet_rewrite_init(vnm, sw_if_index, link_type,
Neale Rannsb80c5362016-10-08 13:03:40 +0100250 adj_get_nd_node(nh_proto),
251 vnet_tx_node_index_for_sw_interface(vnm, sw_if_index),
252 &adj->rewrite_header);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100253
254 /*
Neale Rannsb80c5362016-10-08 13:03:40 +0100255 * we need a rewrite where the destination IP address is converted
256 * to the appropriate link-layer address. This is interface specific.
257 * So ask the interface to do it.
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100258 */
Neale Rannsb80c5362016-10-08 13:03:40 +0100259 vnet_update_adjacency_for_sw_interface(vnm, sw_if_index, adj_index);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100260 }
261 else
262 {
Neale Rannsb80c5362016-10-08 13:03:40 +0100263 adj_lock(adj_index);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100264 }
265
Neale Ranns77cfc012019-12-15 22:26:37 +0000266 adj_delegate_adj_created(adj_get(adj_index));
Neale Rannsb80c5362016-10-08 13:03:40 +0100267 return (adj_index);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100268}
269
270adj_index_t
271adj_nbr_add_or_lock_w_rewrite (fib_protocol_t nh_proto,
Neale Ranns924d03a2016-10-19 08:25:46 +0100272 vnet_link_t link_type,
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100273 const ip46_address_t *nh_addr,
274 u32 sw_if_index,
275 u8 *rewrite)
276{
277 adj_index_t adj_index;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100278
279 adj_index = adj_nbr_find(nh_proto, link_type, nh_addr, sw_if_index);
280
281 if (ADJ_INDEX_INVALID == adj_index)
282 {
Neale Ranns13a08cc2018-11-07 09:25:54 -0800283 ip_adjacency_t *adj;
284
285 adj = adj_nbr_alloc(nh_proto, link_type, nh_addr, sw_if_index);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100286 adj->rewrite_header.sw_if_index = sw_if_index;
Neale Ranns13a08cc2018-11-07 09:25:54 -0800287 adj_index = adj_get_index(adj);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100288 }
289
Neale Ranns13a08cc2018-11-07 09:25:54 -0800290 adj_lock(adj_index);
291 adj_nbr_update_rewrite(adj_index,
Neale Rannsb80c5362016-10-08 13:03:40 +0100292 ADJ_NBR_REWRITE_FLAG_COMPLETE,
293 rewrite);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100294
Neale Ranns77cfc012019-12-15 22:26:37 +0000295 adj_delegate_adj_created(adj_get(adj_index));
296
Neale Ranns13a08cc2018-11-07 09:25:54 -0800297 return (adj_index);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100298}
299
300/**
301 * adj_nbr_update_rewrite
302 *
303 * Update the adjacency's rewrite string. A NULL string implies the
Jim Thompsonf324dec2019-04-08 03:22:21 -0500304 * rewrite is reset (i.e. when ARP/ND entry is gone).
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100305 * NB: the adj being updated may be handling traffic in the DP.
306 */
307void
308adj_nbr_update_rewrite (adj_index_t adj_index,
Neale Rannsb80c5362016-10-08 13:03:40 +0100309 adj_nbr_rewrite_flag_t flags,
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100310 u8 *rewrite)
311{
312 ip_adjacency_t *adj;
313
314 ASSERT(ADJ_INDEX_INVALID != adj_index);
315
316 adj = adj_get(adj_index);
Neale Rannsb80c5362016-10-08 13:03:40 +0100317
318 if (flags & ADJ_NBR_REWRITE_FLAG_COMPLETE)
319 {
320 /*
321 * update the adj's rewrite string and build the arc
322 * from the rewrite node to the interface's TX node
323 */
324 adj_nbr_update_rewrite_internal(adj, IP_LOOKUP_NEXT_REWRITE,
325 adj_get_rewrite_node(adj->ia_link),
326 vnet_tx_node_index_for_sw_interface(
327 vnet_get_main(),
328 adj->rewrite_header.sw_if_index),
329 rewrite);
330 }
331 else
332 {
333 adj_nbr_update_rewrite_internal(adj, IP_LOOKUP_NEXT_ARP,
334 adj_get_nd_node(adj->ia_nh_proto),
335 vnet_tx_node_index_for_sw_interface(
336 vnet_get_main(),
337 adj->rewrite_header.sw_if_index),
338 rewrite);
339 }
Neale Rannsb80c5362016-10-08 13:03:40 +0100340}
341
342/**
343 * adj_nbr_update_rewrite_internal
344 *
345 * Update the adjacency's rewrite string. A NULL string implies the
Jim Thompsonf324dec2019-04-08 03:22:21 -0500346 * rewrite is reset (i.e. when ARP/ND entry is gone).
Neale Rannsb80c5362016-10-08 13:03:40 +0100347 * NB: the adj being updated may be handling traffic in the DP.
348 */
349void
350adj_nbr_update_rewrite_internal (ip_adjacency_t *adj,
Neale Rannsfa5d1982017-02-20 14:19:51 -0800351 ip_lookup_next_t adj_next_index,
Neale Rannsb80c5362016-10-08 13:03:40 +0100352 u32 this_node,
353 u32 next_node,
354 u8 *rewrite)
355{
Neale Ranns19c68d22016-12-07 15:38:14 +0000356 ip_adjacency_t *walk_adj;
Neale Ranns66300f62020-01-12 21:16:55 +0000357 adj_index_t walk_ai, ai;
Neale Rannsad95b5d2016-11-10 20:35:14 +0000358 vlib_main_t * vm;
359 u32 old_next;
Neale Ranns19c68d22016-12-07 15:38:14 +0000360 int do_walk;
Neale Rannsad95b5d2016-11-10 20:35:14 +0000361
362 vm = vlib_get_main();
363 old_next = adj->lookup_next_index;
364
Neale Ranns66300f62020-01-12 21:16:55 +0000365 ai = walk_ai = adj_get_index(adj);
Neale Rannsad95b5d2016-11-10 20:35:14 +0000366 if (VNET_LINK_MPLS == adj->ia_link)
367 {
368 /*
369 * The link type MPLS has no children in the control plane graph, it only
Paul Vinciguerra8feeaff2019-03-27 11:25:48 -0700370 * has children in the data-plane graph. The backwalk is up the former.
Neale Rannsad95b5d2016-11-10 20:35:14 +0000371 * So we need to walk from its IP cousin.
372 */
373 walk_ai = adj_nbr_find(adj->ia_nh_proto,
374 fib_proto_to_link(adj->ia_nh_proto),
375 &adj->sub_type.nbr.next_hop,
376 adj->rewrite_header.sw_if_index);
377 }
Neale Rannsb80c5362016-10-08 13:03:40 +0100378
379 /*
Neale Ranns19c68d22016-12-07 15:38:14 +0000380 * Don't call the walk re-entrantly
381 */
382 if (ADJ_INDEX_INVALID != walk_ai)
383 {
384 walk_adj = adj_get(walk_ai);
Neale Rannsfa5d1982017-02-20 14:19:51 -0800385 if (ADJ_FLAG_SYNC_WALK_ACTIVE & walk_adj->ia_flags)
Neale Ranns19c68d22016-12-07 15:38:14 +0000386 {
387 do_walk = 0;
388 }
389 else
390 {
391 /*
392 * Prevent re-entrant walk of the same adj
393 */
Neale Rannsfa5d1982017-02-20 14:19:51 -0800394 walk_adj->ia_flags |= ADJ_FLAG_SYNC_WALK_ACTIVE;
Neale Ranns19c68d22016-12-07 15:38:14 +0000395 do_walk = 1;
396 }
397 }
398 else
399 {
400 do_walk = 0;
401 }
402
403 /*
404 * lock the adjacencies that are affected by updates this walk will provoke.
405 * Since the aim of the walk is to update children to link to a different
406 * DPO, this adj will no longer be in use and its lock count will drop to 0.
Paul Vinciguerra8feeaff2019-03-27 11:25:48 -0700407 * We don't want it to be deleted as part of this endeavour.
Neale Ranns19c68d22016-12-07 15:38:14 +0000408 */
Neale Ranns66300f62020-01-12 21:16:55 +0000409 adj_lock(ai);
Neale Ranns19c68d22016-12-07 15:38:14 +0000410 adj_lock(walk_ai);
411
412 /*
Neale Rannsb80c5362016-10-08 13:03:40 +0100413 * Updating a rewrite string is not atomic;
414 * - the rewrite string is too long to write in one instruction
415 * - when swapping from incomplete to complete, we also need to update
Neale Rannsad95b5d2016-11-10 20:35:14 +0000416 * the VLIB graph next-index of the adj.
Neale Rannsb80c5362016-10-08 13:03:40 +0100417 * ideally we would only want to suspend forwarding via this adj whilst we
418 * do this, but we do not have that level of granularity - it's suspend all
419 * worker threads or nothing.
Paul Vinciguerra8feeaff2019-03-27 11:25:48 -0700420 * The other choices are:
Neale Rannsb80c5362016-10-08 13:03:40 +0100421 * - to mark the adj down and back walk so child load-balances drop this adj
422 * from the set.
423 * - update the next_node index of this adj to point to error-drop
424 * both of which will mean for MAC change we will drop for this adj
Neale Rannsad95b5d2016-11-10 20:35:14 +0000425 * which is not acceptable. However, when the adj changes type (from
426 * complete to incomplete and vice-versa) the child DPOs, which have the
427 * VLIB graph next node index, will be sending packets to the wrong graph
428 * node. So from the options above, updating the next_node of the adj to
429 * be drop will work, but it relies on each graph node v4/v6/mpls, rewrite/
430 * arp/midchain always be valid w.r.t. a mis-match of adj type and node type
Paul Vinciguerra8feeaff2019-03-27 11:25:48 -0700431 * (i.e. a rewrite adj in the arp node). This is not enforceable. Getting it
Neale Rannsad95b5d2016-11-10 20:35:14 +0000432 * wrong will lead to hard to find bugs since its a race condition. So we
433 * choose the more reliable method of updating the children to use the drop,
434 * then switching adj's type, then updating the children again. Did I mention
435 * that this doesn't happen often...
436 * So we need to distinguish between the two cases:
437 * 1 - mac change
438 * 2 - adj type change
439 */
Neale Ranns19c68d22016-12-07 15:38:14 +0000440 if (do_walk &&
441 old_next != adj_next_index &&
Neale Rannsad95b5d2016-11-10 20:35:14 +0000442 ADJ_INDEX_INVALID != walk_ai)
443 {
444 /*
445 * the adj is changing type. we need to fix all children so that they
446 * stack momentarily on a drop, while the adj changes. If we don't do
447 * this the children will send packets to a VLIB graph node that does
448 * not correspond to the adj's type - and it goes downhill from there.
449 */
450 fib_node_back_walk_ctx_t bw_ctx = {
451 .fnbw_reason = FIB_NODE_BW_REASON_FLAG_ADJ_DOWN,
452 /*
Paul Vinciguerra8feeaff2019-03-27 11:25:48 -0700453 * force this walk to be synchronous. if we don't and a node in the graph
Neale Rannsad95b5d2016-11-10 20:35:14 +0000454 * (a heavily shared path-list) chooses to back-ground the walk (make it
455 * async) then it will pause and we will do the adj update below, before
456 * all the children are updated. not good.
457 */
458 .fnbw_flags = FIB_NODE_BW_FLAG_FORCE_SYNC,
459 };
460
461 fib_walk_sync(FIB_NODE_TYPE_ADJ, walk_ai, &bw_ctx);
Steven Luong3d5f6222020-01-30 09:11:18 -0800462 /*
463 * fib_walk_sync may allocate a new adjacency and potentially cuase a
464 * realloc for adj_pool. When that happens, adj pointer is no longer
465 * valid here. We refresh the adj pointer accordingly.
466 */
467 adj = adj_get (ai);
Neale Rannsad95b5d2016-11-10 20:35:14 +0000468 }
469
470 /*
471 * If we are just updating the MAC string of the adj (which we also can't
472 * do atomically), then we need to stop packets switching through the adj.
473 * We can't do that on a per-adj basis, so it's all the packets.
474 * If we are updating the type, and we walked back to the children above,
475 * then this barrier serves to flush the queues/frames.
Neale Rannsb80c5362016-10-08 13:03:40 +0100476 */
477 vlib_worker_thread_barrier_sync(vm);
478
479 adj->lookup_next_index = adj_next_index;
Neale Rannscbe25aa2019-09-30 10:53:31 +0000480 adj->ia_node_index = this_node;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100481
482 if (NULL != rewrite)
483 {
484 /*
485 * new rewrite provided.
Neale Rannsb80c5362016-10-08 13:03:40 +0100486 * fill in the adj's rewrite string, and build the VLIB graph arc.
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100487 */
Neale Rannsb80c5362016-10-08 13:03:40 +0100488 vnet_rewrite_set_data_internal(&adj->rewrite_header,
489 sizeof(adj->rewrite_data),
490 rewrite,
491 vec_len(rewrite));
Neale Rannsb80c5362016-10-08 13:03:40 +0100492 vec_free(rewrite);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100493 }
494 else
495 {
Neale Rannsb80c5362016-10-08 13:03:40 +0100496 vnet_rewrite_clear_data_internal(&adj->rewrite_header,
497 sizeof(adj->rewrite_data));
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100498 }
Neale Rannsad95b5d2016-11-10 20:35:14 +0000499 adj->rewrite_header.next_index = vlib_node_add_next(vlib_get_main(),
500 this_node,
501 next_node);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100502
503 /*
Paul Vinciguerra8feeaff2019-03-27 11:25:48 -0700504 * done with the rewrite update - let the workers loose.
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100505 */
Neale Rannsb80c5362016-10-08 13:03:40 +0100506 vlib_worker_thread_barrier_release(vm);
Neale Rannsad95b5d2016-11-10 20:35:14 +0000507
Neale Ranns19c68d22016-12-07 15:38:14 +0000508 if (do_walk &&
509 (old_next != adj->lookup_next_index) &&
510 (ADJ_INDEX_INVALID != walk_ai))
Neale Rannsad95b5d2016-11-10 20:35:14 +0000511 {
512 /*
513 * backwalk to the children so they can stack on the now updated
514 * adjacency
515 */
516 fib_node_back_walk_ctx_t bw_ctx = {
517 .fnbw_reason = FIB_NODE_BW_REASON_FLAG_ADJ_UPDATE,
518 };
519
520 fib_walk_sync(FIB_NODE_TYPE_ADJ, walk_ai, &bw_ctx);
521 }
Neale Ranns19c68d22016-12-07 15:38:14 +0000522 /*
523 * Prevent re-entrant walk of the same adj
524 */
525 if (do_walk)
526 {
Neale Ranns37157d52020-01-23 22:46:06 +0000527 walk_adj = adj_get(walk_ai);
Neale Rannsfa5d1982017-02-20 14:19:51 -0800528 walk_adj->ia_flags &= ~ADJ_FLAG_SYNC_WALK_ACTIVE;
Neale Ranns19c68d22016-12-07 15:38:14 +0000529 }
530
Neale Ranns4ec36c52020-03-31 09:21:29 -0400531 adj_delegate_adj_modified(adj);
Neale Ranns66300f62020-01-12 21:16:55 +0000532 adj_unlock(ai);
Neale Ranns19c68d22016-12-07 15:38:14 +0000533 adj_unlock(walk_ai);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100534}
535
536typedef struct adj_db_count_ctx_t_ {
537 u64 count;
538} adj_db_count_ctx_t;
539
Neale Rannsf50bac12019-12-06 05:53:17 +0000540static int
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100541adj_db_count (BVT(clib_bihash_kv) * kvp,
542 void *arg)
543{
544 adj_db_count_ctx_t * ctx = arg;
545 ctx->count++;
Neale Rannsf50bac12019-12-06 05:53:17 +0000546 return (BIHASH_WALK_CONTINUE);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100547}
548
549u32
550adj_nbr_db_size (void)
551{
552 adj_db_count_ctx_t ctx = {
553 .count = 0,
554 };
555 fib_protocol_t proto;
556 u32 sw_if_index = 0;
557
558 for (proto = FIB_PROTOCOL_IP4; proto <= FIB_PROTOCOL_IP6; proto++)
559 {
560 vec_foreach_index(sw_if_index, adj_nbr_tables[proto])
561 {
562 if (NULL != adj_nbr_tables[proto][sw_if_index])
563 {
564 BV(clib_bihash_foreach_key_value_pair) (
565 adj_nbr_tables[proto][sw_if_index],
566 adj_db_count,
567 &ctx);
568 }
569 }
570 }
571 return (ctx.count);
572}
573
574/**
Neale Rannsb80c5362016-10-08 13:03:40 +0100575 * @brief Context for a walk of the adjacency neighbour DB
576 */
577typedef struct adj_walk_ctx_t_
578{
579 adj_walk_cb_t awc_cb;
580 void *awc_ctx;
581} adj_walk_ctx_t;
582
Neale Rannsf50bac12019-12-06 05:53:17 +0000583static int
Neale Rannsb80c5362016-10-08 13:03:40 +0100584adj_nbr_walk_cb (BVT(clib_bihash_kv) * kvp,
585 void *arg)
586{
587 adj_walk_ctx_t *ctx = arg;
588
Neale Rannsf50bac12019-12-06 05:53:17 +0000589 if (ADJ_WALK_RC_STOP == ctx->awc_cb(kvp->value, ctx->awc_ctx))
590 return (BIHASH_WALK_STOP);
591 return (BIHASH_WALK_CONTINUE);
Neale Rannsb80c5362016-10-08 13:03:40 +0100592}
593
594void
595adj_nbr_walk (u32 sw_if_index,
596 fib_protocol_t adj_nh_proto,
597 adj_walk_cb_t cb,
598 void *ctx)
599{
600 if (!ADJ_NBR_ITF_OK(adj_nh_proto, sw_if_index))
601 return;
602
603 adj_walk_ctx_t awc = {
604 .awc_ctx = ctx,
605 .awc_cb = cb,
606 };
607
608 BV(clib_bihash_foreach_key_value_pair) (
609 adj_nbr_tables[adj_nh_proto][sw_if_index],
610 adj_nbr_walk_cb,
611 &awc);
612}
613
614/**
Neale Rannsb80c5362016-10-08 13:03:40 +0100615 * @brief Walk adjacencies on a link with a given v4 next-hop.
616 * that is visit the adjacencies with different link types.
617 */
618void
619adj_nbr_walk_nh4 (u32 sw_if_index,
620 const ip4_address_t *addr,
621 adj_walk_cb_t cb,
622 void *ctx)
623{
624 if (!ADJ_NBR_ITF_OK(FIB_PROTOCOL_IP4, sw_if_index))
625 return;
626
627 ip46_address_t nh = {
628 .ip4 = *addr,
629 };
Neale Ranns580bba72018-04-23 05:31:19 -0700630 vnet_link_t linkt;
631 adj_index_t ai;
Neale Rannsb80c5362016-10-08 13:03:40 +0100632
Neale Ranns580bba72018-04-23 05:31:19 -0700633 FOR_EACH_VNET_LINK(linkt)
634 {
635 ai = adj_nbr_find (FIB_PROTOCOL_IP4, linkt, &nh, sw_if_index);
Neale Rannsb80c5362016-10-08 13:03:40 +0100636
Neale Ranns580bba72018-04-23 05:31:19 -0700637 if (INDEX_INVALID != ai)
638 cb(ai, ctx);
639 }
Neale Rannsb80c5362016-10-08 13:03:40 +0100640}
641
642/**
643 * @brief Walk adjacencies on a link with a given v6 next-hop.
644 * that is visit the adjacencies with different link types.
645 */
646void
647adj_nbr_walk_nh6 (u32 sw_if_index,
648 const ip6_address_t *addr,
649 adj_walk_cb_t cb,
650 void *ctx)
651{
652 if (!ADJ_NBR_ITF_OK(FIB_PROTOCOL_IP6, sw_if_index))
653 return;
654
655 ip46_address_t nh = {
656 .ip6 = *addr,
657 };
Neale Ranns580bba72018-04-23 05:31:19 -0700658 vnet_link_t linkt;
659 adj_index_t ai;
Neale Rannsb80c5362016-10-08 13:03:40 +0100660
Neale Ranns580bba72018-04-23 05:31:19 -0700661 FOR_EACH_VNET_LINK(linkt)
662 {
663 ai = adj_nbr_find (FIB_PROTOCOL_IP6, linkt, &nh, sw_if_index);
Neale Rannsb80c5362016-10-08 13:03:40 +0100664
Neale Ranns580bba72018-04-23 05:31:19 -0700665 if (INDEX_INVALID != ai)
666 cb(ai, ctx);
667 }
Neale Rannsb80c5362016-10-08 13:03:40 +0100668}
669
670/**
671 * @brief Walk adjacencies on a link with a given next-hop.
672 * that is visit the adjacencies with different link types.
673 */
674void
675adj_nbr_walk_nh (u32 sw_if_index,
676 fib_protocol_t adj_nh_proto,
677 const ip46_address_t *nh,
678 adj_walk_cb_t cb,
679 void *ctx)
680{
681 if (!ADJ_NBR_ITF_OK(adj_nh_proto, sw_if_index))
682 return;
683
Neale Rannscbe25aa2019-09-30 10:53:31 +0000684 switch (adj_nh_proto)
Neale Ranns580bba72018-04-23 05:31:19 -0700685 {
Neale Rannscbe25aa2019-09-30 10:53:31 +0000686 case FIB_PROTOCOL_IP4:
687 adj_nbr_walk_nh4(sw_if_index, &nh->ip4, cb, ctx);
688 break;
689 case FIB_PROTOCOL_IP6:
690 adj_nbr_walk_nh6(sw_if_index, &nh->ip6, cb, ctx);
691 break;
692 case FIB_PROTOCOL_MPLS:
693 ASSERT(0);
694 break;
Neale Ranns580bba72018-04-23 05:31:19 -0700695 }
Neale Rannsb80c5362016-10-08 13:03:40 +0100696}
697
698/**
Neale Ranns8b37b872016-11-21 12:25:22 +0000699 * Flags associated with the interface state walks
700 */
701typedef enum adj_nbr_interface_flags_t_
702{
703 ADJ_NBR_INTERFACE_UP = (1 << 0),
704} adj_nbr_interface_flags_t;
705
706/**
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100707 * Context for the state change walk of the DB
708 */
709typedef struct adj_nbr_interface_state_change_ctx_t_
710{
711 /**
Neale Ranns8b37b872016-11-21 12:25:22 +0000712 * Flags on the interface
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100713 */
Neale Ranns8b37b872016-11-21 12:25:22 +0000714 adj_nbr_interface_flags_t flags;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100715} adj_nbr_interface_state_change_ctx_t;
716
Neale Rannsb80c5362016-10-08 13:03:40 +0100717static adj_walk_rc_t
718adj_nbr_interface_state_change_one (adj_index_t ai,
Neale Ranns8b37b872016-11-21 12:25:22 +0000719 void *arg)
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100720{
721 /*
722 * Back walk the graph to inform the forwarding entries
Neale Ranns8b37b872016-11-21 12:25:22 +0000723 * that this interface state has changed. Do this synchronously
724 * since this is the walk that provides convergence
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100725 */
726 adj_nbr_interface_state_change_ctx_t *ctx = arg;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100727 fib_node_back_walk_ctx_t bw_ctx = {
Neale Ranns8b37b872016-11-21 12:25:22 +0000728 .fnbw_reason = ((ctx->flags & ADJ_NBR_INTERFACE_UP) ?
729 FIB_NODE_BW_REASON_FLAG_INTERFACE_UP :
730 FIB_NODE_BW_REASON_FLAG_INTERFACE_DOWN),
731 /*
732 * the force sync applies only as far as the first fib_entry.
733 * And it's the fib_entry's we need to converge away from
734 * the adjacencies on the now down link
735 */
736 .fnbw_flags = (!(ctx->flags & ADJ_NBR_INTERFACE_UP) ?
737 FIB_NODE_BW_FLAG_FORCE_SYNC :
Neale Ranns30d53642018-08-27 07:29:15 -0700738 FIB_NODE_BW_FLAG_NONE),
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100739 };
Neale Ranns30d53642018-08-27 07:29:15 -0700740 ip_adjacency_t *adj;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100741
Neale Ranns30d53642018-08-27 07:29:15 -0700742 adj = adj_get(ai);
743
744 adj->ia_flags |= ADJ_FLAG_SYNC_WALK_ACTIVE;
Neale Rannsb80c5362016-10-08 13:03:40 +0100745 fib_walk_sync(FIB_NODE_TYPE_ADJ, ai, &bw_ctx);
Neale Ranns30d53642018-08-27 07:29:15 -0700746 adj->ia_flags &= ~ADJ_FLAG_SYNC_WALK_ACTIVE;
Neale Rannsb80c5362016-10-08 13:03:40 +0100747
748 return (ADJ_WALK_RC_CONTINUE);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100749}
750
Neale Ranns8b37b872016-11-21 12:25:22 +0000751/**
752 * @brief Registered function for SW interface state changes
753 */
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100754static clib_error_t *
Neale Ranns8b37b872016-11-21 12:25:22 +0000755adj_nbr_sw_interface_state_change (vnet_main_t * vnm,
756 u32 sw_if_index,
757 u32 flags)
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100758{
759 fib_protocol_t proto;
760
761 /*
762 * walk each adj on the interface and trigger a walk from that adj
763 */
764 for (proto = FIB_PROTOCOL_IP4; proto <= FIB_PROTOCOL_IP6; proto++)
765 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100766 adj_nbr_interface_state_change_ctx_t ctx = {
Neale Ranns8b37b872016-11-21 12:25:22 +0000767 .flags = ((flags & VNET_SW_INTERFACE_FLAG_ADMIN_UP) ?
768 ADJ_NBR_INTERFACE_UP :
769 0),
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100770 };
771
Neale Rannsb80c5362016-10-08 13:03:40 +0100772 adj_nbr_walk(sw_if_index, proto,
773 adj_nbr_interface_state_change_one,
774 &ctx);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100775 }
776
777 return (NULL);
778}
779
Neale Ranns8b37b872016-11-21 12:25:22 +0000780VNET_SW_INTERFACE_ADMIN_UP_DOWN_FUNCTION_PRIO(
781 adj_nbr_sw_interface_state_change,
782 VNET_ITF_FUNC_PRIORITY_HIGH);
783
784/**
785 * @brief Invoked on each SW interface of a HW interface when the
786 * HW interface state changes
787 */
Neale Ranns0053de62018-05-22 08:40:52 -0700788static walk_rc_t
Neale Ranns8b37b872016-11-21 12:25:22 +0000789adj_nbr_hw_sw_interface_state_change (vnet_main_t * vnm,
790 u32 sw_if_index,
791 void *arg)
792{
793 adj_nbr_interface_state_change_ctx_t *ctx = arg;
794 fib_protocol_t proto;
795
796 /*
797 * walk each adj on the interface and trigger a walk from that adj
798 */
799 for (proto = FIB_PROTOCOL_IP4; proto <= FIB_PROTOCOL_IP6; proto++)
800 {
801 adj_nbr_walk(sw_if_index, proto,
802 adj_nbr_interface_state_change_one,
803 ctx);
804 }
Neale Ranns0053de62018-05-22 08:40:52 -0700805 return (WALK_CONTINUE);
Neale Ranns8b37b872016-11-21 12:25:22 +0000806}
807
808/**
809 * @brief Registered callback for HW interface state changes
810 */
811static clib_error_t *
812adj_nbr_hw_interface_state_change (vnet_main_t * vnm,
813 u32 hw_if_index,
814 u32 flags)
815{
816 /*
817 * walk SW interface on the HW
818 */
819 adj_nbr_interface_state_change_ctx_t ctx = {
820 .flags = ((flags & VNET_HW_INTERFACE_FLAG_LINK_UP) ?
821 ADJ_NBR_INTERFACE_UP :
822 0),
823 };
824
825 vnet_hw_interface_walk_sw(vnm, hw_if_index,
826 adj_nbr_hw_sw_interface_state_change,
827 &ctx);
828
829 return (NULL);
830}
831
832VNET_HW_INTERFACE_LINK_UP_DOWN_FUNCTION_PRIO(
833 adj_nbr_hw_interface_state_change,
834 VNET_ITF_FUNC_PRIORITY_HIGH);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100835
Neale Rannsb80c5362016-10-08 13:03:40 +0100836static adj_walk_rc_t
837adj_nbr_interface_delete_one (adj_index_t ai,
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100838 void *arg)
839{
840 /*
841 * Back walk the graph to inform the forwarding entries
842 * that this interface has been deleted.
843 */
844 fib_node_back_walk_ctx_t bw_ctx = {
845 .fnbw_reason = FIB_NODE_BW_REASON_FLAG_INTERFACE_DELETE,
846 };
Neale Ranns30d53642018-08-27 07:29:15 -0700847 ip_adjacency_t *adj;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100848
Benoît Ganne73911562019-10-16 15:08:37 +0200849 adj_lock(ai);
850
Neale Ranns30d53642018-08-27 07:29:15 -0700851 adj = adj_get(ai);
852
853 adj->ia_flags |= ADJ_FLAG_SYNC_WALK_ACTIVE;
Neale Rannsb80c5362016-10-08 13:03:40 +0100854 fib_walk_sync(FIB_NODE_TYPE_ADJ, ai, &bw_ctx);
Neale Ranns30d53642018-08-27 07:29:15 -0700855 adj->ia_flags &= ~ADJ_FLAG_SYNC_WALK_ACTIVE;
Neale Rannsb80c5362016-10-08 13:03:40 +0100856
Benoît Ganne73911562019-10-16 15:08:37 +0200857 adj_unlock(ai);
Neale Rannsb80c5362016-10-08 13:03:40 +0100858 return (ADJ_WALK_RC_CONTINUE);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100859}
860
861/**
862 * adj_nbr_interface_add_del
863 *
864 * Registered to receive interface Add and delete notifications
865 */
866static clib_error_t *
867adj_nbr_interface_add_del (vnet_main_t * vnm,
868 u32 sw_if_index,
869 u32 is_add)
870{
871 fib_protocol_t proto;
872
873 if (is_add)
874 {
875 /*
876 * not interested in interface additions. we will not back walk
877 * to resolve paths through newly added interfaces. Why? The control
878 * plane should have the brains to add interfaces first, then routes.
879 * So the case where there are paths with a interface that matches
880 * one just created is the case where the path resolved through an
881 * interface that was deleted, and still has not been removed. The
882 * new interface added, is NO GUARANTEE that the interface being
883 * added now, even though it may have the same sw_if_index, is the
884 * same interface that the path needs. So tough!
885 * If the control plane wants these routes to resolve it needs to
886 * remove and add them again.
887 */
888 return (NULL);
889 }
890
891 for (proto = FIB_PROTOCOL_IP4; proto <= FIB_PROTOCOL_IP6; proto++)
892 {
Neale Rannsb80c5362016-10-08 13:03:40 +0100893 adj_nbr_walk(sw_if_index, proto,
894 adj_nbr_interface_delete_one,
895 NULL);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100896 }
897
898 return (NULL);
899
900}
901
902VNET_SW_INTERFACE_ADD_DEL_FUNCTION(adj_nbr_interface_add_del);
903
904
Neale Rannsb80c5362016-10-08 13:03:40 +0100905static adj_walk_rc_t
906adj_nbr_show_one (adj_index_t ai,
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100907 void *arg)
908{
909 vlib_cli_output (arg, "[@%d] %U",
Neale Rannsb80c5362016-10-08 13:03:40 +0100910 ai,
911 format_ip_adjacency, ai,
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100912 FORMAT_IP_ADJACENCY_NONE);
Neale Rannsb80c5362016-10-08 13:03:40 +0100913
914 return (ADJ_WALK_RC_CONTINUE);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100915}
916
917static clib_error_t *
918adj_nbr_show (vlib_main_t * vm,
919 unformat_input_t * input,
920 vlib_cli_command_t * cmd)
921{
922 adj_index_t ai = ADJ_INDEX_INVALID;
Neale Ranns14053c92019-12-29 23:55:18 +0000923 ip46_address_t nh = ip46_address_initializer;
Neale Rannsb80c5362016-10-08 13:03:40 +0100924 u32 sw_if_index = ~0;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100925
926 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
927 {
Neale Ranns14053c92019-12-29 23:55:18 +0000928 if (unformat (input, "%U",
929 unformat_vnet_sw_interface, vnet_get_main(),
930 &sw_if_index))
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100931 ;
Neale Rannsb80c5362016-10-08 13:03:40 +0100932 else if (unformat (input, "%U",
Neale Ranns14053c92019-12-29 23:55:18 +0000933 unformat_ip46_address, &nh, IP46_TYPE_ANY))
934 ;
935 else if (unformat (input, "%d", &ai))
Neale Rannsb80c5362016-10-08 13:03:40 +0100936 ;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100937 else
938 break;
939 }
940
941 if (ADJ_INDEX_INVALID != ai)
942 {
943 vlib_cli_output (vm, "[@%d] %U",
944 ai,
Neale Rannsb80c5362016-10-08 13:03:40 +0100945 format_ip_adjacency, ai,
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100946 FORMAT_IP_ADJACENCY_DETAIL);
947 }
Neale Rannsb80c5362016-10-08 13:03:40 +0100948 else if (~0 != sw_if_index)
949 {
950 fib_protocol_t proto;
951
Neale Ranns14053c92019-12-29 23:55:18 +0000952 if (ip46_address_is_zero(&nh))
953 {
954 for (proto = FIB_PROTOCOL_IP4; proto <= FIB_PROTOCOL_IP6; proto++)
955 {
956 adj_nbr_walk(sw_if_index, proto,
957 adj_nbr_show_one,
958 vm);
959 }
960 }
961 else
962 {
963 proto = (ip46_address_is_ip4(&nh) ?
964 FIB_PROTOCOL_IP4 :
965 FIB_PROTOCOL_IP6);
966 adj_nbr_walk_nh(sw_if_index, proto, &nh,
967 adj_nbr_show_one,
968 vm);
969 }
Neale Rannsb80c5362016-10-08 13:03:40 +0100970 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100971 else
972 {
973 fib_protocol_t proto;
974
975 for (proto = FIB_PROTOCOL_IP4; proto <= FIB_PROTOCOL_IP6; proto++)
976 {
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100977 vec_foreach_index(sw_if_index, adj_nbr_tables[proto])
978 {
Neale Rannsb80c5362016-10-08 13:03:40 +0100979 adj_nbr_walk(sw_if_index, proto,
980 adj_nbr_show_one,
981 vm);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100982 }
983 }
984 }
985
986 return 0;
987}
988
Neale Rannsb80c5362016-10-08 13:03:40 +0100989/*?
990 * Show all neighbour adjacencies.
991 * @cliexpar
992 * @cliexstart{sh adj nbr}
993 * [@2] ipv4 via 1.0.0.2 loop0: IP4: 00:00:22:aa:bb:cc -> 00:00:11:aa:bb:cc
994 * [@3] mpls via 1.0.0.2 loop0: MPLS_UNICAST: 00:00:22:aa:bb:cc -> 00:00:11:aa:bb:cc
995 * [@4] ipv4 via 1.0.0.3 loop0: IP4: 00:00:22:aa:bb:cc -> 00:00:11:aa:bb:cc
996 * [@5] mpls via 1.0.0.3 loop0: MPLS_UNICAST: 00:00:22:aa:bb:cc -> 00:00:11:aa:bb:cc
997 * @cliexend
998 ?*/
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100999VLIB_CLI_COMMAND (ip4_show_fib_command, static) = {
1000 .path = "show adj nbr",
Neale Rannsb80c5362016-10-08 13:03:40 +01001001 .short_help = "show adj nbr [<adj_index>] [interface]",
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001002 .function = adj_nbr_show,
1003};
1004
1005u8*
1006format_adj_nbr_incomplete (u8* s, va_list *ap)
1007{
Billy McFallcfcf1e22016-10-14 09:51:49 -04001008 index_t index = va_arg(*ap, index_t);
1009 CLIB_UNUSED(u32 indent) = va_arg(*ap, u32);
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001010 vnet_main_t * vnm = vnet_get_main();
1011 ip_adjacency_t * adj = adj_get(index);
1012
Neale Ranns924d03a2016-10-19 08:25:46 +01001013 s = format (s, "arp-%U", format_vnet_link, adj->ia_link);
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001014 s = format (s, ": via %U",
Neale Rannsb80c5362016-10-08 13:03:40 +01001015 format_ip46_address, &adj->sub_type.nbr.next_hop,
1016 adj_proto_to_46(adj->ia_nh_proto));
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001017 s = format (s, " %U",
Steven70488ab2018-03-28 17:59:00 -07001018 format_vnet_sw_if_index_name,
1019 vnm, adj->rewrite_header.sw_if_index);
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001020
1021 return (s);
1022}
1023
1024u8*
1025format_adj_nbr (u8* s, va_list *ap)
1026{
Billy McFallcfcf1e22016-10-14 09:51:49 -04001027 index_t index = va_arg(*ap, index_t);
1028 CLIB_UNUSED(u32 indent) = va_arg(*ap, u32);
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001029 ip_adjacency_t * adj = adj_get(index);
1030
Neale Ranns924d03a2016-10-19 08:25:46 +01001031 s = format (s, "%U", format_vnet_link, adj->ia_link);
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001032 s = format (s, " via %U ",
Neale Rannsb80c5362016-10-08 13:03:40 +01001033 format_ip46_address, &adj->sub_type.nbr.next_hop,
1034 adj_proto_to_46(adj->ia_nh_proto));
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001035 s = format (s, "%U",
1036 format_vnet_rewrite,
Neale Rannsb069a692017-03-15 12:34:25 -04001037 &adj->rewrite_header, sizeof (adj->rewrite_data), 0);
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001038
1039 return (s);
1040}
1041
1042static void
1043adj_dpo_lock (dpo_id_t *dpo)
1044{
1045 adj_lock(dpo->dpoi_index);
1046}
1047static void
1048adj_dpo_unlock (dpo_id_t *dpo)
1049{
1050 adj_unlock(dpo->dpoi_index);
1051}
1052
Neale Ranns6c3ebcc2016-10-02 21:20:15 +01001053static void
1054adj_mem_show (void)
1055{
1056 fib_show_memory_usage("Adjacency",
1057 pool_elts(adj_pool),
1058 pool_len(adj_pool),
1059 sizeof(ip_adjacency_t));
1060}
1061
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001062const static dpo_vft_t adj_nbr_dpo_vft = {
1063 .dv_lock = adj_dpo_lock,
1064 .dv_unlock = adj_dpo_unlock,
1065 .dv_format = format_adj_nbr,
Neale Ranns6c3ebcc2016-10-02 21:20:15 +01001066 .dv_mem_show = adj_mem_show,
Andrew Yourtchenko5f3fcb92017-10-25 05:50:37 -07001067 .dv_get_urpf = adj_dpo_get_urpf,
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001068};
1069const static dpo_vft_t adj_nbr_incompl_dpo_vft = {
1070 .dv_lock = adj_dpo_lock,
1071 .dv_unlock = adj_dpo_unlock,
1072 .dv_format = format_adj_nbr_incomplete,
Andrew Yourtchenko5f3fcb92017-10-25 05:50:37 -07001073 .dv_get_urpf = adj_dpo_get_urpf,
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001074};
1075
1076/**
1077 * @brief The per-protocol VLIB graph nodes that are assigned to an adjacency
1078 * object.
1079 *
1080 * this means that these graph nodes are ones from which a nbr is the
1081 * parent object in the DPO-graph.
1082 */
1083const static char* const nbr_ip4_nodes[] =
1084{
Neale Rannsf06aea52016-11-29 06:51:37 -08001085 "ip4-rewrite",
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001086 NULL,
1087};
1088const static char* const nbr_ip6_nodes[] =
1089{
1090 "ip6-rewrite",
1091 NULL,
1092};
1093const static char* const nbr_mpls_nodes[] =
1094{
1095 "mpls-output",
1096 NULL,
1097};
Neale Ranns5e575b12016-10-03 09:40:25 +01001098const static char* const nbr_ethernet_nodes[] =
1099{
1100 "adj-l2-rewrite",
1101 NULL,
1102};
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001103const static char* const * const nbr_nodes[DPO_PROTO_NUM] =
1104{
1105 [DPO_PROTO_IP4] = nbr_ip4_nodes,
1106 [DPO_PROTO_IP6] = nbr_ip6_nodes,
1107 [DPO_PROTO_MPLS] = nbr_mpls_nodes,
Neale Ranns5e575b12016-10-03 09:40:25 +01001108 [DPO_PROTO_ETHERNET] = nbr_ethernet_nodes,
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001109};
1110
1111const static char* const nbr_incomplete_ip4_nodes[] =
1112{
1113 "ip4-arp",
1114 NULL,
1115};
1116const static char* const nbr_incomplete_ip6_nodes[] =
1117{
1118 "ip6-discover-neighbor",
1119 NULL,
1120};
1121const static char* const nbr_incomplete_mpls_nodes[] =
1122{
1123 "mpls-adj-incomplete",
1124 NULL,
1125};
1126
1127const static char* const * const nbr_incomplete_nodes[DPO_PROTO_NUM] =
1128{
1129 [DPO_PROTO_IP4] = nbr_incomplete_ip4_nodes,
1130 [DPO_PROTO_IP6] = nbr_incomplete_ip6_nodes,
1131 [DPO_PROTO_MPLS] = nbr_incomplete_mpls_nodes,
1132};
1133
1134void
1135adj_nbr_module_init (void)
1136{
1137 dpo_register(DPO_ADJACENCY,
1138 &adj_nbr_dpo_vft,
1139 nbr_nodes);
1140 dpo_register(DPO_ADJACENCY_INCOMPLETE,
1141 &adj_nbr_incompl_dpo_vft,
1142 nbr_incomplete_nodes);
1143}