summaryrefslogtreecommitdiffstats
path: root/net/netfilter/nf_tables_api.c
diff options
context:
space:
mode:
authorPablo Neira Ayuso2017-01-24 00:51:48 +0100
committerPablo Neira Ayuso2017-01-24 21:46:59 +0100
commitb2c11e4b9536ebab6b39929e1fe15f57039ab445 (patch)
tree1938812d9d30876f127051fb5acba13b76cbb1c8 /net/netfilter/nf_tables_api.c
parentnetfilter: nf_tables: deconstify walk callback function (diff)
downloadkernel-qcow2-linux-b2c11e4b9536ebab6b39929e1fe15f57039ab445.tar.gz
kernel-qcow2-linux-b2c11e4b9536ebab6b39929e1fe15f57039ab445.tar.xz
kernel-qcow2-linux-b2c11e4b9536ebab6b39929e1fe15f57039ab445.zip
netfilter: nf_tables: bump set->ndeact on set flush
Add missing set->ndeact update on each deactivated element from the set flush path. Otherwise, sets with fixed size break after flush since accounting breaks. # nft add set x y { type ipv4_addr\; size 2\; } # nft add element x y { 1.1.1.1 } # nft add element x y { 1.1.1.2 } # nft flush set x y # nft add element x y { 1.1.1.1 } <cmdline>:1:1-28: Error: Could not process rule: Too many open files in system Fixes: 8411b6442e59 ("netfilter: nf_tables: support for set flushing") Reported-by: Elise Lennion <elise.lennion@gmail.com> Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
Diffstat (limited to 'net/netfilter/nf_tables_api.c')
-rw-r--r--net/netfilter/nf_tables_api.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/net/netfilter/nf_tables_api.c b/net/netfilter/nf_tables_api.c
index 5bd0068320fb..1b913760f205 100644
--- a/net/netfilter/nf_tables_api.c
+++ b/net/netfilter/nf_tables_api.c
@@ -3906,6 +3906,7 @@ static int nft_flush_set(const struct nft_ctx *ctx,
err = -ENOENT;
goto err1;
}
+ set->ndeact++;
nft_trans_elem_set(trans) = set;
nft_trans_elem(trans) = *elem;