]> git.proxmox.com Git - mirror_frr.git/blob - pimd/pim_vxlan.c
Merge pull request #9697 from SaiGomathiN/igmp-sources
[mirror_frr.git] / pimd / pim_vxlan.c
1 /* PIM support for VxLAN BUM flooding
2 *
3 * Copyright (C) 2019 Cumulus Networks, Inc.
4 *
5 * This file is part of FRR.
6 *
7 * FRR is free software; you can redistribute it and/or modify it
8 * under the terms of the GNU General Public License as published by the
9 * Free Software Foundation; either version 2, or (at your option) any
10 * later version.
11 *
12 * FRR is distributed in the hope that it will be useful, but
13 * WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * General Public License for more details.
16 * This program is free software; you can redistribute it and/or modify
17 * it under the terms of the GNU General Public License as published by
18 * the Free Software Foundation; either version 2 of the License, or
19 * (at your option) any later version.
20 */
21
22 #include <zebra.h>
23
24 #include <hash.h>
25 #include <jhash.h>
26 #include <log.h>
27 #include <prefix.h>
28 #include <vrf.h>
29
30 #include "pimd.h"
31 #include "pim_iface.h"
32 #include "pim_memory.h"
33 #include "pim_oil.h"
34 #include "pim_register.h"
35 #include "pim_str.h"
36 #include "pim_upstream.h"
37 #include "pim_ifchannel.h"
38 #include "pim_nht.h"
39 #include "pim_zebra.h"
40 #include "pim_vxlan.h"
41 #include "pim_mlag.h"
42
43 /* pim-vxlan global info */
44 struct pim_vxlan vxlan_info, *pim_vxlan_p = &vxlan_info;
45
46 static void pim_vxlan_work_timer_setup(bool start);
47 static void pim_vxlan_set_peerlink_rif(struct pim_instance *pim,
48 struct interface *ifp);
49
50 /*************************** vxlan work list **********************************
51 * A work list is maintained for staggered generation of pim null register
52 * messages for vxlan SG entries that are in a reg_join state.
53 *
54 * A max of 500 NULL registers are generated at one shot. If paused reg
55 * generation continues on the next second and so on till all register
56 * messages have been sent out. And the process is restarted every 60s.
57 *
58 * purpose of this null register generation is to setup the SPT and maintain
59 * independent of the presence of overlay BUM traffic.
60 ****************************************************************************/
61 static void pim_vxlan_do_reg_work(void)
62 {
63 struct listnode *listnode;
64 int work_cnt = 0;
65 struct pim_vxlan_sg *vxlan_sg;
66 static int sec_count;
67
68 ++sec_count;
69
70 if (sec_count > PIM_VXLAN_NULL_REG_INTERVAL) {
71 sec_count = 0;
72 listnode = vxlan_info.next_work ?
73 vxlan_info.next_work :
74 vxlan_info.work_list->head;
75 if (PIM_DEBUG_VXLAN && listnode)
76 zlog_debug("vxlan SG work %s",
77 vxlan_info.next_work ? "continues" : "starts");
78 } else {
79 listnode = vxlan_info.next_work;
80 }
81
82 for (; listnode; listnode = listnode->next) {
83 vxlan_sg = (struct pim_vxlan_sg *)listnode->data;
84 if (vxlan_sg->up && (vxlan_sg->up->reg_state == PIM_REG_JOIN)) {
85 if (PIM_DEBUG_VXLAN)
86 zlog_debug("vxlan SG %s periodic NULL register",
87 vxlan_sg->sg_str);
88
89 /*
90 * If we are on the work queue *and* the rpf
91 * has been lost on the vxlan_sg->up let's
92 * make sure that we don't send it.
93 */
94 if (vxlan_sg->up->rpf.source_nexthop.interface) {
95 pim_null_register_send(vxlan_sg->up);
96 ++work_cnt;
97 }
98 }
99
100 if (work_cnt > vxlan_info.max_work_cnt) {
101 vxlan_info.next_work = listnode->next;
102 if (PIM_DEBUG_VXLAN)
103 zlog_debug("vxlan SG %d work items proc and pause",
104 work_cnt);
105 return;
106 }
107 }
108
109 if (work_cnt) {
110 if (PIM_DEBUG_VXLAN)
111 zlog_debug("vxlan SG %d work items proc", work_cnt);
112 }
113 vxlan_info.next_work = NULL;
114 }
115
116 /* Staggered work related info is initialized when the first work comes
117 * along
118 */
119 static void pim_vxlan_init_work(void)
120 {
121 if (vxlan_info.flags & PIM_VXLANF_WORK_INITED)
122 return;
123
124 vxlan_info.max_work_cnt = PIM_VXLAN_WORK_MAX;
125 vxlan_info.flags |= PIM_VXLANF_WORK_INITED;
126 vxlan_info.work_list = list_new();
127 pim_vxlan_work_timer_setup(true/* start */);
128 }
129
130 static void pim_vxlan_add_work(struct pim_vxlan_sg *vxlan_sg)
131 {
132 if (vxlan_sg->flags & PIM_VXLAN_SGF_DEL_IN_PROG) {
133 if (PIM_DEBUG_VXLAN)
134 zlog_debug("vxlan SG %s skip work list; del-in-prog",
135 vxlan_sg->sg_str);
136 return;
137 }
138
139 pim_vxlan_init_work();
140
141 /* already a part of the work list */
142 if (vxlan_sg->work_node)
143 return;
144
145 if (PIM_DEBUG_VXLAN)
146 zlog_debug("vxlan SG %s work list add",
147 vxlan_sg->sg_str);
148 vxlan_sg->work_node = listnode_add(vxlan_info.work_list, vxlan_sg);
149 /* XXX: adjust max_work_cnt if needed */
150 }
151
152 static void pim_vxlan_del_work(struct pim_vxlan_sg *vxlan_sg)
153 {
154 if (!vxlan_sg->work_node)
155 return;
156
157 if (PIM_DEBUG_VXLAN)
158 zlog_debug("vxlan SG %s work list del",
159 vxlan_sg->sg_str);
160
161 if (vxlan_sg->work_node == vxlan_info.next_work)
162 vxlan_info.next_work = vxlan_sg->work_node->next;
163
164 list_delete_node(vxlan_info.work_list, vxlan_sg->work_node);
165 vxlan_sg->work_node = NULL;
166 }
167
168 void pim_vxlan_update_sg_reg_state(struct pim_instance *pim,
169 struct pim_upstream *up, bool reg_join)
170 {
171 struct pim_vxlan_sg *vxlan_sg;
172
173 vxlan_sg = pim_vxlan_sg_find(pim, &up->sg);
174 if (!vxlan_sg)
175 return;
176
177 /* add the vxlan sg entry to a work list for periodic reg joins.
178 * the entry will stay in the list as long as the register state is
179 * PIM_REG_JOIN
180 */
181 if (reg_join)
182 pim_vxlan_add_work(vxlan_sg);
183 else
184 pim_vxlan_del_work(vxlan_sg);
185 }
186
187 static int pim_vxlan_work_timer_cb(struct thread *t)
188 {
189 pim_vxlan_do_reg_work();
190 pim_vxlan_work_timer_setup(true /* start */);
191 return 0;
192 }
193
194 /* global 1second timer used for periodic processing */
195 static void pim_vxlan_work_timer_setup(bool start)
196 {
197 THREAD_OFF(vxlan_info.work_timer);
198 if (start)
199 thread_add_timer(router->master, pim_vxlan_work_timer_cb, NULL,
200 PIM_VXLAN_WORK_TIME, &vxlan_info.work_timer);
201 }
202
203 /**************************** vxlan origination mroutes ***********************
204 * For every (local-vtep-ip, bum-mcast-grp) registered by evpn an origination
205 * mroute is setup by pimd. The purpose of this mroute is to forward vxlan
206 * encapsulated BUM (broadcast, unknown-unicast and unknown-multicast packets
207 * over the underlay.)
208 *
209 * Sample mroute (single VTEP):
210 * (27.0.0.7, 239.1.1.100) Iif: lo Oifs: uplink-1
211 *
212 * Sample mroute (anycast VTEP):
213 * (36.0.0.9, 239.1.1.100) Iif: peerlink-3.4094\
214 * Oifs: peerlink-3.4094 uplink-1
215 ***************************************************************************/
216 static void pim_vxlan_orig_mr_up_del(struct pim_vxlan_sg *vxlan_sg)
217 {
218 struct pim_upstream *up = vxlan_sg->up;
219
220 if (!up)
221 return;
222
223 if (PIM_DEBUG_VXLAN)
224 zlog_debug("vxlan SG %s orig mroute-up del",
225 vxlan_sg->sg_str);
226
227 vxlan_sg->up = NULL;
228
229 if (up->flags & PIM_UPSTREAM_FLAG_MASK_SRC_VXLAN_ORIG) {
230 /* clear out all the vxlan properties */
231 up->flags &= ~(PIM_UPSTREAM_FLAG_MASK_SRC_VXLAN_ORIG |
232 PIM_UPSTREAM_FLAG_MASK_STATIC_IIF |
233 PIM_UPSTREAM_FLAG_MASK_DISABLE_KAT_EXPIRY |
234 PIM_UPSTREAM_FLAG_MASK_FORCE_PIMREG |
235 PIM_UPSTREAM_FLAG_MASK_NO_PIMREG_DATA |
236 PIM_UPSTREAM_FLAG_MASK_ALLOW_IIF_IN_OIL);
237
238 /* We bring things to a grinding halt by force expirying
239 * the kat. Doing this will also remove the reference we
240 * created as a "vxlan" source and delete the upstream entry
241 * if there are no other references.
242 */
243 if (PIM_UPSTREAM_FLAG_TEST_SRC_STREAM(up->flags)) {
244 THREAD_OFF(up->t_ka_timer);
245 up = pim_upstream_keep_alive_timer_proc(up);
246 } else {
247 /* this is really unexpected as we force vxlan
248 * origination mroutes active sources but just in
249 * case
250 */
251 up = pim_upstream_del(vxlan_sg->pim, up, __func__);
252 }
253 /* if there are other references register the source
254 * for nht
255 */
256 if (up) {
257 enum pim_rpf_result r;
258
259 r = pim_rpf_update(vxlan_sg->pim, up, NULL, __func__);
260 if (r == PIM_RPF_FAILURE) {
261 if (PIM_DEBUG_VXLAN)
262 zlog_debug(
263 "vxlan SG %s rpf_update failure",
264 vxlan_sg->sg_str);
265 }
266 }
267 }
268 }
269
270 static void pim_vxlan_orig_mr_up_iif_update(struct pim_vxlan_sg *vxlan_sg)
271 {
272 /* update MFC with the new IIF */
273 pim_upstream_fill_static_iif(vxlan_sg->up, vxlan_sg->iif);
274 pim_upstream_mroute_iif_update(vxlan_sg->up->channel_oil, __func__);
275
276 if (PIM_DEBUG_VXLAN)
277 zlog_debug("vxlan SG %s orig mroute-up updated with iif %s",
278 vxlan_sg->sg_str,
279 vxlan_sg->iif?vxlan_sg->iif->name:"-");
280
281 }
282
283 /* For every VxLAN BUM multicast group we setup a SG-up that has the following
284 * "forced properties" -
285 * 1. Directly connected on a DR interface i.e. we must act as an FHR
286 * 2. We prime the pump i.e. no multicast data is needed to register this
287 * source with the FHR. To do that we send periodic null registers if
288 * the SG entry is in a register-join state. We also prevent expiry of
289 * KAT.
290 * 3. As this SG is setup without data there is no need to register encapsulate
291 * data traffic. This encapsulation is explicitly skipped for the following
292 * reasons -
293 * a) Many levels of encapsulation are needed creating MTU disc challenges.
294 * Overlay BUM is encapsulated in a vxlan/UDP/IP header and then
295 * encapsulated again in a pim-register header.
296 * b) On a vxlan-aa setup both switches rx a copy of each BUM packet. if
297 * they both reg encapsulated traffic the RP will accept the duplicates
298 * as there are no RPF checks for this encapsulated data.
299 * a), b) can be workarounded if needed, but there is really no need because
300 * of (2) i.e. the pump is primed without data.
301 */
302 static void pim_vxlan_orig_mr_up_add(struct pim_vxlan_sg *vxlan_sg)
303 {
304 struct pim_upstream *up;
305 struct pim_interface *term_ifp;
306 int flags = 0;
307 struct prefix nht_p;
308 struct pim_instance *pim = vxlan_sg->pim;
309
310 if (vxlan_sg->up) {
311 /* nothing to do */
312 return;
313 }
314
315 if (PIM_DEBUG_VXLAN)
316 zlog_debug("vxlan SG %s orig mroute-up add with iif %s",
317 vxlan_sg->sg_str,
318 vxlan_sg->iif?vxlan_sg->iif->name:"-");
319
320 PIM_UPSTREAM_FLAG_SET_SRC_VXLAN_ORIG(flags);
321 /* pin the IIF to lo or peerlink-subinterface and disable NHT */
322 PIM_UPSTREAM_FLAG_SET_STATIC_IIF(flags);
323 /* Fake traffic by setting SRC_STREAM and starting KAT */
324 /* We intentionally skip updating ref count for SRC_STREAM/FHR.
325 * Setting SRC_VXLAN should have already created a reference
326 * preventing the entry from being deleted
327 */
328 PIM_UPSTREAM_FLAG_SET_FHR(flags);
329 PIM_UPSTREAM_FLAG_SET_SRC_STREAM(flags);
330 /* Force pimreg even if non-DR. This is needed on a MLAG setup for
331 * VxLAN AA
332 */
333 PIM_UPSTREAM_FLAG_SET_FORCE_PIMREG(flags);
334 /* prevent KAT expiry. we want the MDT setup even if there is no BUM
335 * traffic
336 */
337 PIM_UPSTREAM_FLAG_SET_DISABLE_KAT_EXPIRY(flags);
338 /* SPT for vxlan BUM groups is primed and maintained via NULL
339 * registers so there is no need to reg-encapsulate
340 * vxlan-encapsulated overlay data traffic
341 */
342 PIM_UPSTREAM_FLAG_SET_NO_PIMREG_DATA(flags);
343 /* On a MLAG setup we force a copy to the MLAG peer while also
344 * accepting traffic from the peer. To do this we set peerlink-rif as
345 * the IIF and also add it to the OIL
346 */
347 PIM_UPSTREAM_FLAG_SET_ALLOW_IIF_IN_OIL(flags);
348
349 /* XXX: todo: defer pim_upstream add if pim is not enabled on the iif */
350 up = pim_upstream_find(vxlan_sg->pim, &vxlan_sg->sg);
351 if (up) {
352 /* if the iif is set to something other than the vxlan_sg->iif
353 * we must dereg the old nexthop and force to new "static"
354 * iif
355 */
356 if (!PIM_UPSTREAM_FLAG_TEST_STATIC_IIF(up->flags)) {
357 nht_p.family = AF_INET;
358 nht_p.prefixlen = IPV4_MAX_BITLEN;
359 nht_p.u.prefix4 = up->upstream_addr;
360 pim_delete_tracked_nexthop(vxlan_sg->pim, &nht_p, up,
361 NULL);
362 }
363 /* We are acting FHR; clear out use_rpt setting if any */
364 pim_upstream_update_use_rpt(up, false /*update_mroute*/);
365 pim_upstream_ref(up, flags, __func__);
366 vxlan_sg->up = up;
367 term_ifp = pim_vxlan_get_term_ifp(pim);
368 /* mute termination device on origination mroutes */
369 if (term_ifp)
370 pim_channel_update_oif_mute(up->channel_oil,
371 term_ifp);
372 pim_vxlan_orig_mr_up_iif_update(vxlan_sg);
373 /* mute pimreg on origination mroutes */
374 if (pim->regiface)
375 pim_channel_update_oif_mute(up->channel_oil,
376 pim->regiface->info);
377 } else {
378 up = pim_upstream_add(vxlan_sg->pim, &vxlan_sg->sg,
379 vxlan_sg->iif, flags, __func__, NULL);
380 vxlan_sg->up = up;
381 }
382
383 if (!up) {
384 if (PIM_DEBUG_VXLAN)
385 zlog_debug("vxlan SG %s orig mroute-up add failed",
386 vxlan_sg->sg_str);
387 return;
388 }
389
390 pim_upstream_keep_alive_timer_start(up, vxlan_sg->pim->keep_alive_time);
391
392 /* register the source with the RP */
393 switch (up->reg_state) {
394
395 case PIM_REG_NOINFO:
396 pim_register_join(up);
397 pim_null_register_send(up);
398 break;
399
400 case PIM_REG_JOIN:
401 /* if the pim upstream entry is already in reg-join state
402 * send null_register right away and add to the register
403 * worklist
404 */
405 pim_null_register_send(up);
406 pim_vxlan_update_sg_reg_state(pim, up, true);
407 break;
408
409 case PIM_REG_JOIN_PENDING:
410 case PIM_REG_PRUNE:
411 break;
412 }
413
414 /* update the inherited OIL */
415 pim_upstream_inherited_olist(vxlan_sg->pim, up);
416 if (!up->channel_oil->installed)
417 pim_upstream_mroute_add(up->channel_oil, __func__);
418 }
419
420 static void pim_vxlan_orig_mr_oif_add(struct pim_vxlan_sg *vxlan_sg)
421 {
422 if (!vxlan_sg->up || !vxlan_sg->orig_oif)
423 return;
424
425 if (PIM_DEBUG_VXLAN)
426 zlog_debug("vxlan SG %s oif %s add",
427 vxlan_sg->sg_str, vxlan_sg->orig_oif->name);
428
429 vxlan_sg->flags |= PIM_VXLAN_SGF_OIF_INSTALLED;
430 pim_channel_add_oif(vxlan_sg->up->channel_oil,
431 vxlan_sg->orig_oif, PIM_OIF_FLAG_PROTO_VXLAN,
432 __func__);
433 }
434
435 static void pim_vxlan_orig_mr_oif_del(struct pim_vxlan_sg *vxlan_sg)
436 {
437 struct interface *orig_oif;
438
439 orig_oif = vxlan_sg->orig_oif;
440 vxlan_sg->orig_oif = NULL;
441
442 if (!(vxlan_sg->flags & PIM_VXLAN_SGF_OIF_INSTALLED))
443 return;
444
445 if (PIM_DEBUG_VXLAN)
446 zlog_debug("vxlan SG %s oif %s del",
447 vxlan_sg->sg_str, orig_oif->name);
448
449 vxlan_sg->flags &= ~PIM_VXLAN_SGF_OIF_INSTALLED;
450 pim_channel_del_oif(vxlan_sg->up->channel_oil,
451 orig_oif, PIM_OIF_FLAG_PROTO_VXLAN, __func__);
452 }
453
454 static inline struct interface *pim_vxlan_orig_mr_oif_get(
455 struct pim_instance *pim)
456 {
457 return (vxlan_mlag.flags & PIM_VXLAN_MLAGF_ENABLED) ?
458 pim->vxlan.peerlink_rif : NULL;
459 }
460
461 /* Single VTEPs: IIF for the vxlan-origination-mroutes is lo or vrf-dev (if
462 * the mroute is in a non-default vrf).
463 * Anycast VTEPs: IIF is the MLAG ISL/peerlink.
464 */
465 static inline struct interface *pim_vxlan_orig_mr_iif_get(
466 struct pim_instance *pim)
467 {
468 return ((vxlan_mlag.flags & PIM_VXLAN_MLAGF_ENABLED) &&
469 pim->vxlan.peerlink_rif) ?
470 pim->vxlan.peerlink_rif : pim->vxlan.default_iif;
471 }
472
473 static bool pim_vxlan_orig_mr_add_is_ok(struct pim_vxlan_sg *vxlan_sg)
474 {
475 struct pim_interface *pim_ifp;
476
477 vxlan_sg->iif = pim_vxlan_orig_mr_iif_get(vxlan_sg->pim);
478 if (!vxlan_sg->iif)
479 return false;
480
481 pim_ifp = (struct pim_interface *)vxlan_sg->iif->info;
482 if (!pim_ifp || (pim_ifp->mroute_vif_index < 0))
483 return false;
484
485 return true;
486 }
487
488 static void pim_vxlan_orig_mr_install(struct pim_vxlan_sg *vxlan_sg)
489 {
490 pim_vxlan_orig_mr_up_add(vxlan_sg);
491
492 vxlan_sg->orig_oif = pim_vxlan_orig_mr_oif_get(vxlan_sg->pim);
493 pim_vxlan_orig_mr_oif_add(vxlan_sg);
494 }
495
496 static void pim_vxlan_orig_mr_add(struct pim_vxlan_sg *vxlan_sg)
497 {
498 if (!pim_vxlan_orig_mr_add_is_ok(vxlan_sg))
499 return;
500
501 if (PIM_DEBUG_VXLAN)
502 zlog_debug("vxlan SG %s orig-mr add", vxlan_sg->sg_str);
503
504 pim_vxlan_orig_mr_install(vxlan_sg);
505 }
506
507 static void pim_vxlan_orig_mr_del(struct pim_vxlan_sg *vxlan_sg)
508 {
509 if (PIM_DEBUG_VXLAN)
510 zlog_debug("vxlan SG %s orig-mr del", vxlan_sg->sg_str);
511
512 pim_vxlan_orig_mr_oif_del(vxlan_sg);
513 pim_vxlan_orig_mr_up_del(vxlan_sg);
514 }
515
516 static void pim_vxlan_orig_mr_iif_update(struct hash_bucket *bucket, void *arg)
517 {
518 struct interface *ifp;
519 struct pim_vxlan_sg *vxlan_sg = (struct pim_vxlan_sg *)bucket->data;
520 struct interface *old_iif = vxlan_sg->iif;
521
522 if (!pim_vxlan_is_orig_mroute(vxlan_sg))
523 return;
524
525 ifp = pim_vxlan_orig_mr_iif_get(vxlan_sg->pim);
526 if (PIM_DEBUG_VXLAN)
527 zlog_debug("vxlan SG %s iif changed from %s to %s",
528 vxlan_sg->sg_str,
529 old_iif ? old_iif->name : "-",
530 ifp ? ifp->name : "-");
531
532 if (pim_vxlan_orig_mr_add_is_ok(vxlan_sg)) {
533 if (vxlan_sg->up) {
534 /* upstream exists but iif changed */
535 pim_vxlan_orig_mr_up_iif_update(vxlan_sg);
536 } else {
537 /* install mroute */
538 pim_vxlan_orig_mr_install(vxlan_sg);
539 }
540 } else {
541 pim_vxlan_orig_mr_del(vxlan_sg);
542 }
543 }
544
545 /**************************** vxlan termination mroutes ***********************
546 * For every bum-mcast-grp registered by evpn a *G termination
547 * mroute is setup by pimd. The purpose of this mroute is to pull down vxlan
548 * packets with the bum-mcast-grp dip from the underlay and terminate the
549 * tunnel. This is done by including the vxlan termination device (ipmr-lo) in
550 * its OIL. The vxlan de-capsulated packets are subject to subsequent overlay
551 * bridging.
552 *
553 * Sample mroute:
554 * (0.0.0.0, 239.1.1.100) Iif: uplink-1 Oifs: ipmr-lo, uplink-1
555 *****************************************************************************/
556 struct pim_interface *pim_vxlan_get_term_ifp(struct pim_instance *pim)
557 {
558 return pim->vxlan.term_if ?
559 (struct pim_interface *)pim->vxlan.term_if->info : NULL;
560 }
561
562 static void pim_vxlan_term_mr_oif_add(struct pim_vxlan_sg *vxlan_sg)
563 {
564 if (vxlan_sg->flags & PIM_VXLAN_SGF_OIF_INSTALLED)
565 return;
566
567 if (PIM_DEBUG_VXLAN)
568 zlog_debug("vxlan SG %s term-oif %s add",
569 vxlan_sg->sg_str, vxlan_sg->term_oif->name);
570
571 if (pim_ifchannel_local_membership_add(vxlan_sg->term_oif,
572 &vxlan_sg->sg, true /*is_vxlan */)) {
573 vxlan_sg->flags |= PIM_VXLAN_SGF_OIF_INSTALLED;
574 /* update the inherited OIL */
575 /* XXX - I don't see the inherited OIL updated when a local
576 * member is added. And that probably needs to be fixed. Till
577 * that happens we do a force update on the inherited OIL
578 * here.
579 */
580 pim_upstream_inherited_olist(vxlan_sg->pim, vxlan_sg->up);
581 } else {
582 zlog_warn("vxlan SG %s term-oif %s add failed",
583 vxlan_sg->sg_str, vxlan_sg->term_oif->name);
584 }
585 }
586
587 static void pim_vxlan_term_mr_oif_del(struct pim_vxlan_sg *vxlan_sg)
588 {
589 if (!(vxlan_sg->flags & PIM_VXLAN_SGF_OIF_INSTALLED))
590 return;
591
592 if (PIM_DEBUG_VXLAN)
593 zlog_debug("vxlan SG %s oif %s del",
594 vxlan_sg->sg_str, vxlan_sg->term_oif->name);
595
596 vxlan_sg->flags &= ~PIM_VXLAN_SGF_OIF_INSTALLED;
597 pim_ifchannel_local_membership_del(vxlan_sg->term_oif, &vxlan_sg->sg);
598 /* update the inherited OIL */
599 /* XXX - I don't see the inherited OIL updated when a local member
600 * is deleted. And that probably needs to be fixed. Till that happens
601 * we do a force update on the inherited OIL here.
602 */
603 pim_upstream_inherited_olist(vxlan_sg->pim, vxlan_sg->up);
604 }
605
606 static void pim_vxlan_update_sg_entry_mlag(struct pim_instance *pim,
607 struct pim_upstream *up, bool inherit)
608 {
609 bool is_df = true;
610
611 if (inherit && up->parent &&
612 PIM_UPSTREAM_FLAG_TEST_MLAG_VXLAN(up->parent->flags) &&
613 PIM_UPSTREAM_FLAG_TEST_MLAG_NON_DF(up->parent->flags))
614 is_df = false;
615
616 pim_mlag_up_df_role_update(pim, up, is_df, "inherit_xg_df");
617 }
618
619 /* We run MLAG DF election only on mroutes that have the termination
620 * device ipmr-lo in the immediate OIL. This is only (*, G) entries at the
621 * moment. For (S, G) entries that (with ipmr-lo in the inherited OIL) we
622 * inherit the DF role from the (*, G) entry.
623 */
624 void pim_vxlan_inherit_mlag_flags(struct pim_instance *pim,
625 struct pim_upstream *up, bool inherit)
626 {
627 struct listnode *listnode;
628 struct pim_upstream *child;
629
630 for (ALL_LIST_ELEMENTS_RO(up->sources, listnode,
631 child)) {
632 pim_vxlan_update_sg_entry_mlag(pim,
633 child, true /* inherit */);
634 }
635 }
636
637 static void pim_vxlan_term_mr_up_add(struct pim_vxlan_sg *vxlan_sg)
638 {
639 struct pim_upstream *up;
640 int flags = 0;
641
642 if (vxlan_sg->up) {
643 /* nothing to do */
644 return;
645 }
646
647 if (PIM_DEBUG_VXLAN)
648 zlog_debug("vxlan SG %s term mroute-up add",
649 vxlan_sg->sg_str);
650
651 PIM_UPSTREAM_FLAG_SET_SRC_VXLAN_TERM(flags);
652 /* enable MLAG designated-forwarder election on termination mroutes */
653 PIM_UPSTREAM_FLAG_SET_MLAG_VXLAN(flags);
654
655 up = pim_upstream_add(vxlan_sg->pim, &vxlan_sg->sg, NULL /* iif */,
656 flags, __func__, NULL);
657 vxlan_sg->up = up;
658
659 if (!up) {
660 zlog_warn("vxlan SG %s term mroute-up add failed",
661 vxlan_sg->sg_str);
662 return;
663 }
664
665 /* update existing SG entries with the parent's MLAG flag */
666 pim_vxlan_inherit_mlag_flags(vxlan_sg->pim, up, true /*enable*/);
667 }
668
669 static void pim_vxlan_term_mr_up_del(struct pim_vxlan_sg *vxlan_sg)
670 {
671 struct pim_upstream *up = vxlan_sg->up;
672
673 if (!up)
674 return;
675
676 if (PIM_DEBUG_VXLAN)
677 zlog_debug("vxlan SG %s term mroute-up del",
678 vxlan_sg->sg_str);
679 vxlan_sg->up = NULL;
680 if (up->flags & PIM_UPSTREAM_FLAG_MASK_SRC_VXLAN_TERM) {
681 /* update SG entries that are inheriting from this XG entry */
682 pim_vxlan_inherit_mlag_flags(vxlan_sg->pim, up,
683 false /*enable*/);
684 /* clear out all the vxlan related flags */
685 up->flags &= ~(PIM_UPSTREAM_FLAG_MASK_SRC_VXLAN_TERM |
686 PIM_UPSTREAM_FLAG_MASK_MLAG_VXLAN);
687 pim_mlag_up_local_del(vxlan_sg->pim, up);
688 pim_upstream_del(vxlan_sg->pim, up, __func__);
689 }
690 }
691
692 static void pim_vxlan_term_mr_add(struct pim_vxlan_sg *vxlan_sg)
693 {
694 if (PIM_DEBUG_VXLAN)
695 zlog_debug("vxlan SG %s term mroute add", vxlan_sg->sg_str);
696
697 vxlan_sg->term_oif = vxlan_sg->pim->vxlan.term_if;
698 if (!vxlan_sg->term_oif)
699 /* defer termination mroute till we have a termination device */
700 return;
701
702 pim_vxlan_term_mr_up_add(vxlan_sg);
703 /* set up local membership for the term-oif */
704 pim_vxlan_term_mr_oif_add(vxlan_sg);
705 }
706
707 static void pim_vxlan_term_mr_del(struct pim_vxlan_sg *vxlan_sg)
708 {
709 if (PIM_DEBUG_VXLAN)
710 zlog_debug("vxlan SG %s term mroute del", vxlan_sg->sg_str);
711
712 /* remove local membership associated with the term oif */
713 pim_vxlan_term_mr_oif_del(vxlan_sg);
714 /* remove references to the upstream entry */
715 pim_vxlan_term_mr_up_del(vxlan_sg);
716 }
717
718 /************************** vxlan SG cache management ************************/
719 static unsigned int pim_vxlan_sg_hash_key_make(const void *p)
720 {
721 const struct pim_vxlan_sg *vxlan_sg = p;
722
723 return pim_sgaddr_hash(vxlan_sg->sg, 0);
724 }
725
726 static bool pim_vxlan_sg_hash_eq(const void *p1, const void *p2)
727 {
728 const struct pim_vxlan_sg *sg1 = p1;
729 const struct pim_vxlan_sg *sg2 = p2;
730
731 return !pim_sgaddr_cmp(sg1->sg, sg2->sg);
732 }
733
734 static struct pim_vxlan_sg *pim_vxlan_sg_new(struct pim_instance *pim,
735 pim_sgaddr *sg)
736 {
737 struct pim_vxlan_sg *vxlan_sg;
738
739 vxlan_sg = XCALLOC(MTYPE_PIM_VXLAN_SG, sizeof(*vxlan_sg));
740
741 vxlan_sg->pim = pim;
742 vxlan_sg->sg = *sg;
743 snprintfrr(vxlan_sg->sg_str, sizeof(vxlan_sg->sg_str), "%pSG", sg);
744
745 if (PIM_DEBUG_VXLAN)
746 zlog_debug("vxlan SG %s alloc", vxlan_sg->sg_str);
747
748 vxlan_sg = hash_get(pim->vxlan.sg_hash, vxlan_sg, hash_alloc_intern);
749
750 /* we register with the MLAG daemon in the first VxLAN SG and never
751 * de-register during that life of the pimd
752 */
753 if (pim->vxlan.sg_hash->count == 1) {
754 vxlan_mlag.flags |= PIM_VXLAN_MLAGF_DO_REG;
755 pim_mlag_register();
756 }
757
758 return vxlan_sg;
759 }
760
761 struct pim_vxlan_sg *pim_vxlan_sg_find(struct pim_instance *pim, pim_sgaddr *sg)
762 {
763 struct pim_vxlan_sg lookup;
764
765 lookup.sg = *sg;
766 return hash_lookup(pim->vxlan.sg_hash, &lookup);
767 }
768
769 struct pim_vxlan_sg *pim_vxlan_sg_add(struct pim_instance *pim, pim_sgaddr *sg)
770 {
771 struct pim_vxlan_sg *vxlan_sg;
772
773 vxlan_sg = pim_vxlan_sg_find(pim, sg);
774 if (vxlan_sg)
775 return vxlan_sg;
776
777 vxlan_sg = pim_vxlan_sg_new(pim, sg);
778
779 if (pim_vxlan_is_orig_mroute(vxlan_sg))
780 pim_vxlan_orig_mr_add(vxlan_sg);
781 else
782 pim_vxlan_term_mr_add(vxlan_sg);
783
784 return vxlan_sg;
785 }
786
787 static void pim_vxlan_sg_del_item(struct pim_vxlan_sg *vxlan_sg)
788 {
789 vxlan_sg->flags |= PIM_VXLAN_SGF_DEL_IN_PROG;
790
791 pim_vxlan_del_work(vxlan_sg);
792
793 if (pim_vxlan_is_orig_mroute(vxlan_sg))
794 pim_vxlan_orig_mr_del(vxlan_sg);
795 else
796 pim_vxlan_term_mr_del(vxlan_sg);
797
798 if (PIM_DEBUG_VXLAN)
799 zlog_debug("vxlan SG %s free", vxlan_sg->sg_str);
800
801 XFREE(MTYPE_PIM_VXLAN_SG, vxlan_sg);
802 }
803
804 void pim_vxlan_sg_del(struct pim_instance *pim, pim_sgaddr *sg)
805 {
806 struct pim_vxlan_sg *vxlan_sg;
807
808 vxlan_sg = pim_vxlan_sg_find(pim, sg);
809 if (!vxlan_sg)
810 return;
811
812 hash_release(pim->vxlan.sg_hash, vxlan_sg);
813 pim_vxlan_sg_del_item(vxlan_sg);
814 }
815
816 /******************************* MLAG handling *******************************/
817 bool pim_vxlan_do_mlag_reg(void)
818 {
819 return (vxlan_mlag.flags & PIM_VXLAN_MLAGF_DO_REG);
820 }
821
822 /* The peerlink sub-interface is added as an OIF to the origination-mroute.
823 * This is done to send a copy of the multicast-vxlan encapsulated traffic
824 * to the MLAG peer which may mroute it over the underlay if there are any
825 * interested receivers.
826 */
827 static void pim_vxlan_sg_peerlink_oif_update(struct hash_bucket *bucket,
828 void *arg)
829 {
830 struct interface *new_oif = (struct interface *)arg;
831 struct pim_vxlan_sg *vxlan_sg = (struct pim_vxlan_sg *)bucket->data;
832
833 if (!pim_vxlan_is_orig_mroute(vxlan_sg))
834 return;
835
836 if (vxlan_sg->orig_oif == new_oif)
837 return;
838
839 pim_vxlan_orig_mr_oif_del(vxlan_sg);
840
841 vxlan_sg->orig_oif = new_oif;
842 pim_vxlan_orig_mr_oif_add(vxlan_sg);
843 }
844
845 /* In the case of anycast VTEPs the VTEP-PIP must be used as the
846 * register source.
847 */
848 bool pim_vxlan_get_register_src(struct pim_instance *pim,
849 struct pim_upstream *up, struct in_addr *src_p)
850 {
851 if (!(vxlan_mlag.flags & PIM_VXLAN_MLAGF_ENABLED))
852 return true;
853
854 /* if address is not available suppress the pim-register */
855 if (vxlan_mlag.reg_addr.s_addr == INADDR_ANY)
856 return false;
857
858 *src_p = vxlan_mlag.reg_addr;
859 return true;
860 }
861
862 void pim_vxlan_mlag_update(bool enable, bool peer_state, uint32_t role,
863 struct interface *peerlink_rif,
864 struct in_addr *reg_addr)
865 {
866 struct pim_instance *pim;
867 char addr_buf[INET_ADDRSTRLEN];
868 struct pim_interface *pim_ifp = NULL;
869
870 if (PIM_DEBUG_VXLAN) {
871 inet_ntop(AF_INET, reg_addr,
872 addr_buf, INET_ADDRSTRLEN);
873 zlog_debug("vxlan MLAG update %s state %s role %d rif %s addr %s",
874 enable ? "enable" : "disable",
875 peer_state ? "up" : "down",
876 role,
877 peerlink_rif ? peerlink_rif->name : "-",
878 addr_buf);
879 }
880
881 /* XXX: for now vxlan termination is only possible in the default VRF
882 * when that changes this will need to change to iterate all VRFs
883 */
884 pim = pim_get_pim_instance(VRF_DEFAULT);
885
886 if (enable)
887 vxlan_mlag.flags |= PIM_VXLAN_MLAGF_ENABLED;
888 else
889 vxlan_mlag.flags &= ~PIM_VXLAN_MLAGF_ENABLED;
890
891 if (vxlan_mlag.peerlink_rif != peerlink_rif)
892 vxlan_mlag.peerlink_rif = peerlink_rif;
893
894 vxlan_mlag.reg_addr = *reg_addr;
895 vxlan_mlag.peer_state = peer_state;
896 vxlan_mlag.role = role;
897
898 /* process changes */
899 if (vxlan_mlag.peerlink_rif)
900 pim_ifp = (struct pim_interface *)vxlan_mlag.peerlink_rif->info;
901 if ((vxlan_mlag.flags & PIM_VXLAN_MLAGF_ENABLED) &&
902 pim_ifp && (pim_ifp->mroute_vif_index > 0))
903 pim_vxlan_set_peerlink_rif(pim, peerlink_rif);
904 else
905 pim_vxlan_set_peerlink_rif(pim, NULL);
906 }
907
908 /****************************** misc callbacks *******************************/
909 static void pim_vxlan_set_default_iif(struct pim_instance *pim,
910 struct interface *ifp)
911 {
912 struct interface *old_iif;
913
914 if (pim->vxlan.default_iif == ifp)
915 return;
916
917 old_iif = pim->vxlan.default_iif;
918 if (PIM_DEBUG_VXLAN)
919 zlog_debug("%s: vxlan default iif changed from %s to %s",
920 __func__, old_iif ? old_iif->name : "-",
921 ifp ? ifp->name : "-");
922
923 old_iif = pim_vxlan_orig_mr_iif_get(pim);
924 pim->vxlan.default_iif = ifp;
925 ifp = pim_vxlan_orig_mr_iif_get(pim);
926 if (old_iif == ifp)
927 return;
928
929 if (PIM_DEBUG_VXLAN)
930 zlog_debug("%s: vxlan orig iif changed from %s to %s", __func__,
931 old_iif ? old_iif->name : "-",
932 ifp ? ifp->name : "-");
933
934 /* add/del upstream entries for the existing vxlan SG when the
935 * interface becomes available
936 */
937 if (pim->vxlan.sg_hash)
938 hash_iterate(pim->vxlan.sg_hash,
939 pim_vxlan_orig_mr_iif_update, NULL);
940 }
941
942 static void pim_vxlan_up_cost_update(struct pim_instance *pim,
943 struct pim_upstream *up,
944 struct interface *old_peerlink_rif)
945 {
946 if (!PIM_UPSTREAM_FLAG_TEST_MLAG_VXLAN(up->flags))
947 return;
948
949 if (up->rpf.source_nexthop.interface &&
950 ((up->rpf.source_nexthop.interface ==
951 pim->vxlan.peerlink_rif) ||
952 (up->rpf.source_nexthop.interface ==
953 old_peerlink_rif))) {
954 if (PIM_DEBUG_VXLAN)
955 zlog_debug("RPF cost adjust for %s on peerlink-rif (old: %s, new: %s) change",
956 up->sg_str,
957 old_peerlink_rif ?
958 old_peerlink_rif->name : "-",
959 pim->vxlan.peerlink_rif ?
960 pim->vxlan.peerlink_rif->name : "-");
961 pim_mlag_up_local_add(pim, up);
962 }
963 }
964
965 static void pim_vxlan_term_mr_cost_update(struct hash_bucket *bucket, void *arg)
966 {
967 struct interface *old_peerlink_rif = (struct interface *)arg;
968 struct pim_vxlan_sg *vxlan_sg = (struct pim_vxlan_sg *)bucket->data;
969 struct pim_upstream *up;
970 struct listnode *listnode;
971 struct pim_upstream *child;
972
973 if (pim_vxlan_is_orig_mroute(vxlan_sg))
974 return;
975
976 /* Lookup all XG and SG entries with RPF-interface peerlink_rif */
977 up = vxlan_sg->up;
978 if (!up)
979 return;
980
981 pim_vxlan_up_cost_update(vxlan_sg->pim, up,
982 old_peerlink_rif);
983
984 for (ALL_LIST_ELEMENTS_RO(up->sources, listnode,
985 child))
986 pim_vxlan_up_cost_update(vxlan_sg->pim, child,
987 old_peerlink_rif);
988 }
989
990 static void pim_vxlan_sg_peerlink_rif_update(struct hash_bucket *bucket,
991 void *arg)
992 {
993 pim_vxlan_orig_mr_iif_update(bucket, NULL);
994 pim_vxlan_term_mr_cost_update(bucket, arg);
995 }
996
997 static void pim_vxlan_set_peerlink_rif(struct pim_instance *pim,
998 struct interface *ifp)
999 {
1000 struct interface *old_iif;
1001 struct interface *new_iif;
1002 struct interface *old_oif;
1003 struct interface *new_oif;
1004
1005 if (pim->vxlan.peerlink_rif == ifp)
1006 return;
1007
1008 old_iif = pim->vxlan.peerlink_rif;
1009 if (PIM_DEBUG_VXLAN)
1010 zlog_debug("%s: vxlan peerlink_rif changed from %s to %s",
1011 __func__, old_iif ? old_iif->name : "-",
1012 ifp ? ifp->name : "-");
1013
1014 old_iif = pim_vxlan_orig_mr_iif_get(pim);
1015 old_oif = pim_vxlan_orig_mr_oif_get(pim);
1016 pim->vxlan.peerlink_rif = ifp;
1017
1018 new_iif = pim_vxlan_orig_mr_iif_get(pim);
1019 if (old_iif != new_iif) {
1020 if (PIM_DEBUG_VXLAN)
1021 zlog_debug("%s: vxlan orig iif changed from %s to %s",
1022 __func__, old_iif ? old_iif->name : "-",
1023 new_iif ? new_iif->name : "-");
1024
1025 /* add/del upstream entries for the existing vxlan SG when the
1026 * interface becomes available
1027 */
1028 if (pim->vxlan.sg_hash)
1029 hash_iterate(pim->vxlan.sg_hash,
1030 pim_vxlan_sg_peerlink_rif_update,
1031 old_iif);
1032 }
1033
1034 new_oif = pim_vxlan_orig_mr_oif_get(pim);
1035 if (old_oif != new_oif) {
1036 if (PIM_DEBUG_VXLAN)
1037 zlog_debug("%s: vxlan orig oif changed from %s to %s",
1038 __func__, old_oif ? old_oif->name : "-",
1039 new_oif ? new_oif->name : "-");
1040 if (pim->vxlan.sg_hash)
1041 hash_iterate(pim->vxlan.sg_hash,
1042 pim_vxlan_sg_peerlink_oif_update,
1043 new_oif);
1044 }
1045 }
1046
1047 static void pim_vxlan_term_mr_oif_update(struct hash_bucket *bucket, void *arg)
1048 {
1049 struct interface *ifp = (struct interface *)arg;
1050 struct pim_vxlan_sg *vxlan_sg = (struct pim_vxlan_sg *)bucket->data;
1051
1052 if (pim_vxlan_is_orig_mroute(vxlan_sg))
1053 return;
1054
1055 if (vxlan_sg->term_oif == ifp)
1056 return;
1057
1058 if (PIM_DEBUG_VXLAN)
1059 zlog_debug("vxlan SG %s term oif changed from %s to %s",
1060 vxlan_sg->sg_str,
1061 vxlan_sg->term_oif ? vxlan_sg->term_oif->name : "-",
1062 ifp ? ifp->name : "-");
1063
1064 pim_vxlan_term_mr_del(vxlan_sg);
1065 vxlan_sg->term_oif = ifp;
1066 pim_vxlan_term_mr_add(vxlan_sg);
1067 }
1068
1069 static void pim_vxlan_term_oif_update(struct pim_instance *pim,
1070 struct interface *ifp)
1071 {
1072 if (pim->vxlan.term_if == ifp)
1073 return;
1074
1075 if (PIM_DEBUG_VXLAN)
1076 zlog_debug("vxlan term oif changed from %s to %s",
1077 pim->vxlan.term_if ? pim->vxlan.term_if->name : "-",
1078 ifp ? ifp->name : "-");
1079
1080 pim->vxlan.term_if = ifp;
1081 if (pim->vxlan.sg_hash)
1082 hash_iterate(pim->vxlan.sg_hash,
1083 pim_vxlan_term_mr_oif_update, ifp);
1084 }
1085
1086 void pim_vxlan_add_vif(struct interface *ifp)
1087 {
1088 struct pim_interface *pim_ifp = ifp->info;
1089 struct pim_instance *pim = pim_ifp->pim;
1090
1091 if (pim->vrf->vrf_id != VRF_DEFAULT)
1092 return;
1093
1094 if (if_is_loopback(ifp))
1095 pim_vxlan_set_default_iif(pim, ifp);
1096
1097 if (vxlan_mlag.flags & PIM_VXLAN_MLAGF_ENABLED &&
1098 (ifp == vxlan_mlag.peerlink_rif))
1099 pim_vxlan_set_peerlink_rif(pim, ifp);
1100
1101 if (pim->vxlan.term_if_cfg == ifp)
1102 pim_vxlan_term_oif_update(pim, ifp);
1103 }
1104
1105 void pim_vxlan_del_vif(struct interface *ifp)
1106 {
1107 struct pim_interface *pim_ifp = ifp->info;
1108 struct pim_instance *pim = pim_ifp->pim;
1109
1110 if (pim->vrf->vrf_id != VRF_DEFAULT)
1111 return;
1112
1113 if (pim->vxlan.default_iif == ifp)
1114 pim_vxlan_set_default_iif(pim, NULL);
1115
1116 if (pim->vxlan.peerlink_rif == ifp)
1117 pim_vxlan_set_peerlink_rif(pim, NULL);
1118
1119 if (pim->vxlan.term_if == ifp)
1120 pim_vxlan_term_oif_update(pim, NULL);
1121 }
1122
1123 /* enable pim implicitly on the termination device add */
1124 void pim_vxlan_add_term_dev(struct pim_instance *pim,
1125 struct interface *ifp)
1126 {
1127 struct pim_interface *pim_ifp;
1128
1129 if (pim->vxlan.term_if_cfg == ifp)
1130 return;
1131
1132 if (PIM_DEBUG_VXLAN)
1133 zlog_debug("vxlan term oif cfg changed from %s to %s",
1134 pim->vxlan.term_if_cfg ?
1135 pim->vxlan.term_if_cfg->name : "-",
1136 ifp->name);
1137
1138 pim->vxlan.term_if_cfg = ifp;
1139
1140 /* enable pim on the term ifp */
1141 pim_ifp = (struct pim_interface *)ifp->info;
1142 if (pim_ifp) {
1143 PIM_IF_DO_PIM(pim_ifp->options);
1144 /* ifp is already oper up; activate it as a term dev */
1145 if (pim_ifp->mroute_vif_index >= 0)
1146 pim_vxlan_term_oif_update(pim, ifp);
1147 } else {
1148 /* ensure that pimreg exists before using the newly created
1149 * vxlan termination device
1150 */
1151 pim_if_create_pimreg(pim);
1152 (void)pim_if_new(ifp, false /*igmp*/, true /*pim*/,
1153 false /*pimreg*/, true /*vxlan_term*/);
1154 }
1155 }
1156
1157 /* disable pim implicitly, if needed, on the termination device deletion */
1158 void pim_vxlan_del_term_dev(struct pim_instance *pim)
1159 {
1160 struct interface *ifp = pim->vxlan.term_if_cfg;
1161 struct pim_interface *pim_ifp;
1162
1163 if (PIM_DEBUG_VXLAN)
1164 zlog_debug("vxlan term oif cfg changed from %s to -",
1165 ifp->name);
1166
1167 pim->vxlan.term_if_cfg = NULL;
1168
1169 pim_ifp = (struct pim_interface *)ifp->info;
1170 if (pim_ifp) {
1171 PIM_IF_DONT_PIM(pim_ifp->options);
1172 if (!PIM_IF_TEST_IGMP(pim_ifp->options))
1173 pim_if_delete(ifp);
1174 }
1175 }
1176
1177 void pim_vxlan_init(struct pim_instance *pim)
1178 {
1179 char hash_name[64];
1180
1181 snprintf(hash_name, sizeof(hash_name),
1182 "PIM %s vxlan SG hash", pim->vrf->name);
1183 pim->vxlan.sg_hash = hash_create(pim_vxlan_sg_hash_key_make,
1184 pim_vxlan_sg_hash_eq, hash_name);
1185 }
1186
1187 void pim_vxlan_exit(struct pim_instance *pim)
1188 {
1189 if (pim->vxlan.sg_hash) {
1190 hash_clean(pim->vxlan.sg_hash,
1191 (void (*)(void *))pim_vxlan_sg_del_item);
1192 hash_free(pim->vxlan.sg_hash);
1193 pim->vxlan.sg_hash = NULL;
1194 }
1195 }
1196
1197 void pim_vxlan_terminate(void)
1198 {
1199 pim_vxlan_work_timer_setup(false);
1200 }