]> git.baikalelectronics.ru Git - kernel.git/commit
netfilter: nft_dynset: restore set element counter when failing to update
authorPablo Neira Ayuso <pablo@netfilter.org>
Tue, 21 Jun 2022 12:01:41 +0000 (14:01 +0200)
committerPablo Neira Ayuso <pablo@netfilter.org>
Mon, 27 Jun 2022 17:03:37 +0000 (19:03 +0200)
commitea4f9b14657fb86ca357ea398ce484febcc13a53
tree86ed120de0ef116f27b9aa350df0996f93c84c5e
parent2fffb8759d2d179ee2369f50369839f33dc6b17c
netfilter: nft_dynset: restore set element counter when failing to update

This patch fixes a race condition.

nft_rhash_update() might fail for two reasons:

- Element already exists in the hashtable.
- Another packet won race to insert an entry in the hashtable.

In both cases, new() has already bumped the counter via atomic_add_unless(),
therefore, decrement the set element counter.

Fixes: 442306e18704 ("netfilter: nf_tables: add support for dynamic set updates")
Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
net/netfilter/nft_set_hash.c