Blame SOURCES/bz2133682-IPsrcaddr-proto-metric-scope-default-route-fixes.patch

a893af
From 237d55120a7c8d761f839c96651e722b3bb3bc88 Mon Sep 17 00:00:00 2001
a893af
From: Oyvind Albrigtsen <oalbrigt@redhat.com>
a893af
Date: Wed, 12 Oct 2022 13:57:30 +0200
a893af
Subject: [PATCH 1/4] IPsrcaddr: fix PROTO regex
a893af
a893af
---
a893af
 heartbeat/IPsrcaddr | 2 +-
a893af
 1 file changed, 1 insertion(+), 1 deletion(-)
a893af
a893af
diff --git a/heartbeat/IPsrcaddr b/heartbeat/IPsrcaddr
a893af
index 7dbf65ff5..24406d296 100755
a893af
--- a/heartbeat/IPsrcaddr
a893af
+++ b/heartbeat/IPsrcaddr
a893af
@@ -188,7 +188,7 @@ IPADDR="\($OCTET\.\)\{3\}$OCTET"
a893af
 SRCCLAUSE="src$WS$WS*\($IPADDR\)"
a893af
 MATCHROUTE="\(.*${WS}\)\($SRCCLAUSE\)\($WS.*\|$\)"
a893af
 METRICCLAUSE=".*\(metric$WS[^ ]\+\)"
a893af
-PROTOCLAUSE=".*\(proto$WS[^ ]\+\)"
a893af
+PROTOCLAUSE=".*\(proto$WS[^ ]\+\).*"
a893af
 FINDIF=findif
a893af
 
a893af
 # findif needs that to be set
a893af
a893af
From c70ba457851a401cb201cb87d23bdbc5f4fcd2b3 Mon Sep 17 00:00:00 2001
a893af
From: Oyvind Albrigtsen <oalbrigt@redhat.com>
a893af
Date: Wed, 12 Oct 2022 14:00:30 +0200
a893af
Subject: [PATCH 2/4] IPsrcaddr: detect metric for main table only, and allow
a893af
 specifying metric if necessary
a893af
a893af
---
a893af
 heartbeat/IPsrcaddr | 18 +++++++++++++++++-
a893af
 1 file changed, 17 insertions(+), 1 deletion(-)
a893af
a893af
diff --git a/heartbeat/IPsrcaddr b/heartbeat/IPsrcaddr
a893af
index 24406d296..4745eb8a7 100755
a893af
--- a/heartbeat/IPsrcaddr
a893af
+++ b/heartbeat/IPsrcaddr
a893af
@@ -59,12 +59,14 @@ OCF_RESKEY_ipaddress_default=""
a893af
 OCF_RESKEY_cidr_netmask_default=""
a893af
 OCF_RESKEY_destination_default="0.0.0.0/0"
a893af
 OCF_RESKEY_proto_default=""
a893af
+OCF_RESKEY_metric_default=""
a893af
 OCF_RESKEY_table_default=""
a893af
 
a893af
 : ${OCF_RESKEY_ipaddress=${OCF_RESKEY_ipaddress_default}}
a893af
 : ${OCF_RESKEY_cidr_netmask=${OCF_RESKEY_cidr_netmask_default}}
a893af
 : ${OCF_RESKEY_destination=${OCF_RESKEY_destination_default}}
a893af
 : ${OCF_RESKEY_proto=${OCF_RESKEY_proto_default}}
a893af
+: ${OCF_RESKEY_metric=${OCF_RESKEY_metric_default}}
a893af
 : ${OCF_RESKEY_table=${OCF_RESKEY_table_default}}
a893af
 #######################################################################
a893af
 
a893af
@@ -143,6 +145,14 @@ Proto to match when finding network. E.g. "kernel".
a893af
 <content type="string" default="${OCF_RESKEY_proto_default}" />
a893af
 </parameter>
a893af
 
a893af
+<parameter name="metric">
a893af
+<longdesc lang="en">
a893af
+Metric. Only needed if incorrect metric value is used.
a893af
+</longdesc>
a893af
+<shortdesc lang="en">Metric</shortdesc>
a893af
+<content type="string" default="${OCF_RESKEY_metric_default}" />
a893af
+</parameter>
a893af
+
a893af
 <parameter name="table">
a893af
 <longdesc lang="en">
a893af
 Table to modify. E.g. "local".
a893af
@@ -548,8 +558,14 @@ rc=$?
a893af
 
a893af
 INTERFACE=`echo $findif_out | awk '{print $1}'`
a893af
 LISTROUTE=`$IP2UTIL route list dev $INTERFACE scope link $PROTO match $ipaddress`
a893af
-METRIC=`echo $LISTROUTE | sed -n "s/$METRICCLAUSE/\1/p"`
a893af
 [ -z "$PROTO" ] && PROTO=`echo $LISTROUTE | sed -n "s/$PROTOCLAUSE/\1/p"`
