public inbox for development@lists.ipfire.org
 help / color / mirror / Atom feed
* [PATCH] fwhosts.cgi: properly fetch configured IPsec N2N subnets
@ 2021-04-22 20:20 Peter Müller
  2021-07-15 15:49 ` Stefan Schantl
  2021-07-15 15:50 ` Michael Tremer
  0 siblings, 2 replies; 3+ messages in thread
From: Peter Müller @ 2021-04-22 20:20 UTC (permalink / raw)
  To: development

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

Previously, the getcolor() function did not correctly process IPsec
N2N connections with more than one remote network configured, resulting
in networks mistakenly marked as being part of a VPN connection, or vice
versa.

Fixes: #11235

Signed-off-by: Peter Müller <peter.mueller(a)ipfire.org>
---
 html/cgi-bin/fwhosts.cgi | 12 +++++++-----
 1 file changed, 7 insertions(+), 5 deletions(-)

diff --git a/html/cgi-bin/fwhosts.cgi b/html/cgi-bin/fwhosts.cgi
index 84b018459..648fc7c8e 100644
--- a/html/cgi-bin/fwhosts.cgi
+++ b/html/cgi-bin/fwhosts.cgi
@@ -1974,11 +1974,13 @@ sub getcolor
 		#Check if IP is part of a IPsec N2N network
 		foreach my $key (sort keys %ipsecconf){
 			if ($ipsecconf{$key}[11]){
-				my ($a,$b) = split("/",$ipsecconf{$key}[11]);
-				$b=&General::iporsubtodec($b);
-				if (&General::IpInSubnet($sip,$a,$b)){
-					$tdcolor="<font style='color: $Header::colourvpn;'>$c</font>";
-					return $tdcolor;
+				foreach my $ipsecsubitem (split(/\|/, $ipsecconf{$key}[11])) {
+					my ($a,$b) = split("/",$ipsecsubitem);
+					$b=&General::iporsubtodec($b);
+					if (&General::IpInSubnet($sip,$a,$b)){
+						$tdcolor="<font style='color: $Header::colourvpn;'>$c</font>";
+						return $tdcolor;
+					}
 				}
 			}
 		}
-- 
2.26.2

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

* Re: [PATCH] fwhosts.cgi: properly fetch configured IPsec N2N subnets
  2021-04-22 20:20 [PATCH] fwhosts.cgi: properly fetch configured IPsec N2N subnets Peter Müller
@ 2021-07-15 15:49 ` Stefan Schantl
  2021-07-15 15:50 ` Michael Tremer
  1 sibling, 0 replies; 3+ messages in thread
From: Stefan Schantl @ 2021-07-15 15:49 UTC (permalink / raw)
  To: development

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

Hello Peter,

I've reviewed and tested your patch and it seems to fix the issue.

Thanks for working and submitting it.

Best regards,

-Stefan

Acked-by: Stefan Schantl <stefan.schantl(a)ipfire.org>
> Previously, the getcolor() function did not correctly process IPsec
> N2N connections with more than one remote network configured,
> resulting
> in networks mistakenly marked as being part of a VPN connection, or
> vice
> versa.
> 
> Fixes: #11235
> 
> Signed-off-by: Peter Müller <peter.mueller(a)ipfire.org>
> ---
>  html/cgi-bin/fwhosts.cgi | 12 +++++++-----
>  1 file changed, 7 insertions(+), 5 deletions(-)
> 
> diff --git a/html/cgi-bin/fwhosts.cgi b/html/cgi-bin/fwhosts.cgi
> index 84b018459..648fc7c8e 100644
> --- a/html/cgi-bin/fwhosts.cgi
> +++ b/html/cgi-bin/fwhosts.cgi
> @@ -1974,11 +1974,13 @@ sub getcolor
>                 #Check if IP is part of a IPsec N2N network
>                 foreach my $key (sort keys %ipsecconf){
>                         if ($ipsecconf{$key}[11]){
> -                               my ($a,$b) =
> split("/",$ipsecconf{$key}[11]);
> -                               $b=&General::iporsubtodec($b);
> -                               if
> (&General::IpInSubnet($sip,$a,$b)){
> -                                       $tdcolor="<font style='color:
> $Header::colourvpn;'>$c</font>";
> -                                       return $tdcolor;
> +                               foreach my $ipsecsubitem (split(/\|/,
> $ipsecconf{$key}[11])) {
> +                                       my ($a,$b) =
> split("/",$ipsecsubitem);
> +                                       $b=&General::iporsubtodec($b)
> ;
> +                                       if
> (&General::IpInSubnet($sip,$a,$b)){
> +                                               $tdcolor="<font
> style='color: $Header::colourvpn;'>$c</font>";
> +                                               return $tdcolor;
> +                                       }
>                                 }
>                         }
>                 }


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

* Re: [PATCH] fwhosts.cgi: properly fetch configured IPsec N2N subnets
  2021-04-22 20:20 [PATCH] fwhosts.cgi: properly fetch configured IPsec N2N subnets Peter Müller
  2021-07-15 15:49 ` Stefan Schantl
@ 2021-07-15 15:50 ` Michael Tremer
  1 sibling, 0 replies; 3+ messages in thread
From: Michael Tremer @ 2021-07-15 15:50 UTC (permalink / raw)
  To: development

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

Reviewed-by: Michael Tremer <michael.tremer(a)ipfire.org>

> On 22 Apr 2021, at 21:20, Peter Müller <peter.mueller(a)ipfire.org> wrote:
> 
> Previously, the getcolor() function did not correctly process IPsec
> N2N connections with more than one remote network configured, resulting
> in networks mistakenly marked as being part of a VPN connection, or vice
> versa.
> 
> Fixes: #11235
> 
> Signed-off-by: Peter Müller <peter.mueller(a)ipfire.org>
> ---
> html/cgi-bin/fwhosts.cgi | 12 +++++++-----
> 1 file changed, 7 insertions(+), 5 deletions(-)
> 
> diff --git a/html/cgi-bin/fwhosts.cgi b/html/cgi-bin/fwhosts.cgi
> index 84b018459..648fc7c8e 100644
> --- a/html/cgi-bin/fwhosts.cgi
> +++ b/html/cgi-bin/fwhosts.cgi
> @@ -1974,11 +1974,13 @@ sub getcolor
> 		#Check if IP is part of a IPsec N2N network
> 		foreach my $key (sort keys %ipsecconf){
> 			if ($ipsecconf{$key}[11]){
> -				my ($a,$b) = split("/",$ipsecconf{$key}[11]);
> -				$b=&General::iporsubtodec($b);
> -				if (&General::IpInSubnet($sip,$a,$b)){
> -					$tdcolor="<font style='color: $Header::colourvpn;'>$c</font>";
> -					return $tdcolor;
> +				foreach my $ipsecsubitem (split(/\|/, $ipsecconf{$key}[11])) {
> +					my ($a,$b) = split("/",$ipsecsubitem);
> +					$b=&General::iporsubtodec($b);
> +					if (&General::IpInSubnet($sip,$a,$b)){
> +						$tdcolor="<font style='color: $Header::colourvpn;'>$c</font>";
> +						return $tdcolor;
> +					}
> 				}
> 			}
> 		}
> -- 
> 2.26.2


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

end of thread, other threads:[~2021-07-15 15:50 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-04-22 20:20 [PATCH] fwhosts.cgi: properly fetch configured IPsec N2N subnets Peter Müller
2021-07-15 15:49 ` Stefan Schantl
2021-07-15 15:50 ` Michael Tremer

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