summaryrefslogtreecommitdiffstats
path: root/src/expr/limit.c
diff options
context:
space:
mode:
authorCarlos Falgueras García <carlosfg@riseup.net>2016-08-17 16:07:09 +0200
committerPablo Neira Ayuso <pablo@netfilter.org>2016-08-17 16:08:06 +0200
commite35693fd13de771e1e047ffa4f799f72f1446e8d (patch)
tree4727255558de280341f39a3514c996ab92654cc4 /src/expr/limit.c
parent48a71a20420e307d0a1d8a89ac9fc7b46ec5a1ca (diff)
src: Implement rule comparison
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 <carlosfg@riseup.net> Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
Diffstat (limited to 'src/expr/limit.c')
-rw-r--r--src/expr/limit.c22
1 files changed, 22 insertions, 0 deletions
diff --git a/src/expr/limit.c b/src/expr/limit.c
index cdff81d..9f19d53 100644
--- a/src/expr/limit.c
+++ b/src/expr/limit.c
@@ -287,11 +287,33 @@ nftnl_expr_limit_snprintf(char *buf, size_t len, uint32_t type,
return -1;
}
+static bool nftnl_expr_limit_cmp(const struct nftnl_expr *e1,
+ const struct nftnl_expr *e2)
+{
+ struct nftnl_expr_limit *l1 = nftnl_expr_data(e1);
+ struct nftnl_expr_limit *l2 = nftnl_expr_data(e2);
+ bool eq = true;
+
+ if (e1->flags & (1 << NFTNL_EXPR_LIMIT_RATE))
+ eq &= (l1->rate == l2->rate);
+ if (e1->flags & (1 << NFTNL_EXPR_LIMIT_UNIT))
+ eq &= (l1->unit == l2->unit);
+ if (e1->flags & (1 << NFTNL_EXPR_LIMIT_BURST))
+ eq &= (l1->burst == l2->burst);
+ if (e1->flags & (1 << NFTNL_EXPR_LIMIT_TYPE))
+ eq &= (l1->type == l2->type);
+ if (e1->flags & (1 << NFTNL_EXPR_LIMIT_FLAGS))
+ eq &= (l1->flags == l2->flags);
+
+ return eq;
+}
+
struct expr_ops expr_ops_limit = {
.name = "limit",
.alloc_len = sizeof(struct nftnl_expr_limit),
.max_attr = NFTA_LIMIT_MAX,
.set = nftnl_expr_limit_set,
+ .cmp = nftnl_expr_limit_cmp,
.get = nftnl_expr_limit_get,
.parse = nftnl_expr_limit_parse,
.build = nftnl_expr_limit_build,