Blame SOURCES/0005-igmp-trusted-query.patch

715177
From ff4516227cc48b3175106a419f43b8fc9eee3710 Mon Sep 17 00:00:00 2001
715177
From: Donald Sharp <sharpd@cumulusnetworks.com>
715177
Date: Tue, 25 Jun 2019 00:30:11 -0400
715177
Subject: [PATCH] pimd: Dissallow query to be received from a non-connected
715177
 source
715177
715177
When we receive an igmp query on a interface, ensure that the
715177
source address of the packet is connected to the incoming
715177
interface.  This will prevent a meanie from crafting a igmp
715177
packet with a source address less than ours and causing
715177
us to suspend query activities.
715177
715177
Fixes: #1692
715177
Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
715177
---
715177
 pimd/pim_igmp.c | 7 +++++++
715177
 1 file changed, 7 insertions(+)
715177
715177
diff --git a/pimd/pim_igmp.c b/pimd/pim_igmp.c
715177
index 270f1e3f27..5beabbd8df 100644
715177
--- a/pimd/pim_igmp.c
715177
+++ b/pimd/pim_igmp.c
715177
@@ -305,6 +305,13 @@ static int igmp_recv_query(struct igmp_sock *igmp, int query_version,
715177
 		return -1;
715177
 	}
715177
 
715177
+	if (!pim_if_connected_to_source(ifp, from)) {
715177
+		if (PIM_DEBUG_IGMP_PACKETS)
715177
+			zlog_debug("Recv IGMP query on interface: %s from a non-connected source: %s",
715177
+				   ifp->name, from_str);
715177
+		return 0;
715177
+	}
715177
+
715177
 	/* Collecting IGMP Rx stats */
715177
 	switch (query_version) {
715177
 	case 1: