From: Stefan Schantl <stefan.schantl@ipfire.org>
To: development@lists.ipfire.org
Subject: [PATCH] rules.pl: Fix creating rules for location based groups.
Date: Wed, 23 Mar 2022 18:08:52 +0100 [thread overview]
Message-ID: <20220323170852.2964-1-stefan.schantl@ipfire.org> (raw)
In-Reply-To: <bfe58b51-1640-d048-9dca-bbb43a574863@ipfire.org>
[-- Attachment #1: Type: text/plain, Size: 1679 bytes --]
The former used hash value only contains the country code when
a rule for a single country should be created.
In case a location group is used the hash value refers to the group name,
which does not work here.
The required country code is part of the processed string and can be omitted
from here. This works well for single codes and location groups, because those
are processed in a loop.
Fixes #12809.
Signed-off-by: Stefan Schantl <stefan.schantl(a)ipfire.org>
---
config/firewall/rules.pl | 10 ++++++----
1 file changed, 6 insertions(+), 4 deletions(-)
diff --git a/config/firewall/rules.pl b/config/firewall/rules.pl
index d71304986..19dc7a6d1 100644
--- a/config/firewall/rules.pl
+++ b/config/firewall/rules.pl
@@ -411,8 +411,9 @@ sub buildrules {
if ($source =~ /mac/) {
push(@source_options, $source);
} elsif ($source =~ /-m set/) {
- # Grab location code from hash.
- my $loc_src = $$hash{$key}[4];
+ # Split given arguments into single chunks to
+ # obtain the set name.
+ my ($a, $b, $c, $loc_src, $e) = split(/ /, $source);
# Call function to load the networks list for this country.
&ipset_restore($loc_src);
@@ -425,8 +426,9 @@ sub buildrules {
# Prepare destination options.
my @destination_options = ();
if ($destination =~ /-m set/) {
- # Grab location code from hash.
- my $loc_dst = $$hash{$key}[6];
+ # Split given arguments into single chunks to
+ # obtain the set name.
+ my ($a, $b, $c, $loc_dst, $e) = split(/ /, $destination);
# Call function to load the networks list for this country.
&ipset_restore($loc_dst);
--
2.30.2
next prev parent reply other threads:[~2022-03-23 17:08 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <164734440708.2330719.8637606495269936408.ipfire@ipfire.org>
2022-03-17 9:29 ` IPFire 2.27 - Core Update 165 is available for testing Adolf Belka
2022-03-17 9:50 ` Adolf Belka
2022-03-18 11:37 ` Adolf Belka
2022-03-18 12:58 ` Adolf Belka
2022-03-20 10:35 ` Core Update 165 (testing) report Peter Müller
2022-03-21 16:05 ` Michael Tremer
2022-03-23 17:08 ` Stefan Schantl [this message]
2022-03-23 17:12 ` [PATCH] rules.pl: Fix creating rules for location based groups Peter Müller
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=20220323170852.2964-1-stefan.schantl@ipfire.org \
--to=stefan.schantl@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