netfilter: nf_tables: warn when expr implements only one of activate/deactivate
authorFlorian Westphal <fw@strlen.de>
Thu, 30 Aug 2018 08:42:55 +0000 (10:42 +0200)
committerPablo Neira Ayuso <pablo@netfilter.org>
Mon, 17 Sep 2018 09:40:06 +0000 (11:40 +0200)
commit0ef235c71755c5f36c50282fcf2d7d08709be344
tree1c37473a4adad10602737b3db45d7315d58984c8
parentcd5125d8f51882279f50506bb9c7e5e89dc9bef3
netfilter: nf_tables: warn when expr implements only one of activate/deactivate

->destroy is only allowed to free data, or do other cleanups that do not
have side effects on other state, such as visibility to other netlink
requests.

Such things need to be done in ->deactivate.
As a transaction can fail, we need to make sure we can undo such
operations, therefore ->activate() has to be provided too.

So print a warning and refuse registration if expr->ops provides
only one of the two operations.

v2: fix nft_expr_check_ops to not repeat same check twice (Jones Desougi)

Signed-off-by: Florian Westphal <fw@strlen.de>
Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
net/netfilter/nf_tables_api.c