From e35693fd13de771e1e047ffa4f799f72f1446e8d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Carlos=20Falgueras=20Garc=C3=ADa?= Date: Wed, 17 Aug 2016 16:07:09 +0200 Subject: src: Implement rule comparison MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This patch implements the function: bool nftnl_rule_cmp(const struct nftnl_rule *r1, const struct nftnl_rule *r2) for rule comparison. Expressions within rules need to be compared, so also has been created the function: bool nftnl_expr_cmp(const struct nftnl_expr *e1, const struct nftnl_expr *e2); Also includes all expression comparators. Signed-off-by: Carlos Falgueras GarcĂ­a Signed-off-by: Pablo Neira Ayuso --- src/expr/hash.c | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) (limited to 'src/expr/hash.c') diff --git a/src/expr/hash.c b/src/expr/hash.c index 7309907..a3439d8 100644 --- a/src/expr/hash.c +++ b/src/expr/hash.c @@ -280,10 +280,32 @@ nftnl_expr_hash_snprintf(char *buf, size_t len, uint32_t type, return -1; } +static bool nftnl_expr_hash_cmp(const struct nftnl_expr *e1, + const struct nftnl_expr *e2) +{ + struct nftnl_expr_hash *h1 = nftnl_expr_data(e1); + struct nftnl_expr_hash *h2 = nftnl_expr_data(e2); + bool eq = true; + + if (e1->flags & (1 << NFTNL_EXPR_HASH_SREG)) + eq &= (h1->sreg == h2->sreg); + if (e1->flags & (1 << NFTNL_EXPR_HASH_DREG)) + eq &= (h1->dreg == h2->dreg); + if (e1->flags & (1 << NFTNL_EXPR_HASH_LEN)) + eq &= (h1->len == h2->len); + if (e1->flags & (1 << NFTNL_EXPR_HASH_MODULUS)) + eq &= (h1->modulus == h2->modulus); + if (e1->flags & (1 << NFTNL_EXPR_HASH_SEED)) + eq &= (h1->seed == h2->seed); + + return eq; +} + struct expr_ops expr_ops_hash = { .name = "hash", .alloc_len = sizeof(struct nftnl_expr_hash), .max_attr = NFTA_HASH_MAX, + .cmp = nftnl_expr_hash_cmp, .set = nftnl_expr_hash_set, .get = nftnl_expr_hash_get, .parse = nftnl_expr_hash_parse, -- cgit v1.2.3