From mboxrd@z Thu Jan 1 00:00:00 1970 From: Michael Tremer To: development@lists.ipfire.org Subject: [PATCH 2/6] QoS: Use the two right hand bytes to mark packets Date: Mon, 04 Oct 2021 18:52:18 +0100 Message-ID: <20211004175222.9208-2-michael.tremer@ipfire.org> In-Reply-To: <20211004175222.9208-1-michael.tremer@ipfire.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============5783872183604352399==" List-Id: --===============5783872183604352399== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable In order to not deal with any marks from NAT and the IPS, this patch adds masks to all places where packets are being marked for individual QoS classes. Instead of being able to use the "fw" match in tc, we have to use the u32 to apply the mask. Signed-off-by: Michael Tremer --- config/qos/makeqosscripts.pl | 57 ++++++++++++++++++++++-------------- 1 file changed, 35 insertions(+), 22 deletions(-) diff --git a/config/qos/makeqosscripts.pl b/config/qos/makeqosscripts.pl index cbbbf70f8..3af046ac3 100644 --- a/config/qos/makeqosscripts.pl +++ b/config/qos/makeqosscripts.pl @@ -56,6 +56,12 @@ my $portfile =3D "/var/ipfire/qos/portconfig"; my $tosfile =3D "/var/ipfire/qos/tosconfig"; my $fqcodel_options =3D "limit 10240 quantum 1514"; =20 +# Define iptables MARKs +my $QOS_INC_MASK =3D 0x0000ff00; +my $QOS_INC_SHIFT =3D 8; +my $QOS_OUT_MASK =3D 0x000000ff; +my $QOS_OUT_SHIFT =3D 0; + &General::readhash("${General::swroot}/ethernet/settings", \%netsettings); =20 $qossettings{'ENABLED'} =3D 'off'; @@ -74,6 +80,10 @@ $qossettings{'VALID'} =3D 'yes'; =20 &General::readhash("${General::swroot}/qos/settings", \%qossettings); =20 +my $ACK_MARK =3D ($qossettings{'ACK'} << $QOS_OUT_SHIFT) . "/$QOS_OUT_MASK"; +my $DEF_OUT_MARK =3D ($qossettings{'DEFCLASS_OUT'} << $QOS_OUT_SHIFT) . "/$Q= OS_OUT_MASK"; +my $DEF_INC_MARK =3D ($qossettings{'DEFCLASS_INC'} << $QOS_INC_SHIFT) . "/$Q= OS_INC_MASK"; + open( FILE, "< $classfile" ) or die "Unable to read $classfile"; @classes =3D ; close FILE; @@ -200,9 +210,11 @@ foreach $classentry (sort @classes) if ($qossettings{'RED_DEV'} eq $classline[0]) { $qossettings{'DEVICE'} =3D $classline[0]; $qossettings{'CLASS'} =3D $classline[1]; - print "\ttc filter add dev $qossettings{'DEVICE'} parent 1:0 prio 0 protoc= ol ip handle $qossettings{'CLASS'} fw flowid 1:$qossettings{'CLASS'}\n"; + print "\ttc filter add dev $qossettings{'DEVICE'} parent 1:0 prio 0 protoc= ol ip"; + printf(" u32 match mark 0x%x 0x%x flowid 1:%d\n", ($qossettings{'CLASS'} <= < $QOS_OUT_SHIFT), $QOS_OUT_MASK, $qossettings{'CLASS'}); } } + print </dev/null 2>&1 --=20 2.31.0 --===============5783872183604352399==--