]> git.proxmox.com Git - mirror_frr.git/blob - pimd/pim_vxlan.c
Merge pull request #9644 from opensourcerouting/ospf-opaque-attrs
[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 (jhash_2words(vxlan_sg->sg.src.s_addr,
724 vxlan_sg->sg.grp.s_addr, 0));
725 }
726
727 static bool pim_vxlan_sg_hash_eq(const void *p1, const void *p2)
728 {
729 const struct pim_vxlan_sg *sg1 = p1;
730 const struct pim_vxlan_sg *sg2 = p2;
731
732 return ((sg1->sg.src.s_addr == sg2->sg.src.s_addr)
733 && (sg1->sg.grp.s_addr == sg2->sg.grp.s_addr));
734 }
735
736 static struct pim_vxlan_sg *pim_vxlan_sg_new(struct pim_instance *pim,
737 pim_sgaddr *sg)
738 {
739 struct pim_vxlan_sg *vxlan_sg;
740
741 vxlan_sg = XCALLOC(MTYPE_PIM_VXLAN_SG, sizeof(*vxlan_sg));
742
743 vxlan_sg->pim = pim;
744 vxlan_sg->sg = *sg;
745 pim_str_sg_set(sg, vxlan_sg->sg_str);
746
747 if (PIM_DEBUG_VXLAN)
748 zlog_debug("vxlan SG %s alloc", vxlan_sg->sg_str);
749
750 vxlan_sg = hash_get(pim->vxlan.sg_hash, vxlan_sg, hash_alloc_intern);
751
752 /* we register with the MLAG daemon in the first VxLAN SG and never
753 * de-register during that life of the pimd
754 */
755 if (pim->vxlan.sg_hash->count == 1) {
756 vxlan_mlag.flags |= PIM_VXLAN_MLAGF_DO_REG;
757 pim_mlag_register();
758 }
759
760 return vxlan_sg;
761 }
762
763 struct pim_vxlan_sg *pim_vxlan_sg_find(struct pim_instance *pim, pim_sgaddr *sg)
764 {
765 struct pim_vxlan_sg lookup;
766
767 lookup.sg = *sg;
768 return hash_lookup(pim->vxlan.sg_hash, &lookup);
769 }
770
771 struct pim_vxlan_sg *pim_vxlan_sg_add(struct pim_instance *pim, pim_sgaddr *sg)
772 {
773 struct pim_vxlan_sg *vxlan_sg;
774
775 vxlan_sg = pim_vxlan_sg_find(pim, sg);
776 if (vxlan_sg)
777 return vxlan_sg;
778
779 vxlan_sg = pim_vxlan_sg_new(pim, sg);
780
781 if (pim_vxlan_is_orig_mroute(vxlan_sg))
782 pim_vxlan_orig_mr_add(vxlan_sg);
783 else
784 pim_vxlan_term_mr_add(vxlan_sg);
785
786 return vxlan_sg;
787 }
788
789 static void pim_vxlan_sg_del_item(struct pim_vxlan_sg *vxlan_sg)
790 {
791 vxlan_sg->flags |= PIM_VXLAN_SGF_DEL_IN_PROG;
792
793 pim_vxlan_del_work(vxlan_sg);
794
795 if (pim_vxlan_is_orig_mroute(vxlan_sg))
796 pim_vxlan_orig_mr_del(vxlan_sg);
797 else
798 pim_vxlan_term_mr_del(vxlan_sg);
799
800 if (PIM_DEBUG_VXLAN)
801 zlog_debug("vxlan SG %s free", vxlan_sg->sg_str);
802
803 XFREE(MTYPE_PIM_VXLAN_SG, vxlan_sg);
804 }
805
806 void pim_vxlan_sg_del(struct pim_instance *pim, pim_sgaddr *sg)
807 {
808 struct pim_vxlan_sg *vxlan_sg;
809
810 vxlan_sg = pim_vxlan_sg_find(pim, sg);
811 if (!vxlan_sg)
812 return;
813
814 hash_release(pim->vxlan.sg_hash, vxlan_sg);
815 pim_vxlan_sg_del_item(vxlan_sg);
816 }
817
818 /******************************* MLAG handling *******************************/
819 bool pim_vxlan_do_mlag_reg(void)
820 {
821 return (vxlan_mlag.flags & PIM_VXLAN_MLAGF_DO_REG);
822 }
823
824 /* The peerlink sub-interface is added as an OIF to the origination-mroute.
825 * This is done to send a copy of the multicast-vxlan encapsulated traffic
826 * to the MLAG peer which may mroute it over the underlay if there are any
827 * interested receivers.
828 */
829 static void pim_vxlan_sg_peerlink_oif_update(struct hash_bucket *bucket,
830 void *arg)
831 {
832 struct interface *new_oif = (struct interface *)arg;
833 struct pim_vxlan_sg *vxlan_sg = (struct pim_vxlan_sg *)bucket->data;
834
835 if (!pim_vxlan_is_orig_mroute(vxlan_sg))
836 return;
837
838 if (vxlan_sg->orig_oif == new_oif)
839 return;
840
841 pim_vxlan_orig_mr_oif_del(vxlan_sg);
842
843 vxlan_sg->orig_oif = new_oif;
844 pim_vxlan_orig_mr_oif_add(vxlan_sg);
845 }
846
847 /* In the case of anycast VTEPs the VTEP-PIP must be used as the
848 * register source.
849 */
850 bool pim_vxlan_get_register_src(struct pim_instance *pim,
851 struct pim_upstream *up, struct in_addr *src_p)
852 {
853 if (!(vxlan_mlag.flags & PIM_VXLAN_MLAGF_ENABLED))
854 return true;
855
856 /* if address is not available suppress the pim-register */
857 if (vxlan_mlag.reg_addr.s_addr == INADDR_ANY)
858 return false;
859
860 *src_p = vxlan_mlag.reg_addr;
861 return true;
862 }
863
864 void pim_vxlan_mlag_update(bool enable, bool peer_state, uint32_t role,
865 struct interface *peerlink_rif,
866 struct in_addr *reg_addr)
867 {
868 struct pim_instance *pim;
869 char addr_buf[INET_ADDRSTRLEN];
870 struct pim_interface *pim_ifp = NULL;
871
872 if (PIM_DEBUG_VXLAN) {
873 inet_ntop(AF_INET, reg_addr,
874 addr_buf, INET_ADDRSTRLEN);
875 zlog_debug("vxlan MLAG update %s state %s role %d rif %s addr %s",
876 enable ? "enable" : "disable",
877 peer_state ? "up" : "down",
878 role,
879 peerlink_rif ? peerlink_rif->name : "-",
880 addr_buf);
881 }
882
883 /* XXX: for now vxlan termination is only possible in the default VRF
884 * when that changes this will need to change to iterate all VRFs
885 */
886 pim = pim_get_pim_instance(VRF_DEFAULT);
887
888 if (enable)
889 vxlan_mlag.flags |= PIM_VXLAN_MLAGF_ENABLED;
890 else
891 vxlan_mlag.flags &= ~PIM_VXLAN_MLAGF_ENABLED;
892
893 if (vxlan_mlag.peerlink_rif != peerlink_rif)
894 vxlan_mlag.peerlink_rif = peerlink_rif;
895
896 vxlan_mlag.reg_addr = *reg_addr;
897 vxlan_mlag.peer_state = peer_state;
898 vxlan_mlag.role = role;
899
900 /* process changes */
901 if (vxlan_mlag.peerlink_rif)
902 pim_ifp = (struct pim_interface *)vxlan_mlag.peerlink_rif->info;
903 if ((vxlan_mlag.flags & PIM_VXLAN_MLAGF_ENABLED) &&
904 pim_ifp && (pim_ifp->mroute_vif_index > 0))
905 pim_vxlan_set_peerlink_rif(pim, peerlink_rif);
906 else
907 pim_vxlan_set_peerlink_rif(pim, NULL);
908 }
909
910 /****************************** misc callbacks *******************************/
911 static void pim_vxlan_set_default_iif(struct pim_instance *pim,
912 struct interface *ifp)
913 {
914 struct interface *old_iif;
915
916 if (pim->vxlan.default_iif == ifp)
917 return;
918
919 old_iif = pim->vxlan.default_iif;
920 if (PIM_DEBUG_VXLAN)
921 zlog_debug("%s: vxlan default iif changed from %s to %s",
922 __func__, old_iif ? old_iif->name : "-",
923 ifp ? ifp->name : "-");
924
925 old_iif = pim_vxlan_orig_mr_iif_get(pim);
926 pim->vxlan.default_iif = ifp;
927 ifp = pim_vxlan_orig_mr_iif_get(pim);
928 if (old_iif == ifp)
929 return;
930
931 if (PIM_DEBUG_VXLAN)
932 zlog_debug("%s: vxlan orig iif changed from %s to %s", __func__,
933 old_iif ? old_iif->name : "-",
934 ifp ? ifp->name : "-");
935
936 /* add/del upstream entries for the existing vxlan SG when the
937 * interface becomes available
938 */
939 if (pim->vxlan.sg_hash)
940 hash_iterate(pim->vxlan.sg_hash,
941 pim_vxlan_orig_mr_iif_update, NULL);
942 }
943
944 static void pim_vxlan_up_cost_update(struct pim_instance *pim,
945 struct pim_upstream *up,
946 struct interface *old_peerlink_rif)
947 {
948 if (!PIM_UPSTREAM_FLAG_TEST_MLAG_VXLAN(up->flags))
949 return;
950
951 if (up->rpf.source_nexthop.interface &&
952 ((up->rpf.source_nexthop.interface ==
953 pim->vxlan.peerlink_rif) ||
954 (up->rpf.source_nexthop.interface ==
955 old_peerlink_rif))) {
956 if (PIM_DEBUG_VXLAN)
957 zlog_debug("RPF cost adjust for %s on peerlink-rif (old: %s, new: %s) change",
958 up->sg_str,
959 old_peerlink_rif ?
960 old_peerlink_rif->name : "-",
961 pim->vxlan.peerlink_rif ?
962 pim->vxlan.peerlink_rif->name : "-");
963 pim_mlag_up_local_add(pim, up);
964 }
965 }
966
967 static void pim_vxlan_term_mr_cost_update(struct hash_bucket *bucket, void *arg)
968 {
969 struct interface *old_peerlink_rif = (struct interface *)arg;
970 struct pim_vxlan_sg *vxlan_sg = (struct pim_vxlan_sg *)bucket->data;
971 struct pim_upstream *up;
972 struct listnode *listnode;
973 struct pim_upstream *child;
974
975 if (pim_vxlan_is_orig_mroute(vxlan_sg))
976 return;
977
978 /* Lookup all XG and SG entries with RPF-interface peerlink_rif */
979 up = vxlan_sg->up;
980 if (!up)
981 return;
982
983 pim_vxlan_up_cost_update(vxlan_sg->pim, up,
984 old_peerlink_rif);
985
986 for (ALL_LIST_ELEMENTS_RO(up->sources, listnode,
987 child))
988 pim_vxlan_up_cost_update(vxlan_sg->pim, child,
989 old_peerlink_rif);
990 }
991
992 static void pim_vxlan_sg_peerlink_rif_update(struct hash_bucket *bucket,
993 void *arg)
994 {
995 pim_vxlan_orig_mr_iif_update(bucket, NULL);
996 pim_vxlan_term_mr_cost_update(bucket, arg);
997 }
998
999 static void pim_vxlan_set_peerlink_rif(struct pim_instance *pim,
1000 struct interface *ifp)
1001 {
1002 struct interface *old_iif;
1003 struct interface *new_iif;
1004 struct interface *old_oif;
1005 struct interface *new_oif;
1006
1007 if (pim->vxlan.peerlink_rif == ifp)
1008 return;
1009
1010 old_iif = pim->vxlan.peerlink_rif;
1011 if (PIM_DEBUG_VXLAN)
1012 zlog_debug("%s: vxlan peerlink_rif changed from %s to %s",
1013 __func__, old_iif ? old_iif->name : "-",
1014 ifp ? ifp->name : "-");
1015
1016 old_iif = pim_vxlan_orig_mr_iif_get(pim);
1017 old_oif = pim_vxlan_orig_mr_oif_get(pim);
1018 pim->vxlan.peerlink_rif = ifp;
1019
1020 new_iif = pim_vxlan_orig_mr_iif_get(pim);
1021 if (old_iif != new_iif) {
1022 if (PIM_DEBUG_VXLAN)
1023 zlog_debug("%s: vxlan orig iif changed from %s to %s",
1024 __func__, old_iif ? old_iif->name : "-",
1025 new_iif ? new_iif->name : "-");
1026
1027 /* add/del upstream entries for the existing vxlan SG when the
1028 * interface becomes available
1029 */
1030 if (pim->vxlan.sg_hash)
1031 hash_iterate(pim->vxlan.sg_hash,
1032 pim_vxlan_sg_peerlink_rif_update,
1033 old_iif);
1034 }
1035
1036 new_oif = pim_vxlan_orig_mr_oif_get(pim);
1037 if (old_oif != new_oif) {
1038 if (PIM_DEBUG_VXLAN)
1039 zlog_debug("%s: vxlan orig oif changed from %s to %s",
1040 __func__, old_oif ? old_oif->name : "-",
1041 new_oif ? new_oif->name : "-");
1042 if (pim->vxlan.sg_hash)
1043 hash_iterate(pim->vxlan.sg_hash,
1044 pim_vxlan_sg_peerlink_oif_update,
1045 new_oif);
1046 }
1047 }
1048
1049 static void pim_vxlan_term_mr_oif_update(struct hash_bucket *bucket, void *arg)
1050 {
1051 struct interface *ifp = (struct interface *)arg;
1052 struct pim_vxlan_sg *vxlan_sg = (struct pim_vxlan_sg *)bucket->data;
1053
1054 if (pim_vxlan_is_orig_mroute(vxlan_sg))
1055 return;
1056
1057 if (vxlan_sg->term_oif == ifp)
1058 return;
1059
1060 if (PIM_DEBUG_VXLAN)
1061 zlog_debug("vxlan SG %s term oif changed from %s to %s",
1062 vxlan_sg->sg_str,
1063 vxlan_sg->term_oif ? vxlan_sg->term_oif->name : "-",
1064 ifp ? ifp->name : "-");
1065
1066 pim_vxlan_term_mr_del(vxlan_sg);
1067 vxlan_sg->term_oif = ifp;
1068 pim_vxlan_term_mr_add(vxlan_sg);
1069 }
1070
1071 static void pim_vxlan_term_oif_update(struct pim_instance *pim,
1072 struct interface *ifp)
1073 {
1074 if (pim->vxlan.term_if == ifp)
1075 return;
1076
1077 if (PIM_DEBUG_VXLAN)
1078 zlog_debug("vxlan term oif changed from %s to %s",
1079 pim->vxlan.term_if ? pim->vxlan.term_if->name : "-",
1080 ifp ? ifp->name : "-");
1081
1082 pim->vxlan.term_if = ifp;
1083 if (pim->vxlan.sg_hash)
1084 hash_iterate(pim->vxlan.sg_hash,
1085 pim_vxlan_term_mr_oif_update, ifp);
1086 }
1087
1088 void pim_vxlan_add_vif(struct interface *ifp)
1089 {
1090 struct pim_interface *pim_ifp = ifp->info;
1091 struct pim_instance *pim = pim_ifp->pim;
1092
1093 if (pim->vrf->vrf_id != VRF_DEFAULT)
1094 return;
1095
1096 if (if_is_loopback(ifp))
1097 pim_vxlan_set_default_iif(pim, ifp);
1098
1099 if (vxlan_mlag.flags & PIM_VXLAN_MLAGF_ENABLED &&
1100 (ifp == vxlan_mlag.peerlink_rif))
1101 pim_vxlan_set_peerlink_rif(pim, ifp);
1102
1103 if (pim->vxlan.term_if_cfg == ifp)
1104 pim_vxlan_term_oif_update(pim, ifp);
1105 }
1106
1107 void pim_vxlan_del_vif(struct interface *ifp)
1108 {
1109 struct pim_interface *pim_ifp = ifp->info;
1110 struct pim_instance *pim = pim_ifp->pim;
1111
1112 if (pim->vrf->vrf_id != VRF_DEFAULT)
1113 return;
1114
1115 if (pim->vxlan.default_iif == ifp)
1116 pim_vxlan_set_default_iif(pim, NULL);
1117
1118 if (pim->vxlan.peerlink_rif == ifp)
1119 pim_vxlan_set_peerlink_rif(pim, NULL);
1120
1121 if (pim->vxlan.term_if == ifp)
1122 pim_vxlan_term_oif_update(pim, NULL);
1123 }
1124
1125 /* enable pim implicitly on the termination device add */
1126 void pim_vxlan_add_term_dev(struct pim_instance *pim,
1127 struct interface *ifp)
1128 {
1129 struct pim_interface *pim_ifp;
1130
1131 if (pim->vxlan.term_if_cfg == ifp)
1132 return;
1133
1134 if (PIM_DEBUG_VXLAN)
1135 zlog_debug("vxlan term oif cfg changed from %s to %s",
1136 pim->vxlan.term_if_cfg ?
1137 pim->vxlan.term_if_cfg->name : "-",
1138 ifp->name);
1139
1140 pim->vxlan.term_if_cfg = ifp;
1141
1142 /* enable pim on the term ifp */
1143 pim_ifp = (struct pim_interface *)ifp->info;
1144 if (pim_ifp) {
1145 PIM_IF_DO_PIM(pim_ifp->options);
1146 /* ifp is already oper up; activate it as a term dev */
1147 if (pim_ifp->mroute_vif_index >= 0)
1148 pim_vxlan_term_oif_update(pim, ifp);
1149 } else {
1150 /* ensure that pimreg exists before using the newly created
1151 * vxlan termination device
1152 */
1153 pim_if_create_pimreg(pim);
1154 (void)pim_if_new(ifp, false /*igmp*/, true /*pim*/,
1155 false /*pimreg*/, true /*vxlan_term*/);
1156 }
1157 }
1158
1159 /* disable pim implicitly, if needed, on the termination device deletion */
1160 void pim_vxlan_del_term_dev(struct pim_instance *pim)
1161 {
1162 struct interface *ifp = pim->vxlan.term_if_cfg;
1163 struct pim_interface *pim_ifp;
1164
1165 if (PIM_DEBUG_VXLAN)
1166 zlog_debug("vxlan term oif cfg changed from %s to -",
1167 ifp->name);
1168
1169 pim->vxlan.term_if_cfg = NULL;
1170
1171 pim_ifp = (struct pim_interface *)ifp->info;
1172 if (pim_ifp) {
1173 PIM_IF_DONT_PIM(pim_ifp->options);
1174 if (!PIM_IF_TEST_IGMP(pim_ifp->options))
1175 pim_if_delete(ifp);
1176 }
1177 }
1178
1179 void pim_vxlan_init(struct pim_instance *pim)
1180 {
1181 char hash_name[64];
1182
1183 snprintf(hash_name, sizeof(hash_name),
1184 "PIM %s vxlan SG hash", pim->vrf->name);
1185 pim->vxlan.sg_hash = hash_create(pim_vxlan_sg_hash_key_make,
1186 pim_vxlan_sg_hash_eq, hash_name);
1187 }
1188
1189 void pim_vxlan_exit(struct pim_instance *pim)
1190 {
1191 if (pim->vxlan.sg_hash) {
1192 hash_clean(pim->vxlan.sg_hash,
1193 (void (*)(void *))pim_vxlan_sg_del_item);
1194 hash_free(pim->vxlan.sg_hash);
1195 pim->vxlan.sg_hash = NULL;
1196 }
1197 }
1198
1199 void pim_vxlan_terminate(void)
1200 {
1201 pim_vxlan_work_timer_setup(false);
1202 }