From bf371bca68e266ea41805fc3efbb39f82b76e2fe Mon Sep 17 00:00:00 2001 From: Eric Leblond Date: Sun, 9 Jun 2013 01:08:47 +0200 Subject: src: fix counter restoration It was not possible to restore a ruleset countaining counter. The packets and bytes fields were not known from the parser but they were in the output of the list command. This patch fixes the issue by restoring correctly the counters if they are present in the command. Signed-off-by: Eric Leblond Signed-off-by: Pablo Neira Ayuso --- src/netlink_linearize.c | 4 ++++ src/parser.y | 28 +++++++++++++++++++++++++--- src/scanner.l | 2 ++ 3 files changed, 31 insertions(+), 3 deletions(-) (limited to 'src') diff --git a/src/netlink_linearize.c b/src/netlink_linearize.c index cfd66915..accab9c2 100644 --- a/src/netlink_linearize.c +++ b/src/netlink_linearize.c @@ -440,6 +440,10 @@ static void netlink_gen_counter_stmt(struct netlink_linearize_ctx *ctx, struct nfnl_nft_expr *nle; nle = alloc_nft_expr(nfnl_nft_counter_init); + if (stmt->counter.packets) + nfnl_nft_counter_set_packets(nle, stmt->counter.packets); + if (stmt->counter.bytes) + nfnl_nft_counter_set_bytes(nle, stmt->counter.bytes); nfnl_nft_rule_add_expr(ctx->nlr, nle); } diff --git a/src/parser.y b/src/parser.y index 12322209..2923b598 100644 --- a/src/parser.y +++ b/src/parser.y @@ -300,6 +300,8 @@ static void location_update(struct location *loc, struct location *rhs, int n) %token PROTO_DST "proto-dst" %token COUNTER "counter" +%token PACKETS "packets" +%token BYTES "bytes" %token LOG "log" %token PREFIX "prefix" @@ -356,8 +358,8 @@ static void location_update(struct location *loc, struct location *rhs, int n) %destructor { stmt_list_free($$); xfree($$); } stmt_list %type stmt match_stmt verdict_stmt %destructor { stmt_free($$); } stmt match_stmt verdict_stmt -%type counter_stmt -%destructor { stmt_free($$); } counter_stmt +%type counter_stmt counter_stmt_alloc +%destructor { stmt_free($$); } counter_stmt counter_stmt_alloc %type meta_stmt %destructor { stmt_free($$); } meta_stmt %type log_stmt log_stmt_alloc @@ -892,12 +894,32 @@ verdict_stmt : verdict_expr } ; -counter_stmt : COUNTER +counter_stmt : counter_stmt_alloc + | counter_stmt_alloc counter_args + +counter_stmt_alloc : COUNTER { $$ = counter_stmt_alloc(&@$); } ; +counter_args : counter_arg + { + $$ = $0; + } + | counter_args counter_arg + ; + +counter_arg : PACKETS NUM + { + $0->counter.packets = $2; + } + | BYTES NUM + { + $0->counter.bytes = $2; + } + ; + log_stmt : log_stmt_alloc | log_stmt_alloc log_args ; diff --git a/src/scanner.l b/src/scanner.l index edecf7b6..fe7b86c4 100644 --- a/src/scanner.l +++ b/src/scanner.l @@ -250,6 +250,8 @@ addrstring ({macaddr}|{ip4addr}|{ip6addr}) "rename" { return RENAME; } "counter" { return COUNTER; } +"packets" { return PACKETS; } +"bytes" { return BYTES; } "log" { return LOG; } "prefix" { return PREFIX; } -- cgit v1.2.3