You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
81 lines
3.3 KiB
81 lines
3.3 KiB
11 months ago
|
From 867ccfc5a9394b8a0957db9f2828befb7efabd7c Mon Sep 17 00:00:00 2001
|
||
2 years ago
|
From: Phil Sutter <phil@nwl.cc>
|
||
|
Date: Tue, 4 May 2021 16:03:24 +0200
|
||
|
Subject: [PATCH] extensions: sctp: Fix nftables translation
|
||
|
|
||
|
If both sport and dport was present, incorrect nft syntax was generated.
|
||
|
|
||
|
Fixes: defc7bd2bac89 ("extensions: libxt_sctp: Add translation to nft")
|
||
|
Signed-off-by: Phil Sutter <phil@nwl.cc>
|
||
|
(cherry picked from commit a61282ec6a1697bfb40f19d13a28a74559050167)
|
||
|
---
|
||
|
extensions/libxt_sctp.c | 10 ++++------
|
||
|
extensions/libxt_sctp.txlate | 10 +++++-----
|
||
|
2 files changed, 9 insertions(+), 11 deletions(-)
|
||
|
|
||
|
diff --git a/extensions/libxt_sctp.c b/extensions/libxt_sctp.c
|
||
|
index 140de2653b1ef..ee4e99ebf11bf 100644
|
||
|
--- a/extensions/libxt_sctp.c
|
||
|
+++ b/extensions/libxt_sctp.c
|
||
|
@@ -495,15 +495,13 @@ static int sctp_xlate(struct xt_xlate *xl,
|
||
|
if (!einfo->flags)
|
||
|
return 0;
|
||
|
|
||
|
- xt_xlate_add(xl, "sctp ");
|
||
|
-
|
||
|
if (einfo->flags & XT_SCTP_SRC_PORTS) {
|
||
|
if (einfo->spts[0] != einfo->spts[1])
|
||
|
- xt_xlate_add(xl, "sport%s %u-%u",
|
||
|
+ xt_xlate_add(xl, "sctp sport%s %u-%u",
|
||
|
einfo->invflags & XT_SCTP_SRC_PORTS ? " !=" : "",
|
||
|
einfo->spts[0], einfo->spts[1]);
|
||
|
else
|
||
|
- xt_xlate_add(xl, "sport%s %u",
|
||
|
+ xt_xlate_add(xl, "sctp sport%s %u",
|
||
|
einfo->invflags & XT_SCTP_SRC_PORTS ? " !=" : "",
|
||
|
einfo->spts[0]);
|
||
|
space = " ";
|
||
|
@@ -511,11 +509,11 @@ static int sctp_xlate(struct xt_xlate *xl,
|
||
|
|
||
|
if (einfo->flags & XT_SCTP_DEST_PORTS) {
|
||
|
if (einfo->dpts[0] != einfo->dpts[1])
|
||
|
- xt_xlate_add(xl, "%sdport%s %u-%u", space,
|
||
|
+ xt_xlate_add(xl, "%ssctp dport%s %u-%u", space,
|
||
|
einfo->invflags & XT_SCTP_DEST_PORTS ? " !=" : "",
|
||
|
einfo->dpts[0], einfo->dpts[1]);
|
||
|
else
|
||
|
- xt_xlate_add(xl, "%sdport%s %u", space,
|
||
|
+ xt_xlate_add(xl, "%ssctp dport%s %u", space,
|
||
|
einfo->invflags & XT_SCTP_DEST_PORTS ? " !=" : "",
|
||
|
einfo->dpts[0]);
|
||
|
}
|
||
|
diff --git a/extensions/libxt_sctp.txlate b/extensions/libxt_sctp.txlate
|
||
|
index 72f4641ab021c..0d6c59e183675 100644
|
||
|
--- a/extensions/libxt_sctp.txlate
|
||
|
+++ b/extensions/libxt_sctp.txlate
|
||
|
@@ -23,16 +23,16 @@ iptables-translate -A INPUT -p sctp ! --dport 50:56 -j ACCEPT
|
||
|
nft add rule ip filter INPUT sctp dport != 50-56 counter accept
|
||
|
|
||
|
iptables-translate -A INPUT -p sctp --dport 80 --sport 50 -j ACCEPT
|
||
|
-nft add rule ip filter INPUT sctp sport 50 dport 80 counter accept
|
||
|
+nft add rule ip filter INPUT sctp sport 50 sctp dport 80 counter accept
|
||
|
|
||
|
iptables-translate -A INPUT -p sctp --dport 80:100 --sport 50 -j ACCEPT
|
||
|
-nft add rule ip filter INPUT sctp sport 50 dport 80-100 counter accept
|
||
|
+nft add rule ip filter INPUT sctp sport 50 sctp dport 80-100 counter accept
|
||
|
|
||
|
iptables-translate -A INPUT -p sctp --dport 80 --sport 50:55 -j ACCEPT
|
||
|
-nft add rule ip filter INPUT sctp sport 50-55 dport 80 counter accept
|
||
|
+nft add rule ip filter INPUT sctp sport 50-55 sctp dport 80 counter accept
|
||
|
|
||
|
iptables-translate -A INPUT -p sctp ! --dport 80:100 --sport 50 -j ACCEPT
|
||
|
-nft add rule ip filter INPUT sctp sport 50 dport != 80-100 counter accept
|
||
|
+nft add rule ip filter INPUT sctp sport 50 sctp dport != 80-100 counter accept
|
||
|
|
||
|
iptables-translate -A INPUT -p sctp --dport 80 ! --sport 50:55 -j ACCEPT
|
||
|
-nft add rule ip filter INPUT sctp sport != 50-55 dport 80 counter accept
|
||
|
+nft add rule ip filter INPUT sctp sport != 50-55 sctp dport 80 counter accept
|
||
|
--
|
||
11 months ago
|
2.40.0
|
||
2 years ago
|
|