summaryrefslogtreecommitdiffstats
path: root/src/expr/match.c
diff options
context:
space:
mode:
authorPablo Neira Ayuso <pablo@netfilter.org>2018-10-24 19:18:50 +0200
committerPablo Neira Ayuso <pablo@netfilter.org>2018-10-24 19:26:34 +0200
commit6dc1c3d8bb64077da7f3f28c7368fb087d10a492 (patch)
tree880fe8bacaaf4b72035a9c430f86e6e5a15ba9bf /src/expr/match.c
parentdc240913458d591f59b52b3899d3fc3c5d6ec6ce (diff)
src: remove nftnl_rule_cmp() and nftnl_expr_cmp()
These functions are not very useful, rule comparison from this layer does not work well with implicit set definitions. This infrastructure was added as an attempt to support for deletion by name from this layer, which should be done from higher level libnftables library. Finally, we never had a client for this code in git.netfilter.org. Let's remove it and bump libversion for safety reasons. Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
Diffstat (limited to 'src/expr/match.c')
-rw-r--r--src/expr/match.c20
1 files changed, 0 insertions, 20 deletions
diff --git a/src/expr/match.c b/src/expr/match.c
index 2b3321d..4fa74b2 100644
--- a/src/expr/match.c
+++ b/src/expr/match.c
@@ -189,31 +189,11 @@ static void nftnl_expr_match_free(const struct nftnl_expr *e)
xfree(match->data);
}
-static bool nftnl_expr_match_cmp(const struct nftnl_expr *e1,
- const struct nftnl_expr *e2)
-{
- struct nftnl_expr_match *m1 = nftnl_expr_data(e1);
- struct nftnl_expr_match *m2 = nftnl_expr_data(e2);
- bool eq = true;
-
- if (e1->flags & (1 << NFTNL_EXPR_MT_NAME))
- eq &= !strcmp(m1->name, m2->name);
- if (e1->flags & (1 << NFTNL_EXPR_MT_REV))
- eq &= (m1->rev == m2->rev);
- if (e1->flags & (1 << NFTNL_EXPR_MT_INFO)) {
- eq &= (m1->data_len == m2->data_len);
- eq &= !memcmp(m1->data, m2->data, m1->data_len);
- }
-
- return eq;
-}
-
struct expr_ops expr_ops_match = {
.name = "match",
.alloc_len = sizeof(struct nftnl_expr_match),
.max_attr = NFTA_MATCH_MAX,
.free = nftnl_expr_match_free,
- .cmp = nftnl_expr_match_cmp,
.set = nftnl_expr_match_set,
.get = nftnl_expr_match_get,
.parse = nftnl_expr_match_parse,