a893af
+if [ -n "$OCF_RESKEY_metric" ]; then
a893af
+	METRIC="metric $OCF_RESKEY_metric"
a893af
+elif [ -z "$TABLE" ] || [ "${TABLE#table }" = "main" ]; then
a893af
+	METRIC=`echo $LISTROUTE | sed -n "s/$METRICCLAUSE/\1/p"`
a893af
+else
a893af
+	METRIC=""
a893af
+fi
a893af
 if [ "$OCF_RESKEY_destination" = "0.0.0.0/0" ] ;then
a893af
 	NETWORK=`echo $LISTROUTE | grep -m 1 -o '^[^ ]*'`
a893af
 
a893af
a893af
From c514f12f7a19440f475938f2a4659e5e9667fa25 Mon Sep 17 00:00:00 2001
a893af
From: Oyvind Albrigtsen <oalbrigt@redhat.com>
a893af
Date: Wed, 12 Oct 2022 14:01:26 +0200
a893af
Subject: [PATCH 3/4] IPsrcaddr: use scope host when using non-main tables
a893af
a893af
---
a893af
 heartbeat/IPsrcaddr | 8 +++++++-
a893af
 1 file changed, 7 insertions(+), 1 deletion(-)
a893af
a893af
diff --git a/heartbeat/IPsrcaddr b/heartbeat/IPsrcaddr
a893af
index 4745eb8a7..926246008 100755
a893af
--- a/heartbeat/IPsrcaddr
a893af
+++ b/heartbeat/IPsrcaddr
a893af
@@ -279,8 +279,14 @@ srca_stop() {
a893af
 	  
a893af
 	[ $rc = 2 ] && errorexit "The address you specified to stop does not match the preferred source address"
a893af
 
a893af
+	if [ -z "$TABLE" ] || [ "${TABLE#table }" = "main" ]; then
a893af
+		SCOPE="link"
a893af
+	else
a893af
+		SCOPE="host"
a893af
+	fi
a893af
+
a893af
 	PRIMARY_IP="$($IP2UTIL -4 -o addr show dev $INTERFACE primary | awk '{split($4,a,"/");print a[1]}')"
a893af
-	OPTS="proto kernel scope link src $PRIMARY_IP"
a893af
+	OPTS="proto kernel scope $SCOPE src $PRIMARY_IP"
a893af
 
a893af
 	$IP2UTIL route replace $TABLE $NETWORK dev $INTERFACE $OPTS $METRIC || \
a893af
 		errorexit "command 'ip route replace $TABLE $NETWORK dev $INTERFACE $OPTS $METRIC' failed"
a893af
a893af
From 1f387ac8017b3eee23b41eadafd58ce21a29eb21 Mon Sep 17 00:00:00 2001
a893af
From: Oyvind Albrigtsen <oalbrigt@redhat.com>
a893af
Date: Thu, 13 Oct 2022 13:11:28 +0200
a893af
Subject: [PATCH 4/4] IPsrcaddr: fix monitor/status for default route not being
a893af
 equal to src IP before start, and change route src correctly in stop-action
a893af
a893af
---
a893af
 heartbeat/IPsrcaddr | 5 +++--
a893af
 1 file changed, 3 insertions(+), 2 deletions(-)
a893af
a893af
diff --git a/heartbeat/IPsrcaddr b/heartbeat/IPsrcaddr
a893af
index 926246008..1bd41a930 100755
a893af
--- a/heartbeat/IPsrcaddr
a893af
+++ b/heartbeat/IPsrcaddr
a893af
@@ -229,6 +229,7 @@ srca_read() {
a893af
 
a893af
 	[ -z "$SRCIP" ] && return 1
a893af
 	[ $SRCIP = $1 ] && return 0
a893af
+	[ "$__OCF_ACTION" = "monitor" ] || [ "$__OCF_ACTION" = "status" ] && [ "${ROUTE%% *}" = "default" ] && return 1
a893af
 	return 2
a893af
 }
a893af
 
a893af
@@ -292,8 +293,8 @@ srca_stop() {
a893af
 		errorexit "command 'ip route replace $TABLE $NETWORK dev $INTERFACE $OPTS $METRIC' failed"
a893af
 
a893af
 	if [ "$OCF_RESKEY_destination" = "0.0.0.0/0" ] ;then
a893af
-		$CMDCHANGE $ROUTE_WO_SRC || \
a893af
-			errorexit "command '$CMDCHANGE $ROUTE_WO_SRC' failed"
a893af
+		$CMDCHANGE $ROUTE_WO_SRC src $PRIMARY_IP || \
a893af
+			errorexit "command '$CMDCHANGE $ROUTE_WO_SRC src $PRIMARY_IP' failed"
a893af
 	fi
a893af
 
a893af
 	return $?