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.
54 lines
2.3 KiB
54 lines
2.3 KiB
11 months ago
|
From 96678b34102c5af97dcd4fde35472a77b47e71b4 Mon Sep 17 00:00:00 2001
|
||
|
From: Phil Sutter <phil@nwl.cc>
|
||
|
Date: Tue, 31 Jan 2023 23:32:50 +0100
|
||
|
Subject: [PATCH] extensions: libebt_redirect: Fix for wrong syntax in
|
||
|
translation
|
||
|
|
||
|
Meta key comes before 'set' in meta statement.
|
||
|
|
||
|
Fixes: 24ce7465056ae ("ebtables-compat: add redirect match extension")
|
||
|
Signed-off-by: Phil Sutter <phil@nwl.cc>
|
||
|
(cherry picked from commit 6d1263002c2a9fc6dfa59c764dee767a084d428d)
|
||
|
|
||
|
Conflicts:
|
||
|
extensions/libebt_redirect.txlate
|
||
|
-> Adjust to missing commit 83604e7f7327b
|
||
|
("xlate: get rid of escape_quotes").
|
||
|
---
|
||
|
extensions/libebt_redirect.c | 2 +-
|
||
|
extensions/libebt_redirect.txlate | 6 +++---
|
||
|
2 files changed, 4 insertions(+), 4 deletions(-)
|
||
|
|
||
|
diff --git a/extensions/libebt_redirect.c b/extensions/libebt_redirect.c
|
||
|
index 389f3ccb53f60..7821935e137aa 100644
|
||
|
--- a/extensions/libebt_redirect.c
|
||
|
+++ b/extensions/libebt_redirect.c
|
||
|
@@ -83,7 +83,7 @@ static int brredir_xlate(struct xt_xlate *xl,
|
||
|
{
|
||
|
const struct ebt_redirect_info *red = (const void*)params->target->data;
|
||
|
|
||
|
- xt_xlate_add(xl, "meta set pkttype host");
|
||
|
+ xt_xlate_add(xl, "meta pkttype set host");
|
||
|
if (red->target != EBT_CONTINUE)
|
||
|
xt_xlate_add(xl, " %s ", brredir_verdict(red->target));
|
||
|
return 1;
|
||
|
diff --git a/extensions/libebt_redirect.txlate b/extensions/libebt_redirect.txlate
|
||
|
index e750d438a790d..921e303f47037 100644
|
||
|
--- a/extensions/libebt_redirect.txlate
|
||
|
+++ b/extensions/libebt_redirect.txlate
|
||
|
@@ -1,8 +1,8 @@
|
||
|
ebtables-translate -t nat -A PREROUTING -d de:ad:00:00:be:ef -j redirect
|
||
|
-nft add rule bridge nat PREROUTING ether daddr de:ad:00:00:be:ef counter meta set pkttype host accept
|
||
|
+nft add rule bridge nat PREROUTING ether daddr de:ad:00:00:be:ef counter meta pkttype set host accept
|
||
|
|
||
|
ebtables-translate -t nat -A PREROUTING -d de:ad:00:00:be:ef -j redirect --redirect-target RETURN
|
||
|
-nft add rule bridge nat PREROUTING ether daddr de:ad:00:00:be:ef counter meta set pkttype host return
|
||
|
+nft add rule bridge nat PREROUTING ether daddr de:ad:00:00:be:ef counter meta pkttype set host return
|
||
|
|
||
|
ebtables-translate -t nat -A PREROUTING -d de:ad:00:00:be:ef -j redirect --redirect-target CONTINUE
|
||
|
-nft add rule bridge nat PREROUTING ether daddr de:ad:00:00:be:ef counter meta set pkttype host
|
||
|
+nft add rule bridge nat PREROUTING ether daddr de:ad:00:00:be:ef counter meta pkttype set host
|
||
|
--
|
||
|
2.40.0
|
||
|
|