public inbox for network@lists.ipfire.org
 help / color / mirror / Atom feed
* [PATCH] IPsec: Fix routing
@ 2018-03-01 15:15 Jonatan Schlag
  2018-03-01 21:06 ` Michael Tremer
  0 siblings, 1 reply; 2+ messages in thread
From: Jonatan Schlag @ 2018-03-01 15:15 UTC (permalink / raw)
  To: network

[-- Attachment #1: Type: text/plain, Size: 2537 bytes --]

Based on the examples found in strongswan
we need to specific the source IP for our routes through an IPsec VPN.
If we have no source IP (a router can route packages
which do not belong to the network assigned to our zones) we set no routes,
but clients can still use the tunnel.

For IPsec VPNs in tunnel mode we
also need the device which has the ${PLUTO_ME} IP address asigned.

The source IP  is determined ip_get_assigned_addresses_from_net()
the device is determined by the  device_get_by_ip_address() function.

For tunnel mode see:
https://www.strongswan.org/testing/testresults/ipv6-stroke/net2net-ip4-in-ip6-ikev2/moon.ip.route

Fixes: #11629

Signed-off-by: Jonatan Schlag <jonatan.schlag(a)ipfire.org>
---
 src/helpers/ipsec-updown | 46 +++++++++++++++++++++++++++++++++++++++-------
 1 file changed, 39 insertions(+), 7 deletions(-)

diff --git a/src/helpers/ipsec-updown b/src/helpers/ipsec-updown
index 12ead03..3764085 100644
--- a/src/helpers/ipsec-updown
+++ b/src/helpers/ipsec-updown
@@ -86,13 +86,45 @@ case "${PLUTO_VERB}" in
 				;;
 		esac
 
-		# Set routes
-		if isset INTERFACE; then
-			cmd ip route add "${PLUTO_PEER_CLIENT}" \
-				dev "${INTERFACE}"
-		else
-			cmd ip route add "${PLUTO_PEER_CLIENT}" \
-				via "${PLUTO_PEER}"
+		#Get sources IP for routes
+		SRC_IP=($(ip_get_assigned_addresses_from_net \
+			"${PLUTO_MY_CLIENT}" "permanent"))
+
+		# Set routes if we have a source IP.
+		# If not the machine does not has a leg on the net
+		# and we can go on without routes.
+		if isset SRC_IP; then
+			# We take the lowest source IP we found,
+			# which is ugly because the value is unpredictable.
+			SRC_IP=${SRC_IP[0]}
+
+			if isset INTERFACE; then
+				if ! cmd ip route add \
+					"${PLUTO_PEER_CLIENT}" \
+					dev "${INTERFACE}" \
+					src "${SRC_IP}"; then
+						log ERROR \
+							"Could not set routes for ${PLUTO_PEER_CLIENT}"
+				fi
+			else
+				# Get the device which we use to peer with the other site.
+				ME_DEVICE = "$(device_get_by_ip_address "${PLUTO_ME}")"
+
+				# We can only go on if we found a device.
+				if isset ME_DEVICE; then
+					if ! cmd ip route add \
+						"${PLUTO_PEER_CLIENT}" \
+						dev "${ME_DEVICE}" \
+						proto static \
+						src "${SRC_IP}" \
+						table 220; then
+							log ERROR \
+								"Could not set routes for ${PLUTO_PEER_CLIENT}"
+					fi
+				else
+					log ERROR "Could not get device for ${PLUTO_ME}"
+				fi
+			fi
 		fi
 		;;
 
-- 
2.6.3


^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: [PATCH] IPsec: Fix routing
  2018-03-01 15:15 [PATCH] IPsec: Fix routing Jonatan Schlag
@ 2018-03-01 21:06 ` Michael Tremer
  0 siblings, 0 replies; 2+ messages in thread
From: Michael Tremer @ 2018-03-01 21:06 UTC (permalink / raw)
  To: network

[-- Attachment #1: Type: text/plain, Size: 3042 bytes --]

Hello,

thanks for sending in this patch.

I consider this slightly messy since the solution to the problem is not a very
good one. But we don't have anything better either. So I hope we will be able at
some time to come back to this and improve it a little bit.

-Michael

On Thu, 2018-03-01 at 15:15 +0000, Jonatan Schlag wrote:
> Based on the examples found in strongswan
> we need to specific the source IP for our routes through an IPsec VPN.
> If we have no source IP (a router can route packages
> which do not belong to the network assigned to our zones) we set no routes,
> but clients can still use the tunnel.
> 
> For IPsec VPNs in tunnel mode we
> also need the device which has the ${PLUTO_ME} IP address asigned.
> 
> The source IP  is determined ip_get_assigned_addresses_from_net()
> the device is determined by the  device_get_by_ip_address() function.
> 
> For tunnel mode see:
> https://www.strongswan.org/testing/testresults/ipv6-stroke/net2net-ip4-in-ip6-
> ikev2/moon.ip.route
> 
> Fixes: #11629
> 
> Signed-off-by: Jonatan Schlag <jonatan.schlag(a)ipfire.org>
> ---
>  src/helpers/ipsec-updown | 46 +++++++++++++++++++++++++++++++++++++++-------
>  1 file changed, 39 insertions(+), 7 deletions(-)
> 
> diff --git a/src/helpers/ipsec-updown b/src/helpers/ipsec-updown
> index 12ead03..3764085 100644
> --- a/src/helpers/ipsec-updown
> +++ b/src/helpers/ipsec-updown
> @@ -86,13 +86,45 @@ case "${PLUTO_VERB}" in
>  				;;
>  		esac
>  
> -		# Set routes
> -		if isset INTERFACE; then
> -			cmd ip route add "${PLUTO_PEER_CLIENT}" \
> -				dev "${INTERFACE}"
> -		else
> -			cmd ip route add "${PLUTO_PEER_CLIENT}" \
> -				via "${PLUTO_PEER}"
> +		#Get sources IP for routes
> +		SRC_IP=($(ip_get_assigned_addresses_from_net \
> +			"${PLUTO_MY_CLIENT}" "permanent"))
> +
> +		# Set routes if we have a source IP.
> +		# If not the machine does not has a leg on the net
> +		# and we can go on without routes.
> +		if isset SRC_IP; then
> +			# We take the lowest source IP we found,
> +			# which is ugly because the value is unpredictable.
> +			SRC_IP=${SRC_IP[0]}
> +
> +			if isset INTERFACE; then
> +				if ! cmd ip route add \
> +					"${PLUTO_PEER_CLIENT}" \
> +					dev "${INTERFACE}" \
> +					src "${SRC_IP}"; then
> +						log ERROR \
> +							"Could not set routes
> for ${PLUTO_PEER_CLIENT}"
> +				fi
> +			else
> +				# Get the device which we use to peer with
> the other site.
> +				ME_DEVICE = "$(device_get_by_ip_address
> "${PLUTO_ME}")"
> +
> +				# We can only go on if we found a device.
> +				if isset ME_DEVICE; then
> +					if ! cmd ip route add \
> +						"${PLUTO_PEER_CLIENT}" \
> +						dev "${ME_DEVICE}" \
> +						proto static \
> +						src "${SRC_IP}" \
> +						table 220; then
> +							log ERROR \
> +								"Could not
> set routes for ${PLUTO_PEER_CLIENT}"
> +					fi
> +				else
> +					log ERROR "Could not get device for
> ${PLUTO_ME}"
> +				fi
> +			fi
>  		fi
>  		;;
>  

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2018-03-01 21:06 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-03-01 15:15 [PATCH] IPsec: Fix routing Jonatan Schlag
2018-03-01 21:06 ` Michael Tremer

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox