public inbox for development@lists.ipfire.org
 help / color / mirror / Atom feed
From: Michael Tremer <michael.tremer@ipfire.org>
To: development@lists.ipfire.org
Subject: Re: [PATCH] firewall.cgi: Bring back check for single IP when using DNAT.
Date: Thu, 05 Aug 2021 22:37:04 +0200	[thread overview]
Message-ID: <687B9283-E8DB-4EC5-94D4-3592854E41FF@ipfire.org> (raw)
In-Reply-To: <20210716182022.3016-1-stefan.schantl@ipfire.org>

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

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

> On 16 Jul 2021, at 20:20, Stefan Schantl <stefan.schantl(a)ipfire.org> wrote:
> 
> This check has been removed by commit: bbe8e009b824aef745c9ab9718dce9a1b557f5fc
> 
> So it was able to create DNAT rules with a network as target.
> 
> Signed-off-by: Stefan Schantl <stefan.schantl(a)ipfire.org>
> ---
> html/cgi-bin/firewall.cgi | 18 ++++++++++++++++++
> 1 file changed, 18 insertions(+)
> 
> diff --git a/html/cgi-bin/firewall.cgi b/html/cgi-bin/firewall.cgi
> index e168788eb..b328b426c 100644
> --- a/html/cgi-bin/firewall.cgi
> +++ b/html/cgi-bin/firewall.cgi
> @@ -569,6 +569,24 @@ sub checktarget
> 	#check DNAT settings (has to be single Host and single Port or portrange)
> 	if ($fwdfwsettings{'USE_NAT'} eq 'ON' && $fwdfwsettings{'nat'} eq 'dnat'){
> 		if($fwdfwsettings{'grp2'} eq 'tgt_addr' || $fwdfwsettings{'grp2'} eq 'cust_host_tgt' || $fwdfwsettings{'grp2'} eq 'ovpn_host_tgt'){
> +			# Check if a manual entered IP is a single Host (if set)
> +			if ($fwdfwsettings{'grp2'} eq 'tgt_addr') {
> +				# Split input into address and prefix (if provided).
> +				my ($address, $subnet) = split ('/', $fwdfwsettings{$fwdfwsettings{'grp2'}});
> +
> +				# Check if a subnet is given.
> +				if ($subnet) {
> +					# Check if the prefix or subnetmask is for a single host.
> +					unless ($subnet eq "32" || $subnet eq "255.255.255.255") {
> +						# Set error message.
> +						$errormessage=$Lang::tr{'fwdfw dnat error'}."<br>";
> +
> +						# Return the error.
> +						return $errormessage;
> +					}
> +				}
> +			}
> +
> 			#check if Port is a single Port or portrange
> 			if ($fwdfwsettings{'nat'} eq 'dnat' &&  $fwdfwsettings{'grp3'} eq 'TGT_PORT'){
> 				if(($fwdfwsettings{'PROT'} ne 'TCP'|| $fwdfwsettings{'PROT'} ne 'UDP') && $fwdfwsettings{'TGT_PORT'} eq ''){
> -- 
> 2.30.2
> 


      reply	other threads:[~2021-08-05 20:37 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-07-16 18:20 Stefan Schantl
2021-08-05 20:37 ` Michael Tremer [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=687B9283-E8DB-4EC5-94D4-3592854E41FF@ipfire.org \
    --to=michael.tremer@ipfire.org \
    --cc=development@lists.ipfire.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox