]> git.ipfire.org Git - thirdparty/nftables.git/commitdiff
xt: pass octx to translate function
authorFlorian Westphal <fw@strlen.de>
Tue, 6 Nov 2018 15:06:26 +0000 (16:06 +0100)
committerFlorian Westphal <fw@strlen.de>
Mon, 12 Nov 2018 16:41:58 +0000 (17:41 +0100)
We can't use it when no translation is available as libxtables will
use plain printf(), but when translation is available we can.

Signed-off-by: Florian Westphal <fw@strlen.de>
include/xt.h
src/statement.c
src/xt.c

index 753511e635080274ee164816eb8ce4b87580b6ae..549eb9fe41531ece803ea22a26c59f64ef1b5def 100644 (file)
@@ -6,9 +6,10 @@ struct netlink_parse_ctx;
 struct nftnl_expr;
 struct rule_pp_ctx;
 struct rule;
+struct output_ctx;
 
 #ifdef HAVE_LIBXTABLES
-void xt_stmt_xlate(const struct stmt *stmt);
+void xt_stmt_xlate(const struct stmt *stmt, struct output_ctx *octx);
 void xt_stmt_release(const struct stmt *stmt);
 
 void netlink_parse_target(struct netlink_parse_ctx *ctx,
@@ -20,7 +21,7 @@ void netlink_parse_match(struct netlink_parse_ctx *ctx,
 void stmt_xt_postprocess(struct rule_pp_ctx *rctx, struct stmt *stmt,
                         struct rule *rule);
 #else
-static inline void xt_stmt_xlate(const struct stmt *stmt) {}
+static inline void xt_stmt_xlate(const struct stmt *stmt, struct output_ctx *octx) {}
 static inline void xt_stmt_release(const struct stmt *stmt) {}
 
 #include <erec.h>
index 1eaaf58511f02ee8e7232d1ed66f5c99d91ac626..07e17461049349abae1549f48ce3c9375a93bc1e 100644 (file)
@@ -832,7 +832,7 @@ struct stmt *tproxy_stmt_alloc(const struct location *loc)
 
 static void xt_stmt_print(const struct stmt *stmt, struct output_ctx *octx)
 {
-       xt_stmt_xlate(stmt);
+       xt_stmt_xlate(stmt, octx);
 }
 
 static void xt_stmt_destroy(struct stmt *stmt)
index 74763d58cafd78ce927897ff59bec11f06ca981d..30d8690ab70f1d18f6af922fb12c5afbb713489b 100644 (file)
--- a/src/xt.c
+++ b/src/xt.c
@@ -26,7 +26,7 @@
 #include <linux/netfilter_arp/arp_tables.h>
 #include <linux/netfilter_bridge/ebtables.h>
 
-void xt_stmt_xlate(const struct stmt *stmt)
+void xt_stmt_xlate(const struct stmt *stmt, struct output_ctx *octx)
 {
        struct xt_xlate *xl = xt_xlate_alloc(10240);
 
@@ -40,7 +40,7 @@ void xt_stmt_xlate(const struct stmt *stmt)
                        };
 
                        stmt->xt.match->xlate(xl, &params);
-                       printf("%s", xt_xlate_get(xl));
+                       nft_print(octx, "%s", xt_xlate_get(xl));
                } else if (stmt->xt.match->print) {
                        printf("#");
                        stmt->xt.match->print(&stmt->xt.entry,
@@ -57,7 +57,7 @@ void xt_stmt_xlate(const struct stmt *stmt)
                        };
 
                        stmt->xt.target->xlate(xl, &params);
-                       printf("%s", xt_xlate_get(xl));
+                       nft_print(octx, "%s", xt_xlate_get(xl));
                } else if (stmt->xt.target->print) {
                        printf("#");
                        stmt->xt.target->print(NULL, stmt->xt.target->t, 0);