]> git.proxmox.com Git - mirror_frr.git/blob - pimd/pimd.h
pimd: Add prefix list handling to spt-switchover
[mirror_frr.git] / pimd / pimd.h
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 #ifndef PIMD_H
22 #define PIMD_H
23
24 #include <stdint.h>
25 #include "zebra.h"
26 #include "libfrr.h"
27 #include "prefix.h"
28 #include "vty.h"
29 #include "plist.h"
30
31 #include "pim_str.h"
32 #include "pim_memory.h"
33 #include "pim_assert.h"
34
35 #define PIMD_PROGNAME "pimd"
36 #define PIMD_DEFAULT_CONFIG "pimd.conf"
37 #define PIMD_VTY_PORT 2611
38
39 #define PIM_IP_PROTO_IGMP (2)
40 #define PIM_IP_PROTO_PIM (103)
41 #define PIM_IGMP_MIN_LEN (8)
42
43 /*
44 * PIM MSG Header Format
45 * 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
46 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
47 * |PIM Ver| Type | Reserved | Checksum |
48 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
49 */
50 #define PIM_MSG_HEADER_LEN (4)
51 #define PIM_PIM_MIN_LEN PIM_MSG_HEADER_LEN
52
53 #define PIM_ENCODED_IPV4_UCAST_SIZE (6)
54 #define PIM_ENCODED_IPV4_GROUP_SIZE (8)
55 #define PIM_ENCODED_IPV4_SOURCE_SIZE (8)
56
57 /*
58 * J/P Message Format, Group Header
59 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
60 * | Upstream Neighbor Address (Encoded-Unicast format) |
61 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
62 * | Reserved | Num groups | Holdtime |
63 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
64 * | Multicast Group Address 1 (Encoded-Group format) |
65 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
66 * | Number of Joined Sources | Number of Pruned Sources |
67 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
68 */
69 #define PIM_JP_GROUP_HEADER_SIZE (PIM_ENCODED_IPV4_UCAST_SIZE + \
70 1 + 1 + 2 + \
71 PIM_ENCODED_IPV4_GROUP_SIZE + \
72 2 + 2)
73
74 #define PIM_PROTO_VERSION (2)
75
76 #define MCAST_ALL_SYSTEMS "224.0.0.1"
77 #define MCAST_ALL_ROUTERS "224.0.0.2"
78 #define MCAST_ALL_PIM_ROUTERS "224.0.0.13"
79 #define MCAST_ALL_IGMP_ROUTERS "224.0.0.22"
80
81 #define PIM_FORCE_BOOLEAN(expr) ((expr) != 0)
82
83 #define PIM_NET_INADDR_ANY (htonl(INADDR_ANY))
84 #define PIM_INADDR_IS_ANY(addr) (addr).s_addr == PIM_NET_INADDR_ANY
85 #define PIM_INADDR_ISNOT_ANY(addr) ((addr).s_addr != PIM_NET_INADDR_ANY) /* struct in_addr addr */
86
87 #define max(x,y) ((x) > (y) ? (x) : (y))
88
89 #define PIM_MASK_PIM_EVENTS (1 << 0)
90 #define PIM_MASK_PIM_EVENTS_DETAIL (1 << 1)
91 #define PIM_MASK_PIM_PACKETS (1 << 2)
92 #define PIM_MASK_PIM_PACKETDUMP_SEND (1 << 3)
93 #define PIM_MASK_PIM_PACKETDUMP_RECV (1 << 4)
94 #define PIM_MASK_PIM_TRACE (1 << 5)
95 #define PIM_MASK_PIM_TRACE_DETAIL (1 << 6)
96 #define PIM_MASK_IGMP_EVENTS (1 << 7)
97 #define PIM_MASK_IGMP_PACKETS (1 << 8)
98 #define PIM_MASK_IGMP_TRACE (1 << 9)
99 #define PIM_MASK_IGMP_TRACE_DETAIL (1 << 10)
100 #define PIM_MASK_ZEBRA (1 << 11)
101 #define PIM_MASK_SSMPINGD (1 << 12)
102 #define PIM_MASK_MROUTE (1 << 13)
103 #define PIM_MASK_MROUTE_DETAIL (1 << 14)
104 #define PIM_MASK_PIM_HELLO (1 << 15)
105 #define PIM_MASK_PIM_J_P (1 << 16)
106 #define PIM_MASK_STATIC (1 << 17)
107 #define PIM_MASK_PIM_REG (1 << 18)
108 #define PIM_MASK_MSDP_EVENTS (1 << 19)
109 #define PIM_MASK_MSDP_PACKETS (1 << 20)
110 #define PIM_MASK_MSDP_INTERNAL (1 << 21)
111
112
113 /* PIM error codes */
114 #define PIM_SUCCESS 0
115 #define PIM_MALLOC_FAIL -1
116 #define PIM_GROUP_BAD_ADDRESS -2
117 #define PIM_GROUP_OVERLAP -3
118 #define PIM_GROUP_PFXLIST_OVERLAP -4
119 #define PIM_RP_BAD_ADDRESS -5
120 #define PIM_RP_NO_PATH -6
121 #define PIM_RP_NOT_FOUND -7
122 #define PIM_RP_PFXLIST_IN_USE -8
123 #define PIM_IFACE_NOT_FOUND -9
124 #define PIM_UPDATE_SOURCE_DUP -10
125
126 const char *const PIM_ALL_SYSTEMS;
127 const char *const PIM_ALL_ROUTERS;
128 const char *const PIM_ALL_PIM_ROUTERS;
129 const char *const PIM_ALL_IGMP_ROUTERS;
130
131 extern struct thread_master *master;
132 extern struct zebra_privs_t pimd_privs;
133 uint32_t qpim_debugs;
134 int qpim_mroute_socket_fd;
135 int64_t qpim_mroute_socket_creation; /* timestamp of creation */
136 struct in_addr qpim_all_pim_routers_addr;
137 int qpim_t_periodic; /* Period between Join/Prune Messages */
138 struct pim_assert_metric qpim_infinite_assert_metric;
139 long qpim_rpf_cache_refresh_delay_msec;
140 struct thread *qpim_rpf_cache_refresher;
141 int64_t qpim_rpf_cache_refresh_requests;
142 int64_t qpim_rpf_cache_refresh_events;
143 int64_t qpim_rpf_cache_refresh_last;
144 struct in_addr qpim_inaddr_any;
145 struct list *qpim_ssmpingd_list; /* list of struct ssmpingd_sock */
146 struct in_addr qpim_ssmpingd_group_addr;
147 int64_t qpim_scan_oil_events;
148 int64_t qpim_scan_oil_last;
149 int64_t qpim_mroute_add_events;
150 int64_t qpim_mroute_add_last;
151 int64_t qpim_mroute_del_events;
152 int64_t qpim_mroute_del_last;
153 int64_t qpim_nexthop_lookups;
154 struct list *qpim_static_route_list; /* list of routes added statically */
155 extern unsigned int qpim_keep_alive_time;
156 extern signed int qpim_rp_keep_alive_time;
157 extern int qpim_packet_process;
158 #define PIM_DEFAULT_PACKET_PROCESS 3
159
160 #define PIM_JP_HOLDTIME (qpim_t_periodic * 7 / 2)
161
162 /*
163 * Register-Stop Timer (RST(S,G))
164 * Default values
165 */
166 extern int32_t qpim_register_suppress_time;
167 extern int32_t qpim_register_probe_time;
168 #define PIM_REGISTER_SUPPRESSION_TIME_DEFAULT (60)
169 #define PIM_REGISTER_PROBE_TIME_DEFAULT (5)
170
171 #define PIM_DEBUG_PIM_EVENTS (qpim_debugs & PIM_MASK_PIM_EVENTS)
172 #define PIM_DEBUG_PIM_EVENTS_DETAIL (qpim_debugs & PIM_MASK_PIM_EVENTS_DETAIL)
173 #define PIM_DEBUG_PIM_PACKETS (qpim_debugs & PIM_MASK_PIM_PACKETS)
174 #define PIM_DEBUG_PIM_PACKETDUMP_SEND (qpim_debugs & PIM_MASK_PIM_PACKETDUMP_SEND)
175 #define PIM_DEBUG_PIM_PACKETDUMP_RECV (qpim_debugs & PIM_MASK_PIM_PACKETDUMP_RECV)
176 #define PIM_DEBUG_PIM_TRACE (qpim_debugs & PIM_MASK_PIM_TRACE)
177 #define PIM_DEBUG_PIM_TRACE_DETAIL (qpim_debugs & PIM_MASK_PIM_TRACE_DETAIL)
178 #define PIM_DEBUG_IGMP_EVENTS (qpim_debugs & PIM_MASK_IGMP_EVENTS)
179 #define PIM_DEBUG_IGMP_PACKETS (qpim_debugs & PIM_MASK_IGMP_PACKETS)
180 #define PIM_DEBUG_IGMP_TRACE (qpim_debugs & PIM_MASK_IGMP_TRACE)
181 #define PIM_DEBUG_IGMP_TRACE_DETAIL (qpim_debugs & PIM_MASK_IGMP_TRACE_DETAIL)
182 #define PIM_DEBUG_ZEBRA (qpim_debugs & PIM_MASK_ZEBRA)
183 #define PIM_DEBUG_SSMPINGD (qpim_debugs & PIM_MASK_SSMPINGD)
184 #define PIM_DEBUG_MROUTE (qpim_debugs & PIM_MASK_MROUTE)
185 #define PIM_DEBUG_MROUTE_DETAIL (qpim_debugs & PIM_MASK_MROUTE_DETAIL)
186 #define PIM_DEBUG_PIM_HELLO (qpim_debugs & PIM_MASK_PIM_HELLO)
187 #define PIM_DEBUG_PIM_J_P (qpim_debugs & PIM_MASK_PIM_J_P)
188 #define PIM_DEBUG_PIM_REG (qpim_debugs & PIM_MASK_PIM_REG)
189 #define PIM_DEBUG_STATIC (qpim_debugs & PIM_MASK_STATIC)
190 #define PIM_DEBUG_MSDP_EVENTS (qpim_debugs & PIM_MASK_MSDP_EVENTS)
191 #define PIM_DEBUG_MSDP_PACKETS (qpim_debugs & PIM_MASK_MSDP_PACKETS)
192 #define PIM_DEBUG_MSDP_INTERNAL (qpim_debugs & PIM_MASK_MSDP_INTERNAL)
193
194 #define PIM_DEBUG_EVENTS (qpim_debugs & (PIM_MASK_PIM_EVENTS | PIM_MASK_IGMP_EVENTS | PIM_MASK_MSDP_EVENTS))
195 #define PIM_DEBUG_PACKETS (qpim_debugs & (PIM_MASK_PIM_PACKETS | PIM_MASK_IGMP_PACKETS | PIM_MASK_MSDP_PACKETS))
196 #define PIM_DEBUG_TRACE (qpim_debugs & (PIM_MASK_PIM_TRACE | PIM_MASK_IGMP_TRACE))
197
198 #define PIM_DO_DEBUG_PIM_EVENTS (qpim_debugs |= PIM_MASK_PIM_EVENTS)
199 #define PIM_DO_DEBUG_PIM_PACKETS (qpim_debugs |= PIM_MASK_PIM_PACKETS)
200 #define PIM_DO_DEBUG_PIM_PACKETDUMP_SEND (qpim_debugs |= PIM_MASK_PIM_PACKETDUMP_SEND)
201 #define PIM_DO_DEBUG_PIM_PACKETDUMP_RECV (qpim_debugs |= PIM_MASK_PIM_PACKETDUMP_RECV)
202 #define PIM_DO_DEBUG_PIM_TRACE (qpim_debugs |= PIM_MASK_PIM_TRACE)
203 #define PIM_DO_DEBUG_IGMP_EVENTS (qpim_debugs |= PIM_MASK_IGMP_EVENTS)
204 #define PIM_DO_DEBUG_IGMP_PACKETS (qpim_debugs |= PIM_MASK_IGMP_PACKETS)
205 #define PIM_DO_DEBUG_IGMP_TRACE (qpim_debugs |= PIM_MASK_IGMP_TRACE)
206 #define PIM_DO_DEBUG_IGMP_TRACE_DETAIL (qpim_debugs |= PIM_MASK_IGMP_TRACE_DETAIL)
207 #define PIM_DO_DEBUG_ZEBRA (qpim_debugs |= PIM_MASK_ZEBRA)
208 #define PIM_DO_DEBUG_SSMPINGD (qpim_debugs |= PIM_MASK_SSMPINGD)
209 #define PIM_DO_DEBUG_MROUTE (qpim_debugs |= PIM_MASK_MROUTE)
210 #define PIM_DO_DEBUG_MROUTE_DETAIL (qpim_debugs |= PIM_MASK_MROUTE_DETAIL)
211 #define PIM_DO_DEBUG_PIM_HELLO (qpim_debugs |= PIM_MASK_PIM_HELLO)
212 #define PIM_DO_DEBUG_PIM_J_P (qpim_debugs |= PIM_MASK_PIM_J_P)
213 #define PIM_DO_DEBUG_PIM_REG (qpim_debugs |= PIM_MASK_PIM_REG)
214 #define PIM_DO_DEBUG_STATIC (qpim_debugs |= PIM_MASK_STATIC)
215 #define PIM_DO_DEBUG_MSDP_EVENTS (qpim_debugs |= PIM_MASK_MSDP_EVENTS)
216 #define PIM_DO_DEBUG_MSDP_PACKETS (qpim_debugs |= PIM_MASK_MSDP_PACKETS)
217 #define PIM_DO_DEBUG_MSDP_INTERNAL (qpim_debugs |= PIM_MASK_MSDP_INTERNAL)
218
219 #define PIM_DONT_DEBUG_PIM_EVENTS (qpim_debugs &= ~PIM_MASK_PIM_EVENTS)
220 #define PIM_DONT_DEBUG_PIM_PACKETS (qpim_debugs &= ~PIM_MASK_PIM_PACKETS)
221 #define PIM_DONT_DEBUG_PIM_PACKETDUMP_SEND (qpim_debugs &= ~PIM_MASK_PIM_PACKETDUMP_SEND)
222 #define PIM_DONT_DEBUG_PIM_PACKETDUMP_RECV (qpim_debugs &= ~PIM_MASK_PIM_PACKETDUMP_RECV)
223 #define PIM_DONT_DEBUG_PIM_TRACE (qpim_debugs &= ~PIM_MASK_PIM_TRACE)
224 #define PIM_DONT_DEBUG_IGMP_EVENTS (qpim_debugs &= ~PIM_MASK_IGMP_EVENTS)
225 #define PIM_DONT_DEBUG_IGMP_PACKETS (qpim_debugs &= ~PIM_MASK_IGMP_PACKETS)
226 #define PIM_DONT_DEBUG_IGMP_TRACE (qpim_debugs &= ~PIM_MASK_IGMP_TRACE)
227 #define PIM_DONT_DEBUG_IGMP_TRACE_DETAIL (qpim_debugs &= ~PIM_MASK_IGMP_TRACE_DETAIL)
228 #define PIM_DONT_DEBUG_ZEBRA (qpim_debugs &= ~PIM_MASK_ZEBRA)
229 #define PIM_DONT_DEBUG_SSMPINGD (qpim_debugs &= ~PIM_MASK_SSMPINGD)
230 #define PIM_DONT_DEBUG_MROUTE (qpim_debugs &= ~PIM_MASK_MROUTE)
231 #define PIM_DONT_DEBUG_MROUTE_DETAIL (qpim_debugs &= ~PIM_MASK_MROUTE_DETAIL)
232 #define PIM_DONT_DEBUG_PIM_HELLO (qpim_debugs &= ~PIM_MASK_PIM_HELLO)
233 #define PIM_DONT_DEBUG_PIM_J_P (qpim_debugs &= ~PIM_MASK_PIM_J_P)
234 #define PIM_DONT_DEBUG_PIM_REG (qpim_debugs &= ~PIM_MASK_PIM_REG)
235 #define PIM_DONT_DEBUG_STATIC (qpim_debugs &= ~PIM_MASK_STATIC)
236 #define PIM_DONT_DEBUG_MSDP_EVENTS (qpim_debugs &= ~PIM_MASK_MSDP_EVENTS)
237 #define PIM_DONT_DEBUG_MSDP_PACKETS (qpim_debugs &= ~PIM_MASK_MSDP_PACKETS)
238 #define PIM_DONT_DEBUG_MSDP_INTERNAL (qpim_debugs &= ~PIM_MASK_MSDP_INTERNAL)
239
240 enum pim_spt_switchover {
241 PIM_SPT_IMMEDIATE,
242 PIM_SPT_INFINITY,
243 };
244
245 /* Per VRF PIM DB */
246 struct pim_instance
247 {
248 afi_t afi;
249 vrf_id_t vrf_id;
250
251 struct {
252 enum pim_spt_switchover switchover;
253 char *plist;
254 } spt;
255
256 struct hash *rpf_hash;
257 void *ssm_info; /* per-vrf SSM configuration */
258 };
259
260 extern struct pim_instance *pimg; //Pim Global Instance
261
262 void pim_init(void);
263 void pim_terminate(void);
264
265 extern void pim_route_map_init (void);
266 extern void pim_route_map_terminate(void);
267 void pim_vrf_init (void);
268 void pim_prefix_list_update (struct prefix_list *plist);
269
270 #endif /* PIMD_H */