]> git.proxmox.com Git - mirror_frr.git/blob - pimd/pim_igmp.c
Merge pull request #2189 from qlyoung/move-bug-reports-to-docs
[mirror_frr.git] / pimd / pim_igmp.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 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 */
19
20 #include <zebra.h>
21
22 #include "memory.h"
23 #include "prefix.h"
24 #include "if.h"
25 #include "hash.h"
26 #include "jhash.h"
27
28 #include "pimd.h"
29 #include "pim_igmp.h"
30 #include "pim_igmpv2.h"
31 #include "pim_igmpv3.h"
32 #include "pim_igmp_mtrace.h"
33 #include "pim_iface.h"
34 #include "pim_sock.h"
35 #include "pim_mroute.h"
36 #include "pim_str.h"
37 #include "pim_util.h"
38 #include "pim_time.h"
39 #include "pim_zebra.h"
40
41 static void group_timer_off(struct igmp_group *group);
42 static int pim_igmp_general_query(struct thread *t);
43
44 /* This socket is used for TXing IGMP packets only, IGMP RX happens
45 * in pim_mroute_msg()
46 */
47 static int igmp_sock_open(struct in_addr ifaddr, struct interface *ifp,
48 uint32_t pim_options)
49 {
50 int fd;
51 int join = 0;
52 struct in_addr group;
53
54 fd = pim_socket_mcast(IPPROTO_IGMP, ifaddr, ifp, 1);
55
56 if (fd < 0)
57 return -1;
58
59 if (PIM_IF_TEST_IGMP_LISTEN_ALLROUTERS(pim_options)) {
60 if (inet_aton(PIM_ALL_ROUTERS, &group)) {
61 if (!pim_socket_join(fd, group, ifaddr, ifp->ifindex))
62 ++join;
63 } else {
64 zlog_warn(
65 "%s %s: IGMP socket fd=%d interface %s: could not solve %s to group address: errno=%d: %s",
66 __FILE__, __PRETTY_FUNCTION__, fd,
67 inet_ntoa(ifaddr), PIM_ALL_ROUTERS, errno,
68 safe_strerror(errno));
69 }
70 }
71
72 /*
73 IGMP routers periodically send IGMP general queries to
74 AllSystems=224.0.0.1
75 IGMP routers must receive general queries for querier election.
76 */
77 if (inet_aton(PIM_ALL_SYSTEMS, &group)) {
78 if (!pim_socket_join(fd, group, ifaddr, ifp->ifindex))
79 ++join;
80 } else {
81 zlog_warn(
82 "%s %s: IGMP socket fd=%d interface %s: could not solve %s to group address: errno=%d: %s",
83 __FILE__, __PRETTY_FUNCTION__, fd, inet_ntoa(ifaddr),
84 PIM_ALL_SYSTEMS, errno, safe_strerror(errno));
85 }
86
87 if (inet_aton(PIM_ALL_IGMP_ROUTERS, &group)) {
88 if (!pim_socket_join(fd, group, ifaddr, ifp->ifindex)) {
89 ++join;
90 }
91 } else {
92 zlog_warn(
93 "%s %s: IGMP socket fd=%d interface %s: could not solve %s to group address: errno=%d: %s",
94 __FILE__, __PRETTY_FUNCTION__, fd, inet_ntoa(ifaddr),
95 PIM_ALL_IGMP_ROUTERS, errno, safe_strerror(errno));
96 }
97
98 if (!join) {
99 zlog_err(
100 "IGMP socket fd=%d could not join any group on interface address %s",
101 fd, inet_ntoa(ifaddr));
102 close(fd);
103 fd = -1;
104 }
105
106 return fd;
107 }
108
109 #undef IGMP_SOCK_DUMP
110
111 #ifdef IGMP_SOCK_DUMP
112 static void igmp_sock_dump(array_t *igmp_sock_array)
113 {
114 int size = array_size(igmp_sock_array);
115 for (int i = 0; i < size; ++i) {
116
117 struct igmp_sock *igmp = array_get(igmp_sock_array, i);
118
119 zlog_debug("%s %s: [%d/%d] igmp_addr=%s fd=%d", __FILE__,
120 __PRETTY_FUNCTION__, i, size,
121 inet_ntoa(igmp->ifaddr), igmp->fd);
122 }
123 }
124 #endif
125
126 struct igmp_sock *pim_igmp_sock_lookup_ifaddr(struct list *igmp_sock_list,
127 struct in_addr ifaddr)
128 {
129 struct listnode *sock_node;
130 struct igmp_sock *igmp;
131
132 #ifdef IGMP_SOCK_DUMP
133 igmp_sock_dump(igmp_sock_list);
134 #endif
135
136 for (ALL_LIST_ELEMENTS_RO(igmp_sock_list, sock_node, igmp))
137 if (ifaddr.s_addr == igmp->ifaddr.s_addr)
138 return igmp;
139
140 return 0;
141 }
142
143 struct igmp_sock *igmp_sock_lookup_by_fd(struct list *igmp_sock_list, int fd)
144 {
145 struct listnode *sock_node;
146 struct igmp_sock *igmp;
147
148 for (ALL_LIST_ELEMENTS_RO(igmp_sock_list, sock_node, igmp))
149 if (fd == igmp->fd)
150 return igmp;
151
152 return 0;
153 }
154
155 static int pim_igmp_other_querier_expire(struct thread *t)
156 {
157 struct igmp_sock *igmp;
158
159 igmp = THREAD_ARG(t);
160
161 zassert(!igmp->t_igmp_query_timer);
162
163 if (PIM_DEBUG_IGMP_TRACE) {
164 char ifaddr_str[INET_ADDRSTRLEN];
165 pim_inet4_dump("<ifaddr?>", igmp->ifaddr, ifaddr_str,
166 sizeof(ifaddr_str));
167 zlog_debug("%s: Querier %s resuming", __PRETTY_FUNCTION__,
168 ifaddr_str);
169 }
170
171 /*
172 We are the current querier, then
173 re-start sending general queries.
174 RFC 2236 - sec 7 Other Querier
175 present timer expired (Send General
176 Query, Set Gen. Query. timer)
177 */
178 pim_igmp_general_query(t);
179
180 return 0;
181 }
182
183 void pim_igmp_other_querier_timer_on(struct igmp_sock *igmp)
184 {
185 long other_querier_present_interval_msec;
186 struct pim_interface *pim_ifp;
187
188 zassert(igmp);
189 zassert(igmp->interface);
190 zassert(igmp->interface->info);
191
192 pim_ifp = igmp->interface->info;
193
194 if (igmp->t_other_querier_timer) {
195 /*
196 There is other querier present already,
197 then reset the other-querier-present timer.
198 */
199
200 if (PIM_DEBUG_IGMP_TRACE) {
201 char ifaddr_str[INET_ADDRSTRLEN];
202 pim_inet4_dump("<ifaddr?>", igmp->ifaddr, ifaddr_str,
203 sizeof(ifaddr_str));
204 zlog_debug(
205 "Querier %s resetting TIMER event for Other-Querier-Present",
206 ifaddr_str);
207 }
208 THREAD_OFF(igmp->t_other_querier_timer);
209 } else {
210 /*
211 We are the current querier, then stop sending general queries:
212 igmp->t_igmp_query_timer = NULL;
213 */
214 pim_igmp_general_query_off(igmp);
215 }
216
217 /*
218 Since this socket is starting the other-querier-present timer,
219 there should not be periodic query timer for this socket.
220 */
221 zassert(!igmp->t_igmp_query_timer);
222
223 /*
224 RFC 3376: 8.5. Other Querier Present Interval
225
226 The Other Querier Present Interval is the length of time that must
227 pass before a multicast router decides that there is no longer
228 another multicast router which should be the querier. This value
229 MUST be ((the Robustness Variable) times (the Query Interval)) plus
230 (one half of one Query Response Interval).
231
232 other_querier_present_interval_msec = \
233 igmp->querier_robustness_variable * \
234 1000 * igmp->querier_query_interval + \
235 100 * (pim_ifp->query_max_response_time_dsec >> 1);
236 */
237 other_querier_present_interval_msec = PIM_IGMP_OQPI_MSEC(
238 igmp->querier_robustness_variable, igmp->querier_query_interval,
239 pim_ifp->igmp_query_max_response_time_dsec);
240
241 if (PIM_DEBUG_IGMP_TRACE) {
242 char ifaddr_str[INET_ADDRSTRLEN];
243 pim_inet4_dump("<ifaddr?>", igmp->ifaddr, ifaddr_str,
244 sizeof(ifaddr_str));
245 zlog_debug(
246 "Querier %s scheduling %ld.%03ld sec TIMER event for Other-Querier-Present",
247 ifaddr_str, other_querier_present_interval_msec / 1000,
248 other_querier_present_interval_msec % 1000);
249 }
250
251 thread_add_timer_msec(master, pim_igmp_other_querier_expire, igmp,
252 other_querier_present_interval_msec,
253 &igmp->t_other_querier_timer);
254 }
255
256 void pim_igmp_other_querier_timer_off(struct igmp_sock *igmp)
257 {
258 zassert(igmp);
259
260 if (PIM_DEBUG_IGMP_TRACE) {
261 if (igmp->t_other_querier_timer) {
262 char ifaddr_str[INET_ADDRSTRLEN];
263 pim_inet4_dump("<ifaddr?>", igmp->ifaddr, ifaddr_str,
264 sizeof(ifaddr_str));
265 zlog_debug(
266 "IGMP querier %s fd=%d cancelling other-querier-present TIMER event on %s",
267 ifaddr_str, igmp->fd, igmp->interface->name);
268 }
269 }
270 THREAD_OFF(igmp->t_other_querier_timer);
271 }
272
273 static int igmp_recv_query(struct igmp_sock *igmp, int query_version,
274 int max_resp_code, struct in_addr from,
275 const char *from_str, char *igmp_msg,
276 int igmp_msg_len)
277 {
278 struct interface *ifp;
279 struct pim_interface *pim_ifp;
280 struct in_addr group_addr;
281 uint16_t recv_checksum;
282 uint16_t checksum;
283
284 if (igmp->mtrace_only)
285 return 0;
286
287 memcpy(&group_addr, igmp_msg + 4, sizeof(struct in_addr));
288
289 ifp = igmp->interface;
290 pim_ifp = ifp->info;
291
292 recv_checksum = *(uint16_t *)(igmp_msg + IGMP_CHECKSUM_OFFSET);
293
294 /* for computing checksum */
295 *(uint16_t *)(igmp_msg + IGMP_CHECKSUM_OFFSET) = 0;
296
297 checksum = in_cksum(igmp_msg, igmp_msg_len);
298 if (checksum != recv_checksum) {
299 zlog_warn(
300 "Recv IGMP query v%d from %s on %s: checksum mismatch: received=%x computed=%x",
301 query_version, from_str, ifp->name, recv_checksum,
302 checksum);
303 return -1;
304 }
305
306 /* Collecting IGMP Rx stats */
307 switch (query_version) {
308 case 1:
309 igmp->rx_stats.query_v1++;
310 break;
311 case 2:
312 igmp->rx_stats.query_v2++;
313 break;
314 case 3:
315 igmp->rx_stats.query_v3++;
316 break;
317 default:
318 igmp->rx_stats.unsupported++;
319 }
320
321 /*
322 * RFC 3376 defines some guidelines on operating in backwards
323 * compatibility with older versions of IGMP but there are some gaps in
324 * the logic:
325 *
326 * - once we drop from say version 3 to version 2 we will never go back
327 * to version 3 even if the node that TXed an IGMP v2 query upgrades
328 * to v3
329 *
330 * - The node with the lowest IP is the querier so we will only know to
331 * drop from v3 to v2 if the node that is the querier is also the one
332 * that is running igmp v2. If a non-querier only supports igmp v2
333 * we will have no way of knowing.
334 *
335 * For now we will simplify things and inform the user that they need to
336 * configure all PIM routers to use the same version of IGMP.
337 */
338 if (query_version != pim_ifp->igmp_version) {
339 zlog_warn(
340 "Recv IGMP query v%d from %s on %s but we are using v%d, please "
341 "configure all PIM routers on this subnet to use the same "
342 "IGMP version",
343 query_version, from_str, ifp->name,
344 pim_ifp->igmp_version);
345 return 0;
346 }
347
348 if (PIM_DEBUG_IGMP_PACKETS) {
349 char group_str[INET_ADDRSTRLEN];
350 pim_inet4_dump("<group?>", group_addr, group_str,
351 sizeof(group_str));
352 zlog_debug("Recv IGMP query v%d from %s on %s for group %s",
353 query_version, from_str, ifp->name, group_str);
354 }
355
356 /*
357 RFC 3376: 6.6.2. Querier Election
358
359 When a router receives a query with a lower IP address, it sets
360 the Other-Querier-Present timer to Other Querier Present Interval
361 and ceases to send queries on the network if it was the previously
362 elected querier.
363 */
364 if (ntohl(from.s_addr) < ntohl(igmp->ifaddr.s_addr)) {
365
366 if (PIM_DEBUG_IGMP_TRACE) {
367 char ifaddr_str[INET_ADDRSTRLEN];
368 pim_inet4_dump("<ifaddr?>", igmp->ifaddr, ifaddr_str,
369 sizeof(ifaddr_str));
370 zlog_debug(
371 "%s: local address %s (%u) lost querier election to %s (%u)",
372 ifp->name, ifaddr_str,
373 ntohl(igmp->ifaddr.s_addr), from_str,
374 ntohl(from.s_addr));
375 }
376
377 pim_igmp_other_querier_timer_on(igmp);
378 }
379
380 /* IGMP version 3 is the only one where we process the RXed query */
381 if (query_version == 3) {
382 igmp_v3_recv_query(igmp, from_str, igmp_msg);
383 }
384
385 return 0;
386 }
387
388 static void on_trace(const char *label, struct interface *ifp,
389 struct in_addr from)
390 {
391 if (PIM_DEBUG_IGMP_TRACE) {
392 char from_str[INET_ADDRSTRLEN];
393 pim_inet4_dump("<from?>", from, from_str, sizeof(from_str));
394 zlog_debug("%s: from %s on %s", label, from_str, ifp->name);
395 }
396 }
397
398 static int igmp_v1_recv_report(struct igmp_sock *igmp, struct in_addr from,
399 const char *from_str, char *igmp_msg,
400 int igmp_msg_len)
401 {
402 struct interface *ifp = igmp->interface;
403 struct igmp_group *group;
404 struct in_addr group_addr;
405
406 on_trace(__PRETTY_FUNCTION__, igmp->interface, from);
407
408 if (igmp->mtrace_only)
409 return 0;
410
411 if (igmp_msg_len != IGMP_V12_MSG_SIZE) {
412 zlog_warn(
413 "Recv IGMP report v1 from %s on %s: size=%d other than correct=%d",
414 from_str, ifp->name, igmp_msg_len, IGMP_V12_MSG_SIZE);
415 return -1;
416 }
417
418 /* Collecting IGMP Rx stats */
419 igmp->rx_stats.report_v1++;
420
421 if (PIM_DEBUG_IGMP_TRACE) {
422 zlog_warn("%s %s: FIXME WRITEME", __FILE__,
423 __PRETTY_FUNCTION__);
424 }
425
426 memcpy(&group_addr, igmp_msg + 4, sizeof(struct in_addr));
427
428 if (pim_is_group_filtered(ifp->info, &group_addr))
429 return -1;
430
431 /* non-existant group is created as INCLUDE {empty} */
432 group = igmp_add_group_by_addr(igmp, group_addr);
433 if (!group) {
434 return -1;
435 }
436
437 group->last_igmp_v1_report_dsec = pim_time_monotonic_dsec();
438
439 return 0;
440 }
441
442 int pim_igmp_packet(struct igmp_sock *igmp, char *buf, size_t len)
443 {
444 struct ip *ip_hdr;
445 size_t ip_hlen; /* ip header length in bytes */
446 char *igmp_msg;
447 int igmp_msg_len;
448 int msg_type;
449 char from_str[INET_ADDRSTRLEN];
450 char to_str[INET_ADDRSTRLEN];
451
452 if (len < sizeof(*ip_hdr)) {
453 zlog_warn("IGMP packet size=%zu shorter than minimum=%zu", len,
454 sizeof(*ip_hdr));
455 return -1;
456 }
457
458 ip_hdr = (struct ip *)buf;
459
460 pim_inet4_dump("<src?>", ip_hdr->ip_src, from_str, sizeof(from_str));
461 pim_inet4_dump("<dst?>", ip_hdr->ip_dst, to_str, sizeof(to_str));
462
463 ip_hlen = ip_hdr->ip_hl << 2; /* ip_hl gives length in 4-byte words */
464
465 if (PIM_DEBUG_IGMP_PACKETS) {
466 zlog_debug(
467 "Recv IP packet from %s to %s on %s: size=%zu ip_header_size=%zu ip_proto=%d",
468 from_str, to_str, igmp->interface->name, len, ip_hlen,
469 ip_hdr->ip_p);
470 }
471
472 igmp_msg = buf + ip_hlen;
473 msg_type = *igmp_msg;
474 igmp_msg_len = len - ip_hlen;
475
476 if (PIM_DEBUG_IGMP_PACKETS) {
477 zlog_debug(
478 "Recv IGMP packet from %s to %s on %s: ttl=%d msg_type=%d msg_size=%d",
479 from_str, to_str, igmp->interface->name, ip_hdr->ip_ttl,
480 msg_type, igmp_msg_len);
481 }
482
483 if (igmp_msg_len < PIM_IGMP_MIN_LEN) {
484 zlog_warn("IGMP message size=%d shorter than minimum=%d",
485 igmp_msg_len, PIM_IGMP_MIN_LEN);
486 return -1;
487 }
488
489 switch (msg_type) {
490 case PIM_IGMP_MEMBERSHIP_QUERY: {
491 int max_resp_code = igmp_msg[1];
492 int query_version;
493
494 /*
495 RFC 3376: 7.1. Query Version Distinctions
496 IGMPv1 Query: length = 8 octets AND Max Resp Code field is
497 zero
498 IGMPv2 Query: length = 8 octets AND Max Resp Code field is
499 non-zero
500 IGMPv3 Query: length >= 12 octets
501 */
502
503 if (igmp_msg_len == 8) {
504 query_version = max_resp_code ? 2 : 1;
505 } else if (igmp_msg_len >= 12) {
506 query_version = 3;
507 } else {
508 zlog_warn("Unknown IGMP query version");
509 return -1;
510 }
511
512 return igmp_recv_query(igmp, query_version, max_resp_code,
513 ip_hdr->ip_src, from_str, igmp_msg,
514 igmp_msg_len);
515 }
516
517 case PIM_IGMP_V3_MEMBERSHIP_REPORT:
518 return igmp_v3_recv_report(igmp, ip_hdr->ip_src, from_str,
519 igmp_msg, igmp_msg_len);
520
521 case PIM_IGMP_V2_MEMBERSHIP_REPORT:
522 return igmp_v2_recv_report(igmp, ip_hdr->ip_src, from_str,
523 igmp_msg, igmp_msg_len);
524
525 case PIM_IGMP_V1_MEMBERSHIP_REPORT:
526 return igmp_v1_recv_report(igmp, ip_hdr->ip_src, from_str,
527 igmp_msg, igmp_msg_len);
528
529 case PIM_IGMP_V2_LEAVE_GROUP:
530 return igmp_v2_recv_leave(igmp, ip_hdr->ip_src, from_str,
531 igmp_msg, igmp_msg_len);
532
533 case PIM_IGMP_MTRACE_RESPONSE:
534 return igmp_mtrace_recv_response(igmp, ip_hdr, ip_hdr->ip_src,
535 from_str, igmp_msg,
536 igmp_msg_len);
537 case PIM_IGMP_MTRACE_QUERY_REQUEST:
538 return igmp_mtrace_recv_qry_req(igmp, ip_hdr, ip_hdr->ip_src,
539 from_str, igmp_msg,
540 igmp_msg_len);
541 }
542
543 zlog_warn("Ignoring unsupported IGMP message type: %d", msg_type);
544
545 /* Collecting IGMP Rx stats */
546 igmp->rx_stats.unsupported++;
547
548 return -1;
549 }
550
551 void pim_igmp_general_query_on(struct igmp_sock *igmp)
552 {
553 struct pim_interface *pim_ifp;
554 int startup_mode;
555 int query_interval;
556
557 /*
558 Since this socket is starting as querier,
559 there should not exist a timer for other-querier-present.
560 */
561 zassert(!igmp->t_other_querier_timer);
562 pim_ifp = igmp->interface->info;
563 zassert(pim_ifp);
564
565 /*
566 RFC 3376: 8.6. Startup Query Interval
567
568 The Startup Query Interval is the interval between General Queries
569 sent by a Querier on startup. Default: 1/4 the Query Interval.
570 The first one should be sent out immediately instead of 125/4
571 seconds from now.
572 */
573 startup_mode = igmp->startup_query_count > 0;
574 if (startup_mode) {
575 /*
576 * If this is the first time we are sending a query on a
577 * newly configured igmp interface send it out in 1 second
578 * just to give the entire world a tiny bit of time to settle
579 * else the query interval is:
580 * query_interval = pim_ifp->igmp_default_query_interval >> 2;
581 */
582 if (igmp->startup_query_count
583 == igmp->querier_robustness_variable)
584 query_interval = 1;
585 else
586 query_interval = PIM_IGMP_SQI(
587 pim_ifp->igmp_default_query_interval);
588
589 --igmp->startup_query_count;
590 } else {
591 query_interval = igmp->querier_query_interval;
592 }
593
594 if (PIM_DEBUG_IGMP_TRACE) {
595 char ifaddr_str[INET_ADDRSTRLEN];
596 pim_inet4_dump("<ifaddr?>", igmp->ifaddr, ifaddr_str,
597 sizeof(ifaddr_str));
598 zlog_debug(
599 "Querier %s scheduling %d-second (%s) TIMER event for IGMP query on fd=%d",
600 ifaddr_str, query_interval,
601 startup_mode ? "startup" : "non-startup", igmp->fd);
602 }
603 igmp->t_igmp_query_timer = NULL;
604 thread_add_timer(master, pim_igmp_general_query, igmp, query_interval,
605 &igmp->t_igmp_query_timer);
606 }
607
608 void pim_igmp_general_query_off(struct igmp_sock *igmp)
609 {
610 zassert(igmp);
611
612 if (PIM_DEBUG_IGMP_TRACE) {
613 if (igmp->t_igmp_query_timer) {
614 char ifaddr_str[INET_ADDRSTRLEN];
615 pim_inet4_dump("<ifaddr?>", igmp->ifaddr, ifaddr_str,
616 sizeof(ifaddr_str));
617 zlog_debug(
618 "IGMP querier %s fd=%d cancelling query TIMER event on %s",
619 ifaddr_str, igmp->fd, igmp->interface->name);
620 }
621 }
622 THREAD_OFF(igmp->t_igmp_query_timer);
623 }
624
625 /* Issue IGMP general query */
626 static int pim_igmp_general_query(struct thread *t)
627 {
628 struct igmp_sock *igmp;
629 struct in_addr dst_addr;
630 struct in_addr group_addr;
631 struct pim_interface *pim_ifp;
632 int query_buf_size;
633
634 igmp = THREAD_ARG(t);
635
636 zassert(igmp->interface);
637 zassert(igmp->interface->info);
638
639 pim_ifp = igmp->interface->info;
640
641 if (pim_ifp->igmp_version == 3) {
642 query_buf_size = PIM_IGMP_BUFSIZE_WRITE;
643 } else {
644 query_buf_size = IGMP_V12_MSG_SIZE;
645 }
646
647 char query_buf[query_buf_size];
648
649 /*
650 RFC3376: 4.1.12. IP Destination Addresses for Queries
651
652 In IGMPv3, General Queries are sent with an IP destination address
653 of 224.0.0.1, the all-systems multicast address. Group-Specific
654 and Group-and-Source-Specific Queries are sent with an IP
655 destination address equal to the multicast address of interest.
656 */
657
658 dst_addr.s_addr = htonl(INADDR_ALLHOSTS_GROUP);
659 group_addr.s_addr = PIM_NET_INADDR_ANY;
660
661 if (PIM_DEBUG_IGMP_TRACE) {
662 char querier_str[INET_ADDRSTRLEN];
663 char dst_str[INET_ADDRSTRLEN];
664 pim_inet4_dump("<querier?>", igmp->ifaddr, querier_str,
665 sizeof(querier_str));
666 pim_inet4_dump("<dst?>", dst_addr, dst_str, sizeof(dst_str));
667 zlog_debug("Querier %s issuing IGMP general query to %s on %s",
668 querier_str, dst_str, igmp->interface->name);
669 }
670
671 igmp_send_query(pim_ifp->igmp_version, 0 /* igmp_group */, igmp->fd,
672 igmp->interface->name, query_buf, sizeof(query_buf),
673 0 /* num_sources */, dst_addr, group_addr,
674 pim_ifp->igmp_query_max_response_time_dsec,
675 1 /* s_flag: always set for general queries */,
676 igmp->querier_robustness_variable,
677 igmp->querier_query_interval);
678
679 pim_igmp_general_query_on(igmp);
680
681 return 0;
682 }
683
684 static void sock_close(struct igmp_sock *igmp)
685 {
686 pim_igmp_other_querier_timer_off(igmp);
687 pim_igmp_general_query_off(igmp);
688
689 if (PIM_DEBUG_IGMP_TRACE_DETAIL) {
690 if (igmp->t_igmp_read) {
691 zlog_debug(
692 "Cancelling READ event on IGMP socket %s fd=%d on interface %s",
693 inet_ntoa(igmp->ifaddr), igmp->fd,
694 igmp->interface->name);
695 }
696 }
697 THREAD_OFF(igmp->t_igmp_read);
698
699 if (close(igmp->fd)) {
700 zlog_err(
701 "Failure closing IGMP socket %s fd=%d on interface %s: errno=%d: %s",
702 inet_ntoa(igmp->ifaddr), igmp->fd,
703 igmp->interface->name, errno, safe_strerror(errno));
704 }
705
706 if (PIM_DEBUG_IGMP_TRACE_DETAIL) {
707 zlog_debug("Deleted IGMP socket %s fd=%d on interface %s",
708 inet_ntoa(igmp->ifaddr), igmp->fd,
709 igmp->interface->name);
710 }
711 }
712
713 void igmp_startup_mode_on(struct igmp_sock *igmp)
714 {
715 struct pim_interface *pim_ifp;
716
717 pim_ifp = igmp->interface->info;
718
719 /*
720 RFC 3376: 8.7. Startup Query Count
721
722 The Startup Query Count is the number of Queries sent out on
723 startup, separated by the Startup Query Interval. Default: the
724 Robustness Variable.
725 */
726 igmp->startup_query_count = igmp->querier_robustness_variable;
727
728 /*
729 Since we're (re)starting, reset QQI to default Query Interval
730 */
731 igmp->querier_query_interval = pim_ifp->igmp_default_query_interval;
732 }
733
734 static void igmp_group_free(struct igmp_group *group)
735 {
736 list_delete_and_null(&group->group_source_list);
737
738 XFREE(MTYPE_PIM_IGMP_GROUP, group);
739 }
740
741 static void igmp_group_delete(struct igmp_group *group)
742 {
743 struct listnode *src_node;
744 struct listnode *src_nextnode;
745 struct igmp_source *src;
746
747 if (PIM_DEBUG_IGMP_TRACE) {
748 char group_str[INET_ADDRSTRLEN];
749 pim_inet4_dump("<group?>", group->group_addr, group_str,
750 sizeof(group_str));
751 zlog_debug("Deleting IGMP group %s from socket %d interface %s",
752 group_str, group->group_igmp_sock->fd,
753 group->group_igmp_sock->interface->name);
754 }
755
756 for (ALL_LIST_ELEMENTS(group->group_source_list, src_node, src_nextnode,
757 src)) {
758 igmp_source_delete(src);
759 }
760
761 if (group->t_group_query_retransmit_timer) {
762 THREAD_OFF(group->t_group_query_retransmit_timer);
763 }
764
765 group_timer_off(group);
766 listnode_delete(group->group_igmp_sock->igmp_group_list, group);
767 hash_release(group->group_igmp_sock->igmp_group_hash, group);
768
769 igmp_group_free(group);
770 }
771
772 void igmp_group_delete_empty_include(struct igmp_group *group)
773 {
774 zassert(!group->group_filtermode_isexcl);
775 zassert(!listcount(group->group_source_list));
776
777 igmp_group_delete(group);
778 }
779
780 void igmp_sock_free(struct igmp_sock *igmp)
781 {
782 zassert(!igmp->t_igmp_read);
783 zassert(!igmp->t_igmp_query_timer);
784 zassert(!igmp->t_other_querier_timer);
785 zassert(igmp->igmp_group_list);
786 zassert(!listcount(igmp->igmp_group_list));
787
788 list_delete_and_null(&igmp->igmp_group_list);
789 hash_free(igmp->igmp_group_hash);
790
791 XFREE(MTYPE_PIM_IGMP_SOCKET, igmp);
792 }
793
794 void igmp_sock_delete(struct igmp_sock *igmp)
795 {
796 struct pim_interface *pim_ifp;
797 struct listnode *grp_node;
798 struct listnode *grp_nextnode;
799 struct igmp_group *grp;
800
801 for (ALL_LIST_ELEMENTS(igmp->igmp_group_list, grp_node, grp_nextnode,
802 grp)) {
803 igmp_group_delete(grp);
804 }
805
806 sock_close(igmp);
807
808 pim_ifp = igmp->interface->info;
809
810 listnode_delete(pim_ifp->igmp_socket_list, igmp);
811
812 igmp_sock_free(igmp);
813 }
814
815 void igmp_sock_delete_all(struct interface *ifp)
816 {
817 struct pim_interface *pim_ifp;
818 struct listnode *igmp_node, *igmp_nextnode;
819 struct igmp_sock *igmp;
820
821 pim_ifp = ifp->info;
822
823 for (ALL_LIST_ELEMENTS(pim_ifp->igmp_socket_list, igmp_node,
824 igmp_nextnode, igmp)) {
825 igmp_sock_delete(igmp);
826 }
827 }
828
829 static unsigned int igmp_group_hash_key(void *arg)
830 {
831 struct igmp_group *group = (struct igmp_group *)arg;
832
833 return jhash_1word(group->group_addr.s_addr, 0);
834 }
835
836 static int igmp_group_hash_equal(const void *arg1, const void *arg2)
837 {
838 const struct igmp_group *g1 = (const struct igmp_group *)arg1;
839 const struct igmp_group *g2 = (const struct igmp_group *)arg2;
840
841 if (g1->group_addr.s_addr == g2->group_addr.s_addr)
842 return 1;
843
844 return 0;
845 }
846
847 static struct igmp_sock *igmp_sock_new(int fd, struct in_addr ifaddr,
848 struct interface *ifp, int mtrace_only)
849 {
850 struct pim_interface *pim_ifp;
851 struct igmp_sock *igmp;
852 char hash_name[64];
853
854 pim_ifp = ifp->info;
855
856 if (PIM_DEBUG_IGMP_TRACE) {
857 zlog_debug(
858 "Creating IGMP socket fd=%d for address %s on interface %s",
859 fd, inet_ntoa(ifaddr), ifp->name);
860 }
861
862 igmp = XCALLOC(MTYPE_PIM_IGMP_SOCKET, sizeof(*igmp));
863 if (!igmp) {
864 zlog_warn("%s %s: XCALLOC() failure", __FILE__,
865 __PRETTY_FUNCTION__);
866 return 0;
867 }
868
869 igmp->igmp_group_list = list_new();
870 if (!igmp->igmp_group_list) {
871 zlog_err("%s %s: failure: igmp_group_list = list_new()",
872 __FILE__, __PRETTY_FUNCTION__);
873 return 0;
874 }
875 igmp->igmp_group_list->del = (void (*)(void *))igmp_group_free;
876
877 snprintf(hash_name, 64, "IGMP %s hash", ifp->name);
878 igmp->igmp_group_hash = hash_create(igmp_group_hash_key,
879 igmp_group_hash_equal, hash_name);
880
881 igmp->fd = fd;
882 igmp->interface = ifp;
883 igmp->ifaddr = ifaddr;
884 igmp->t_igmp_read = NULL;
885 igmp->t_igmp_query_timer = NULL;
886 igmp->t_other_querier_timer = NULL; /* no other querier present */
887 igmp->querier_robustness_variable =
888 pim_ifp->igmp_default_robustness_variable;
889 igmp->sock_creation = pim_time_monotonic_sec();
890
891 igmp_stats_init(&igmp->rx_stats);
892
893 if (mtrace_only) {
894 igmp->mtrace_only = mtrace_only;
895 return igmp;
896 }
897
898 igmp->mtrace_only = false;
899
900 /*
901 igmp_startup_mode_on() will reset QQI:
902
903 igmp->querier_query_interval = pim_ifp->igmp_default_query_interval;
904 */
905 igmp_startup_mode_on(igmp);
906 pim_igmp_general_query_on(igmp);
907
908 return igmp;
909 }
910
911 static void igmp_read_on(struct igmp_sock *igmp);
912
913 static int pim_igmp_read(struct thread *t)
914 {
915 uint8_t buf[10000];
916 struct igmp_sock *igmp = (struct igmp_sock *)THREAD_ARG(t);
917 struct sockaddr_in from;
918 struct sockaddr_in to;
919 socklen_t fromlen = sizeof(from);
920 socklen_t tolen = sizeof(to);
921 ifindex_t ifindex = -1;
922 int cont = 1;
923 int len;
924
925 while (cont) {
926 len = pim_socket_recvfromto(igmp->fd, buf, sizeof(buf), &from,
927 &fromlen, &to, &tolen, &ifindex);
928 if (len < 0) {
929 if (errno == EINTR)
930 continue;
931 if (errno == EWOULDBLOCK || errno == EAGAIN)
932 break;
933
934 goto done;
935 }
936 }
937
938 done:
939 igmp_read_on(igmp);
940 return 0;
941 }
942
943 static void igmp_read_on(struct igmp_sock *igmp)
944 {
945
946 if (PIM_DEBUG_IGMP_TRACE_DETAIL) {
947 zlog_debug("Scheduling READ event on IGMP socket fd=%d",
948 igmp->fd);
949 }
950 igmp->t_igmp_read = NULL;
951 thread_add_read(master, pim_igmp_read, igmp, igmp->fd,
952 &igmp->t_igmp_read);
953 }
954
955 struct igmp_sock *pim_igmp_sock_add(struct list *igmp_sock_list,
956 struct in_addr ifaddr,
957 struct interface *ifp,
958 bool mtrace_only)
959 {
960 struct pim_interface *pim_ifp;
961 struct igmp_sock *igmp;
962 int fd;
963
964 pim_ifp = ifp->info;
965
966 fd = igmp_sock_open(ifaddr, ifp, pim_ifp->options);
967 if (fd < 0) {
968 zlog_warn("Could not open IGMP socket for %s on %s",
969 inet_ntoa(ifaddr), ifp->name);
970 return 0;
971 }
972
973 igmp = igmp_sock_new(fd, ifaddr, ifp, mtrace_only);
974 if (!igmp) {
975 zlog_err("%s %s: igmp_sock_new() failure", __FILE__,
976 __PRETTY_FUNCTION__);
977 close(fd);
978 return 0;
979 }
980
981 igmp_read_on(igmp);
982
983 listnode_add(igmp_sock_list, igmp);
984
985 #ifdef IGMP_SOCK_DUMP
986 igmp_sock_dump(igmp_sock_array);
987 #endif
988
989 return igmp;
990 }
991
992 /*
993 RFC 3376: 6.5. Switching Router Filter-Modes
994
995 When a router's filter-mode for a group is EXCLUDE and the group
996 timer expires, the router filter-mode for the group transitions to
997 INCLUDE.
998
999 A router uses source records with running source timers as its state
1000 for the switch to a filter-mode of INCLUDE. If there are any source
1001 records with source timers greater than zero (i.e., requested to be
1002 forwarded), a router switches to filter-mode of INCLUDE using those
1003 source records. Source records whose timers are zero (from the
1004 previous EXCLUDE mode) are deleted.
1005 */
1006 static int igmp_group_timer(struct thread *t)
1007 {
1008 struct igmp_group *group;
1009
1010 group = THREAD_ARG(t);
1011
1012 if (PIM_DEBUG_IGMP_TRACE) {
1013 char group_str[INET_ADDRSTRLEN];
1014 pim_inet4_dump("<group?>", group->group_addr, group_str,
1015 sizeof(group_str));
1016 zlog_debug("%s: Timer for group %s on interface %s",
1017 __PRETTY_FUNCTION__, group_str,
1018 group->group_igmp_sock->interface->name);
1019 }
1020
1021 zassert(group->group_filtermode_isexcl);
1022
1023 group->group_filtermode_isexcl = 0;
1024
1025 /* Any source (*,G) is forwarded only if mode is EXCLUDE {empty} */
1026 igmp_anysource_forward_stop(group);
1027
1028 igmp_source_delete_expired(group->group_source_list);
1029
1030 zassert(!group->group_filtermode_isexcl);
1031
1032 /*
1033 RFC 3376: 6.2.2. Definition of Group Timers
1034
1035 If there are no more source records for the group, delete group
1036 record.
1037 */
1038 if (listcount(group->group_source_list) < 1) {
1039 igmp_group_delete_empty_include(group);
1040 }
1041
1042 return 0;
1043 }
1044
1045 static void group_timer_off(struct igmp_group *group)
1046 {
1047 if (!group->t_group_timer)
1048 return;
1049
1050 if (PIM_DEBUG_IGMP_TRACE) {
1051 char group_str[INET_ADDRSTRLEN];
1052 pim_inet4_dump("<group?>", group->group_addr, group_str,
1053 sizeof(group_str));
1054 zlog_debug("Cancelling TIMER event for group %s on %s",
1055 group_str, group->group_igmp_sock->interface->name);
1056 }
1057 THREAD_OFF(group->t_group_timer);
1058 }
1059
1060 void igmp_group_timer_on(struct igmp_group *group, long interval_msec,
1061 const char *ifname)
1062 {
1063 group_timer_off(group);
1064
1065 if (PIM_DEBUG_IGMP_EVENTS) {
1066 char group_str[INET_ADDRSTRLEN];
1067 pim_inet4_dump("<group?>", group->group_addr, group_str,
1068 sizeof(group_str));
1069 zlog_debug(
1070 "Scheduling %ld.%03ld sec TIMER event for group %s on %s",
1071 interval_msec / 1000, interval_msec % 1000, group_str,
1072 ifname);
1073 }
1074
1075 /*
1076 RFC 3376: 6.2.2. Definition of Group Timers
1077
1078 The group timer is only used when a group is in EXCLUDE mode and
1079 it represents the time for the *filter-mode* of the group to
1080 expire and switch to INCLUDE mode.
1081 */
1082 zassert(group->group_filtermode_isexcl);
1083
1084 thread_add_timer_msec(master, igmp_group_timer, group, interval_msec,
1085 &group->t_group_timer);
1086 }
1087
1088 struct igmp_group *find_group_by_addr(struct igmp_sock *igmp,
1089 struct in_addr group_addr)
1090 {
1091 struct igmp_group lookup;
1092
1093 lookup.group_addr.s_addr = group_addr.s_addr;
1094
1095 return hash_lookup(igmp->igmp_group_hash, &lookup);
1096 }
1097
1098 struct igmp_group *igmp_add_group_by_addr(struct igmp_sock *igmp,
1099 struct in_addr group_addr)
1100 {
1101 struct igmp_group *group;
1102
1103 group = find_group_by_addr(igmp, group_addr);
1104 if (group) {
1105 return group;
1106 }
1107
1108 if (!pim_is_group_224_4(group_addr)) {
1109 zlog_warn("%s: Group Specified is not part of 224.0.0.0/4",
1110 __PRETTY_FUNCTION__);
1111 return NULL;
1112 }
1113
1114 if (pim_is_group_224_0_0_0_24(group_addr)) {
1115 zlog_warn("%s: Group specified is part of 224.0.0.0/24",
1116 __PRETTY_FUNCTION__);
1117 return NULL;
1118 }
1119 /*
1120 Non-existant group is created as INCLUDE {empty}:
1121
1122 RFC 3376 - 5.1. Action on Change of Interface State
1123
1124 If no interface state existed for that multicast address before
1125 the change (i.e., the change consisted of creating a new
1126 per-interface record), or if no state exists after the change
1127 (i.e., the change consisted of deleting a per-interface record),
1128 then the "non-existent" state is considered to have a filter mode
1129 of INCLUDE and an empty source list.
1130 */
1131
1132 group = XCALLOC(MTYPE_PIM_IGMP_GROUP, sizeof(*group));
1133 if (!group) {
1134 zlog_warn("%s %s: XCALLOC() failure", __FILE__,
1135 __PRETTY_FUNCTION__);
1136 return NULL; /* error, not found, could not create */
1137 }
1138
1139 group->group_source_list = list_new();
1140 if (!group->group_source_list) {
1141 zlog_warn("%s %s: list_new() failure", __FILE__,
1142 __PRETTY_FUNCTION__);
1143 XFREE(MTYPE_PIM_IGMP_GROUP, group); /* discard group */
1144 return NULL; /* error, not found, could not initialize */
1145 }
1146 group->group_source_list->del = (void (*)(void *))igmp_source_free;
1147
1148 group->t_group_timer = NULL;
1149 group->t_group_query_retransmit_timer = NULL;
1150 group->group_specific_query_retransmit_count = 0;
1151 group->group_addr = group_addr;
1152 group->group_igmp_sock = igmp;
1153 group->last_igmp_v1_report_dsec = -1;
1154 group->last_igmp_v2_report_dsec = -1;
1155 group->group_creation = pim_time_monotonic_sec();
1156 group->igmp_version = IGMP_DEFAULT_VERSION;
1157
1158 /* initialize new group as INCLUDE {empty} */
1159 group->group_filtermode_isexcl = 0; /* 0=INCLUDE, 1=EXCLUDE */
1160
1161 listnode_add(igmp->igmp_group_list, group);
1162 group = hash_get(igmp->igmp_group_hash, group, hash_alloc_intern);
1163
1164 if (PIM_DEBUG_IGMP_TRACE) {
1165 char group_str[INET_ADDRSTRLEN];
1166 pim_inet4_dump("<group?>", group->group_addr, group_str,
1167 sizeof(group_str));
1168 zlog_debug(
1169 "Creating new IGMP group %s on socket %d interface %s",
1170 group_str, igmp->fd, igmp->interface->name);
1171 }
1172
1173 /*
1174 RFC 3376: 6.2.2. Definition of Group Timers
1175
1176 The group timer is only used when a group is in EXCLUDE mode and
1177 it represents the time for the *filter-mode* of the group to
1178 expire and switch to INCLUDE mode.
1179 */
1180 zassert(!group->group_filtermode_isexcl); /* INCLUDE mode */
1181 zassert(!group->t_group_timer); /* group timer == 0 */
1182
1183 /* Any source (*,G) is forwarded only if mode is EXCLUDE {empty} */
1184 igmp_anysource_forward_stop(group);
1185
1186 return group;
1187 }
1188
1189 void igmp_send_query(int igmp_version, struct igmp_group *group, int fd,
1190 const char *ifname, char *query_buf, int query_buf_size,
1191 int num_sources, struct in_addr dst_addr,
1192 struct in_addr group_addr,
1193 int query_max_response_time_dsec, uint8_t s_flag,
1194 uint8_t querier_robustness_variable,
1195 uint16_t querier_query_interval)
1196 {
1197 if (igmp_version == 3) {
1198 igmp_v3_send_query(group, fd, ifname, query_buf, query_buf_size,
1199 num_sources, dst_addr, group_addr,
1200 query_max_response_time_dsec, s_flag,
1201 querier_robustness_variable,
1202 querier_query_interval);
1203 } else if (igmp_version == 2) {
1204 igmp_v2_send_query(group, fd, ifname, query_buf, dst_addr,
1205 group_addr, query_max_response_time_dsec);
1206 }
1207 }