* [PATCH] dynset prefix support
@ 2016-08-23 15:11 Pablo Neira Ayuso
0 siblings, 0 replies; only message in thread
From: Pablo Neira Ayuso @ 2016-08-23 15:11 UTC (permalink / raw)
To: netfilter-devel
table ip filter {
chain input {
type filter hook input priority 0;
flow table xyz { ip saddr & 255.255.255.0 counter packets 0 bytes 0}
}
}
Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
---
src/evaluate.c | 14 +++++++++-----
src/parser_bison.y | 6 ++++++
2 files changed, 15 insertions(+), 5 deletions(-)
diff --git a/src/evaluate.c b/src/evaluate.c
index 8116735..d9984e5 100644
--- a/src/evaluate.c
+++ b/src/evaluate.c
@@ -656,12 +656,16 @@ static int expr_evaluate_prefix(struct eval_ctx *ctx, struct expr **expr)
if (expr_evaluate(ctx, &prefix->prefix) < 0)
return -1;
base = prefix->prefix;
- assert(expr_is_constant(base));
- prefix->dtype = base->dtype;
- prefix->byteorder = base->byteorder;
- prefix->len = base->len;
- prefix->flags |= EXPR_F_CONSTANT;
+ if (expr_is_constant(base)) {
+ prefix->dtype = base->dtype;
+ prefix->byteorder = base->byteorder;
+ prefix->len = base->len;
+ prefix->flags |= EXPR_F_CONSTANT;
+ } else {
+ *expr = base;
+ }
+
return 0;
}
diff --git a/src/parser_bison.y b/src/parser_bison.y
index e16b8a3..f06df6f 100644
--- a/src/parser_bison.y
+++ b/src/parser_bison.y
@@ -1950,6 +1950,12 @@ concat_expr : basic_expr
}
compound_expr_add($$, $3);
}
+ | basic_expr SLASH NUM
+ {
+ $$ = prefix_expr_alloc(&@$, $1, $3);
+ }
+ ;
+
;
prefix_rhs_expr : basic_rhs_expr SLASH NUM
--
2.1.4
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2016-08-23 15:11 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-08-23 15:11 [PATCH] dynset prefix support Pablo Neira Ayuso
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).