]> git.ipfire.org Git - thirdparty/nftables.git/commitdiff
xt: always build with a minimal support for xt match/target decode
authorFlorian Westphal <fw@strlen.de>
Tue, 6 Nov 2018 15:06:27 +0000 (16:06 +0100)
committerFlorian Westphal <fw@strlen.de>
Mon, 12 Nov 2018 16:41:58 +0000 (17:41 +0100)
When building without libxtables, nft would just silently omit any presence
of nft_compat in the output.

This adds ifdef-ry to at least print name of target/match involved when
libxtables isn't available for decoding.

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

index 549eb9fe41531ece803ea22a26c59f64ef1b5def..ab59bb3d45a41c02ae26d200a6e127771231c1ed 100644 (file)
@@ -8,7 +8,6 @@ struct rule_pp_ctx;
 struct rule;
 struct output_ctx;
 
-#ifdef HAVE_LIBXTABLES
 void xt_stmt_xlate(const struct stmt *stmt, struct output_ctx *octx);
 void xt_stmt_release(const struct stmt *stmt);
 
@@ -18,20 +17,10 @@ void netlink_parse_target(struct netlink_parse_ctx *ctx,
 void netlink_parse_match(struct netlink_parse_ctx *ctx,
                         const struct location *loc,
                         const struct nftnl_expr *nle);
+#ifdef HAVE_LIBXTABLES
 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, struct output_ctx *octx) {}
-static inline void xt_stmt_release(const struct stmt *stmt) {}
-
-#include <erec.h>
-
-static inline void netlink_parse_target(struct netlink_parse_ctx *ctx,
-                                       const struct location *loc,
-                                       const struct nftnl_expr *nle) {}
-static inline void netlink_parse_match(struct netlink_parse_ctx *ctx,
-                                      const struct location *loc,
-                                      const struct nftnl_expr *nle) {}
 static inline void stmt_xt_postprocess(struct rule_pp_ctx *rctx,
                                       struct stmt *stmt, struct rule *rule) {}
 
index 307bab108cca9d230ddebf146ca91099ee885f66..31d076cda82c319ab5d12e015e645a93beb5063e 100644 (file)
@@ -83,8 +83,8 @@ libminigmp_la_CFLAGS = ${AM_CFLAGS} -Wno-sign-compare
 libnftables_la_LIBADD += libminigmp.la
 endif
 
-if BUILD_XTABLES
 libnftables_la_SOURCES += xt.c
+if BUILD_XTABLES
 libnftables_la_LIBADD += ${XTABLES_LIBS}
 endif
 
index 30d8690ab70f1d18f6af922fb12c5afbb713489b..ab7f50173149124eee5e67a8a0394a15436b6893 100644 (file)
--- a/src/xt.c
+++ b/src/xt.c
@@ -28,6 +28,7 @@
 
 void xt_stmt_xlate(const struct stmt *stmt, struct output_ctx *octx)
 {
+#ifdef HAVE_LIBXTABLES
        struct xt_xlate *xl = xt_xlate_alloc(10240);
 
        switch (stmt->xt.type) {
@@ -68,6 +69,9 @@ void xt_stmt_xlate(const struct stmt *stmt, struct output_ctx *octx)
        }
 
        xt_xlate_free(xl);
+#else
+       nft_print(octx, "# xt_%s", stmt->xt.name);
+#endif
 }
 
 void xt_stmt_release(const struct stmt *stmt)
@@ -94,6 +98,7 @@ void xt_stmt_release(const struct stmt *stmt)
        xfree(stmt->xt.entry);
 }
 
+#ifdef HAVE_LIBXTABLES
 static void *xt_entry_alloc(struct xt_stmt *xt, uint32_t af)
 {
        union nft_entry {
@@ -179,6 +184,7 @@ static struct xtables_match *xt_match_clone(struct xtables_match *m)
        memcpy(clone, m, sizeof(struct xtables_match));
        return clone;
 }
+#endif
 
 /*
  * Delinearization
@@ -190,6 +196,7 @@ void netlink_parse_match(struct netlink_parse_ctx *ctx,
 {
        struct stmt *stmt;
        const char *name;
+#ifdef HAVE_LIBXTABLES
        struct xtables_match *mt;
        const char *mtinfo;
        struct xt_entry_match *m;
@@ -217,7 +224,13 @@ void netlink_parse_match(struct netlink_parse_ctx *ctx,
        stmt->xt.type = NFT_XT_MATCH;
        stmt->xt.match = xt_match_clone(mt);
        stmt->xt.match->m = m;
+#else
+       name = nftnl_expr_get_str(nle, NFTNL_EXPR_MT_NAME);
 
+       stmt = xt_stmt_alloc(loc);
+       stmt->xt.name = strdup(name);
+       stmt->xt.type = NFT_XT_MATCH;
+#endif
        list_add_tail(&stmt->list, &ctx->rule->stmts);
 }
 
@@ -227,6 +240,7 @@ void netlink_parse_target(struct netlink_parse_ctx *ctx,
 {
        struct stmt *stmt;
        const char *name;
+#ifdef HAVE_LIBXTABLES
        struct xtables_target *tg;
        const void *tginfo;
        struct xt_entry_target *t;
@@ -255,10 +269,17 @@ void netlink_parse_target(struct netlink_parse_ctx *ctx,
        stmt->xt.type = NFT_XT_TARGET;
        stmt->xt.target = xt_target_clone(tg);
        stmt->xt.target->t = t;
+#else
+       name = nftnl_expr_get_str(nle, NFTNL_EXPR_TG_NAME);
 
+       stmt = xt_stmt_alloc(loc);
+       stmt->xt.name = strdup(name);
+       stmt->xt.type = NFT_XT_TARGET;
+#endif
        list_add_tail(&stmt->list, &ctx->rule->stmts);
 }
 
+#ifdef HAVE_LIBXTABLES
 static bool is_watcher(uint32_t family, struct stmt *stmt)
 {
        if (family != NFPROTO_BRIDGE ||
@@ -370,3 +391,4 @@ void xt_init(void)
        /* Default to IPv4, but this changes in runtime */
        xtables_init_all(&xt_nft_globals, NFPROTO_IPV4);
 }
+#endif