]> git.ipfire.org Git - thirdparty/nftables.git/commitdiff
set: explicitly supply name to implicit set declarations
authorPatrick McHardy <kaber@trash.net>
Wed, 27 Apr 2016 11:29:46 +0000 (12:29 +0100)
committerPablo Neira Ayuso <pablo@netfilter.org>
Fri, 13 May 2016 16:57:04 +0000 (18:57 +0200)
Support explicitly names implicitly declared sets.

Also change the template names for literal sets and maps to use identifiers
that can not clash with user supplied identifiers.

Signed-off-by: Patrick McHardy <kaber@trash.net>
Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
src/evaluate.c

index c5f87a1950f80555bccbd6b6c0bb1e79dd3da79b..9d89d9058d1e3133751c09757976c7e786d239e8 100644 (file)
@@ -87,6 +87,7 @@ static int __fmtstring(3, 4) set_error(struct eval_ctx *ctx,
 }
 
 static struct expr *implicit_set_declaration(struct eval_ctx *ctx,
+                                            const char *name,
                                             const struct datatype *keytype,
                                             unsigned int keylen,
                                             struct expr *expr)
@@ -97,7 +98,7 @@ static struct expr *implicit_set_declaration(struct eval_ctx *ctx,
 
        set = set_alloc(&expr->location);
        set->flags      = SET_F_ANONYMOUS | expr->set_flags;
-       set->handle.set = xstrdup(set->flags & SET_F_MAP ? "map%d" : "set%d");
+       set->handle.set = xstrdup(name),
        set->keytype    = keytype;
        set->keylen     = keylen;
        set->init       = expr;
@@ -1100,7 +1101,8 @@ static int expr_evaluate_map(struct eval_ctx *ctx, struct expr **expr)
 
        switch (map->mappings->ops->type) {
        case EXPR_SET:
-               mappings = implicit_set_declaration(ctx, ctx->ectx.dtype,
+               mappings = implicit_set_declaration(ctx, "__map%d",
+                                                   ctx->ectx.dtype,
                                                    ctx->ectx.len, mappings);
                mappings->set->datatype = ectx.dtype;
                mappings->set->datalen  = ectx.len;
@@ -1389,7 +1391,8 @@ static int expr_evaluate_relational(struct eval_ctx *ctx, struct expr **expr)
                         * the set
                         */
                        right = rel->right =
-                               implicit_set_declaration(ctx, left->dtype,
+                               implicit_set_declaration(ctx, "__set%d",
+                                                        left->dtype,
                                                         left->len, right);
                        break;
                case EXPR_SET_REF: