]> git.proxmox.com Git - mirror_frr.git/blame - pimd/pim_register.c
pimd: Add debug messages as to why a register packet is rejected.
[mirror_frr.git] / pimd / pim_register.c
CommitLineData
01d68c9b
DS
1/*
2 * PIM for Quagga
3 * Copyright (C) 2015 Cumulus Networks, Inc.
4 * Donald Sharp
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful, but
12 * WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; see the file COPYING; if not, write to the
18 * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,
19 * MA 02110-1301 USA
20 */
21
22#include <zebra.h>
23
24#include "log.h"
25#include "if.h"
26#include "thread.h"
13c2408c 27#include "prefix.h"
dfe43e25
DW
28#include "vty.h"
29#include "plist.h"
01d68c9b
DS
30
31#include "pimd.h"
998af219
DS
32#include "pim_mroute.h"
33#include "pim_iface.h"
34#include "pim_msg.h"
35#include "pim_pim.h"
01d68c9b
DS
36#include "pim_str.h"
37#include "pim_rp.h"
38#include "pim_register.h"
80c0d168 39#include "pim_upstream.h"
01d68c9b 40#include "pim_br.h"
2ca35b3d
DS
41#include "pim_rpf.h"
42#include "pim_oil.h"
43#include "pim_zebra.h"
44#include "pim_join.h"
13c2408c 45#include "pim_util.h"
01d68c9b
DS
46
47struct thread *send_test_packet_timer = NULL;
48
8e38a2cf 49void
4ed0af70 50pim_register_stop_send (struct interface *ifp, struct prefix_sg *sg,
4df01a4e 51 struct in_addr src, struct in_addr originator)
01d68c9b 52{
13c2408c
DS
53 struct pim_interface *pinfo;
54 unsigned char buffer[3000];
55 unsigned int b1length = 0;
56 unsigned int length;
57 uint8_t *b1;
58 struct prefix p;
59
9add3b88
DS
60 if (PIM_DEBUG_PIM_REG)
61 {
62 zlog_debug ("Sending Register stop for %s to %s on %s",
63 pim_str_sg_dump (sg), inet_ntoa(originator), ifp->name);
64 }
65
13c2408c
DS
66 memset (buffer, 0, 3000);
67 b1 = (uint8_t *)buffer + PIM_MSG_REGISTER_STOP_LEN;
68
4ed0af70 69 length = pim_encode_addr_group (b1, AFI_IP, 0, 0, sg->grp);
13c2408c
DS
70 b1length += length;
71 b1 += length;
72
73 p.family = AF_INET;
4ed0af70 74 p.u.prefix4 = sg->src;
13c2408c
DS
75 p.prefixlen = 32;
76 length = pim_encode_addr_ucast (b1, &p);
77 b1length += length;
78
79 pim_msg_build_header (buffer, b1length + PIM_MSG_REGISTER_STOP_LEN, PIM_MSG_TYPE_REG_STOP);
80
81 pinfo = (struct pim_interface *)ifp->info;
82 if (!pinfo)
83 {
84 if (PIM_DEBUG_PIM_TRACE)
85 zlog_debug ("%s: No pinfo!\n", __PRETTY_FUNCTION__);
86 return;
87 }
4df01a4e 88 if (pim_msg_send (pinfo->pim_sock_fd, src, originator,
13c2408c
DS
89 buffer, b1length + PIM_MSG_REGISTER_STOP_LEN,
90 ifp->name))
91 {
92 if (PIM_DEBUG_PIM_TRACE)
93 {
94 zlog_debug ("%s: could not send PIM register stop message on interface %s",
95 __PRETTY_FUNCTION__, ifp->name);
96 }
97 }
01d68c9b
DS
98}
99
4dffc880 100int
56638739 101pim_register_stop_recv (uint8_t *buf, int buf_size)
4dffc880 102{
56638739
DS
103 struct pim_upstream *upstream = NULL;
104 struct prefix source;
105 struct prefix group;
4ed0af70 106 struct prefix_sg sg;
56638739
DS
107 int l;
108
56638739
DS
109 l = pim_parse_addr_group (&group, buf, buf_size);
110 buf += l;
111 buf_size -= l;
a878ba45 112 pim_parse_addr_ucast (&source, buf, buf_size);
4ed0af70
DS
113 memset (&sg, 0, sizeof (struct prefix_sg));
114 sg.src = source.u.prefix4;
115 sg.grp = group.u.prefix4;
9add3b88
DS
116
117 if (PIM_DEBUG_PIM_REG)
118 {
119 zlog_debug ("Received Register stop for %s",
120 pim_str_sg_dump (&sg));
121 }
122
5074a423 123 upstream = pim_upstream_find (&sg);
56638739
DS
124 if (!upstream)
125 {
126 return 0;
127 }
128
129 switch (upstream->join_state)
130 {
131 case PIM_UPSTREAM_NOTJOINED:
132 case PIM_UPSTREAM_PRUNE:
133 return 0;
134 break;
135 case PIM_UPSTREAM_JOINED:
bb027ee8
DS
136 upstream->join_state = PIM_UPSTREAM_PRUNE;
137 pim_channel_del_oif (upstream->channel_oil, pim_regiface, PIM_OIF_FLAG_PROTO_PIM);
138 pim_upstream_start_register_stop_timer (upstream, 0);
56638739
DS
139 case PIM_UPSTREAM_JOIN_PENDING:
140 upstream->join_state = PIM_UPSTREAM_PRUNE;
141 pim_upstream_start_register_stop_timer (upstream, 0);
56638739
DS
142 return 0;
143 break;
144 }
145
4dffc880
DS
146 return 0;
147}
148
998af219 149void
4df01a4e 150pim_register_send (const uint8_t *buf, int buf_size, struct in_addr src, struct pim_rpf *rpg, int null_register)
998af219
DS
151{
152 unsigned char buffer[3000];
153 unsigned char *b1;
154 struct pim_interface *pinfo;
155 struct interface *ifp;
998af219 156
9add3b88
DS
157 if (PIM_DEBUG_PIM_REG)
158 {
159 char rp_str[100];
63c59d0c 160 strcpy (rp_str, inet_ntoa (rpg->rpf_addr.u.prefix4));
9add3b88
DS
161 zlog_debug ("Sending %sRegister Packet to %s", null_register ? "NULL " : "", rp_str);
162 }
163
998af219 164 ifp = rpg->source_nexthop.interface;
63b8f7a3
DS
165 if (!ifp)
166 {
167 if (PIM_DEBUG_PIM_REG)
168 zlog_debug ("%s: No interface to transmit register on", __PRETTY_FUNCTION__);
169 return;
170 }
998af219
DS
171 pinfo = (struct pim_interface *)ifp->info;
172 if (!pinfo) {
63b8f7a3
DS
173 if (PIM_DEBUG_PIM_REG)
174 zlog_debug("%s: Interface: %s not configured for pim to trasmit on!\n", __PRETTY_FUNCTION__, ifp->name);
998af219
DS
175 return;
176 }
177
178 memset(buffer, 0, 3000);
b100a4f5 179 b1 = buffer + PIM_MSG_HEADER_LEN;
dc686f82 180 *b1 |= null_register << 6;
998af219
DS
181 b1 = buffer + PIM_MSG_REGISTER_LEN;
182
b100a4f5 183 memcpy(b1, (const unsigned char *)buf, buf_size);
998af219 184
b100a4f5 185 pim_msg_build_header(buffer, buf_size + PIM_MSG_REGISTER_LEN, PIM_MSG_TYPE_REGISTER);
998af219
DS
186
187 if (pim_msg_send(pinfo->pim_sock_fd,
4df01a4e 188 src,
63c59d0c 189 rpg->rpf_addr.u.prefix4,
998af219 190 buffer,
b100a4f5 191 buf_size + PIM_MSG_REGISTER_LEN,
998af219
DS
192 ifp->name)) {
193 if (PIM_DEBUG_PIM_TRACE) {
194 zlog_debug("%s: could not send PIM register message on interface %s",
195 __PRETTY_FUNCTION__, ifp->name);
196 }
197 return;
198 }
199}
200
01d68c9b
DS
201/*
202 * 4.4.2 Receiving Register Messages at the RP
203 *
204 * When an RP receives a Register message, the course of action is
205 * decided according to the following pseudocode:
206 *
207 * packet_arrives_on_rp_tunnel( pkt ) {
208 * if( outer.dst is not one of my addresses ) {
209 * drop the packet silently.
210 * # Note: this may be a spoofing attempt
211 * }
212 * if( I_am_RP(G) AND outer.dst == RP(G) ) {
213 * sentRegisterStop = FALSE;
214 * if ( register.borderbit == TRUE ) {
215 * if ( PMBR(S,G) == unknown ) {
216 * PMBR(S,G) = outer.src
217 * } else if ( outer.src != PMBR(S,G) ) {
218 * send Register-Stop(S,G) to outer.src
219 * drop the packet silently.
220 * }
221 * }
222 * if ( SPTbit(S,G) OR
223 * ( SwitchToSptDesired(S,G) AND
224 * ( inherited_olist(S,G) == NULL ))) {
225 * send Register-Stop(S,G) to outer.src
226 * sentRegisterStop = TRUE;
227 * }
228 * if ( SPTbit(S,G) OR SwitchToSptDesired(S,G) ) {
229 * if ( sentRegisterStop == TRUE ) {
230 * set KeepaliveTimer(S,G) to RP_Keepalive_Period;
231 * } else {
232 * set KeepaliveTimer(S,G) to Keepalive_Period;
233 * }
234 * }
235 * if( !SPTbit(S,G) AND ! pkt.NullRegisterBit ) {
236 * decapsulate and forward the inner packet to
237 * inherited_olist(S,G,rpt) # Note (+)
238 * }
239 * } else {
240 * send Register-Stop(S,G) to outer.src
241 * # Note (*)
242 * }
243 * }
244 */
245int
246pim_register_recv (struct interface *ifp,
247 struct in_addr dest_addr,
248 struct in_addr src_addr,
249 uint8_t *tlv_buf, int tlv_buf_size)
250{
77e390e5
DS
251 int sentRegisterStop = 0;
252 struct ip *ip_hdr;
4ed0af70 253 struct prefix_sg sg;
77e390e5 254 uint32_t *bits;
a6dc7de6 255 int i_am_rp = 0;
01d68c9b 256
75a26779
DS
257#define PIM_MSG_REGISTER_BIT_RESERVED_LEN 4
258 ip_hdr = (struct ip *)(tlv_buf + PIM_MSG_REGISTER_BIT_RESERVED_LEN);
259
260 if (!pim_rp_check_is_my_ip_address (ip_hdr->ip_dst, dest_addr)) {
d41b415c 261 if (PIM_DEBUG_PIM_REG) {
01d68c9b
DS
262 char dest[100];
263
264 pim_inet4_dump ("<dst?>", dest_addr, dest, sizeof(dest));
265 zlog_debug ("%s: Received Register message for %s that I do not own", __func__,
266 dest);
267 }
268 return 0;
269 }
270
9add3b88
DS
271 if (PIM_DEBUG_PIM_REG)
272 {
273 char src_str[100];
274
275 pim_inet4_dump ("<src?>", src_addr, src_str, sizeof (src_str));
276 zlog_debug ("Received Register message from %s on %s", src_str, ifp->name);
277 }
278
77e390e5
DS
279 /*
280 * Please note this is not drawn to get the correct bit/data size
281 *
282 * The entirety of the REGISTER packet looks like this:
283 * -------------------------------------------------------------
284 * | Ver | Type | Reserved | Checksum |
285 * |-----------------------------------------------------------|
286 * |B|N| Reserved 2 |
287 * |-----------------------------------------------------------|
288 * | Encap | IP HDR |
289 * | Mcast | |
290 * | Packet |--------------------------------------------------|
291 * | | Mcast Data |
292 * | | |
293 * ...
294 *
295 * tlv_buf when received from the caller points at the B bit
296 * We need to know the inner source and dest
297 */
298 bits = (uint32_t *)tlv_buf;
83d8ff00
DS
299
300 /*
301 * tlv_buf points to the start of the |B|N|... Reserved
302 * Line above. So we need to add 4 bytes to get to the
303 * start of the actual Encapsulated data.
304 */
4ed0af70
DS
305 memset (&sg, 0, sizeof (struct prefix_sg));
306 sg.src = ip_hdr->ip_src;
307 sg.grp = ip_hdr->ip_dst;
77e390e5 308
a6dc7de6
DS
309 i_am_rp = I_am_RP (sg.grp);
310 if (i_am_rp && (dest_addr.s_addr == ((RP (sg.grp))->rpf_addr.u.prefix4.s_addr))) {
77e390e5 311 sentRegisterStop = 0;
01d68c9b 312
9eda95bd 313 if (*bits & PIM_REGISTER_BORDER_BIT) {
65e1fcd7 314 struct in_addr pimbr = pim_br_get_pmbr (&sg);
01d68c9b
DS
315 if (PIM_DEBUG_PIM_PACKETS)
316 zlog_debug("%s: Received Register message with Border bit set", __func__);
317
318 if (pimbr.s_addr == pim_br_unknown.s_addr)
65e1fcd7 319 pim_br_set_pmbr(&sg, src_addr);
80c0d168 320 else if (src_addr.s_addr != pimbr.s_addr) {
4df01a4e 321 pim_register_stop_send (ifp, &sg, dest_addr, src_addr);
01d68c9b
DS
322 if (PIM_DEBUG_PIM_PACKETS)
323 zlog_debug("%s: Sending register-Stop to %s and dropping mr. packet",
324 __func__, "Sender");
77e390e5
DS
325 /* Drop Packet Silently */
326 return 1;
01d68c9b
DS
327 }
328 }
77e390e5 329
5074a423 330 struct pim_upstream *upstream = pim_upstream_find (&sg);
77e390e5
DS
331 /*
332 * If we don't have a place to send ignore the packet
333 */
334 if (!upstream)
9fd309db 335 {
5074a423 336 upstream = pim_upstream_add (&sg, ifp);
4e85d209
DS
337 if (!upstream)
338 {
63b8f7a3 339 zlog_warn ("Failure to create upstream state");
4e85d209
DS
340 return 1;
341 }
8e38a2cf 342 upstream->upstream_register = src_addr;
36d6bd7d 343 pim_rp_set_upstream_addr (&upstream->upstream_addr, sg.src, sg.grp);
216bb84f 344 pim_nexthop_lookup (&upstream->rpf.source_nexthop,
63b8f7a3 345 upstream->upstream_addr, 1);
4ed0af70 346 upstream->sg.src = sg.src;
216bb84f
DS
347 upstream->rpf.rpf_addr = upstream->rpf.source_nexthop.mrib_nexthop_addr;
348
8e38a2cf 349 upstream->join_state = PIM_UPSTREAM_PRUNE;
219e0013 350
9fd309db
DS
351 }
352
77e390e5 353 if ((upstream->sptbit == PIM_UPSTREAM_SPTBIT_TRUE) ||
ad410c6c 354 ((SwitchToSptDesired(&sg)) &&
4fdc8f36 355 pim_upstream_inherited_olist (upstream) == 0)) {
216bb84f 356 //pim_scan_individual_oil (upstream->channel_oil);
4df01a4e 357 pim_register_stop_send (ifp, &sg, dest_addr, src_addr);
77e390e5
DS
358 sentRegisterStop = 1;
359 }
360
361 if ((upstream->sptbit == PIM_UPSTREAM_SPTBIT_TRUE) ||
ad410c6c 362 (SwitchToSptDesired(&sg))) {
80c0d168 363 if (sentRegisterStop) {
01408ede 364 pim_upstream_keep_alive_timer_start (upstream, qpim_rp_keep_alive_time);
77e390e5 365 } else {
4304f95c 366 pim_upstream_keep_alive_timer_start (upstream, qpim_keep_alive_time);
77e390e5
DS
367 }
368 }
369
370 if (!(upstream->sptbit == PIM_UPSTREAM_SPTBIT_TRUE) &&
2ca35b3d
DS
371 !(*bits & PIM_REGISTER_NR_BIT))
372 {
2ca35b3d
DS
373 //decapsulate and forward the iner packet to
374 //inherited_olist(S,G,rpt)
0365f56b 375 // This is taken care of by the kernel for us
2ca35b3d 376 }
77e390e5 377 } else {
a6dc7de6
DS
378 if (PIM_DEBUG_PIM_REG)
379 {
380 if (!i_am_rp)
381 zlog_debug ("Received Register packet for %s, Rejecting packet because I am not the RP configured for group",
382 pim_str_sg_dump (&sg));
383 else
384 zlog_debug ("Received Register packet for %s, Rejecting packet because the dst ip address is not the actual RP",
385 pim_str_sg_dump (&sg));
386 }
4df01a4e 387 pim_register_stop_send (ifp, &sg, dest_addr, src_addr);
77e390e5 388 }
01d68c9b
DS
389
390 return 1;
391}
392
393
394static int
395pim_register_send_test_packet (struct thread *t)
396{
397 uint8_t *packet;
398
399 packet = THREAD_ARG(t);
400
401 *packet = 4;
402
403 return 1;
404}
405
406/*
407 * pim_register_send_test_packet
408 *
409 * Send a test packet to the RP from source, in group and pps packets per second
410 */
411void
412pim_register_send_test_packet_start (struct in_addr source,
413 struct in_addr group,
414 uint32_t pps)
415{
416 uint8_t *packet = NULL;
417
418 THREAD_TIMER_MSEC_ON(master, send_test_packet_timer,
419 pim_register_send_test_packet, packet, 1000/pps);
420
421 return;
422}