From mboxrd@z Thu Jan 1 00:00:00 1970 From: Stefan Schantl To: development@lists.ipfire.org Subject: Re: [PATCH 04/12] rules.pl: Destroy all ipset lists on rule reload. Date: Sun, 27 Feb 2022 15:28:07 +0100 Message-ID: <6ce3a86c60e155729b91ed021c1b901e53145048.camel@ipfire.org> In-Reply-To: <8dbf6929eee4887265035c8177012f908c8a7e86.camel@ipfire.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============8171013995442125534==" List-Id: --===============8171013995442125534== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Hello List, as promised, I had a look at Tim's blacklisting code and talked on the phone with Michael and Peter how to handle all this "ipset load and destroy stuff" in a good way. So we talked about, how to deal with all the different scripts and places where ipset sets are involved. We agreed that it would be the best to handle them at a central place (script) and decided the easiest way would be the perl-based firewall script which is used to generate and create the firewall rules. (rules.pl) We also talked about how the IP blocklist feature become a core component of IPFire and to integrate it into this. I'll give more details about this in the related discussion on this list.=20 While discussing about this we came across that the dynamic approach of loading and destroying sets which Tim is using in his code is very lovely and so decided to adopt it in a very similar way. This results in two first patches which have been sent to the development mailing list. The first one will allow the firewall engine to dynamically destroy (unload) ipset sets if they are not longer required. https://patchwork.ipfire.org/project/ipfire/patch/20220227134903.1828-1-stefa= n.schantl(a)ipfire.org/ The second patch is a fist step of moving all "ipset" related rules into the same script. =20 https://patchwork.ipfire.org/project/ipfire/patch/20220227134903.1828-2-stefa= n.schantl(a)ipfire.org/ Best regards, -Stefan > Hello Michael, Hello Tim, >=20 > thanks for your feedback and discussion. > > Hello Tim, > >=20 > > > On 15 Feb 2022, at 19:28, Tim FitzGeorge > > > wrote: > > >=20 > > > Hello, > > >=20 > > > I'm concerned about this as well.=C2=A0 Depending on when it does the > > > ipset destroy it may be OK (for example as part of shutting down > > > the system or prior to rebuilding the firewall from scratch, as > > > in > > > these cases it either won't matter or the OP blocklist ipsets > > > will > > > be reloaded), but in general I would consider it a bad idea to > > > delete all the ipsets whether or not you 'own' them - each > > > 'package' should only touch it's own 'property', while this just > > > deletes all the ipsets regardless. > >=20 > > This is quite hard to implement though. We could in theory iterate > > over all possible country codes and try to delete all sets, but > > that > > seems to be a very slow and not elegant solution to the problem. > >=20 > > > Having said that, I think it will probably be alright as > > > according > > > to the documentation ipset destroy won't delete lists which have > > > references to them, and the IP blocklist ipsets should always > > > have > > > references. > >=20 > > This is good for us though. If we can consider the =E2=80=9Cdestroy=E2=80= =9D > > command > > to be more of a cleanup and it is safe to call it, then we should > > not > > run into any trouble here. > >=20 > > @Stefan: Can you confirm that any sets that are still referenced > > elsewhere won=E2=80=99t be destroyed and that there is no ugly output that > > could alarm anyone? >=20 > I did not have a look at Tim's code at the moment, nor some testing > of > his feature so I'm unable to say yes or no, for both of your > questions. >=20 > I'll dig into this at the weekend and phone back what I got. >=20 > -Stefan >=20 > >=20 > > -Michael > >=20 > > >=20 > > > Tim > > >=20 > > > On 15/02/2022 12:41, Michael Tremer wrote: > > > > Hello, > > > >=20 > > > > Looking at the other patchset that implements IP blocklists, > > > > could this interfere with this in any way? > > > >=20 > > > > -Michael > > > >=20 > > > > > On 14 Feb 2022, at 18:42, Stefan Schantl < > > > > > stefan.schantl(a)ipfire.org> wrote: > > > > >=20 > > > > > Signed-off-by: Stefan Schantl > > > > > --- > > > > > config/firewall/rules.pl | 4 ++++ > > > > > 1 file changed, 4 insertions(+) > > > > >=20 > > > > > diff --git a/config/firewall/rules.pl > > > > > b/config/firewall/rules.pl > > > > > index f685d08a7..da01b8775 100644 > > > > > --- a/config/firewall/rules.pl > > > > > +++ b/config/firewall/rules.pl > > > > > @@ -31,6 +31,7 @@ require "${General::swroot}/location- > > > > > functions.pl"; > > > > > my $DEBUG =3D 0; > > > > >=20 > > > > > my $IPTABLES =3D "iptables --wait"; > > > > > +my $IPSET =3D "ipset"; > > > > >=20 > > > > > # iptables chains > > > > > my $CHAIN_INPUT=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2= =A0=C2=A0 =3D "INPUTFW"; > > > > > @@ -114,6 +115,9 @@ sub main { > > > > > =C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0# Flush all chains. > > > > > =C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0&flush(); > > > > >=20 > > > > > +=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0# Destroy all existing i= psets. > > > > > +=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0run("$IPSET destroy"); > > > > > + > > > > > =C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0# Prepare firewall = rules. > > > > > =C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0if (! -z=C2=A0 "${G= eneral::swroot}/firewall/input"){ > > > > > =C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0= =C2=A0=C2=A0=C2=A0=C2=A0=C2=A0&buildrules(\%configinputfw); > > > > > --=20 > > > > > 2.30.2 > > > > >=20 > > > >=20 > > >=20 > >=20 >=20 >=20 --===============8171013995442125534==--