]> git.ipfire.org Git - thirdparty/nftables.git/commitdiff
meta: permit meta nfproto ip in ip family
authorFlorian Westphal <fw@strlen.de>
Mon, 29 May 2017 17:25:37 +0000 (19:25 +0200)
committerFlorian Westphal <fw@strlen.de>
Tue, 6 Jun 2017 18:53:13 +0000 (20:53 +0200)
works:
add rule ip filter input ct original saddr 1.2.3.4
(family ctx init initialises network base to proto_ip).

fails to parse 1.2.3.4 address:
add rule ip filter input meta nfproto ipv4 ct original saddr 1.2.3.4

... because meta_expr_pctx_update() won't find a dependency
from "ip" to "ip" and then overwrites the correct base with proto_unknown.

"meta nfproto ip" is useless in the ip family, as it will always match,
i.e.  a better (but more compliated) fix would be to remove the statement
during evaluation.

Signed-off-by: Florian Westphal <fw@strlen.de>
Acked-by: Pablo Neira Ayuso <pablo@netfilter.org>
src/meta.c

index cb7c1368e0874efaded65220621cffc8a81d83b8..dd09d49560cd81da473e6ec57d052dbd29bf388b 100644 (file)
@@ -497,6 +497,7 @@ static void meta_expr_pctx_update(struct proto_ctx *ctx,
        const struct hook_proto_desc *h = &hook_proto_desc[ctx->family];
        const struct expr *left = expr->left, *right = expr->right;
        const struct proto_desc *desc;
+       uint8_t protonum;
 
        assert(expr->op == OP_EQ);
 
@@ -514,10 +515,16 @@ static void meta_expr_pctx_update(struct proto_ctx *ctx,
                proto_ctx_update(ctx, PROTO_BASE_LL_HDR, &expr->location, desc);
                break;
        case NFT_META_NFPROTO:
-               desc = proto_find_upper(h->desc, mpz_get_uint8(right->value));
-               if (desc == NULL)
+               protonum = mpz_get_uint8(right->value);
+               desc = proto_find_upper(h->desc, protonum);
+               if (desc == NULL) {
                        desc = &proto_unknown;
 
+                       if (protonum == ctx->family &&
+                           h->base == PROTO_BASE_NETWORK_HDR)
+                               desc = h->desc;
+               }
+
                proto_ctx_update(ctx, PROTO_BASE_NETWORK_HDR, &expr->location, desc);
                break;
        case NFT_META_L4PROTO: