]> git.proxmox.com Git - mirror_frr.git/blob - pimd/pimd.c
pimd: Only debug in the unusual case
[mirror_frr.git] / pimd / pimd.c
1 /*
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
16 along with this program; see the file COPYING; if not, write to the
17 Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,
18 MA 02110-1301 USA
19 */
20
21 #include <zebra.h>
22
23 #include "log.h"
24 #include "memory.h"
25 #include "if.h"
26 #include "prefix.h"
27 #include "vty.h"
28 #include "plist.h"
29
30 #include "pimd.h"
31 #include "pim_cmd.h"
32 #include "pim_iface.h"
33 #include "pim_zebra.h"
34 #include "pim_str.h"
35 #include "pim_oil.h"
36 #include "pim_pim.h"
37 #include "pim_upstream.h"
38 #include "pim_rpf.h"
39 #include "pim_ssmpingd.h"
40 #include "pim_static.h"
41 #include "pim_rp.h"
42 #include "pim_zlookup.h"
43
44 const char *const PIM_ALL_SYSTEMS = MCAST_ALL_SYSTEMS;
45 const char *const PIM_ALL_ROUTERS = MCAST_ALL_ROUTERS;
46 const char *const PIM_ALL_PIM_ROUTERS = MCAST_ALL_PIM_ROUTERS;
47 const char *const PIM_ALL_IGMP_ROUTERS = MCAST_ALL_IGMP_ROUTERS;
48
49 struct thread_master *master = NULL;
50 uint32_t qpim_debugs = 0;
51 int qpim_mroute_socket_fd = -1;
52 int64_t qpim_mroute_socket_creation = 0; /* timestamp of creation */
53 int qpim_t_periodic = PIM_DEFAULT_T_PERIODIC; /* Period between Join/Prune Messages */
54 struct pim_assert_metric qpim_infinite_assert_metric;
55 long qpim_rpf_cache_refresh_delay_msec = 50;
56 struct thread *qpim_rpf_cache_refresher = NULL;
57 int64_t qpim_rpf_cache_refresh_requests = 0;
58 int64_t qpim_rpf_cache_refresh_events = 0;
59 int64_t qpim_rpf_cache_refresh_last = 0;
60 struct in_addr qpim_inaddr_any;
61 struct list *qpim_ssmpingd_list = NULL;
62 struct in_addr qpim_ssmpingd_group_addr;
63 int64_t qpim_scan_oil_events = 0;
64 int64_t qpim_scan_oil_last = 0;
65 int64_t qpim_mroute_add_events = 0;
66 int64_t qpim_mroute_add_last = 0;
67 int64_t qpim_mroute_del_events = 0;
68 int64_t qpim_mroute_del_last = 0;
69 struct list *qpim_static_route_list = NULL;
70 unsigned int qpim_keep_alive_time = PIM_KEEPALIVE_PERIOD;
71 signed int qpim_rp_keep_alive_time = 0;
72 int64_t qpim_nexthop_lookups = 0;
73 int qpim_packet_process = PIM_DEFAULT_PACKET_PROCESS;
74
75 int32_t qpim_register_suppress_time = PIM_REGISTER_SUPPRESSION_TIME_DEFAULT;
76 int32_t qpim_register_probe_time = PIM_REGISTER_PROBE_TIME_DEFAULT;
77
78 static void pim_free()
79 {
80 pim_ssmpingd_destroy();
81
82 pim_oil_terminate ();
83
84 pim_upstream_terminate ();
85
86 if (qpim_static_route_list)
87 list_free(qpim_static_route_list);
88
89 pim_if_terminate ();
90 pim_rp_free ();
91
92 pim_route_map_terminate();
93
94 zclient_lookup_free ();
95
96 zprivs_terminate(&pimd_privs);
97 }
98
99 void pim_init()
100 {
101 srandom(time(NULL));
102
103 qpim_rp_keep_alive_time = PIM_RP_KEEPALIVE_PERIOD;
104
105 pim_rp_init ();
106
107 if (!inet_aton(PIM_ALL_PIM_ROUTERS, &qpim_all_pim_routers_addr)) {
108 zlog_err("%s %s: could not solve %s to group address: errno=%d: %s",
109 __FILE__, __PRETTY_FUNCTION__,
110 PIM_ALL_PIM_ROUTERS, errno, safe_strerror(errno));
111 zassert(0);
112 return;
113 }
114
115 pim_oil_init ();
116
117 pim_upstream_init ();
118
119 qpim_static_route_list = list_new();
120 if (!qpim_static_route_list) {
121 zlog_err("%s %s: failure: static_route_list=list_new()",
122 __FILE__, __PRETTY_FUNCTION__);
123 return;
124 }
125 qpim_static_route_list->del = (void (*)(void *)) pim_static_route_free;
126
127 qpim_mroute_socket_fd = -1; /* mark mroute as disabled */
128
129 qpim_inaddr_any.s_addr = PIM_NET_INADDR_ANY;
130
131 /*
132 RFC 4601: 4.6.3. Assert Metrics
133
134 assert_metric
135 infinite_assert_metric() {
136 return {1,infinity,infinity,0}
137 }
138 */
139 qpim_infinite_assert_metric.rpt_bit_flag = 1;
140 qpim_infinite_assert_metric.metric_preference = PIM_ASSERT_METRIC_PREFERENCE_MAX;
141 qpim_infinite_assert_metric.route_metric = PIM_ASSERT_ROUTE_METRIC_MAX;
142 qpim_infinite_assert_metric.ip_address = qpim_inaddr_any;
143
144 pim_if_init();
145 pim_cmd_init();
146 pim_ssmpingd_init();
147 }
148
149 void pim_terminate()
150 {
151 pim_free();
152 }