blob: efc781de989021e40927aa590f878ce632b232be [file] [log] [blame]
Neale Ranns32e1c012016-11-22 17:07:28 +00001/*
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
Neale Ranns0f26c5a2017-03-01 15:12:11 -080016#include <vnet/adj/adj_mcast.h>
Neale Ranns32e1c012016-11-22 17:07:28 +000017#include <vnet/adj/adj_internal.h>
18#include <vnet/fib/fib_walk.h>
19#include <vnet/ip/ip.h>
20
21/*
22 * The 'DB' of all mcast adjs.
23 * There is only one mcast per-interface per-protocol, so this is a per-interface
24 * vector
25 */
26static adj_index_t *adj_mcasts[FIB_PROTOCOL_MAX];
27
28static u32
29adj_get_mcast_node (fib_protocol_t proto)
30{
31 switch (proto) {
32 case FIB_PROTOCOL_IP4:
33 return (ip4_rewrite_mcast_node.index);
34 case FIB_PROTOCOL_IP6:
35 return (ip6_rewrite_mcast_node.index);
36 case FIB_PROTOCOL_MPLS:
37 break;
38 }
39 ASSERT(0);
40 return (0);
41}
42
43/*
44 * adj_mcast_add_or_lock
45 *
46 * The next_hop address here is used for source address selection in the DP.
47 * The mcast adj is added to an interface's connected prefix, the next-hop
48 * passed here is the local prefix on the same interface.
49 */
50adj_index_t
51adj_mcast_add_or_lock (fib_protocol_t proto,
52 vnet_link_t link_type,
53 u32 sw_if_index)
54{
55 ip_adjacency_t * adj;
56
57 vec_validate_init_empty(adj_mcasts[proto], sw_if_index, ADJ_INDEX_INVALID);
58
59 if (ADJ_INDEX_INVALID == adj_mcasts[proto][sw_if_index])
60 {
61 vnet_main_t *vnm;
62
63 vnm = vnet_get_main();
64 adj = adj_alloc(proto);
65
66 adj->lookup_next_index = IP_LOOKUP_NEXT_MCAST;
67 adj->ia_nh_proto = proto;
68 adj->ia_link = link_type;
69 adj_mcasts[proto][sw_if_index] = adj_get_index(adj);
70 adj_lock(adj_get_index(adj));
71
72 vnet_rewrite_init(vnm, sw_if_index,
73 adj_get_mcast_node(proto),
74 vnet_tx_node_index_for_sw_interface(vnm, sw_if_index),
75 &adj->rewrite_header);
76
77 /*
78 * we need a rewrite where the destination IP address is converted
79 * to the appropriate link-layer address. This is interface specific.
80 * So ask the interface to do it.
81 */
82 vnet_update_adjacency_for_sw_interface(vnm, sw_if_index,
83 adj_get_index(adj));
84 }
85 else
86 {
87 adj = adj_get(adj_mcasts[proto][sw_if_index]);
88 adj_lock(adj_get_index(adj));
89 }
90
91 return (adj_get_index(adj));
92}
93
94/**
95 * adj_mcast_update_rewrite
96 *
97 * Update the adjacency's rewrite string. A NULL string implies the
98 * rewirte is reset (i.e. when ARP/ND etnry is gone).
99 * NB: the adj being updated may be handling traffic in the DP.
100 */
101void
102adj_mcast_update_rewrite (adj_index_t adj_index,
Neale Ranns2e7fbcc2017-03-15 04:22:25 -0700103 u8 *rewrite,
104 u8 offset,
105 u32 mask)
Neale Ranns32e1c012016-11-22 17:07:28 +0000106{
107 ip_adjacency_t *adj;
108
109 ASSERT(ADJ_INDEX_INVALID != adj_index);
110
111 adj = adj_get(adj_index);
112
113 /*
114 * update the adj's rewrite string and build the arc
115 * from the rewrite node to the interface's TX node
116 */
117 adj_nbr_update_rewrite_internal(adj, IP_LOOKUP_NEXT_MCAST,
118 adj_get_mcast_node(adj->ia_nh_proto),
119 vnet_tx_node_index_for_sw_interface(
120 vnet_get_main(),
121 adj->rewrite_header.sw_if_index),
122 rewrite);
Neale Ranns2e7fbcc2017-03-15 04:22:25 -0700123 /*
124 * set the fields corresponding to the mcast IP address rewrite
125 * The mask must be stored in network byte order, since the packet's
126 * IP address will also be in network order.
127 */
128 adj->rewrite_header.dst_mcast_offset = offset;
129 adj->rewrite_header.dst_mcast_mask = clib_host_to_net_u32(mask);
Neale Ranns32e1c012016-11-22 17:07:28 +0000130}
131
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800132/**
133 * adj_mcast_midchain_update_rewrite
134 *
135 * Update the adjacency's rewrite string. A NULL string implies the
136 * rewirte is reset (i.e. when ARP/ND etnry is gone).
137 * NB: the adj being updated may be handling traffic in the DP.
138 */
139void
140adj_mcast_midchain_update_rewrite (adj_index_t adj_index,
141 adj_midchain_fixup_t fixup,
Neale Rannsdb14f5a2018-01-29 10:43:33 -0800142 const void *fixup_data,
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800143 adj_flags_t flags,
144 u8 *rewrite,
145 u8 offset,
146 u32 mask)
147{
148 ip_adjacency_t *adj;
149
150 ASSERT(ADJ_INDEX_INVALID != adj_index);
151
152 adj = adj_get(adj_index);
153
154 /*
155 * one time only update. since we don't support chainging the tunnel
156 * src,dst, this is all we need.
157 */
158 ASSERT(adj->lookup_next_index == IP_LOOKUP_NEXT_MCAST);
159 /*
160 * tunnels can always provide a rewrite.
161 */
162 ASSERT(NULL != rewrite);
163
Neale Rannsdb14f5a2018-01-29 10:43:33 -0800164 adj_midchain_setup(adj_index, fixup, fixup_data, flags);
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800165
166 /*
167 * update the adj's rewrite string and build the arc
168 * from the rewrite node to the interface's TX node
169 */
170 adj_nbr_update_rewrite_internal(adj, IP_LOOKUP_NEXT_MCAST_MIDCHAIN,
171 adj_get_mcast_node(adj->ia_nh_proto),
172 vnet_tx_node_index_for_sw_interface(
173 vnet_get_main(),
174 adj->rewrite_header.sw_if_index),
175 rewrite);
176
177 /*
178 * set the fields corresponding to the mcast IP address rewrite
179 * The mask must be stored in network byte order, since the packet's
180 * IP address will also be in network order.
181 */
182 adj->rewrite_header.dst_mcast_offset = offset;
183 adj->rewrite_header.dst_mcast_mask = clib_host_to_net_u32(mask);
184}
185
Neale Ranns32e1c012016-11-22 17:07:28 +0000186void
187adj_mcast_remove (fib_protocol_t proto,
188 u32 sw_if_index)
189{
190 ASSERT(sw_if_index < vec_len(adj_mcasts[proto]));
191
192 adj_mcasts[proto][sw_if_index] = ADJ_INDEX_INVALID;
193}
194
195static clib_error_t *
196adj_mcast_interface_state_change (vnet_main_t * vnm,
197 u32 sw_if_index,
198 u32 flags)
199{
200 /*
201 * for each mcast on the interface trigger a walk back to the children
202 */
203 fib_protocol_t proto;
204 ip_adjacency_t *adj;
205
206
207 for (proto = FIB_PROTOCOL_IP4; proto <= FIB_PROTOCOL_IP6; proto++)
208 {
209 if (sw_if_index >= vec_len(adj_mcasts[proto]) ||
210 ADJ_INDEX_INVALID == adj_mcasts[proto][sw_if_index])
211 continue;
212
213 adj = adj_get(adj_mcasts[proto][sw_if_index]);
214
215 fib_node_back_walk_ctx_t bw_ctx = {
216 .fnbw_reason = (flags & VNET_SW_INTERFACE_FLAG_ADMIN_UP ?
217 FIB_NODE_BW_REASON_FLAG_INTERFACE_UP :
218 FIB_NODE_BW_REASON_FLAG_INTERFACE_DOWN),
219 };
220
221 fib_walk_sync(FIB_NODE_TYPE_ADJ, adj_get_index(adj), &bw_ctx);
222 }
223
224 return (NULL);
225}
226
227VNET_SW_INTERFACE_ADMIN_UP_DOWN_FUNCTION(adj_mcast_interface_state_change);
228
229/**
230 * @brief Invoked on each SW interface of a HW interface when the
231 * HW interface state changes
232 */
233static void
Neale Rannsc2aad532017-05-30 09:53:52 -0700234adj_mcast_hw_sw_interface_state_change (vnet_main_t * vnm,
235 u32 sw_if_index,
236 void *arg)
Neale Ranns32e1c012016-11-22 17:07:28 +0000237{
238 adj_mcast_interface_state_change(vnm, sw_if_index, (uword) arg);
239}
240
241/**
242 * @brief Registered callback for HW interface state changes
243 */
244static clib_error_t *
245adj_mcast_hw_interface_state_change (vnet_main_t * vnm,
246 u32 hw_if_index,
247 u32 flags)
248{
249 /*
250 * walk SW interfaces on the HW
251 */
252 uword sw_flags;
253
254 sw_flags = ((flags & VNET_HW_INTERFACE_FLAG_LINK_UP) ?
255 VNET_SW_INTERFACE_FLAG_ADMIN_UP :
256 0);
257
258 vnet_hw_interface_walk_sw(vnm, hw_if_index,
Neale Rannsc2aad532017-05-30 09:53:52 -0700259 adj_mcast_hw_sw_interface_state_change,
Neale Ranns32e1c012016-11-22 17:07:28 +0000260 (void*) sw_flags);
261
262 return (NULL);
263}
264
265VNET_HW_INTERFACE_LINK_UP_DOWN_FUNCTION(
266 adj_mcast_hw_interface_state_change);
267
268static clib_error_t *
269adj_mcast_interface_delete (vnet_main_t * vnm,
270 u32 sw_if_index,
271 u32 is_add)
272{
273 /*
274 * for each mcast on the interface trigger a walk back to the children
275 */
276 fib_protocol_t proto;
277 ip_adjacency_t *adj;
278
279 if (is_add)
280 {
281 /*
282 * not interested in interface additions. we will not back walk
283 * to resolve paths through newly added interfaces. Why? The control
284 * plane should have the brains to add interfaces first, then routes.
285 * So the case where there are paths with a interface that matches
286 * one just created is the case where the path resolved through an
287 * interface that was deleted, and still has not been removed. The
288 * new interface added, is NO GUARANTEE that the interface being
289 * added now, even though it may have the same sw_if_index, is the
290 * same interface that the path needs. So tough!
291 * If the control plane wants these routes to resolve it needs to
292 * remove and add them again.
293 */
294 return (NULL);
295 }
296
297 for (proto = FIB_PROTOCOL_IP4; proto <= FIB_PROTOCOL_IP6; proto++)
298 {
299 if (sw_if_index >= vec_len(adj_mcasts[proto]) ||
300 ADJ_INDEX_INVALID == adj_mcasts[proto][sw_if_index])
301 continue;
302
303 adj = adj_get(adj_mcasts[proto][sw_if_index]);
304
305 fib_node_back_walk_ctx_t bw_ctx = {
306 .fnbw_reason = FIB_NODE_BW_REASON_FLAG_INTERFACE_DELETE,
307 };
308
309 fib_walk_sync(FIB_NODE_TYPE_ADJ, adj_get_index(adj), &bw_ctx);
310 }
311
312 return (NULL);
313}
314
315VNET_SW_INTERFACE_ADD_DEL_FUNCTION(adj_mcast_interface_delete);
316
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800317/**
318 * @brief Walk the multicast Adjacencies on a given interface
319 */
320void
321adj_mcast_walk (u32 sw_if_index,
322 fib_protocol_t proto,
323 adj_walk_cb_t cb,
324 void *ctx)
325{
326 if (vec_len(adj_mcasts[proto]) > sw_if_index)
327 {
328 if (ADJ_INDEX_INVALID != adj_mcasts[proto][sw_if_index])
329 {
330 cb(adj_mcasts[proto][sw_if_index], ctx);
331 }
332 }
333}
334
Neale Ranns32e1c012016-11-22 17:07:28 +0000335u8*
336format_adj_mcast (u8* s, va_list *ap)
337{
338 index_t index = va_arg(*ap, index_t);
339 CLIB_UNUSED(u32 indent) = va_arg(*ap, u32);
Neale Ranns32e1c012016-11-22 17:07:28 +0000340 ip_adjacency_t * adj = adj_get(index);
341
342 s = format(s, "%U-mcast: ",
343 format_fib_protocol, adj->ia_nh_proto);
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800344 if (adj->rewrite_header.flags & VNET_REWRITE_HAS_FEATURES)
345 s = format(s, "[features] ");
Neale Ranns32e1c012016-11-22 17:07:28 +0000346 s = format (s, "%U",
347 format_vnet_rewrite,
Neale Rannsb069a692017-03-15 12:34:25 -0400348 &adj->rewrite_header, sizeof (adj->rewrite_data), 0);
Neale Ranns32e1c012016-11-22 17:07:28 +0000349
350 return (s);
351}
352
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800353u8*
354format_adj_mcast_midchain (u8* s, va_list *ap)
355{
356 index_t index = va_arg(*ap, index_t);
357 CLIB_UNUSED(u32 indent) = va_arg(*ap, u32);
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800358 ip_adjacency_t * adj = adj_get(index);
359
360 s = format(s, "%U-mcast-midchain: ",
361 format_fib_protocol, adj->ia_nh_proto);
362 s = format (s, "%U",
363 format_vnet_rewrite,
Neale Rannsdb14f5a2018-01-29 10:43:33 -0800364 &adj->rewrite_header,
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800365 sizeof (adj->rewrite_data), 0);
366 s = format (s, "\n%Ustacked-on:\n%U%U",
367 format_white_space, indent,
368 format_white_space, indent+2,
369 format_dpo_id, &adj->sub_type.midchain.next_dpo, indent+2);
370
371 return (s);
372}
373
Neale Ranns32e1c012016-11-22 17:07:28 +0000374
375static void
376adj_dpo_lock (dpo_id_t *dpo)
377{
378 adj_lock(dpo->dpoi_index);
379}
380static void
381adj_dpo_unlock (dpo_id_t *dpo)
382{
383 adj_unlock(dpo->dpoi_index);
384}
385
386const static dpo_vft_t adj_mcast_dpo_vft = {
387 .dv_lock = adj_dpo_lock,
388 .dv_unlock = adj_dpo_unlock,
389 .dv_format = format_adj_mcast,
Andrew Yourtchenko5f3fcb92017-10-25 05:50:37 -0700390 .dv_get_urpf = adj_dpo_get_urpf,
Neale Ranns32e1c012016-11-22 17:07:28 +0000391};
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800392const static dpo_vft_t adj_mcast_midchain_dpo_vft = {
393 .dv_lock = adj_dpo_lock,
394 .dv_unlock = adj_dpo_unlock,
395 .dv_format = format_adj_mcast_midchain,
Andrew Yourtchenko5f3fcb92017-10-25 05:50:37 -0700396 .dv_get_urpf = adj_dpo_get_urpf,
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800397};
Neale Ranns32e1c012016-11-22 17:07:28 +0000398
399/**
400 * @brief The per-protocol VLIB graph nodes that are assigned to a mcast
401 * object.
402 *
403 * this means that these graph nodes are ones from which a mcast is the
404 * parent object in the DPO-graph.
405 */
406const static char* const adj_mcast_ip4_nodes[] =
407{
408 "ip4-rewrite-mcast",
409 NULL,
410};
411const static char* const adj_mcast_ip6_nodes[] =
412{
413 "ip6-rewrite-mcast",
414 NULL,
415};
416
417const static char* const * const adj_mcast_nodes[DPO_PROTO_NUM] =
418{
419 [DPO_PROTO_IP4] = adj_mcast_ip4_nodes,
420 [DPO_PROTO_IP6] = adj_mcast_ip6_nodes,
421 [DPO_PROTO_MPLS] = NULL,
422};
423
424/**
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800425 * @brief The per-protocol VLIB graph nodes that are assigned to a mcast
426 * object.
427 *
428 * this means that these graph nodes are ones from which a mcast is the
429 * parent object in the DPO-graph.
430 */
431const static char* const adj_mcast_midchain_ip4_nodes[] =
432{
433 "ip4-mcast-midchain",
434 NULL,
435};
436const static char* const adj_mcast_midchain_ip6_nodes[] =
437{
438 "ip6-mcast-midchain",
439 NULL,
440};
441
442const static char* const * const adj_mcast_midchain_nodes[DPO_PROTO_NUM] =
443{
444 [DPO_PROTO_IP4] = adj_mcast_midchain_ip4_nodes,
445 [DPO_PROTO_IP6] = adj_mcast_midchain_ip6_nodes,
446 [DPO_PROTO_MPLS] = NULL,
447};
448
449/**
Neale Ranns32e1c012016-11-22 17:07:28 +0000450 * @brief Return the size of the adj DB.
451 * This is only for testing purposes so an efficient implementation is not needed
452 */
453u32
454adj_mcast_db_size (void)
455{
456 u32 n_adjs, sw_if_index;
457 fib_protocol_t proto;
458
459 n_adjs = 0;
460 for (proto = FIB_PROTOCOL_IP4; proto <= FIB_PROTOCOL_IP6; proto++)
461 {
462 for (sw_if_index = 0;
463 sw_if_index < vec_len(adj_mcasts[proto]);
464 sw_if_index++)
465 {
466 if (ADJ_INDEX_INVALID != adj_mcasts[proto][sw_if_index])
467 {
468 n_adjs++;
469 }
470 }
471 }
472
473 return (n_adjs);
474}
475
476void
477adj_mcast_module_init (void)
478{
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800479 dpo_register(DPO_ADJACENCY_MCAST,
480 &adj_mcast_dpo_vft,
481 adj_mcast_nodes);
482 dpo_register(DPO_ADJACENCY_MCAST_MIDCHAIN,
483 &adj_mcast_midchain_dpo_vft,
484 adj_mcast_midchain_nodes);
Neale Ranns32e1c012016-11-22 17:07:28 +0000485}