* [iptables PATCH] extensions: udp: add translation to nft
@ 2014-04-16 7:19 Ana Rey
2014-04-23 12:29 ` Pablo Neira Ayuso
0 siblings, 1 reply; 2+ messages in thread
From: Ana Rey @ 2014-04-16 7:19 UTC (permalink / raw)
To: netfilter-devel; +Cc: Ana Rey
Some examples:
$ sudo iptables-translate -A INPUT -p udp -i eth0 --sport 53 -j ACCEPT
add rule ip filter INPUT iifname eth0 udp sport 53 counter accept
$ sudo ./iptables-translate -A OUTPUT -p udp -o eth0 --dport 53:66 -j DROP
add rule ip filter OUTPUT oifname eth0 udp dport 53-66 counter drop
$ sudo ./iptables-translate -I OUTPUT -p udp -d 8.8.8.8 -j ACCEPT
nft insert rule ip filter OUTPUT ip protocol udp ip daddr 8.8.8.8 counter accept
Sign-off-by: Ana Rey <anarey@gmail.com>
---
extensions/libxt_udp.c | 34 ++++++++++++++++++++++++++++++++++
1 file changed, 34 insertions(+)
diff --git a/extensions/libxt_udp.c b/extensions/libxt_udp.c
index b9f39ee..f3532ef 100644
--- a/extensions/libxt_udp.c
+++ b/extensions/libxt_udp.c
@@ -152,6 +152,39 @@ static void udp_save(const void *ip, const struct xt_entry_match *match)
}
}
+static int udp_xlate(const struct xt_entry_match *match, struct xt_buf *buf)
+{
+ const struct xt_udp *udpinfo = (struct xt_udp *)match->data;
+
+ if (udpinfo->spts[0] != 0 || udpinfo->spts[1] != 0xFFFF) {
+ if (udpinfo->spts[0] != udpinfo->spts[1])
+ xt_buf_add(buf,"udp sport %s%u-%u ",
+ udpinfo->invflags & XT_UDP_INV_SRCPT ?
+ "!= ": "",
+ udpinfo->spts[0], udpinfo->spts[1]);
+ else
+ xt_buf_add(buf, "udp sport %s%u ",
+ udpinfo->invflags & XT_UDP_INV_SRCPT ?
+ "!= ": "",
+ udpinfo->spts[0]);
+ }
+
+ if (udpinfo->dpts[0] != 0 || udpinfo->dpts[1] != 0xFFFF) {
+ if (udpinfo->dpts[0] != udpinfo->dpts[1])
+ xt_buf_add(buf,"udp dport %s%u-%u ",
+ udpinfo->invflags & XT_UDP_INV_SRCPT ?
+ "!= ": "",
+ udpinfo->dpts[0], udpinfo->dpts[1]);
+ else
+ xt_buf_add(buf,"udp dport %s%u ",
+ udpinfo->invflags & XT_UDP_INV_SRCPT ?
+ "!= ": "",
+ udpinfo->dpts[0]);
+ }
+
+ return 1;
+}
+
static struct xtables_match udp_match = {
.family = NFPROTO_UNSPEC,
.name = "udp",
@@ -164,6 +197,7 @@ static struct xtables_match udp_match = {
.save = udp_save,
.x6_parse = udp_parse,
.x6_options = udp_opts,
+ .xlate = udp_xlate,
};
void
--
1.9.0
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [iptables PATCH] extensions: udp: add translation to nft
2014-04-16 7:19 [iptables PATCH] extensions: udp: add translation to nft Ana Rey
@ 2014-04-23 12:29 ` Pablo Neira Ayuso
0 siblings, 0 replies; 2+ messages in thread
From: Pablo Neira Ayuso @ 2014-04-23 12:29 UTC (permalink / raw)
To: Ana Rey; +Cc: netfilter-devel
On Wed, Apr 16, 2014 at 09:19:40AM +0200, Ana Rey wrote:
> Some examples:
>
> $ sudo iptables-translate -A INPUT -p udp -i eth0 --sport 53 -j ACCEPT
> add rule ip filter INPUT iifname eth0 udp sport 53 counter accept
>
> $ sudo ./iptables-translate -A OUTPUT -p udp -o eth0 --dport 53:66 -j DROP
> add rule ip filter OUTPUT oifname eth0 udp dport 53-66 counter drop
>
> $ sudo ./iptables-translate -I OUTPUT -p udp -d 8.8.8.8 -j ACCEPT
> nft insert rule ip filter OUTPUT ip protocol udp ip daddr 8.8.8.8 counter accept
Applied to the xlate branch of iptables, will merge that branch into
master once we get a significant amount of iptables to nft translations.
Thanks Ana.
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2014-04-23 12:29 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-04-16 7:19 [iptables PATCH] extensions: udp: add translation to nft Ana Rey
2014-04-23 12:29 ` Pablo Neira Ayuso
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).