]> git.proxmox.com Git - mirror_frr.git/blame - pimd/pimd.c
Merge pull request #10447 from ton31337/fix/json_with_whitespaces
[mirror_frr.git] / pimd / pimd.c
CommitLineData
12e41d03 1/*
896014f4
DL
2 * PIM for Quagga
3 * Copyright (C) 2008 Everton da Silva Marques
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful, but
11 * WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License along
16 * with this program; see the file COPYING; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
18 */
12e41d03
DL
19
20#include <zebra.h>
21
22#include "log.h"
23#include "memory.h"
9df99407 24#include "if.h"
dfe43e25
DW
25#include "prefix.h"
26#include "vty.h"
27#include "plist.h"
1bc98276
CS
28#include "hash.h"
29#include "jhash.h"
ba4eb1bc 30#include "vrf.h"
3613d898 31#include "lib_errors.h"
c97b34cf 32#include "bfd.h"
12e41d03
DL
33
34#include "pimd.h"
5d613d13 35#if PIM_IPV == 4
12e41d03 36#include "pim_cmd.h"
5d613d13
SG
37#else
38#include "pim6_cmd.h"
39#endif
12e41d03
DL
40#include "pim_str.h"
41#include "pim_oil.h"
42#include "pim_pim.h"
12e41d03 43#include "pim_ssmpingd.h"
6250610a 44#include "pim_static.h"
36d6bd7d 45#include "pim_rp.h"
15a5dafe 46#include "pim_ssm.h"
3c582f62 47#include "pim_vxlan.h"
0b6817c5 48#include "pim_zlookup.h"
c2cf4b02 49#include "pim_zebra.h"
892c2c44 50#include "pim_mlag.h"
12e41d03 51
4fdd2942
DS
52#if MAXVIFS > 256
53CPP_NOTICE("Work needs to be done to make this work properly via the pim mroute socket\n");
54#endif /* MAXVIFS > 256 */
55
29fd9fca 56#if PIM_IPV == 4
d62a17ae 57const char *const PIM_ALL_SYSTEMS = MCAST_ALL_SYSTEMS;
58const char *const PIM_ALL_ROUTERS = MCAST_ALL_ROUTERS;
59const char *const PIM_ALL_PIM_ROUTERS = MCAST_ALL_PIM_ROUTERS;
12e41d03 60const char *const PIM_ALL_IGMP_ROUTERS = MCAST_ALL_IGMP_ROUTERS;
29fd9fca
DL
61#else
62const char *const PIM_ALL_SYSTEMS = "ff02::1";
63const char *const PIM_ALL_ROUTERS = "ff02::2";
64const char *const PIM_ALL_PIM_ROUTERS = "ff02::d";
65const char *const PIM_ALL_IGMP_ROUTERS = "ff02::16";
66#endif
12e41d03 67
36417fcc
DS
68DEFINE_MTYPE_STATIC(PIMD, ROUTER, "PIM Router information");
69
70struct pim_router *router = NULL;
29fd9fca 71pim_addr qpim_all_pim_routers_addr;
36417fcc 72
d62a17ae 73void pim_prefix_list_update(struct prefix_list *plist)
15a5dafe 74{
d9c9a9ee
DS
75 struct pim_instance *pim;
76 struct vrf *vrf;
77
a2addae8 78 RB_FOREACH (vrf, vrf_name_head, &vrfs_by_name) {
d9c9a9ee
DS
79 pim = vrf->info;
80 if (!pim)
81 continue;
82
83 pim_rp_prefix_list_update(pim, plist);
6f439a70 84 pim_ssm_prefix_list_update(pim, plist);
d9c9a9ee
DS
85 pim_upstream_spt_prefix_list_update(pim, plist);
86 }
15a5dafe 87}
88
4d762f26 89static void pim_free(void)
12e41d03 90{
d62a17ae 91 pim_route_map_terminate();
0b6817c5 92
d62a17ae 93 zclient_lookup_free();
12e41d03
DL
94}
95
36417fcc
DS
96void pim_router_init(void)
97{
98 router = XCALLOC(MTYPE_ROUTER, sizeof(*router));
99
046b1aa7 100 router->debugs = 0;
36417fcc 101 router->master = frr_init();
5b45753e 102 router->t_periodic = PIM_DEFAULT_T_PERIODIC;
d17612dd
DS
103
104 /*
105 RFC 4601: 4.6.3. Assert Metrics
106
107 assert_metric
108 infinite_assert_metric() {
109 return {1,infinity,infinity,0}
110 }
111 */
112 router->infinite_assert_metric.rpt_bit_flag = 1;
113 router->infinite_assert_metric.metric_preference =
114 PIM_ASSERT_METRIC_PREFERENCE_MAX;
115 router->infinite_assert_metric.route_metric =
116 PIM_ASSERT_ROUTE_METRIC_MAX;
efd66f7b 117 router->infinite_assert_metric.ip_address = PIMADDR_ANY;
da03883e 118 router->rpf_cache_refresh_delay_msec = 50;
2925dff5 119 router->register_suppress_time = PIM_REGISTER_SUPPRESSION_TIME_DEFAULT;
75373cca 120 router->packet_process = PIM_DEFAULT_PACKET_PROCESS;
a6c5db59 121 router->register_probe_time = PIM_REGISTER_PROBE_TIME_DEFAULT;
4dfe9ad2 122 router->vrf_id = VRF_DEFAULT;
17823cdd
DS
123 router->pim_mlag_intf_cnt = 0;
124 router->connected_to_mlag = false;
36417fcc
DS
125}
126
127void pim_router_terminate(void)
128{
129 XFREE(MTYPE_ROUTER, router);
130}
131
132void pim_init(void)
12e41d03 133{
29fd9fca
DL
134 if (!inet_pton(PIM_AF, PIM_ALL_PIM_ROUTERS,
135 &qpim_all_pim_routers_addr)) {
af4c2728 136 flog_err(
450971aa 137 EC_LIB_SOCKET,
d62a17ae 138 "%s %s: could not solve %s to group address: errno=%d: %s",
15569c58
DA
139 __FILE__, __func__, PIM_ALL_PIM_ROUTERS, errno,
140 safe_strerror(errno));
df5dfb77 141 assert(0);
d62a17ae 142 return;
143 }
144
d62a17ae 145 pim_cmd_init();
12e41d03
DL
146}
147
4d762f26 148void pim_terminate(void)
12e41d03 149{
d62a17ae 150 struct zclient *zclient;
da13682c 151
c97b34cf
IR
152 bfd_protocol_integration_set_shutdown(true);
153
d62a17ae 154 /* reverse prefix_list_init */
155 prefix_list_add_hook(NULL);
156 prefix_list_delete_hook(NULL);
157 prefix_list_reset();
1bc98276 158
3c582f62 159 pim_vxlan_terminate();
d62a17ae 160 pim_vrf_terminate();
da13682c 161
d62a17ae 162 zclient = pim_zebra_zclient_get();
163 if (zclient) {
164 zclient_stop(zclient);
165 zclient_free(zclient);
166 }
8879bd22 167
aed536d4 168 pim_free();
10fe382b 169 pim_mlag_terminate();
36417fcc 170 pim_router_terminate();
aed536d4 171
8879bd22 172 frr_fini();
12e41d03 173}