blob: 78c3ff5d0d6ac5e91237c5caa4cf3ed561a891de [file] [log] [blame]
Everton Marques871dbcf2009-08-11 15:43:05 -03001/*
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 $QuaggaId: $Format:%an, %ai, %h$ $
21*/
22
23#include <zebra.h>
24
25#include "log.h"
26#include "memory.h"
Feng Lu126215c2015-05-22 11:39:58 +020027#include "vrf.h"
Everton Marques871dbcf2009-08-11 15:43:05 -030028
29#include "pimd.h"
30#include "pim_cmd.h"
31#include "pim_iface.h"
32#include "pim_zebra.h"
33#include "pim_str.h"
34#include "pim_oil.h"
35#include "pim_pim.h"
36#include "pim_upstream.h"
37#include "pim_rand.h"
38#include "pim_rpf.h"
Everton Marques96f91ae2009-10-07 18:41:45 -030039#include "pim_ssmpingd.h"
Everton Marques871dbcf2009-08-11 15:43:05 -030040
41const char *const PIM_ALL_SYSTEMS = MCAST_ALL_SYSTEMS;
42const char *const PIM_ALL_ROUTERS = MCAST_ALL_ROUTERS;
43const char *const PIM_ALL_PIM_ROUTERS = MCAST_ALL_PIM_ROUTERS;
44const char *const PIM_ALL_IGMP_ROUTERS = MCAST_ALL_IGMP_ROUTERS;
45
46struct thread_master *master = 0;
47uint32_t qpim_debugs = 0;
48int qpim_mroute_socket_fd = -1;
49int64_t qpim_mroute_socket_creation = 0; /* timestamp of creation */
50struct thread *qpim_mroute_socket_reader = 0;
51int qpim_mroute_oif_highest_vif_index = -1;
52struct list *qpim_channel_oil_list = 0;
53int qpim_t_periodic = PIM_DEFAULT_T_PERIODIC; /* Period between Join/Prune Messages */
54struct list *qpim_upstream_list = 0;
Everton Marques3456a802014-07-22 14:52:57 -030055struct zclient *qpim_zclient_update = 0;
Everton Marques871dbcf2009-08-11 15:43:05 -030056struct zclient *qpim_zclient_lookup = 0;
57struct pim_assert_metric qpim_infinite_assert_metric;
58long qpim_rpf_cache_refresh_delay_msec = 10000;
59struct thread *qpim_rpf_cache_refresher = 0;
Everton Marques613938d2009-08-13 15:39:31 -030060int64_t qpim_rpf_cache_refresh_requests = 0;
61int64_t qpim_rpf_cache_refresh_events = 0;
Everton Marquesbcc4abe2009-08-17 18:18:59 -030062int64_t qpim_rpf_cache_refresh_last = 0;
Everton Marques871dbcf2009-08-11 15:43:05 -030063struct in_addr qpim_inaddr_any;
Everton Marques96f91ae2009-10-07 18:41:45 -030064struct list *qpim_ssmpingd_list = 0;
Everton Marquese8c11bb2009-10-08 15:06:32 -030065struct in_addr qpim_ssmpingd_group_addr;
Everton Marquesf24200d2014-02-14 16:40:34 -020066int64_t qpim_scan_oil_events = 0;
67int64_t qpim_scan_oil_last = 0;
68int64_t qpim_mroute_add_events = 0;
69int64_t qpim_mroute_add_last = 0;
70int64_t qpim_mroute_del_events = 0;
71int64_t qpim_mroute_del_last = 0;
Everton Marques871dbcf2009-08-11 15:43:05 -030072
73static void pim_free()
74{
Everton Marques96f91ae2009-10-07 18:41:45 -030075 pim_ssmpingd_destroy();
76
Everton Marques871dbcf2009-08-11 15:43:05 -030077 if (qpim_channel_oil_list)
78 list_free(qpim_channel_oil_list);
79
80 if (qpim_upstream_list)
81 list_free(qpim_upstream_list);
82}
83
84void pim_init()
85{
86 pim_rand_init();
87
88 if (!inet_aton(PIM_ALL_PIM_ROUTERS, &qpim_all_pim_routers_addr)) {
89 zlog_err("%s %s: could not solve %s to group address: errno=%d: %s",
90 __FILE__, __PRETTY_FUNCTION__,
Everton Marquese96f0af2009-08-11 15:48:02 -030091 PIM_ALL_PIM_ROUTERS, errno, safe_strerror(errno));
Everton Marques871dbcf2009-08-11 15:43:05 -030092 zassert(0);
93 return;
94 }
95
96 qpim_channel_oil_list = list_new();
97 if (!qpim_channel_oil_list) {
98 zlog_err("%s %s: failure: channel_oil_list=list_new()",
99 __FILE__, __PRETTY_FUNCTION__);
100 return;
101 }
102 qpim_channel_oil_list->del = (void (*)(void *)) pim_channel_oil_free;
103
104 qpim_upstream_list = list_new();
105 if (!qpim_upstream_list) {
106 zlog_err("%s %s: failure: upstream_list=list_new()",
107 __FILE__, __PRETTY_FUNCTION__);
108 pim_free();
109 return;
110 }
111 qpim_upstream_list->del = (void (*)(void *)) pim_upstream_free;
112
113 qpim_mroute_socket_fd = -1; /* mark mroute as disabled */
114 qpim_mroute_oif_highest_vif_index = -1;
115
116 zassert(!qpim_debugs);
117 zassert(!PIM_MROUTE_IS_ENABLED);
118
119 qpim_inaddr_any.s_addr = PIM_NET_INADDR_ANY;
120
121 /*
122 RFC 4601: 4.6.3. Assert Metrics
123
124 assert_metric
125 infinite_assert_metric() {
126 return {1,infinity,infinity,0}
127 }
128 */
129 qpim_infinite_assert_metric.rpt_bit_flag = 1;
130 qpim_infinite_assert_metric.metric_preference = PIM_ASSERT_METRIC_PREFERENCE_MAX;
131 qpim_infinite_assert_metric.route_metric = PIM_ASSERT_ROUTE_METRIC_MAX;
132 qpim_infinite_assert_metric.ip_address = qpim_inaddr_any;
133
Everton Marques871dbcf2009-08-11 15:43:05 -0300134 pim_cmd_init();
Everton Marques96f91ae2009-10-07 18:41:45 -0300135 pim_ssmpingd_init();
Everton Marques871dbcf2009-08-11 15:43:05 -0300136}
137
138void pim_terminate()
139{
Feng Lu126215c2015-05-22 11:39:58 +0200140 vrf_terminate();
Everton Marques871dbcf2009-08-11 15:43:05 -0300141 pim_free();
142}